@charset "utf-8";
/* CSS Document */

<style type="text/css" media="all">

/* 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: #302e2c;
	color: #333333;
	font-family: "QuickType II";
	font-size: 12px;
	line-height: 14px;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* 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;
  margin-left: auto;
  margin-right: auto;
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 980px;
}
#outerWrapper #header {
	background-color: #302e2c;
	border-bottom: solid 1px #666; /* Sets the bottom border properties for an element using shorthand notation */
	font-size: 12px;
	font-weight: bold;
	height: 105px;
	line-height: 15px;
	padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	color: #FFF;
	font-family: "QuickType II";
	text-decoration: none;
}
#outerWrapper #header a, #outerWrapper #header a:link {
  color: #FFFFFF;
  text-decoration: none;
}
#outerWrapper #header a:visited {
  color: #FFFFFF;
}
#outerWrapper #header a:hover {
  color: #00FF00;
}
#outerWrapper #topNavigation {
	background-color: #3d3c39; /* Sets the bottom border properties for an element using shorthand notation */
	color: #FFFFFF;
	height: 25px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #666;
	width:100%;
	text-align: left; /*padding above and below main menu text*/
	padding-top:10px;/*padding in IE for rollover color*/
	padding-bottom:5px;
	padding-left:0px;
	font-size: 16px;
	list-style-image: none;
	list-style-type: none;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
#outerWrapper #topNavigation a, #outerWrapper #topNavigation a:link {
	color: #FFFFFF;
	text-decoration: none;
	width: 100%;
	padding-left: 35px;
}
#outerWrapper #topNavigation a:visited {
  color: #FFFFFF;
}
#outerWrapper #topNavigation a:hover {
  color: #00FF33;
}
#outerWrapper #contentWrapper {
	background-image: url("imagess/contentWrapper_bg.png");
	background-repeat: repeat-y;
	overflow: hidden;
	line-height: 14px;
	border: 1px solid #FFF;
}
#outerWrapper #contentWrapper #leftColumn1 {
	background-color: #000000; /* Sets the left border properties for an element using shorthand notation */
	color: #CCCCCC;
	float: left;
	padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 353px;
}
#outerWrapper #contentWrapper #leftColumn1 a, #outerWrapper #contentWrapper #leftColumn1 a:link {
  color: #FFFFFF;
}
#outerWrapper #contentWrapper #leftColumn1 a:visited {
  color: #FFFFFF;
}
#outerWrapper #contentWrapper #leftColumn1 a:hover {
  color: #00FF00;
}
/* 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: #e7dfdb;
	color: #333333;
	font-size: 14px;
	margin-left: 356px;
	margin-right: 0px;
	padding-left: 10px;
	padding-right: 5px;
	padding-top: 5px;
	line-height: 16px;
}
/* Contains the full 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 #content2 {
	background-color: #e7dfdb;
	color: #333333;
	font-size: 14px;
	margin-left: 0;
	padding-left: 10px;
	padding-right: 5px;
	padding-top: 5px;
}
#outerWrapper #contentWrapper #content h1 {
	color: #679D3D;
	font-size: 18px;
}
#outerWrapper #contentWrapper #content h2 {
	color: #302E2C;
	font-size: 16px;
}
#outerWrapper #contentWrapper #content h3 {
  color: #FFFFFF;
  font-size: 24px;
}
#outerWrapper #contentWrapper #content h4 {
  color: #000000;
  font-size: 14px;
}
#outerWrapper #contentWrapper #content h5 {
  color: #FF6600;
  font-size: 14px;
}
#outerWrapper #contentWrapper #content h6 {
  color: #666666;
  font-size: 12px;
}
#outerWrapper #contentWrapper #content a, #outerWrapper #contentWrapper #content a:link {
	color: #679D3D;
	font-size: 14px;
}
#outerWrapper #contentWrapper #content a:visited {
	color: #679D3D;
	font-size: 14px;
}
#outerWrapper #contentWrapper #content a:hover {
  color: #FF6600;
  font-size: 14px;
}
#outerWrapper #footer {
	background-color: #302e2c; /* Sets the top border properties for an element using shorthand notation */
	color: #FFFFFF;
	height: 245px;
	padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center;
}
#outerWrapper #footer a, #outerWrapper #footer a:link {
	color: #FFFFFF;
	text-decoration: none;
}
#outerWrapper #footer a:visited {
  color: #FFFFFF;
}
#outerWrapper #footer a:hover {
  color: #00FF00;
}

</style>
<style type="text/css" media="print">

/* It is common to set printer friendly styles such as a white background with black text. */
body {
  background-color: #fff;
  color: #000;
}

</style>
[if IE 5]>
<style type="text/css"> 
/* IE 5 does not use the standard box model, so the column widths are overidden to render the page correctly. */
#outerWrapper #contentWrapper #leftColumn1 {
  width: 355px;
}
</style>
<![endif]
[if IE]>
<style type="text/css"> 
/* The proprietary zoom property gives IE the hasLayout property which addresses several bugs. */
#outerWrapper #contentWrapper, #outerWrapper #contentWrapper #content {
  zoom: 1;
}
</style>
<![endif]
[if lt IE 7]>
<style type="text/css"> 
img, div {
  behavior: url("baseautosaved0_images/iepngfix.htc");
}
</style>
<![endif]
