/*
xmenu4_1.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 Downgrade (non-js) Styles (see xmenu4_1_dhtml.css for dhtml rules) */

/* Bar */

/* Outermost UL */
ul.myBar{
	color:white;
	background:#333399;
	list-style:none;
	display:block;
	width:118px;
	margin:0;
	padding:0;
	position:absolute;
	top:168px;
	left:9px;
	overflow:hidden;
	font-size:12px;
	/*font:Arial, Helvetica, sans-serif;*/
}
/* All LIs in ul.myBar */
ul.myBar li {
  list-style:none;
  margin:0;
  padding:0;
  border-bottom:2px solid white;
  display:block; 
  width:118px;
  height:auto;
  /*this need to made contional for ie set rest for 2px*/
  border-bottom:4px solid white;
}
ul.myBar li:hover{
 background:#0096d6;
}
ul.myBar li a:link, ul.myBar li a:visited, ul.myBar li a:active { /* for all As in ul.mBar */
  display:block;
  width:114px;
  margin:0; 
  border:none;
  font-weight:normal;
  text-decoration:none;
  color:white;
  background:transparent;
  padding:2px 0 2px 6px;
}
ul.myBar li a:hover { /* for all As in ul.mBar */
  display:block;
  width:114px;
  border:none;
  font-weight:normal; text-decoration:none;
  color:#fff; background:#0096d6;
  padding:2px 0 2px 6px;
  }
ul.myBar li ul{
display:none;
}
/* Box */
/* All ULs except outermost */
ul.myBox {
  background:transparent;
  margin:0 0 .5em 1.25em; padding:0;
  border-left:1px dotted #666;
/*  font-size:small; font-weight:normal; */
}
/* All LIs in ul.myBox */
ul.myBox li {
  list-style:none;
  margin:0 0 .25em 0;
  padding:0;
}

/* Label/Item A element over-rides */

.myBarLblA {
  font-weight:bold;
}
.myBarItmA {
  font-weight:bold;
}
.myBoxLblA {
  font-weight:bold;
}

/* Misc */

#menuMarker {
  display:none;
}
