.jquerycssmenu {
	position: relative;
	z-index: 500;	
}
.jquerycssmenu ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	text-decoration: none;
	z-index: -10;
}

/*Top level list items*/
.jquerycssmenu ul li{
	position: relative;
	display: inline;
	float: left;
}

/*Top level menu link items style*/
.jquerycssmenu ul li a{
	display: block;
	padding: 8px 25px 4px 7px;
	margin-right: 3px; /*spacing between tabs*/
	color: #000000;
	text-decoration: none;
}

.jquerycssmenu ul li a:hover{
	color: #999999;
}
	
/*1st sub level menu*/
.submenu_container {
	background-image: url(image/bg_submenu_pfeil.png);
	background-repeat: no-repeat;
	background-position: center top;
	height: 1.1em;
	z-index: 1000;
    visibility: hidden;
}
.jquerycssmenu ul li ul{
	font-size: 0.9em;
	font-weight: normal;
	text-transform: none;
	position: absolute;
	left: 0;
	margin-top: 0.9em;
	display: block;
	visibility: visible;
	padding: 0.64em;
	background-color: #ffffff;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: 2px 2px 30px #666666;
	-moz-box-shadow: 2px 2px 30px #666666;
	box-shadow: 2px 2px 30px #666666;
	border: 1px solid #999;
}
/*Sub level menu list items (undo style from Top level List Items)*/
.jquerycssmenu ul li ul li{
	display: list-item;
	float: none;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.jquerycssmenu ul li ul li ul{
	top: 0;
}

/* Sub level menu links style */
.jquerycssmenu ul li ul li a{
	width: 18.5em; /*width of sub menus*/
	color: black;
	padding:  0.26em 0 0.26em 0.26em;
	border-top-width: 0;
}

.jquerycssmenu ul li ul li a:hover{ /*sub menus hover style*/
	padding: 0.26em 0 0.26em 0.26em;
	background-color: #325F98;
	color: #ffffff;
	font-weight: bold;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
}

