@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: #ffffff;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #000000;
	background-image: none;
	background-repeat: repeat-x;
}
* {
	margin: 0px;
	padding: 0px;
}
#container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header {
	background-image: url(images/layout/hdr-logo.png);
	background-repeat: no-repeat;
	height: 85px;
	margin-top: 15px;
	padding-bottom: 15px;
} 
#header h1 {
	padding: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	text-indent: -9999px;
	margin: 0;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 80px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #CCFF66;
	text-align: center;
}
#sidebar1 li {
	margin-top: 15px;
	margin-right: 0px;
	margin-bottom: 15px;
	list-style-type: none;
}
#sidebar1 a {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #FFCC33;
	text-indent: -9999px;
	display: block;
	height: 20px;
	width: 80px;
}
#MainConWrapper  {
	width: 700px;
	padding-left: 80px;
}
#mainContent {
	margin-right: 50px;
	margin-left: 90px;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	color: #9933CC;
	border: medium solid #CCCCCC;
	background-image: url(images/layout/cowbell-skull-horn-cover2.JPG);
	background-repeat: no-repeat;
} 
#mainContent h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 24px;
	font-weight: normal;
	text-align: center;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	margin-top: 0px;
	margin-right: 30px;
	margin-bottom: 0px;
	margin-left: 0px;
}
#mainContent .firstHdr {
	padding-top: 10px;
}
#mainContent p {
	font-size: 14px;
	margin: 0px;
	color: #FFFF99;
	padding-top: 0px;
	padding-right: 30px;
	padding-bottom: 5px;
	padding-left: 20px;
}
#mainContent img {
	margin-top: 10px;
	margin-right: 10px;
	margin-left: 10px;
}
#mainContent a {
	color: #0099FF;
}
#mainContent .blkTxtCnter {
	color: #999999;
}
#mainContent dl {
	width: 500px;
	margin-right: 40px;
	margin-left: 40px;
	margin-top: 5px;
	margin-bottom: 0px;
}
#mainContent dt {
	font-weight: normal;
	padding-bottom: 5px;
	color: #EBEC5F;
}
#mainContent dd {
	padding-bottom: 5px;
	color: #999999;
}
#prices {
	background-image: url(images/layout/prices.png);
	background-repeat: no-repeat;
}
#prices:hover {
	background-image: url(images/layout/prices-hov.png);
	background-repeat: no-repeat;
}
#mainContent li {
	list-style-type: circle;
	list-style-position: outside;
	margin-left: 40px;
	margin-right: 30px;
	margin-top: 5px;
	margin-bottom: 0px;
}
#links {
	background-image: url(images/layout/links.png);
	background-repeat: no-repeat;
}
#links:hover {
	background-image: url(images/layout/links-hov.png);
	background-repeat: no-repeat;
}
#home {
	background-image: url(images/layout/home.png);
	background-repeat: no-repeat;
}

#mainContent .directionP {
	padding-left: 0px;
	text-align: center;
}
#home:hover  {
	background-image: url(images/layout/home-hov.png);
	background-repeat: no-repeat;
}
#container #mainContent #red p {
	color: #CC3300;
	font-size: 14px;
	font-weight: bold;
}
#faqs {
	background-image: url(images/layout/faqs.png);
	background-repeat: no-repeat;
}
#faqs:hover  {
	background-image: url(images/layout/faqs-hov.png);
	background-repeat: no-repeat;
}
#map {
	background-image: url(images/layout/map.png);
	background-repeat: no-repeat;
}
#map:hover  {
	background-image: url(images/layout/map-hov.png);
	background-repeat: no-repeat;
}
#info {
	background-image: url(images/layout/contact.png);
	background-repeat: no-repeat;
}
#info:hover  {
	background-image: url(images/layout/contact-hov.png);
	background-repeat: no-repeat;
}
#about {
	background-image: url(images/layout/about.png);
	background-repeat: no-repeat;
}
#about:hover  {
	background-image: url(images/layout/about-hov.png);
	background-repeat: no-repeat;
}
#pics {
	background-image: url(images/layout/pictures.png);
	background-repeat: no-repeat;
}
#pics:hover  {
	background-image: url(images/layout/pictures-hov.png);
	background-repeat: no-repeat;
}
#footer {
	padding: 0 10px 0 20px;
} 
#mainContent #address {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #002200;
	text-align: center;
}
#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: #FFFFFF;
}
#footer a {
	color: #FFCC33;
}
.directionP {
}
.firstHdr {
	padding-top: 10px;
}
.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;
}
.blkTxtCnter {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #001100;
	text-align: center;
}
.skinnyP {
	font-size: 14px;
}
.pix {
	background-color: #000000;
}
#mainContent .skinnyP {
	padding-right: 60px;
	padding-left: 60px;
	font-size: 14px;
}
#linkPix li {
	list-style-type: none;
}
#linkPix a {
	font-size: 16px;
}
#mainContent  #factor {
	list-style-type: lower-roman;
	color: #FDFD98;
}
#container #mainContent #factor li {
	list-style-type: decimal;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	font-size: 14px;
}

