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

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

/* these are all the LIs in the menu*/
.dropdown li{
	width: 153px;
	height: 43px;
	cursor:pointer;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	text-align: center;
	text-decoration:none;
	color: #fff;
	width:100%;
	height: 28px;
	padding-top: 15px;
	font-family: Arial;
	font-size: 14px;
}

.dropdown a:hover{
	text-decoration:none;
	background: transparent url('../_img/header_link_background.gif') no-repeat top center;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul{
	border-top: 1px solid #6D0000;
}

.dropdown ul li{
	background: #123;
	border: 1px solid #6D0000;
	border-top: 0;
}
.dropdown li.submenu li{
	height: auto;
	background: #fd0000;
	margin-left: -1px;
}
.dropdown li.submenu li a{
	font-size: 12px;
	height: auto;
	padding: 4px 0;
}
.dropdown li.submenu li a:hover{
	background: #a70000 url('../_img/footer_extra_background.gif') repeat-x top left;
}
