/* this is the main UL element*/
.dropdown{
	display:none;
	margin:0;
	padding:0;
	width:190px;
	list-style:none;
}

.dropdown span {
	color: #fff;
	margin-left: -5px;
}

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

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:0;
	width:190px;
	cursor:pointer;
	background: url('trsp.png');
}

/* 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:#666;
	width:186px;
	padding-top: 2px;
	padding-left: 4px;
	padding-bottom: 2px;
}

.dropdown a:hover{
	text-decoration:none;
	color: #fcc912;
	background: url(trsp_dark.png);
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	margin-left:-1px;
	border: 1px solid #bbb;
	border-top:0;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	background: url('expand_down.png') center left no-repeat;
	padding-left:20px;
	width:auto;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
	background: url('expand_right.png') center right no-repeat;
	padding-right:20px;
	width:105px;
}
