/*
    see: http://www.minijs.com/
*/

#mini-notification {
    display: none;
    position: fixed;
    cursor: pointer;
    width: 100%;
    background: #fff;
    font-size: 14px;
    text-align: center;
    border-top: 2px solid #fff;
    z-index:9999;
    color: #3C3C3C;
    -moz-box-shadow:0 0em 0.5em rgba(0, 0, 0, 0.3);
    -webkit-box-shadow:0 0em 0.5em rgba(0, 0, 0, 0.3);
    box-shadow:0 0em 0.5em rgba(0, 0, 0, 0.3);
}

#mini-notification .inner {
    position: relative;
    width: 800px;
    margin:  0 auto;
    padding-right: 60px;
}


#mini-notification .close {
    position: absolute;
    color: #000;
    top: 10px;
    right: 0;
}

#mini-notification a.close:hover {
    text-decoration: underline;
}