/* this is the main UL element*/
.dropdown{
	visibility:hidden;
	padding:0;
	list-style:none;
	margin: 0;
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	margin-top: 2px;
	padding:0;
	list-style:none;
}

/* these are all the LIs in the inner menus*/
.dropdown ul li{
	margin:0;
	width:145px;
	background-color:#E5E5E5;
	cursor:pointer;
	height: 20px;
	padding-top: 3px;
	padding-bottom: 3px;
}

/* these are all the LIs in the menu*/
.dropdown li{
	background-color:#000;
	cursor:pointer;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	height: 20px;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown li a {
	text-decoration:none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color:#FE2722;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #000000;
	border-bottom-color: #000000;
	padding-top: 3px;
	padding-right: 6px;
	padding-bottom: 3px;
	padding-left: 6px;
	margin-left: 10px;
}

.dropdown li a:hover{
	color: #FFFFFF;
	background-color: #FE2722;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	margin-left: 10px;
}

.dropdown ul li a {
	text-decoration:none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color:#FE2722;
	background-color:#E5E5E5;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-bottom: 0px none #000000;
	border-top: 0px none #000000;
	padding: 0px;
	margin-top: 4px;
	margin-right: 4px;
	margin-bottom: 4px;
	margin-left: 10px;
}

.dropdown ul li a:hover{
	color:#FE2722;
	background-color:#E5E5E5;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu{
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown ul li.submenu{
	padding:5px;
	width:120px;
}