/* combo.js css styles */

.combojs {
    position: relative;
    width: 100%;
}

.combojs .combojs-edit {
    position: relative;
    width: 100%;
    z-index: 0;
}

/* style of the textbox */
.combojs .combojs-edit input {
    width: 100%;
    height: 34px;
    background-image: url("arrow-down.png");
    background-position: right;
    background-repeat: no-repeat;
    line-height: 1.42857143;
    color: #000000;
    border-radius: 4px;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    padding-left: 5px;
    -webkit-box-shadow: inset 0 1px 1px #ddd;
    box-shadow: inset 0 1px 1px #ddd;
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.combojs .combojs-edit input:focus {
    border-color: #5D9FD8;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px #ddd, 0 0 8px #5D9FD8;
    box-shadow: inset 0 1px 1px #ddd, 0 0 8px #5D9FD8;
}

/* style of the list area */
.combojs .combojs-list {
    position: absolute;
    display: none;
    width: 100%;
    border-radius: 4px;
    border: 1px solid #cccccc;
    -webkit-box-shadow: inset 0 1px 1px #ddd;
    box-shadow: inset 0 1px 1px #ddd;
    background-color: #fff;
    z-index: 1;
}

/* style of the list row*/
.combojs .combojs-list .combojs-row {
    height: 40px;
    cursor: pointer;
}

.combojs .combojs-list .combojs-row > div {
    width: 90%;
    margin: auto;
    padding: 5px;
}

.combojs .combojs-list .combojs-row:hover {
    background-color: #DFDFDF;
}