/* Begin the header class. This is all the crap at the top of the page. */
#header{
  font-family: "Tempus Sans ITC", serif;
  background: url("logo.GIF") no-repeat scroll top left;
  
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 50px;
}

/* Navigation class. This is (duh) the nav panel. */
#nav{
  position: absolute;
  top: 70px;
  left: 5px;
  width: 140px;
	
  border: solid 2px black;

  background: url("parchment.gif");

  text-align: center;
  font-family: "Times News Roman", sans-serif;
  font-size: .9em;
}

#nav #proj_list{ display: none; }

#nav .link{
  margin: 5px 0px 5px 0px;
}

#nav .heading{
  background-color: #ccc;	
  color: black;

  border-top: solid 1px #DDD;
  border-left: solid 1px #DDD;
  border-right: solid 1px black;
  border-bottom: solid 1px black;

  font-weight: bold;

  margin: 5px 3px 5px 3px;
}

#nav select{
  background: url("parchment.gif");
  color: #C06;
  
  font-weight: bold;
  text-align: center;
}

#nav option{
  background: url("parchment.gif");
  color: #C06;
  
  font-weight: bold;
  text-align: center;
}  

/* The main content class */
#content{
  position: absolute;
  top: 80px;
  left: 163px;
  width: 64%;

  font-family: Arial, sans-serif;
  font-size: 1em;
  
  color: black;  

  background: url("parchment.gif");
  border: solid 2px black;
  
  padding: 10px 10px 10px 10px;
  
  z-index: 1;
  overflow: visible;
}


/* regular ol' boring stuff */
body{
  background: #D9D9D0; 
}

h2.title{
  position: absolute;
  left: 91%;
  top: 20px;
  z-index: 0;
  width: 9%;
  
  font-size: x-large;
  font-family: "Lucida Handwriting", "Fine Hand", cursive;
  font-style: italic;
  color: #C06;
}

h2{
  text-align: center;
}
 
big{
  font-family: "Lucida Handwriting", "Fine Hand", cursive;
  font-size: larger;
  
  color: black;
}

a.anchor:hover{
  text-decoration: none;
  background: none;
}

a{
  color: #C06;
  font-weight: bold;
  text-decoration: none;
}

a:hover{
  text-decoration: underline;
  background: #D9D9D0;
}

img, img:hover{ border: 0; }	