﻿/* 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%;
}

/* 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: #021939;
  line-height: 18px;
  font-size: small;
  color: #000;
  font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
  font-style: normal;
  text-align: center; /* Centers the page content container in IE 5 browsers. */
  margin: 10px 10px 10px 10px; /* (top, right, bottom, left) */
  padding: 10px 10px 10px 10px; /* (top, right, bottom, left) */
}

p {
  font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
  font-size: small;
  color: #000000;
  line-height: 14px;
  text-align: justify;
  margin-right: 10px;
  margin-left: 10px;
}



/* Commonly used to style page titles. Goes across entir page*/
h1 {
			line-height: 18px;
			font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
			font-size: x-large;
			font-weight: bold;
			font-style: italic;
			font-variant: small-caps;
			color: #EFEFEF;
			text-indent: 5px;
			width: 98%;
			height: 25px;
			text-align: left;
			padding-left: 3px;
			padding-top: 10px;
			border-bottom: thick double #480E02;
			background-image: url('images/h-back.gif');
			margin-top: 3px;
			margin-left: 3px;
}

/* Commonly used to style section titles. set for banner to the left of graphic. set at 578 px wide*/
h2 {
			border-bottom: thick double #480E02;
			line-height: 18px;
			color: #EFEFEF;
			font-variant: small-caps;
			font-size: x-large;
			font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
			font-weight: bold;
			text-align: left;
			background-image: url('images/h-back.gif');
			text-indent: 5px;
			font-style: italic;
			width: 700px;
			height: 25px;
			padding-left: 3px;
			padding-top: 10px;
			margin-top: 3px;
			margin-left: 3px;
			float: left;
}
h3 {
			line-height: 14px;
			font-size: large;
			font-variant: small-caps;
			font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
			font-weight: bold;
			color: #480E02;
}

h4 {
  line-height: 14px;
  font-size: medium;
  font-variant: small-caps;
  font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
  font-weight: bold;
  color: #480E02;
}

h5 {
  line-height: 12px;
  font-size: small;
  font-variant: small-caps;
  font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
  font-weight: bold;
  color: #480E02;
}

h6 {
  line-height: 10px;
  font-size: x-small;
  font-variant: small-caps;
  font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
  font-weight: bold;
  color: #480E02;
}

/* Sets the style for unvisited links. */
a,  a:link {
  line-height: 14px;
  color: #480E02;
  font-family: Geneva, Arial, Helvetica, sans-serif;
  font-size: small;
  font-weight: normal;
  text-decoration: none;
}

/* Sets the style for visited links. */
a:visited {
  color: #999999;
  font-weight: bold;
  text-decoration: none;
}

/* Sets the style for links on mouseover. */
a:hover {
  color: #021939;
  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: #021939;
  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: #021939;
			height: 250px;
			width: 900px;
	
}

/* this is just the box it sits in and background color. */
#outerWrapper #topNavigation {
	width: 900px;
	height: 35px;
	margin-top: 20px;
	margin: 0 auto;
	padding-top: 2px;
	background-color: #021939;
	vertical-align: top;
}	
	

#outerWrapper #contentWrapper {
  width: 900px;
}

/* 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 #wr_content {
  padding: 5px 10px 10px 10px; /* (top, right, bottom, left) */
  background-color: #efefef;
  height: 100%;
  width: 850px;
  margin: 15px 10px 10px 10px; /* (top, right, bottom, left) */
}

#footer {
			margin: auto;
			background-position: center;
			background-color: #480E02;
			font-size: small;
			line-height: 12px;
			color: #ffffff;
			font-family: Arial, Helvetica, sans-serif;
			font-variant: small-caps;
			padding: 15px; /* (top, right, bottom, left) */
			font-weight: bold;
			letter-spacing: normal;
			background-repeat: repeat;
			text-align: left;
			position: relative;
			width: 850px;
			right: auto;
			left: auto;
			border-bottom-style: double;
			border-bottom-width: thin;
			border-bottom-color: #EFEFEF;
}

#footer a:link {color: #EFEFEF}
#footer a:visited {color: #EFEFEF}
#footer a:hover {color: #FFFFFF}
#footer a:active {color: #EFEFEF}

 
.bio {
			font-family: Tahoma, Helvetica, Arial, sans-serif;
			font-size: small;
			font-weight: bold;
			font-style: italic;
			font-variant: small-caps;
			color: #000000;
			line-height: 125%;
			text-align: left;
			text-indent: 10px;
}

ul.body {
			list-style: none outside;
			font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
			font-size: small;
			font-weight: normal;
			color: #000000;
			margin-left: 25px;
			padding-left: 25px;
			font-style: italic;
			font-variant: normal;
			line-height: 115%;
			float: left;
			padding-right: 4px;
			list-style-image: url('images/arrow.gif');
}

/* BELOW ARE THE STYLES FOR THE CONTACT FORMS */
#formcontainer {
	position: relative;
	width: 800px;
	right: auto;
	left: auto;
}

	
fieldset {
	border:2px solid #480E02;
	width: 800px;
	right: auto;
	left: auto;
	padding:10px;
}

legend {
	font-family:Arial, Helvetica, sans-serif;
	font-variant: small-caps;
	font-size: 100%;
	font-weight: bold;
	color:#FFFFFF;
	background: #021939;
	border: 1px solid #480E02;
	padding: 2px 6px;
}

label{
float: left;
width: 150px;
font-weight: bold;
}

.checkboxes{
font-weight: bold;
width: 15px;
padding-right: 10px;
}


#submitbutton{
margin-left: 120px;
margin-top: 5px;
width: 90px;
}

br{
clear: left;
}

label, input, select {
	display: block;
	float: left;
	width: 150px;
	margin-bottom: 10px;
}
label {
	width: 110px;
	text-align: right;
	padding-right: 3px;
	margin-top: 2px;
}
 checkboxes{
font-weight: bold;
width: 15px;
padding-right: 10px;
}

textarea {
	display: block;
	float: left;
	width: 600px;
	margin-bottom: 10px;
	height: 150px;
}
br {
	clear: left;
}

/* THIS STYLE IS FOR BUTTONS SUCH AS THOSE USRD ON DEFAULT PAGE FOR HELP LINK AND SELLING PAGE FOR CMA */
.rollover a {
display:block;
width: 110px;
padding:10px 10px 10px 7px;
font: bold 13px sans-serif;;
color:#fff;
background: url("images/rollover-image.gif") 0 0 no-repeat;
text-decoration: none;
}
.rollover a:hover { 
background-position: 0 -35px;
color: #ff0000;
}
.rollover a:active {
background-position: 0 -70px;
color:#fff;
}

