/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul {
	margin: 0;
	padding: 2px 0px 0px 0px;
	line-height: 15px;
	width: 198px;
	list-style: none;
	background: url(images/zelen.jpg) repeat-y;
	color: #FFFFFF;
	letter-spacing: 0px;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist ul {
	font-size: 7pt;
	margin: 0;
	visibility: hidden;
	position: absolute;
	padding: 0px 0px 0px 0px;
	top: 0;
	left: 180px;
	background: url(images/sin.jpg) repeat-y;
}

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist li {
	position: relative;
}

/* Links inside the menu */
.menulist a {
	margin: 0;
	display: block;
	padding: 2px 5px 6px 10px;
	text-decoration: none;
	color: #FFFFFF;
}

/* IE fix because it doesn't support transparent borders */
* html .menulist a {
 border: none;
 margin: 1px;
}

/*
 Lit items: hover/focus = the current item. 'highlighted' = parent items to visible menus.
 Here, active items are given a border, and a padding tweak to 'elevate' the text within.
 Feel free to use background-image:url(file.gif) instead of background-color:#nnn here...
*/
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
	margin: 0;
	display: block;
	padding: 4px 6px 6px 10px;
	color: #E0E0FF;
	text-decoration: none;
}

/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist a .subind {
	float: right;
}

/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist li {
 float: left;
 height: 1%;
}
* html .menulist a {
 height: 1%;
}
/* End Hack */
