/* CSS code for top nav bar */

body {
  background-color: #2358B8;
}


a:link,a:visited {
  text-decoration: none;
  font-size: 13px Arial, sans-serif;
  font-weight: bold;
  color: white;
  text-transform:uppercase; 
}
/* 2358B8 is Dodgers color */
#topNav {
  width: 850px;
  position: relative;
  top: 0px;
  left: 10px;
  background: #003333;
  height: 31px;
  color: #cccccc;
  padding: 0px;
  margin: 0px;
}

#linkContainer {
  position: absolute;
  top: 10px;
  left: 10px;
  height: 16px;
  padding: 0px;
  margin: 0px;
  z-index: 1;
}

a.topNavLink {
  padding: 0px 5px 0px 5px;
  border-right: 1px solid #666666;
}

a#lastItem {
  border-right: none;
}

a.topNavLink:hover {
  background: #00CCFF;
}

/* put id="active" in A href area of current page to
change background and indicate current page
background 306754 is Medium Sea Green
*/ 
a#active {
  background: #306754;
