/*
 * Created on 5.1.2005
 * (c) Jan Ptacek
 *
 * Three kinds of <li> elements get styled here
 * 		top-level - always visible
 * 		1-level   - pulled down
 * 		n-level   - pulled left - n is from {2, ... }
 *
 *
 * Additional style is attached in menu.horizontal/script.js
 *		to emulate :first-child
 *		to add background-image indicating submenu presence


* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
} */
.hmenu{display:none}
.hmenuALIB {								/* top-level menu */
	position: relative; 				/* to let submenus be absolute positioned */
	z-index: 20;

	display: block;
	margin: 0px; margin-left:5px;
	padding: 0px;
	border: 0px;
	list-style: none; 
	height: 25px;
}

.hmenuALIB ul {								/* 1-level menu */
	position: absolute;					/* ie: out of flow, so do not strech height of top-level menu */
	top: 24px;
	left: -1px;							/* due to box model */
	padding: 0px;
	margin: 0px;
	list-style: none;
	display: none;
	z-index:25;

}

.hmenuALIB ul ul {							/* n-level menu */
	left: 140px;
	top: -1px; z-index:30;		position: absolute;						/* */
}
* html .hmenuALIB ul ul {left: 135px;}

.hmenuALIB li {								/* top-level menu lineup */
	position: relative;					/* to position submenus */
	float: left;
	border: 0px none;
	font-weight:bold; color:#FFF; text-decoration:none; line-height:25px;
	/*height: 25px;*/
	z-index:22;
}

.hmenuALIB ul li {							/* 1 or n-level menu lineup */
	clear: left;						/* we do not want float left here */
										/* but we want excesive space eater effect */
										/* of float: left, co just move next block */
										/* to next line with clear */
	border: 1px solid #1C5E90;
	border-top: 0px solid #1C5E90;
	background-color:#5D93AF;
	color:#FFF;
	padding:0px;
	opacity: 0.9;
	 -moz-opacity:0.9; 
	/*filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100);width:140px;
	*/
	z-index:27;
}


.hmenuALIB li a {							/* all-level menu anchors */
	display: block;						/* to fill full square */
	/*float:left;						 to lineup well */
	border: 0px solid #ccc;
	padding: 0px 12px;
	text-align:left;
	text-decoration: none;
	color: black;
	vertical-align: center;
	font-weight:bold;
	color:#FFF;
	text-decoration:none;
	line-height:25px;
	background-color:#5D93AF;
	
}
.hmenuALIB li a:hover {	color:#0D2C42;}

.hmenuALIB ul li a {						/* 1 or n-level menu anchors */
	display: block;						/* all same width */
	width:130px;
	line-height: 18px;
	font-size:10px;
	padding:2px 5px;
}

* html .hmenuALIB ul li a {width:125px;}

.hmenuALIB div {						/* 1 or n-level menu anchors */
position:absolute;
	display: block;						/* all same width */
	width:3px; height:10px; margin-top:10px; background-color:red;
	}