#dropdown_menu{
	display:block;
	visibility:hidden;
}

/* this is the main UL element*/
.dropdown{
	margin:0;
	padding:0;
	list-style:none;
	/*background-image:url(../img/bg_color.png);*/
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	border-top:0px solid #6b0c0c;
	list-style:none;
	/*background-image:url(../img/bg_color.png);*/
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:5px;
	width:120px;
	cursor:pointer;
	/*background-image:url(../img/bg_color.png);	*/
	font-size:16px;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	text-decoration:none;
	font-weight:bold;
	color:#aa44dd;
	/*background-image:url(../img/bg_color.png);*/
}

.dropdown a:hover{
	text-decoration:none;
	font-weight:bold;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border:1px solid #aa44dd;
	margin-left:-1px;
	background-color:white;
	font-size:14px;
	width:120px;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu{
	/*background-image:url('../img/menu/middle.png');
	background-position:center left;
	background-repeat:no-repeat;*/
	width:120px;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown ul li.submenu{
	/*background-image:url('../img/menu/middle.png');
	background-position:center right;*/
	width:auto;
}