/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.suckertreemenu {
	margin: 0px;
	padding: 0px;
	height: 35px;
}

.suckertreemenu ul{
margin: 0;
padding: 0;
	margin-left:5px;
list-style-type: none;
}

/*Top level list items*/
.suckertreemenu ul li{
position: relative;
display: block;
float: left;
}

/*Top level menu link items style*/
.suckertreemenu ul li a{
	display: block;
	padding: 1px 8px;
	border: none;
	border-left-width: 0;
	text-align:center;
	line-height: 33px;
	font-weight: regular;
	text-decoration:none;
	font-family: georgia, times, serif;
	color: #C1256A;
	font-size: 18px;
	font-weight: bold;
	font-style:italic;
	letter-spacing: 1px;
}

.suckertreemenu ul li a:hover{
	color:#FFFFFF;
	background-color: #C1256A;
}
	
/*1st sub level menu*/
.suckertreemenu ul li ul{
left: -5px;
position: absolute;
top: 1em; /* no need to change, as true value set by script */
display: block;
visibility: hidden;
background-color:#ffffff;
filter:alpha(opacity=80);   
-moz-opacity: 0.8;   
opacity: 0.8;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.suckertreemenu ul li ul li{
display: list-item;
float: none;
}

/*All subsequent sub menu levels offset after 1st level sub menu */
.suckertreemenu ul li ul li ul{ 
left: 0px; /* no need to change, as true value set by script */
top: 0;
	
}

/* Sub level menu links style */
.suckertreemenu ul li ul li a{

width: 115px; /*width of sub menu levels. evtl. auch im html für einzelne punkte anpassen*/

padding: 2px 8px;
margin: 4px 0px;
margin-bottom: 1px;
line-height: 16px;

filter:alpha(opacity=80);   
-moz-opacity: 0.8;   
opacity: 0.8;
	text-align:left;
	
	background-color:#ffffff; 
	text-decoration:none;
	font-family: Lucida Grande, Arial;
	color: #C1256A;
	font-size: 12px;
	font-weight: bold;
	font-style: normal;
	letter-spacing: 1px;
	display:block;
}



.suckertreemenu ul li ul li a:hover{
background-color: #C1256A;
color: white;
}

/*Background image for top level menu list links */
.suckertreemenu .mainfoldericon{
/* background: #ffffff url(media/arrow-down.gif) no-repeat center right; */
}

/*Background image for subsequent level menu list links */
.suckertreemenu .subfoldericon{
/* background: #ffffff url(media/arrow-right.gif) no-repeat center right; */
}

* html p#iepara{ /*For a paragraph (if any) that immediately follows suckertree menu, add 1em top spacing between the two in IE*/
padding-top: 1em;
}
	
/* Holly Hack for IE \*/
* html .suckertreemenu ul li { float: left; height: 1%; }
* html .suckertreemenu ul li a { height: 1%; }
/* End */