/* CSS footer styles adapted from http://ryanfait.com */ 
* {
    margin: 0;
}

html {
    height: 100%
}

body {
    height: 100%;
    background-color:black;
}

.wrapper {
    min-height: 100%;
    height: auto !important;
    height: 100%;
    /* the bottom margin is the negative value of the footer's height */
    margin: 0 auto -40px; 
}

.footer, .push {
    height: 40px;
    text-align:center;
    color:white;
    font-size:16px; 
}

