﻿html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

/*body {
    font-family: Arial;
    position: relative;
}*/

.keyboardContainer {
    font-family: Arial;
    width: 100%;
    display: none;
    position: absolute;
    bottom: 0;
    z-index: 10000;
    background-color: #999;
    padding: 5px 0;
}

.keyboardOuter {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
}

#viewContent {
    border: 1px solid #000;
    padding: 0 2px;
    margin: 0 0 0 1px;
    height: 30px;
    line-height: 30px;
    vertical-align: middle;
    width: calc(100% - 8px);
    background-color: yellow;
    font-weight: bold;
    color: #A10505;
}

.keyboardOuter .keyboardRow {
    display: block;
    text-align: center;
}

    .keyboardOuter .keyboardRow .keyboardButton {
        display: inline-block;
        padding: 1px;
    }

        .keyboardOuter .keyboardRow .keyboardButton.close,
        .keyboardOuter .keyboardRow .keyboardButton.fn,
        .keyboardOuter .keyboardRow .keyboardButton.shift,
        .keyboardOuter .keyboardRow .keyboardButton.space {
            text-transform: uppercase;
        }

        .keyboardOuter .keyboardRow .keyboardButton a {
            display: block;
            margin: 0;
            padding: 0;
            cursor: pointer;
            color: #000;
            background-color: #fff;
            height: 28px;
            line-height: 28px;
            vertical-align: middle;
            text-align: center;
            border: 1px solid #000;
        }

            .keyboardOuter .keyboardRow .keyboardButton a:hover {
                background-color: #333;
                color: #FFF;
            }
