/*Fixes width of list and adds a thin border
  to the top of each main menu item*/
ul#menu {
  /**/
  width: 170px;
  /**/
  list-style-type: none;
  border-top: none;
  border-top: solid 1px #b9a894;
  margin: 0;
  padding: 0 0 0 0px;
}
/*Sets font style and colour for all text
  in the menu*/
ul#menu li, 
  ul#menu a {
  /**/
  font-family: verdana, sans-serif;
  font-size: 12px;
	font-weight: bold;
  color: #0000cc;
  /**/
  margin: 0;
  padding: 0 0 0 0px;
}
/*Fixes line height and adds a thin border
  to the bottom of each main menu item*/
ul#menu li {
  border-bottom:none;
  border-bottom: solid 1px #b9a894;
  /**/
  line-height: 26px;
  /**/
  margin: 0;
  padding: 0 0 0 0px;
}
/*Sets margin for first subitem*/
ul#menu ul li {
  border-bottom: none;
  margin: -10;
  padding: 0 0 0 0px;
}
/*Sets margin for second subitem*/
ul#menu ul li ul li {
  border-bottom: none;
  margin: -5;
  padding: 0 0 0 0px;
}
/*Basic link info -- no text decoration
*/
ul#menu a {
  text-decoration: none;
  outline: none;
  padding: 0 0 0 0px;
}
/*Sets hover colour of link*/
ul#menu a:hover {
  color: #ff0000;
  padding: 0 0 0 0px;
}
/*Sets colour of active link*/
ul#menu a.active {
  color: #be5028;
  padding: 0 0 0 0px;
}