ul#nav {
	width:240px;
	position: relative;
	margin: 0px;
	padding: 0px;
	list-style: none;
	font-size: 11px;
	}
ul#nav li {
	display: block;
	padding: 0px;
	line-height: 30px;
	border-top: 1px #FFF solid;
	height: 25px;
	margin-top: -2px; 
	margin-bottom: -2px;
	position:relative;
	width:100%;	
	}
ul#nav li IMG{border:none;}	
ul#nav li.selected {
	text-decoration: none; 
	background-color:#dce0e7;
}
li ul {
	position: absolute;
	left: 240px;
	top: 0;
	display: none;
	background-color:#fce7eb;
	}
ul#nav li a {
	display: block;
	overflow: hidden;
	padding: 0px 0px 0px 10px;
	line-height: 25px;
	text-decoration: none;
	font-size: 12px;
	color: 000;
	background: url(../images/cube.gif) 26px 12px no-repeat;
	}
/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; }
* html ul li a { height: 1%; }
/* End */
#nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 240px;
	border-bottom: 1px solid #ccc;
	}
li:hover ul { display: block; 
}

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;

#nav li:hover ul, #nav 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 */

ul#nav li a:hover { text-decoration: underline; 
				background-color:#fdf5f7; 
				text-decoration: none;
				font-weight:bold;
				font-size:12px} /* Hover Styles */



