#left-menu-select {
	height: 30px;
	opacity: 0;
}

/***********************************
 * Layout
 ***********************************/
.wSelect-el {
	width: 0px;
	height: 0px;
	padding: 0px;
	margin: 0px;
	border: none;
	overflow: hidden;
}
.wSelect {
	position: relative;
	display: inline-block;
    *display: inline;
    zoom: 1;
    vertical-align: middle;
	cursor: pointer;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.wSelect-arrow {
	position: absolute;
	width: 30px;
	right: 0px;
	top: 0px;
	height: 100%;
	background-repeat: no-repeat;
	background-position: 0px center;
}
.wSelect-hover .wSelect-arrow,
.wSelect-active .wSelect-arrow  {
	background-position: -30px center;
}
.wSelect.wSelect-multiple {
	overflow: hidden;
}
.wSelect-selected {
	margin: 0px 25px 0px 5px;
	padding: 4px 0 4px 5px;
	overflow: hidden;
	white-space: nowrap;
	background-repeat: no-repeat;
	background-position: 0 center;
}
.wSelect-options-holder {
	position: absolute;
	display: none;
	left: 0;
	z-index: 200;
}
.wSelect-multiple .wSelect-options-holder {
	position: relative !important;
	display: block !important;
	top: auto !important;
	z-index: auto !important;
	border: none !important;
}
.wSelect-options {
	width: 152px;
}
.wSelect-option {
	background-repeat: no-repeat;
	background-position: 5px center;
	cursor: pointer;
	width: 152px;
}
.wSelect-option-last {
	margin-bottom: 0px;
	background-color: #111;
	
	margin-left: -1px;
	border: 1px solid #777;
	border-top: 0;
}
.wSelect-option-value {
	margin: 0 5px;
	padding: 4px 0 4px 5px;
	background-repeat: no-repeat;
	background-position: 0 center;
	white-space: nowrap;
	overflow: hidden;
}
.wSelect-option-disabled .wSelect-option-value {
	filter: alpha(opacity=20);
	opacity: 0.2;
}
.wSelect-option-icon {
	padding-left: 20px;
}

/***********************************
 * Theme - classic
 ***********************************/
.wSelect-theme-classic.wSelect {
    color: #F7D900;
    background-color: rgba(0, 0, 0, 0.3);	
	line-height: 20px;
	min-width: 100px;
	max-width: 300px;
	margin-bottom: 15px;
	border: 1px solid rgba(0, 0, 0, 0);
}
.wSelect-arrow {
	background-image: url('/menu-files/arrow-down.png');
}
.wSelect-theme-classic.wSelect-hover,
.wSelect-theme-classic.wSelect-active {
}
.wSelect-theme-classic .wSelect-options-holder {
	min-width: 100px;
	max-width: 300px;
	
	left: -1px;
	border: 1px solid #777;
	border-bottom: 0;
}
.wSelect-theme-classic .wSelect-options {
	background-color: #111;
	

}
.wSelect-theme-classic .wSelect-option {
	color: #EEE;
}
.wSelect-theme-classic .wSelect-option-disabled {
	background-color: #222 !important;
	color: #EEE !important;	
}
.wSelect-theme-classic .wSelect-option-selected {
	color: #EEE;
	background-color: #222;
}

.wSelect-theme-classic .wSelect-option:hover {
	background-color: #000;
	color: #EEE;
}

/***********************************
 * Labels
 ***********************************/
.wLabel-top,
.wLabel-left,
.wLabel-left-top {
    vertical-align: middle;
    line-height: 16px;
    color: #999;
    display: block;
    margin: 5px 0 3px 3px;
}
.wLabel-left-top {
    vertical-align: top;
}
@media screen and (min-width: 600px) {
    .wLabel-left,
    .wLabel-left-top {
        display: inline-block;
        *display: inline;
        zoom: 1;
        width: 70px;
        text-align: right;
        margin: 0 0 7px 0;
    }
}