/*******************************************************************************
* DROPDOWN MENU CLASSES
*******************************************************************************/
/* this is the main UL element*/
.dropdown {
	margin: 0;
	padding: 0;
	list-style: none;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 2px;
}

/* these are the inner menus*/
.dropdown ul{
	margin: 0;
	padding: 0;
	border-top: 1px solid #005A97;
	list-style: none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin: 0;
	padding: 5px;
	width: 120px;
	cursor: pointer;
	border-right: 1px solid #0092F2;
}

.menulist li {
    width: auto;
    white-space: nowrap;
    min-width: 120px;
}

.dropdown li .root {
	text-transform: uppercase;
	text-align: center;
}

.dropdown li:hover{
	background-color: #005994;
}

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

/*.dropdown a:hover {
	text-decoration: underline;
}*/

/* these are the LIs that only belong to submenu*/
.dropdown ul li {
	border: 1px solid #005A97;
	background-color: #0071BB;
	border-top: 0;
	margin-left: -1px;
}

.dropdown ul li:hover {
	background-color: #0087E1;
}

/* these are the LIs that contains a submenu*/
/*.dropdown li.submenu {
	background-image: url( /modules/menu/skins/default/images/expand_down.gif );
	background-position: center left;
	background-repeat: no-repeat;
	padding-left: 20px;
	width: 105px;
}*/

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
/*.dropdown ul li.submenu {
	background-image: url( /modules/menu/skins/default/images/expand_right.gif );
	background-position: center right;
	padding: 5px;
	width: 120px;
}*/
