/* ----------------------------- */
/* ----------------------------- */
/* ----------------------------- */
/* RESET STYLES */
/* ----------------------------- */
/* ----------------------------- */
/* ----------------------------- */

/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}

nav ul {
    list-style:none;
    z-index: 1;
}

nav ul li {
    position: relative;
}

nav ul li ul {
    width: 100%;
}

blockquote, q {
    quotes:none;
}

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

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

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

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

/* -----------------------------
 MOBILE MENU STYLES 
-------------------------------- */
#content-wrapper {
  -webkit-transition: -webkit-transform 0.3s;
          transition: transform 0.3s;
}


.c-menu {
  position: fixed;
  z-index: 200;
  background-color: #E5D8BC;
  -webkit-transition: -webkit-transform 0.3s;
          transition: transform 0.3s;
}

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


.c-menu--push-left {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}
@media all and (min-width: 320px) {
  .c-menu--push-left {
    width: 300px;
  }
}

.c-menu--push-left .c-menu__item {
  display: block;
  text-align: center;
  border-top: solid 1px #b5dbe9;
  border-bottom: solid 1px #3184a1;
}

.c-menu--push-left .c-menu__item:first-child, {
  border-top: none;
}

.c-menu--push-left .c-menu__item:last-child, {
  border-bottom: none;
}

.c-menu--push-left .c-menu__link {
  display: block;
  padding: 12px 24px;
  color: #fff;
}

.c-menu--push-left .c-menu__close{
  display: block;
  padding: 12px 24px;
  width: 100%;
  text-align: right;
  background: none;
  border:none;
  font-size:150%;
  cursor:pointer;
}

.c-menu--push-left {
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}
@media all and (min-width: 320px) {
  .c-menu--push-left {
    -webkit-transform: translateX(-300px);
        -ms-transform: translateX(-300px);
            transform: translateX(-300px);
  }
}

.c-menu--push-left.is-active {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

#content-wrapper.has-push-left {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}
@media all and (min-width: 320px) {
  #content-wrapper.has-push-left {
    -webkit-transform: translateX(300px);
        -ms-transform: translateX(300px);
            transform: translateX(300px);
  }
}

body.has-active-menu {
  overflow: hidden;
}

.c-mask {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 0;
  height: 0;
  background-color: #000;
  opacity: 0;
  -webkit-transition: opacity 0.3s, width 0s 0.3s, height 0s 0.3s;
          transition: opacity 0.3s, width 0s 0.3s, height 0s 0.3s;
}

.c-mask.is-active {
  width: 100%;
  height: 100%;
  opacity: 0.7;
  -webkit-transition: opacity 0.3s;
          transition: opacity 0.3s;
}

.c-button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* -----------------------------
 COMMON STYLES
-------------------------------- */
html, body{
  background: #E5D8BC url(/assets/images/site/bg.jpg) repeat;
  font-size:16px;
    box-sizing: border-box;
    font-family: 'Times New Roman', sans-serif;
    color:#222;
}

html{
    position: relative;
    min-height: 100%;
}

body{
    margin:0 0 95px;
}

*, *:before, *:after {
  box-sizing: inherit;
}


.logo-font{
    font-family: 'IM Fell DW Pica', serif;
    font-weight: bold;
}

.row.logo{
   border-bottom: 6px solid #000; 
}


.show-for-mobile{
    display: none;
}


/* Text meant only for screen readers. */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}
/* -----------------------------
 COMMON LAYOUT STYLES
-------------------------------- */

.row:before,
.row:after {
  content:"";
  display:table;
}
.row:after {
  clear:both;
}
.row {
  zoom:1; /* For IE 6/7 (trigger hasLayout) */
  margin:20px 0;
}

#content-wrapper{
    width:100%;
    max-width:1200px;
    margin:0 auto;  
}

.inner-content, .mce-content-body{
    margin:0;
    padding: 30px;
    background: rgba(255,255,255,0.25);
}

.layout-1,
.layout-3-4,
.layout-2-3,
.layout-1-2,
.layout-1-3,
.layout-1-4{
    float:left;
}

.layout-1{
    width:100%;
}

.layout-3-4{
    width:70%;
    width:calc(100% - 25% - 60px);
    margin: 0 60px 0 0;
}

.layout-2-3{
    width:66%;
}

.layout-1-2{
    width:50%;
}

.layout-1-3{
    width:33%;
}

.layout-1-4{
    width:25%;
}


/* -----------------------------
 TEXT STYLES
-------------------------------- */
h1{
    font-size:200%;
    display: inline-block;
}

h2{
    font-size:175%;
    margin-bottom: 20px;
}

h3{
    font-size:125%;
    margin-bottom: 15px;
}

h4{
    font-size:110%;
    margin-bottom: 5px;
}

p{
    margin-bottom:10px;
    line-height: 120%;
}

ul li{
    list-style-type: none;
}


a,
a:hover,
a:focus{
    text-decoration: none;
    line-height: 120%;
}

a{
    color:#222;
}

a:hover{
    color:#E9C67A;
}

sup{
    position: relative;
    font-size:75%;
    top: -7px;
}


/* -----------------------------
 BUTTON STYLES
-------------------------------- */
.btn {
  color: #FFF;
  background: #f39c12;
  padding: 10px 20px;
  font-weight:600;
  display: inline-block;
}

.btn:hover,
.btn:focus{
  background: #e69112;
  color: #FFF;    
}

.mobile-nav button{
  background: none;
  border:none;
  margin:0;
  padding:0;
  font-size:100%;
  cursor: pointer;
}

.feature-topic h3:after,
.summary-page ul li a:after,
.page-right .summary-books ul li a:before,
.page-right .summary-books ul li a:after,
.page-right .downloads ul li a:before,
.page-right .downloads ul li a:after,
.page-right .topic-additional-resources .additional-resources-organizations ul li a:after,
.page-right .topic-additional-resources .additional-resources-web ul li a:after,
.page-right .topic-additional-resources .additional-resources-scholars ul li a:after,
.page-right .topic-additional-resources .additional-resources-other ul li a:after,
.blog-container .postmeta .links a:after{
    font-family: "Ionicons";
    position: relative;
    top:1px;
}

.feature-topic h3:after,
.summary-page ul li a:after,
.page-right .summary-books ul li a:after,
.page-right .downloads ul li a:after,
.page-right .topic-additional-resources .additional-resources-organizations ul li a:after,
.page-right .topic-additional-resources .additional-resources-web ul li a:after,
.page-right .topic-additional-resources .additional-resources-scholars ul li a:after,
.page-right .topic-additional-resources .additional-resources-other ul li a:after,
.blog-container .postmeta .links a:after{
    content: "\f10a";
    margin-left:5px;
}

.page-right .summary-books ul li a:before,
.page-right .downloads ul li a:before{
    content: "\f12f";
    margin-right:5px;
}

/* .page-right .summary-books ul li:last-of-type a:before{
    content: "";
    margin-right:5px;
} */

/* ----------------------------- */
/* HEADER STYLES */
/* ----------------------------- */

.pre-header{
    margin:5px 0 20px;
}

.donate-button{
    text-align: right;
    margin-top:10px;
}

.mobile-nav{
    font-size:400%;
}

.logo span{
    text-transform: uppercase;
    font-size:300%;
}

.logo,
.nav-row{
    margin:0;
}

.nav-row{
    background: #DFD2B1;
    font-weight: 700;
}

.main-nav li{
    margin-right:5px;
}

.main-nav li:hover,
.main-nav li:focus{
    background: #E9C67A;
}
.main-nav li:hover>ul {
    display: block;
}
.main-nav>ul>li,
.main-nav>ul>li a{
    display: inline-block;
}

.main-nav>ul>li a {
    padding:10px;
}
.main-nav ul ul {
    display: none;
    position: absolute;
    background: #E5D8BC;
}


.main-nav a{
    font-size:130%;
}

.main-nav a:hover{
    color:#222;
}

/*
.menu-item-current{
  background: #E9C67A;  
} */



/* ----------------------------- */
/* HOME PAGE STYLES */
/* ----------------------------- */


.intro-text{
    margin-bottom: 30px;
}

.intro-text p{
    font-size:160%;
    text-align: justify;
    display: inline;
}

.intro-text a{
    margin-left:5px;
}

.featured-topics a,
.intro-text a{
    /* text-decoration: underline; */
}

.featured-topics .search-results-list{
	border-spacing: 10px 0;
	margin: 10px -10px 0 -10px;
}


.browse-container,
.search-container{
    margin:2px 0;
}

.browse-container{
    text-align: right; 
}

.featured-topics{
    margin:30px 0;
}

.featured-topics .row{
    margin:0;
}


.featured-topics .featured-title h2{
    font-size:140%;
    margin:0;
    font-weight: normal;
}

.featured-topics .browse-all{
    text-align: right;
}

.feature-topic{
    width: 24%;
    margin: 10px 1.33% 20px 0;
}

.feature-topic:last-of-type{
    margin: 10px 0 20px;
}

.feature-topic a{
    text-decoration: none;
}

.feature-topic a:hover,
.feature-topic a:active,
.feature-topic a:focus,
.feature-topic a:visited{
    color:inherit;
}

.feature-topic img{
    max-width: 100%;
    border:4px solid #FFF;
    display: block;
    margin: 0 auto;
}

.feature-topic h3{
    margin:10px 0 0 5px;
    font-weight: normal;
}

.feature-topic h3:after{
    top:2px;
    left:5px;
}

.page-right .row div h3{
    margin-bottom:10px;
    background: #EADFBF;
    padding:10px 5px;
}

.page-right .row div p,
.page-right .row div ul li{
    margin:10px 0 10px 5px;
}

.footer-home{
    background: url(/assets/images/site/footer_image_homepage.png) no-repeat;
    background-position: bottom left;
    min-height: 950px;
}

/* ----------------------------- */
/* GENERIC PAGE STYLES */
/* ----------------------------- */

.generic-page h2{
    margin:20px 0 5px;
}

.generic-page p{
    max-width: 750px;
}

.terms-list li{
    list-style-type: disc;
    margin:10px 20px;
}


/* ----------------------------- */
/* FOOTER STYLES */
/* ----------------------------- */

.footer-container{
    background: #E5D8BC;
    position: absolute;
    width: 100%;
    height:95px;
    bottom: 0;
    left:0;
}

.footer{
    margin: 0 auto;
    font-size:80%;
    max-width:1200px;
}

.footer:first-of-type div{
    margin-top: 20px;
}

.footer .layout-1-3{
    text-align: right;
}

.footer .layout-1-3 img{
    max-width: 49%;
}

.footer ul li{
    display: inline;
}

.footer ul li:after{
    content: "|";
    margin:0 10px;
}

.footer ul li:last-of-type:after{
    content: "";
}

.copyright-text{
    display: inline-block;
    margin-top:-30px;
}

/* ----------------------------- */
/* SEARCH BAR STYLES */
/* ----------------------------- */

.search-container{
    position: relative;
    margin-top:20px;
}

.search-help{
    font-size:105%;
}

#search-form,
#search-form #search-icon{
    background: #FFF;
    border-bottom:3px solid #000;
}

#search-form #search-icon, 
#search-form #search_field{
    border:0;
    vertical-align:middle;
}

#search-form #search_field{
    width:95%;
    padding:10px 0 10px 30px;
    font-size:175%;
}

#search-form #search-icon {
  padding: 10px 0;
  width:4%;
  cursor:pointer;
  font-size:175%;
}

#search-form #search-icon,
#search-form #search-icon:hover {
  text-decoration: none;
}

#search-form input[type=submit]{
    display: none;
}

.search-container #search-autocomplete{
    border-radius:0em; 
    background:#FFF;
    padding:10px 0;
    position: absolute;
    width: 100%;
    z-index: 1;
}

.search-container #search-autocomplete.hidden{
    display: none;
}

.search-container #search-autocomplete li a{
    padding:10px 20px;
    display: inline-block;
    width: 100%;
}

.search-container #search-autocomplete li a:hover, 
.search-container #search-autocomplete li a:focus{
    background:blue;
    color:#FFF;
}


/* ----------------------------- */
/* NEWS SIDEBAR STYLES */
/* ----------------------------- */

.news-preview-container{
    margin-bottom:20px;
}

.news-preview-container h4 a:hover{
    color:#222;
}

.news-preview-container p{
    margin-bottom:5px;
}

/* ----------------------------- */
/* NEWS PAGE STYLES */
/* ----------------------------- */
.news-article-block{
    border-bottom: 2px solid #222;
    padding-bottom: 20px;
}

.news-article-block:last-of-type{
    border-bottom: 0;
}


/* ----------------------------- */
/* TOPIC PAGE STYLES */
/* ----------------------------- */

.topic-page.layout-3-4{
    width:60%;
    margin: 0 5%;
}

.topic-container .layout-1-4.page-right{
    float: right;
}

.topic-heading{
    text-align: center;
}

.topic-heading h1{
    display: block;
    margin-bottom: 5px;
}

.topic-heading h2{
    font-weight: 300;
    display: inline-block;
    margin-bottom: 0;
}

.topic-image{
    text-align: center;
}

.topic-image img{
    border: 5px solid #222;
    max-width:100%;
}

.topic-image p{
    font-style: italic;
}

.topic-image .description{
  margin-top:5px;
}

.topic-image .description p,
.topic-image .credit p{
  margin:0;
}

.topic-intro p{
    text-align: justify;
    font-style:italic;
    text-indent:50px;
}





.topic-content p, .mce-content-body p{
    font-size:115%;
    text-align: justify;
    margin-bottom:30px;
}

.topic-content p.essay-block-indent, .mce-content-body p.essay-block-indent{
    width:60%;
    margin: 0 auto 30px;
}


.topic-content .layout-1 > p{
    text-indent: 50px;
}

body.resource-278 .topic-content .layout-1 h3 + p,
.topic-content .layout-1 > p:first-of-type{
    text-indent: 0;
}

body.resource-278 .topic-content .layout-1 h3 + p:first-letter,
.topic-content .layout-1 > p:first-of-type:first-letter{
    font-size: 400%;
    float: left;
    line-height: 50px;
    padding:6px 6px 8px 3px;
}

body.resource-278 .topic-content .layout-1 h2{
    margin-top:80px;
}

body.resource-278 .topic-content .layout-1 h2:first-of-type{
    margin-top:0;
}


.topic-content img,
.mce-content-body img{
    margin: 0 auto;
    display: block;
}

.topic-content table,
.mce-content-body table{
    margin-bottom: 30px;
}

.topic-content table td,
.mce-content-body table td{
    padding:5px 10px;
    border:1px solid #222;
    vertical-align: middle;
}

.topic-content table td p,
.mce-content-body table td p{
    margin-bottom: 0;
}

/* HOPEFULLY DEFUNCT SOON */
.topic-content .essay-content-block,
.topic-content .essay-center-block p,
.mce-content-body .essay-center-block p{
    font-size:115%;
    text-align: justify;
}

.topic-content .essay-content-block,
.topic-content .essay-center-block,
.mce-content-body .essay-center-block{
    margin-bottom:30px;
}

.topic-content .essay-center-block p,
.mce-content-body .essay-center-block p{
    margin-bottom:5px;
    text-align: center;
}


.topic-content .essay-content-block:first-of-type:first-letter ,
.mce-content-body .essay-content-block:first-of-type:first-letter { 
    font-size: 400%;
    float: left;
    line-height: 50px;
    padding:4px 6px 8px 3px;
}
/* HOPEFULLY DEFUNCT SOON */


ul.topic-endnotes{
    font-size: 90%;
    line-height: 120%;
    border-top:2px solid #000;
    padding:30px 0;
}

ul.topic-endnotes li{
    padding: 10px 5px;
}

ul.topic-endnotes li:nth-of-type(even),
.topic-container .page-right .row div ul li:nth-of-type(even){
    background: #F2E4C6;
}

ul.topic-endnotes li a{
    word-wrap: break-word;
}


.topic-container .page-right .row div p,
.topic-container .page-right .row div ul li{
    margin:10px 0 10px 5px;
}


.topic-container .page-right .row div ul li{
    padding:5px;
}


.topic-container .page-right .topic-additional-resources div ul li{
    margin:0;
}


.page-right .row.link-out div ul li:nth-of-type(even){
  background:inherit; 
}

.page-right .row.link-out div ul li img{
  margin:10px 0;
  max-width: 100%;
}

.citation-block{
    margin-bottom: 20px;
}


.citation-block.closed ul{
    display: none;
}

.citation-block-heading{
    cursor: pointer;
}

.citation-block-heading h3{
    display: inline-block;
    cursor: pointer;
    margin: 0;
}

.citation-block.open .citation-block-heading h3{
    margin-bottom:15px;
}

.citation-block-heading i{
    margin-left:20px;
    font-size: 150%;
}

.organizations-output li p:first-child,
.other-output li p:first-child{
    margin-bottom:0;
}

.page-right .topic-additional-resources ul li a{
    display: block;
    margin-right: 10px;
    text-align:right;
}

.page-right .topic-additional-resources .books-output li a{
    overflow-wrap: break-word;
    word-wrap: break-word;
    text-align:left;
    display:inline;
    margin-right:0;
}

.page-right .topic-additional-resources .scholars-output li a{
    text-align: left;
}


/* ----------------------------- */
/* TAG CLOUD STYLES */
/* ----------------------------- */

.tag-cloud ul{
    margin-top:10px;
}

.tag-cloud li{
   display: inline;
}

.tag-cloud a{
    line-height: 35px;
}

.tag-cloud a.large{
    font-size:225%;
}

.tag-cloud a.medium{
    font-size:150%;
}

.tag-cloud a.small{
    font-size:100%;
}

.news-pagination{
    font-size:125%;
}

.news-pagination .older{
    text-align: right;
}


/* ----------------------------- */
/* CUSTOM MOBILE NAV STYLES */
/* ----------------------------- */
.slide-out-mobile-nav li{
  width:100%;
  font-size:100%;
  font-weight:700;
}

.slide-out-mobile-nav li a{
  display:inline-block;
    width:80%;
    margin:10px 10%;
    font-size: 120%;
}

.slide-out-mobile-nav li:hover{
  background: #E9C67A;
}

.slide-out-mobile-nav a:hover{
  color:#222;
}



/* ----------------------------- */
/* ALPHABET LIST STYLES */
/* ----------------------------- */

.alphabet-list ul{
    text-align: center;
}

.alphabet-list ul li{
    display: inline;
}

.alphabet-list ul li a{
    font-size:175%;
    padding:0 1%;
    font-weight: 600;
}


/* ----------------------------- */
/* SEARCH RESULTS STYLES */
/* ----------------------------- */
.search-container .search-result{
    padding:5px 25px;
}

.search-results-list{
    display: table;
    border-spacing: 15px;
}

.search-results-row{
    display: table-row;
}


.search-result-container{
    display: table-cell;
    background: #FFF;
    width:220px;
    -webkit-box-shadow: 2px 5px 10px 0px rgba(153,153,153,1);
    -moz-box-shadow: 2px 5px 10px 0px rgba(153,153,153,1);
    box-shadow: 2px 5px 10px 0px rgba(153,153,153,1);
    text-align: center;
    vertical-align: top;
    padding-top: 10px;
}

.search-result-container h2, 
.search-result-container h2:hover,
.search-result-container h2:active,
.search-result-container h2:visited{
    margin:10px 20px;
    color:#222;
    font-size:125%;
    font-weight: bold;
} 

.search-result-container img{
    width:90%;
    margin:5%;
    border:2px solid #222;
}

.search-result-container p,
.search-result-container p:hover{
    margin:20px 5%;
    color:#222;
    cursor: pointer;
    text-align: left;
    width:90%;
}


/* -----------------------------
    ACCORIDAN STYLES - NOT USING ACCORDIAN ANYMORE
-------------------------------- 

/* Remove focus ring as all screen readers tested on, add their own focus ring 
:focus{
  outline: 0;
}

.accordion{
  overflow: hidden;
}

.accordion-panel__heading{
  position: relative;
    font-size:125%;
  padding: 20px 0;
  display: block;
  text-decoration: none;
  border-bottom: 2px solid #E5D8BC;
  transition: all .2s;
  cursor:pointer;
    font-weight: 600;
}

.accordion-panel__heading i{
    float: right;
}

.accordion-panel__heading:before{
  transition: all .2s ease;
  content: "";
  border: 0px #E5D8BC solid;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
}
.accordion-panel__heading.active:before{
  transition: all .2s .2s;
}
.accordion-panel__heading:hover{
  color: #333;
  transition: all .2s;
}
.accordion-panel__heading.active:hover,
.accordion-panel__heading.active {
  transition: all .2s;
  color: #333;
  border-bottom: 0;
}
.accordion-panel__content{
  transition: all .2s;
  position: relative;
    max-height: 0;
    overflow: hidden;
}
.accordion-panel__content:before{
  transition: all .2s ease;
  content: "";
  border: 0px #E5D8BC solid;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
}
.accordion-panel__content.active:before{
  transition: all .2s .2s;
}
.accordion-panel__content.active {
  transition: all .2s;
    max-height: 400%;
    border-bottom: 2px solid #E5D8BC;
}
*/

/* -----------------------------
    SUMMARY PAGE STYLES 
-------------------------------- */
.summary-resources{
    margin-top:20px;
}

.summary-block{
    margin-bottom:40px;
}

.summary-block:last-child{
    margin-bottom:0;
}

.summary-block h2{
    font-size: 150%;
    
}

.summary-block h3{
    font-size: 125%;
    margin:10px 0;
}

.summary-block ul{
    margin-bottom: 40px;
}

.summary-block ul li a{
    font-weight: bold;
    display: inline-block;
}

/* ----------------------------- */
/* BLOG STYLES */
/* ----------------------------- */

.blog-container .post{
	border-bottom: 2px solid black;
}

.blog-container .postmeta .links a{

}

.blog-container .page-right .row div h3{
	margin-bottom:0;
}

.blog-container .search-box{
	margin-bottom:10px;
}


.blog-container .search-box #search-form{
	border-bottom:0;
}

.blog-container .search-box #search-form #search_field{
	width:90%;
	padding:10px 5px;
	font-size:100%;
}

/* ----------------------------- */
/* RESPONSIVE QUERIES */
/* ----------------------------- */

@media screen and (max-width: 1250px){
    #content-wrapper,
    .footer{
        margin:0 5%;
        width:90%;
    }
    
}

@media screen and (max-width: 1000px){
    
    html,
    body{
        font-size:14px;
    }
    
    .footer-home{
        background: inherit;
        background-position: inherit;
        min-height: auto;
    }
        
    #search-form #search_field{
        width:94%;
    }
    
    .feature-topic{
        width: 49%;
        margin: 10px 2% 20px 0;
    }

    .feature-topic:nth-of-type(2),
    .feature-topic:last-of-type{
        margin: 10px 0 20px 0;
    }
    
    .search-results-row{
        display: block;
    }
    
    .search-results-list{
        display: block;
    }
    
    .search-result-container{
        width:47%;
        float:left;
        margin:0 1% 20px;
        height:350px;
    }
    
    .search-result-container img{
        width:auto;
        max-height:200px;
        max-width: 90%;
        margin:0 5%;
    }
    
}

@media screen and (max-width: 768px){
    
    .hide-for-mobile{
        display: none;
    }
    
    .show-for-mobile{
        display: block;
    }
    
    body{
        margin:0 0 330px;
    }
    
    
    .page-right .row{margin:0 0 30px;}
    
    
    .inner-content{
        padding: 10px 20px;
    }
    
    .layout-1,
    .layout-3-4,
    .layout-2-3,
    .layout-1-2,
    .layout-1-3,
    .layout-1-4,
    .layout-3-4.with-margin-right{
        width:100%;
        margin:0;
    }
    
    .btn{
        padding:10px;
    }
    

    /* HEADER */
    .mobile-nav{
        text-align: right;
    }
    
    .donate-button{
        margin-top:5px;
    }
    
    .logo span{
        font-size: 200%;
    }
    
    
    /* HOME PAGE */
    .intro-text p{
        font-size:150%;
        display: block;
    }
    
    .intro-text a{
        display: block;
        margin: 0;
    }
    
    .browse-container, .search-container{
        margin:2px 0;
    }
    
    .featured-topics .layout-1-2{
        width:50%;
    }
    
    .browse-all{
        margin-top:4px;
    }
    
    .feature-topic{
        margin: 10px 0 20px;
    }
    
    .feature-topic:first-of-type,
    .feature-topic:last-of-type{
        margin: 10px 0 20px;
    }

    
    /* SEARCH BAR */
    #search-form #search_field{
        width:90%;
        padding:10px 0 10px 10px;
        font-size:125%;
    }
    
    #search-form #search-icon{
        width: 8%;
    }
    
    
    /* FOOTER */
    .footer-container{
        height:330px;
        padding:0 5%;
    }
    
    .footer{
        margin: 10px auto 0;
        font-size: 95%;
    }
    
    .footer:first-of-type div{
        margin:0;
    }
    
    .footer ul{
        margin:0;
    }
    
    .footer ul li{
        display: block;
        margin:10px 0;
    }
    
    .footer ul li:after{
        content: "";
        margin:0;
    }
    
    .footer img{
        display:block;
        max-width: 100%;
    }
    
    .copyright-text{
        margin:10px 0 5px;
    }
    
    /* TOPIC PAGE */
    .topic-page.layout-3-4{
        width:90%;
    }
    
    .topic-content p,
.mce-content-body p{
        line-height: 140%;
    }
    
    /* NEWS PAGE STYLES */
    .older,
    .newer{
        width:50%;
    }
    
    /* SEARCH RESULTS */
    .search-result-container{
        width:98%;
        height:auto;
    }
    
    .search-result-container img{
        height:200px;
    }
    
}

