/* this is the main UL element*/
.dropdown{
	display:none;
	margin:0;
	padding:0;
	list-style:none;
	border:1px solid #013567;
  font-size:10px;
  
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	list-style:none;
  width:152px;

}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	background-color:#000;
	cursor:pointer;
	border-top:0;
  width:162px;
  background-color:#fff;

}

/* 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:#013567;
	width:100%;
	text-align:left;
	padding: 2px;
	width:139px;
	border-left: 11px solid #013567;
 
}

.dropdown ul a {
	text-decoration:none;
	color:#013567;
	width:100%;
	text-align:left;
	padding: 2px;
	width:139px;
	border-left: 11px solid #013567;
}

.dropdown a:hover{
	text-decoration:underline;
	background:#fff url('../images/footer.jpg');
	color:#fff;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
  width:155px;
  border:1px solid #013567;
	margin-left:-1px;
	margin-bottom:-1px;
}

.dropdown>li:first-child{

}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	background:#fff url('../images/arrow.png') center left no-repeat;
	width:155px;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
	background:#fff url('../images/arrow.png') center right no-repeat;
	width:155px;

}

