/* this is the main UL element*/
.dropdown{
	display:none;
	margin:0;
	padding:0;
	list-style:none;
	font: 10px Verdana, Arial, sans-serif;
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	border-top:1px solid #444;
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	background-color:#ffffff;
	cursor:pointer;	
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a:link, .dropdown a:active, .dropdown a:visited {
	text-decoration:none;
	color:#000000;
}

.dropdown a:hover {
	text-decoration:none;
}

.mainCat { font-weight: bold; margin: 0 14px; }


/* these are the LIs that only belong to submenu*/
.dropdown ul {
	margin: 10px 0 0 0;
}

.dropdown ul li{
	border:1px solid #444;
	border-top:0;
}

.dropdown ul li ul {
	margin: 0;
}

.dropdown li ul li a { color: #000000; display: block; padding: 4px 12px; margin: 0; width: 170px; }
.dropdown li ul li a:hover { background: #dddddd; color: #1f65c3; display: block; padding: 4px 12px; margin: 0; }

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	background:#ffffff url('expand_down.gif') center left no-repeat;
	padding-left:0px;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
	background:#ffffff url('expand_right.gif') center right no-repeat;
	margin-left: -1px;
}

