/* CSS code for top nav bar */

a:link,a:visited
 {
  width:120px;
  text-decoration: none;
  font-size: 13px Arial, sans-serif;
  font-weight: bold;
  color: white;
  text-transform:uppercase; 
}
/* 2358B8 is Dodgers color */
#topNav {
  width: 822px;
  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: #6AFB92;
}
/* put id="active" in A href area of current page to
change background and indicate current page */ 
a#active {
  background: #347235;

