@charset "utf-8";
@import url("reset.css");
body  {
	font: 100% Tahoma, Arial, Verdana;
	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;
}
.twoColFixLtHdr #container {
	width: 960px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixLtHdr #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 */
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 270px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 10px 15px 10px;
}
.twoColFixLtHdr #mainContent {
	margin: 0 0 0 290px; /* 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 */
} 
.twoColFixLtHdr #footer {
	padding: 0 10px 0 20px;
	text-align: right;
} 
.twoColFixLtHdr #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 { /* 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;
	margin-top:18px;
}
.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;
}
#header
{
	position:relative;
}

ul.navbar
{
	list-style:none;
	position:absolute;
	top:50px;
	right:0;
	
}
ul.navbar li
{
	display:inline;
	padding: 0 10px;
}
ul.navbar li a
{
	text-decoration:none;
	color:#7A7A7A;
	font-size:1em;
	font-family:Tahoma, Arial, Verdana;
	letter-spacing:0.1em;
}
ul.navbar li a:hover
{
	text-decoration:underline;
}
#banner
{
	margin-top:15px;
	height:300px;
}

p
{
	line-height: 24px;
	padding: 10px 0;
	color:#333;
	font-size:13px;
}
p.important
{
	color:#008200;	
	font-size:18px;
	font-family:Georgia, "Times New Roman", Times, serif;
}
h1
{
	font-size:20px;
	font-weight:bold;
	padding-bottom:10px;
}
h2
{
	font-size:14px;
	font-weight:bold;
}
h3
{
	font-size:14px;
	font-weight:bold;
	color:blue;
}
/* FORM FORM FORM */
#formwrap
{
width:500px;
margin-left:auto;
margin-right:auto;
}
fieldset
{
border: 1px solid #336;
padding: 0.8em 0 0.8em 0.8em;
}
legend{
font-size:1.5em;
}
#formwrap label
{
display:block;
top-margin:0.5em;
}

#formwrap input, textarea
{
border-top:1px solid #336;
border-left:1px solid #336;
border-bottom: #978EBA;
border-right: #978EBA;
background-color:#B5B5B5;
color:#000;
width:21em;
padding:.2em;
}
#formwrap textarea
{
height:8em;
}
#formwrap #submit
{
width:8em;
margin: .8em 0 0 .8em;
}
#formwrap input:focus, textarea:focus, input:focus, textarea:focus
{
background: #E5EBF4;
}
#contact_form em
{
color:#C00;
font-weight:bold;
}
span.emphasis
{
	color:blue;
}

#announcements
{
background: #8989ba; /* Old browsers */
background: -moz-linear-gradient(top, #8989ba 0%, #8989ba 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#8989ba), color-stop(100%,#8989ba)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #8989ba 0%,#8989ba 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #8989ba 0%,#8989ba 100%); /* Opera11.10+ */
background: -ms-linear-gradient(top, #8989ba 0%,#8989ba 100%); /* IE10+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8989ba', endColorstr='#8989ba',GradientType=0 ); /* IE6-9 */
background: linear-gradient(top, #8989ba 0%,#8989ba 100%); /* W3C */
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
	color: #6600FF;
	font-size:12px;
	
	padding-top:10px;
	padding-bottom:10px;
}
#announcements h1
{
	color:#ffffff;
	font-size:18px;
		
}
#announcements p
{
	padding-top:0px;
	margin-top:0;
	color:#FFF;	
	
}

#announcements.photoGalleryAnnouncements
{
	padding-top:60px;
	top:50px;
}
div#imageSidebar
{
	position:fixed;
	
}
div#imageSidebar.imageHomeSidebar
{
	display:none;
}
div#imageSidebar.photoGallery
{
	display:none;	
}