ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 118px; /* Width of Menu Items */
	
	border-bottom: 1px solid #ccc;

	}
	
ul li {
	position: relative;

	}
	
li ul {
	position: absolute;
	left: 117px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	
	}

/* Styles for Menu Items */
ul li a{
	display: block;
	text-decoration: none;
	font-size:80%;
	color:white; /*#777;
	background: #fff; /* IE6 Bug */
	padding: 0px;
	border: none//1px solid #ccc; /* IE6 Bug */
	border-bottom: 0;
	background-color:ddfbdd;
	/* UnComment for dropshadow IE Only*/
     /*filter: progid:DXImageTransform.Microsoft.Shadow(color=#CACACA,direction=135,strength=4);/*135*/

        }

li{background-color:white;}		
#nav ul li a:hover{ /*Theme Change here*/
 color:green;
 background-color:#F0F0F0;
 font-family:Veronda; 
}
/* Holly Hack. IE Requirement \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */

li:hover ul, li.over ul { display: block; } 
li:hover ul ul, li.over ul ul {display: none;} 
ul ul li:hover ul, ul ul li.over ul {display: block;} 



