﻿
/* select-main */
.select-main {
	background-color:#FFFFFF;
	border:1px solid #048fe7;
	box-shadow:0 0 2px #048fe7;
	border-radius:5px;
	font-size:15px;
	height:35px;
	position:relative;
	width:200px;
	
	-webkit-user-select:none; /* webkit (safari, chrome) browsers */
    -moz-user-select:none; /* mozilla browsers */
    -khtml-user-select:none; /* webkit (konqueror) browsers */
    -ms-user-select:none; /* IE10+ */
}

.select-main.z-index {
	z-index:10;
}

.select-main.disabled {
	cursor:default;
	filter:alpha(opacity=50);
	opacity:0.5;
	zoom:1;
}

.select-main.disabled .select-set {
	cursor:default;
}

.select-main.disabled .select-arrow {
	cursor:default;
}

.select-set {
	background-color:#FFFFFF;
	border-radius:5px;
	color:#333333;
	cursor:pointer;
	height:35px;
	line-height:35px;
	overflow:hidden;
	position:relative;
	padding:0 35px 0 15px;
	width:150px;
	z-index:5;
}

.select-arrow {
	border-top:7px solid #2DB2FF;
	border-left:7px solid transparent;
	border-right:7px solid transparent;
	cursor:pointer;
	height:0px;
	position:absolute;
	top:15px;
	right:10px;
	width:0px;
	z-index:7;
}

.select-arrow.reverse {
	border-top:7px solid transparent;
	border-bottom:7px solid #2DB2FF;
	top:10px;
}

.select-block {
	background-color:#FFFFFF;
    border-left:1px solid #2DB2FF;
    border-right:1px solid #2DB2FF;
    border-bottom:1px solid #2DB2FF;
    border-radius:5px;
    box-shadow:0 0 2px #2DB2FF;
    left:-1px;
    line-height:20px;
    position:absolute;
    top:29px;
    width:200px;
}

.select-list {
	cursor:pointer;
	margin:15px 0 7px;
}

/* Scroll view */

.select-list::-webkit-scrollbar {
    width:12px;
}

.select-list::-webkit-scrollbar-track {
    border-radius:10px;
}

.select-list::-webkit-scrollbar-thumb {
    border-radius:10px;
    -webkit-box-shadow:inset 0 0 1px rgba(0,0,0,0.5);
}

.select-list {
	scrollbar-face-color:#AEB1B1;
    scrollbar-shadow-color:#C7CACA;
    scrollbar-highlight-color:#CED1D1;
    scrollbar-3dlight-color:#CED1D1;
    scrollbar-darkshadow-color:#C7CACA;
    scrollbar-track-color:#CED1D1;
    scrollbar-arrow-color:#333;
}

/* End scroll view */

.select-items {
	color:#333333;
	padding:7px 15px;
}

.select-items:hover,
.select-items.active {
	background-color:#048fe7;
	color:#FFFFFF;
} 
#sel_css{
	height:40px;
	line-height:40px;
}
.sel_text{
	display:inline-block;font-weight:bold;
}
#sel_css span{color:#fff;background-color:#048fe7;padding:8px;margin:0px 10px;border-radius:5px;font-size: 14px;}
#sel_css a{color:#000;padding:8px;font-size: 14px; background-color:#fff;border-radius:5px;margin:0px 10px;}

#sel_css a:hover{color:#fff;background-color:#048fe7}