@charset "iso-8859-1";
/* CSS Document */

#recherche-repertoire{background-color:#323232}

.wrapper-dropdown {
    /* Size & position */
    position: relative;
    width: 100%;
    margin: 0 auto 25px auto;
    padding: 12px 15px 9px 15px;

    /* Styles */
    background: #323232;
	color:#fff;
    border: solid 1px #AAF917;
    box-shadow: 0 1px 0 rgba(0,0,0,0.2);
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease-out;
	font-size:12px;
	
}

.wrapper-dropdown span{display:inline-block;width:94%; max-height:17px;overflow:hidden; white-space:nowrap;}

.wrapper-dropdown:after { /* Little arrow */
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -5px;
    border-width: 8px 8px 0 8px;
    border-style: solid;
    border-color: #AAF917 transparent;
}

.wrapper-dropdown .dropdown {
    /* Size & position */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
	z-index:1000;

    /* Styles */
    background: #fff;
    border: 1px solid rgba(0,0,0,0.2);
    border-top: none;
    border-bottom: none;
    list-style: none;
    transition: all 0.3s ease-out;
	padding-left:5px;

    /* Hiding */
    max-height: 0;
    overflow: hidden;
}

.wrapper-dropdown .dropdown li {
    padding: 0 10px ;
}

.wrapper-dropdown .dropdown li a {
    display: block;
    text-decoration: none;
    color: #333;
    padding: 10px 0;
    transition: all 0.3s ease-out;
    border-bottom: 1px solid #e6e8ea;
	font-size:12px;
}

.wrapper-dropdown .dropdown li:last-of-type a {
    border: none;
}

.wrapper-dropdown .dropdown li i {
    margin-right: 5px;
    color: inherit;
    vertical-align: middle;
}

/* Hover state */

.wrapper-dropdown .dropdown li:hover a {
    color: #000 !important;
}

.wrapper-dropdown.active, .wrapper-dropdown.search {
    background: #AAF917;
    box-shadow: none;
    border-bottom: none;
    color: #000;
}

.wrapper-dropdown.active:after, .wrapper-dropdown.search:after {
    border-color: #000 transparent;
}

.wrapper-dropdown.active .dropdown {
    border-bottom: 1px solid rgba(0,0,0,0.2);
    max-height: 600px;
overflow-y:auto;
}

.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;
}
