
.wrapper-dropdown {
    /* Size and position */
    position: relative; /* Enable absolute positionning for children and pseudo elements */
    width: 140px;
    padding: 9px;
	float: left;
	z-index: 10;

    /* Styles */
    background: #9f825b;
    color: #fff;
    outline: none;
    cursor: pointer;
    -moz-border-radius:3px;
    -webkit-border-radius:3px;
    border-radius:3px;
    border: 3px solid #cfba94;
    -webkit-box-shadow: inset 0px 0px 2px 1px #88735C;
    box-shadow: inset 0px 0px 2px 1px #88735C;

    /* Font settings */
    font-weight: normal;
    font-size: 18px;
    font-family: ClarenceReg, Garamond, Georgia, serif;
    text-shadow: 0px 0px 3px #555;
    filter: dropshadow(color=#555, offx=1, offy=1);
}

.wrapper-dropdown:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    right: 16px;
    top: 50%;
    border-style: solid;
    border-color: white transparent;
    border-width: 6px 6px 0 6px ;
    margin-top: -3px;
}

.wrapper-dropdown .dropdown {
    /* Size & position */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    /* Styles */
    background: #fff;
    list-style: none;
    font-weight: normal; /* Cancels previous font-weight: bold; */
    font-family: 'proxima-nova', sans-serif;
    font-size: 14px;
    
    /* Hiding */
    opacity: 0;
    pointer-events: none;
}

.wrapper-dropdown .dropdown li a {
    display: block;
    text-decoration: none;
    color: #9f825b;
    padding: 10px 16px;
    text-shadow: none;
}

/* Hover state */
.wrapper-dropdown .dropdown li:hover a {
    background: #f8f8f8;
}

/* Active state */
.wrapper-dropdown.active {
    z-index: 12;    
}

.wrapper-dropdown.active .dropdown {
    opacity: 1;
    pointer-events: auto;
    padding: 0;
    z-index: 11;
}

.wrapper-dropdown.active:after {
    border-color: white transparent;
    border-width: 6px 6px 0 6px ;
    margin-top: -3px;
}

.wrapper-dropdown.active {

}

/* No CSS3 support */

.no-opacity       .wrapper-dropdown .dropdown,
.no-pointerevents .wrapper-dropdown .dropdown {
    display: none;
    opacity: 1; /* If opacity support but no pointer-events support */
    pointer-events: auto; /* If pointer-events support but no pointer-events support */
}

.no-opacity       .wrapper-dropdown.active .dropdown,
.no-pointerevents .wrapper-dropdown.active .dropdown {
    display: block;
}