


#notice {
    position:fixed;
    top:200px;
    //width:100%;
    z-index:105;
    text-align:center;
    font-weight:normal;
    font-size:14px;
    font-weight:bold;
    color:white;
    background-color: #414B4D;
    padding: 5px;
    margin-left: 30%;
    width: 43%;
    z-index: 1;
    line-height: 2;
    border-radius: 13px;

}
#notice span.dismis {
    border:2px solid #FFF;
    padding:0 5px;
    cursor:pointer;
    float:right;
    margin-right:10px;
}
#notice a {
    color:white;
    text-decoration:none;
    font-weight:bold
}
#overlaycell {
    position: fixed;
    top:0;
    //left:-100px;
    width: 100%;
    height: 100%;
    background-color: #000;
    filter:alpha(opacity=70);
    -moz-opacity:0.7;
    -khtml-opacity: 0.7;
    opacity: 0.7;
    z-index: 100;
    display: none;
}
.popupcell{
    width: 100%;
    margin: 0 auto;
    //display: none;
    position: fixed;
    z-index: 101;
    left: 0px;
    top:140px;
    //margin-top: 0%;
}

#notification1 {
    position: fixed;
    top: 176px;
    //width: 100%;
    z-index: 105;
    text-align: center;
    font-weight: normal;
    font-size: 14px;
    font-weight: bold;
    color: white;
    background-color: #2B70A7;
    padding: 5px;
    margin-left: 69%;
    width: 15%;
}
#notification1 span.dismiss {
    border:2px solid #FFF;
    padding:0 5px;
    cursor:pointer;
    float:right;
    margin-right:10px;
}
#notification1 a {
    color:white;
    text-decoration:none;
    font-weight:bold
}
.blink_text {

    animation:1s blinker linear infinite;
    -webkit-animation:1s blinker linear infinite;
    -moz-animation:1s blinker linear infinite;
    color: springgreen;
    font-size: large;

}

@-moz-keyframes blinker {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@-webkit-keyframes blinker {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@keyframes blinker {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

