/* this is the main UL element*/
.dropdown{
	visibility:hidden;
	margin:0;
	padding:0;
	list-style:none;
	/*border-bottom:1px solid #444;*/
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:0;
	width:98px;
	height:27px;
	background-color:#333333;
	cursor:pointer;
	text-align:center;
	/*background: url(../images/menu_item_bg.gif) no-repeat;*/
	border-left: 0.2em dotted #999999;
}
.dropdown li.last{
	border-right: 0.2em dotted #999999;
}
/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	text-decoration:none;
	color:#99ff00;
	width:100%;
	padding-top:7px;
}

.dropdown li a:hover{
	text-decoration:none;
	color:#FFFFFF;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	margin:0 5px 0 5px;
	text-align:left;
	background-image:none;
	background-color:#333333;
	height:auto;
	padding:0 0 6px 5px;;
	border-top: 1px solid #666666;
	border-left: 0;
	width:85px;
}
.dropdown ul li a{
	color:#CCCCCC;
}
.dropdown ul li a:hover{
	color:#CCCCCC;
	text-decoration:underline;
}
.dropdown li a.important{
	color:#99ff00;
}
.dropdown li a.important:hover{
	color:#99ff00;
}
/* these are the LIs that contains a submenu*/
.dropdown li.submenu{
	/*background-image:url('expand_down.gif');
	background-position:center left;
	background-repeat:no-repeat;
	padding-left:20px;
	width:105px;*/
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown ul li.submenu{
	/*background-image:url('expand_right.gif');
	background-position:center right;
	padding:5px;
	width:110px;*/
}
