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

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

/* these are all the LIs in the menu*/
.dropdown li {
	margin: 0;
	padding: 5px 10px;
	background-color:#000;
	cursor:pointer;
}

.dropdown li:hover {
	background-color: #006D9C;
}

.dropdown li li {
	width: 200px;
	margin: 0;
	padding: 5px 10px;
	background-color:#000;
	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;
	text-transform: uppercase;
	font-family: Arial, sans-serif;
	font-size: 10px;
	color: #FFF;
}

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

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border-right: 1px solid #333333;
	border-bottom: 1px solid #333333;
}
