/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.suckertreemenu {
	background-image: url(images_template/menu.jpg);
	background-repeat: repeat;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	height: 23px;
	width: 720px;
	clip: rect(auto,auto,auto,auto);
	margin-left: 0px;
	float: inherit;
	margin-top: 0px;
	position: static;
}

.suckertreemenu a:link {
	color: #414141;
	display: block;
}

.suckertreemenu a:visited {
	color: #414141;
}

.suckertreemenu a:hover {
	color: #414141;
	height: 23px;
	background-color: #C2C2C2;
}

.suckertreemenu a:active {
	color: #414141;
}

.suckertreemenu ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	height: 20px;
}

/*Top level list items*/
.suckertreemenu ul li{
	position: relative;
	display: inline;
	margin: 0;
	padding: 0;
	float: left;
	height: 23px;
	width: 119;
}

/*Top level menu link items style*/
.suckertreemenu ul li a{
	display: block;
	width: 120px; /*Width of top level menu link items*/
	padding: 0;
	margin:0;
	text-decoration: none;
	color: #FFFFFF;
	text-align: center;
	height: 23px;
}
	
/*1st sub level menu*/
.suckertreemenu ul li ul{
	left: 0;
	position: absolute;
	top: 23px; /* no need to change, as true value set by script */
	display: block;
	visibility: hidden;
	
}

/*Sub level menu list items (undo style from Top level List Items)*/
.suckertreemenu ul li ul li{
	display: list-item;
	float: none;
	height: 23px;
}

/*All subsequent sub menu levels offset after 1st level sub menu */
.suckertreemenu ul li ul li ul{
	left: 120px; /* no need to change, as true value set by script */
	top: 0px;
	height: 23px;
	background-color: #C2C2C2;
}

/* Sub level menu links style */
.suckertreemenu ul li ul li a{
	display: block;
	width: 160px; /*width of sub menu levels*/
	color: #FFFFFF;
	text-decoration: none;
	padding: 0;
	/*border: 1px solid #ccc;*/
	height: 23px;
	background-color: #C2C2C2;
}

.suckertreemenu ul li a:hover{
	color: #fff;
	height: 23px;
	margin: 0;
	padding: 0;
	text-decoration: none;
	background-image: url(images_template/menu.jpg);	
}

