/* Begin the header class. This is all the crap at the top of the page. */
#header{
  font-family: "Tempus Sans ITC", serif;
  background: url("red_black_logo.jpg") no-repeat scroll top left;
  
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100px;
}

/* Navigation class. This is (duh) the nav panel. */
#nav{
  position: absolute;
  top: 110px;
  left: 5px;
  width: 130px;
	
  border: dashed 1px #0F0;

  text-align: center;
  font-family: "Lucida Console", "Courier New", sans-serif;
  font-size: .9em;
  color: #0F0;
}

#nav #proj_list{ display: none; }

#nav .link{
  margin: 5px 0px 5px 0px;
}

#nav .heading{
  color: #FC0;

  border: outset 1px #0F0;

  font-weight: bold;

  margin: 5px 3px 5px 3px;
}

#nav select{
  background-color: black;
  color: #FC0;
  
  text-align: center;
}

#nav option{
  background-color: black;
  color: #FC0;
  
  text-align: center;
} 

#nav hr{
   color: #0F0;
   background-color: #0F0;
}

/* The main content class */
#content{
  position: absolute;
  top: 110px;
  left: 163px;
  width: 64%;

  font-family: "Lucida Console", sans-serif;
  font-size: 1em;
  
  color: #0F0;  
  
  border-top: solid 2px #FC0;
  border-left: solid 2px #FC0;
  padding: 10px 10px 10px 10px;
  
  z-index: 1;
}

#content hr{
  background: #FC0;
  color: #FC0;
}


/* regular ol' boring stuff */
body{
  background: black; 
}

h2.title{
  position: absolute;
  left: 95%;
  top: 20px;
  z-index: 0;
  
  font-size: x-large;
  font-family: "Lucida Console", cursive;
  font-weight: bold;
  color: #FC0;
}

h2{
  text-align: center;
}
 
big{
  font-family: cursive;
  font-size: larger;
  
  color: #FC0;
}

a.anchor:hover{
  text-decoration: none;
}

a.anchor{
  text-decoration: none;
}

a{
  color: #FC0;
  text-decoration: underline;
}

a:hover{
  text-decoration: none;
}	

img, img:hover{ border: 0; }