html,body{
    height: 100%;
    font-family: 'Martel', sans-serif;
    font-size: 14px;
    overflow: hidden;
    position: relative;
    color: #fff;
    background-color: #000000;
}

#outerWrapper{
    height: 100%;
    position: relative;
}

#innerWrapper{
    position: relative;
    height: 100%;
    overflow: hidden;
}

#tableWrapper{
    position: absolute;
    display: table;
    width: 100%;
    height: 100%;
    padding: 50px 25px;
    z-index: 1;
}

    #tableWrapper .container{
        height: 100%;
        display: table;
    }

        #tableWrapper #rowContent{
            display: table;
            height: 100%;
            width: 100%;
            padding: 0 25px;
        }

        #tableWrapper #rowContent #contentWrapper{
            display: table-cell;
            vertical-align: middle;
        }

        #content{
            padding: 0 10%;
        }

        #tableWrapper #rowFooter{
            bottom: 50px;
            position: relative;
        }

.yellow{
    color: #f2b735;