@charset "utf-8";
body  {
	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;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 90%;
	background-color: #B3D78D;
}
.twoColFixLtHdr #container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	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. */
} 
.twoColFixLtHdr #header {
	background: #FFF;
	padding: 10px 10px 0 20px;  /* 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. */
} 
.twoColFixLtHdr #header h1 {
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #4B6496;
	font-size: 48px;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
	margin-top: 28px;
	margin-right: auto;
	margin-bottom: 40px;
	margin-left: 240px;
}
.twoColFixLtHdr #header h2 {
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #4B6496;
	font-size: 12px;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
	margin-top: -20px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 400px;
	font-weight: normal;
}

.twoColFixLtHdr  #header  ul  {
	list-style-position: inside;
	list-style-image: none;
	margin-right: 25px;
	list-style-type: none;
}
.twoColFixLtHdr #header li {
	float: right;
	margin-right: 15px;
	display: block;
	font-weight: normal;
}
.twoColFixLtHdr #header a {
	display: block;
	text-decoration: none;
	color: #000;
	background-image: url(images/nav_bullet.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 18px;
}
.twoColFixLtHdr  #header-deleted  a:hover {
	background-color: #B3D88C;
	background-image: none;
}



.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* 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: #FFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px;
	border-right-width: 2px;
	border-right-style: solid;
	border-right-color: #889BC3;
	margin-top: 30px;
	margin-right: 10px;
	margin-bottom: 15px;
	margin-left: 20px;
}
.twoColFixLtHdr #sidebar1 ul {
	list-style-type: none;
	width: 40px;
	text-align: center;
}
.twoColFixLtHdr #sidebar1 li {
	background-image: url(images/button_home.jpg);
	width: 80px;
	background-repeat: no-repeat;
	height: 80px;
	padding-top: 30px;
}
.twoColFixLtHdr #sidebar1  a {
	text-align: center;
	vertical-align: middle;
	width: 80px;
	padding-left: 80px;
	background-repeat: no-repeat;
	height: 50px;
	display: block;
	text-decoration: none;
	display: block;
	padding-top: 30px;
	color: #000;
	padding-right: 10px;
}

.twoColFixLtHdr #sidebar1 .home  a {
	background-image: url(images/button_home.jpg);
}
.twoColFixLtHdr #sidebar1 .physical  a {
	background-image: url(images/button_physical.jpg);
}
.twoColFixLtHdr #sidebar1 .chronic  a {
	background-image: url(images/button_chronic.jpg);
}
.twoColFixLtHdr #sidebar1 .substance  a {
	background-image: url(images/button_subabuse.jpg);
}
.twoColFixLtHdr #sidebar1 .nutrition  a {
	background-image: url(images/button_nutrition.jpg);
}
.twoColFixLtHdr #sidebar1 .tobacco  a {
	background-image: url(images/button_tobacco.jpg);
}
.twoColFixLtHdr  #sidebar1-deleted   a:hover {
	background-color: #B3D88C;
	background-image: none;
}
.twoColFixLtHdr #mainContent { 
	margin: 0 0 0 250px; /* the left margin on this div element creates the column down the left 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: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twoColFixLtHdr  #mainContent   h1,h2 {
	color: #7BB13F;
}
.twoColFixLtHdr #footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFF;
} 
.twoColFixLtHdr #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 10px;
	text-align: center;
	padding-top: 3px;
	padding-right: 0;
	padding-bottom: 3px;
	padding-left: 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;
}
.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;
}
.righto {
	margin-right: 2px;
}
#servicearea {
	background-image: url(images/map.jpg);
	background-repeat: no-repeat;
	padding-top: 300px;

}
.twoColFixLtHdr #mainContent a:link img {
	border-style: none;
}
.twoColFixLtHdr #mainContent ul {
	list-style-image: url(images/nav_bullet.gif);
}
