/* Fix IE. Hide from IE Mac */
* html ul li { float: left; }
* html ul li a { height: 1%; }
/* End */

ul {
 margin: 0;
 padding: 0;
 list-style: none;
 width: 150px;
 }
 li:hover ul { display: block; }
 li:hover ul, li.over ul { 
 display: block; }
 

 /* Fix IE. Hide from IE Mac */
* html ul li { float: left;  }
* html ul li a { height: 1%;  }
/* End */

ul {
 margin: 0 0 0 4px;
 padding: 0;
 list-style: none;
 width: 215px;
 }
 
 ul li {
 position: relative;
 
 }
 
 li ul {
 position: absolute;
 left: 215px;
 top: 0;
 z-index:100;
 display: none;
 
 }
 
 ul li a {
 display: block;
 text-decoration: none;
 color: #777;
 background: #fff;
 height:28px;
 padding-top:8px;
 width:207px;
 text-align:left;
 padding-left:15px;
 color:#2c9783;
 font-size:15px;
 background:url(../images/bg_menu.png) no-repeat;
 }
 
 ul li a:hover {
 color:#919191;
 background:url(../images/bg_menu.png) no-repeat;
 }