/* this is the main UL element*/
.dropdown{
	display:none;
	margin:18px;
	padding-right:-20px;
	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-right:5px;
        padding-right:5px;
        padding-left:5px;
        padding-bottom:15px;
	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:#d2d2d2;
	width:100%;
        padding: 5px;
}

.dropdown a:hover{
	color:#141414;\
      background: #F49B01;
}


/* these are the LIs that only belong to submenu*/
.dropdown ul li{
      border-top:0;
      margin-top:5px;
      margin-bottom:-15px;
      width:150px;
}

li a.highlight {
  background: #F49B01;
  color: #000000;
}


