/* 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: 130px;
	
  border-top: solid 1px #FDFDFD;
  border-left: solid 1px #FDFDFD;
  border-right: solid 1px black;
  border-bottom: solid 1px black;

  background: #CCC;

  text-align: center;
  font-family: "Times News Roman", sans-serif;
  font-size: .9em;
}

#nav #proj_list{ display: none; }

#nav .heading{
  background: #939393;
  color: black;
  border-top: 2px solid #DDDDDD;
  border-left: 2px solid #DDDDDD;
  border-right: 2px solid black;
  border-bottom: 2px solid black;

  font-weight: bold;

  margin: 6px 3px 3px 3px;
}

#nav .link{
  margin: 5px 0px 5px 0px;
}

#nav select{
  background-color: #ccc;
  color: #06c;
  
  text-align: center;
}

#nav option{
  background-color: #ccc;
  color: #06c;
  
  text-align: center;
}  

/* The main content class */
#content{
  position: absolute;
  top: 80px;
  left: 163px;
  width: 64%;

  font-family: "Times New Roman", sans-serif;
  font-size: 1em;
  color: black;  

  border: solid 2px #06C;
  background: #939393 url("to939393.gif") repeat-x scroll top left;
  padding: 20px 10px 10px 10px;
  
  z-index: 1;
}


/* regular ol' boring stuff */
body{
  background: #CCC url("bg.jpg") repeat-y fixed top left; 
}

h2.title{
  position: absolute;
  left: 95%;
  top: 20px;
  
  font-size: x-large;
  font-style: italic;
  color: #06C;
}

h2{
  text-align: center;
}
 
big{
  font-family: cursive;
  font-size: larger;
  
  color: white;
}

a.anchor:hover{
  text-decoration: none;
}

a{
  color: #06C;
  text-decoration: none;
}

a:hover{
  text-decoration: underline;
}

img, img:hover{ border: 0; }