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

body {
	font: 100% Arial, Helvetica, Verdana, sans-serif;
	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;
}
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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-size: 13px;
	line-height: 17px;
	
}
a:link {
	font: 100% Arial, Helvetica, Verdana, sans-serif;
	text-decoration: none;
	font-weight: bold;
	}
a:visited {	
	font: 100% Arial, Helvetica, Verdana, sans-serif;
	text-decoration: underline;	
	font-weight: bold;
	}

a:hover {
	font: 100% Arial, Helvetica, Verdana, sans-serif;
	text-decoration: underline;
	font-weight: bold;	
	}

a:active {
	text-decoration: none;
	font-weight: bold;
}
.polarnav {
	width: 840px;  /* this will create a container 80% of the browser width */
	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. */
	padding: 10px 0 4px 18px;
	
}
.polarnav #nav {
	width: 880px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding: 10px 0 4px 18px;  /* 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. */
}
		
.menutitle {
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-size: 13px;
	line-height: 18px;
	padding: 0 10px 0 0;
	float:left;
}
		
.menu {
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-size: 13px;
	line-height: 18px;
	padding: 6px 0 0 18px;
	float:right;
}
.menu a:link {
	font-family: Arial, Helvetica, Verdana, sans-serif;
	color:#003471;
 }
.menu a:visited {
font-family: Arial, Helvetica, Verdana, sans-serif;
color: #003471;
 }
.menu a:hover {
font-family: Arial, Helvetica, Verdana, sans-serif;
color:#0099FF;
}	

.container {
	width: 850px;  /* this will create a container 80% of the browser width */
     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. */
	border: 2px solid #ccc;
	border-top: 3px solid #fff;


}
.container #header {
	padding: 0 0 13px 13px;
	background:url(images3/level2bk.jpg) repeat-x #0099FF  /* 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. */
	
}
.container #headerimage {
	width: 230px;
	padding:0 0 0 30px;
	float:right;
}
.container #headerimage2 {
	width: 295px;
	padding:0 0 0 20px;
	float:right;
}
.container .nospace {
	padding: 0 0 3px 0;
	text-indent: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.container #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: 5px 0 0 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.container #mainContent {
	padding: 0 30px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.container #resources {
	padding: 85px 13px 0 310px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #113159;
	line-height:10px;
}
 #footer {
	width: 840px;  /* this will create a container 80% of the browser width */
	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. */
	padding:10px;
	margin-bottom:10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	color:#003471;
	background-color: #FFFFFF;
} 
 #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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 12px;
	line-height: 16px;
}
 #footer a:link {
	font-family: Arial, Helvetica, Verdana, sans-serif;
	color:#0099FF;
	
 }
 #footer a:visited {
font-family: Arial, Helvetica, Verdana, sans-serif;
color: #003471;
 }
 #footer a:hover {
font-family: Arial, Helvetica, Verdana, sans-serif;
color:#003471;
} 
 .copywrite {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	font-size: 11px;
	line-height: 16px;
	
}	

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain its child floats */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
	
}
.leftimage {/* this class should be used for left hand images */
	padding:10px 10px 10px 0;
	float:left;
}
.leftimage .border{ /* this class should be used for left hand image boarders */
	border: solid #000 1px;
	margin:0 0 10px 0;
}

.rightimage { /* this class should be used for right hand images */
	padding:10px 0px 10px 10px;
	float:right;
}
.rightimage .border{ /* this class should be used for right hand image boarders */
	border: solid #000 1px;
	margin:0 0 10px 0;
} 
 .sponsor {
	margin: 30px 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	font-size: 11px;
	line-height: 16px;
	color:#003471;
	padding:10px;
	
}	
.newsitems{
	padding: 0px 10px 10px 10px;
	margin-bottom:10px;
	width:100%;
	border-bottom: 1px solid  #CCCCCC;
	float:left;
	}
	
.newsitemsresults{
	padding: 0px 10px 10px 10px;
	margin-bottom:10px;
	border-bottom: 1px solid  #CCCCCC;
	width:760px;
	float:left;
	}
.newsitemsalt{
	padding: 0px 10px 10px 10px;
	border-bottom: 1px solid  #CCCCCC;
	width:100%;
	background-color: #D6E8F4;
	}
.newsitems .title {
	padding: 10px 0px 10px 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight:bolder;
	line-height: 12px;
	color: #003399;
	text-align: left;
}
.newsitems .title a:link{
	color: #003399;
	text-decoration:none;
}
.newsitems .description {
	padding: 0px 0px 10px 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: 14px;
	text-align: left;
}
.newsimage{
	margin: 9px 10px 2px 0px;
	border: 1px solid  #000;
	font-family: Arial, Helvetica, sans-serif;
}
