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

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:5px;
	width:112px;
	cursor:pointer;
	text-align:center;
}

.dropdown li a
{
    font-size:14px;
	font-weight:bold;    
}

/* 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:#ffffff;
	width:100%;
	vertical-align:baseline;
}

.dropdown li:hover
{ background-repeat: repeat-x; }

.dropdown a:hover{
	text-decoration:none;
	color:#FFB119;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border:1px solid #b695b6;
	border-top:0;
	background-color:#744674;
}

.dropdown ul
{ margin-top:5px;}

.dropdown li ul li { width:150px; text-align:left; font-size:11px; font-weight:bold; }
.dropdown li ul li:hover { background-color:#b695b6; }
li.sub a { font-weight:bold; font-size:12px;}
li.sub a:hover { color:#ffe400;}
