* {
    margin: 0;
    padding: 0;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
a {
    text-decoration: none;
}
@font-face {
    font-family: 'MuseoSans';
    src: url('%%FILE:EOT2%%');
    src: url('%%FILE:EOT2%%?#iefix') format('embedded-opentype'),
         url('%%FILE:WOFF2%%') format('woff'),
         url('%%FILE:TTF2%%') format('truetype'),
         url('%%FILE:SVG2%%#MuseoSans300') format('svg');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'MuseoSans';
    src: url('%%FILE:EOT1%%');
    src: url('%%FILE:EOT1%%?#iefix') format('embedded-opentype'),
         url('%%FILE:WOFF1%%') format('woff'),
         url('%%FILE:TTF1%%') format('truetype'),
         url('%%FILE:SVG1%%#MuseoSans700') format('svg');
    font-weight: bold;
    font-style: normal;
}
body {
    font-family: "MuseoSans",sans-serif;
    font-weight: 300;
}
.banner {
    background-color: #383838;
    border: 1px solid #383838;
    width: 728px;
    height: 90px;
    overflow: hidden;
    position: relative;
    overflow: hidden;
}
.title-box {
    background-color: #F68E1C;
    color: #ffffff;
    height: 90px;
    width: 170px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;  
    font-weight: bold;
    font-size: 16px;
    font-weight: bold;
    line-height: 20px;
}
.banner-content {
    height: 90px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    width: 400px;
}
.text {
    color: #ffffff;
    font-style: italic;
    font-size: 20px;
    font-weight: 300;
    line-height: 27px;
    opacity: 0;
     -webkit-animation:  fadeIn 1s  ease-out 1s forwards;
    animation: 		fadeIn 1s  ease-out 1s forwards;
}
.btn {
    font-size: 10px;
    font-weight: bold;
    background-color: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    height: 34px;
    display: inline-block;
    padding: 8px 2px;
    line-height: 18px;
    color: #F68E1C;
    text-transform: uppercase;
    position: absolute;
    right: 14px;
    top: 9px;
    font-weight: bold;
    width: 134px;
    opacity: 0;
     -webkit-animation:  fadeIn 1s  ease-out 2s forwards;
    animation: 		fadeIn 1s  ease-out 2s forwards;
}
a:hover .btn {
    background-color: #F68E1C;
    color: #ffffff;
    text-decoration: none;
}
.logo-box {
    position: absolute;
    right: 10px;
    bottom: 1px;
}


@-webkit-keyframes fadeIn {
    from {
        opacity: 0; 
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
