
/* stylesheet.css */

/*Page header style*/
#header{
   height: 250px;
   width: 100%;
   margin: 0px;
   background-color:#000033;
   border-top: thick double #cc3300;
   border-bottom: thick double #cc3300;
}
#header2{
height: 175px;
   width: 100%;
   background-color:#000033;
   border-bottom: thin solid #000033;
   }

/*Page footer style*/
#footer{
   clear: both;
   height: 20px;
   width: 100%;
   background-color: #003399;
   }

/* Add some margin space to main content */

#main{

     padding-left: 20px;

     padding-right: 10px;

}

/* Style for main content column */
#main{
       margin: 1em;
       /* margin-left must equal */
       /* total width of left sidebar */
       margin-left: 15em;
	   margin-right: 15em;
}

/* Style for sidebar column */

#sidebar{

           float: left;

           display: inline;

           padding: 0;

           margin: 1em;

           width:8em;

            /* Total width is 10em */

}

#sidebar2{

           float: left;

           display: inline;

           padding: 0;

           margin: 1em;

           width:8em;

            /* Total width is 10em */

}

/* Body text and page background */
body {
 
  margin: 0px;
  padding: 0;
  font-family: Georgia, "Times New Roman", Times, Serif;
  font-size:medium;
  color:#cccccc;
  background-color: #003399;
  
 }
 

 
 /*Unvisited links*/
 a:link {
 color: #66CCFF; /*lt blue*/
 }
 
 /*visited links*/
 a:visited {
 color: #FF3300; /*orange*/
 }

/* Level 1 headings */
h1 {
 font-family: Georgia, 'Lucinda Bright', serif;
 font-weight: bold;
 font-size: 2.5em;
 text-align:center; 
 color: #ff6600;
}
/* Level 2 headings */
h2 {
 font-family: Georgia, 'Lucinda Bright', serif;
 text-align:;
 font-size: 1.5em;
 font-style:italic;
 color: #ff6600;
}
/* Level 3 headings */
h3 {
 font-family: Georgia, 'Lucinda Bright', serif;
 font-style:italic;
 font-size: 1em;
 color: #ff6600;
}

/* Generic style class for highlighting text */
.hilite{
 background-color:#ffff00;
}

 /*heading text*/
 p.heading{
 padding-top:10px;
 }
 
/* Paragraphs styled as tips */
p.tip {
 background-color:#ACD095;
 margin-left:100px;
 margin-right:100px;
 padding:5px;
 border:solid thin #167A58;
}
 
/* Paragraphs styled as warnings */
p.warning {
 background-color:#FFCCFF;
 margin-left:100px;
 margin-right:100px;
 padding:5px;
 border:solid thin #ff00CC;
}

/* Float image to left of paragraph */
img.floatLeft{
   float: left;
   margin-right: 5px;
}

/* Float image to right of paragraph */ img.floatRight{ float: right; }

/* Center image between margins */ div.center{ width: 100%; text-align: center }

/* Style for tables of thumbnail images */
table.thumbs{
   text-align: center;
   border-collapse: collapse;
   margin:auto;
}

/* Style for table cells that contain thumbnails */ td.thumbs{ border: solid 1px #00cccc; padding: 10px; }

/* Style for thumbnail images */ img.thumbs{ width:100px; }

