/*--------------------------------------------------------------------------------------------------
  bbsSelect Dropdown Menu
  http://tympanus.net/codrops/2012/10/04/custom-drop-down-list-styling
--------------------------------------------------------------------------------------------------*/
#bbsSelect {
	z-index: 99;
}
.wrapper-dropdown-2 {
	position: relative; /* Enable absolute positionning for children and pseudo elements */
    width: 164px;
    margin: 12px auto 0px auto;
    padding: 2px 15px;
	
    background: #fff;
    border-left: 5px solid #009966;
	border-top: 1px solid #ccc;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
    cursor: pointer;
    outline: none;
	font-size: 13px;
}
.wrapper-dropdown-2:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    right: 16px;
    top: 50%;
    margin-top: -3px;
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: grey transparent;
}
.wrapper-dropdown-2 .dropdown {
	position: absolute;
    top: 100%;
    left: -5px;
    right: -1px;
	
    background: white;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    list-style: none;

    /* Hiding */
    opacity: 0;
    pointer-events: none;
}
.wrapper-dropdown-2 .dropdown li a {	
    font-size: 13px;
    display: block;
    text-decoration: none;
    color: #333;
    border-left: 5px solid;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
    padding: 5px 15px 1px 15px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.wrapper-dropdown-2 .dropdown li:nth-child(1) a { 
    border-top: 1px solid #ccc;
}
.wrapper-dropdown-2 .dropdown li:nth-child(1) a, .wrapper-dropdown-2 .dropdown li:nth-child(5) a, .wrapper-dropdown-2 .dropdown li:nth-child(9) a, .wrapper-dropdown-2 .dropdown li:nth-child(13) a, .wrapper-dropdown-2 .dropdown li:nth-child(17) a { 
    border-left-color: #7DC691;
}
.wrapper-dropdown-2 .dropdown li:nth-child(2) a, .wrapper-dropdown-2 .dropdown li:nth-child(6) a, .wrapper-dropdown-2 .dropdown li:nth-child(10) a, .wrapper-dropdown-2 .dropdown li:nth-child(14) a, .wrapper-dropdown-2 .dropdown li:nth-child(18) a {
    border-left-color: #518B62;
} 
.wrapper-dropdown-2 .dropdown li:nth-child(3) a, .wrapper-dropdown-2 .dropdown li:nth-child(7) a, .wrapper-dropdown-2 .dropdown li:nth-child(11) a, .wrapper-dropdown-2 .dropdown li:nth-child(15) a {
    border-left-color: #70C1D4;
}
.wrapper-dropdown-2 .dropdown li:nth-child(4) a, .wrapper-dropdown-2 .dropdown li:nth-child(8) a, .wrapper-dropdown-2 .dropdown li:nth-child(12) a, .wrapper-dropdown-2 .dropdown li:nth-child(16) a {
    border-left-color: #428E9E;
}
/* Hover state */
.wrapper-dropdown-2 .dropdown li:hover a {
    color: grey;
}
/* Active state */
.wrapper-dropdown-2.active:after {
    border-width: 0 6px 6px 6px;
}
.wrapper-dropdown-2.active .dropdown {
    opacity: 1;
    pointer-events: auto;
}
/* No CSS3 support */
.no-opacity       .wrapper-dropdown-2 .dropdown,
.no-pointerevents .wrapper-dropdown-2 .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-2.active .dropdown,
.no-pointerevents .wrapper-dropdown-2.active .dropdown {
    display: block;
}

