.AppPopupMenu
{
  background: #eee;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  font-size: 0.9em;
  position: relative;
}

/* top */
.AppPopupMenu:before
{
  position: absolute;
  top: -7px;
  right: 10px;
  display: inline-block;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #eee;
  border-left: 7px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: '';
}

.AppPopupMenu:after
{
  position: absolute;
  top: -6px;
  right: 11px;
  display: inline-block;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #eee;
  border-left: 6px solid transparent;
  content: '';
}


/* left */
.AppPopupMenu.left:before
{
  border-top: 7px solid transparent;
  border-right: 7px solid #eee;
  border-bottom: 7px solid transparent;
  border-right-color: rgba(0, 0, 0, 0.2);
  left: -14px;
  top: 20px;
}

.AppPopupMenu.left:after
{
  border-top: 6px solid transparent;
  border-right: 6px solid #eee;
  border-bottom: 6px solid transparent;
  left: -12px;
  top: 21px;
}


/* Foundation adds a large margin-bottom for all <ul>s. */
.AppPopupMenu ul
{
  margin-bottom: 0;
}
