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

.lbjs {
    margin: 0px;
    width: 500px;
    padding: 5px;
    border: 1px solid #CCC;
    background: #F5F5F5;
    height: 200px;
}
.myOwnClassConfezione {
    margin: 0px;
    width: 70px;
    padding: 5px;
    border: 1px solid #CCC;
    background: #F5F5F5;
    height: 150px;
}


.lbjs .lbjs-list {
    margin: 0px;
    overflow: auto;
}


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

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

.lbjs .lbjs-list .lbjs-item:hover:not([disabled]) {
    background: #EEE;
	color:#000;
}

.lbjs .lbjs-list .lbjs-item[selected] {
    background: #F79239;
	color:#FFF;
}
.lbjs .lbjs-list .lbjs-item[selected]:hover {
    background: #F79239;
	color:#FFF;
	cursor:default;
}

.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:300px !important;
    padding: 3px 5px;
    border: 1px solid #ccc;
}

