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

A:link {text-decoration: underline; color: #000000;}
A:visited {text-decoration: underline; color: #000000;}
A:active {text-decoration: underline; color: #000000;}
A:hover {text-decoration: underline overline; color: #000000;}

body {
	font: 11px Verdana, Arial, Helvetica, sans-serif;
	background: #fff;
	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: 900px;  /* 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 */
	border: 1px solid #000000;
	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;
}
.main #footer { 
	padding: 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#fff;
	text-align:center;
	font-size:11px;
} 
.main #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

.main #promo  {
	background:url(../images/bg_middle.jpg); height:212px; background-repeat:no-repeat
}
.main #promo .pimage { padding-top:11px; padding-left: 1px; }
.main #promo .pcaption { padding:8px; color:#FFFFFF; font-size:10px }
.main #promo .pnews { padding:40px 30px 20px 30px; text-align: center; width: 320px; color: #022A5E; font-weight: bold; line-height: 1.25em; }

.main #nav { background:url(../images/bg_navbar.jpg); height:36px; background-repeat:no-repeat;}
.main #nav a {
	display:block;
	text-decoration:none;
	margin:8px 1px 5px 1px;
	padding: 4px 10px 4px 10px;
	font-size:13px;
	color:#FFFFFF;
	background-color:#000000;
	border-left:#a1b9ae 1px solid;
	border-top:#a1b9ae 1px solid;
	border-right:#a1b9ae 1px solid;
}
.main #nav a:hover {
	display:block;
	text-decoration:none;
	color:#FFFFFF;
	background-color:#003366;
}


.main #sidebar .snav a {
	display:block;
	font-family:Arial, Helvetica, sans-serif;
	text-align:right;
	text-decoration:none;
	margin:0;
	padding-right: 13px;
	padding-top:6px;
	font-size:13px;
	color:#c9d0db;
	background:url(../images/sidebar_itembg.gif);
	background-repeat:no-repeat;
	padding-bottom: 5px;
}
.main #sidebar .snav a:hover {
	display:block;
	text-decoration:none;
	color:#FFFFFF;
	background:url(../images/sidebar_itembgR.gif);
	background-repeat:no-repeat
}
.main #sidebar .slink { color:#eff2f5; font-size:11px; text-decoration:underline; text-align:center; padding:4px }
.main #sidebar .slink a { color:#eff2f5; text-decoration:underline; text-align:center; }
.main #sidebar .slink a:hover { color:#DDEEFF; text-decoration:underline }
