@charset "utf-8";
/* CSS Document */
	
.notification{
    position: fixed;
    top: 0px;
    left:0;
    display: block;
    padding: 10px;
    color:#fff;
    font-size:17px;
    text-align:center;
    width: 98.5%;
    z-index: 9999999;
    line-height:50px;
    font-weight:bold;
    box-shadow: 0 2px 1px rgba(0,0,0,0.25);
    -webkit-box-shadow: 0 2px 1px rgba(0,0,0,0.25);
    -moz-box-shadow: 0 2px 1px rgba(0,0,0,0.25);
}
.notification .closethis{
    background:url("../images/notification_close.png") 50% 168% no-repeat;
    width:48px; height:48px;
    display:block;
    float:right;
}
.notification .closethis:hover{
    background:url("../images/notification_close.png") 50% -55% no-repeat;
    width:48px; height:48px;
    display:block;
    float:right;
}
.notify_notify{background-color: #5F5F59;}
.info_notify{background-color: rgb(51, 153, 255);}
.error_notify{background-color: rgb(208, 69, 68);}
.success_notify{background-color: rgb(128, 177, 28);}