@charset "utf-8";
* {
	margin:0;
	padding:0;
}
a {
	color:#FFF;
	text-decoration:none;
}
a:hover {
	color:#CCC;
}
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; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-size: 13px;
	font-family: Georgia, "Times New Roman", Times, serif;
	letter-spacing: 1px;
}
.twoColFixLtHdr #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;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixLtHdr #header {
	float: left;
	clear: both;
	width: 100%;
} 
.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 */
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* 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: #900;
	padding-left: 20px;
	padding-right: 20px;
	margin-left: 10px;
}
.twoColFixLtHdr #mainContent {
	padding: 0 15px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border-right: 1px solid #900;
	width: 490px;
	float: right;
	margin-top: 10px;
	margin-bottom: 10px;
} 
.twoColFixLtHdr #footer {
	background:#000;
	padding: 5px 10px;
	font-size: 11px;
	color: #FFF;
	text-align: right;
	float: left;
	clear: both;
	width: 760px;
} 
.twoColFixLtHdr #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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;
}
#sidebar_content {
	background-color: #C00;
	padding-right: 10px;
	padding-left: 10px;
	float: left;
	width: 180px;
}
#sidebar_content ul {
	float: left;
	width: 100%;
	list-style-type: none;
	color: #FFF;
	clear: both;
}
#sidebar_content ul li {
	padding-top: 20px;
	padding-right: 0px;
	padding-bottom: 20px;
	padding-left: 0px;
	text-align: center;
}
#header #header_bottom {
	clear: both;
	float: left;
	height: 15px;
	width: 100%;
	background-color: #000;
	border-top: 1px solid #FFF;
}
#header #header_content {
	clear: both;
	float: left;
	height: 160px;
	width: 100%;
	background-color: #C00;
	background-image: url(../images/header-design.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}
#header #header_top {
	background-color: #900;
	clear: both;
	float: left;
	height: 35px;
	width: 240px;
	margin-left: 10px;
	background-image: url(../images/sidebar-design.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}
#header #header_content #header_image {
	float: left;
	height: 160px;
	width: 240px;
	margin-left: 10px;
	background-color: #300;
}
#header #header_content #header_navigation {
	float: left;
	margin-top: 100px;
	width: 510px;
	background-color: #D53330;
	font-size: 11px;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	color: #FFF;
}
#mainContent p {
	margin-top: 10px;
	margin-bottom: 10px;
	font-size:11px;
	text-align: justify;
}
#mainContent h1 {
	padding: 5px;
	background-color: #AF9004;
	color: #FFF;
	font-size: 14px;
	font-variant: small-caps;
}
#mainContent h2 {
	color: #660;
	font-weight: normal;
	font-size: 11px;
	font-variant: small-caps;
}
#mainContent a {
	color: #900;
}
#mainContent a:hover {
	color: #660;
}
