.list 
{
  width: 260px;
  height: 25px;
  line-height: 25px; /*should be the same as height*/
  font-size: 12px;
}

.list li 
{
         list-style-type: none;  
         display: block;  
	 position: relative;
	 top: 20px;
	 left: -30px;
         border: 1px dotted #eaeaea;  
	 background: white;
	 z-index: 100;
         padding-left: 5px; 
}

.list li:hover 
{
         background: rgba(128,200,128,1);  
}

.list div
{
	position:absolute;
	width: 100%;
	height: 100%;
	text-align:center;
	color: rgba(256,256,256,1);
	background:  #66aa66;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
}

.list div:hover
{
	background:  #66aa66;
	color:rgba(220,220,256,1);
}