@charset "UTF-8";
body {
	font: 100% Georgia, "Times New Roman", Times, serif;
	background: #f2eed0;
	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;
}
#container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto 50px auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: center; /* this overrides the text-align: center on the body element. */
	background:#fff;
	padding:0;
	border-right:1px solid #330000;
	border-left:1px solid #330000;
	border-bottom:1px solid #330000;
}
#header {
	background:#f2eed0 url(../media/header4.gif) no-repeat center; 
	height:200px;
	position:relative;
}
#contact, #facebook {float:right;position:absolute;}
#contact {top:130px; right:85px;}
#facebook {top:130px; right:24px;}
#contact a, #facebook a {display:block; width:50px; height:50px;}
#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 {
	padding: 10px 20px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	margin:0;
	padding-top:30px;
	min-height:500px;
}
#frontphotos {margin:20px;}
#frontphotos img {
	margin:0 5px;
}
#frontmainContent {
	padding: 10px 20px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	width:480px;
	margin:0;
	border-right:1px solid #330000;
	padding-top:30px;
	min-height:550px;
}
#sidebar {
	float:right;
	width:240px;
	margin:0px;
	background:#fff;
	padding:30px 5px 5px 5px;
}
#description iframe {margin-bottom:10px;border-top:1px solid #f1f1f1;border-left:1px solid #f1f1f1;box-shadow:3px 3px 4px #999;-webkit-box-shadow:3px 3px 4px #999;-moz-box-shadow:3px 3px 4px #999;}
#description a {color:#0000ff;text-align:left;font-size:small;}
#pdfmenu {margin-bottom:10px;border-top:1px solid #f1f1f1;border-left:1px solid #f1f1f1;box-shadow:3px 3px 4px #999;-webkit-box-shadow:3px 3px 4px #999;-moz-box-shadow:3px 3px 4px #999;}
#contactform{
	text-align:left;
	margin:auto;
	width:500px;
	padding-bottom:10px;
}
#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	font-size:small;
	background:#f2eed0;
	border-top:1px solid #330000;
}
#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: 5px 0 5px 0;; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
h1 {
	color: #330000;
	font-size:1.9em;
	margin-bottom:-5px;
	border-bottom: 1px solid #3d83ba;	
	text-shadow:-1px -1px 1px #f1f1f1;
}
h2 {
	color: #330000;
	font-size:1.1em;
	margin-bottom:-15px;
	font-style:italic;
	text-align:right;
	margin-right:10px;
	margin-top:30px;
	padding-bottom:2px;
	text-decoration:underline;
}
#sidebar h2 img {
	text-decoration:none;
}
h3 {
	font-size:1em;
	margin:0px;
	padding:0px;
}
#sidebar p {
	text-align:left;
	margin-right:10px;
}
form {
	text-align:left;
}
#clear {clear:both;}
#space {height:30px;}

img.shadow {border-top:1px solid #f1f1f1;border-left:1px solid #f1f1f1;box-shadow:3px 3px 4px #999;-webkit-box-shadow:3px 3px 4px #999;-moz-box-shadow:3px 3px 4px #999;}

/*--------ContactForm--------*/
input, textarea {
	padding: 9px;
	border: solid 1px #d8d8d8;
	outline: 0;
	font: normal 13px/100% Verdana, Tahoma, sans-serif;
	width: 200px;
	background: #FFFFFF url('media/bg_form.gif') left top repeat-x;
	background: -webkit-gradient(linear, left top, left 25, from(#FFFFFF), color-stop(4%, #EEEEEE), to(#FFFFFF));
	background: -moz-linear-gradient(top, #FFFFFF, #EEEEEE 1px, #FFFFFF 25px);
	box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
	-moz-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
	-webkit-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
	}
textarea {
	width: 400px;
	max-width: 400px;
	height: 150px;
	line-height: 150%;
	}
input:hover, textarea:hover,
input:focus, textarea:focus {
	border-color: #C9C9C9;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 8px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 8px;
	-moz-box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 8px;
	}
.form label {
	color: #999999;
	}
.submit input {
	width: auto;
	padding: 9px 15px;
	background: #3d83ba;
	border: 0;
	font-size: 14px;
	color: #FFFFFF;
	border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	}
.notice {text-align:left;}
