/* this is the main UL element*/
.dropdown {
	display:none;
	margin:0;
	padding:0;
	list-style:none;
	background-color: #003333;
	width:152px;
}

/* these are the inner menus*/
.dropdown ul {
	margin:0;
	padding:0;
	border-top:0px solid #444;
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li {
	margin: 0;
	padding: 5px;
	width: 135px;
	background-color: #003333;
	cursor: pointer;
	cursor: default;
	border-top: 0;
	width:140px;
}
.dropdown li:hover {
	background-color: #669966;
	color: #FFF;
}
/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a {
	display: block;
	text-decoration: none;
	color: #CCC;
	width: 100%;
	font: bold 0.7em/1.4em arial, helvetica, sans-serif;
	text-align: right;
	line-height: 14px;
	padding: 0px 10px 0px 0px;
	margin: 0px 10px 0px 0px;
}

.dropdown a:hover {
	text-decoration:none;
	color: #FFF;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li {
	border:0px solid #444;
	border-top:0;
	margin-left:-1px;
}
.dropdown ul li:hover {
	background-color: #669966;
	color: #FFF;
}

.dropdown>li:first-child {
	border-top:0px solid #444;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down {
/*	background:#003333 url('expand_down.gif') center left no-repeat;*/
	background:#003333;
/*	padding-left:20px;
	width:105px;*/
}
.dropdown li.submenu-down:hover {
	background-color: #669966;
	color: #FFF;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left {
/*	background:#003333 url('expand_right.gif') center right no-repeat;*/
	background:#003333;
/*	padding-right:20px;
	width:105px;*/
}
.dropdown li.submenu-left:hover {
	background-color: #669966;
}
