html {
    position: relative;
    min-height: 100%;
}
body {
    font-size: 16px;
}

@media (min-width: 1200px) {
    .container {
        width: 970px;
    }
}

main {
    margin-top: 90px;
}

section {
    margin-bottom: 120px;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #f5f5f5;
    padding: 25px 0;
    font-size: 15px;
    text-align: center;
    text-transform: uppercase;
    opacity: 0.6;
    transition: opacity .2s ease;
}
footer:hover {
    opacity: 1.0;
    transition: opacity .2s ease;
}
footer p {
    margin: 0;
}

h3 {
    font-size: 23px;
}

li {
    margin-bottom: 3px;
}

#content img {
    max-width: 100%;
    padding: 4px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
}

header.navbar {
    opacity: 0.9;
}
.navbar .navbar-brand {
    font-size: 28px;
    height: auto;
    line-height: 40px;
    margin-left: 20px;
}
.navbar .navbar-brand small {
    font-size: 18px;
    font-weight: 300;
    margin-left: 10px;
}

@media (min-width: 768px) {
    #sidebar {
        position:fixed;
        margin-top: 30px;
    }
}
@media (max-width: 960px) {
    body {
        font-size: 17px;
    }
    pre {
        font-size: 12px;
    }
}

.page-header {
    margin-top: 0;
}

#sidebar .text-muted {
    color: #bbbbbb;
}

pre {
    padding: 0;
    border-radius: 4px;
    margin: 15px;
    font-size: 15px;
}
pre code {
    border: none;
}


/* Std */
section {
    border-left: 1px solid #DDD;
    border-right: 1px solid #ddd;
}

section h1 {
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
}

section > h2 {
    padding-bottom: 0.3em;
    font-size: 1.75em;
    line-height: 1.225;
    border-bottom: 1px solid #eee;
}

section > h3 {
    color: #4463a1;
}

section > p {
    line-height: 24px;
}


section > blockquote ol,
section > blockquote ul {
    padding-left: 21px;
}


section li p {
    margin-bottom: 0;
}

.warning {
    background-color: #FFCFCC;
    border: 2px solid red;
    border-radius: 5px;
    color: #000;
    font-size: 16.25px;
    margin: 0 0 23px;
    padding: 11.5px 23px;
}
.warning ul {
    margin-bottom: 0;
}

blockquote {
    background-color: #f3f8ff;
    border: 2px solid #4463a1;
    border-radius: 5px;
    color: #000;
}

/* Header */
.navbar-default {
    background-color: #f5f5f5;
    border-bottom: 1px solid #e5e5e5;
}

.navbar-default .navbar-brand {
}


/* Nav */
#sidebar {
    margin-top: 23px;
}

.nav ul {
    padding-left: 0;
}

.nav li, .nav a {
    font-size: 17px;
}

.nav-pills > li > a {
    line-height: 23px;
}

.nav li li {
    cursor: pointer;
    font-size: 14px;
    line-height: 18px;
    list-style: inside none disc;
    margin: 0;
    padding-bottom: 5px;
    padding-left: 13px;
    padding-top: 6px;
}

.nav li li:hover, .nav li li.active {
    background-color: #EEEEEE;
    border-radius: 3px;
    transition: opacity .2s ease;
}

/* Color */

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus,
.nav li li {
    color: #79A9D8;
}

.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
    background-color: #79A9D8;
}

/* Table */

section > table {

    border-color: gray;
    border-collapse: collapse;
    border-spacing: 2px;
    margin-top: 10px;
    width: 100%;
}

section > table > thead {
    border-bottom: 1px solid #ccc;
    display: table-header-group;
    vertical-align: middle;
}


section > table > tbody {
    display: table-row-group;
    vertical-align: middle;
    border-color: inherit;
}

section > table>tbody>tr, section > table>tfoot>tr {
    background: #fff;
    border-bottom: 1px solid #ccc;
    color: #333;
}

section table>tbody>tr:first-child>td, section table>tbody>tr:first-child>th, section table>tfoot>tr:first-child>td {
    border-top: 1px solid #ccc;
}

section table>thead>tr>th, section table>tbody>tr>th, section table>thead>tr>td, section table>tbody>tr>td, section table>tfoot>tr>td {
    padding: 7px 10px;
    text-align: left;
    vertical-align: top;
}