#navtabelle ul {
  padding: 0;
  margin: 0;
  list-style: none;
  }
  
#navtabelle li {
float: left;
position: relative;
/* width: 10em; */
width: 80px;
line-height: 6px; /* turn off when text */
}

#navtabelle ul li a:hover { /*color: #E2144A;*/ background: #fff; } /* Hover Styles */


#navtabelle li ul {
  display: none;
  position: absolute; 
  top: 1em;
  left: 0;
  background: white;
  }
  
#navtabelle li > ul {
        top: auto;
        left: auto;
        }
        
#navtabelle li:hover ul, li.over ul{ 
	display: block; 
	background: #EBD488;
	clear: left;
}



