.multiSelect {             
}

.multiSelect.inlineBlock {
    /*display: inline-block;*/
}

/* multi select button style (original)*/
/*.multiSelect .button {
    display: block;
    position: relative;
    margin:0 auto;       
    text-align: center;
    cursor: pointer;
    border: 1px solid #c6c6c6;
    padding: 7px 12px 5px;
    font-size: 14px;
    line-height: 1.4;
    border-radius: 2px;
    color: #333;      
   -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none; 
    white-space:normal;
    background-color: #fff;
    background-image: linear-gradient(#fff, #e4e4e4);
}*/

/* multi select button style (modified) */
.multiSelect .button{
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    text-align:left;
    font-size: 14px;
    line-height: 1.42857;
    color: #767676;
    background-color: white;
    background-image: none;
    border: 1px solid #cbd5dd;
    border-radius: 2px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}


/*.multiSelect .button:hover {
    background-image: linear-gradient(#fff, #eee);    
}*/

/* helper buttons style (select all, none, reset, clear filter); */
.multiSelect .helperButton {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    cursor: pointer;
    border: 1px solid #ccc;
    padding: 2px 7px;    
    font-size: 14px;
    line-height: 1;
    border-radius: 2px;
    color: #666;    
}

.multiSelect .button > div {
    float: left;        
}

.multiSelect .checkboxLayer {
    background-color: #fff;    
    /* -- clv -
     * position: absolute; 
     * min-width:270px; 
     */
    position: relative; 
    min-width:300px;
    /* ++ clv + */
    z-index: 999;
    border: 1px solid #cccccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box; 
    padding: 15px;    
}

.multiSelect .caret {
    display: inline-block;
    width: 0;
    height: 0;
    vertical-align: middle;
    border-top: 4px solid #333;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-bottom: 0 dotted;   
    float: right;
    margin-left: 0;
    margin-top: 7px;
}

.multiSelect.multiSelectItem {
    display: inline-block;
    min-height: 30px;    
    color: #777;   
}

.multiSelect .vertical {
    float: none;
}

.multiSelect .horizontal {
    float: left;
}

.multiSelect .acol {
    display: table-cell;    
    line-height: 1.4;  
    min-width: 14px;
}


label.multiSelect span {
    white-space:nowrap;
    margin: 0;
    padding: 0;
    display: inline-block;
   -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;    
}

label.multiSelect span:hover{
    cursor: pointer;    
    color: #333;
}

/* hide the checkbox away */
.multiSelect .checkbox {
    /* -- clv -
     * position: absolute;
     */
    position: relative;
    /* ++ clv + */
    left: -9999px;
    cursor: pointer;
}

.multiSelect .show {
    display: inline-block;
}

.multiSelect .hide {
    display: none;
}

.multiSelect .line {   
    margin-bottom: 15px;
}

.multiSelect .helperButton + .helperButton  {
    margin-left: 1px;
}

/* for checkboxes currently selected */
.multiSelect .checkboxSelected {
    color: #000;
    text-shadow: 1px 0px #eee;
}

/* checkboxes currently disabled */
.multiSelect.disabled, .multiSelect.disabled:hover {
    color: #ccc;
    cursor: not-allowed;
}

/* If you use images in button / checkbox label, you might want to change the image style here.. */
.multiSelect img {
    vertical-align: middle;
    margin-bottom:3px;
    height: 22px;
    width:22px;
}
