/* 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;
	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 {
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .8em;
  line-height: 1.4em;
  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. */
background:url(../images/pagebg.jpg);
}

#pageWrapper{
width:800px;
margin-left:auto;
margin-right:auto;
}

/* Commonly used to style page titles. */

p.underline a{
color:#1E728A;
text-decoration:underline;
}


h1 {
  color: #0c535f;
  font-size: 1.3em;
  font-weight: bold;
  line-height: 1.4em;
  padding-bottom:5px;
}
/* Commonly used to style section titles. */
h2 {
  color: #0c535f;
  font-size: 1.2em;
  font-weight: bold;
  line-height: 1.4em;
}
h3{
  color: #0c535f;

}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #0c535f;
  font-weight: bold;
  text-decoration: none;
}
p.pdf{
text-decoration:underline;
}
/* Sets the style for visited links. */
a:visited {
  color: #0c535f;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #0c535f;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #000;
}
/* 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;
  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. */
}
#outerWrapper #header {
	border-bottom: solid 1px #666; /* Sets the bottom border properties for an element using shorthand notation */
	background-color:#eff7ff;
	font-size: 18px;
	font-weight: bold;
	line-height: 15px;
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background-image:url(../images/fullwaterbgheader.gif);
	background-repeat:no-repeat;
	background-position:right;
	height: 193px;
	
}
 #outerWrapper #header #logo{
float:left;
}
 #outerWrapper #header #logo img{
 border-right:#009999 1px dotted;
 border-left:#0c535f 1px dotted;
 }
#outerWrapper #header #wow{
float:left;
color:#0c535f;
text-align:center;
}
#outerWrapper #header #wow h1{
padding-top:50px;
font-size:150%;
line-height:250%;

}
#outerWrapper #header #wow h2{
font-size:100%;
}
#outerWrapper #menu{
float:left;
width:800px;
margin-left:auto;
margin-right:auto;}
div#search{
margin-left:35em;padding-top:15px;
color:#074248;
margin-top:20px;
width:20em;}
div#search img{
width:50px;
height:20px;
margin-top:-40px;
}
div#search p{
margin-top:0px;
}

#outerWrapper #contentWrapper #search{
float:right;
}

#outerWrapper .secondary#contentWrapper #search{
float:right; width:40%; padding:5px 30px 0 0;margin-bottom:0px;
line-height:1.5em;
}
#search.nosearch{
height:41px;}
#search.indexnosearch,div.primary#contentWrapper div.nosearch#search{
height:78px;}
div.secondary#contentWrapper div.nosearch#search{
height:111px;
}
#outerWrapper #contentWrapper #rightColumn1 {
  float: right;
  padding: 0px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 30%;
}


#outerWrapper #contentWrapper #rightColumn1 div.corner1{
background:#89d0ee url(../images/corner1.png) no-repeat;  width:100%;

}
#outerWrapper #contentWrapper #rightColumn1 div.corner2{
background:url(../images/corner2.png) no-repeat top right; 
}

#outerWrapper #contentWrapper #rightColumn1 div.corner3{
background:url(../images/corner3.png) no-repeat left bottom; 


}
#outerWrapper #contentWrapper #rightColumn1 div.corner4{
background:url(../images/corner4.png) no-repeat right bottom; padding:10px;

}

/*eeoc notification*/

#outerWrapper #contentWrapper #rightColumn1 div#eeoc {
margin-top:10px;
}
  #outerWrapper #contentWrapper #rightColumn1 div#eeoc h2{
text-align:center;
}
/*end eeoc notification*/
#outerWrapper #contentWrapper #leftColumn1 {
  background-color: #ebebeb;
  border-right: dotted 3px #666; /* Sets the right border properties for an element using shorthand notation */
  float: left;
  padding: 0px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
/* 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 1em; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

#outerWrapper #contentWrapper #content #contentLeft {
float:left; width:63%; padding:0 15px 15px 15px;
line-height:1.5em;
}
#outerWrapper #contentWrapper .secondary#content #contentLeft{
float:left; width:43%; padding:25px 0 25px 25px;
line-height:1.5em;margin-top:-100px;

}

#outerWrapper #contentWrapper .secondary#content #contentLeft.board{
float:left; width:43%; padding:9px 0 25px 25px;
line-height:1.5em;margin-top:-100px;

}
#outerWrapper #contentWrapper #content .primary#contentLeft{
float:left; width:63%; padding:50px 0 25px 25px;padding-right:0;
line-height:1.5em; margin-top:-100px;

}

#outerWrapper #contentWrapper .secondary#rightColumn1{
float:right; width:40%; padding:25px; padding-left:0;
line-height:1.5em;
background-image:none;

}
#outerWrapper #contentWrapper  .tertiary#content #contentLeft{
float:left; width:93%; padding:85px 0 25px 25px;padding-right:0;
line-height:1.5em; margin-top:-100px;

}
div.secondary #rightColumn1 h2{
margin-top:-100px;
}
/* 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: both;
  display: block;
}
#outerWrapper #footer {
  font-family: Arial, Helvetica, sans-serif;
background-image:url(../images/footerbg.jpg);  border-top: solid 1px #666; /* Sets the top border properties for an element using shorthand notation */
  padding: 3px 10px 1px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  font-size: .7em;

}
 #footer p{
padding-bottom:3px;
margin-top:5px;
}
/*form styles*/

form table td.righttopcol{
vertical-align:top;
text-align:left;

}
.lefttopcol {
text-align:right;

}
.venue{
font-size:85%;
}
ul.indexlist {
list-style-type:none;
}
ul.indexlist a:link{
text-decoration:underline;
color: #0c535f;

}
.eeoc 
{font-size: 85%;
font-style: italic;
}
.item{font-weight: bold;
color: #0c535f;
}
noscript{
text-align:left;
}
noscript h1{
font-size:13px;
font-family:Arial, Helvetica, sans-serif;
color:#dd3300;
text-align:center;
}
noscript p.blocked{
color:#0033dd;
}
ul#board{
list-style-type:none;
}
ul#board li{
line-height:2.5em;
}
form#emailContact{
border:2px #ccc dotted;
padding-left:20px;
padding-bottom:20px;
padding-top:10px;
margin-right:80px;
margin-top:15px;
}
img.placeholder{
margin:10px;
border:1px solid #ccc;
}
#contentLeft.fullPage h1{
margin-top:-50px;
}
ul.article{list-style-image:url(../images/listmarker.jpg);)}
ul.article li a:link{

color:#666;
text-decoration:none;
}
ul.article li a:visited{
color: #0c535f;
}
ul.article li a:hover{
color: #0c535f;
}
h1.center, h3.center,p.center, h5.center{
text-align:center;
}
.center span{
font-weight:bold;
text-decoration:underline;
}
table.reports{
font-size:85%;
line-height:96%;
}
table.reports td, table.reports th{
padding-left:5px;
padding-right:5px;
}
ol.alpha{
list-style:upper-alpha
}

#outerWrapper #contentWrapper .banner div.corner1{
background:#89d0ee url(../images/corner1.png) no-repeat  top left;

}
#outerWrapper #contentWrapper .banner div.corner2{
background:url(../images/corner2.png) no-repeat top right; 
}

#outerWrapper #contentWrapper .banner div.corner3{
background:url(../images/corner3.png) no-repeat left bottom; 


}
#outerWrapper #contentWrapper .banner div.corner4{
background:url(../images/corner4.png) no-repeat right bottom; padding:10px;

}
div.banner{
text-align:center;
}
.note{
font-style:italic;
font-size:80%;
}
