
.nav-menu,
.nav-menu ul,
.nav-menu li,
.nav-menu a,
.nav-menu span {
	margin: 0;
	padding: 0;
	border: 0;
	outline: none;
	margin-left:15px;
	padding: 1px 0px 0 0;
	
}
.nav-menu li {
	list-style: none; 
   
}



/* Accordian Style */

.nav-menu li > a {
	display: block;
	position: relative;
	width: 155px;
	padding: 0 10px 0 0;
	text-align: center;
	height: 32px;

	color: #999;
	font: bold 12px/32px Arial, sans-serif;
	text-decoration: none;
	text-shadow: 0 2px 2px #000;
	
	background: #243F10;   
	background: -webkit-gradient(linear, 0% 0%, 0% 10%, from(#243F10), to(#0F9605));
	background: -webkit-linear-gradient(top, #243F10, #0F9605);
	background: -moz-linear-gradient(top, #243F10, #0F9605);
	background: -ms-linear-gradient(top, #243F10, #0F9605);
	background: -o-linear-gradient(top, #243F10, #0F9605);
	
	-moz-box-shadow:inset 0 0 1px #111;
	-webkit-box-shadow:inset 0 0 1px #111;
	 box-shadow: inset 0 0 1px #111;
	 
	-webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius: 5px;
	
}

.nav-menu > li:hover > a,
.nav-menu > li:target > a {
	text-shadow: 0 2px 2px #000;
	background: green;
	background: -moz-linear-gradient(top, #021F0A 1%, red 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#021F0A), color-stop(100%,red));
	background: -webkit-linear-gradient(top, #021F0A 1%,red 100%);
	background: -o-linear-gradient(top, #021F0A 1%,red 100%);
	background: -ms-linear-gradient(top, #021F0A 1%,red 100%);
	background: linear-gradient(top, #021F0A 1%,red 100%);
	
	-moz-box-shadow:inset 0 0 1px #111;
	-webkit-box-shadow:inset 0 0 1px #111;
	 box-shadow: inset 0 0 1px #111;
}
.sub-menu .aktiv a
{
color:#fff;
background-color: #f00;
font-weight:bold;
} 


/* Sub-Menu */

.sub-menu li a {
    width: 140px;
	background: #021F0A;
	border-top:1px solid #243F10;

	color: #999;
	text-shadow: 0 2px 2px #000;
    
	margin-left:-7px;
	-moz-box-shadow:inset 0 0 18px #111;
	-webkit-box-shadow:inset 0 0 18px #111;
	 box-shadow: inset 0 0 18px #111;
}


.sub-menu li:hover a { background:silver; }

#nav-menu  #aktiv a
{background-image: url(/iko/button4.gif);background-position: right;background-repeat: no-repeat;}

/* Accordian Function */
.nav-menu li  > .sub-menu {
	height: 0;
	overflow: hidden;

	-webkit-transition: height .2s ease-in-out;
	-moz-transition: height .2s ease-in-out;
	-o-transition: height .2s ease-in-out;
	-ms-transition: height .2s ease-in-out;
	transition: height .2s ease-in-out;
}

.nav-menu li:target > .sub-menu {
	height: 106px;
	}