@charset "utf-8";
/* CSS Document */

#nav { margin-left: 20px; }


ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 115px;
	}
ul li {
	position: relative;
	}
li ul {
	position: absolute;
	left: 140px;
	top: 0;
	display: none;
	}
ul li a {

	display: block;
	font-weight: bold;
	text-decoration: none;
	color: #000000;
	background: #fff;
	padding: 5px;
	border: none;
	border-bottom: 1px solid #ccc;
	overflow: auto;
	}
	/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */
ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 140px;
	
	}
li:hover ul { display: block; }
.transparent {
filter: alpha(opacity=50); /* ie */
-moz-opacity: .5; /* mozilla */
background:#ccc;
}

<script type="text/javascript">
startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace»
	(" over", "");
   }
   }
  }
 }
}
window.onload=startList;

</script>
