@charset "utf-8";
* {
	margin: 0px;
	padding: 0px;
}
body  {
	font: 62.5%/17px verdana, Arial, Helvetica, sans-serif;
	background: #DDD;
	margin: 0;
	padding: 0;
	text-align: center;
	color: #000000;
}
#container {
	width: 779px;  
	background: url(images/home_content_bg.jpg) no-repeat 0px 82px;
	margin: 0 auto; 
	border: 0;
	text-align: left; 
} 
#header {
	background: url(images/home_header_bg.jpg) no-repeat 0px 0px;
	padding: 0;  /* 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. */
	height: 82px;
} 
#header h1 {
	margin: 0;
	padding: 20px 20px 0px 0px;
	text-align: right;
	color: #FFF;
	font: normal 20px arial;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 282px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 40px 0px 0px;
	height: 432px;
}
#home_menu {
	width: 120px;
	float: left;
	padding: 0;
}
#home_menu ul {
	list-style-type: none;
	display: block;
	margin: 0;
	padding: 0;
}
#home_menu li a {
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	display: block;
	border-bottom: 1px solid #fff;
	padding: 6px 0px 4px 10px;
	font-size: 11px;
}
#home_menu li :hover {
	color: #bf0;
}
#mainContent {
	margin: 0 0 0 280px; /* 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: 30px;
} 
h1 {
	color: #090;
	font-size: 13px;
	font-weight: bold;
	line-height: 1.7em;
	padding-top: 30px;
	padding-bottom: 10px
}
h2 {
	color: #242;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 1.5em;
	padding-bottom: 5px
}
h3 {
	color: #242;
	font-size: 1.3em;
	font-weight: bold;
	line-height: 1.6em;
	padding-bottom: 5px
}
p {
	color: #000;
	font-size: 11px;
	line-height: 16px;
	padding-bottom: 10px
}
a {
	color: #060;
	font-size: 11px;
	font-weight: normal;
	line-height: 15px;
	text-decoration: underline
}
a:hover {
	color: #0c3
}
#footer {
	background-image: url("images/home_footer.jpg");
	background-repeat: no-repeat;
	background-position: 0 0;
	text-align: right;
	width: 779px;
	height: 51px;
	float: left;
	border-top: 3px solid #090
}
#footer img {
	float: left
}
#footer p {
	padding-top: 8px;
	padding-right: 5px;
	width: 500px;
	float: right
}
#footer a {
	color: #060;
	font-weight: bold;
	text-decoration: none
}
#footer a:hover {
	color: #0c3;
	font-weight: bold;
	text-decoration: none
}
#note {
	font-size: 9px;
	text-align: right;
	width: 779px;
	float: left;
	border-width: 0
}
#note p {
	padding-top: 5px;
	padding-right: 5px
}

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