/*  
Sticky Footer Solution
by Steve Hatcher 
http://stever.ca
http://www.cssstickyfooter.com
*/

* {margin:0;padding:0;} 

/* must declare 0 margins on everything, also for main layout components use padding, not 
vertical margins (top and bottom) to add spacing, else those margins get added to total height 
and your footer gets pushed down a bit more, creating vertical scroll bars in the browser */

html, body {height: 100%; background: url("images/bkg-main.jpg") repeat top left; min-width: 1020px;}

#wrap {min-height: 100%;}

#main {overflow:auto;
	padding-bottom: 163px;}  /* must be same height as the footer */

.fitInCenter {
    width: 1020px;
    margin: 0 auto;
}

#headerRow {
    background: url("images/bkg-header.jpg") repeat-x top left;
    height: 86px;
}

#orangeRow {
    background: url("images/bkg-orange.png") repeat-x top left;
    height: 763px;
    position: relative;
}

#orangeAside {
    position: absolute;
/*     background: url("images/bkg-large.png") no-repeat top left; */
    top: 0;
    left: 0;
    height: 612px;
    width: 100%;
    z-index: 45;
}

#orangeMain {
    width: 100%;
    position: absolute;
    background: url("images/main.png") no-repeat top center;
    top: 0;
    left: 0;
    height: 587px;
    z-index: 50;
}

#footer {position: relative;
	margin-top: -163px; /* negative value of footer height */
	height: 163px;
	clear:both;
	background: url("images/bkg-footerScroll.png") repeat-x top left;
}

#footer .fitInCenter {
    background: url("images/bkg-footer.png") no-repeat top left;
}

#predictions {font-family: 'Bitter', serif; color: #fff; list-style-type: none; background-color: #1a1a1a;}
#predictions li {margin: auto 0; font-size: 14px; background-color: #1a1a1a;}
#predictions li div {height: 48px; display: table-cell; vertical-align: middle; background-color: #1a1a1a;}

h1 {color: #fff; font-family: 'Amatic SC', cursive; font-size: 80px; font-weight: normal; text-transform: lowercase; line-height: 80px; float: left; padding: 0; margin: 0;}

h2 {
 padding-top: 32px; padding-left: 20px; margin: 0; font-family: 'Bitter', cursive; color: #000; text-transform: uppercase; font-weight: normal; font-size: 17px; float: left;
}

h2 a { color: #00a85d; text-decoration: none;}

h2 a:hover { color: #fff;}

/*Opera Fix*/
body:before {/* thanks to Maleika (Kohoutec)*/
content:"";
height:100%;
float:left;
width:0;
margin-top:-32767px;/* thank you Erik J - negate effect of float*/
}


.right { float: right; }
.left {float: left;}

a img { border: 0;}