.message {
    background-color: #808080;
    color: #ffffff;
    text-align: center;
    padding: 1em;
    margin: .5em;
    border-radius: 0.5em;
    cursor: pointer;
}

.message.success {
    background-color: #4bca54;
}

.message.error {
    background-color: #bf0000;
}

#imagestable tbody tr:hover {
    background-color: #9e9e9e;
    cursor: pointer;
}

#imagestable tbody tr:hover td {
    color: #ffffff;
}

#imagestable tbody tr td.imageCell {
    width: 300px;
    height: 150px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

#imagestable tbody tr td.imageCell img {
    width: 300px;
    left: 50%;
    margin-left: -150px;
    position: absolute;
    padding: 1em;
}

.red {
    color: red;
}

.green {
    color: green;
}

ul.compact {
    margin: 0;
    padding-left: 1.5em;
}

#loading {
    position: fixed;
    display: table;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1001;
    display: none;
}

#loading #holder {
    display: table-cell;
    vertical-align: middle;
    text-align: center
}

#loading #holder img {
    margin-left: auto;
    margin-right: auto;
    width: 5vw;
}

