@charset "utf-8";
/*
::selection {
    background: transparent; 
}

::-moz-selection {
    background: transparent; 
}
*/
.custom-select {
    float:left;
	width:282px;
	height:42px;
	margin-top:105px;
	*zoom: 1;
    font-weight: 400;
}

.custom-select:after {
    clear: both;
    content: "";
    display: table;
}

/* DEMO 3 */
.wrapper-dropdown-3,
.wrapper-dropdown-3,
.wrapper-dropdown-3:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.wrapper-dropdown-3 {
    /* Size and position */
    position: relative;
    width: 280px;
	height: 42px;
    margin: 0 auto;
    padding: 10px 17px;

    /* Styles */
    background:url(../img/contact/select.jpg) center no-repeat;
    
	border-radius: 4px;
    /*border: 1px solid rgba(0,0,0,0.15);
	
    box-shadow: 0 1px 1px rgba(50,50,50,0.1);*/
    cursor: pointer;
    outline: none;

    /* Font settings
    font-weight: bold;*/
	font-size:15px;
    color: #111; 
}

.wrapper-dropdown-3:after {
    content: "";
    width: 0;
    height: 0;/*
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -3px;
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: #8aa8bd transparent;*/
}

.wrapper-dropdown-3 .dropdown {
  /* Size & position */
    position: absolute;
    top: 140%;
    left: 0;
    right: 0;
	padding:0;

    /* Styles */
    background: white;
    border-radius: inherit;
    border: 1px solid rgba(76,197,224,1);
    /*box-shadow: 0 0 5px rgba(76,197,224,0.1);*/
	box-shadow: 0 0 2px rgba(76,197,224, 0.2), 0 0 2px rgba(255, 255, 255, 0.6), 0 0 7px rgba(76,197,224, 0.5);
	
	/*border:1px solid #4cc5e0; 
	box-shadow: inset 0 1px rgba(76,197,224, 0.2), 0 1px rgba(255, 255, 255, 0.6), 0 0 7px rgba(76,197,224, 0.5); 
	-moz-box-shadow:inset 0 1px rgba(76,197,224, 0.2), 0 1px rgba(255, 255, 255, 0.6), 0 0 7px rgba(76,197,224, 0.5); 
	-webkit-box-shadow:inset 0 1px rgba(76,197,224, 0.2), 0 1px rgba(255, 255, 255, 0.6), 0 0 7px rgba(76,197,224, 0.5); */
	font-weight: normal;
    -webkit-transition: all 0.5s ease-in;
    -moz-transition: all 0.5s ease-in;
    -ms-transition: all 0.5s ease-in;
    -o-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
    list-style: none;

    /* Hiding */
    opacity: 0;
	z-index:-1000;
    pointer-events: none;
	
}
.wrapper-dropdown-3 .dropdown li {list-style-type:none;}

.wrapper-dropdown-3 .dropdown:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 100%;
    right: 15px;
    border-width: 0 6px 6px 6px;
    border-style: solid;
    border-color: #e9e9e9 transparent;    
}

.wrapper-dropdown-3 .dropdown:before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 100%;
    right: 13px;
    border-width: 0 8px 8px 8px;
    border-style: solid;
    border-color: rgba(76,197,224,1) transparent;    
	background:#e9e9e9;
}

.wrapper-dropdown-3 .dropdown li a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #111;
	background:#e9e9e9;
    border-bottom: 1px solid #cfcfcf;
    /*box-shadow: inset 0 1px 0 rgba(255,255,255,1);*/
    -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-3 .dropdown li i {
    float: right;
    color: inherit;
}
*/
.wrapper-dropdown-3 .dropdown li:first-of-type a {
    border-radius: 4px 4px 0 0;
}

.wrapper-dropdown-3 .dropdown li:last-of-type a {
    border: none;
    border-radius: 0 0 4px 4px;
}

/* Hover state */

.wrapper-dropdown-3 .dropdown li:hover a {
    background: #e2e2e2;
}

/* Active state */

.wrapper-dropdown-3.active .dropdown {
    opacity: 1;
	z-index:1000;
    pointer-events: auto;
}

/* No CSS3 support */

.no-opacity       .wrapper-dropdown-3 .dropdown,
.no-pointerevents .wrapper-dropdown-3 .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-3.active .dropdown,
.no-pointerevents .wrapper-dropdown-3.active .dropdown {
    display: block;
}

