#translateModeMenu {
	position: absolute;
	background-color: yellow;
	font-size: 15px;
	padding: 8px;
	color: #282828;
	z-index: 5555555;
     -moz-box-shadow: 0px 0px 4px black; 
  -webkit-box-shadow: 0px 0px 4px black; 
          box-shadow: 0px 0px 4px black; 

     -moz-border-radius: 6px; 
  -webkit-border-radius: 6px; 
          border-radius: 6px; 


  background-color: white;
  background-image: -moz-linear-gradient(top, white, yellow); 
  background-image: -o-linear-gradient(top, white, yellow); 
  background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, white),color-stop(1, yellow)); 
  background-image: -webkit-linear-gradient(white, yellow); 
  background-image: linear-gradient(top, white, yellow);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='white', EndColorStr='yellow'); 
 



}