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

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	border-top:0px solid #444;
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:2px;
	width:265px;
	background: #ebebf2;
	cursor:pointer;
}

.dropdown li#m1{
	margin:0;
	padding:3px 0 0 20px;
	width:100px;
	background: none;
	cursor:pointer;
}

.dropdown li#m2{
	margin:0;
	padding:3px 0 0 20px;
	width:100px;
	background: none;
	cursor:pointer;
}

.dropdown li#m3{
	margin:0;
	padding:3px 0 8px 20px;
	width:100px;
	background: none;
	cursor:pointer;
}

.dropdown li#m4{
  background: none;
  padding:3px 0 8px 20px;
	width:100px;
	cursor:pointer;
}

.dropdown li#m6 {
	margin:0;
	padding:3px 0 0 20px;
	width:90px;
	background: none;
	cursor:pointer;

}

.dropdown li#m5, .dropdown li#m7{
	margin:0;
	padding:3px 0 0 20px;
	width:100px;
	background: none;
	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:#263d49;
	font-size: 100%;
	font-weight: normal;
	width:100%;
}

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

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border:1px solid #fff;
	border-top:0;
	margin-left:0px;
	height: 20px;
	padding:2px 0 0 16px;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	background: none /*#000 url('expand_down.gif') center left no-repeat*/;
	padding-left:20px;
	width:155px;
}


/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
	background: none /*#000 url('expand_right.gif') center right no-repeat*/;
	padding-right:20px;
	width:105px;
}
