/* CSS Document */

/*MENU*/
ul {
	margin: 0;
	padding: 10px;
	list-style: none;
	width: 185px;
	border-bottom: 0px solid #ccc;
	}

ul li {
	position: relative;
	}

li ul {
	position: absolute;
	left: 155px;
	top: -5px;
	display: none;
	text-align:right;
	}

ul li a {
	display: block;
	text-decoration: none;
	color:#006600;
	font:bold;
	background: #D0D0B9;
	padding: 5px;
	border: 1px solid #ccc;
	border-bottom: 0;
	}

* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }

li:hover ul, li.over ul {
	color:#00CC33;
	display: block; }

a:hover, a:active{
	background-color:#006600;
	color:#FFFFFF;
	}
