/*
xmenu4_1_dhtml.css
xMenu4 Demo 1, Cascading menus from nested ULs!
This code is distributed under the terms of the LGPL (gnu.org)
Mike Foster, Cross-Browser.com
*/

/* xMenu4 DHTML Rules (see xmenu4_1.css for downgrade rules) */

/* Bar */

/* Outermost UL (horizontal bar) */
ul.xmBar {
  position:absolute; visibility:hidden;
  margin:180px 0px; padding:0px;
  background:transparent;
  overflow:visible; cursor:default;
}
/* All LIs in ul.xmBar */
ul.xmBar li {
  list-style:none;
  display:inline;
  width:120px;
  margin:20px 50px 0 0; padding:0px 0px;
}
/* Bar label */
li.xmBarLbl {
  color:#000; background:;
  border-left:0px solid ;
  border-top:0px solid ;
  border-right:0px solid ;
  border-bottom:0px solid ;
}
li.xmBarLblHvr {
  color:#fff; background:;
  border-left:0px solid ;
  border-top:0px solid ;
  border-right:0px solid ;
  border-bottom:0px solid ;
}
/* Bar item */
li.xmBarItm {
  color:#000; background:;
  border-left:0px solid;
  border-top:0px solid;
  border-right:0px solid;
  border-bottom:0px solid;
}
li.xmBarItmHvr {
  color:#fff; background:;
  border-left:0px solid;
  border-top:0px solid;
  border-right:0px solid;
  border-bottom:0px solid;
}

/* Box */

/* All ULs except outermost */
ul.xmBox {
  position:absolute; visibility:hidden;
  display:block; width:155px;
  margin:6px; padding:6px;
  overflow:hidden; cursor:default;
  background: #a9a9a9;
  border-left:1px solid #000000;
  border-top:1px solid #000000;
  border-right:1px solid #000000;
  border-bottom:1px solid #000000;
}
/* All LIs in ul.xmBox */
ul.xmBox li {
  display:block; margin:0px 0; padding:6px;
  width:146px; height:auto /* 16px; */
}
/* Box label */
li.xmBoxLbl {
  color:#000; background:transparent;
  border-right:0px solid ;
}
li.xmBoxLblHvr {
  color:#fff; background:#996;
  border-right:0px solid #660;
}
/* Box item */
li.xmBoxItm {
  color:#000; background:transparent;
}
li.xmBoxItmHvr {
  color:#fff; background:#996;
}

/* A element over-rides so we don't inherit unwanted styles */

ul.xmBar li a:link, ul.xmBar li a:visited, ul.xmBar li a:active { /* for all As in ul.xmBar */
  display:inline;
  margin:0; padding:0; border:none;
  font-family: arial, verdana, helvetica, sans-serif;
  font-size: 12px; font-weight: 400; 
  font-weight:normal; text-decoration:none;
  color:#000; background:#a9a9a9;
}
ul.xmBar li a:hover { /* for all As in ul.xmBar */
  display:inline;
  margin:0; padding:0; border:none;
  font-family: arial, verdana, helvetica, sans-serif;
   font-size: 12px; font-weight: 400; 
  font-weight:normal; text-decoration:none;
  color:#fff; background:#a9a9a9;
}

ul.xmBox li a:link, ul.xmBox li a:visited, ul.xmBox li a:active { /* for all As in ul.xmBox */
  display:block; /* width:100%; height:100%; */
  margin:0; padding:0; border:none;
  font-family: arial, verdana, helvetica, sans-serif;
   font-size: 12px; font-weight: 400; 
  font-weight:normal; text-decoration:none;
  color:#000; background:#a9a9a9;
}
ul.xmBox li a:hover { /* for all As in ul.xmBox */
  display:block; /* width:100%; height:100%; */
  margin:0; padding:0; border:none;
  font-family: arial, verdana, helvetica, sans-serif;
   font-size: 12px; font-weight: 400; 
  font-weight:normal; text-decoration:none;
  color:#fff; background:#a9a9a9;
}

/* Misc */

#menuMarker { /* menu will be positioned at this element */
  display:block;
  position:relative; overflow:hidden;
  margin:0 0px 0px 0px; padding:0;
  background:transparent;
}


