.menu-list {
	position:absolute;
	top: 10px;
	right:20px;
	display:none;
}

.ui-menu { 
	color: black;
	background-color:white; 
	list-style-type: none;
	padding: 0 10px 0 10px;
	font-size:18px;
	border: 3px solid black;
	border-top-left-radius: 10px; 	
	-moz-border-radius-topleft: 10px;
	border-top-right-radius: 0px;	
	-moz-border-radius-topright: 0px;
	border-bottom-right-radius: 10px; 	
	-moz-border-radius-bottomright: 10px;
	border-bottom-left-radius: 10px;	
	-moz-border-radius-bottomleft: 10px;
	z-index: 20;
}

.ui-menu a {
	white-space: nowrap;
}
.ui-menu a:link, .ui-menu a:visited {
	color:black;
}

  .ui-tooltip, .arrow:after {
    background: black;
    border: 2px solid white;
  }
  .ui-tooltip {
    padding: 10px 10px;
    color: white;
    border-radius: 10px;
    font-size: 12px;
    box-shadow: 0 0 7px white;
  }
  .arrow {
    width: 70px;
    height: 16px;
    overflow: hidden;
    position: absolute;
    left: 50%;
    margin-left: -35px;
    bottom: -16px;
  }
  .arrow.top {
    top: -16px;
    bottom: auto;
  }
  .arrow.left {
    left: 20%;
  }
  .arrow:after {
    content: "";
    position: absolute;
    left: 20px;
    top: -20px;
    width: 25px;
    height: 25px;
    box-shadow: 6px 5px 9px -9px white;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .arrow.top:after {
    bottom: -20px;
    top: auto;
  }