﻿@charset "utf-8";


body  {
	background-image: url(images/bg.jpg);
	background-repeat: no-repeat;
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	text-align: center;
	color: #ffffff;
}


#container { 
	width: 850px;  
	background: #000000;
	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. */
	border-right: 4px solid #a19e9e;
	border-bottom: 4px solid #a19e9e;
	border-left: 4px solid #a19e9e;
}


#header { 
	background: #000000;
	height: 288px;
	width: 850px;
	background-image: url(images/header.jpg);
	background-repeat: no-repeat;
	background-position: center;
}


#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 */
}

/* use this to center nav menu */
#nav{
   float:left;
   width:100%;
   margin-top: 50px;
   margin-bottom: 50px;
   background-color: #000000;
}
#nav ul {
   clear:left;
   float:left;
 
   margin:0;
   padding:0;
   position:relative;
   left:50%;
   text-align:center;
}
#nav ul li {
   display:inline;
   float:left;

   margin:0;
   padding:0;
   position:relative;
   right:50%;
   font-size: 11pt;
}
#nav ul li a {
   display: inline;
   margin: 0;
   padding: 0 20px 0 20px;
   color: #a19e9e;
   text-decoration: none;
}
#nav ul li a:hover {
   color: #ffffff;
}


#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	margin-top: 50px;
	border-right: 1px solid #a19e9e;
	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: #000000; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
}

/* #maincontent is used on the home page since there is a flash video being used and width is smaller than content */
#mainContent { 
	width: 500px;
	height: 400px;
	margin: 50px auto 25px auto; 
	/*padding: 0 20px;  remember that padding is the space inside the div box and margin is the space outside the div box */
}

#mainContent p {
	text-align: center;
}

#contact {
	width: 600px;
	margin: 20px auto 20px auto;
	background: #0b0a0a;
	padding: 20px;
	border: 1px solid white;
	color: #ADADAD;
}

#contact p {
	font-size: 10pt;
	text-align: left;
}

/* this is used to secondary pages since there is no sidebar being used */
#content {
	margin: 0 auto 0 auto; /* 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 */
}

#content h1 {
	font-family: "Times New Roman", Times, serif;
	font-size: 16pt;
	text-align: center;
	color: #ffffff;
}


#content p {
	font-size: 10pt;
	text-align: center;
	color: #ADADAD;
}

#content .column {
	float: left;
}



#gallerycontent {
	margin: 0 auto 0 auto;
	padding: 0;
}

#gallerycontent h1 {
	text-align: center;
}

#gallerycontent p {
	font-size: 10pt;
	text-align: center;
	color: #ADADAD;
}

#affiliates {
	width: 650px;
	margin: 50px auto 70px auto;
	font-size: 10pt;
	color: #ADADAD;
	border-bottom: 1px solid white;
}

.aff {
	height: 170px;
	border-top: 1px solid white;
	/*border-bottom: 1px solid white;*/
}

.aff img {
	float: left;
	padding: 20px 20px 20px 10px;
}

.aff p {
	float: left;
	width: 400px;
	padding: 10px 0 0 0;
}

.aff a {
	text-decoration: none;
	color: #df0808;
	clear: both;
}

.aff a:hover {
	color: #0a06b9;
}


#dogs {
	width: 180px;
	margin: 0 20px 20px 20px;
	padding: 0 20px 0 20px;
}

#cats {
	width: 180px;
	margin: 0 20px 20px 20px;
	padding: 0 20px 0 20px;
}

#other {
	width: 180px;
	margin: 0 20px 20px 20px;
	padding: 0 20px 0 20px;
}
/* Gallery section */
#gallery {
	width: 100%;
	height: 580px;
	margin-top: 50px;
	position: relative;
}

#gallery h1 {
	text-align: center;
}

.pic, .pic a {
	width: 100px;
	height: 100px;
	overflow: hidden;
}

.pic {
	position: absolute;
	border: 5px solid #eeeeee;
	border-bottom: 18px solid #eeeeee;
	
	-moz-box-shadow: 2px 2px 3px #333333;
	-webkit-box-shadow: 2px 2px 3px #333333;
	box-shadow: 2px 2px 3px #333333;
}

.pic a {
	text-indent: -999px;
	display: block;
}

.drop-box {
	width: 240px;
	height: 130px;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
	background: url (img/grop_box.png) no-repeat;
}

.drop-box.active {
	background-position: bottomw left;
}

label, input {
	display: block;
	padding: 3px;
}

label {
	font-size: 10px;
}

fieldset {
	border: 0;
	margin-top: 10px;
}

#url {
	width: 240px;
}
	
	
	
	
/* Footer */
#footer { 
	width: 850px;
	border-top: 2px solid #a19e9e;
	background: #000000; 
}

#footer p {
	color: #a19e9e;
	font-size: 9pt;
}

#footer_right {
	float: right;
	width: 250px;
	padding: 10px 20px 10px 0;
}

#footer_bbb {
	float: left;
	width: 150px;
	margin: 10px 0 0 25px;
	padding: 10px 20px 10px 50px;
}

#footer_left { 
	float: left;
	width: 250px;
	padding: 10px 0 10px 20px;
}


.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;
}

a.mail {
	text-decoration: none;
	color: #a19e9e;
}

a.mail:hover {
	color: #ffffff;
}

.text {
	color: #a19e9e;
}

.textrt {
	color: #a19e9e;
	float: right;
	margin-top: -70px;
	padding: 0 20px 0 0;
}

.rt {
	float: right;
	margin-top: -30px;
}

a.link {
	font-size: 10pt;
	color: #0610da;
	text-decoration: none;

}

a.link:hover{
	font-size: 10pt;
	color: #055bf8;
	text-decoration: none;
}

a.price {
	font-size: 10pt;
	color: #a19e9e;
	text-decoration: none;
}

a.price:hover {
	color: #ffffff;
}




/* PHP Calendar */

#calendar {
	margin: 120px auto 0 auto;
	padding: 0;
}

#calendar h1 {
	font-weight: normal;
	font-family: Arial, Verdana, Sans-Serif;
	font-size: 20pt;
	text-align: center;
	color: #ADADAD;
}

#calendar p {
	font-size: 10pt;
	text-align: center;
}

.calendar a.link {
	font-size: 11pt;
	color: #a19e9e;
	text-decoration: none;
}

#events table {
	border: 4px solid #a19e9e;
	background-color: #6699cc;
	color: #000000;
	empty-cells: hide;
	font-size: 10pt;
	margin-left: auto;
	margin-right: auto;
}

/* month and year header */
caption {
	font-size: 14pt;
	margin-left: auto;
	margin-right: auto;
	color: #a19e9e;
}

/* top row cells which hold day names */
#events th {
	background-color: #669999;
	border: solid #000000 1px;
	color: #ffffff;
	font-size: 10pt;
	width: 90px;
}

/* day cells */
#events td {
	background-color: #6699cc;
	border: solid #000000 1px;
	height: 80px;
	width: 90px;
	text-align: left;
	vertical-align: top;

}

/* day cell for today */
#events td.today {
	background-color: #99cccc;
	color: #000000;
}

/* day cells with events */
#events td.event {
	background-color: #006699;
	color: #000000;
}

/* day cell for today */
#events td.highlight {
	background-color: #669999;
	color: #000000;
}

/* special user-created event categories */
#events td.us_holiday {
	background-color: inherit;
	background-image: url('flagbackground.jpg');
	color: #000000;
}

#events td.us_holiday a {
	background-color: inherit;
	color: #000000;
}

#events td.christian_holiday {
	background-color: inherit;
	background-image: url('crossbackground.jpg');
	color: #000000;
}

#events td.christian_holiday a {
	background-color: inherit;
	color: #000000;
}

/* use this to off center the nav
#nav {
	height: 62px;
	margin: 30px auto 0 auto;
	background-color: #00000;
}

#nav ul {
	list-style-type: none;
	margin: 0 auto 0 auto;
	padding: 0;
	width: 850px;
}

#nav ul li {
	display: inline;
	margin: 0;
	font-size: 11pt;
}

#nav ul li a {
	text-decoration: none;
	color: #a19e9e;
	margin: 0;
	padding: 5px 0px 0px 25px;
}

#nav ul li a:hover {
	color: #ffffff;
}
*/

