html, body {
        height: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
        overflow: hidden;
        display: flex;
        font-family:Arial;
        font-size: medium;
        color: #444;
}

h1,
h2,
h3,
h4 {
        color: #699B2A;
}

table.header_table,
table.param_table {
        border-collapse: collapse;
}

table.header_table td,
table.param_table td,
table.header_table th,
table.param_table th {
        padding: 3px 5px;
        border: 1px solid #888;
        font-size: medium;
}

.header_table,
.param_table,
.description,
.example_request,
.tabberlive,
.resource_url
{
        width: 700px;
        margin: 0 1ex;
}

a {
        color: #699B2A;
        text-decoration: underline;
}

a.active,
a.hover {
        text-decoration: none;
        font-weigth: bold;
}

ul {
        list-style-type: none;
}

li {
        padding: 0.2ex 0;
}

code {
        font-size: medium;
}

/* main layout */

#hidden {
        display: none;
        visibility: hidden;
}

#hidden pre {
        visibility: hidden;
}

#navigation {
        flex: 1 0 30%;
        overflow-y: scroll;
        margin: 0;
        padding: 0 2em 2em 2em;
}

#selection {
        height: 100%;
        width: 100%;
        overflow: auto;
}

#content {
        padding: 0 2em 2em 2em;
}

.menu-title {
        font-size: small;
        color: #a0a0a0;
}

#selection a {
        text-decoration: none;
}

.api-reference h3 {
        margin: 1.2em 0 0.4em 0;
}

/* getting started area */

.getting-started-access h3 {
        margin: 0 0 0.4em 0;
}

.getting-started-access h4 {
        color: #699B2A;
        text-decoration: underline;
        cursor: pointer;
        margin: 0;
        padding-bottom: 0.1em;
        font-weight: normal;
}

.getting-started ul {
        display: block;
        list-style-type: disc;
        -webkit-margin-before: 1em;
        -webkit-margin-after: 1em;
        -webkit-margin-start: 0px;
        -webkit-margin-end: 0px;
        -webkit-padding-start: 40px;
}

.getting-started li {
        display: list-item;
        text-align: -webkit-match-parent;
        margin-bottom: 1em;
}

.getting-started table {
        border-collapse: collapse;
}

.getting-started th,
.getting-started td {
        padding: 0.8em;
        border: 1px solid #888;
        font-size: small;
        text-align: center;
}

.getting-started th {
        font-size: medium;
}

.getting-started th.meaning-head {
        width: 10em;
}

.getting-started td.description {
        text-align: left;
}

.getting-started .indent {
        margin-left: 4em;
}

.getting-started .overview h2 {
        margin-top: 0;
}

/* tabs in request and response areas */

.request ul.tabs,
.response ul.tabs {
        list-style-type: none;
        margin: 0;
        padding: 0;
}

.request ul.tabs li,
.response ul.tabs li {
        border: gray solid 1px;
        border-bottom: none;
        float: left;
        margin: 0 .25em 0 0;
        padding: .25em .5em;
}

.request ul.tabs li a,
.response ul.tabs li a {
        color: gray;
        font-weight: bold;
        text-decoration: none;
        font-size: small;
}

.request ul.tabs li.active,
.response ul.tabs li.active {
        background: gray;
}

.request ul.tabs li.active a,
.response ul.tabs li.active a {
        color: white;
}

.request .clr,
.response .clr {
        clear: both;
}

.request article,
.response article {
        border-top: gray solid 1px;
        padding: 0 1em;
}

