/*
 *   notification panel
 */
.global-notification {
    position: absolute;
    z-index: 20000;
    bottom: 0;
    right: 0;
    padding: 0;
    border: none;
    background: none;
    width: 200px;
}

.global-notification ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.global-notification ul li {
    cursor: pointer;
    position: relative;
    margin: 14px 12px 10px 10px;
    padding: 5px 8px 4px 8px;
    text-align: left;
    color: #fff;
    font-size: .9em;
    line-height: 1.3em;
    background-color: #000;
    opacity: 0.8;
    filter: alpha(opacity = 80);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    box-shadow: 0 0 5px #000000;
    -webkit-box-shadow: 0 0 5px #000000;
    -moz-box-shadow: 0 0 5px #000000;
    border: 2px solid transparent;
}

.global-notification ul li:hover {
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.global-notification ul li .notify-close {
    cursor: pointer;
    width: 23px;
    height: 23px;
    position: absolute;
    top: -10px;
    right: -10px;
    background: transparent url("images/notification/btn_close.png") no-repeat 50% 50%;
}