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


<!--
/* 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: #fff;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 16px;
  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. */
}
p   
  {font-size: 13px;
   margin: 0 3px 0 0px;
   color: #000;
   line-height: 115%;
   text-align:left;
   word-spacing: -0.4px;
   letter-spacing: normal;	
   font-weight: normal;
}
.hats
	{font-size: 9pt; padding: 0 5px 10px 5px;
}
/* Commonly used to style page titles. */

h1 {
 font-family: Verdana,Arial,sans-serif;
 font-size: 95%;
 color: #334d55;
 font-weight:600;
 word-spacing: -0.8px;
 line-height:115%;
}
/* Commonly used to style section titles. */
h2 {
  color: #000;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}
h3 {
 font-family: Verdana,Arial,sans-serif;
 font-size: 110%;
 color: #334d55;
 font-weight:600;
 font-style:italic;
 word-spacing: -0.8px;
 line-height:115%;
 text-align:left;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #006699;
  font-weight: normal;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
    text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  ext-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #006699;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #000;
}
/* 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;
  background-image: url("images/backgroundnew.jpg");
  background-repeat:no-repeat;
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 999px;
  height: 999px;
}
#outerWrapper #header {
  border-bottom: solid 0px #666; /* Sets the bottom border properties for an element using shorthand notation */
  font-size: 11px;
  font-weight: bold;
  height: 20px;
  line-height: 15px;
  margin: 5px 0 2px 0;
  padding: 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#globalNav{
	color: #cccccc;
	padding: 5px 0px 5px 5px;
	white-space: nowrap;
	background-color: #d7e5d5;
	border:thin;
	border-color:#006633;
	margin: 0 0 0 0;
}
/* 'nowrap' prevents links from line-wrapping if there are too many to fit in one line
   this will force a horizontal scrollbar if there isn't enough room for all links
   remove rule or change value to 'normal' if you want the links to line-wrap */

#globalNav img{
 display: block;
}

#globalNav a {
	font-size: 12px;
	padding: 0px 4px 0px 0px; 
}
#outerWrapper #contentWrapper #leftColumn1 {
  border-right: solid 0px #666; /* Sets the right border properties for an element using shorthand notation */
  float: left;
  padding: 10px 10px 10px 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 250px;
  margin: 0 0 0 0;
}
#navBar{
	background-color: #d7e5d5;
	border-right: 0px solid #ccc;
	border-bottom: 1px solid #ccc;
	margin: 0 0 0 30px;
}
/*********** #navBar link styles ***********/

#navBar ul a:link, #navBar ul a:visited {display: block;}
#navBar ul {list-style: none; margin: 0; padding: 0;}

/* hack to fix IE/Win's broken rendering of block-level anchors in lists */
#navBar li {border-bottom: 1px solid #EEE;}

/* fix for browsers that don't need the hack */
html>body #navBar li {border-bottom: none;}


/*********** #sectionLinks styles ***********/

#sectionLinks{
	position: relative;
	margin: 0px;
	padding: 0px;
	border-bottom: 1px solid #cccccc;
	font-size: 10pt;
}

#sectionLinks h3{
	padding: 10px 0px 2px 10px;
}

#sectionLinks a:link{
	padding: 2px 0px 2px 10px;
	border-top: 1px solid #cccccc;
	width: 100%;
  voice-family: "\"}\""; 
  voice-family:inherit;
	width: auto;
}

#sectionLinks a:visited{
	border-top: 1px solid #cccccc;
	padding: 2px 0px 2px 10px;
}

#sectionLinks a:hover{
	border-top: 1px solid #cccccc;
	background-color: #dddddd;
	padding: 2px 0px 2px 10px;
}
/* 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 {
  margin: 0 0 0 300px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 40px 80px 0 10px;
  line-height: 125%;
  height: 800px;
}
/************** .feature styles ***************/

.feature{
	margin:0 0 0 0;
	background-color: #d7e5d5;
	border: 1px solid #FFCC00;
	padding: 5px 5px 0 5px;
}
.feature p{
	font-size: 12px;
    margin: 0 3px 0 0px;
    color: #000;
    line-height: 110%;
    text-align:left;
    word-spacing: -0.4px;
    letter-spacing: normal;	
    font-weight: normal;
}

.feature h3{
	padding: 5px 0px 5px 0px;
	text-align: center;
}


/* adjust margins to change separation between the feature image and text flowing around it */
/* 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 {
  clear: left;
  display: block;
}
#outerWrapper #footer {
  border-top: solid 1px #666; /* Sets the top border properties for an element using shorthand notation */
  margin: 0 60px 0 30px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; 
  text-align: center;
  line-height: 110%;
}
/************* #siteInfo styles ***************/

#siteInfo{
	clear: both;
	border: 0px solid #cccccc;
	font-size: 75%;
	color: #000000;
	margin:0;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
}
/* negative top margin pulls siteinfo up so its top border overlaps (and thus lines up with)
	the bottom border of the navBar in cases where they "touch" */

#siteInfo img{
	padding: 4px 4px 4px 0px;
	vertical-align: middle;
}

-->
