body{
    margin: 0;
}
#info_message{
    display: none;
    width: 100%;
    position: absolute;
    top: 0;
    position: fixed;
    z-index: 9999999999;
    margin: 0;
    color: #fff;
    padding: 10px;
    -webkit-background-size: 40px 40px;
    -moz-background-size: 40px 40px;
    background-size: 40px 40px;			
    background-image: -webkit-gradient(linear, left top, right bottom,
                                                    color-stop(.25, rgba(255, 255, 255, .05)), color-stop(.25, transparent),
                                                    color-stop(.5, transparent), color-stop(.5, rgba(255, 255, 255, .05)),
                                                    color-stop(.75, rgba(255, 255, 255, .05)), color-stop(.75, transparent),
                                                    to(transparent));
    background-image: -webkit-linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%,
                                            transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%,
                                            transparent 75%, transparent);
    background-image: -moz-linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%,
                                            transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%,
                                            transparent 75%, transparent);
    background-image: -ms-linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%,
                                            transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%,
                                            transparent 75%, transparent);
    background-image: -o-linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%,
                                            transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%,
                                            transparent 75%, transparent);
    background-image: linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%,
                                            transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%,
                                            transparent 75%, transparent);
     -moz-box-shadow: inset 0 -1px 0 rgba(255,255,255,.4);
     -webkit-box-shadow: inset 0 -1px 0 rgba(255,255,255,.4);		
     box-shadow: inset 0 -1px 0 rgba(255,255,255,.4);
     text-shadow: 0 1px 0 rgba(0,0,0,.5);
     animation: animate-bg 5s linear infinite;
     -webkit-animation: animate-bg 5s linear infinite;
     -moz-animation: animate-bg 5s linear infinite;
}

.center_auto{
    margin: 0 auto;
    width: 950px;
    padding: 0;
}

#info_message .message_area{
    float: left; 
    width: 97%;
}

#info_message .message_area span.link_ribbon{
    color: #999999;
    text-decoration: underline;
    cursor: pointer;
}

#info_message .button_area{
    float: right;
    width: 12px;
    height: 12px;
    margin-top: 14px;
}

#info_message .message_area h4{
    margin: 0;
}

#info_message .message_area p{
    margin: 0;
}

.succ_bg{
    background-color: #61b832;
    border-color: #55a12c;
    border-bottom: 1px solid #61b832;
}

.succ_bg .button_area{
    width: 20px;
    height: 20px;
    background-image: url('../images/close_btn.png');    
    background-repeat:no-repeat;
    cursor: pointer;
}

.error_bg{
    background-color: #de4343;
    border-color: #c43d3d;
    border-bottom: 1px solid #de4343;
}

.error_bg .button_area{
    width: 20px;
    height: 20px;
    background-image: url('../images/close_btn.png');    
    background-repeat:no-repeat;
    cursor: pointer;
}

.info_bg{
    background-color: #4ea5cd;
    border-color: #3b8eb5;
    border-bottom: 1px solid #4ea5cd;
}

.info_bg .button_area{
    width: 20px;
    height: 20px;
    background-image: url('../images/close_btn.png');    
    background-repeat:no-repeat;
    cursor: pointer;
}

.warn_bg{
    background-color: #eaaf51;
    border-color: #d99a36;
}

.warn_bg .button_area{
    width: 20px;
    height: 20px;
    background-image: url('../images/close_btn.png');    
    background-repeat:no-repeat;
    cursor: pointer;
}

.clearboth{
    clear: both;
}

.info_more_descrption{
    display: none;
    width: 950px;
    height: 300px;
    background: #fff;
    margin: 0 auto;
    padding: 10px;
    background: #fbfbfb;
    overflow: auto;
}

@keyframes animate-bg
{
    from {
        background-position: 0 0;
    }
    to {
       background-position: -80px 0;
    }
}

@-webkit-keyframes animate-bg
{
    from {
        background-position: 0 0;
    }
    to {
       background-position: -80px 0;
    }
}


@-moz-keyframes animate-bg 
{
    from {
        background-position: 0 0;
    }
    to {
       background-position: -80px 0;
    }
}