/* reset default styles */
#menu,
#menu ul { margin: 0; padding: 0; }
#menu li { list-style-type: none; }

/* first level */
#menu li,
#menu a { float: left; width: 110px; }
#menu a { 
	display: block; 
	background: #000000; 
	font-family: 'Arial', sans-serif;
	text-decoration: none;
	font-size: 18px;
	font-weight: bold;
	color: #ffffff;
}
#menu a:hover,
#menu a.menu_open { 
	background: #000000; 
	font-family: 'Arial', sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: #ffffff;
}

/* second level and up */
#menu ul { visibility: hidden; position: absolute; width: 130px; }
#menu ul a { 
	background: #c0c0c0; 
	width: 145px;
	font-family: 'Arial', sans-serif;
	font-size: 14px;
	white-space:nowrap;
	font-weight: normal;
	color: #ffffff;
	padding: 10px;
	}
#menu ul a:hover,
#menu ul a.menu_open { 
	background: #efefef; 
	width: 145px;
	font-family: 'Arial', sans-serif;
	font-size: 14px;
	font-weight: normal;
	color: #ff0000;
	}


