#menu {
	width: 100%;
	height: 22px;
	background-color:#333333;
}

/*Root elements are horisontal and shifted with 20px*/
#menu ul {
	list-style: none;
	margin:0px;
	padding: 0px;
	padding-left: 20px;
	/*width: 0%!;*/
}

/*Child elements are vertical and not shifted - real menus*/
#menu ul ul {
  position: absolute;
  z-index: 500;
  padding-left: 0px;
  width: 1px; /* if this isn't here, the drops get laidout horiz instead of vert in Moz browsers*/
}

#menu ul ul ul {
	position: absolute;
	top: 0;
	left: 100%;
}


#menu ul ul, #menu ul li:hover ul ul, #menu ul ul li:hover ul ul {
	display: none;
}

#menu ul li:hover ul, #menu ul ul li:hover ul, #menu ul ul ul li:hover ul {
	display: block;
	background:#333333;
}

#menu a, #menu h6 {
	display: block;
	margin: 0px;
	padding: 2px 5px;
}

#menu h6 {
	color: #FFFFFF;
}

#menu a {
	color: #FFFFFF;
	text-decoration: none;
	border:none;
}

#menu a:hover {
	color: #ff3300;
	border:none;
}

#menu li {
	position:relative;
	float: left;
	text-align:center;
	/*
	width: auto;
	clear: right;
	*/
}

#menu li a {	
}

#menu li li {
	position:relative;
	float: left;
	text-align:left;
	border-left:0px;
	border-bottom:1px solid #000000;
	border-right:1px solid #000000;
	background:#333333;
	background-image: url(images/menu/00-submenubackgr.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	padding: 0px;
	width: 140px;
	margin: 0px;
}

#menu li li a {
	border-bottom:0px dotted #D9F266;
	background-image: url(images/menu/arrowsub3.gif);
	background-repeat: no-repeat;
	background-position: left center;
	margin-left: 5px;

}

#menu li li a:visited {
	border-bottom:0px dotted #D9F266;
}
#menu li li a:hover {
	color: #ff3300;
	border-top:0px dotted #D9F266;
	border-bottom:0px dotted #D9F266;
	border-left: 0px solid #669933;
}
