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

body  {
	font: 100%/1.3em Arial, Verdana, Helvetica, sans-serif;
	background: #1c1a14 url(../images/bg_01.jpg) no-repeat right bottom fixed;
	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: #f0f0f0;
}
* {margin:0; padding:0;}
#distance { 
		width:1px;
		height:50%;
		background-color:#1c1a14;
		margin-bottom:-337px; /* half of container's height */
		float:left;
		}
a{color: #CCCC99; text-decoration:none;}
a:hover{color: #CCCC33; text-decoration:none;}
 

#container { 
	width: 960px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	position:relative; /* puts container in front of distance */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	clear:left;
	height:674px;
} 
#header { 
	height:130px;
	padding: 0;  
} 

#contentContainer { 
	width: 960px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: url(../images/bg_content.jpg) no-repeat;
	margin: 0;
	padding:12px 0;
	height:497px; 
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 396px; /* 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 */	
	padding-right: 12px;
}
#mainContent { 
	margin: 0 396px 0 0; /* the right margin on this div element creates the column down the right 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 20px 15px 20px; 
	width:511px;
	height: 448px;
	overflow:auto;
} 
.image{ 
	border:1px solid #FFFFFF;
	float:right;
	margin:0.3em;
	}
#footer { 
	padding: 0 10px 0 20px; 
	text-align:center;
} 
p {
	margin:0.7em 0;
	font-size:.875em;
	}
p.desc {
	margin:0.5em 0;
	font-size:.81em;
	}
h1 {
	margin:0.7em 0 1.2em 0;
	font-size:1.1em;
	}
h2 {
	margin:0.7em 0;
	font-size:1em;
	}
h2 span{
	margin:0.4em 0;
	font-size:0.875em;
	font-weight:normal;
	}
h3 {
	margin:0.7em 0;
	font-size:.95em;
	}
.subtitle{
	margin:0.7em 0;
	font-size:.875em;
	font-weight:normal
	}
/*lists-------------------------------------*/
#mainContent ul{
	margin:0.5em 7%;
	font-size:0.81em;
	}
#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: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:0.3em;
}
.fltrt img{ 
	border:1px solid #FFFFFF;
	}
.fltrt p{ 
	font-size:0.75em;
	margin-top:0.2em;
	}
.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;
}