/***********************************************/
/* HTML tag styles                             */
/***********************************************/ 

body{
    margin: 0; /* zeroes the margins on the body */
    padding: 0; /* zeroes the padding on the body ~ Opera carries a default padding and requires this zeroing */
    border: 0; /* zeroes off any existing border */
    text-align: center; /* Hack to center the wrapper in IE5.x pc */
    min-width: 770px; /* Prevents the body becoming narrower than our wrapper div - keeps the content from disappearing off the left edge with Gecko browsers */	
}

a:link, a:visited, a:hover {
	color: #006699;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}
/* overrides decoration from previous rule for hovered links */

h1, h2, h3, h4, h5, h6 {
	font-family: Arial, Helvetica, sans-serif;
	margin: 0px;
	padding: 0px;
}

h1{
 font-family: Verdana, Arial, Helvetica, sans-serif;
 font-size: 120%;
 color: #334d55;
}

h2{
 font-size: 114%;
 color: #006699;
}

h3{
 font-size: 100%;
 color: #334d55;
}

h4{
 font-size: 100%;
 font-weight: normal;
 color: #333333;
}

h5{
 font-size: 100%;
 color: #334d55;
}

ul{
 list-style-type: square;
}

ul ul{
 list-style-type: disc;
}

ul ul ul{
 list-style-type: none;
}

label{
 font: bold 100% Arial, Helvetica, sans-serif;
 color: #334d55;
}
				

/***********************************************/
/* Layout Divs                                 */
/***********************************************/

#mainDiv { /* main web page container */
	width: 770px;/*sets the width for IE5.x's broken box model*/
	w\idth: 770px; /* sets the width of the wrapper for compliant browsers*/
	margin: 5px auto; /* sets a border to all 4 sides */
	position: relative; /* important to position it relatively */
	text-align: left; /* Realigns the text to the left after the IE hack in the body rule */
	top: -5px;
	border: 1px solid #000;
    background-color: #FFFCD4;
}

#siteHeader{
	margin: 0;
	padding: 0px 0px;
	width: 100%;
}

#content{
  float:right;
	width: 590px;
	margin: 0;
	padding: 0 5px 0 10px;
    font-family: Arial, Helvetica, sans-serif;
	color: #000000;
    background-color: ##FFFCD4;	
	font-size: 12px;
	line-height: 1.166;		
}

/* for wide pages with no NAV bar like MAP pages */
#contentwide{
	width: 750px;
	margin: 0;
	padding: 0;
    font-family: Arial, Helvetica, sans-serif;
	color: #000000;
    background-color: ##FFFCD4;	
	font-size: 12px;
	line-height: 1.166;		
}

/* for INDEX/HOME page only */
#contentindex{
  float:right;
	width: 595px;
	margin: 0;
	padding: 0;
    background-color: #FFFCD4;	
}

/***********************************************/
/*Component Divs                               */
/***********************************************/

/*************** #pageHeader styles **************/

#pageHeader{
	padding: 0px 0px 10px 10px;
}


/************* #globalNav styles **************/

#globalNav{
padding: 0;
white-space: nowrap;
}
/* 'nowrap' prevents any TEXT 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 {
	padding: 0px 0px 0px 0px; 
}


/************* #secondaryNav styles *************/

#secondaryNav{
	font-size: 80%;
	padding: 5px 0px 5px 10px;
}

/************* #siteInfo styles ***************/

#siteInfo{
	clear: both;
	font-size: 10px;
	font-family: Arial, Helvetica, sans-serif;
	color: #999999;
    margin: 0; /* zeroes the margins on the body */
    padding: 0; /* zeroes the padding on the body ~ Opera carries a default padding and requires this zeroing */
    border: 0; /* zeroes off any existing border */
}

p.siteNotice {
    padding: 0px 10px;
}
            /* Client Contact Info */
table.siteClient{
	font-size: 16px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	line-height: 20px;
    margin: 0; /* zeroes the margins on the body */
    padding: 0; /* zeroes the padding on the body ~ Opera carries a default padding and requires this zeroing */
    border: 0; /* zeroes off any existing border */
}

/* 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" */

/*********** Navigation styles ***********/

div.navBar{
    min-width: 175px; /* Prevents the container DIV from becoming narrower than our wrapper div - keeps the content from disappearing off the left edge with Gecko browsers */
    max-width: 175px;
}

div.navLink{
    position: relative;
	z-index: 1;
    min-width: 175px; /* Prevents the container DIV from becoming narrower than our wrapper div - keeps the content from disappearing off the left edge with Gecko browsers */
	height: 42px;
    margin: 0; /* zeroes the margins on the body */
    padding: 0; /* zeroes the padding on the body ~ Opera carries a default padding and requires this zeroing */
    border: 0; /* zeroes off any existing border */
	text-align: center;	
    background-image: url(../images/button.jpg);
	background-repeat: no-repeat;
	background-position: center center;		
}

a.navText1 {
    position: relative;
	z-index: 2;
	top: 12px;
    min-width: 125px; /* Prevents the body becoming narrower than our wrapper div - keeps the content from disappearing off the left edge with Gecko browsers */	
    margin:  0 0 0 5px; /* zeroes the margins on the body */
    padding: 0; /* zeroes the padding on the body ~ Opera carries a default padding and requires this zeroing */
    border: 0; /* zeroes off any existing border */
}
a.navText2 {
    position: relative;
	z-index: 2;	
	top: 6px;
    margin: 0; /* zeroes the margins on the body */
    padding: 0; /* zeroes the padding on the body ~ Opera carries a default padding and requires this zeroing */
    border: 0; /* zeroes off any existing border */
}

a.navText1:link, a.navText1:visited{
	font-family: Arial, Helvetica, sans-serif;	
	font-size: 12px;
	font-weight: bold;
	color: #FFFCD4;
}

a.navText1:hover, a.navText1:active{
	font-family: Arial, Helvetica, sans-serif;	
	font-size: 12px;
	font-weight: bold;
	color:#FFFF00;
	text-decoration: none;
}

a.navText2:link, a.navText2:visited{
	font-family: Arial, Helvetica, sans-serif;	
	font-size: 12px;
	font-weight: bold;
	color: #FFFCD4;
}

a.navText2:hover, a.navText2:active{
	font-family: Arial, Helvetica, sans-serif;	
	font-size: 12px;
	font-weight: bold;
	color:#FFFF00;
	text-decoration: none;
}

