/* Body */
body{
  margin: 0%;
  background-color: #f2cda1;
  color: black;
  font-family: 'Lucida Grande', Arial, sans-serif;
}

/* Header */
#header {
  margin: 0;
  padding: 0;
  height: 80px;
}
#header img {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  width: 100%;
  height: 80px;
  border-top: 3px solid #990000;
  border-bottom: 3px solid #990000;
}
#header h1 {
  position: absolute;
  right: 0;
  top: 0;
  padding: 20px;
  margin: 0;
}

/* to keep main at the same height. not sure i actually like this */
#top {
  margin: 0;
  padding: 0;
  height: 130px;
}


/* links */
#main a:link, a:active {
  color: #333333;
  text-decoration: underline;
}
#main a:visited {
  color: #555555;
  text-decoration: underline;
  background-color: auto;
}
#main a:hover{
  color: #333333;
  text-decoration: none;
  background-color: #dddddd;
}

#footer a:link, a:active {
  color: #333333;
  background-color: #FFFFFF;
  text-decoration: underline;
}
#footer a:visited{
  color: #555555;
  background-color: #FFFFFF;
  text-decoration: underline;
}
#footer a:hover{
  color: #333333;
  text-decoration: none;
  background-color: #dddddd;
}

/* Copyright notice */
#footer {
  margin-top: 3%;
  margin-bottom: 3%;
  margin-left: 3%;
  margin-right: 3%;
  padding: 1%; 
  background: #ffffff;
  color: #000000;
  border: 1px dotted #000000; 
  font-size: 0.8em;
}


/* Main Text Box */
#main {
  margin-left: 3%;
  margin-right: 3%;
  margin-top: 5%;
  margin-bottom: 2%;
  padding: 2%; 
  background-color: white;
  color: #000000;
  border: 1px dotted black; 
}
ul.hidden{
  list-style-type: none;
}

/* sorta random formatting */
.important {
  font-weight: bold;
  color: red;
}


/* location and image stuff */
div.center table {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}
div.center img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2em;
  margin-bottom: 2em;
}
div.center p {
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
div.right {
  float: right;
  margin: 3%;
}
div.left {
  float: left;
  margin: 3%;
}
p.right {
  text-align: right;  
}
.caption{
  font-size: 0.8em;
  margin-bottom: 3%;
}
.note {
  font-size: 0.8em;
  font-weight: normal;
}
span.title {
  font-style: italic;
}


/* Tables */
table {
  border-collapse: collapse;
  border: 2px solid gray;
}
thead th {
  border-collapse: collapse;
  border: 2px solid gray;
  background-color: #dddddd;
}
tbody {
  border-collapse: collapse;
  border: 2px solid gray;
  text-align: left;
}
tbody th {
  border-collapse: collapse;
  border: 2px solid gray;
  background-color: #dddddd;
}
tbody td {
  border: 1px solid gray;
  vertical-align: top;
}
th, td {
  padding: 5px;
}
table img {
  border: 5px outset gray;
}
tr.current {
  background-color: ff6666;
}