.ui-multiselect {
	padding: 7px 5px 3px 10px;
	text-align:left;
	-webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
	-moz-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
	box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
}
.ui-multiselect.ui-state-active {
	background: #fff;
	border-bottom: 1px solid #fff;
	-webkit-border-bottom-left-radius: 0;
	-moz-border-radius-bottomleft: 0;
	border-bottom-left-radius: 0;
	-webkit-border-bottom-right-radius: 0;
	-moz-border-radius-bottomright: 0;
	border-bottom-right-radius: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.ui-multiselect span.ui-icon {
	float: right;
    background-position: -64px -16px;
}
.ui-multiselect.ui-state-active span.ui-icon {
    /*background: none;*/
}
.ui-multiselect-single .ui-multiselect-checkboxes input {
	position: absolute !important;
	top: auto !important;
	left: -9999px;
}
.ui-multiselect-single .ui-multiselect-checkboxes label {
	padding: 7px 11px !important;
}
.ui-multiselect-single .ui-multiselect-checkboxes li:last-child label {
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-bottom-left-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	border-bottom-right-radius: 5px;
}
.ui-multiselect-header {
	background: #fff;
	border: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.ui-multiselect-header ul li {
	clear: both;
}
.ui-multiselect-header a {
	display: block;
	padding: 7px 1px;
	border-bottom: 1px solid #e6e6e6;
}
.ui-multiselect-header a:hover {
	text-decoration: underline;
}
.ui-multiselect-header span.ui-icon {
	float: left;
	margin: 0 9px 0 8px;
}
.ui-multiselect-header li.ui-multiselect-close {
	display: none;
}
.ui-multiselect-menu {
	display: none;
	padding: 0;
	position: absolute;
	z-index: 10000;
	text-align: left;
	-webkit-border-top-left-radius: 0;
	-moz-border-radius-topleft: 0;
	border-top-left-radius: 0;
	-webkit-border-top-right-radius: 0;
	-moz-border-radius-topright: 0;
	border-top-right-radius: 0;
}
.ui-multiselect-checkboxes {
	position: relative; /* fixes bug in IE6/7 */
	overflow-y: auto;
	max-height: 300px;
	background: -moz-linear-gradient(top, #ffffff, #ebebeb);
	background: -ms-linear-gradient(top, #ffffff, #ebebeb);
	background: -o-linear-gradient(top, #ffffff, #ebebeb);
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#ebebeb));
	background: -webkit-linear-gradient(top, #ffffff, #ebebeb);
	background: linear-gradient(top, #ffffff, #ebebeb);
}
.ui-multiselect-checkboxes label {
	cursor: default;
	display: block;
	border-bottom: 1px solid #e6e6e6;
	padding: 7px 1px;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.ui-multiselect-checkboxes label.ui-state-active {
	text-decoration: none;
	background: #fff;
	border: none;
	border-bottom: 1px solid #e6e6e6;
	padding: 7px 1px;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0
}
.ui-multiselect-checkboxes label.ui-state-hover {
	color: #fff;
	background: #F78406;
	border: none;
	border-bottom: 1px solid #e6e6e6;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.ui-multiselect-checkboxes li:last-child label,
.ui-multiselect-checkboxes li:last-child label.ui-state-active,
.ui-multiselect-checkboxes li:last-child label.ui-state-hover {
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-bottom-left-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	border-bottom-right-radius: 5px;
}
.ui-multiselect-checkboxes label input {
	position: relative;
	top: 1px;
	margin: 0 10px;
}
.ui-multiselect-checkboxes label span.checkbox {
	margin: 0px 7px 0px 8px;
}
.ui-multiselect-single .ui-multiselect-checkboxes label span:last-child {
	position: inherit;
	top: inherit;
}
.ui-multiselect-checkboxes li {
	clear: both;
}
.ui-multiselect-checkboxes li.ui-multiselect-optgroup-label { text-align:center; font-weight:bold; border-bottom:1px solid }
.ui-multiselect-checkboxes li.ui-multiselect-optgroup-label a { display:block; padding:3px; margin:1px 0; text-decoration:none }

/* remove label borders in IE6 because IE6 does not support transparency */
* html .ui-multiselect-checkboxes label {
	border: 0px solid black;
}

.ui-multiselect-checkboxes::-webkit-scrollbar {
    width: 10px;
}
.ui-multiselect-checkboxes::-webkit-scrollbar-track {
	width: 10px;
    background: #f4f4f4;
    border-radius: 10px;
    -webkit-box-shadow: inset 0 1px 6px rgba(0,0,0,0.25);
}
.ui-multiselect-checkboxes::-webkit-scrollbar-thumb {
    width: 10px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #ebebeb;
}

