/* this is the main UL element*/
.dropdown{
	display:none;
	margin:0;
	padding-left:15px;
	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-top: 5px;
	padding-left:7px;
	padding-bottom: 6px;
	cursor:pointer;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	text-align: left;
	font-size: 11px;
	text-decoration:none;
	color:#FFF;
	height: 100%;
	padding-left: 5px;
	padding-top: 1px;
	padding-bottom: 2px;
	width: 101px;
}

.dropdown a:hover{
	color:#FFF;
	text-decoration:underline;
	text-underline-style: dotted;
	
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	text-align: left;
	border-top:0;
	width: 120px;	
}
.dropdown li ul {
	background: url(../img/shadow_navi.png) bottom right no-repeat;
	padding-right: 4px;
	padding-bottom: 6px;
}
.dropdown li ul li{
	margin-left: -10px;
	border-left: 3px solid white;
	border-right: 3px solid white;

}
.dropdown li.blue ul li{
	background: #003978;
	
}

.dropdown li.grey ul li{
	background: #949494;
}

.dropdown li.yellow ul li{
background: #E78E00;
}

.dropdown li.red ul li{
background: #E2001B;
}

.dropdown li.green ul li{
background: #1A962B;
}


/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down {
	background: url('../img/down.gif') center left no-repeat;
	width: 101px;
	height: 17px;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.grey ul li.submenu-left {
	background: #949494 url('../img/right.gif') center right no-repeat;
}
.dropdown li.blue ul li.submenu-left {
	background: #003978 url('../img/right.gif') center right no-repeat;
}
.dropdown li.red ul li.submenu-left {
	background: #E2001B url('../img/right.gif') center right no-repeat;
}
.dropdown li.yellow ul li.submenu-left {
	background: #E78E00 url('../img/right.gif') center right no-repeat;
}
.dropdown li.green ul li.submenu-left {
	background: #1A962B url('../img/right.gif') center right no-repeat;
}