/* 
 *	Vertical, left-2-right menu
 *	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 *	(c) 2004 - Aleksandar Vacic, www.aplus.co.yu
 * Some rights reserved, http://creativecommons.org/licenses/by-sa/2.0/
 *	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 */

/*		------	Basic style	------		*/

#menu {
	display: block;
    margin:0;
    padding:0;
    position: relative;
    top: 14px;
}

#menu ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
}

#menu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	position: relative;
}

#menu a {
	display: block;
}

#menu li {
	width: 100%;
}

/* fix the position for 2nd level submenus. first make sure no horizontal scrollbars are visible on initial page load... */
#menu li ul {
	top: 0;
	left: 0;
}

/* ...and then place it where it should be when shown */
#menu li:hover ul {
	left: 100%;
}

/* initialy hide all sub menus */
#menu li ul {
	display: none;
	position: absolute;
	z-index: 10;
}

/* display them on hover */
#menu li:hover>ul {
	display: block;
}

/* this is needed if you want to style #menu div - force containment of floated LIs inside of main UL */
#menuList:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}

/* Clear-fix for IE5/Mac \*//*/
#menu a {
	float: left;
}

#menuList {
	display: inline-block;
}
/*  */

/*		------   Make-up	--------			*/

#menu {
    color: #000000;
    /*background-color: #9c6;*/
    background-color: transparent;
    /*border: 1px solid #693;*/
}

#menu li:hover {
    background-color: transparent;
    color: #f35212;
}

#menu a {
    text-decoration: none;
    color: #000000;
    /*color: #360;*/
    padding: 4px 5px 18px 10px;
    text-align: right;
}

#menu a:hover {
    text-decoration: none;
    color: #f35212;
}

#menu li:hover>a {
    color: #f35212;
}

#menu li ul {
    color: #000;
    background-color: #bbd3ec;
    /*border: 1px solid #693;*/
    width: 250px;
}

#menu li ul li:hover {
    background-color: #e6e6e6;
}

#menu li ul a {
    text-align: left;
    padding: 4px 5px 5px 10px;
}

#menu li li.submenu {
    background-image: url(../images/arrow-w.gif);
    background-repeat: no-repeat;
    background-position: right;
}

.printbutton {
    position: relative;
    left: 358px;
    top: 80px;
    z-index: 90;
}
.suchform {
    position: relative; 
    top: 23px; 
    right: 60px; 
    float: right;
}
.suchebutton {
    position: relative;
    top: 3px;
    left: 99px;
}
.homebutton {
    position: relative;
    top: 23px;
    left: 40px;
}
.sucheingabe {
    position: relative; 
    left: 99px;
}
