﻿	/* 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 {
  			margin: 0;
  			padding: 0;
  			border: 0;
  			outline: 0;
  			font-size: 100%;
	}

	/* 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 {
			background-color: #EFEFEF;
			line-height: 14px;
			font-size: 11px;
			color: #2e2d2c;
			font-family: Arial, Helvetica, sans-serif;
			text-align: center; /* Centers the page content container in IE 5 browsers. */
			margin: 0 0 0 0; /* (top, right, bottom, left) */
 			padding: 0 0 0 0;
	}
	
	p {
			font-family: Arial, Helvetica, sans-serif;
			font-size: small;
			color: #2e2d2c;
			line-height: 14px;
			text-align: justify;
			background-color: #EFEFEF;
			margin: 5px 0 0 0;    /* (top, right, bottom, left) */
			padding: 10px 10px 10px 10px; /* (top, right, bottom, left) */

	}

	.sidebar-text {
			font-family: Arial, Helvetica, sans-serif;
			font-size: small;
			color: #8F2831;
			line-height: 18px;
			text-align: center;
			background-color: #E3D6BB;
			margin: 0 5px 0 5px; /*  (top, right, bottom, left) */			
			padding: 0 5px 0 5px;
			font-weight: bold;
			font-variant: small-caps;
}

	/* Commonly used to style page titles. */
	h1 {
			line-height: normal;
			color: #8F2831;
			font-size: x-large;
			font-weight: bold;
			font-variant: small-caps;
			width: 100%;
			background-color: #E3D6BB;
			text-align: left;
			text-indent: 10px;
			border-bottom: double 3px #8F2831;
			top: 3px;
}

	/* Used for the titles in the sidebar */
	h2 {
			color: #8F2831;
			font-size: large;
			font-weight: bold;
			font-variant: small-caps;
			text-align: left;
			text-indent: 10px;
			width: 100%;
}

	/* Commonly used to style section titles. */
	h3 {
			line-height: normal;
			color: #fff;
			background-color: #8F2831;
			font-size: medium;
			font-weight: bold;
			font-variant: small-caps;
			margin-left: auto;
			right: auto;
			left: auto;
			text-align: center;
	}

	/* Sets the style for unvisited links. */
	a:link {
  			color: #8F2837;
  			font-weight: bold;
  			text-decoration: none;
	}

	/* Sets the style for visited links. */
	a:visited {
  			color: #666;
			font-weight: bold;
  			text-decoration: none;
	}

	/* 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. */
	#outerWrapper {
 			background-color: #EFEFEF;
  			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 {
 			background-color: #efefef;
 			height: 125px;
  			line-height: 15px;
  			font-size: 18px;
  		    width: 880px;
  			padding: 10px 10px 10px 10px; /* (top, right, bottom, left) */
  			font-weight: bold;
  			border-bottom: solid 1px #8b675a; /* Sets the bottom border properties */
	}

	#outerWrapper #midbar {
			background-color: #efefef;
			height: 25px;
			background-repeat: repeat-x;
			background-position: center center;
			background-image: url("images/sepbar_fill.gif");
			top: auto;
			bottom: auto;
	}

	#outerWrapper #contentWrapper #sidebar {
  			padding: 10px 10px 10px 10px; /*  (top, right, bottom, left) */
  			background-color: #E3D6BB;
  			float: left;
  			border-right: double 3px #677C97; /* Sets the right border properties  */
  			width: 200px;
	}
	
	#outerWrapper #contentWrapper #sidebar-bottom {
  			padding: 10px 10px 10px 10px; /*  (top, right, bottom, left) */
  			background-color: #E3D6BB;
  			width: 180px;
	}
	

	/* 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 {
			padding: 10px 10px 10px 10px; /*  (top, right, bottom, left) */
			margin: 0 0 0 230px;
			text-align: center;
	}

	/* 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 {
  			background-color: #8F2831;
  			font-size: x-small;
  			border-top: solid 1px #677C97; 
  			padding: 10px 10px 10px 10px; /* (top, right, bottom, left) */
  			color: #FFFFFF;
  			font-family: Arial, Helvetica, sans-serif;
 			font-variant: small-caps;
 			font-weight: bold;
			text-align: right;
	}
	
	/* Sets the style for unvisited links. */
	#footer a:link {
  			color: #fff;
  			font-weight: bold;
  			text-decoration: none;
	}

	/* Sets the style for visited links. */
	#footer a:visited {
  			color: #efefef;
			font-weight: bold;
  			text-decoration: none;
	}

	/* Sets the style for links on mouseover. */
	#footer a:hover {
  			text-decoration: underline;
	}


	/* BELOW APPEARS IN HEADER GRAPHIC*/
	.name {
			font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
			font-size: 3em;
			font-weight: bold;
			font-style: italic;
			font-variant: small-caps;
			color: #8F2831;
			text-align: left;
			background-color: #EFEFEF;
			vertical-align: middle;
			margin-left: 25px;
			margin-top: 25px;
			position: absolute;
			width: 600px;
			height: 45px;
			line-height: normal;
			z-index: auto;
			visibility: visible;
			display: inline-block;
	}

	.slogan {
			font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
			font-size: large;
			font-weight: bold;
			font-style: italic;
			font-variant: small-caps;
			color: #677C97;
			text-align: left;
			background-color: #EFEFEF;
			vertical-align: middle;
			margin-left: 75px;
			margin-top: 78px;
			position: absolute;
			width: 600px;
			height: 45px;
			line-height: normal;
			z-index: auto;
			visibility: visible;
			display: inline-block;
	}
	
	.top-logo {
			position: absolute;
			z-index: 3;
			width: 291px;
			height: 150px;
			background-repeat: no-repeat;
			margin-left: 635px;
			margin-top: -10px;
	}

	/* BELOW APPEARS IN THE MIDBAR. YOU CAN ADD ANY TEXT IN THE MIDBAR*/
	.midbar-text {
			font-family: Arial, Helvetica, sans-serif;
			font-size: small;
			font-weight: bold;
			font-variant: small-caps;
			color: #FFFFFF;
			background-image: inherit;
			margin-top: auto;
			margin-bottom: auto;
			top: auto;
			bottom: auto;
			position: absolute;
			padding: 5px;
	}

	/* BELOW IS FOR THE LEFT SIDEBAR NAVIGATION. IT IS 100% CUSTOMIZABLE IN THESE STYLES.*/
	#navigation {
			position: relative;
			float: left;
			width: 200px;
			font-family: Arial, Helvetica, sans-serif;
			font-size: small;
			font-weight: bold;
			font-variant: small-caps;
			color: #8F2831;
			margin-top: 5px;
			margin-bottom: 5px;
			background-color: #E3D6BB;
			margin: 0;
			padding: 0;
			border: 0;
	}

	#navigation ul {
			list-style-type: none;
			width: 100%;
			display: block;
			margin: 0;
			padding: 0;
	}

	#navigation li {
			display: block;
			margin: 0;
			padding: 0;
			background-color: #E3D6BB;
	}

	#navigation a {
			font-family: Arial, Helvetica, sans-serif;
			font-size: small;
			font-weight: bold;
			font-variant: small-caps;
			color: #8F2831;
			text-decoration: none;
			display: block;
			padding: 2px;
			background-color: #E3D6BB;
	}

	#navigation a:hover {
			color: #fff;
			text-decoration: none;
			border-bottom: 2px solid #FFFFFF;
			background-color: #8F2831;
	}
	
	/* BELOW ARE THE STYLES FOR THE CONTACT FORM */
	fieldset {
			border:1px dashed #000;
			padding:10px;
	}
	
	legend {
			font-family:Arial, Helvetica, sans-serif;
			font-size: 90%;
			letter-spacing: -1px;
			font-weight: bold;
			line-height: 1.1;
			color:#fff;
			background: #666;
			border: 1px solid #333;
			padding: 2px 6px;
	}

	#cssform_p{
			width: 616px;
			float: left;
			clear: right;
			margin-left: auto;
			margin-right: auto;
			padding-left: 10px; /*width of left column containing the label elements*/
			border-top: 1px dashed gray;
			height: 1%;
			padding-right: 0;
			padding-top: 5px;
			padding-bottom: 8px;
}

	.cssform-label{
			font-weight: bold;
			float: left;
			margin-left: -155px; /*width of left column*/
			width: 150px; /*width of labels. Should be smaller than left column (155px) to create some right margin*/
	}

	.cssform input[type="text"]{ /*width of text boxes. IE6 does not understand this attribute*/
			width: 180px;
	}

	.cssform textarea{
			width: 250px;
			height: 150px;
	}

	/*.threepxfix class below:
	Targets IE6- ONLY. Adds 3 pixel indent for multi-line form contents.
	to account for 3 pixel bug: http://www.positioniseverything.net/explorer/threepxtest.html
	*/

	* html .threepxfix{
			margin-left: 3px;
	}

	.ty-message {
			font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
			font-size: large;
			font-weight: bold;
			color: #8F2831;
			vertical-align: middle;
			text-align: center;
			word-spacing: 1em;
			letter-spacing: normal;
			line-height: normal;
			background-color: #EFEFEF;
			white-space: normal;
	}


