/* @group reset */
  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;
  }

  body {
    line-height: 1;
  }

  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;
  }
/* @end */

/* @group base */
  * {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Open Sans', 'Lucida Grande', tahoma, verdana, arial, sans-serif;
  }

  a {
    color: #bcce6f;
    text-decoration: none;
  }

  a:hover {
    text-decoration: underline;
  }
/* @end */

/* @group general elems */
  .btn {
    background: #489ba5;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    letter-spacing: 1px;
    line-height: 40px;
    min-width: 220px;
    padding: 0 20px;
    text-align: center;
    text-transform: uppercase;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
  }

  .btn:hover {
    background: #287e88;
    text-decoration: none;
  }

  hr {
    border: none;
    border-top: 5px solid #edf4f5;
    height: 0;
    margin: 40px 0;
  }

  .left {
    float: left;
  }

  .right {
    float: right;
  }

  @media only screen and (max-width: 950px) {
    .btn {
      display: block;
      margin: 15px 0;
    }
  }
/* @end */

/* @group structure */
  body {
    font-family: 'Open Sans', 'Lucida Grande', tahoma, verdana, arial, sans-serif;
  }

  .content {
    line-height: 1.5;
    max-width: 950px;
    margin: 0 auto;
    padding-bottom: 25px;
  }

  .wrapper {
    margin: 0 auto;
    max-width: 950px;
    position: relative;
  }

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

/* @group header */
  .header {
    background: #095056 url(images/layout/header.jpg) 50% 100% repeat-x;
    margin-bottom: 75px;
  }

  .header--wrapper {
    height: 115px;
  }

  .header--skip {
    left: -9999px;
    position: absolute;
  }

  .header--logo {
    background: url(images/layout/header--logo.png) 0 20px no-repeat;
    display: block;
    left: 0;
    height: 150px;
    position: absolute;
    text-indent: -9999px;
    top: 0;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 220px;
  }

  .header--logo:hover {
    background-position: 0 15px;
  }

  .header--nav {
    bottom: 0;
    color: #489ba5;
    font-family: Bitter, Georgia, serif;
    font-size: 22px;
    position: absolute;
    right: 0;
  }

  .header--tagline {
    bottom: -50px;
    color: #bbced1;
    font-size: 16px;
    line-height: 50px;
    letter-spacing: 1px;
    position: absolute;
    right: 0;
    text-align: justify;
    text-transform: uppercase;
  }

  .header--nav li {
    float: left;
  }

  .header--nav a {
    color: #489ba5;
    display: block;
    height: 70px;
    line-height: 50px;
    padding: 20px 12px 0;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
  }

  .header--nav li:last-child a {
    padding-right: 0;
  }

  .header--nav a:hover {
    color: #5dd8e6;
    text-decoration: none;
  }

  .header--donate-btn {
    background: #053339;
    color: #74d49a;
    float: right;
    font-size: 16px;
    line-height: 30px;
    margin-top: 15px;
    text-align: center;
    text-transform: uppercase;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 140px;
  }

  .header--donate-btn:hover {
    background: #031d20;
    color: #fff;
    text-decoration: none;
  }

  @media only screen and (max-width: 950px) {
    .header {
      background-image: none;
      margin-bottom: 25px;
    }

    .header--wrapper {
      height: auto;
    }

    .header--logo {
      background-color: #fff;
      background-size: 165px 97px; /* 75% of size */
      background-position: 50% 0;
      height: 125px;
      position: static;
      width: auto;
    }

    .header--logo:hover {
      background-position: 50% 0;
    }

    .header--donate-btn {
      border-radius: 0;
      display: block;
      float: none;
      margin: 0;
      width: auto;
    }

    .header--nav {
      position: static;
    }

    .header--nav li {
      width: 50%;
    }

    .header--nav li:last-child a {
      padding-right: 20px;
    }

    .header--nav a {
      height: auto;
      padding: 0 20px;
      text-align: center;
    }

    .header--tagline {
      display: none;
    }
  }
/* @end */

/* @group footer */
  .footer {
    background: #095056 url(images/layout/footer.png) 50% 100% no-repeat;
    height: 325px;
  }

  .footer--section {
    float: left;
    overflow: hidden;
    padding-top: 20px;
    width: 33.333%;
  }

  .footer--hd {
    color: #74d49a;
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 35px;
    text-transform: uppercase;
  }

  .footer--list a {
    color: #489ba5;
    display: block;
    font-family: Bitter, Georgia, serif;
    font-size: 17px;
    line-height: 25px;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
  }

  .footer--list a:hover {
    color: #fff;
    text-decoration: none
  }

  .footer--split-list li {
    float: left;
    width: 50%;
  }

  .footer--sociallink {
    background-image: url(images/layout/footer--sociallink.png);
    display: block;
    float: left;
    height: 40px;
    text-indent: -9999px;
    width: 140px;
  }

  .footer--twitter-sociallink:hover {
    background-position: 0 100%;
  }

  .footer--facebook-sociallink {
    background-position: 100% 0;
  }

  .footer--facebook-sociallink:hover {
    background-position: 100% 100%;
  }

  @media only screen and (max-width: 950px) {
    .footer {
      height: auto;
      padding-bottom: 100px;
    }

    .footer--section {
      float: none;
      padding: 20px 20px 10px;
      width: auto;
    }

    .footer--split-list li {
      float: none;
      width: auto;
    }
  }
/* @end */

/* @group components */
  /* @group pics */
    .pic {
      border: #edf4f5 5px solid;
      display: block;
      max-width: 100%;
    }

    .caption {
      color: #bbced1;
      font-size: 11px;
      padding: 10px 0;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
  /* @end */

  /* @group wysiwyg */
    .wysiwyg {
      position: relative;
    }

    .wysiwyg hr {
      clear: both;
    }

    .wysiwyg h1,
    .wysiwyg h2,
    .wysiwyg h3,
    .wysiwyg h4,
    .wysiwyg h5,
    .wysiwyg h6 {
      margin-bottom: 0.5em;
    }

    .wysiwyg * + h1,
    .wysiwyg * + h2,
    .wysiwyg * + h3,
    .wysiwyg * + h4,
    .wysiwyg * + h5,
    .wysiwyg * + h6 {
      margin-top: 2em;
    }

    .wysiwyg h1 {
      color: #31777f;
      font-family: Bitter, Georgia, serif;
      font-size: 40px;
    }

    .wysiwyg h2 {
      color: #74d49a;
      font-family: Bitter, Georgia, serif;
      font-size: 30px;
    }

    .wysiwyg h3 {
      color: #31777f;
      font-size: 23px;
      font-weight: bold;
    }

    .wysiwyg h4 {
      color: #31777f;
      font-size: 20px;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .wysiwyg h5 {
      font-weight: bold;
    }

    .wysiwyg p {
      margin-bottom: 15px;
    }

    .wysiwyg strong,
    .wysiwyg b {
      font-weight: bold;
    }

    .wysiwyg em,
    .wysiwyg i {
      font-style: italic;
    }

    .wysiwyg ul,
    .wysiwyg ol {
      margin: 1em 0 1em 2.5em;
    }

    .wysiwyg li {
      margin-bottom: 1em;
      position: relative;
    }
    

    .wysiwyg ul li:before {
      background: #acc159;
      border-radius: 4px;
      content: '';
      display: block;
      height: 8px;
      left: -20px;
      position: absolute;
      top: 8px;
      width: 8px;
    }
    

    .wysiwyg ol {
      list-style-type: decimal;
    }

    .wysiwyg table {
      font-size: 13px;
      margin: 3em 0;
      width: 100%;
    }

    .wysiwyg th,
    .wysiwyg td {
      padding: 5px;
      vertical-align: top;
    }

    .wysiwyg tr:nth-child(2n - 1) {
      background: #f2f7f8;
    }

    @media only screen and (max-width: 950px) {
      .wysiwyg th,
      .wysiwyg td {
        display: block;
      }
    }

    .wysiwyg img {
      border: 5px solid #edf4f5;
      display: block;
      max-width: 100%;
    }

    .wysiwyg img[title="More..."] {
      display: none;
    }

    .wysiwyg img.aligncenter {
      margin: 30px auto;
    }

    .wysiwyg img.alignleft {
      float: left;
      margin: 15px 30px 15px 0;
    }

    .wysiwyg img.alignright {
      float: right;
      margin: 15px 0 15px 30px;
    }

    .wysiwyg ul img,
    .wysiwyg ol img {
      margin-left: 0;
      margin-right: 0;
    }

    .wysiwyg input {
      margin: 10px 0;
    }

    @media only screen and (max-width: 950px) {
      .wysiwyg ul,
      .wysiwyg ol {
        margin-left: 35px;
      }

      .wysiwyg img,
      .wysiwyg img.alignleft,
      .wysiwyg img.alignright {
        float: none;
        margin: 30px auto;
        max-width: 100%;
      }
    }

    .wysiwyg embed,
    .wysiwyg object {
      height: 600px;
      margin: 0 auto;
      width: 100%;
    }

    .wysiwyg iframe {
      margin: 0 auto;
    }
  /* @end */
/* @end */

/* @group home */
  /* @group intro */
    .home--intro {
      background: #edf4f5;
      border-top: 5px solid #dae5e7;
      margin-bottom: 50px;
      overflow: hidden;
      padding: 20px;
    }

    .home--introtext {
      float: left;
      height: 370px;
      padding: 20px;
      position: relative;
      width: 360px;
    }

    .home--introtext p {
      color: #4a4e55;
      font-family: Bitter, Georgia, serif;
      font-size: 28px;
      line-height: 1.4;
    }

    .home--intro-btn {
      bottom: 20px;
      left: 20px;
      position: absolute;
    }

    .home--introgallery {
      border: 5px solid #dae5e7;
      float: right;
      height: 370px;
      overflow: hidden;
      position: relative;
      width: 525px;
    }

    .home--introgallery li {
      left: -515px;
      position: absolute;
      -webkit-transition: all 0.55s;
      transition: all 0.55s;
    }

    .home--introgallery li.active {
      left: 0;
      -webkit-transition: all 0.45s;
      transition: all 0.45s;
    }

    .home--introgallery li.next {
      left: 515px;
      -webkit-transition: none;
      transition: none;
    }

    .home--introgallery p {
      background: url(images/layout/caption.png) 0 0 repeat-x;
      bottom: 6px;
      color: #fff;
      font-size: 14px;
      left: 0;
      line-height: 1.45;
      padding: 45px 10px 10px;
      position: absolute;
      right: 0;
      text-align: right;
      text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
    }

    .home--body-hd {
      color: #74d49a;
      font-family: Bitter, Georgia, serif;
    }

    .home--body-hd a {
      color: #74d49a;
      display: block;
      -webkit-transition: all 0.15s ease-in-out;
      transition: all 0.15s ease-in-out;
    }

    .home--body-hd a:hover {
      color: #47b698;
      text-decoration: none;
    }

    .home--link {
      color: #bcce6f;
      display: block;
      font-size: 14px;
      font-weight: bold;
    }

    .home--link:after {
      content: ' \00BB';
    }

    .home--link em {
      font-style: normal;
      font-weight: normal;
    }

    @media only screen and (max-width: 950px) {
      .home--introtext {
        height: auto;
        padding: 0 0 30px;
      }

      .home--intro-btn {
        position: static;
      }

      .home--introtext {
        float: none;
        width: auto;
      }

      .home--introgallery {
        display: none;
      }
    }
  /* @end */

  /* @group programs */
    .home--programs {
      float: left;
      width: 605px;
    }

    .home--programs-hd {
      font-size: 38px;
    }

    .home--programs-list {
      border-bottom: #edf4f5 5px solid;
      margin: 15px 0 45px;
    }

    .home--program {
      border-top: #edf4f5 5px solid;
      color: #686f70;
      display: block;
      font-size: 14px;
      line-height: 24px;
      min-height: 210px;
      padding: 35px 0 40px 160px;
      position: relative;
    }

    .home--single-program {
      border-top: none;
    }

    .home--program .pic {
      left: 0;
      position: absolute;
      top: 35px;
    }

    .home--program-link,
    .home--program-hd {
      color: #bcce6f;
    }

    .home--program-hd {
      font-family: Bitter, Georgia, serif;
      font-size: 18px;
      padding-bottom: 10px;
    }

    .home--program:hover {
      text-decoration: none;
    }

    .home--program:hover .home--program-hd,
    .home--program:hover .home--program-link {
      text-decoration: underline;
    }

    @media only screen and (max-width: 950px) {
      .home--programs {
        float: none;
        padding: 20px;
        width: auto;
      }

      .home--program {
        min-height: 0;
        padding: 20px 0;
      }

      .home--program .pic {
        display: none;
      }
    }
  /* @end */

  /* @group news */
    .home--news {
      float: right;
      width: 300px;
    }

    .home--news-hd {
      font-size: 24px;
      margin-bottom: 10px;
    }

    .home--twitter-news-hd {
      background: url(images/layout/home--twitter-news-hd.png) 0 0 no-repeat;
      padding-left: 35px;
    }

    .home--twitter-list {
      color: #686f70;
      font-size: 12px;
      line-height: 20px;
    }

    .home--twitter-list p {
      margin: 15px 0;
    }

    .home--twitter-list small {
      color: #bbced1;
      font-size: 11px;
      padding: 10px 0;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    @media only screen and (max-width: 950px) {
      .home--news {
        float: none;
        padding: 20px;
        width: auto;
      }
    }
  /* @end */
/* @end */

/* @group subpage */
  /* @group base */
    .subpage-wrapper {
      border-left: 220px solid #edf4f5;
      min-height: 600px;
      position: relative;
    }

    .subpage--body {
      float: right;
      padding: 0 30px 0 55px;
      width: 730px;
    }

    .subpage--hd {
      border-bottom: 5px solid #edf4f5;
      color: #74d49a;
      font-family: Bitter, Georgia, serif;
      font-size: 60px;
      line-height: 1.3;
      margin: -10px 0 30px;
      padding-bottom: 10px;
    }

    @media only screen and (max-width: 950px) {
      .subpage-wrapper {
        border: none;
      }

      .subpage--body {
        float: none;
        padding: 20px;
        width: auto;
      }

      .subpage--hd {
        font-size: 35px;
      }
    }
  /* @end */

  /* @group nav */
    .subpage--sectionnav {
      float: left;
      margin-left: -220px;
      width: 220px;
    }

    .subpage--sectionnav--hd a,
    .subpage--sectionnav--hd span {
      color: #96acaf;
      display: block;
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 40px 30px 15px;
    }

    .subpage--sectionnav--hd a:hover {
      color: #55858c;
      text-decoration: none;
      -webkit-transition: all 0.15s ease-in-out;
      transition: all 0.15s ease-in-out;
    }

    .subpage--sectionnav--list {
      border-bottom: 3px solid #dae5e7;
    }

    .subpage--sectionnav--link {
      border-top: 3px solid #dae5e7;
      color: #adc060;
      display: block;
      font-family: Bitter, Georgia, serif;
      font-size: 20px;
      line-height: 25px;
      padding: 10px 30px;
      -webkit-transition: all 0.15s ease-in-out;
      transition: all 0.15s ease-in-out;
    }

    .subpage--sectionnav--link:hover {
      background: #dae5e7;
      text-decoration: none;
    }

    .subpage--sectionnav--current-link {
      background: #fff;
    }

    .subpage--sectionnav--sublist {
      background: #fff;
      padding: 0 0 10px;
    }

    .subpage--sectionnav--sublink {
      display: block;
      font-size: 15px;
      padding: 5px 30px
    }

    .subpage--sectionnav--current-sublink:before {
      content: '\00BB ';
      display: inline-block;
      padding-right: 5px;
    }

    .subpage--sectionnav--section {
      font-size: 15px;
      padding: 0 25px 15px;
    }

    .subpage--sectionnav--section p {
      margin-bottom: 15px;
    }

    @media only screen and (max-width: 950px) {
      .subpage--sectionnav {
        background: #edf4f5;
        float: none;
        margin: 0;
        width: auto;
      }
    }
  /* @end */
/* @end */

/* @group archivepage */
  .archivepage--list--item {
    border-top: 2px solid #edf4f5;
    margin-bottom: 15px;
    padding: 15px 0;
  }

  .archivepage--list--item:first-child {
    border: none;
    padding-top: 0;
  }

  .archivepage--list--hd a {
    display: block;
    font-family: Bitter, Georgia, serif;
    font-size: 20px;
  }

  .archivepage--pagination {
    border-top: 5px solid #edf4f5;
    margin-top: 25px;
    overflow: hidden;
    padding: 15px 0 25px;
  }

  .archivepage--pagination a {
    background: #489ba5;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    letter-spacing: 1px;
    line-height: 40px;
    min-width: 220px;
    padding: 0 20px;
    text-align: center;
    text-transform: uppercase;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
  }

  .archivepage--pagination a:hover {
    background: #287e88;
    text-decoration: none;
  }

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

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

  @media only screen and (max-width: 950px) {
    .archivepage--pagination--left,
    .archivepage--pagination--right {
      float: none;
      margin 25px;
    }

    .archivepage--pagination--left a,
    .archivepage--pagination--right a {
      display: block;
    }
  }
/* @end */

/* @group itempage */
  .itempage--hd {
    border-bottom: 5px solid #edf4f5;
    color: #74d49a;
    font-family: Bitter, Georgia, serif;
    font-size: 60px;
    line-height: 1.3;
    margin: -10px 0 30px;
    padding-bottom: 10px;
  }
/* @end */

/* @group forums */
  #bbpress-forums li:before {
    display: none;
  }

  #bbpress-forums .avatar,
  #bbpress-forums .bbp-author-avatar {
    display: none;
  }

  #bbpress-forums div.bbp-template-notice.info {
    background: #edf4f5;
    border: 3px solid #dae5e7;
  }

  #bbpress-forums .bbp-topics {
    border: 3px solid #dae5e7;
  }

  #bbpress-forums li.bbp-header {
    background: #edf4f5;
    border: none;
  }

  #bbpress-forums li.bbp-body ul.forum,
  #bbpress-forums li.bbp-body ul.topic {
    border-top: 1px solid #dae5e7;
  }

/* @end */