@charset "utf-8";

/* body and image formatting */

body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	color: #202020;
	margin: 0;
	padding: 0;
	text-align: center;
	background-color: #FFFFFF;
	background-image: url(../_images/layout/page_bg.gif);
	background-repeat: repeat-x;
}

img {
	border: 0;
}


/* structural layout and content styling */

#container { 
	width: 960px;
	margin: 0 auto;
	text-align: left;
}

#header { 
	width: 960px;
	height: 150px;
	padding: 0;
}

#header h1 {
	margin: 0;
}

#navbar {
	float: left;
	width: 220px;
	background: #EEEEEE;
	padding: 15px 0 15px 0;
}

#navbar ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

#navbar li {
	padding: 0;
}

#navbar a {
	width: 200px;
	font-size: 10pt;
	color: #000000;
	text-decoration: none;
	display: block;
	background-color: #EEEEEE;
	padding: 8px 5px 8px 15px;
}

#navbar a:hover {
	color: #FFFFFF;
	background-color: #EC8E21;
}





#sidebar {
	float: right;
	width: 160px;
	padding: 0 0 15px 15px;
}

#sidebar h3 {
	font-size: 14pt;
	font-weight: 300;
	margin: 0;
	padding: 23px 0 25px 0;
}

#sidebar img {
	padding: 0 0 10px 5px;
}

#main_content { 
	margin: 0 190px 0 240px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #main_content div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0 10px;
}

#main_content h1 {
	font-size: 20pt;
	font-weight: 300;
}

#main_content h2 {
	font-size: 18pt;
	font-weight: 300;
	padding: 15px 0 0 0;
}

#main_content p {
	line-height: 12pt;
}

#main_content a {
	font-weight: bold;
	color: #333333;
	text-decoration: none;
}

#main_content a:hover {
	text-decoration: underline;
}

.testimonial {
	width: 360px;
	margin: 0 0 30px 20px;
	padding: 2px 50px 0 50px;
	background-image:url(../_images/layout/testimonial_bg.gif);
	background-repeat: no-repeat;
}

#baseline {
	width: 100%;
	height: 80px;
	background: #1A171B;

}

#footer {
	margin: 50px 0 0 0;
	padding: 0 10px 0 20px;
	background: #1A171B;
}

#footer p {
	font-size: 8pt;
	color: #FFFFFF;
	margin: 0;
	padding: 10px 0;
}

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

.indent {
	margin: 10px 0 20px 20px;
	border: 1px solid #999999;
}

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