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

/* 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;
	width:140px;
	background-color:#990033;
	cursor:pointer;
}

/* 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:#FFF;
}

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

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	margin-left:-1px;
	border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: #CCC;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu{
	background-position:center left;
	background-repeat:no-repeat;
	width:145px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	padding-top: 6px;
	padding-right: 5px;
	padding-bottom: 6px;
	padding-left: 10px;
	color: #FFF;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown ul li.submenu{
	background-position:right center;
	width:145px;
	background-color: #999;
	padding-top: 6px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 6px;
}

