@charset "utf-8";
body {
	font: 14px/25px Verdana, Arial, Helvetica, sans-serif;
	background-color: #DDDDDD;
	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: #333;
}
#container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	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. */
}
#header {
	height: 146px;
	background: #fff;
	padding: 0px 0px 0px 0px;  /* 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. */
		border-bottom: 1px solid #000;
}
#header a{
	color:#036;
	text-decoration: none;
}
#header a:hover{
	color:#C00;
	text-decoration: none;
	
}
.logo	{
	margin-top: 30px;
	position: absolute;
}
.logoimage	{
	margin-top: 0px;
	padding-right: 0px;
	margin-bottom: 15px;
	margin-left: 418px;
	

}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #A8A8D5;
	padding: 0px 0px 0px 10px;
	color: #333;
	letter-spacing: 2px;
	text-align: center;
	line-height: 35px;
	margin-top: 10px;
	
	border-right: 1px solid #666;
	border-bottom: 1px solid #666;
	
}
#sidebar1  p	{
	margin:0px 10px 0px 10px;
	text-align: left;
}
				 
#sidebar1  a {
	color: #336699;
	text-decoration: none;
}
#sidebar1 a:hover {
	text-decoration: none;
	color: #333333;
}
#sidebar1 h1	{
	font-size: 14px;
}
#sidebar1 h2	{
	text-align: center;
}	

#mainContent {
	margin-left: 160px;
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}

#mainContent h1{
	font-size: 16px;
}
#mainContent a {

	color: #669933;
	text-decoration: none;
}
#mainContent a:hover	{
	color: #6666FF;
	text-decoration: none;
	}

.announcement	{
	color: #C00;
}
#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
}
#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 */
}

.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;
}