/* this is the main UL element*/
.dropdown{
	margin:0;
	padding:0;
	list-style:none;
	z-index: 999;
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	list-style:none;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #4F6377;
	z-index: 999;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	width:120px;
	cursor:pointer;
	background-image: url(../images/nav_devider.png);
	background-repeat: no-repeat;
	background-position: right;
	text-align: center;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 6px;
	padding-left: 5px;
	z-index: 999;
}

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

.dropdown a:hover{
	text-decoration:underline;
	color: #FFFFFF;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	margin-left:-1px;
	background-color: #3A4956;
	text-align: left;
	border-top-width: 0;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #4F6377;
	border-right-color: #4F6377;
	border-bottom-color: #4F6377;
	border-left-color: #4F6377;
	background-image: none;
	font-weight: normal;
	width: 200px!important;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu{
	background-position:right center;
	background-repeat:no-repeat;
	padding-left:20px;
}

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

