
/* stylesheet.css */

/* Body text and page background */

   body {

   font-family: Comic Sans MS,TSCu_Comic,cursive;
   font-size: 100%;
   color: black;
   text-align:center;
   background-color: #F2960D;  
   
}
/*floating header*/
   #header{
   position: fixed;
   top: 0; left:0; 
   width: 100%;height:280px;
   background-color: #F2960D;
  
}
/*main content*/
   #main{
   margin: 50px;
   margin-top: 280px;
   
}

/* Level 1 headings */
   h1 {
   font-family:  Comic Sans MS,TSCu_Comic,cursive;
   font-weight: bold;
   text-align:center; 
   color: #F20DAD;
   font-size: 200% ;
}
/* Level 2 headings */
   h2 {
   font-family: Comic Sans MS,TSCu_Comic,cursive;
   color: #1F2159;
}
/* Level 3 headings */
   h3 {
   font-family: Arial,Helvetica,sans-serif;
   font-style:italic;
   text-decoration:underline;
   color: #1F2159;
}

/* Generic style class for highlighting text */
   .hilite{
   background-color:#ffff00;
}

/* 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 #ff0000;
}
/* 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; 
   clear:both 
}
/* Custom bullet for bulleted lists */
   ul{
   list-style-image: url(".gif");
}

/* Style for tables of thumbnail images */
   table.thumbs{
   text-align: center;
    margin: auto;

  
}

/* Style for table cells that contain thumbnails */
   td.thumbs{ border: solid 0px #00bfff;  }

/* Style for thumbnail images */ 
   img.thumbs{ 
   width:100px; 
}
/* Style for tables of thumbnail images */ 
   table.thumbs{
   text-align: center;
   border-collapse: collapse;
}

/* Unvisited links (no underline) */
   a:link{
   color: #660052; 
   text-decoration: none;
}

/* Visited links (no underline) */ 
   a:visited{ color: #660052; 
   text-decoration: underline; 
}

/* Hover links (red underlined) */  
   a:hover{ color: #003333; 
   text-decoration: underline; 
}

/* Active links (green underlined) */ 
   a:active{ color: #0DF224; 
   text-decoration: underline; 
}


p{
  line-height: 20pt;
}
