@charset "utf-8";
/* CSS Document */

#navbg {
	background:url(../images/nav_bg.png) repeat-x;
	height: 48px;
	position:relative;
	top:0px;
}

ul#topnav {
	margin: 0; padding: 0;
	float:left;
	width: 100%;
	list-style: none;
	font-size: 1.1em;
}
ul#topnav li {
	float: left;
	margin: 0; padding: 0;
	position: relative; /*--Important--*/
}
ul#topnav li a {
	float: left;
	text-indent: -9999px; /*--Push text off of page--*/
	height: 38px;
}
ul#topnav li:hover a, ul#topnav li a:hover { background-position: left bottom; } /*--Hover State--*/
ul#topnav a.home {
	background: url(../images/home.png) no-repeat;
	width: 87px;
}
ul#topnav a.pets {
	background: url(../images/pets.png) no-repeat;
	width: 74px;
}
ul#topnav a.events {
	background: url(../images/events.png) no-repeat;
	width: 99px;
}
ul#topnav a.petinfo {
	background: url(../images/petinformation.png) no-repeat;
	width: 194px;
}
ul#topnav a.programs {
	background: url(../images/programs.png) no-repeat;
	width: 130px;
}
ul#topnav a.howtohelp {
	background: url(../images/howtohelp.png) no-repeat;
	width: 151px;
}
ul#topnav a.store {
	background: url(../images/store.png) no-repeat;
	width: 86px;
}
ul#topnav a.contact {
	background: url(../images/contactus.png) no-repeat;
	width: 136px;
}
ul#topnav li .sub {
	position: absolute; /*--Important--*/
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	top: 38px; left: 0;
	background: #344c00 url(../images/sub_bg.png) repeat-x; /*--Background gradient--*/
	padding: 10px 10px 10px;
	float: left;
	/*--Bottom right rounded corner--*/
	-moz-border-radius-bottomright: 5px;
	-khtml-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	/*--Bottom left rounded corner--*/
	-moz-border-radius-bottomleft: 5px;
	-khtml-border-radius-bottomleft: 5px;
	-webkit-border-bottom-left-radius: 5px;
	display: none; /*--Hidden for those with js turned off--*/
}
ul#topnav li .row { /*--If needed to break out into rows--*/
	clear: both;
	float: left;
	width: 100%;
	margin-bottom: 10px;
}
ul#topnav li .sub ul{
	list-style: none;
	margin: 0; padding: 0;
	width: 150px;
	float: left;
}
ul#topnav .sub ul li {
	width: 100%; /*--Override parent list item--*/
	color: #fff;
}
ul#topnav .sub ul li h2 { /*--Sub nav heading style--*/
	padding: 0;  margin: 0;
	font-size: 1.3em;
	font-weight: normal;
}
ul#topnav .sub ul li h2 a { /*--Sub nav heading link style--*/
	padding: 5px 0;
	background-image: none;
	color: #e8e000;
}
ul#topnav .sub ul li a {
	float: none;
	text-indent: 0; /*--Override text-indent from parent list item--*/
	height: auto; /*--Override height from parent list item--*/
	padding: 7px 5px 7px 15px;
	display: block;
	text-decoration: none;
	color: #fff;
}
ul#topnav .sub ul li a:hover {
	color: #fcff00;
	background-position: 5px 12px ;/*--Override background position--*/
}

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #fbf5b5;
	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;
}
.oneColFixCtrHdr #container {
	width: 1020px;  /* 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. */
}
.oneColFixCtrHdr #header {
	background: #065e70;
	background:url(../images/header_bg.png) repeat-x;
	height:148px;
}
.oneColFixCtrHdr #header #logo {
	width:238px;
	height:100px;
	position:relative;
	top:0px;
	left:50px;
}
.oneColFixCtrHdr #header a {
	color:#FFFFFF;
}
.oneColFixCtrHdr #header #contact {
	width:238px;
	height:82px;
	position:relative;
	top:-141px;
	left:350px;
	color:#FFFFFF;
	font-size:12px;
}
.oneColFixCtrHdr #header #adoption {
	width:238px;
	height:100px;
	position:relative;
	top:-223px;
	left:600px;
	color:#FFFFFF;
	font-size:12px;
}
.oneColFixCtrHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.oneColFixCtrHdr #mainContent {
	background: #FFFFFF;
}
.oneColFixCtrHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FF530D;
	color:#FFFFFF;
	font-size:11px;
}
.oneColFixCtrHdr #footer a {
	color:#FFFFFF;
}
.oneColFixCtrHdr #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 */
}