@charset "UTF-8";

/**** ANIMATIONS ****/
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes slideIn {
    0% {
        margin-top: -100%;
    }
    100% {
        margin-top: 0;
    }
}

@keyframes slideIn {
    0% {
        margin-top: -100%;
    }
    100% {
        margin-top: 0;
    }
}

/**** MAIN CONTAINERS ****/
#container {
    width: 300px;
    height: 250px;
    border: 1px solid black;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

#header,
#payoff {
    font-size: 16px;
    color: white;
}

#header {
    position: relative;
    height: 76px;
    z-index: 4;
    padding: 4px 4px 0 4px;
    text-align: center;
    background-color: #001965;
}

#arrow {
    display: block;
    margin: 0 auto;
    z-index: 2;

    -webkit-animation: slideIn 1s ease-out 1s normal 1 both;
            animation: slideIn 1s ease-out 1s normal 1 both;
}

#payoff {
    position: absolute;
    top: 76px;
    padding-top: 4px;
    width: 100%;
    text-align: center;
    z-index: 3;
    -webkit-animation: slideIn 500ms ease-out 2.5s normal 1 both;
            animation: slideIn 500ms ease-out 2.5s normal 1 both;
}

#button,
#footer {
    -webkit-animation: fadeIn 1s ease-out 3.5s normal 1 both;
            animation: fadeIn 1s ease-out 3.5s normal 1 both;
}

#button {
    position: absolute;
    bottom: 28px;
    left: 68px;
}

#footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4px;
    font-size: 9px;
    line-height: 1.1;
    text-align: center;
}

/**** OTHER ****/
a {
    color: #00aeef;
    cursor: pointer;
    text-decoration: underline;
}

ul {
    padding-left: 1.4em;
}

/*
.lead {
    font-size: 12px;
    line-height: 1.4;
}

.small {
    font-size: 8px;
    line-height: 1.2;
}
*/

/**** FIXES / HACKS ****/

sup, sub {
    vertical-align: baseline;
    position: relative;
    top: -.8em;
    font-size: 0.6em;
}

sub { top: .8em; }
