/* VERTICAL FREESTYLE MENU LAYOUT */

div.hauptumrandung{
	float: left;
	width: 193px;
}
div.sub_lay_top{
	float: left;
	width: 193px;
	height: 12px;
	background-image:url(submenu_head.png);
	background-repeat: no-repeat;
	line-height: 0px;
	font-size: 0px;
}
div.sub_lay_con{
	float: left;
	width: 193px;
	background-image:url(submenu_y.png);
	background-repeat: repeat-y;
}
div.sub_lay_bottom{
	float: left;
	width: 193px;
	height: 19px;
	background-image:url(submenu_bottom.png);
	background-repeat: no-repeat;
}


/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul {
 margin: 1px;
 padding: 0;
 width: 195px;
 list-style: none;
}



.menulist ul {
 display: none;
 position: absolute;
 top: -13px;
 left: 187px;
}

.menulist ul ul{
 left: 186px;
}





.menulist li {
 position: relative;
 margin-bottom: -1px;
}
.menulist ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}

/* Links inside the menu */
.menulist a {
 display: block;
	font-family: helvetica, arial sans-serif
	font-size: 14px;
	font-weight: bold;
	color: #000000;
	text-decoration: none;
	display: block;
	width: 168px;
	padding-right: 4px;
	margin-left: 1px;
	padding-left: 13px;
padding-top: 3px;
padding-bottom: 3px;
}

.menulist li ul li a {
	text-decoration: none;
	display: block;
	width: 169px;
	padding-right: 4px;
	margin-left: 0px;
	padding-left: 13px;
	padding-top: 3px;
	padding-bottom: 3px;
	font-size: 13px;
}


/*
 Lit items: 'hover' is mouseover, 'highlighted' are parent items to visible menus.
*/


.menulist a:hover, .menulist a.highlighted:hover, .menulist a.active, .menulist a:focus, .menulist a.highlighted {
 background-color: #D3A74D;
}


/*
 If you want per-item background images in your menu items, here's how to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an image:
    .menulist a#xyz {
      background-image: url(out.gif);
    }
    .menulist a#xyz:hover, .menulist a.highlighted#xyz, .menulist a:focus {
     background-image: url(over.gif);
    }
*/


/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist a .subind {
 float: right;
}

/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
\*/
*:first-child+html .menulist li {
 float: left;
 width: 100%;
}

* html .menulist li {
 float: left;
 height: 1%;
}
* html .menulist a {
 height: 1%;
}
/* End Hacks */
