@charset "utf-8";

* {
margin: 0;
padding: 0;
}

/*
*{ border:1px solid #CCCCCC}
*/

body  {
	font: 100% Verdana, Arial, Helvetica, 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;
}

#container { 
	width:1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
	overflow:auto;
}


#sidebar1 {
	float: left; 
	width: 230px; /* since this element is floated, a width must be given */
	padding: 0; /* top and bottom padding create visual space within this div */
	margin-left:30px;
	text-align:left;
	border-right:2px dotted #666666;

}

#sideHeader {
	font-weight:bolder;
	font-size:32px;
	color:#00aeef;
	width:220px;

	padding-bottom:8px;
	letter-spacing: -1px;
	font-variant: small-caps;
	border-bottom:2px solid #666666;
	
	}
	
#sideContent {
	font-size:10px;
	color:#666666;
	text-align:justify;
	margin-top:5px;
	padding-right:10px;
	padding-bottom:8px;
	width:215px;
	border-bottom:2px dotted #666666;
	letter-spacing:-1px;
	}
	


#mainContent {
	margin-left:255px;
	min-height:650px;
    height:auto !important;
    height:650px;
	text-align:left;
	padding-left:20px;
} 

#mainContent img {
	padding-right:10px;
	border:none;

} 

#mainContent p {
	padding-bottom:10px;

} 

#mainNavigation {

	text-align:left;
	height:180px;
	width:600px;
	padding-top:0px;

	}
	
#mainNavColumn {
	float:left;
	width:165px;
	margin-left:5px;
	font-size:12px;
	}
	
	
#mainPageHeader {
	color:#00aeef;
	font-size:28px;
	margin-top:20px;
	margin-bottom:10px;
	text-align:left;
	letter-spacing:-2px;
	font-family:Helvetica, sans-serif;
	}
	
.mainPageCopy {
	color:#666666;
	font-size:11px;
	margin-top:10px;
	text-align:justify;
	letter-spacing:-1px;
	margin-bottom:10px;
	width:550px;

	
}


.mainPageCopy A:link {text-decoration: none;color:#00aeef;}
.mainPageCopy A:visited {text-decoration: none;color:#00aeef;}
.mainPageCopy A:active {text-decoration: none;color:#00aeef;}
.mainPageCopy A:hover {text-decoration: underline; color:#00aeef;}
	
	
.navHeader {
	color:#00aeef;
	font-weight:800;
	}
.navSubHeader {
	color:#00aeef;
	font-weight:600;
	font-style:italic;
	font-size:9px;
	}
	
.navSubLinks {font-size:10px;padding-top:5px}
.navSubLinks A:link {text-decoration: none;color:#666666}
.navSubLinks A:visited {text-decoration: none;color:#666666}
.navSubLinks A:active {text-decoration: none;color:#666666}
.navSubLinks A:hover {text-decoration: none; color:#00aeef;}
	

	
#footer { 
	text-align:left;
	font-size:9px;
	color:#666666;
	padding-top:10px;
	border-top:2px dotted #666666;
	margin-left:30px;
	padding-bottom:15px;
	} /* this padding matches the left alignment of the elements in the divs that appear above it. */



/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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 a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}