/*
Default template with top/bottom bar and middle content
 */
html, body, #wrapper {
    height:100%;
    margin:0;
    padding:0;
    overflow: hidden;
}
#wrapper {
    position:relative;
}

#top, #middle, #bottom {
    position:absolute;
}

#top, #bottom {
    width:100%;
    line-height: 1;
    padding: 0 10px;
}

#top {
    top: 0;
}

#middle {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #131313;
}

#bottom {
    bottom:0;
}

/*
Image container class
 */
.vertical-container {
    display: table;
    width: 100%;
    height: 100%;
}

.vertical-container > div {
    display: table-cell;
    vertical-align: middle;
}

.vertical-container img {
    width: 100%;
    height: auto;
}


/* Full screen */
.full-screen {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    color: #000000;
    text-align: center;
}