/* Editable reset */
/* http://meyerweb.com/eric/tools/css/reset/  | v2.0 | 20110126 | License: none (public domain) */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym,
address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead,
tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav,
output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

.cf:before,
.cf:after {
    content: '';
    display: table;
}

.cf:after {
    clear: both;
}

body {
    padding-top: 50px;
    font-family: 'Open Sans', sans-serif;
    color: #4f422f;

    background: #f6f3ec;
    background: -moz-linear-gradient(top,  #f6f3ec 0%, #fff 350px);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f6f3ec), color-stop(350px, #fff));
    background: -webkit-linear-gradient(top,  #f6f3ec 0%, #fff 350px);
    background: -o-linear-gradient(top,  #f6f3ec 0%, #fff 350px);
    background: -ms-linear-gradient(top,  #f6f3ec 0%, #fff 350px);
    background: linear-gradient(to bottom,  #f6f3ec 0%, #fff 350px);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f6f3ec', endColorstr='#fff', GradientType=0);
}

a {
    -webkit-transition: .2s linear;
    -moz-transition: .2s linear;
    -o-transition: .2s linear;
    -ms-transition: .2s linear;
    transition: .2s linear;
}

a:link, a:visited {
    color: #a69f95;
    text-decoration: none;
}

a:hover, a:active {
    color: #4f422f;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
    content:'';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Basic image/video/media handling */
img, video, object, embed {
    max-width: 100%;
    height: auto !important;
}

.container {
    width: 1160px;
    max-width: 100%;
    margin: 0 auto;
}

/* Header */
.header .logo,
.header .about,
.header .nav {
    float: left;
    max-width: 100%;
}

.header .logo {
    width: 350px;
}

.header a:hover {
    opacity: .8;
}

.header .about {
    width: 320px;
    padding: 25px 30px 0;
    text-align: center;
}

.header .about em {
    font-size: 20px;
    font-family: 'Lora', serif;
    font-style: italic;
}

.header .about strong {
    position: relative;
    display: block;
    color: #a49d92;
    text-transform: uppercase;
    font-weight: bold;
}

.header .about strong:before,
.header .about strong:after {
    content: '';
    position: absolute;
    top: 50%;
    display: block;
    width: 50px;
    height: 4px;
    margin-top: -2px;
    background-color: #e9e6e1;
}

.header .about strong:before {
    left: 20px;
}

.header .about strong:after {
    right: 20px;
}

.header .nav {
    width: 420px;
}

.header .nav li {
    display: block;
    height: 90px;
    float: left;
    padding-left: 30px;
    font-weight: bold;
    text-transform: uppercase;
    border-left: 1px solid #d8d4cd;
}

.header .nav li a {
    display: block;
    padding-top: 10px;
    color: #4f422f;
}

.header .nav li img {
    display: block;
    float: left;
    margin: -10px 15px 0 0;
}

.header .nav .nav-book {
    width: 158px;
}

.header .nav .nav-book a {
    padding-right: 20px;
}

.header .nav .nav-submit {
    width: 201px;
    padding-left: 29px;
}

.header .nav .nav-submit a {
    color: #198441;
}

.main {
    max-width: 930px;
    margin: 0 auto;
    padding-top: 100px;
}

.primary {
    width: 540px;
    float: left;
}

.secondary {
    width: 300px;
    float: right;
}

.footer {
    max-width: 100%;
    margin-top: 50px;
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid #dcd9d5;
}

.footer p span {
    margin: 0 25px;
}

/* Post */
.post {
    text-align: center;
    margin-bottom: 100px;
}

.post header,
.post .post-content,
.post footer {
    padding-left: 20px;
    padding-right: 20px;
}

.post .post-meta {
    margin-bottom: 25px;
    font-size: 16px;
    color: #a69f95;
}

.post .post-meta li {
    display: inline-block;
    padding-right: 10px;
}

.post .post-meta li:after {
    content: '/';
    padding-left: 10px;
    font-weight: normal;
}

.post .post-meta li:last-child:after {
    display: none;
}

.post .post-date {
    font-weight: bold;
    text-transform: uppercase;
}

.post .post-content {
    padding-bottom: 30px;
    border-bottom: 1px solid #dcd9d5;
    font-family: 'Lora', serif;
}

.post .html_photoset {
    max-width: 500px;
}

.post .post-caption {
    padding: 30px 20px 0;
    font-size: 24px;
}

.post .post-content img {
    max-width: 100%;
    height: auto;
    padding: 2px;
    border: 1px solid #d3cfcb;
}

.post footer {
    padding-top: 30px;
}

.post .tags {
    padding-bottom: 30px;
    font-size: 14px;
    line-height: 24px;
}

.post .tags li {
    display: inline-block;
    margin-right: 10px;
}

.post .social-share li {
    display: inline-block;
    width: 105px;
    height: 30px;
    margin-right: 15px;
    text-align: left;
    line-height: 30px;
}

.post .social-share li .fb-like {
    position: relative;
    top: -8px;
}

.post-section {
    margin-bottom: 50px;
}

.post-section-header {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Pagination */
.pagination {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

.pagination .pagination-previous {
    float: left;
}

.pagination .pagination-next {
    float: right;
}

/* Sidebar */
.box {
    margin-bottom: 50px;
}

.box-header {
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}

.buy-the-book img {
    padding: 2px;
    border: 1px solid #d3cfcb;
}

.box .rect {
    display: block;
    height: 40px;
    margin: 10px 0;
    text-align: center;
    line-height: 40px;
    font-size: 16px;
    font-weight: bold;
    color: #7b7163;
    text-transform: uppercase;
    border: 2px solid #edecea;
}

.box .rect:hover {
    color: #11830b;
    border-color: #11830b;
}

.box .links {
    text-align: center;
}

.box .links li {
    margin-bottom: 10px;
}

.box .links a {
    text-decoration: underline;
}

.categories {
    margin: 0;
    padding: 0;
    list-style: none;
}

.categories li {
    display: block;
    width: 50%;
    height: 90px;
    float: left;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}

.categories li a {
    display: block;
}

.categories li i {
    display: block;
    margin: 0 auto 10px;
}

.categories li a:hover {
    color: #11830b;
}

/* Ads */
.ad-box {
    width: 300px;
    min-height: 250px;
}

.ad-banner {
    width: 728px;
    height: 90px;
    margin: 20px auto;
}

/* Notes */
.notes {
    margin: 0;
    padding: 0;
    list-style: none;
    }

.notes .note {
    padding: 10px 5px;
    font-size: 14px;
    border-bottom: 1px solid #ccc;
    }

.notes .note .avatar_frame {
    display: block;
    width: 16px;
    height: 16px;
    float: left;
    margin-right: 10px;
    }

.notes .note a {
    font-weight: bold;
    text-decoration: none;
    }

/* Responsive */
@media(max-width: 1150px) {
    .header {
        width: 730px;
        margin: 0 auto;
    }

    .header .nav {
        float: none;
        margin: 0 auto;
        padding-top: 30px;
        clear: both;
    }

    .header .nav li:first-child {
        border: 0;
    }
}

@media(max-width: 930px) {
    .primary,
    .secondary {
        max-width: 100%;
        float: none;
        margin: 0 auto;
    }

    .primary {
        min-width: 320px;
    }

    .secondary {
        margin-top: 50px;
    }

    .pagination {
        padding: 0 20px;
    }

    .footer p span {
        display: block;
        width: 0;
        height: 0;
        margin: 0;
        visibility: none;
    }

    .linkwithin_div {
        max-width: 100%;
        overflow: hidden;
    }

    .linkwithin_inner {
        margin: 0 auto;
    }
}

@media(max-width: 730px) {
    .header {
        width: auto;
        padding: 0 20px;
    }

    .header .logo,
    .header .about {
        float: none;
        margin: 0 auto;
    }

    .header .about {
        padding-left: 0;
        padding-right: 0;
    }

    .header .about em {
        font-size: 17px;
    }

    .header .nav {
        padding-top: 10px;
    }

    .header .nav li {
        width: auto !important;
        height: auto;
        float: none;
        padding: 0 !important;
        font-size: 20px;
        text-align: center;
        border: 0;
    }

    .header .nav li a {
        color: #198441;
    }

    .header .nav li img {
        display: none;
    }

    .main {
        padding-top: 50px;
    }

    .footer .ad-banner {
        max-width: 100%;
        overflow: hidden;
    }
}

@media(max-width: 580px) {

    #disqus_thread {
        padding: 0 20px;
    }

    #submit_form {
        min-height: 540px;
    }

}


/* Pages */
.page {
    color: #4f422f;
}
.page h1,
.page h2 {
    font: bold 40px 'Open Sans', sans-serif;
    text-transform: uppercase;
}

.page h2 {
    margin: 10px 0;
    font-size: 16px;
}

.page-book .btn-group {
    height: 55px;
    margin: 20px 0;
    line-height: 55px;
}

.page-book .btn-group li {
    display: inline-block;
    width: 50%;
    float: left;
}

.page-book .btn-group li a {
    position: relative;
    z-index: 1;
    display: block;
    border: 2px solid #dcd9d5;
}

.page-book .btn-group li a:hover {
    border-color: #198441;
    z-index: 2;
}

.page-book .btn-group li:first-child a {
    -webkit-border-top-left-radius: 50px;
    -webkit-border-bottom-left-radius: 50px;
    -moz-border-radius-topleft: 50px;
    -moz-border-radius-bottomleft: 50px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

.page-book .btn-group li:last-child a {
    margin-left: -2px;
    -webkit-border-top-right-radius: 50px;
    -webkit-border-bottom-right-radius: 50px;
    -moz-border-radius-topright: 50px;
    -moz-border-radius-bottomright: 50px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

.page-book .btn-group li a img {
    display: inline;
    max-width: 70%;
    padding: 0;
    border: 0;
    vertical-align: middle;
}

.page-book .btn-group li:first-child a img {
    margin-top: 10px;
}

.page-book .lead {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 26px;
}

.page-book blockquote {
    padding: 30px 0;
    border-top: 1px solid #dcd9d5;
}

.page-book blockquote p {
    font-size: 16px;
    font-style: italic;
    line-height: 22px;
}

.page-book blockquote .foot {
    margin-top: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
}

.page-book blockquote .foot:before {
    content: '\2014 \00A0';
}

.page-book blockquote .foot strong {
    font-weight: bold;
}

.page-submit ul {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 28px;
    text-align: left;
    color: #888178;
    border-top: 1px solid #dcd9d5;
}

.page-submit ul li {
    position: relative;
    padding: 30px;
    border-bottom: 1px solid #dcd9d5;
}

.page-submit ul li:before {
    content: '\2219';
    position: absolute;
    top: 30px;
    left: 5px;
    font-weight: bold;
    font-size: 20px;
}

.page-submit h2 {
    font: normal 18px 'Lora', serif;
    text-transform: none;
}

@media(max-width: 730px) {
    .page h1 {
        font-size: 30px;
    }

    .page h2 {
        font-size: 14px;
    }
}



