/* Css file for font and color adjustments for LCssDropDownMenu */
/* .menuS is used for both (H)orizontal & (V)ertical menus, */
/* .menuH & .menuV for the former and the latter. */

/* SHARED */
/* select bg color for path when mouse-overing */
 .menuS li:hover,.menuS li.sfhover {
	background-color: #dfb772;
	color: white;
}

/* all links */
.menuS a{
	color: black;
}
/* Mouseover when navigating in the menu (define this, otherwise taken from global A) */
.menuS a:hover, .menuS a.parent:hover {
	/*background-color: #dfb772;*/
	background: yellow;
	color: white;
}
/* Selected menu item (current active page) */
.menuS a.selected {
/*	background: #898068;*/
	background: url(images/bg_30white.png);
	/*background-color: orange;*/
	color: black;
	font-weight: bold;
}

/* Master background color */
.menuS, .menuS li ul{
	/*background-color: #eeede5;*/
	background-image: url(images/bg_50white.png);
	color: black;
}

/* Submenu (non-topParent) container */
.menuS li ul {
	/* borders */
	border: 0px solid #666666;
	border-width: 0 0 1px 0;
	margin: 0 0 10px 0;
}

/* Submenu links */
.menuS li ul a {
	/* color: #ff0000;*/
}

/* - not working 100% - */
.topParent{
	/*font-weight: bold;*/
}

.disabled {
	font-style: italic;
	color: #f00;
}




/* Size & Layout*/

/* HORIZONTAL MENU */
.menuH li ul ul { /* is "sublink width" value for left-margin
	-1.5em (top-margin) positiones the element on (about) the same height
	check font-size and padding */
	margin: -2em 0 0 16em;
}
.menuH li ul, .menuH li ul li {
	width: 16em;
}
.menuH a, .menuH span {
	width: auto;
}

/* VERTICAL MENU */
.menuV a, .menuV span {

}
.menuV ul{
	width: 13em;
}
.menuV ul{
	height: 1em;
}
.menuV li ul { /* second-level lists */
	margin-top: -2px;
	margin-left : 13em;
	margin-top : -2em;
	position : absolute;
	left: -999em;
}


