/* The whole menu */
#menu {
	position: absolute;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	text-transform: uppercase;
}
/* above font-size: 100%  and the width of 80px below was 100 and the other of 80 was 120*/
/* Each menu name */
#menu li {
      float: left;
      list-style-type: none;
      width: 115px;
      text-indent: 0px;
      margin-left: 3px;
      color: #603913;
      text-decoration: none;
      background-color: #F9F5DD;
}
/* each main menu link */
#menu li a{
      color: #603913;
      text-decoration: none;
}
#menu li a:hover {
      font-weight: bold; 
      background-color: white;
}
#menu li a img {
	border: 0px;
      color: #603913;
	background-color: white;
}
/* The entire submenu */
#menu li ul {
      margin: 0px;
      padding: 0px;
}
/* Each submenu item */
#menu li ul li {
      background-color: #FAEB9E;
      padding: 0px;
      margin: 0px;
      float: none;
      list-style-type: none;
      width: 130px;
      text-indent: 0px;
      border-bottom-style: solid; 
      border-bottom-width: 1px;
      border-bottom-color: white; 
}
#menu li ul li a{
      color: #603913;
      text-decoration: none;
}
#menu li ul li a:hover{
      font-weight: bold; 
      background-color: white;
}
