

/* Reset */
.menu,
.menu ul,
.menu li,
.menu a {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
}

/* Menüleiste */

.menu {	
	height: 40px;
	width: 268px;
	margin: 2px 0px 0px 0px;
  float: left;
	display: table-cell;
	
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}


#menublau ul {
	background: #007bee;
	background: -webkit-linear-gradient(top, #007bee 0%,#0032ee 100%);
	background: -moz-linear-gradient(top, #007bee 0%,#0032ee 100%);
	background: -o-linear-gradient(top, #007bee 0%,#0032ee 100%);
	background: -ms-linear-gradient(top, #007bee 0%,#0032ee 100%);
	background: linear-gradient(top, #007bee 0%,#0032ee 100%);
}


#menuweinrot ul {
	background: #A10C46;
	background: -webkit-linear-gradient(top, #c00e54 0%,#A10C46 100%);
	background: -moz-linear-gradient(top, #c00e54 0%,#A10C46 100%);
	background: -o-linear-gradient(top, #c00e54 0%,#A10C46 100%);
	background: -ms-linear-gradient(top, #c00e54 0%,#A10C46 100%);
	background: linear-gradient(top, #c00e54 0%,#A10C46 100%);
}

#menugruen ul {
	background: #157809;
	background: -webkit-linear-gradient(top, #1C920D 0%,#157809 100%);
	background: -moz-linear-gradient(top, #1C920D 0%,#157809 100%);
	background: -o-linear-gradient(top, #1C920D 0%,#157809 100%);
	background: -ms-linear-gradient(top, #1C920D 0%,#157809 100%);
	background: linear-gradient(top, #1C920D 0%,#157809 100%);
}

#menugelb ul {
	background: #F9B800;
	background: -webkit-linear-gradient(top, #F9D300 0%,#F9B800 100%);
	background: -moz-linear-gradient(top, #F9D300 0%,#F9B800 100%);
	background: -o-linear-gradient(top, #F9D300 0%,#F9B800 100%);
	background: -ms-linear-gradient(top, #F9D300 0%,#F9B800 100%);
	background: linear-gradient(top, #F9D300 0%,#F9B800 100%);
}



/* Oberer Menüpunkt */

.menu li {
	position: relative;
	list-style: none;
	display: block;

	
}

.menu li a {
	display: block;
  text-align: center;
	padding: 0px;
	margin: 0px;
	line-height: 40px;
	width: 268px; 
	
	font-family: Helvetica, Arial, sans-serif;
	font-weight: bold;
	font-size: 19px;
	text-decoration: none;
  
  letter-spacing: 1px;
	color: #ffffff;
	text-shadow: 1px 1px 1px rgba(0,0,0,.6);
	
	-webkit-transition: color .2s ease-in-out;
	-moz-transition: color .2s ease-in-out;
	-o-transition: color .2s ease-in-out;
	-ms-transition: color .2s ease-in-out;
	transition: color .2s ease-in-out;
}

.menu li:first-child a { border-left: none; }
.menu li:last-child a{ border-right: none; }

.menu li:hover > a { color: #bbbbbb; font-weight: bold;
										font-size: 19px; letter-spacing: 1px;}



/* Untere Menüpunkte */

.menu ul {
	position: absolute;
	z-index: 1;
	top: 45px;
	left: 39px;
  width: 190px;
	opacity: 0;
	
	-webkit-border-radius: 0 0 5px 5px;
	-moz-border-radius: 0 0 5px 5px;
	border-radius: 5px;

	-webkit-transition: opacity .25s ease .1s;
	-moz-transition: opacity .25s ease .1s;
	-o-transition: opacity .25s ease .1s;
	-ms-transition: opacity .25s ease .1s;
	transition: opacity .25s ease .1s;
}

.menu li:hover > ul { opacity: 1; }

.menu ul li {
	height: 0;
	overflow: hidden;
	padding: 0;

	-webkit-transition: height .25s ease .1s;
	-moz-transition: height .25s ease .1s;
	-o-transition: height .25s ease .1s;
	-ms-transition: height .25s ease .1s;
	transition: height .25s ease .1s;
}

.menuweinrot {
	background: #A10C46;
	background: -webkit-linear-gradient(top, #c00e54 0%,#A10C46 100%);
	background: -moz-linear-gradient(top, #c00e54 0%,#A10C46 100%);
	background: -o-linear-gradient(top, #c00e54 0%,#A10C46 100%);
	background: -ms-linear-gradient(top, #c00e54 0%,#A10C46 100%);
	background: linear-gradient(top, #c00e54 0%,#A10C46 100%);
}

.menugruen {
	background: #157809;
	background: -webkit-linear-gradient(top, #1C920D 0%,#157809 100%);
	background: -moz-linear-gradient(top, #1C920D 0%,#157809 100%);
	background: -o-linear-gradient(top, #1C920D 0%,#157809 100%);
	background: -ms-linear-gradient(top, #1C920D 0%,#157809 100%);
	background: linear-gradient(top, #1C920D 0%,#157809 100%);
}

.menugelb {
	background: #F9B800;
	background: -webkit-linear-gradient(top, #F9D300 0%,#F9B800 100%);
	background: -moz-linear-gradient(top, #F9D300 0%,#F9B800 100%);
	background: -o-linear-gradient(top, #F9D300 0%,#F9B800 100%);
	background: -ms-linear-gradient(top, #F9D300 0%,#F9B800 100%);
	background: linear-gradient(top, #F9D300 0%,#F9B800 100%);
}

.menu li:hover > ul li {
	height: 36px;
	overflow: visible;
	padding: 0;
}

.menu ul li a {
	width: auto;
	text-align: left; 
	font-size: 13px;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 25px;
	padding: 4px 0 4px 40px;
	margin: 0px;
  
	border: none;
	border-bottom: 1px solid #ffffff;
}

.menu ul li:hover > a { color: #bbbbbb; font-size: 13px; font-weight: bold; text-transform: uppercase; }
	

.menu ul li:last-child a { border: none; }

/* Icons */

.menu a.pfeil-weiss { background: url(../sonstige/menu-pfeil-weiss.png ) no-repeat 3px center; }
