/**
 * A default stylesheme for Listbox.js plugin.
 *
 * @copyright   (c) 2012, Igor Kalnitsky <igor@kalnitsky.org>
 * @version     0.3.0-dev
 * @license     BSD
 */

.lbjs {
    margin: 0px;
    width: 300px;
    padding: 5px;
    border: 1px solid #CCC;
    border-radius: 5px;
    background: #FCFCFC;
    min-height: 150px;
}

.lbjs .lbjs-list {
    margin: 0px;
    overflow: auto;
	border: 1px solid #ccc;
	min-height:100px !important;
}


.lbjs .lbjs-list .lbjs-item {
    margin: 0px;
    padding: 5px; 
}

.lbjs .lbjs-list .lbjs-item:not([disabled]) {
    cursor: pointer;
}

.lbjs .lbjs-list .lbjs-item:hover:not([disabled]) {
    /*background: rgba(112, 147, 216, 0.9);*/
	background-color:#39F;
}

.lbjs .lbjs-list .lbjs-item[selected] {
    /*background: rgba(112, 147, 216, 0.5);*/
	background-color:#FFC;
}

.lbjs .lbjs-list .lbjs-item[disabled] {
    color: #999;
    cursor: default;
}

.lbjs .lbjs-searchbar-wrapper {
    margin: 0px;
    margin-right: 12px;
}

.lbjs .lbjs-searchbar {
    margin: 0px;
    margin-bottom: 10px;
    width: 100%;
    padding: 3px 5px;
    border: 1px solid #ccc;
	height:25px;
}

.custom-combobox {
	position: relative;
	display: inline-block; margin-right:30px;
}
.custom-combobox-toggle {
	position: absolute;
	top: 0;
	bottom: 0;
	margin-left: -1px;
	padding: 0;
}
.custom-combobox-input {
	margin: 0;
	padding: 1px 10px;
	min-width:155px;
	font: 200 13px/25px Arial, Helvetica, sans-serif !important; 
}
.ui-autocomplete {
    max-height: 400px;
    overflow-y: auto;   /* prevent horizontal scrollbar */
    overflow-x: hidden; /* add padding to account for vertical scrollbar */
    z-index:1000 !important;
}
