
/* 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;
	margin-top: 5px;
	padding:0;
	list-style:none;
}

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

/* 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;
	width:100%;
	font-weight: bold;
}

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


/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border-top:0;
	margin-left: 5px;
	background-color: #900;
	text-align: center;
	background: transparent url('/gfx/menubg.png') center left no-repeat;
}

.dropdown ul li a:hover {
	background-color: transparent;
	text-decoration: underline;
}

.dropdown ul li a {
	background-color: transparent;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	background: transparent;
	padding-left:10px;
	padding-right: 10px;
	width:105px;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
	background:#900;
	padding-right:20px;
	width:105px;
}