@charset "utf-8";
html, body {
	height: 100%;
	margin-bottom: 1px;
}

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	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;
	height: 100%;
	margin-bottom: 1px;
}
#container {
	width: 950px;  /* 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 */
	border: 1px solid #000000;
	text-align: left;
} 
#header {
	background: #DDDDDD url(images/blue_grey_stripe.gif) repeat left top;
	padding: 0 10px 0 20px;  /* 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. */
	
} 
#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: 15px 0 25px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color: #FFFFFF;
	font-size: 300%;
	text-align: center;
}

#mainContent {
	border-top: 6px double #000000;
	border-bottom: 6px double #000000;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
} 
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 930px; /* padding keeps the content of the div away from the edges */
	margin-bottom: 10px;
}
#sidebar1 ul {
	font-size: 500%;
	padding: 0px;
	list-style-type: none;
	margin-top: 15px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	font-weight: bold;
	border-bottom: 4 px solid #666666;
	background-color: #603;
}
#sidebar1 li a {
	display: block;
	color: #FFF;
	text-decoration: none;
	padding-top: 75px;
	padding-right: 0px;
	padding-bottom: 75px;
	padding-left: 50px;
	background: url(images/nav_background2.gif) repeat-x left top;
	border-top-width: 4px;
	border-right-width: 4px;
	border-bottom-width: 4px;
	border-left-width: 4px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: none;
	border-left-style: solid;
	border-top-color: #666666;
	border-right-color: #666666;
	border-bottom-color: #666666;
	border-left-color: #666666;
}
#sidebar1 li a:hover, #sidebar1 li a:active, #sidebar1 li a:focus {
	color: #FFF;
	background: url(images/nav_background_hover2.gif) repeat-x left top;
}



#menuHead1, #menuHead2, #menuHead3, #menuHead4, #menuHead5, #menuHead6 {
	border: 3px solid #517E9F;
	margin: 5px 0px 0px;
	padding: 2px 0 2px 2px;
	background: #EBEBEB;
}
#menuHead1 p,  #menuHead2 p, #menuHead3 p, #menuHead4 p, #menuHead5 p, #menuHead6 p {
	font: bold 0.8em Verdana, Arial, Helvetica, sans-serif;
	margin: 0px;
	color: #517E9F;
}


#footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD url(images/blue_grey_stripe.gif) repeat left top;
	text-align: center;
} 
#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 */
	color: #FFFFFF;
	font-size: .7em;
}
.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;
}
