/*****************
Remove default margins, paddings
******************/
* {
margin:0;
padding:0;
}

/*
Set initial font styles
*/
body {
   text-align: left;
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 75.01%;
   line-height: 1em;
   background:url(images/background.png);
}

/*
set font size for all divs
*/
div {
   font-size: 1em;
}




/*****************
basic layout 
*****************/
body {
   background-color: #fff;
   color: #333;
   margin:1em;   
}


div#pagewrapper {
   border: solid 2px #000066;
   margin: 0 auto;       /* centers wrapper */
   max-width: 80em;   /* use Javascript for this in IE */
   min-width: 60em;
   background: url(images/background-light.png);
   color: black;
}




div#header {
   height: 198px;   
   border-bottom: solid #003366 4px;           
}

   div#header h1 a {
   background:url(images/logo.jpg) no-repeat;
   background-position: 0px 0px; 
   display: block;
   height: 198px;             
   text-indent: -999em;  
   text-decoration:none; 
}


   
div#content {
   margin: 1.5em auto 2em 0;   
}


div#main {
   margin-left: 31%; 
   margin-right: 2%; 
}

div#sidebar {
   float: left;
   width: 26%;     
   display: inline;  /* FIX IE double margin bug */
   margin-left: 0;
   font-size: 1.5em;
}


div#footer {
   height: 40px;
   clear: both;      
   color: #003366;
   background-color: #FFFFFF; 
   padding: 10px;
   border-top: solid #003366 4px; 
}

div#footer p {
   font-size: 0.8em;
   padding: 1.5em;       
   text-align: center;  
   margin: 0;
}

div#footer p a {
   color: #fff; 
}


div.hr {
   height: 1px;
   padding: .5em;
   border-bottom: 1px dotted black;
   margin: 1em 1em 2em 1em;
}


div.left49 {
  width: 49%; 
}

div.right49 {
  float: right;
  width: 49%;
  text-align: right;
}


img.imageright {
   float: right;
   margin: 1em 1em 1em 1em;
   border: solid 1px;
   
   
}

img.imageleft {
   float: left;
   margin: 0 1em .5em 0em;
   border: solid 1px;
   
}

/********************
CONTENT STYLING
*********************/
div#content {

}

/* HEADINGS */
div#content h1 {
   font-size: 2em; 
   line-height: 1em;
   margin: 0;
}
div#content h2 {
	color: #036; 
	font-size: 1.5em; 
	text-align: left; 
	padding-bottom: 1px;

	border-bottom: 1px solid #036;  
    line-height: 1.5em;
    margin: 0 0 0.5em 0;
}
div#content h3 {
   color: #003366; 
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
   border:none;
}
div#content h4 {
   color: #003366; 
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
div#content h5 {
   color: #003366; 
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   color: #003366; 
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}


/* END HEADINGS */

/* TEXT */
p {
   font-size: 1.3em;
   margin: 0 0 1.5em 0; 
   line-height: 1.4em;
   padding: 0;
}

blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
strong, b {
   font-weight: bold;
}
em, i {
   font-style:italic;


}



/* END TEXT */

/* LISTS */
div#main ul,
div#main ol,
div#main dl {
   font-size: 1.0em;
   line-height: 1.4em;
   margin: 0 0 1.5em 0;
   list-style:decimal;
   
}

div#main ul li,
div#main ol li {
   margin: 0 0 0.25em 3em;
   color: #000000;
   list-style: circle;
}

div#main dl dt {
   font-weight: bold;
   margin: 0 0 0 1em;
}
div#main dl dd {
   margin: 0 0 1em 1em;
}

div#main dl {
  margin-bottom: 2em;
  padding-bottom: 1em;
  border-bottom: 1px solid #c0c0c0;
}


/* END LISTS */

