@charset "utf-8";
/* CSS Document */
ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 150px;
	border-bottom: 0px solid #ccc;
	}
ul li {
	position: relative;
	}
li ul {
	position: absolute;
	left: 150px;
	top: 0;
	display: none;
	}
ul li a {
	display:block;
	text-decoration: none;
	color: #777;
	background: #f0f0f0;
	padding: 5px;
	border: 0px solid #ccc;
	border-bottom: 0px;
	}
/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; }
* html ul li a { height: 1%; }
/* End */
li:hover ul, li.over ul { 
	display: block;
	}
/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */