@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;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #fff;
	background-image: url(../images/body-bg.png);
	background-repeat: repeat-y;
}
#container {
	width: 960px;  /* this will create a container 80% of the browser width */
	background: #FFFFFF;
	margin: 20px 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. */
}
#container #header{
	background: #fff;
	padding: 0px;  /* 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. */
}
#container #header img {
	padding: 0px;
	margin: 0px;
}
#container #header .navmenu {
	float: left;
	width: 100%;
	padding: 0px;
	margin: 5px 0px 0px 0px;
	border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: #CCC;
}
#container #header .navmenu ul {
	list-style-type: none;
	width: 100%;
	padding: 0;
	height: 50
.px;
	height: 20px;
}
#container #header .navmenu ul li {
	float: left;
	font-size: small;
	margin: 0px 13px;
}
#container #header .navmenu ul li.current {
	border-bottom-width: medium;
	border-bottom-style: solid;
	border-bottom-color: #F3C;
}
#container #header .navmenu ul li.current a {
	color: #000;
}
#container #header .navmenu ul   li a{
	text-decoration: none;
	color: #858585;
}
#container #header .navmenu ul li a:hover {
	border-bottom-width: medium;
	border-bottom-style: solid;
	border-bottom-color: #F3C;
	color: #000;
}
#mainContent {
	padding: 10px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	font-size: small;
	font-family: Verdana, Geneva, sans-serif;
}
#container #mainContent ul {
	list-style-type: square;
}
#container #mainContent ul li {
}
#container #mainContent .iframe {
	text-align: center;
}
#container #mainContent .indent {
	margin-left: 30px;
}
#container #mainContent img.noborder {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#container #mainContent h1 {
	font-size: x-large;
}
#container #mainContent h2 {
	color: #6CF;
	border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: #6CF;
}
#container #mainContent h4 {
	text-align: center;
	border-bottom-width: medium;
	border-bottom-style: ridge;
	border-bottom-color: #6CF;
	padding-bottom: 10px;
}
#container #mainContent .fltlft {
	float: left;
	margin-right: 8px;
}
#container #mainContent .fltrt {
	float: right;
	margin-left: 8px;
}
#container #mainContent a img:hover {
	background-color: #CCC;
}
#container #mainContent img {
	padding: 5px;
	border: thin solid #C9F;
}
#container #mainContent .pet-month{
	color: #393;
	margin-bottom: 40px;
}
#container  #mainContent .pet-month .pet-month-item{
	float: left;
	height: 155px;
	width: 150px;
	text-align: center;
	margin-bottom: 15px;
}
.black-white {
	color: #FFF;
	background-color: #000;
	padding: 5px;
}
.bold {
	font-weight: bold;
	color: pink;
}
.extra-bold {
	font-size: larger;
	color: #F00;
	font-weight: bold;
	border-bottom-width: thin;
	border-bottom-style: dotted;
	border-bottom-color: #F66;
}
.dark {
	color: #939;
}
.clearFloat {
	clear: both;
}
#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#fff;
	border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: #CCC;
} 
#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 */
	font-size: 70%;
	color: #C3F;
}
#form {
	padding: 5px 0px;
}
#form h5 {
	padding-right: 5px;
	padding-left: 5px;
}
#form .form_lines {
	margin: 10px;
	padding: 5px;
	height: 25px;
}
#form .form_lines label {
	font-size: 100%;
	width: 200px;
	text-align: right;
	float: left;
	height: 20px;
	margin-top: 5px;
	margin-left: 100px;
}
#form .form_lines textarea {
	width: 280px;
	float: left;
	height: 100px;
	margin-left: 20px;
	font-size: 12px;
}
#form .form_lines select {
	text-align: left;
	margin-left: 20px;
}
#form .form_lines input[type="text"] {
	width: 280px;
	float: left;
	height: 20px;
	text-align: left;
	margin-left: 20px;
}
#form .submit {
	height: 50px;
	margin: 0px 10px 0px 340px;
	width: 250px;
}
#form .submit input {
	margin-left: 50px;
	margin-top: 10px;
}

