/* this is the main UL element*/
.dropdown{
	visibility:hidden;
	margin:0;
	padding:0;
	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:5px 3px;
	/*background-color: #58849c;*/
	cursor:pointer;
}

/* 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:#FFFFFF;
	width: 127px;
	text-align: center;
	font-weight: bold;
}

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

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	/*margin-bottom: 1px;*/
	border-bottom: 1px solid #FFFFFF;
	/*margin-left:-1px;
	background-color: #92ADD7;*/
}
.dropdown ul li:hover {
	/*background-color: #58849c;*/
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu{
	width: auto;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown ul li.submenu{
	width:101px;
}
