form.search input[type='text'], form.search select {
    width: 150px;
}

.s-space {
    display: inline-block;
    margin: 10px;
    margin-left: 0px;
    white-space: nowrap;
}

.tbl-wrapper {
    overflow-x: auto;
}

.tbl {
    width: 100%;
}

.tbl-no-head {
    border-top: 2px solid #e4e4e4;
}

.tbl-head td {
    border-top: 2px solid #e4e4e4;
    border-bottom: 2px solid #e4e4e4;
    padding: 10px;
    font-weight: bold;
}

.tbl-row td {
    vertical-align: top;
    border-bottom: 1px solid #e4e4e4;
    padding: 10px;
}

.tbl-row:hover {
    background-color: #f8f8f8;
}

.tbl-row-sel {
    background-color: #f2fffa;
}

.tbl-row-clickable {
    cursor: pointer;
}

.tbl-row-unseen {
    background-color: #cffffa;
}

.tbl-head td[data-sort] {
    cursor: pointer;
}

.tbl-sup-left {
    float: left;
    width: 50%;
}

.tbl-sup-right {
    float: right;
    width: 50%;
    text-align: right;
}

.tbl-sub-left {
    float: left;
    width: 50%;
    margin-top: 20px;
}

.tbl-sub-right {
    float: right;
    width: 50%;
    text-align: right;
    margin-top: 20px;
}

ul.pager {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    margin-left: 10px;
}

ul.pager li {
    display: inline-block;
    margin: 3px;
}

.edit-left {
    float: left;
    width: 100%;
    max-width: 400px;
}

.edit-right {
    float: left;
    width: 100%;
    max-width: 400px;
}

@media screen and (max-width: 800px) {

    .tbl-sub-left, .tbl-sub-right {
        float: none;
        width: 100%;
        text-align: center;
    }

    ul.pager {
        margin-left: 0px;
    }

}