
.menu_two
{
	position: absolute;
	top: 30px; 
	left: 0; 
	padding-left: 15px;
	padding-right: 15px; 
	list-style: none;
	padding: 0;
	margin: 0;
	display: none;
}
.menu_two > li
{
	position: relative;
	height: 30px;
	background: #383;
}
.menu_two > li:hover
{
	background: #383; 
}
.menu_one
{
	list-style: none;
	padding: 0;
	margin: 0;
	background: #383;
}
.menu_one > li
{
	position: relative;
	float: left;
	height: 30px;
	padding-left: 10px;
	padding-right: 10px;
	background: #383;
}
.menu_one > li:hover
{
	background: #383;
}
.menu_one li:hover > ul
{
	/* On hover, display the next level's menu */ 
	display: inline;
}
/* Menu Link Styles */ 
.menu_one a 
/* Apply to all links inside the multi-level menu */ 
{
	font: bold 14px Arial, Helvetica, sans-serif;
	color: #FFFFFF; 
	text-decoration: none; 
	padding-left: 15px;
	padding-right: 15px;
	/* Make the link cover the entire list item-container */ 
	display: block; 
	line-height: 30px;
}
.menu_one a:hover 
{
	color: #383;
	background: #ffffff;
	border: 1px solid #383;
	/*font-size: 120%;*/
}
