
body {
    font-family: 'Helvetica Neue', arial, sans-serif;
    font-size: 14px;
    line-height: 21px;
    color: #333;
    background: #fff url(../img/bg-gradient.png) repeat-x;
    padding-top: 27px;
}

.clear {
    clear: both;
}

.print-only {
    display: none;
}

/* ----------------------------------------------------------------------
 */

.navbar {
    background: #1b1b1b url(../img/bg.png) repeat-x;
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    z-index: 1030;
    height: 27px;
}
    .nav {
        margin: 0;
        padding: 0;
        list-style: none;
    }
        .nav > li {
            float: left;
        }
            .nav > li > a {
                padding: 5px 13px 1px;
                font-size: 12px;
                color: #ddd;
                line-height: 20px;
                text-decoration: none;
                display: block;
                position: relative;
            }
            .nav > li.dropdown > a {
                background: url(../img/dropdown_arrow.gif) no-repeat center right;
                padding-right: 14px;
                margin-right: 9px;
            }
            .nav > li.dropdown > ul {
                display: none;
                position: absolute;
                background: #1b1b1b;
                list-style: none;
                margin: 0;
                width: 150px;
                padding: 5px;
            }
            .nav > li.dropdown > a:hover + ul {
                display: block;
            }
            .nav > li.dropdown > ul:hover {
                display: block;
            }
                .nav > li.dropdown > ul a {
                    display: block;
                    padding: 5px 10px;
                    color: #fff;
                }
                .nav > li.dropdown > ul a:hover {
                    background: #000;
                }

/* ----------------------------------------------------------------------
 */

#header {
    text-align: center;
}
    #header > .container {
        background: url(/assets/img/compass.png) 156px -108px no-repeat;
        height: 77px;
        padding-top: 60px;
    }
    #header .title {
        font-family: 'Patua One', sans-serif;
        font-size: 35px;
        color: #000;
        text-decoration: none;
    }
    #header .tagline {
        display: block;
        color: #333;
        font-size: 11px;
        margin-top: 3px;
    }

/* ----------------------------------------------------------------------
 */

#footer {
    background: #191818;
    color: #9a9a9a;
    margin-top: 30px;
    padding: 15px 0 20px;
    border-top: 2px solid #403d3d;
}
    #footer a {
        color: #aaa;
        text-decoration: underline;
    }
    #footer .span4 {
        margin-top: 15px;
    }
    #footer .title {
        display: block;
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 15px;
        color: #9a9a9a;
        text-decoration: none;
    }
    #footer iframe {
        vertical-align: top;
        margin-left: 5px;
    }
    #footer .tweets {
        margin: 0;
        list-style: none;
        min-height: 200px;
    }
        #footer .tweets li {
            margin-bottom: 6px;
            padding-bottom: 6px;
            padding-left: 20px;
            border-bottom: 1px dotted #888;
            background: url(../img/quote.png) no-repeat 0 5px;
        }
        #footer .tweets li:last-child {
            border-bottom: 0;
        }
            #footer .tweets .time {
                font-size: 10px;
                display: block;
            }
    #footer .photos a {
        display: block;
        margin: 4px;
        float: left;
    }
        #footer .photos img {
            width: 50px;
            height: 50px;
        }
    #footer .menu {
        margin-top: 20px;
        margin-bottom: 20px;
        text-align: center;
        padding: 10px 0;
        background: #131212;
    }
        #footer .menu a {
            text-decoration: none;
        }
        #footer .menu a:hover {
            text-decoration: underline;
        }
    #footer .copyright {
        font-size: 12px;
        color: #999;
        text-align: center;
    }

/* ----------------------------------------------------------------------
 */

.post h1 {
    font-size: 29px;
    font-weight: bold;
    color: #333;
    margin: 0;
    margin-bottom: 15px;
}

.content,
.content p,
.content li {
    font-size: 16px;
    line-height: 26px;
    text-align: justify;
    color: #444;
}
    .content p {
        margin: 14px 0;
    }
    .content p:first-child {
        margin-top: 0;
    }
    .content h2 {
        color: #333;
        font-size: 16px;
    }
        .content h2 img {
            vertical-align: text-top;
            display: inline;
        }
    .content h3 {
        font-size: 14px;
    }
    .content code {
        background: none;
        font-family: courier;
        color: #222;
    }
    .content img {
        display: block;
        max-width: 714px;
        margin: 0 auto;
    }

.related-posts ul {
    margin-top: 6px;
}
    .related-posts li {
        margin-bottom: 3px;
    }

.share-widget {
    margin: 30px 0 20px 0;
}

#content {
    margin-top: 30px;
}
    #content > .span9 {
        padding-right: 30px;
    }

.pager {
    margin: 20px 0;
    text-align: center;
    list-style: none;
}
.pager:before, .pager:after {
    display: table;
    line-height: 0;
    content: "";
}
.pager:after {
    clear: both;
}
    .pager li {
        display: inline;
    }
        .pager li>a, 
        .pager li>span {
            display: inline-block;
            padding: 5px 14px;
            background-color: #fff;
            border: 1px solid #ddd;
            -webkit-border-radius: 15px;
            -moz-border-radius: 15px;
            border-radius: 15px;
        }
        .pager .disabled>a, 
        .pager .disabled>a:hover, 
        .pager .disabled>span {
            color: #999;
            cursor: default;
            background-color: #fff;
        }
        .pager .previous>a, .pager .previous>span {
            float: left;
        }
        .pager .next>a, .pager .next>span {
            float: right;
        }