table, tr, td {
    border-spacing: 0;
    border-collapse: collapse;
}

.grid-list-base table {
    table-layout: fixed;
    width: 100%;
}

.grid-list-base {
    padding: 5px;
    margin: 10px;
    background: #eee;
    -webkit-box-shadow: 0px 10px 21px -14px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 10px 21px -14px rgba(0,0,0,0.75);
    box-shadow: 0px 10px 21px -14px rgba(0,0,0,0.75);
}

.grid-list {
    position: relative;
    background: #eee;
    font-family: monospace;
    line-height: 100%;
    height: 100%;
}

.grid-list, .grid-list td {
    font-size: 12px;
}

.grid-list > header {
    position: absolute;
    width: 100%;
    z-index: 1;
    height: 32px;
}

.grid-list > header > .area {
    padding-right: 17px;
}

.grid-list > header > .area, .grid-list > header table {
    height: 100%;
}

.grid-list > .list {
    position: absolute;
    top: 32px;
    bottom: 32px;
    width: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    background: #fff;
}

.grid-list > .list > .area {
    width: 100%;
}

.grid-list.no-footer > .list {
    bottom: 0;
}

.grid-list > .list > .area > table {
    padding: 0;
}

.grid-list > footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    height: 32px;
}

.grid-list td {
    position: relative;
}

.grid-list td > a {
    position: absolute;
    top: 0;
    margin-left: -1px;
    width: 100%;
    height: 100%;
    display: block;
    color: #555;
    z-index: 1;
}

.grid-list td > a + div {
    position: relative;
}

.grid-list td div {
    padding: 10px 6px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    line-height: 10px;
}

.grid-list td + td {
    border-left: solid 1px #aaa;
}

.grid-list .list td {
    border-bottom: solid 1px #e4e4e4;
}

.grid-list .list tr {
    -webkit-transition: background 80ms ease-in;
    -moz-transition: background 80ms ease-in;
    -ms-transition: background 80ms ease-in;
    -o-transition: background 80ms ease-in;
    transition: background 80ms ease-in;
}

.grid-list .list tr:hover {
    background: rgba(250, 250, 228, .5);
    color: #000;
}

.grid-list .list tr.invalid {
    background-color: #e77;
}

.grid-list .list tr.invalid:hover {
    background-color: #f88;
}

.grid-list header td {
    font-family: Arial, serif;
    color: white;
    font-size: 1.3em;
}

.grid-list .list td > div {
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 5px;
}

.grid-list .list td > div.no-padding {
    padding: 0;
}

.grid-list .list tr.selected {
    background: rgba(250, 250, 180, 1);
}

.grid-list .list td > div button {
    padding: 2px 3px;
    font-size: 8px;
    font-weight: bold;
    border: solid 1px #029a04;
    color: #fff;
    background-color: #02b405;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 2px;
    margin-left: 2px;
    outline: none;
}

.grid-list .list td > div button:hover {
    background-color: #029a04;
}