/* this is the main UL element*/
.dropdown{
	/*visibility:hidden;*/
	margin:0;
	padding:0;
	list-style:none;
	/*background-color: #222;*/
}

/* 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 6px;
	/*width:auto;
	background:red;*/
	cursor:pointer;
	text-transform:uppercase;
	font-size:12px;
	line-height:26px;
	font-family:verdana,arial;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	text-decoration:none;
	white-space: nowrap;
	color:#CCC;
	width:100%;
/*	overflow: hidden;*/
}

.dropdown a:hover{
	text-decoration:none;
	/*color:#ccc;*/
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	width:185px;
	height:22px;
	line-height:22px;
	font-size:11px;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu{

	/*background-image:url('../img/expand_down.gif');
	background-position:center left;
	background-repeat:no-repeat;*/
	/*padding-left:-10px;*/
	/*width:120px;*/
	border-left:1px solid #555;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
/*.dropdown ul li.submenu{*/
.dropdown ul li.submenu{
    background:#222 url('../img/menu_arrow_dx.gif') no-repeat;
    background-position:center right;
}
.dropdown ul li{
	background:#222;
	
	padding-left:-10px;
	/*width:120px;*/
	border-bottom:1px solid #555;
}
.dropdown ul li:hover{
    background-color:#444;
}
.dropdown ul li ul li{
	background:#222;
	height:22px;
	line-height:22px;
}