html {
    height: 100%;
}

/*** Wikipedia iframe ***/
#WikiBox, #WikiBox2 {
    position: fixed;
    z-index: 101;
    cursor: progress;
    border-radius: 1.5ex;
    display: none;
}

#WikiBox.Expanding, #WikiBox2.Expanding {
    border: 2px solid black;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    display: block;
}

#WikiBox.Expanded, #WikiBox2.Expanded {
    top: 15%;
    left: 15%;
    width: 70%;
    height: 70%;
    border: thick solid #a9d2f9;
    display: block;
    background-color: white;
}

.Expanding h1, .Expanding h2 {
    visibility: hidden;
}

.Expanded h1, .Expanded h2 {
    -webkit-transition-delay: 1s;
    -moz-transition-delay: 1s;
    -ms-transition-delay: 1s;
    transition-delay: 1s;
    visibility: visible;
}

.WikiFrameBox {
    position: absolute;
    top: 2em;
    left: 1ex;
    right: 0;
    bottom: 0;
}

.WikiFrame {
    height: 100%;
    width: 100%;
}

.WikiBox > .WikiFrameBox > iframe {
    position: absolute;
}
.WikiTitle {
    padding-bottom: 5px;
}
.WikiBox h1 {
    border: thin inset;
    margin: 0;
    font-family: Verdana, sans-serif;
    font-size: x-small;
    line-height: 2;
    padding-left: 1ex;
    cursor: move;
    background-color: #cfe8fe;
    float: none;
}

#WikiBox button, #WikiBox button span {
    color: #428bca;
}

#windowBody {
    width: 100%;
    height: 95%;
    overflow-x: hidden;
}