/* 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;
	padding:0;
	
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	/*padding:6px 15px 5px 4px;*/
	padding:2px 0px 2px 0px;
	/*width:100px;*/
	width:75px;
	background-color:#1F5770;
	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:100%;
}

.dropdown a:hover{
	text-decoration:none;
	color:#979fb8;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li
{
    border-top: 0;
    margin-left: 5px;
    width: 195px;
    text-align: left;
    border-style: solid;
    border-width: 1px;
    border-top-color: inherit;
    border-right-color: #808080;
    border-bottom-color: #808080;
    border-left-color: #808080;
}
/* controls the submenu overall style and location */
.dropdown li ul 
{
   	margin-top:1px;
   	/*margin-top:4px;*/
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	background:#1F5770;
	padding-left:0px;
	/*width:105px;*/
	width:90px;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
	background:#1F5770;
	padding-right:20px;

	width:105px;
}
