html,
form,
body {
    padding: 0;
    margin: 0;
}

body {
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    background-color: #fff;
    color: #333;
}

h1 {
    font-weight: 800;
    font-size: 1.5em;
    color: #006C8A;
    text-align: center;
}

h2 {
    font-weight: 800;
    font-size: 1.5em;
    color: #006C8A;
    text-align: center;
    padding-bottom: 30px;
}

.green-title {
    color: #5EB130;
}

h1.green-title,
h2.green-title {
    font-size: 2em;
    font-weight: 700;
}

h2.italic-title {
    font-weight: 600;
    font-size: 1.3em;
    font-style: italic;
}

h3 {
    font: 700 16px/120% "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #333;
}

h4 {
    font-style: italic;
    font-weight: 400;
    font-size: 0.8em;
    color: #333;
    padding: 3px 0 0 0;
}

h4.green-title-lg {
    font-style: normal;
    font-weight: 700;
    font-size: 1.1em;
    color: #5EB130;
}

h5 {
    font-weight: 600;
    font-size: 0.9em;
    color: #333;
    padding: 10px 0 10px 0;
}

a {
    color: #006C8A;
}

a:hover {
    text-decoration: none;
}

p {
    font-weight: 400;
    font-size: 0.9em;
}

p.credit {
    font-weight: 700;
    font-size: 0.8em;
}

.container-wide {
    max-width: 1250px;
}

h2 .header-inline-img {
    height: 30px;
    vertical-align: middle;
}

.btn-success {
	background-color: #5EB130;
	border-color: #5EB130;
}

header {
    background: white;
    text-align: center;
    padding-top: 35px;
}

header img {
    width: 430px;
    display: inline-block;
}

footer {
    display: block;
    background-color: #006C8A;
    padding: 30px;
    margin-top: 30px;
    font-weight: 400;
    font-size: 0.9em;
    color: #fff;
}

footer div.smallprint {
    float: left;
}

footer div.smallprint p {
    font-weight: 700;
    margin: 0;
}

footer div.smallprint p a {
    text-decoration: none;
    color: #fff;
}

footer div.smallprint p label {
    color: #BDAF7F;
    margin: 0;
}

footer div.smallprint p.credit {
    padding-top: 20px;
    font-weight: 400;
}

footer div.smallprint ul {
    padding: 0;
    margin: 0;
    font-size: 1.5em;
}

footer div.smallprint ul li {
    display: inline-block;
}

footer div.newsletter label {
    display: block;
    padding: 0 0 10px 0;
}

footer div.newsletter input[type="email"] {
    border: none;
    padding: 6px 10px;
    color: #444;
    width: 100%;
    margin: 0 0 5px 0;
}

footer div.newsletter .btn {
    display: block;
    padding: 5px 15px;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    border: none;
    margin: 0;
    background-color: #999;
    color: #fff;
    font-weight: 700;
    font-size: 0.9em;
}

.newsletter label {
    margin: 0;
    font-weight: 700;
}

@media (min-width: 768px) {
    footer div.newsletter input[type="email"] {
        width: 300px;
    }
}


/***** End Footer *****/


/***** Navigation Menu  *****/

.navbar {
    background-color: #fff;
    text-align: center;
    padding-bottom: 20px;
    font-weight: 700;
    font-size: 0.9em;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.navbar .nav-item {
    padding-left: 10px;
    padding-right: 10px;
}

.navbar a {
    color: #006C8A;
}

.navbar a:hover {
    color: #5EB130;
}

.navbar .shop a {
    color: #5EB130;
}

.navbar .dropdown-menu {
    background-color: #006C8A;
    color: #fff;
}

.navbar .dropdown-menu a {
    color: #fff;
    font-weight: 700;
    font-size: 0.9em;
}

.navbar .dropdown-menu a:hover {
    background-color: transparent;
    color: #5EB130;
}

nav ul.nav {
    text-align: left;
    vertical-align: middle;
    display: inline-block;
    list-style: none;
    margin: 0;
    padding-left: 0;
    white-space: nowrap;
}

nav ul.nav li {
    display: block;
    float: left;
    position: relative;
    text-decoration: none;
    transition-duration: 0.5s;
}

nav ul.nav li a {
    display: block;
    padding: 10px 20px;
    color: #006C8A;
    text-decoration: none;
}

nav ul.nav li.shop a {
    color: #5EB130;
}

nav ul.nav li:hover,
nav ul.nav li:focus-within {
    cursor: pointer;
}

nav ul.nav li:hover a,
nav ul.nav li:focus-within a {
    outline: none;
    color: #5EB130;
}

nav ul.nav li ul {
    background: #006C8A;
    visibility: hidden;
    opacity: 0;
    min-width: 5rem;
    position: absolute;
    transition: all 0.5s ease;
    left: 0;
    display: none;
    z-index: 2;
    padding: 15px 20px 5px 20px;
    font: 600 14px/120% "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

nav ul.nav li ul li {
    padding: 0 0 10px 0;
}

nav ul.nav li ul li a {
    color: white;
    padding: 0;
}

nav ul.nav li ul li a:hover {
    color: #5EB130;
}

nav ul.nav li:hover>ul,
nav ul.nav li:focus-within>ul,
nav ul.nav li ul:hover,
nav ul.nav li ul:focus {
    visibility: visible;
    opacity: 1;
    display: block;
}

nav ul.nav li:hover>ul a,
nav ul.nav li:focus-within>ul a,
nav ul.nav li ul:hover a,
nav ul.nav li ul:focus a {
    color: white;
}

nav ul.nav li ul li {
    clear: both;
    width: 100%;
}

nav .search input {
    border: 1px solid #ccc;
    font-weight: 600;
    font-size: 0.9em;
    padding: 4px 10px;
    color: #666;
    width: 300px;
}

@media (min-width: 768px) {
    .navbar {
        font-size: 0.75em;
    }
    .navbar .nav-item {
        padding: 0;
    }
    nav .search input {
        width: 140px;
    }
}

@media (min-width: 992px) {
    .navbar {
        font-size: 0.8em;
    }
    .navbar .nav-item {
        padding-left: 5px;
        padding-right: 5px;
    }
}

@media (min-width: 1200px) {
    .navbar {
        font-size: 0.9em;
    }
    .navbar .nav-item {
        padding-left: 10px;
        padding-right: 10px;
    }
}


/***** End Navigation Menu  *****/

.section-container {
    background-color: #fff;
    padding-top: 30px;
    padding-bottom: 30px;
}

.page-container {
    background-color: #F3F9FC;
    padding-top: 30px;
    padding-bottom: 30px;
}

.article-container .article {
    width: 100%;
    background-color: #fff;
}

.article-container .article-content {
    padding: 20px;
}

.latestbooks-container,
.search-container {
    background-color: #F3F9FC;
}

.latestnews-container {
    background-color: #F7FBF5;
}

.more {
    font-weight: 700;
    font-size: 0.9em;
    color: #006C8A;
}

.more-lg {
    font-size: 1.1em;
}

.more a {
    color: #006C8A;
}

.paging-list a {
    padding-left: 10px;
}

.home-event-title {
    width: 100%;
    background-color: #F7FBF5;
    padding-top: 30px;
    margin-bottom: 20px;
}

.home-event-title a {
    color: #5EB130;
}

.home-blog-title {
    width: 100%;
    background-color: #F3F9FC;
    padding-top: 30px;
    margin-bottom: 20px;
}

.link-item-panel img,
.link-item-panel h3 {
    cursor: pointer;
}

.book-row {
    padding-left: 15px;
    padding-right: 15px;
    min-height: 200px;
}

.pad-content {
    padding: 15px;
}

.standard-content {
    background-color: #fff;
    padding: 15px;
}

.standard-col,
.book-col {
    background-color: #fff;
}

.book-col.info {
    position: relative;
    padding-top: 15px;
}

.book-col h3 {
    margin: 0;
}

.book-col h4 {
    margin: 0;
}

.book-col h5 {
    margin-bottom: 0;
}

.book-col p {
    font-size: 0.8em;
}

.latestbooks-container .book-col .more {
    position: absolute;
    bottom: 10px;
    right: 20px;
}

.book-stats .stat-title {
    font-weight: bold;
}


/***** 
* Main Carousel 
*****/

.main-carousel .carousel-indicators li {
    width: 15px;
    height: 15px;
    margin-right: 5px;
    margin-left: 5px;
}

.carousel-cover {
    width: 100%;
    height: 300px;
    background-position: center center;
    background-size: cover;
}

.carousel-foreground {
    /* align center vertically and horizontally */
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.carousel-caption {
    min-height: 300px;
    padding-top: 100px;
    top: 20%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    bottom: initial;
    width: 100%;
    color: #fff;
    font-weight: bold;
    font-size: 1.3em;
}

.carousel-caption h3 {
    margin-bottom: 0;
    color: #f4b300;
    font-weight: bold;
    font-size: 2em;
}

.carousel-caption h3 a {
    color: #f4b300;
}

@media (min-width: 576px) {
    .carousel-cover {
        height: 400px;
    }
}

@media (min-width: 768px) {
    .carousel-cover {
        height: 500px;
    }
}


/***** End Main Carousel *****/

.pagehero {
    background: #F3F9FC;
}

.pagehero img {
    display: block;
    width: 100%;
}

.artcile .pad {
    padding-left: 15%;
    padding-right: 15%;
}

.notchecked {
    border: 2px solid red;
}

.event-item {
    background-color: #fff;
}

.event-item h1 {
    text-align: left;
    font-weight: 600;
}

.event-item h3 {
    color: #006C8A;
    font-size: 1.2em;
}

.event-item h4 {
    color: #BDAF7F;
    font-size: 1.1em;
}

.event-item h5 {
    color: #BDAF7F;
}

.event-item .event-content {
    padding: 20px;
}

.genre-container {
    background-color: #fff;
}

.genres {
    padding: 20px;
    width: 100%;
}

.genres h3 {
    color: #ac9a5d;
    padding-top: 10px;
    margin: 0;
}

.genres h3 a {
    color: #ac9a5d;
}

.genres ul {
    padding: 5px 20px;
    margin: 0;
}

.genres ul li {
    font: 400 13px/120% "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #333;
    margin: 0;
    padding: 2px 0;
    list-style: none;
}

.genres ul li a {
    color: #006C8A;
}

.bio-pic {
    width: 100%;
}

.search-result-row {
    background-color: #fff;
    margin-bottom: 10px;
}

.search-result-row .col-text {
    padding-top: 10px;
    padding-bottom: 10px;
}


/****** Cookie Consent ******/
.cc_dialog.headline {
	/* Move to bottom of screen */
	position: fixed !important;
	bottom: 0 !important;
	top: auto !important;
}
/****** End Cookie Consent ******/


/****** Newsletter Banners ******/
.newsletter-container {
	background-color: #F3F9FC;
	color: #006C8A;
	font-weight: bold;
	cursor: pointer;
}

.newsletter-container ul {
	list-style-position: inside;
	padding: 0;
}

/****** Newsletter Banners ******/
