/*
Credits: Dynamic Drive CSS Library
URL: http://www.dynamicdrive.com/style/
Stylesheet originally by: Dynamic Drive CSS Library
Stylesheet edited by: Fabian Schmid
*/

.suckertreemenu ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
}
/* top level list items */
	.suckertreemenu ul li{
	position: relative;
	display: inline;
	float: left;
	background-color: #000000; /* overall menu background color */
}
/* top level list items (links) */
.suckertreemenu ul li a{
	display: block;
	width: auto;
        margin-bottom: 1px;
        padding: 7px 20px 6px 8px;
	border: 0;
	border-top: 0;
	text-decoration: none;
	color: #ffffff;
	font-size: 11px;
	font-weight: bold;
        letter-spacing: 0.07em;
	text-transform: uppercase;
}
.suckertreemenu ul li a:hover{
	background-color: #ffffff;
	color: #000000;
	cursor: pointer;
}
/* 1st sub level menu */
.suckertreemenu ul li ul{
	left: 0;
	position: absolute;
	top: 1em; /* no need to change, as true value set by script */
	display: block;
	visibility: hidden;
}
/* sub level list items (undo style from top level list items) */
.suckertreemenu ul li ul li{
	display: list-item;
	float: none;
}
/* sub level list items (links) */
.suckertreemenu ul li ul li a{
	display: block;
	width: 150px;
	color: #ffffff;
	text-decoration: none;
        margin: 1px 0px 1px 0px;
	padding: 4px 5px 4px 5px;
        border: 1px solid #000000
}
/* all subsequent sub menu levels offset after 1st level sub menu */
.suckertreemenu ul li ul li ul{ 
        margin: 0px 0px 0px 1px;
	left: 150px; /* no need to change, as true value set by script */
	top: 0;
}
/* background image for top level list links */
.suckertreemenu .mainfoldericon{
	background-color: #000000; /* use the commented code below and add arrow pictures for arrows in menus with submenus */
	/*background: #000000 url(images/arrow-down.gif) no-repeat center right;*/
}
/* background image for subsequent level list links */
.suckertreemenu .subfoldericon{
	background-color: #000000; /* use the commented code below and add arrow pictures for arrows in menus with submenus */
	/*background: #000000 url(images/arrow-right.gif) no-repeat center right;*/
}
/* ie hack */
* html .suckertreemenu ul li{
	float: left; height: 1%;
}
* html .suckertreemenu ul li a{
	height: 1%;
}
