﻿#noti_Container {
    position: relative;
    padding-top: 10px;
    padding-right: 10px;
}

/* A CIRCLE LIKE BUTTON IN THE TOP MENU. */
#noti_Button {
    width: 5px;
    height: 5px;
    line-height: 5px;
    margin: 10px 20px 10px 5px;
    cursor: pointer;
    color: #004494;
}

/* RED NOTIFICATIONS COUNTER. */
#noti_Counter {
    display: block;
    position: absolute;
    background: #E1141E;
    color: #FFF;
    font-size: 11px;
    font-weight: normal;
    padding: 10px 5px;
    margin: 5px 10px 20px 15px;
    border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    z-index: 1;
    line-height: 2px;
}

/* THE NOTIFICAIONS WINDOW. THIS REMAINS HIDDEN WHEN THE PAGE LOADS. */
#notifications {
    display: none;
    width: 430px;
    position: absolute;
    top: 30px;
    right: 0;
    background: rgb(233,236,239);
    border: solid 1px rgba(100, 100, 100, .20);
    -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, .20);
    z-index: 10;
    border-radius: 10px;
    opacity: 0.9;
}

    #notifications:before {
        content: '';
        display: block;
        width: 0;
        height: 0;
        color: transparent;
        border: 10px solid rgba(100, 100, 100, .20);
        border-color: transparent transparent rgb(233,236,239);
        margin-top: -20px;
        margin-left: 90%;
    }

