﻿
/*Added css for design notification area, you can design by your self*/
/* COPY css content from youtube video description*/
.noti-content {
    position: fixed;
    /*right: 100px;*/
    right: 5px;
    background: #f0f0f0;
    border-radius: 4px;
    top: 55px;
    width: 250px;
    display: none;
    border: 1px solid #9E988B;
    z-index: 10000;
}

ul#notiContent {
    max-height: 200px;
    overflow: auto;
    padding: 0px;
    margin: 0px;
    z-index: 100000000;
    /*padding-left: 20px;*/
}

    ul#notiContent li {
        margin: 3px;
        padding: 6px;
        background: #fff;
    }

    ul#notiContent a {
        margin: 3px;
        padding: 6px;
        color: red;
        /*font-size: 10px;*/
    }

    ul#notiContent li span {
        font-size: 10px;
        font-style: italic;
    }

.noti-top-arrow {
    border-color: transparent;
    border-bottom-color: #F5DEB3;
    border-style: dashed dashed solid;
    border-width: 0 8.5px 8.5px;
    position: absolute;
    right: 15px;
    top: -10px;
}

span.noti {
    color: #FF2323;
    margin: 15px;
    position: fixed;
    /*right: 100px;*/
    right: 0px;
    font-size: 18px;
    cursor: pointer;
    top: 10px;
    z-index: 10000;
}

span.count {
    position: relative;
    top: -5px;
    font-size: 11px;
    color: red;
}
