/* this is the clipping region for the menu. it's width and height get set by script, depending on the size of the items table */
.transMenu {
  position:absolute;
  overflow:hidden;
  left:-1000px;
  top:-1000px;
}

.top { }

/* this is the main container for the menu itself. it's width and height get set by script, depending on the size of the items table */
.transMenu .content {
  position:absolute;
  border: 1px solid black;
  #margin-left: -4px;
  _margin-left: -4px;
}

/* this table comprises all menu items. each TR is one item. It is relatively positioned so that the shadow and background transparent divs can be positioned underneath it */
.transMenu .items {
  position:relative;
  left:0px; top:0px;
  z-index:2;
  background-color: #DDE7F3; /* #FEE9D1; */
}

a.sublevel {
  color: #000000 !important;
  font-size:12px;
  font-weight: normal;
  text-align:left;
  vertical-align:middle;
  font-family:Tahoma,Arial,Helvetica;
}

.menu div.top{
  border-top: none !important;
  background-color: transparent !important;
}

.ul_submenu {
  LIST-STYLE-TYPE: none;
  list-style-position: outside;
  padding: 0px;
  margin: 0px;
  WIDTH: 100%;
}

.ul_submenu li {
  vertical-align: middle;
}

.ul_submenu li a {
  display:block;
  padding-top:3px;
  margin: 0px;
  text-decoration:none;
  width:100%;
  height: 18px;
  border-top: 1px solid black;
  /* background: #FEE9D1; */
}
.ul_submenu li a:hover{
  background: #5C8AC5; /* FEAE51; */
  color: #FFFFFF !important; /* black; */
}

.ul_submenu li a span {
  padding: 0px 0px 0px 0px;
  margin: 10px;
  vertical-align: middle;
}

td.menutitle{
  padding-right: 10px;
  font-size:12px;
}
td.menutitle a {
  display:block;
  margin:0px;
  padding-left:8px;
  padding-right:2px;
  padding-top:5px;
  padding-bottom:5px;

  text-align:left;
  text-decoration:none;
  vertical-align:middle;
  width:100%;
}
td.menutitle a:hover{
  background-color: #DDE7F3; /* #FECB90; */
  color: #000000 !important;
}

a.dnarr_cur {
  background-repeat: no-repeat;
  background-position: right bottom;
  background-image: url('/images/dnarr_cur.gif');
}

a.dnarr {
  background-repeat: no-repeat;
  background-position: right bottom;
  background-image: url('/images/dnarr.gif');
}

a.mnusel {
  background-color: #E8EDF2;
  color: #000000 !important;
  white-space: nowrap;
}
a.mnuunsel {
  color:#FFFFFF !important;
  white-space: nowrap;
}


.ul_submenu li div.mainlevel{
  padding: 4px 10px;
  color: #000000 !important;
  border-top: 1px solid black;
  background:#F7F7F7;
}

*{
  padding: 0px;
  margin: 0px;
}


/* this DIV is the semi-transparent white background of each menu. the -moz-opacity is a proprietary way to get transparency in mozilla, the filter is for IE/windows 5.0+. */
/* we set the background color in script because ie mac does not use it; that browser only uses a semi-transparent white PNG that the spacer gif inside this DIV is replaced by */
.transMenu .background {
 position:absolute;
 left:0px; top:0px;
 z-index:1;
 -moz-opacity:<?php echo ($background_opacity / 100); ?>;
 filter:alpha(opacity=<?php echo $background_opacity; ?>);
}
/* same concept as .background, but this is the sliver of shadow on the right of the menu. It's left, height, and background are set by script. In IE5/mac, it uses a PNG */
.transMenu .shadowRight {
 position:absolute;
 z-index:3;
 top:3px; width:2px;
 -moz-opacity:<?php echo ($shadow_opacity / 100); ?>;
 filter:alpha(opacity=<?php echo $shadow_opacity; ?>);
}
/* same concept as .background, but this is the sliver of shadow on the bottom of the menu. It's top, width, and background are set by script. In IE5/mac, it uses a PNG */
.transMenu .shadowBottom {
 position:absolute;
 z-index:1;
 left:3px; height:2px;
 -moz-opacity:<?php echo ($shadow_opacity / 100); ?>;
 filter:alpha(opacity=<?php echo $shadow_opacity; ?>);
}
