/******* Layout *******/
.content {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 100px;
}
.ads-area {
    height: 100px;
    position: absolute;
    bottom: 0;
    left: 0;
    right:0;
    text-align: center;
}

.table {
    display: table;

    height: 100%;
    width: 100%;
    table-layout:fixed;
    position: relative;
    border-spacing: 10px;
}

.cell {
    display: table-cell;
    padding: 0;
    position: relative;
    background-color: #f7f7f7;
}

.wrapper {
    overflow: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 26;
    bottom: 0;
    border: 1px #DFDFDF solid;
    border-top: none;
}

.menu-bar {
    background-color: purple;
    height: 25px;
    border-bottom: 1px #DFDFDF solid;
    border-radius: 10px 10px 2px 2px;
    position: absolute;
    top: 0;
    width: 100%;
    color: white;
    font-weight: bold;
}

.menu-header {
    float: left;
    margin-left: 15px;
    font-family: cursive;
    line-height: 25px;
    font-size: 18px;
}
.menu-action {
    float: right;
    margin-right: 15px;
    font-size: 70%;
    line-height: 26px;
}

.close-button {
    background: orange;
    color: red;
    border-radius: 12px;
    line-height: 20px;
    text-align: center;
    height: 20px;
    width: 20px;
    font-size: 18px;
    padding: 1px;
    top: -10px;
    right: -7px;
    position: absolute;
    cursor: pointer;
    z-index: 99;
}
.close-button::before {
    content: "\2716";
}

/******* Style *******/
.element {
    color: #000088;
}
.attribute {
    color: #882288;
}
.property {
    color: #880000;
}

.unit .property {
    font-style: italic;
}
.element, .attribute {
    cursor: pointer;
}
.element:hover, .attribute:hover {
    background-color: #DEDEDE;
}

pre {
    overflow: visible;
    display: inline-block;
    margin-bottom: 0;
    border: none;
}

#android-description { 
    padding: 10px;
}

#android-linkframe {
    height: 100%;
    width: 100%;
}

/* hack with firefox, as there is display issue */
@-moz-document url-prefix() {
    .cell {
        position: absolute;
        top: 10px;
        bottom: 10px;
        left: 10px;
        right: 10px;
    }
}

@media handheld, (max-width: 900px) {
    .content {
        bottom: 0;
        -moz-text-size-adjust:none;
        -webkit-text-size-adjust: none;
        text-size-adjust: none;
    }
    .ads-area {
        display: none;
    }

    .cell {
        position: absolute;
        top: 10px;
        bottom: 10px;
        left: 10px;
        right: 10px;
    }
}
