/** flash messages */
#flashes {
    position: fixed;
    left: 50%;
    width: 500px;
    height: auto;
    z-index: 1003;
    top: 30px;;
}
.flashmessage {
    overflow: hidden;
    margin: 5px 0 0 -250px;
    width: 500px;
    height: auto;
    background-color: rgb(0, 0, 0);
    border-radius: 6px;
    opacity: 1;
    box-shadow: 0 0 1em #444;
    z-index: 1003;
    cursor: pointer;
    border: 1px solid rgb(145, 145, 145);
    font-weight: bold;
    padding: 8px 8px 8px 35px;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.17);
    text-align: center;
    font-family: arial;
    color: #fff;
}
.flashmessage.warning {
    background: #A80 url('/img/admin/datagrid/warning.png') 10px 2px no-repeat;
}
.flashmessage.error {
    background: #9E0B0B url('/img/admin/datagrid/error.png') 10px 2px no-repeat;
}
.flashmessage.success {
    background: #73A369 url('/img/admin/datagrid/success.png') 10px 2px no-repeat;
}