﻿/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  border-style: none;
			border-color: inherit;
			border-width: 0;
			margin: 0;
			padding: 0;
			outline: 0;
  			font-size: 100%;
			text-align: left;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
  padding: 0 0 0 0; /* (top, right, bottom, left) */
  background-color: #efefef;
  line-height: 14px;
  font-size: small;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center; /* Centers the page content container in IE 5 browsers. */
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
}
/* Commonly used to style page titles. */
h1 {
										border: 1px solid #999;
										line-height: 24px;
										color: #003300;
										background-color: #EFEFEF;
										font-variant: small-caps;
										font-size: large;
										font-family: Tahoma, Geneva, sans-serif;
										font-weight: bold;
										text-indent: 5px;
}
/* Commonly used to style section titles. */
h2 {
										border: 1px solid #999;
										line-height: 18px;
										color: #003300;
										background-color: #EFEFEF;
										font-variant: small-caps;
										font-size: medium;
										font-family: Tahoma, Geneva, sans-serif;
										font-weight: bold;
										text-indent: 5px;
}
/* Left Column */
h3 {
  line-height: 14px;
	color: #ffffff;
	font-variant: small-caps;
	font-weight: bold;
	font-size: medium;
	font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
	text-align: center;
}

/* Sets the style for unvisited links. */
a,  a:link {
  color: #000;
  text-decoration: none;
  font-weight: bold;
										text-align: left;
}
/* Sets the style for visited links. */
a:visited {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}
/* Sets the style for links on mouseover. */
a:hover {
  text-decoration: underline;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  background-color: #fff;
  width: 900px;
  text-align: left; /* Redefines the text alignment defined by the body element. */
  margin: 0 auto 0 auto; /* top, right, bottom, left */
}
#outerWrapper #header {
  height: 180px;
  background-image: url('images/hdr-bg.gif');
}
#outerWrapper #topbar {
			background-color: #ebebeb;
			height: 25px;
			padding: 10px 10px 10px 10px; /* (top, right, bottom, left) */			
			background-repeat: repeat;
			background-image: url('images/bar-bg.gif');
			font-family: Tahoma, Helvetica, Arial, sans-serif;
			font-size: small;
			font-weight: bold;
			font-variant: small-caps;
			color: #FFFFFF;
			line-height: 12px;
			vertical-align: middle;
			text-align: left;
			text-indent: 350px;
}
#outerWrapper #contentWrapper #leftColumn1 {
			background-position: top;
			padding: 10px;
			background-color: #003300;
			height: 100%;
			float: left;
			border-right: solid 1px #666; /* Sets the right border properties for an element using shorthand notation */			        width: 200px;
			color: #ffffff;
			vertical-align: top;
			position: relative;
			top: -2px;
}
#outerWrapper #contentWrapper #leftColumn1 h2 {
			line-height: 14px;
			color: #ffffff;
			font-variant: small-caps;
			font-weight: bold;
			font-size: medium;
			font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
			text-align: center;
}

/* THESE ARE THE STYLES FOR THE TWO COLUMN PAGE */
#leftColumn-narrow {
										float: left;
										width: 45%;
										margin: 0 15px 0 10px;
										padding: 0 20px 0 10px;
										border-right-style: solid;
										border-right-width: thin;
										border-right-color: #666;
}
#rightColumn-narrow {
	width: 45%;
	margin:0 10px 0 310px; 
	padding:0;
}






/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
  background-color: #fff;
  height: 100%;
  padding: 10px 10px 10px 10px; /* (top, right, bottom, left) */
  margin: 0 0 0 220px; /* (top, right, bottom, left) */
}
#outerWrapper #contentWrapper #content h3 {
  line-height: 18px;
  color: #003300;
  font-variant: small-caps;
  font-size: large;
  font-family: Tahoma, Geneva, sans-serif;
  font-weight: bold;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  display: block;
  clear: left;
}
#outerWrapper #footer {
			padding: 10px 10px 10px 10px;  /* (top, right, bottom, left) */			
			background-color: #003300;
			height: 35px;
			line-height: 13px;
			font-size: small;
			color: #ffffff;
			font-family: Georgia, "Times New Roman", Times, serif;
			font-variant: small-caps;
			background-image: url('images/ftr-bg.gif');
			text-align: right;
			top: -2px;
			vertical-align: top;
			position: relative;
}
#logo {
			background-position: top;
			padding: 10px;
			margin: 10px;
			background-image: url('images/logo.png');
			background-repeat: no-repeat;
			position: absolute;
			z-index: 20;
			width: 350px;
			height: 190px;
			right: auto;
			top: 10px;
}

/* MAIN TITLE IN HEADER */
.title {
			float: left;
			width: 580px;
			position: relative;
			left: 260px;
			padding-right: 15px;
			padding-left: -10px;
			font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
			font-size: x-large;
			font-weight: bold;
			font-variant: small-caps;
			color: #FFFFFF;
			line-height: normal;
			font-style: italic;
			z-index: 20;
			text-align: left;
			padding-top: 35px;
			margin-top: 35px;
			margin-left: -10px;
}
.slogan {
			float: left;
			width: 459px;
			position: relative;
			left: 290px;
			padding-right: 15px;
			padding-left: 0px;
			font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
			font-size: x-large;
			font-weight: bold;
			font-variant: small-caps;
			color: #FFFFFF;
			line-height: normal;
			font-style: italic;
			z-index: 20;
			text-align: left;
			padding-top: -5px;
			margin-top: -5px;
}
ul {
        list-style: none;
        margin: 0;
        padding: 0;
        }

img {
    margin: 5px;
	float: left;
}

/*- Menu --------------------------- */

#menu {
        width: 200px;
        margin: 0px;
        border-style: solid;
        border-color: #656556;
        border-width: 1px;
}

#menu li a {
        height: 32px;
        voice-family: "\"}\"";
        voice-family: inherit;
        height: 24px;
        text-decoration: none;
        }

#menu li a:link, #menu li a:visited {
        color: #656556;
        display: block;
        background:  url('images/menu.gif');
        padding: 8px 10px 0 20px;
        }

#menu li a:hover, #menu li #current { 
        color: #474739;
        background:  url('images/menu.gif') 0 -32px;
        padding: 8px 10px 0 20px;
}
.calendar {
	position: relative;
	margin-left: 3px;
}
.cal {
	position: relative;
	width: 200px;
	height: 200px;
	margin-left: 3px;
}

/* This is for alignment of the validation tags at the bottom left corner of site. This and the logs can be removed */
#val {
	float: left;
	clear: both;
	text-indent: 10px;
	padding: 5px;
	margin: 5px;
	display: inline-block;
}

/* Pictures or graphics are floated to the left. If you want to float right you need to add this style as we have done on the default.htm page */
.imgright {
	padding: 5px;
	margin: 5px;
	float: right;
}

/* BELOW ARE THE STYLES FOR THE CONTACT FORM */
#formcontainer {
	position: relative;
	width: 600px;
	right: auto;
	left: auto;
}

	
fieldset {
	width: 600px;
	padding:10px;
}

legend {
	font-family:Arial, Helvetica, sans-serif;
	font-variant: small-caps;
	font-size: 100%;
	font-weight: bold;
	color:#003300;
	background: #EFEFEF;
	border: 1px solid #003300;
	padding: 2px 6px;
}

label{
float: left;
width: 150px;
font-weight: bold;
}

input, textarea{
width: 180px;
margin-bottom: 5px;
}

textarea{
width: 250px;
height: 150px;
}

.form-note{
color: #FFFFFF;
background-color: #003300;
float: left;
width: 500px;
font-weight: bold;
font-variant: small-caps;
height: 20px;
padding:5px;
margin-left: 20px;
}


.boxes{
width: 1em;
}

.checkboxes{
font-weight: bold;
width: 15px;
padding-right: 15px;
}


#submitbutton{
margin-left: 120px;
margin-top: 5px;
width: 90px;
}

br{
clear: left;
}



