@charset "utf-8";
body  {
	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;
	background-color: #000000;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 100%;
	line-height: 1.2;
}

#container {
	width: 760px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	background-color: #FC0;
	border-top-color: #FC0;
	border-right-color: #FC0;
	border-bottom-color: #FC0;
	border-left-color: #FC0;
} 
#container a {
	text-decoration: none;
}
#container a:visited {
	color: #0000B8;
}


#header {
	background-color: #00F;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
	height: 140px;
	text-align: center;
} 

#header #Placeholder  {
	margin: 10px;
}


#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: #fco;
	padding-top: 20px;
	padding-right: 10px;
	padding-bottom: 20px;
	padding-left: 10px;
	font-size: 80%;
}
#sidebar1 ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	border: thin solid #000;
}
#sidebar1 ul li {
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: solid;
	border-bottom-style: solid;

	}
#sidebar1 ul li a {
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	display: block;
}


#sidebar1 ul li a:link {
	text-decoration: none;
}

#sidebar1 ul li a:hover {
	text-decoration: none;
	background-color: #ECBD00;
}


#sidebar1 ul li a:active {
	text-decoration: none;
	background-color: #B7410E;
}


#mainContent {
	text-align: left;
	background-color: #FFF;
	padding-top: 0;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 15px;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 170px;
} 
#mainContent form {
	text-align: center;

}

#mainContent p a {
	text-decoration: none;
}
#mainContent p img {
	border: thin solid #000;
}
#mainContent p announcements {
	text-align: center;
	font-size: 120em;
	font-style: normal;
	color: #D90000;
}
#mainContent p strong {
	color: #000;
}




#mainContent h1 {
	font-size: 180%;
}
#mainContent h2 {
	font-size: 150%;
}
#mainContent h3  {
	font-size: 130%;
}
#mainContent h4 {
	font-size: 100%;
}


#footer {
	background-color: #00F;
	text-align: center;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	color: #FFF;
} 
#footer a:link {
	color: #FFF;
}

#footer h1 {
	font-size: 70%;
	font-weight: bold;
	padding-top: 0px;
	padding-bottom: 0px;
	margin: 0px;
	padding-right: 0px;
	padding-left: 0px;
}
#footer h2 {
	font-size: 50%;
	font-weight: normal;
	padding-top: 4em;
	color: #FFF;
}



#footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}
.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: 1em;
}
.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;
}

