/* 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;
}


/* 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: #000000;
background-color: #808080;
background-image: url(images/bg002.gif);
background-repeat: repeat;
margin: 0 0 0 0;
padding: 0 0 0 0;
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
text-align: center; /* Centers the page content container in IE 5 browsers. */
}

/* Commonly used to style page titles. */
h1 {
  color: #000099;
  background-color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 5px;
  margin-top: 5px;
  margin-bottom: -5px;
}

/* Commonly used to style section titles. */
h2 {
  color: #000099;
  background-color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  line-height: 5px;
  margin-top: 5px;
  margin-bottom: -5px;
}


/* Sets the style for unvisited links. */
a,  a:link {
  color: #cc0000;
  background-color: #ffffff;
  text-decoration: none;
}

/* Sets the style for visited links. */
a:visited {
  color: #0000cc;
  background-color: #ffffff;
  text-decoration: none;
}

/* Sets the style for links on mouseover. */
a:hover {
  color: #ff0033;
  background-color: #ffffff;
  text-decoration: underline;
}


/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #0000cc;
  background-color: #ffffff;
}


/*Custom Link Colors for Navigation*/

.nav {
   font-family: Arial, Helvetica, sans-serif;
   color: #ffcc00;
   background-color: #990033;
   font-size: 13px;
   font-weight: normal;
   letter-spacing: 1px;
   text-decoration: none;
 }

a.nav:link {
   color: #ffcc00;
   background-color: #990033;
   text-decoration: none;
   }

a.nav:visited {
   color: #ffcc00;
   background-color: #990033;
   text-decoration: none;
   }
	
a.nav:active {
   color: #ffcc00;
   background-color: #990033;
   text-decoration: none;
   }
	
a.nav:hover {
	color: #ffcc00;
	background-color: #990033;
	text-decoration: underline;
	}

	
	
	
/*The Class that contains everthing else on the page*/
.outerwrapper {
  position: relative;
  color: #000000;
  background-color: #ffba00;
  margin: 0 auto 0px auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: auto;
  max-width: 960px;
  min-width: 760px;
  text-align: left; /* Redefines the text alignment defined by the body element. */
  padding: 4px 4px 4px 4px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}


/*The Class that contains the logo and tag line classes*/
.header {
   position: relative;
   top: 0px;
   color: #000000;
   background-color: #000055;
   margin: 0px 0px 0px 0px;
   width: auto;
   font-family: Arial, Helvetica, sans-serif;
   font-size: 18px;
   font-weight: bold;
   line-height: 15px;
   padding: 20px 5px 20px 20px;
}

/*Part of Header*/
.logo {
   color: #ffba00;
   background-color: #000055;
   font-weight: normal;
   font-size:24px;
   font-family: Georgia, "Times New Roman", Times, serif;
   letter-spacing:.3em;
   }
	
/*Part of Header */
.tagline {
   color: #d3dce6;
   background-color: #000055;
   font-weight: normal;
   font-size:11px;
   font-family: Arial, Helvetica, sans-serif;
   }


/*CONTAINS THE NAVIGATION*/
.header-two {
   position: relative;
   color: #ffcc00;
   background-color: #990033;
   height: auto;
   width: auto;
   font-family: Arial, Helvetica, Geneva,Verdana, sans-serif;
   font-size: 12px;
   font-weight: normal;
   text-align: left;
   padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
}


/*MASTER LINKS CONTAINING TABLE*/
table.navtop {
   table-layout: fixed;
   width: auto;
   vertical-align: middle;
	text-align: center;
   }

#r1c1nav {width: 45px;
   border-right: thin solid #ff0000;
   text-align: left;
   }

#r1c2nav { width: 112px;
   border-right: thin solid #ff0000;
   }

#r1c3nav { width: 115px;
border-right: thin solid #ff0000;
}

#r1c4nav { width: 80px;
border-right: thin solid #ff0000;
}

#r1c5nav { width: 105px;
border-right: thin solid #ff0000;
}

#r1c6nav { width: 152px;
border-right: thin solid #ff0000;
}

#r1c7nav { width: 82px;
border-right: thin solid #ff0000;
}





/* Contains the page content */
.content {
position: relative;
color: #000000;
background-color: #ffffff;
width: auto;
min-height: 500px;
padding-top: 20px;
padding-right: 40px;
padding-bottom: 20px;
padding-left: 40px;
}

/* 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 .clearfloat {
clear: both;
display: block;
}



.pagename {
   font-family: Arial, Helvetica, Geneva,Verdana, sans-serif;
   font-size: 32px;
   font-weight: bolder;
   color: #990033;
   background-color: #ffffff;
   }

.subheader {
font: bold 18px Arial, Helvetica, sans-serif;
color: #26354A;
background-color: #ffffff;
letter-spacing:.1em;
padding: 8px 0px 0px 0px;
   }


.bodycopy-lg {
font-family: Arial, Helvetica, Geneva,Verdana, sans-serif;
color: #000000;
background-color: #ffffff;
font-weight: normal;
font-size: 16px;
font-style: normal;
text-align: left;
padding-top: 4px;
padding-right: 0px;
padding-bottom: 0px;
padding-left: 0px;
}
  

.bodytext-img{
	padding: 0px 0px 10px 10px;
	margin: 0px 0px 0px 0px;
	float: right;
	
}

.detailtext {
	font: 11px/16px Arial, Helvetica, sans-serif;
	color:#26354A;
	background-color: #ffffff;
	letter-spacing:.1em;
	}
	



.ktitle {
   font-family: Arial, Helvetica, sans-serif;
     font-size: 21px;
   font-weight:bold;
   text-align: left;
   line-height: 110%;
   color: #000000;
   background-color: #ffffff;
   margin-bottom: 10px;
}
	
.lgtitle {
   font-family: Arial, Helvetica, sans-serif;
   color: #b00d38;
   background-color: #ffffff;
   font-size: 24px;
   line-height: 110%;
   font-weight: bold;
}

/*USED ON HOME PAGE*/
.bulletstart { 
font-size: 16px;
line-height: 18px;
margin-bottom: -8px;
} 

/*USED ON HOME PAGE*/
.leadbullet {
  font-size: 16px;
  line-height: 22px;
}

/*USED ON PREVENTION AND PROGRAM PAGE*/
.bulletstart2 { 
   font-size: 14px;
   line-height: 17px;
   margin-bottom: -10px;
} 

/*USED ON PREVENTION AND PROGRAM PAGE*/   
.secondbullet {  
   font-size: 14px;
   line-height: 18px;
 }
 
 
 /*USED ON CONTACT US PAGE*/   
.thirdbullet {  
   font-size: 16px;
   margin-top: -18px;
   margin-bottom: -11px;  
 }
 
 
/* USED ON LINKS PAGE  NOTE BODY3 USES A DIV*/
 .body3 { 
   font-size: 14px;
   line-height: 16px;
   margin-left: 24px;
   margin-top: 16px;
   margin-bottom: 24px;
} 
 
 
 

.redcolor { 
color: #b00d40;
background-color: #ffffff;
 }

.bluecolor { 
color: #333399;
background-color: #ffffff;
 }
 
 
 
 
 /*TABLE FOR CONTACT US PAGE*/
table.contact

 {
   table-layout: fixed;
   width: auto;
   }

#r1c1contact {width: 130px;
   text-align: right;
	vertical-align: top;
   }

#r1c2contact { width: 400px;
   vertical-align: top;
   }
	
	
	/*MASTER FOOTER FOR BOTTOM OF EVERY PAGE*/
.copyright {
   color: #000000;
	background-color: #ffffff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	text-align: center;
	padding-top: 25px;
	padding-right: 0px;
	padding-bottom: 3px;
	padding-left: 0px;
	margin: 0px 0px 0px 0px;
}

.maroon-body {
   font-family: Arial, Helvetica, sans-serif;
   color: #990033;
   background-color: #ffffff;
}


ul.pdf-list {
   padding-left: 25px;
	list-style-position: outside;
   line-height: 24px;
   margin-top: 4px;
}

ul.measures {
   padding-left: 25px;
	list-style-position: outside;
   margin-top: 4px;
   line-height: 18px;
}

li.measures-li {
   margin-top: 8px;
   margin-bottom: 16px;
}


