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

/* these are the inner menus*/
.dropdown ul{
	margin: 0;
	padding: 0;
}

/* these are the inner menus*/
.dropdown ul{
	margin: 0;
	padding: 0;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin: 0;
	padding-right: 6px;
	padding-left: 7px;
	/* width:120px; */
	/* background-color:#000; */
	cursor:pointer;
	height: 40px;
	line-height: 40px;
	/* background: url('../images/divider.gif') no-repeat center right; */

}
/* So that the last menu item has no divider after it */
#toplast {
	background: none;
}
/* To keep the first menu item as left as possible */
#topfirst {
	padding-left: 20px;
}
/* To give the last submenu item a black border along the bottom of the submenu */
li.last {
	border-bottom: 1px solid #000;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	text-decoration:none;
	width:100%;
}

.dropdown a:hover{
	
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border-left: 1px solid #000;
	border-right: 1px solid #000;
	margin-left: 0px;
	width:120%;
	padding-left: 20px;
	background-color: #FFD8B0;
}

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

}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
	padding-right:20px;
}

