/* Dropdown control */
.selectBox-dropdown {
    position: relative;
    min-width: 130px;
	height:40px;
	margin:3px 5px 3px 0px;
    display: inline-block;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none !important;
    text-align: left;
    color: #454545; text-shadow:#fff 0px 1px 0px;
    
    vertical-align: middle;
	background: #FFFFFB;
	background: -webkit-gradient(linear, left top, left bottom, from(#FDFDFD), to(#E1E1E1));
	background: -webkit-linear-gradient(top, #FDFDFD, #E1E1E1);
	background: -moz-linear-gradient(top, #FDFDFD, #E1E1E1);
	background: -ms-linear-gradient(top, #FDFDFD, #E1E1E1);
	background: -o-linear-gradient(top, #FDFDFD, #E1E1E1);
	background: linear-gradient(top, #FDFDFD, #E1E1E1); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FDFDFD', endColorstr='#E1E1E1', GradientType=0);
    
	border:1px solid #C1C1C1;
    -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, .60);
    -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, .60);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .60);
    
	border-radius:4px; -moz-border-radius:4px; -webkit-border-radius:4px; 

	-webkit-tap-highlight-color:rgba(0,0,0,0);
	-webkit-tap-highlight-color:transparent;
	-webkit-touch-callout: none;
	outline:none;
	
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;

}
.selectBox-dropdown:hover,
.selectBox-dropdown:focus,
.selectBox-dropdown:focus .selectBox-arrow {
    border-color: #999;
    color:#333;
}

.selectBox-dropdown.selectBox-menuShowing-bottom {
    -moz-border-radius-bottomleft: 0;
    -moz-border-radius-bottomright: 0;
    -webkit-border-bottom-left-radius: 0;
    -webkit-border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.selectBox-dropdown.selectBox-menuShowing-top {
    -moz-border-radius-topleft: 0;
    -moz-border-radius-topright: 0;
    -webkit-border-top-left-radius: 0;
    -webkit-border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.selectBox-dropdown .selectBox-label {
	color:#555; text-shadow:#fff 0px 1px 0px;
    padding: 0px 45px 0px 8px;
    display: inline-block;
    height:40px;
    line-height: 40px;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: middle;
    font-size: 12px;
    font-weight: bold;
}
.selectBox-dropdown .selectBox-arrow:after {
	content: "\f0d7" !important;
    position: absolute;
    top: 0;
    right: 0;
    min-width:35px;
    height:40px;
    line-height: 40px;
    
	color:#777; text-shadow:#fff 0px 1px 0px; text-decoration: none !important;
    font-size: 12px; text-align: center;
	
    border-left: solid 1px #BBB;
}
.selectBox-dropdown:focus .selectBox-arrow:after {
	background: #E1E1E1;
}

/* Dropdown menu */
.selectBox-dropdown-menu {
    position: absolute;
    z-index: 99999;
    max-height: 300px;
    min-height: 1em;
    background: #F1F1F1;
	border: 1px solid #999;
	-webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 4px 0px, rgb(0, 0, 0) 0px 5px 5px -5px;
	-moz-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 4px 0px, rgb(0, 0, 0) 0px 5px 5px -5px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 4px 0px, rgb(0, 0, 0) 0px 5px 5px -5px;
	outline: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/* Inline control */
.selectBox-inline {
    display: inline-block;
    background: #F1F1F1;
	border: 1px solid #C1C1C1;
    outline: none;
    overflow: auto;
    border-radius:4px; -moz-border-radius:4px; -webkit-border-radius:4px; 
}
.selectBox-inline:hover {
	color: inherit;
    text-decoration: none;
}
.selectBox-inline:focus {
    border-color: #999;
}
.selectBox-options { border-radius:4px; -moz-border-radius:4px; -webkit-border-radius:4px; }
/* Options */
.selectBox-options LI {
	border-top:1px solid #C9C9C9;
	margin-top:-1px;
}	
.selectBox-options LI:first-child > a { border-top-left-radius:4px; -moz-border-top-left-radius:4px; -webkit-border-top-left-radius:4px; border-top-right-radius:4px; -moz-border-top-right-radius:4px; -webkit-border-top-right-radius:4px; }
.selectBox-options LI:last-child > a { border-bottom-left-radius:4px; -moz-border-bottom-left-radius:4px; -webkit-border-bottom-left-radius:4px; border-bottom-right-radius:4px; -moz-border-bottom-right-radius:4px; -webkit-border-bottom-right-radius:4px; }
.selectBox-options,
.selectBox-options LI,
.selectBox-options LI A {
    list-style: none;
    display: block;
    font-size:12px;
    font-weight: bold;
    white-space: nowrap;
    padding: 0;
    margin: 0;
}
.selectBox-options LI A {
	color:#555;
	text-shadow:#fff 0px 1px 0px;
    padding: 8px;
    overflow: hidden;
    background: #F1F1F1;
    text-decoration:none;
    position: relative;
    cursor: default !important;
    
	-webkit-transition:150ms ease-in-out; -moz-transition:150ms ease-in-out; -o-transition:150ms ease-in-out; -ms-transition:150ms ease-in-out; transition:150ms ease-in-out;
}
.selectBox-options LI A:hover {
    background-color: #FFF;
    color:#64a02e;
}
.selectBox .selectBox-options LI A:after,
.selectBox-disabled .selectBox-options LI A:hover:after,
.selectBox-options LI.selectBox-disabled A:after,
.selectBox-options LI.selectBox-disabled A:hover:after {
	content: "\2714";
	display: block;
	position: absolute;
	top: 8px;
	right: 9px;
	color:#D1D1D1; text-shadow:#fff 0px 1px 0px;
	
	-webkit-transition:150ms ease-in-out; -moz-transition:150ms ease-in-out; -o-transition:150ms ease-in-out; -ms-transition:150ms ease-in-out; transition:150ms ease-in-out;
}
.selectBox-options LI A:hover:after,
.selectBox-options LI.selectBox-selected A:after {
	content: "\2714";
	display: block;
	position: absolute;
	top: 9px;
	right: 9px;
	color:#64a02e; text-shadow:#fff 0px 1px 0px;
}

.selectBox-options LI.selectBox-selected A {
    color:#64a02e;
    background-color: #FFF;
}

.selectBox-options LI.selectBox-disabled A {
    color: #999;
    background-color: transparent;
}

.selectBox-options .selectBox-optgroup {
    color: #555; text-shadow:#fff 0px 1px 1px; font-weight: bold; white-space: nowrap;
    background: #E1E1E1;
	border-top:1px solid #C1C1C1;
    padding:8px;
}

/* Disabled state */
.selectBox-disabled, .selectBox-disabled .selectBox-optgroup { cursor: not-allowed !important; }

.selectBox-disabled .selectBox-options LI A { cursor: not-allowed !important; }
.selectBox-disabled .selectBox-options LI A:hover { color:inherit !important; }

.selectBox-dropdown.selectBox-disabled .selectBox-arrow {
    opacity:0.7; -khtml-opacity:0.7; -moz-opacity:0.7; filter: alpha(opacity=70);
}

.selectBox-inline.selectBox-disabled .selectBox-options A {
    background-color: transparent !important;
}

.selectBox-options.selectBox-options-top{
    border-bottom:none;
	margin-top:1px;
	-moz-border-radius-topleft: 4px;
    -moz-border-radius-topright: 4px;
    -webkit-border-top-left-radius: 4px;
    -webkit-border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.selectBox-options.selectBox-options-bottom{
	border-top:none;
    -moz-border-radius-bottomleft: 4px;
    -moz-border-radius-bottomright: 4px;
    -webkit-border-bottom-left-radius: 4px;
    -webkit-border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
