@charset "UTF-8";
/* ============ Overall Text and page Attributes ============ */
body  {
	font-size:12px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	background-image: url(/images/grade.jpg);
	background-position: top;
	background-repeat: repeat-x;
	margin: 0; /* Zero Margin for different browser defaults */
	padding: 0; /* Zero Padding for different browser defaults */
	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;
}
/* ============ Overall CSS Container Attributes ============ */
.twoColFixLtHdr #container { 
	width: 978px;  /* Set for 1024px Width Screen less 46px to advoide crome and scrole bars  */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
/* ============ Header Attributes ============ */
.twoColFixLtHdr #header { 
	background: #ffffff; 
	padding: 0px;
} 
.twoColFixLtHdr #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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
/* ============= Content area left sidebar and main area ========= */
.twoColFixLtHdr #sidebar1 {
	float: left;
	width: 170px;
	background: #ffffff;
	padding: 0px;
}
/* ================= Content area for Main Body ================= */
.twoColFixLtHdr #mainContent { 
	margin: 20px 0px 0px 180px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 10px 10px 10px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twoColFixLtHdr #mainContent h1 {
	font-size: 26px;
	color: #CC0000;
}
.twoColFixLtHdr #mainContent h2 {
	font-size: 22px;
	color: #cc0000;
}
.twoColFixLtHdr #mainContent h3 {
	font-size: 18px;
	color: #000000;
}
.twoColFixLtHdr #mainContent h4 {
	font-size: 18px;
	color: #336633;
}
.twoColFixLtHdr #mainContent h5 {
	font-size: 14px;
	color: #990000;
}
.twoColFixLtHdr #mainContent .rr {
	font-size: 14px;
	font-weight: 700;
	color: #990000;
}
.twoColFixLtHdr #mainContent a {
	text-align: center;
	font-size: 12px;
	color: #CC0000;
	text-decoration:none;
}
.twoColFixLtHdr #mainContent ul {
padding-left:25px;
right:10px;
}
.twoColFixLtHdr #mainContent a:link {
	font-size: 10px;
	color: #CC6600;
}
.twoColFixLtHdr #mainContent a:hover {
	font-size: 10px;
	color: #CC6600;
	text-decoration: underline;
}
.twoColFixLtHdr #mainContent a:active {
	font-size: 10px;
	color: #CC6600;
}
.twoColFixLtHdr #mainContent a:visited  {
	font-size: 10px;
	color: ##CC6600;
}
/* ========== This section define the footer elements including the link and background information =========*/
.twoColFixLtHdr #footer { 
	padding: 0px 10px 0px 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#0099FF; 
} 
.twoColFixLtHdr #footer p {
	text-align: center;
	font-size: 10px;
	color: #ffffff;
	margin: 0px; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.twoColFixLtHdr #footer a {
	text-align: center;
	font-size: 10px;
	color: #ffffff;
	text-decoration:none;
}
.twoColFixLtHdr #footer a:link {
	font-size: 10px;
	color: #ffffff;
}
.twoColFixLtHdr #footer a:hover {
	font-size: 10px;
	color: #ffffff;
	text-decoration: underline;
}
.twoColFixLtHdr #footer a:active {
	font-size: 10px;
	color: #ffffff;
}
.twoColFixLtHdr #footer a:visited  {
	font-size: 10px;
	color: #ffffff;
}
/* ========= Page Floating elements ========= */
.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;
}