@charset "utf-8";
body  {
	font-family:Arial, Helvetica, sans-serif;
	color:#333333;
	font-size:12px;
	background: #FFFFFF;
	margin: 0; 
	padding: 0;
	text-align: center; 
	background-image: url(../images/bg_body.jpg);
	background-position:top left;
	background-repeat:repeat-x;
}

p {
	margin: 7px 5px 7px 10px;
	padding:0;
}	

h1 {
	margin: 15px 5px 0px 10px;
	padding:0;
	font-size:150%;
	font-weight:bold;
	color:#E5903D;
}
h2 {
	margin: 10px 5px 5px 10px;
	padding:0;
	font-size:125%;
	font-weight:bold;
	color: #333333;
}
h3 {
	margin: 10px 5px 5px 10px;
	padding:5px;
	font-size:110%;
	color:#333333;
	border-left:5px solid #E48A32;
	font-weight:bold;
	background-color:#F7DCC1;
}	
h4{
	margin: 15px 5px 5px 10px;
	padding:5px;
	font-size:125%;
	color:#333333;
	border-left:5px solid #E48A32;
	font-weight:bold;
	background-color:#F7DCC1;
}	
hr {
	margin: 10px auto;
	color: #E48A32;
	border: 0;
	border-top: 2px solid #E48A32;
	height: 1px;
	width:75%;
	clear:left;
}
img{
	padding:0;
	margin:0;
	border:0;
}

#container { 
	width: 780px; 
	background: #FFFFFF;
	margin: 0 auto; 
	border: 0px solid #E48A32;
	text-align: left; 
	background-image: url(../images/bg_main.jpg);
	background-position:top left;
	background-repeat:repeat-y;
} 

#header { 
	background: #FFF; 
	padding: 0; 
	margin:0;
	height:94px;
} 

#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 140px; /* the 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-color:transparent; 
	padding:0; 
}

#sidebar1 ul {
	margin:0 0 10px 0;
	padding:0;
	list-style:none;
}

#sidebar1 li {
	background-image: url(../images/bullet_line2.jpg);
	background-position:top left;
	background-repeat:no-repeat;
	height:28px;
	line-height:28px;
}
#sidebar1 ul li a:link, a:visited, a:active {
	padding-left:33px;
	color:#000;
	font-weight:bold;
	text-decoration:none;
}
#sidebar1 ul li a:hover {
	padding-left:33px;
	color: #E48A32;
	font-weight:bold;
	text-decoration:none;
}

#sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 260px; /* the 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-color:transparent; 
	padding:0px; 
}
#sidebar2 a:link, #mainContent a:visited, #mainContent a:active {
	color: #E48A32;
	text-decoration: none;
	border-bottom:1px dashed #E48A32;
	font-weight:bold;
	background-image:none;
	padding:0;
	margin:0;
}
#sidebar2 a:hover {
	color: #333333;
	text-decoration: none;
	border-bottom:1px dashed #333333;
	font-weight:bold;
	background-image:none;
	padding:0;
	margin:0;
}

#mainContent { 
	margin: 0 260px 0 140px; 
	padding: 0px;
} 

#mainContent ul{
	line-height:1.5em;
}
#mainContent li {
	list-style-type: square;
	}
#mainContent a:link, #mainContent a:visited, #mainContent a:active {
	color: #E48A32;
	text-decoration: none;
	border-bottom:1px dashed #E48A32;
	font-weight:bold;
	background-image:none;
	padding:0;
	margin:0;
}
#mainContent a:hover {
	color: #333333;
	text-decoration: none;
	border-bottom:1px dashed #333333;
	font-weight:bold;
	background-image:none;
	padding:0;
	margin:0;
}

#footer { 
	padding:0px; 
	background:#FFFFFF;
	height:76px;
	text-align:left;
	margin:10px 0 0 0;
} 

#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: 20px 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;
}