#barwrap {}

.bar {
    text-align: center;
    padding: 0px;
    padding-top: 0;
    background-color: rgb(27, 27, 27);
    position: fixed;
    height: 46px;
    background: url("../img/bg2.jpg") repeat-x scroll center top #ffffff;
    top: 0;
    left: 0;
    right: 0;
    color: #f5f5f5;
    border-bottom: 1px solid #EADBDB;
    -webkit-box-shadow: 0 2px 13px .5px rgba(0, 0, 0, .3);
    box-shadow: 0 2px 13px .5px rgba(0, 0, 0, .3);
    display: none;
    z-index: 3008;
}

#head-image {
    margin-right: 1%;
    position: relative;
    top: 5px;
}

#text {
    position: relative;
    bottom: -5px;
    font-size: 13px;
    font-weight: 600;
}

#ok {
    float: right;
    margin-top: 5px;
    margin-right: 40px;
    font-size: 25px;
}

#ok a {
    color: #FFFFFF;
    text-decoration: none;
}


#otherimg {
    position: relative;
    bottom: -5px;
    font-size: 13px;
    font-weight: 600;
}


.festbtn {
    background-color: transparent;
    border: 1px solid #ffffff;
    border-radius: 1px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    margin-left: 15px;
    margin-top: -4px;
    padding: 1px 10px 2px 10px;
    transition: all 0.4s ease 0s;
}



.blink {
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
   
    -moz-animation-name: blinker;
    -moz-animation-duration: 1s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;
   
    animation-name: blinker;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@-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; }
}