/* this is the main UL element*/
.dropdown{
	margin: 0px;
	padding: 0px;
	list-style:none;
	display: none;
}

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

.dropdown li {
  height: 39px;
}

/* these are all the LIs in the menu*/
.dropdown li{
	cursor:pointer;
	position: relative;
}
.dropdown li ul{
	padding-left:8px;
	padding-top:0px;
	margin-top: 1px;
	width: 173px;
	list-style:none;
}
.dropdown li ul li{
  height: auto;
	margin: 0px;
	margin-left: 1px;
	padding: 0px;
	cursor:pointer;
	text-align: center;
	font-family: verdana;
  font-weight: bold;
  color: #fff;
  font-size: 8pt;
  list-style:none;
  width: 180px;
  
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown li ul li a{
	text-decoration:none;
	color:#fff;
	width:100%;
	padding: 8px;
	width: 164px;
	display: block;
}

.dropdown li ul li a:hover{
	text-decoration:underline;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border-top:0;
	margin-left:1px;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down ul {
}

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

