.grid{
    font-size: 12px;
}
.grid td{
    border: 1px solid #deefff;
    cursor: default;

    -webkit-transition: all 450ms ease-in-out;
    -moz-transition: all 450ms ease-in-out;
    -ms-transition: all 450ms ease-in-out;
    -o-transition: all 450ms ease-in-out;
    transition: all 450ms ease-in-out;
}
.grid tr:hover td{
    color: #555;
    background-color: #ffff66 !important;
    border: 1px solid #dddddd;
    text-shadow: 0 0 7px #ffffff;
}


.dialog{
    position: absolute;
    display: none;
    z-index: 999999;
}

#preloader{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../img/layout/preloader.gif);
    opacity: .95
}
#preloader h1{
    margin-top: 8%;
    width: 100%;
    text-align: center;
    color: #D9230F;
    font-size: 22px;
}
#preloader .progress-bar{
    height: 2px !important;
}

.toast {
    display: none;
    position: fixed;
    z-index: 9999999;
    width: 100%;
    text-align: center;
    top: .8em;
}
.toast .message {
    display: inline-block;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 2px 2px 2px #666;
    -webkit-box-shadow: 2px 2px 2px #666;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.05em;
    background: #282324;
    background-image: -webkit-gradient(linear,left top,left bottom, color-stop(0, #554434), color-stop(1, #282324));
}