/* this is the main UL element*/
.dropdown{
	margin:0;
	padding:0;
	list-style:none;
	text-align: left;
	width: 755px;
}

.menuHeading{
	font-family: Georgia,"Times New Roman",serif;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	font-size: 1em;
	line-height: normal;
	font-size-adjust: none;
	font-stretch: normal;
	-x-system-font: none;
	letter-spacing: 1px;
}

/* 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;
	padding-right:5px;
	padding-top:5px;
	padding-bottom:5px;
	width: 120px;
	background-color:#380033;
	cursor: default;
	color: white;
	font-family: Arial, Helvetica, arial, sans-serif;
	font-weight: normal;
	font-size:0.95em;
}

.dropdownlink{
	cursor:pointer;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	padding-left:5px;
	text-decoration:none;
	color:#FFFFFF;
	width:100%;	
}

.dropdown a:hover{
	color: #CC499A;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border-top:0;
	margin-left:-1px;
}

.dropdown ul li:hover{
	background-color: #4D0F47;
}


/* these are the LIs that contains a submenu*/
.dropdown li.submenu{
	background-position:center left;
	background-repeat:no-repeat;
	width:100px;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown ul li.submenu{
	background-position:center right;
	padding:5px;
	width:100px;
}