/*
 * Copyright (c) 2009-2013 Michael Truog
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 *
 */

body { 
    font-family: sans-serif;
    font-size: 14pt;
}
table tr th {
    font-size: 14pt;
}
table tr td {
    font-size: 14pt;
}
table {
    border-collapse: separate;
    border-spacing: 0px 10px;
}

a {
    background-color: transparent;
    text-decoration: none;
}

hr {
    margin: 3em 0 3em 0;
    border: 0;
    border-top: 1px solid #ffffff;
    height: 0;
}

img {
    vertical-align: middle;
}

pre {
    font-family: monospace;
    font-size: 12pt;
    padding-left: 1em;
    border-left-style: solid;
    border-left-width: 1px;
    font-weight: bold;
}

#header {
    font-size: 6em;
    display: inline-block;
    font-weight: bolder; 
}
#header a {
    text-decoration: none;
}
#header img {
    border: none;
}
#sub-header {
    font-size: 2em;
    display: inline-block;
    font-weight: bolder; 
}
#sub-header a {
    text-decoration: none;
}

#navigation {
    list-style-type: none;
    overflow: hidden;
    display: inline-block;
    margin: 0 0 1em 0;
}
#navigation li {
    list-style-type: none;
    float: left;
    margin-left: 10px;
    border-left-style: solid;
    border-left-width: 2px;
    padding-left: 10px;
    font-size: 16px;
}
#navigation li:first-child {
    margin-left: 0;
    border-left: none;
    padding-left: 0;
}
#navigation li a {
    text-decoration: none;
    font-weight: normal;
}
#navigation li a img {
    border: none;
}

#content {
    max-width: 40em;
    margin: 0 0 2em 0;
}
#content h1 {
    text-align: center;
}
#content table tr td {
    padding-right: 1em;
}
#content div.top {
    text-align: right;
}
#content p.paragraph {
    text-indent: 3em;
}
#content p.block {
    margin-left: 1em;
}
#content p.code {
    text-indent: -3em;
    font-family: monospace;
    padding-left: 4em;
    border-left-style: solid;
    border-left-width: 1px;
}
#content ul.faq li {
    list-style-type: none;
}
#content ul.api li {
    list-style-type: none;
}
#content table tr td.api {
    text-align: right;
}
#content div.tabs {
    z-index: 0;
    position: relative;
    min-height: 30em; /* quickstart height */
}
#content div.tabs > div {
    display: inline;
}
#content div.tabs > div > a {
    text-decoration: none;
    padding: 0.2em;
}
#content div.tabs > div:not(:target) > a {
    border-bottom: none;
}
#content div.tabs > div > div.tab_contents {
    z-index: -2;
    left: 0; top: 1.3em;
    bottom: 0; right: 0;
    overflow: auto;
    padding: 0.3em;
}
#content div.tabs > div:not(:target) > div.tab_contents {
    position: absolute;
}
#content div.tabs > div:target > div.tab_contents,
:target #quick_start > div.tab_contents {
    z-index: -1;
    position: absolute;
}
#content div.tabs :target {
    outline: none;
}

#footer {
    font-size: x-small;
    width: 100%;
    position: fixed;
    bottom: 0px;
}

