/*
 * Contains elements from:
 *
 * http://www.cs.columbia.edu/~roxana/css/index.css 
 *
 */

body {
  font-family: Georgia, Times New Roman, Times, serif;
  text-align: left;
  direction: ltr;
  width: 900px;
  margin-left: auto;
  margin-right: auto;
}

#main_body {
  background-color: #E8F1F7;
  padding: 20px;
}

#navigation {
  width: 100%;
  border: solid 1px #0064a4;
  background-color: #0064a4;
  height: 30px;
  transform: translateY(-50%);
  top: 50%;
}

#navigation a {
  text-decoration:none;
  font-weight:bold;
  font-size: 20px;
  color: #ffd200;
}

#navigation a:hover {
  color: #E8F1F7;
}

#navigation ul {
  text-align:center;
  margin: 0px;
  list-style-type:none;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

#navigation ul li {
    display:inline;
    margin: 0px 20px;
}


