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

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

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	width:260px;
	cursor:pointer;
	background-color: #D4D4D4;
	top: 50px;
}

/* 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:#000000;
	width:230px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}

.dropdown a:hover{
	text-decoration:underline;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border-top-width: 0;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #ADADAD;
	border-right-color: #ADADAD;
	border-bottom-color: #ADADAD;
	border-left-color: #ADADAD;
	padding: 7px;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	width:104px;
	height: 40px;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
	background:#000 url('expand_right.gif') center right no-repeat;
	width:158px;
	height: 44px;
}
