@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: Tahoma, Geneva, sans-serif;
	font-size: 100%;
	background-color: #dce0e3;
	background-image: url(images/background.jpg);
	background-repeat: repeat-x;
}
#container  {
	min-height: 100%;
	width: 1000px;
	text-align: left;
	clear: both;
	float: none;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
#header  {
	height: 115px;
	width: 900px;
	margin-right: auto;
	margin-left: auto;
	background-image: url(images/header.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	margin-bottom: 15px;
}
#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 */
}
#mainContent  {
	overflow:auto;
	margin-right: 72px;
	margin-left: 72px;
	padding-right: 25px;
	padding-left: 25px;
	margin-top: 10px;
	padding-bottom: 15px;
}
#boxes {
	height: 215px;
	width: 900px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 25px;
}
#leftBox {
	background-image: url(images/box.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	height: 200px;
	width: 270px;
	float: left;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
#centerBox {
	background-image: url(images/box.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	height: 200px;
	width: 270px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 1px;
	padding-right: 10px;
	padding-left: 10px;
}
#rightBox {
	background-image: url(images/box.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	height: 200px;
	width: 270px;
	margin-left: auto;
	float: right;
	padding-top: 0px;
	padding-right: 10px;
	padding-left: 10px;
}
#donateBar {
	margin-right: auto;
	margin-left: auto;
	background-image: url(images/DonateBar.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	height: 66px;
	width: 1000px;
}
#PayPal {
	float: right;
	margin-right: 2px;
	z-index: 100;
	margin-top: 10px;
}
#footer  {
	margin-right: auto;
	margin-left: auto;
	height: 25px;
	padding-top: 10px;
}
#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 {
	float: right;
	margin-left: 8px;
}
.fltlft {
	float: left;
	margin-right: 8px;
}
.table {
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #44BC00;
}
.clearfloat {
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
#nav {
	background-color: #565656;
	height: 40px;
	border: thin solid #505050;
	color: #ffff00;
	text-align: center;
	width: 965px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 7px;
}
#nav p {
	color: #ffff00;
}
.rounded-corners {
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
	-khtml-border-radius: 7px;
	border-radius: 7px;
}
.infoText {
	font-size: x-small;
	color: #000;
	text-align: center;
	padding-top: 168px;
}
.bullets {
	list-style-position: inside;
	list-style-image: url(images/paw_15.gif);
	padding-bottom: 13px;
}
.smallTxt {
	font-size: small;
	font-style: italic;
}
.table {
	background-color: #FFF;
	border: 4px solid #53A712;
}

