@charset "utf-8";
/* CSS Document */

#menu{
	
	padding: 0 10px 0 10px ;
	list-style: none;
	border-radius: 10px;
	background-color: #000;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#616060) to(#1b1b1b));
    background-image: -webkit-linear-gradient(top, #6b6a6a, #1b1b1b);
    background-image: -moz-linear-gradient(top, #616060, #1b1b1b);
    background-image: -ms-linear-gradient(top, #616060, #1b1b1b);
    background-image: -o-linear-gradient(top, #616060, #1b1b1b);
    background-image: linear-gradient(top, #616060, #1b1b1b);
	
}
.home{
	background:url(../img/home.png) no-repeat center;
	width:16px;
 	height:17px;
	
}
#menu li
{
	float: left;
	min-height:40px;	/* Höhe der Hauptnavigation */
	padding: 15px 0 0 10px;
	position: relative;
	text-align: left;	
/*	line-height: 0;			mal ausgeblendet */
	border-left:solid thin;
	border-left-color:#000;
		
}

#menu a 
{
	float: left;
	height: 25px;
	padding: 0 15px;
	color: #999;
	
	font: bold 12px/25px Arial, Helvetica;
	text-decoration: none;
	text-shadow: 0 2px 0 #000;
	text-align: left;
}

 li:hover {

	background-color: #000;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#1b1b1b), to(#666666));
    background-image: -webkit-linear-gradient(top, #1b1b1b, #666666);
    background-image: -moz-linear-gradient(top, #1b1b1b, #666666);
    background-image: -ms-linear-gradient(top, #1b1b1b, #666666);
    background-image: -o-linear-gradient(top, #1b1b1b, #666666);
    background-image: linear-gradient(top, #1b1b1b, #666666);
}

#menu li:hover > a
{
	color: #fafafa;
}

#menu li:hover > ul
{
	display: block;
	
}

/* Sub-menu */

#menu ul
{
	list-style: none;
    margin: 0;
    padding: 0;    
    display: none;
    position: absolute;
    top: 55px;
    left: 0;
    z-index: 99999; 
	background: #444;
	border:solid thin;
	border-color:#FFF;
}

#menu ul ul
{
  top: 0;
  left: 150px;
}

#menu ul li
{
    float: none;
    margin: 0;
    padding: 0;
    display: block; 
}
#menu ul li:last-child
{   
       box-shadow: none;    
}
#menu ul a
{    
    padding: 10px;
/*	height: 25px; */
	width: auto;
	height: auto;
    line-height: 1;
    display: block;
    white-space: nowrap;
    float: none;
	text-transform: none;

}

#menu ul a:hover
{
    background: #333;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#1b1b1b), to(#666666));
    background-image: -webkit-linear-gradient(top, #1b1b1b, #666666);
    background-image: -moz-linear-gradient(top, #1b1b1b, #666666);
    background-image: -ms-linear-gradient(top, #1b1b1b, #666666);
    background-image: -o-linear-gradient(top, #1b1b1b, #666666);
    background-image: linear-gradient(top, #1b1b1b, #666666);

}

#menu ul li:first-child > a:after
{
    content: '';
    position: absolute;
    left: 30px;
    top: -8px;
    width: 0;
    height: 10;

}

#menu ul ul li:first-child a:after
{
    left: -8px;
    top: 12px;
    width: 0;
/*    height: 0;	*/
    border-left: 0;	
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent;
    border-right: 8px solid #444;

}

#menu ul li:first-child a:hover:after
{
    border-bottom-color: #04acec; 
}

#menu ul ul li:first-child a:hover:after
{
    border-right-color: #04acec; 
    border-bottom-color: transparent; 	
}
#menu ul li:last-child a
{

    border-radius: 0 0 5px 5px;
}

/* Clear floated elements */
#menu:after 
{
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}