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

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

/* these are all the LIs in the menu*/
.dropdown ul li{
	margin:0;
	padding:0;
	cursor:pointer;
	border:0;
	width:167px;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown ul li a {
	line-height:18px;
	text-decoration:none;
	color:#3e3e3d;
	width:154px;
	margin:0;
}

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

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

.dropdown a:hover, .dropdown li.submenu-left ul li a:hover, .dropdown li.submenu-down a:hover {
	text-decoration:none;
	color:#3e3e3d;
}
.dropdown li.submenu-left ul li a, .dropdown li.submenu-left ul li.submenu-left ul li a { background-image:none; }