 /* stylesheet.css */ 
/* body text and page background */
body{
  padding: 0;
  margin: 0;
  background-color: #d90000;
 }
/* wrapper sizes layout */
#wrapper{
margin: auto;
width: 59em;
background-color: #d90000;
}
/* Page header style */
  #header{
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    margin: 0; 
    padding: 0;	
    width: 100%;
    height: 47px;	
    background-color: #d90000;
    text-align: center;	
}
/* level 1 headings */
h1{
  margin: 0;
  font-family: papyrus, "Curlz MT", "Juice ITC", Algerian, fantasy;
  font-weight: bold;
  font-size: 3em;
  color: #1F2159; 
}
/* level 2 headings */
h2{
  font-family: "Arial Black", Impact, Charcoal, fantasy;
  color: #1F2159;
  text-align: center;
  margin: 10px;
  height: 25px;
}
/* level 3 headings */
h3{
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  text-decoration: underline;
  color: #1F2159;
  text-align: center;
  padding-bottom: 25px;
}
/* Unvisited links (underline) */
a:link{
  color: #FFFFFF;/* black */
  text-decoration: underline;
}
/* Visited links (no underline) */
a:visited{
  color: #fffafa; /* snow */
  text-decoration: none;
}
/* Hover links (green underline) */
a:hover{
 color: #800000; /* red */
}
/* Active links (white underline) */
a:active{
  color: #f0f8ff; /* alice */
  text-decoration: underline;
}
/* style class for credits */
 #credits{
   margin-right: 20px;
   margin-left: 20px;
   padding: 5px;
   background-color: #f0f8ff;
   line-height: 1em;
   text-align: left;
   font-family: arial, helvetica, sans-serif; 
}
/* style for left sidebar */ 
#leftcolumn{
  margin-top: 47px;
  background-color: #FF4500;
  font-size: 1.2em;
  font-family: "courier new", courier, freemore, monospace;
  line-height: 1.25em;
  float: left;
  width: 20em;
} 
/*style for main content area */
  #main{
   background-color: #FF4500;
   margin-top: 47px;
   margin-left: 23em;
   text-align: center;
}
/* list styled bio */ 
ul.bio{
  background-color: #f0f8ff;
  font-size: 1em;
  font-family: arial, helvetica, sans-serif;
  color: #191970;
  margin-right: 0px;
  margin-left: 0px;
  text-align: left;
} 
/* Page footer style */
 #footer{
   position: fixed;	
   width: 100%;
   height: 32px;
   top: auto;
   right: 0;
   bottom: 0;
   left: 0;  
   background-color: #D90000;
   text-align: center;	
}
