@charset "utf-8";
body  {
	background: #660000;
	margin: 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: #666666;
	padding: 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 70%;
}
ul, li {
	list-style-image: none;
	list-style-type: none;
	margin: 0;
	padding: 0;
}

#container {
	width: 750px;
	text-align: left;
	background-color: #FFFFFF;
	margin: 50px auto 0px;
} 

#header {
	padding: 0 10px 0 20px;  /* 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. */
	height: 147px;
	background-image: url(../images/basic/headershadow.jpg);
	background-repeat: repeat-x;
	background-position: left top;
} 
#logo {
	background-image: url(../images/basic/logo.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	height: 93px;
	width: 255px;
	padding-top: 50px;
	float: left;
}
#logo  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 */
	text-indent: -9999px;
}
#contactimg {
	height: 77px;
	width: 178px;
	float: right;
	padding-top: 37px;
}
#photoheader {
	height: 193px;
	width: 750px;
}
#navigation {
	height: 65px;
	width: 750px;
	background-image: url(../images/basic/navigationback.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	float: left;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 125%;
	color: #C4A765;
	font-variant: small-caps;
	text-transform: none;
	padding-top: 10px;
}
#navigation li {
	margin: 0;
	float: left;
	border-left: 1px solid #BDA46E;
}

#navigation li.first {
	border-left: none;

}

#navigation ul {
	padding-left: 12px;
	padding-top: 4px;
}

#navigation a {
	text-align: center;
	display: inline;
	color: #C4A765;
	text-decoration: none;
	padding: 4px 14px;
	margin-left: 8px;
	margin-right: 8px;
}
#navigation a:hover {
	margin-left: 8px;
	margin-right: 8px;
	background-color: #330000;
	border-bottom: 1px solid #C4A765;
}





#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 10px 15px 20px;
	background-image: url(../images/basic/quotepattern.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
	line-height: 20px;
}
#spacebottom {
	height: 30px;
	background-image: url(../images/basic/spacebottom.jpg);
	background-repeat: repeat;
	background-position: left top;
}
#spacetop {
	padding-top: 100px;
	background-repeat: no-repeat;
	background-position: left bottom;
}
#spacetop h1 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-variant: small-caps;
	font-size: 250%;
	color: #C4A765;
	padding-left: 270px;
	font-weight: normal;
	padding-bottom: 0px;
	background-image: url(../images/basic/headingswirl.jpg);
	background-repeat: no-repeat;
	background-position: left center;
	height: 55px;
	padding-top: 15px;
}


#mainContent {
	margin: 0 0 0 250px; /* 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 */
	border-left: 2px solid #C4A765;
	line-height: 20px;
	text-align: justify;
	min-height: 300px;
} 
#mainContent a {
	color: #910000;
	text-decoration: none;
}
#mainContent a:hover {
	color: #C4A765;
}


.redhead {
	font-weight: bold;
	color: #910000;
}

#footer {
	background-image: url(../images/basic/footerback.jpg);
	background-repeat: repeat;
	height: 20px;
} 
#footer p {
	font-size: 90%;
	text-align: center;
	color: #660000;
	padding-top: 3px;
}
#footer a {
	color: #660000;
	text-decoration: none;
}
#bottomnav  {
	text-align: center;
	height: 20px;
	margin: 0 auto;
	background-color: #FFFFFF;
	color: #660000;
	font-size: 90%;
}
#bottomnav  p, #bottomnav2 p {
	padding-top: 2px;

}
#bottomnav  a, #bottomnav2 a {
	color: #660000;
	text-decoration: none;
}
#bottomnav a:hover, #bottomnav2 a:hover {
	color: #C0A065;
	text-decoration: none;
}

#bottomnav2 {
	text-align: center;
	height: 50px;
	margin: 0 auto;
	background-color: #FFFFFF;
	color: #660000;
	font-size: 90%;
}


#neil {
	height: 40px;
	width: 750px;
	text-align: center;
	margin: 0 auto;
	padding-top: 4px;
}
#neil p {
	font-size: 75%;
	color: #FFFFFF;
	text-align: right;
}
#photowrap {
	float: left;
	padding: 7px 17px 0px 0px;
	text-align: center;
}
#photowrap p {
	color: #660000;
	text-align: center;
	width: 100%;
}

#photos {
	text-align: center;
}




.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;
}
.quote {
	font-style: italic;
	color: #C4A765;
}

.quotebold {
	font-style: italic;
	color: #C4A765;
	font-weight:bold;
}
a img {
	border-width: 0px;
}

