* {
    margin: 0;
    padding: 0;
}
html {
    height: 100%;
}

body {
    background: #0485d9;
    height: 100%;
    text-align: center;
}

/**
 * Hack to prevent Safari and Opera from seeing the min-height property */
html:lang(en) #flash{
    min-height: 670px;
    height: 100% !important;
}
/**
 * using a css expression for IE to set the min-height of the #flash div */
#flash {
    height: expression(document.body.offsetHeight < "670" ? "670px" : "100%");
}
#flash p {
color: white;
}