body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	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: #000000;
}
label {
	font-size: 10px;
	color: #666666;
	font-weight: bold;
}
fieldset {
	margin: 20px;
}
#phonenumber {
	float: right;
	font-size: 18px;
	font-weight: bolder;
	color: #E8E8E8;
	margin-top: 24px;
	margin-right: 24px;
}
#container {
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #F5F5F3;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header {
	background-color: #DDDDDD;
	background-image: url(/images/layout/header_bkgnd.jpg);
	height: 90px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
} 
#headline {
	background-color: #DDDDDD;
	background-image: url(/images/layout/Headline_bkgnd.jpg);
	height: 170px;
	background-repeat: repeat-x;
}
#headlineimg {
	float: right; /* since this element is floated, a width must be given */
	width: 250px;
	margin-top: 0px;
	margin-bottom: 0px;
	padding: 0px;
	

}
#headlinetxt {
	margin-top: 0;
	margin-right: 250px;
	margin-bottom: 0;
	margin-left: 0px;
	padding: 10px;
	font-size: 11px;
	color: #FFFFFF;
} 
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 170px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
}
#newsbar {
	float: right;
	margin-top: 20px;
	margin-bottom: 20px;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 20px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #EBEBEB;
	width: 200px;
}

#newsbar h1 {
	color: #333333;
	font-size: 16px;
}
#sidebar1 h1 {
	color: #333333;
	font-size: 14px;
}
#newsbar h2 {
	color: #006699;
	font-size: 12px;
}
#sidebar1 h2 {
	color: #006699;
	font-size: 11px;
}
#newsbar p {
	color: #333333;
	font-size: 11px;
	padding-right: 5px;
	padding-left: 5px;
}
#sidebar1 p {
	color: #333333;
	font-size: 11px;
	padding-right: 5px;
	padding-left: 5px;
}
#sidebar1 li {
	margin-top: 10px;
	font-size: 12px;
}
#mainContent {
	margin-top: 0px;
	margin-right: 250px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 20px;
} 
#mainContent2 {
	margin-top: 0px;
	margin-left: 200px;
	margin-bottom: 0px;
	margin-right: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
} 
#mainContent p {
	color: #333333;
	font-size: 11px;
	padding-right: 5px;
	padding-left: 10px;
}
#mainContent2 p {
	color: #333333;
	font-size: 11px;
	padding-right: 5px;
	padding-left: 10px;
}
#mainContent h1 {
	color: #333333;
	font-size: 18px;
}
#mainContent2 h1 {
	color: #333333;
	font-size: 18px;
}
#mainContent h2 {
	color: #006699;
	font-size: 12px;
}
#mainContent2 h2 {
	color: #006699;
	font-size: 12px;
}
#mainContent h3 {
	color: #003333;
	font-size: 11px;
}
#mainContent2 h3 {
	color: #003333;
	font-size: 11px;
}
#mainContent li {
	font-size: 11px;
	color: #333333;
}
#mainContent2 li {
	font-size: 11px;
	color: #333333;
}
#footer {
	padding: 0 10px 0 20px;
	background-color: #242424;
} 
#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 */
	color: #CCCCCC;
	font-size: 11px;
	text-align: center;
}
.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;
}
#menu {
	background-image: url(/images/layout/menu_background.gif);
	background-repeat: repeat-x;
	color: #CCCCCC;
}
 
.featureTitle {
	font-size: 12px;
	font-weight: bolder;
	color: #333333;
	text-align: center;
	background-color: #E8E8E8;
	border: 1px solid #CCCCCC;
}
.featureTxt {
	color: #333333;
	font-size: 11px;
	padding-right: 5px;
	padding-left: 5px;
}
.featuring {
	font-size: 10px;
	color: #FFFF00;
}
#container #headline a {
	color: #00FF00;
}
#phonenumber .title {
	font-size: 12px;
	color: #FFFF00;
}
#container #sidebar1 li {
	list-style-image: url(../../images/menu_bullet.gif);
	margin-left: 0px;
}
#container #sidebar1 ul {
	list-style-type: none;
	padding: 0;
	margin-left: 14px;
	margin-top: 0px;
}
