/**
 * Reset some basic elements
 */
body, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, hr,
dl, dd, ol, ul, figure {
  margin: 0;
  padding: 0; }

* {
  box-sizing: border-box; }

/**
 * Basic styling
 */
body {
  font-family: Lato, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
  font-size: 16px;
  color: #111;
  background-color: #fdfdfd;
  -webkit-text-size-adjust: 100%;
  padding-bottom: 3rem; }

/**
 * Set `margin-bottom` to maintain vertical rhythm
 */
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
ul, ol, dl, figure {
  margin-bottom: 15px; }

/**
 * Images
 */
img {
  max-width: 100%;
  vertical-align: middle; }

/**
 * Figures
 */
figure > img {
  display: block; }

figcaption {
  font-size: 14px; }

/**
 * Lists
 */
ul, ol {
  margin-left: 30px; }

li > ul,
li > ol {
  margin-bottom: 0; }

/**
 * Headings
 */
h1, h2, h3, h4, h5, h6 {
  font-weight: 300; }

/**
 * Links
 */
a {
  color: #9f8290;
  font-weight: bold;
  text-decoration: none;
  transition: .2s; }
  a:visited {
    color: #795c69; }
  a:hover {
    color: #111;
    background-color: #DFE1DC; }

/**
 * Blockquotes
 */
blockquote {
  color: #DFE1DC;
  border-left: 4px solid white;
  padding-left: 15px;
  font-size: 18px;
  letter-spacing: -1px;
  font-style: italic; }
  blockquote > :last-child {
    margin-bottom: 0; }

/**
 * Code formatting
 */
pre,
code {
  font-size: 15px;
  border: 1px solid white;
  border-radius: 3px;
  background-color: #eef; }

code {
  padding: 1px 5px; }

pre {
  padding: 8px 12px;
  overflow-x: scroll; }
  pre > code {
    border: 0;
    padding-right: 0;
    padding-left: 0; }

/**
 * Wrapper
 */
.wrapper {
  max-width: -webkit-calc(1024px - (30px * 2));
  max-width: calc(1024px - (30px * 2));
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px; }
  @media screen and (max-width: 800px) {
    .wrapper {
      max-width: -webkit-calc($site-width - (30px));
      max-width: calc($site-width - (30px));
      padding-right: 15px;
      padding-left: 15px; } }

/**
 * Clearfix
 */
.wrapper:after {
  content: "";
  display: table;
  clear: both; }

/**
 * Icons
 */
.icon > svg {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle; }
  .icon > svg path {
    fill: #DFE1DC; }

/**
 * Site header
 */
.site-header {
  border-bottom: 1px solid white;
  min-height: 56px;
  background-color: #DFE1DC;
  position: relative; }

.site-title {
  font-size: 1.5rem;
  line-height: 56px;
  font-weight: 400;
  margin-bottom: 0;
  float: left; }
  .site-title, .site-title:visited {
    color: #54594c; }

.site-nav {
  float: right;
  line-height: 56px;
  font-weight: 400; }
  .site-nav .menu-icon {
    display: none; }
  .site-nav .page-link {
    color: #54594c;
    line-height: 1.5;
    text-decoration: none;
    padding: .5rem .75rem;
    font-weight: 600; }
    .site-nav .page-link:not(:first-child) {
      margin-left: 20px; }
    .site-nav .page-link:hover {
      background-color: white; }
  @media screen and (max-width: 600px) {
    .site-nav {
      position: absolute;
      top: 14px;
      right: 10px;
      background-color: #fdfdfd;
      border: 1px solid white;
      border-radius: 5px;
      text-align: right; }
      .site-nav:hover {
        width: 100%;
        width: 100%;
        padding: 14px;
        top: 0;
        right: 0;
        background-color: #DFE1DC;
        border-radius: 0; }
      .site-nav .menu-icon {
        display: block;
        float: right;
        width: 36px;
        height: 26px;
        line-height: 0;
        padding-top: 5px;
        text-align: center; }
        .site-nav .menu-icon > svg {
          width: 18px;
          height: 15px; }
          .site-nav .menu-icon > svg path {
            fill: #54594c; }
      .site-nav .trigger {
        clear: both;
        display: none; }
      .site-nav:hover .trigger {
        display: block;
        padding-bottom: 5px; }
      .site-nav .page-link {
        display: block;
        padding: .5rem 1rem; } }

/**
 * Header
 */
nav > ul > li {
  display: inline-block;
  background-color: #DFE1DC; }
  @media screen and (max-width: 600px) {
    nav > ul > li {
      display: block; } }

nav > ul > li ul {
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  background-color: #DFE1DC;
  font-size: 1rem; }
  @media screen and (max-width: 600px) {
    nav > ul > li ul {
      left: auto;
      right: 0;
      top: 100%;
      width: 100%; } }

nav > ul > li input[type=checkbox] {
  display: none; }

nav > ul > li input:checked + ul {
  visibility: visible; }

nav > ul > li ul a {
  transition: 0s; }

nav > ul > li:hover ul,
nav > ul > li:active ul,
nav > ul > li:focus ul {
  visibility: visible;
  transition-delay: 0s; }

nav ul {
  list-style: none;
  padding: 0;
  margin: 0; }

nav li {
  margin: 2px;
  position: relative; }
  @media screen and (max-width: 600px) {
    nav li {
      position: initial; } }

nav a {
  display: block; }

/**
 * Page content
 */
.page-content {
  padding: 30px 0; }

.post-list {
  margin-left: 0;
  list-style: none; }
  .post-list > li {
    margin-bottom: 30px; }

.post-meta {
  font-size: 14px;
  color: #DFE1DC; }

.post-link {
  display: block;
  font-size: 24px; }

.home {
  margin-top: 2rem; }
  @media screen and (max-width: 600px) {
    .home {
      margin-top: 0; } }
  .home .praise {
    margin-top: 4rem; }

h1 {
  font-size: 1.7rem;
  font-weight: bold; }
  @media screen and (max-width: 600px) {
    h1 {
      font-size: 1.7rem; } }

h2 {
  font-size: 1.2rem;
  font-weight: bold; }

h3 .editor {
  font-size: 1.2rem; }

input[name="amount"] {
  background: #DFE1DC;
  border: 1px solid #c6c9c1;
  border-radius: 2px;
  font-size: 1rem;
  padding: .5rem .75rem;
  text-align: center; }

.submit {
  background: #876776;
  border: 1px solid #6a515d;
  border-radius: 2px;
  font-size: 1rem;
  padding: .5rem .75rem;
  color: #DFE1DC;
  min-width: 180px;
  text-align: center;
  font-weight: 400;
  font-family: Lato, Helvetica, Arial;
  transition: .2s;
  cursor: pointer; }
  .submit:hover {
    background-color: #6a515d; }

.buy .download-free {
  display: none; }

.buy.free .download-free {
  display: inline-block;
  color: #DFE1DC;
  line-height: 1.2; }

.free .buy-with-paypal {
  display: none; }

.payment-made {
  background-color: #82ff82;
  font-weight: bold;
  text-align: center;
  padding: 2rem;
  margin: 0; }

/**
 * Main
 */
.left {
  float: left;
  width: 50%; }
  @media screen and (max-width: 600px) {
    .left {
      width: 100%; } }

.image {
  width: 40%;
  display: inline-block;
  margin-left: 9%;
  margin-top: 0; }
  @media screen and (max-width: 600px) {
    .image {
      margin-top: 0;
      margin-left: 0;
      width: 100%; } }
  .image .book-cover {
    display: block;
    width: 100%;
    height: 33rem;
    background-position: center;
    background-size: 120%;
    background-repeat: no-repeat; }

.download-pop-down,
.purchase-pop-down {
  cursor: pointer;
  margin: 2rem 0 0;
  display: block;
  background-color: #ecedea;
  padding: 1rem;
  font-size: 1.2rem; }
  .download-pop-down i::before,
  .purchase-pop-down i::before {
    content: '\25B6';
    display: inline-block;
    margin-right: 4px;
    font-style: normal;
    transition: .2s; }
  .download-pop-down.open i::before,
  .purchase-pop-down.open i::before {
    transform: rotate(90deg); }

.already-own {
  margin-top: 1rem; }

.main .buy,
.main .buy-physical {
  margin: 0 0 1rem;
  padding: 1rem;
  background-color: #ecedea; }
  .main .buy > p,
  .main .buy-physical > p {
    margin-top: 1rem;
    margin-bottom: 0; }

.center.about-the-author h2 {
  margin-bottom: 1rem; }

/**
 * Press Page
 */
.center {
  max-width: 640px;
  margin: 0 auto; }
  @media screen and (max-width: 600px) {
    .center {
      width: auto; } }
  .center h2 {
    font-size: 1.5em;
    font-weight: bold;
    margin-top: 3em;
    margin-bottom: 1.5em; }
    .center h2.indefense-praise {
      margin-top: 1em; }

.quote {
  font-style: italic;
  margin: 2rem 0 3rem;
  font-size: 1.2em; }
  .quote .author,
  .quote .more {
    margin-top: 1.5rem;
    font-style: normal;
    display: block;
    text-align: right;
    font-size: 1rem; }
  .main .quote .author {
    margin-top: .5rem; }

/**
 * Book Page
 */
.book {
  max-width: 640px; }
  @media screen and (max-width: 600px) {
    .book {
      width: auto; } }
  .book p {
    font-family: Georgia, serif;
    font-size: 1.2rem;
    line-height: 1.5; }

.download-book-extra {
  margin-top: .5rem; }

/**
 * Links
 */
.links {
  list-style: none;
  margin: 0; }

/* MailChimp Form Embed Code - Classic - 12/17/2015 v10.7 */
#mc_embed_signup form {
  display: block;
  position: relative;
  text-align: left;
  padding: 10px 0 10px 3%; }

#mc_embed_signup h2 {
  font-weight: bold;
  padding: 0;
  margin: 15px 0;
  font-size: 1.4em; }

#mc_embed_signup input {
  border: 1px solid #ABB0B2;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px; }

#mc_embed_signup input[type=checkbox] {
  -webkit-appearance: checkbox; }

#mc_embed_signup input[type=radio] {
  -webkit-appearance: radio; }

#mc_embed_signup input:focus {
  border-color: #333; }

#mc_embed_signup .button {
  clear: both;
  background-color: #aaa;
  border: 0 none;
  border-radius: 4px;
  transition: all 0.23s ease-in-out 0s;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  font-weight: normal;
  height: 32px;
  line-height: 32px;
  margin: 0 5px 10px 0;
  padding: 0 22px;
  text-align: center;
  text-decoration: none;
  vertical-align: top;
  white-space: nowrap;
  width: auto; }

#mc_embed_signup .button:hover {
  background-color: #777; }

#mc_embed_signup .small-meta {
  font-size: 11px; }

#mc_embed_signup .nowrap {
  white-space: nowrap; }

#mc_embed_signup .mc-field-group {
  clear: left;
  position: relative;
  width: 96%;
  padding-bottom: 3%;
  min-height: 50px; }

#mc_embed_signup .size1of2 {
  clear: none;
  float: left;
  display: inline-block;
  width: 46%;
  margin-right: 4%; }

* html #mc_embed_signup .size1of2 {
  margin-right: 2%;
  /* Fix for IE6 double margins. */ }

#mc_embed_signup .mc-field-group label {
  display: block;
  margin-bottom: 3px; }

#mc_embed_signup .mc-field-group input {
  display: block;
  width: 100%;
  padding: 8px 0;
  text-indent: 2%; }

#mc_embed_signup .mc-field-group select {
  display: inline-block;
  width: 99%;
  padding: 5px 0;
  margin-bottom: 2px; }

#mc_embed_signup .datefield, #mc_embed_signup .phonefield-us {
  padding: 5px 0; }

#mc_embed_signup .datefield input, #mc_embed_signup .phonefield-us input {
  display: inline;
  width: 60px;
  margin: 0 2px;
  letter-spacing: 1px;
  text-align: center;
  padding: 5px 0 2px 0; }

#mc_embed_signup .phonefield-us .phonearea input, #mc_embed_signup .phonefield-us .phonedetail1 input {
  width: 40px; }

#mc_embed_signup .datefield .monthfield input, #mc_embed_signup .datefield .dayfield input {
  width: 30px; }

#mc_embed_signup .datefield label, #mc_embed_signup .phonefield-us label {
  display: none; }

#mc_embed_signup .indicates-required {
  text-align: right;
  font-size: 11px;
  margin-right: 4%; }

#mc_embed_signup .asterisk {
  color: #e85c41;
  font-size: 150%;
  font-weight: normal;
  position: relative;
  top: 5px; }

#mc_embed_signup .clear {
  clear: both; }

#mc_embed_signup .mc-field-group.input-group ul {
  margin: 0;
  padding: 5px 0;
  list-style: none; }

#mc_embed_signup .mc-field-group.input-group ul li {
  display: block;
  padding: 3px 0;
  margin: 0; }

#mc_embed_signup .mc-field-group.input-group label {
  display: inline; }

#mc_embed_signup .mc-field-group.input-group input {
  display: inline;
  width: auto;
  border: none; }

#mc_embed_signup div#mce-responses {
  float: left;
  top: -1.4em;
  padding: 0em .5em 0em .5em;
  overflow: hidden;
  width: 90%;
  margin: 0 5%;
  clear: both; }

#mc_embed_signup div.response {
  margin: 1em 0;
  padding: 1em .5em .5em 0;
  font-weight: bold;
  float: left;
  top: -1.5em;
  z-index: 1;
  width: 80%; }

#mc_embed_signup #mce-error-response {
  display: none; }

#mc_embed_signup #mce-success-response {
  color: #529214;
  display: none; }

#mc_embed_signup label.error {
  display: block;
  float: none;
  width: auto;
  margin-left: 1.05em;
  text-align: left;
  padding: .5em 0; }

#mc-embedded-subscribe {
  clear: both;
  width: auto;
  display: block;
  margin: 1em 0 1em 5%; }

#mc_embed_signup #num-subscribers {
  font-size: 1.1em; }

#mc_embed_signup #num-subscribers span {
  padding: .5em;
  border: 1px solid #ccc;
  margin-right: .5em;
  font-weight: bold; }

#mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {
  display: inline-block;
  margin: 2px 0 1em 0;
  padding: 5px 10px;
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: normal;
  z-index: 1;
  color: #e85c41; }

#mc_embed_signup #mc-embedded-subscribe-form input.mce_inline_error {
  border: 2px solid #e85c41; }

#mc_embed_signup form {
  padding: 0;
  margin: 0; }
  #mc_embed_signup form #mc-embedded-subscribe {
    margin: 0; }
