@charset "utf-8";
body  {
	background: #bbb;
}
#container { 
	width: 940px;
	background: #e5f3fd;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding: 20px;
	border-left: 1px solid #265785;
	border-right: 1px solid #265785;
} 
#header {  
	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. */
	margin-bottom: 20px;
}
#logo { 
	float: left;
	width: 300px;
	height: 70px;
} 
#phone { 
	float: right;
	text-align: right;
	font-size: 4em;
	font-weight: bold;
	color: #aecf00;
	margin-bottom: 5px;
}
#menu { 
	float: right;
	clear: right;
	font-size: 1.2em;
}
#menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width:600px;
}
#menu li {
	display: inline;
}
#menu a {
	display: block;
	float: left;
	padding: 3px 10px;
	background: url(../img/bar.gif) no-repeat left center;
	text-decoration: none;
	color: #265785;
	font-weight: bold;
}
#menu a:hover {
	color: #aecf00;
}
#menu li.first a {
	background: none;
}
#menu li.last a {
	padding: 3px 0 3px 10px;
}
#banner {  
	padding: 0 10px;  /* 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. */
	margin-bottom: 20px;
	height: 225px;
	background: url(../img/banner-home.jpg) top center no-repeat;
	text-align: right;
	color: #fff;
	font-size: 1.5em;
}
#banner h3 {  
	color: #265785;
	font-size: 1.1em;
	padding-top: 80px;
}
#banner h4 {  
	color: #fff;
	font-size: 1em;
	padding-top: 10px;
	font-family: Georgia, "Times New Roman", Times, serif;
}
.white {
    color: #fff;
}
#sidebar {
	width: 235px; /* 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: url(../img/col-bg.jpg) top center repeat-y; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0;
	float: right;
}
#sidebar-top { 
	margin: 0;
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	height: 20px;
	background: url(../img/col-top.jpg) top center no-repeat;
}
#sidebar input { 
	width: 195px;
}
#sidebar textarea { 
	width: 185px;
}
#sidebar-bottom { 
	margin: 0;
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	height: 20px;
	background: url(../img/col-bottom.jpg) bottom center no-repeat;
}
#sidebar-inner { 
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#mainContent { 
	margin: 0;
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	width: 690px;
	background: url(../img/content-bg.jpg) top center repeat-y;
	float: left;
} 
#mainContent-top { 
	margin: 0;
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	height: 20px;
	background: url(../img/content-top.jpg) top center no-repeat;
}
#mainContent-bottom { 
	margin: 0;
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	height: 20px;
	background: url(../img/content-bottom.jpg) bottom center no-repeat;
}
#mainContent-inner { 
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	text-align:left;
}
#mainContent h1 { 
	color: #265785;
}
#mainContent h2 { 
	color: #aecf00;
}
#footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */ 
} 
#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: 10px 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;
	margin: 0;
}