#cssmenu {
  border: none;
  border: 0;
  margin: 0;
  padding: 0;
  /*  font: 67.5% 'Lucida Sans Unicode', 'Bitstream Vera Sans', 'Trebuchet Unicode MS', 'Lucida Grande', Verdana, Helvetica, sans-serif;  */
  /*  font-size: 14px;  */
  font-family: verdana, helvetica, sans-serif;
  font-size: 10px;
  font-weight: bold;
  width: auto;
}
#cssmenu ul {
  /*  color of background div - not seen, except to the right of the div - should be the same as background color of horozontal menu items  */
  background: #910101;
  height: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
#cssmenu li {
  float: left;
  padding: 0;
}
#cssmenu li a {
  /*  background color of horozontal menu items  */
  background: #910101 url('/geer/images/dropdownmenu/seperator.png') bottom right no-repeat;
  display: block;
  font-weight: normal;
  /*  line-height: 35px;  */
  /* line-height impacts vertical menu items !!! seems to need to match height of li ul a */
  line-height: 25px;
  margin: 0;
  /*  18px = horizontal spacing on menu  */
  /*  padding: 0px 25px;  */
  padding: 0 18px;
  text-align: center;
  text-decoration: none;
}
#cssmenu > ul > li > a {
  /*  color of text on horizontal menu items  */
  color: #cccccc;
}
#cssmenu ul ul a {
  /*  color of text on vertical menu items  */
  color: #cccccc;
}
#cssmenu li > a:hover,
#cssmenu ul li:hover > a {
  /*  background color of horizontal menu item when hovering  */
  background: #b8b84d url('/geer/images/dropdownmenu/hover.png') bottom center no-repeat;
  color: #FFFFFF;
  text-decoration: none;
}
#cssmenu li ul {
  /*  background color of ALL vertical menu items  */
  background: #333333;
  display: none;
  height: auto;   /*  AUTO is required  */
  padding: 0;
  margin: 0;
  border: 0;  /* border contains complete frop down menu!  */
  position: absolute;
  /*  width: 225px;  */
  width: 180px;
  z-index: 200;
  /*top:1em;*/
	/*left:0;*/

}
#cssmenu li:hover ul {
  display: block;
}
#cssmenu li li {
  background: url('/geer/images/dropdownmenu/sub_sep.png') bottom left no-repeat;
  display: block;
  float: none;
  border: 0;       /* border contains an individual vertical menu item  - OUTER element  */
  margin: 0;
  padding: 0;
  /*  width: 225px; */
  width: 180px;
}
#cssmenu li:hover li a {
  background: none;
}
#cssmenu li ul a {
  display: block;
  /*  height: 35px;  */
  /*  font-size: 12px;  */
  height: 25px;
  font-size: 10px;
  font-style: normal;
  border: 0;   /* border contains an individual vertical menu item  - INNER element  */
  margin: 0;
  /*  vertical spacing - original:   padding: 0px 10px 0px 15px; */
  padding: 0 10px 0 15px;
  text-align: left;
}
#cssmenu li ul a:hover,
#cssmenu li ul li:hover > a {
  /*  background color of vertical menu item when hovering  */
  background: #b8b84d url('/geer/images/dropdownmenu/hover_sub.png') center left no-repeat;
  border: 0;
  color: #ffffff;
  text-decoration: none;
}
#cssmenu p {
  clear: left;
}
