ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 222px; /* Width of Menu Items */
	border-bottom: 0px solid #ccc;
	}
	
ul li {
	position: relative;
	}
	
li ul {
	position: absolute;
	left: -290px; /* Set 1px less than menu width */
	width: 300px;

	top: -100px;
	display: none;
	}

/* Styles for Menu Items */
ul li a {
	display: block;
	text-decoration: none;
	color: #333333;
/*	background-color: #DBE2EA !important; */
	border: 0px solid #ccc; /* IE6 Bug */
	border-bottom: 0;
	background-image:url(../images/kompetenzpaket-bg1.jpg);	
	background-repeat: repeat-y;
	}

ul li ul {
	border: 1px solid #ffffff;

}

ul li ul li a{
/*	border-bottom: 1px solid #ccc; */
	color:#990000;
	font-weight:bold;
	padding-left: 5px;
	font-size: 12px;
	padding: 5px 0px 5px 8px;
	}
ul li ul li a:hover{
	color:#ffffff !important;
	}	
/* Holly Hack. IE Requirement \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */

li:hover ul, li.over ul { display: block; } /* The magic */
