/* stylesheet.css */

body { 
 margin: 0px;
     font-family: 'Book Antiqua', Times, Serif;
     font-size: medium;
     color: #191970;
     background-color: #C3E1EA;
 }

h1 { 
  color: #1F2159;  
  font-style: italic; 
  font-family: Arial, Helvetica, sans-serif;
}

h2 {
  color: #1F2159;
  font-size: large;
  font-style: bold; 
  font-family: Arial, Helvetica, sans-serif;

/* Page header style */
#header{
     width: 100%;
     background-image: url("bkg/drops.jpg");
     background-repeat: repeat;
     border-bottom: thick solid #191970; 
}

/* Page footer style */ 
#footer{ 
     width: 100%;
     background-image: url("bkg/drops.jpg");
     background-repeat: repeat;
     border-top: thick solid #191970; }
     Padding-top: 4px;

/* Add some margin space to main content */

#main{

     padding-left: 20px;

     padding-right: 10px;

}

/* Unvisited links (no underline) */
a:link{
   color: #00bfff;

 /* sky blue */

   text-decoration: none;
}

/* Visited links (no underline) */ 

a:visited{ color: #ff00ff;

/* fuchsia */ text-decoration: none; }

/* Hover links (red underlined) */ 

a:hover{ color: #ff0000; 

/* red */ 

text-decoration: underline; }

/* Active links (green underlined) */ 


a:active{ color: #00ff00;
 /* green */ 
text-decoration: underline; }


