@charset "utf-8";
/* CSS Document */


body {
	font: 11px Verdana, Arial, Helvetica, sans-serif;
	background-image:url(../images/bg.jpg);
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}

.main #container {
	width: 845px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.main #header { 
	background: #fff; 
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
.main #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.main #mainContent {
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}


/***********************************************/
/* Navigation                                  */
/***********************************************/
.main #nav a { display:block; text-decoration:none; margin:0; background-repeat:no-repeat; border:none; height:32px }

.main #nav a.one { background:url(/images/nav1.gif); width:102px }
.main #nav a.two { background:url(../images/nav2.gif); width:153px }
.main #nav a.three { background:url(../images/nav3.gif); width:130px }
.main #nav a.four { background:url(../images/nav4.gif); width:147px }
.main #nav a.five { background:url(../images/nav5.gif); width:162px }

.main #nav a.one:hover { background:url(../images/nav1R.gif); }
.main #nav a.two:hover { background:url(../images/nav2R.gif); }
.main #nav a.three:hover { background:url(../images/nav3R.gif); }
.main #nav a.four:hover { background:url(../images/nav4R.gif); }
.main #nav a.five:hover { background:url(../images/nav5R.gif); }



/***********************************************/
/* sponsors                                    */
/***********************************************/
#sponsors { width:202px; text-align:center;}
#sponsorBG { background:url(../images/sideBG.gif);}



/***********************************************/
/* footer                                 */
/***********************************************/
#footer {
	background:url(../images/footer.gif) 0 0 no-repeat;
	padding-top:18px;
	height: 25px;
	color:#000066;
	width:845px;
	text-align:center;
	margin:0 auto;
}
