/* CSS Document */
/* Navigationsleiste vertikal mit ausklappen */
/*********************************************/

.navi ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 160px;
	font-size:12px;
	font-weight:bold;
}

.navi ul li {
	position: relative;
	font-size:12px;
}


.navi li ul {
	position:absolute;
	left: 160px;
	top: 0;
	display: none;
	font-size:12px;
}

.navi ul li a {
	display: block;
	text-decoration: none;
	color: rgb(0,0,0);
	background: rgb(240,240,240);
	padding: 1px;
	border: 1px solid rgb(240,240,240);
	font-size:12px;
	/*border-bottom: 0;*/
}

.navi ul li a:hover {
	display: block;
	text-decoration: none;
	color: rgb(0,176,240);
	background: rgb(240,240,240);
	padding: 1px;
	border: 1px solid rgb(150,150,150);
	font-size:12px;
	/*border-bottom: 0;*/
}

/* Fix IE. Hide from IE Mac \*/
* html .navi ul li { float: left; }
* html .navi ul li a { height: 1%; }
/* End */

.navi li:hover ul { 
	display: block;
	width:160px;
	font-size:12px;
}

.navi li:hover ul, 
.navi li.over ul { 
	display: block;
	width:160px;
	font-size:12px;
}

/* Fix IE. Hide from IE Mac \*/
* html .navi ul li { float: left; height: 1%; }
* html .navi ul li a { height: 1%; }
/* End */

