/*
Theme name: Grove Atlantic -- WordPress integration
Description: Custom Theme
*/

/*
  Source post-css styles are located in the postcss directory.
  The compiled bundle is in assets/bundle.css; The README.md
  file contains instructions how to get the compilation
  process up & running.

  If you need to make a quick fix, feel free to add CSS
  below this comment. It will override bundle.css styles.
*/

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
	font-family: sans-serif;
	/* 1 */
	-ms-text-size-adjust: 100%;
	/* 2 */
	-webkit-text-size-adjust: 100%;
	/* 2 */
}

/**
 * Remove default margin.
 */
body {
	margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
	display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
	display: inline-block;
	/* 1 */
	vertical-align: baseline;
	/* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
	display: none;
	height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
	display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
	outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
	border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
	font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
	font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
	background: #ff0;
	color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
	border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
	overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
	margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
	box-sizing: content-box;
	height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
	overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
	color: inherit;
	/* 1 */
	font: inherit;
	/* 2 */
	margin: 0;
	/* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
	overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
	text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	/* 2 */
	cursor: pointer;
	/* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
	cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
	line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	/* 1 */
	padding: 0;
	/* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
	-webkit-appearance: textfield;
	/* 1 */
	box-sizing: content-box;
	/* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
	border: 0;
	/* 1 */
	padding: 0;
	/* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
	overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
	font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

@font-face {
	font-family: 'icomoon';
	src: url("fonts/icomoon.eot?11w5gh");
	src: url("fonts/icomoon.eot?11w5gh#iefix") format("embedded-opentype"), url("fonts/icomoon.ttf?11w5gh") format("truetype"), url("fonts/icomoon.woff?11w5gh") format("woff"), url("fonts/icomoon.svg?11w5gh#icomoon") format("svg");
	font-weight: normal;
	font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: 'icomoon' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-facebook:before {
	content: "\ea90";
}

.icon-instagram:before {
	content: "\ea92";
}

.icon-twitter:before {
	content: "";
	background: url(images/../images/sprite/ico-x-@2-side-bar.svg) no-repeat 0 0;
	background-size: 100% 100%;
	width: 18px;
	height: 16px;
	display: inline-block;
	font-size: 0;
}

.icon-tumblr:before {
	content: "\eab9";
}

.social-network, .nav-wrapper .search-results ul, .main-hollder ul, .carusel-wrapper .pagination ul, .tabset, .author-carusel .slick-dots, .breadcrumbs, .author-list ul, .author-anhor-holder, .category-list, .related-books .books-list, .add-nav-wrapper ul, .logos-publishings, .footer-bottom ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.clearfix:after, dl:after, .widget:after, .search-form:after, .post-password-form p:after, .nav-opener:after {
	content: '';
	display: block;
	clear: both;
}

.ellipsis {
	white-space: nowrap;
	/* 1 */
	text-overflow: ellipsis;
	/* 2 */
	overflow: hidden;
}

@media (max-width: 1023px) {
	.triangle-down-tablet-hidden:after {
		display: none !important;
	}
}

@media (max-width: 767px) {
	.mobile-hidden {
		display: none !important;
	}
}

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

.text-left {
	text-align: left;
}

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

div.offset-top-18 {
	padding-top: 18px;
}

.columns-2 {
	-webkit-columns: 2;
	-moz-columns: 2;
	columns: 2;
	-webkit-column-rule-width: 547px;
	-moz-column-rule-width: 547px;
	column-rule-width: 547px;
	-webkit-column-gap: 70px;
	-moz-column-gap: 70px;
	column-gap: 70px;
}

@media (max-width: 1023px) {
	.columns-2 {
		-webkit-columns: 1;
		-moz-columns: 1;
		columns: 1;
		-webkit-column-rule-width: 100%;
		-moz-column-rule-width: 100%;
		column-rule-width: 100%;
		-webkit-column-gap: 0;
		-moz-column-gap: 0;
		column-gap: 0;
	}
}

@media (max-width: 767px) {
	.hidden-tablet-down {
		display: none !important;
	}
}

.cols-inline {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row wrap;
	flex-direction: row wrap;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	margin-bottom: 40px;
	font-size: 0;
}

@media (max-width: 1023px) {
	.cols-inline {
		display: block;
	}
}

.col-1of2 {
	width: 510px;
	padding-right: 20px;
}

.col-1of2 + .col-1of2 {
	padding: 0 0 0 20px;
}

@media (max-width: 1023px) {
	.col-1of2 {
		display: block;
		width: 100%;
		padding: 0;
	}

	.col-1of2 + .col-1of2 {
		padding: 0;
	}
}

html {
	box-sizing: border-box;
}

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

* {
	max-height: 1000000px;
}

body {
	color: #454441;
	background: #fff;
	font: 13px/1.5384 "adobe-caslon-pro", "Times New Roman", "Times", "Baskerville", "Georgia", serif;
	min-width: 320px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img {
	max-width: 100%;
	height: auto;
}

.gm-style img {
	max-width: none;
}

ul, ol, dl, p, h1, h2, h3, h4, h5, h6, address, form, table, blockquote, applet, embed, object, iframe, frameset {
	margin: 0 0 1.5384em;
}

blockquote {
	border-left: 4px solid #504f4d;
	padding-left: .5em;
	margin-left: 1.5384em;
}

th, td {
	border: 1px solid #504f4d;
	padding: .5em;
	text-align: left;
	vertical-align: top;
}

th {
	text-align: center;
	vertical-align: middle;
}

ul, ol {
	padding-left: 3em;
}

ul ul,
ul ol,
ol ul,
ol ol {
	padding-left: 3em;
	margin: 0;
}

ul {
	list-style-type: disc;
}

dl dt {
	float: left;
	clear: left;
	padding-right: .3em;
	font-weight: bold;
}

dl dd {
	overflow: hidden;
}

pre {
	max-width: 100%;
}

form,
fieldset {
	margin: 0;
	padding: 0;
	padding: 5px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background: #fff;
	border-style: none;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

input[type='text'],
input[type='tel'],
input[type='email'],
input[type='search'],
input[type='password'] {
	min-width: 50%;
}

input[type='text'],
input[type='tel'],
input[type='email'],
input[type='search'],
input[type='password'],
textarea,
.comment-form .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
	border: none;
	-webkit-appearance: none;
	-webkit-border-radius: 0;
	box-sizing: border-box;
	padding: 10px 9px;
	font: 400 16px/22px "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
}

input[type='text']:focus,
input[type='tel']:focus,
input[type='email']:focus,
input[type='search']:focus,
input[type='password']:focus,
textarea:focus {
	border-color: #07090f;
}

input[type='text']::-webkit-input-placeholder,
input[type='tel']::-webkit-input-placeholder,
input[type='email']::-webkit-input-placeholder,
input[type='search']::-webkit-input-placeholder,
input[type='password']::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #a5a39b;
}

input[type='text']::-moz-placeholder,
input[type='tel']::-moz-placeholder,
input[type='email']::-moz-placeholder,
input[type='search']::-moz-placeholder,
input[type='password']::-moz-placeholder,
textarea::-moz-placeholder {
	opacity: 1;
	color: #a5a39b;
}

input[type='text']:-moz-placeholder,
input[type='tel']:-moz-placeholder,
input[type='email']:-moz-placeholder,
input[type='search']:-moz-placeholder,
input[type='password']:-moz-placeholder,
textarea:-moz-placeholder {
	color: #a5a39b;
}

input[type='text']:-ms-input-placeholder,
input[type='tel']:-ms-input-placeholder,
input[type='email']:-ms-input-placeholder,
input[type='search']:-ms-input-placeholder,
input[type='password']:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: #a5a39b;
}

input[type='text'].placeholder,
input[type='tel'].placeholder,
input[type='email'].placeholder,
input[type='search'].placeholder,
input[type='password'].placeholder,
textarea.placeholder {
	color: #a5a39b;
}

select {
	-webkit-border-radius: 0;
}

textarea {
	resize: vertical;
	vertical-align: top;
}

button,
input[type='button'],
input[type='reset'],
input[type='file'],
input[type='submit'] {
	-webkit-appearance: none;
	-webkit-border-radius: 0;
	cursor: pointer;
	background: #07090f;
}

.widget {
	margin-bottom: 1.5384em;
}

.widget ul {
	padding-left: 2em;
}

.widget select {
	min-width: 150px;
}

.comment-form label {
	display: block;
	padding-bottom: 4px;
}

.comment-form textarea {
	overflow: auto;
	margin: 0;
	height: 120px;
	min-height: 120px;
}

.comment-form textarea,
.comment-form input[type='text'],
.newsletter .comment-form .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
	margin: 0 4px 0 0;
	width: 100%;
}

.comment-form input[type='submit'] {
	float: none;
}

.post-password-form label {
	display: block;
	margin-bottom: 4px;
}

.post-password-form input[type='password'] {
	margin: 0 4px 0 0;
	max-width: 300px;
	width: 100%;
}

.search-form {
	margin-bottom: 15px;
}

.search-form input {
	float: left;
}

.search-form input[type='search'] {
	margin: 0 4px 0 0;
	width: 150px;
}

.post-password-form input {
	float: left;
	height: 2em;
}

.post-password-form input[type='password'] {
	width: 150px;
}

.comment-form input[type='submit'],
.post-password-form input[type='submit'],
.search-form input[type='submit'] {
	color: #fff;
}

.commentlist {
	margin: 0 0 1.5384em;
}

.commentlist .edit-link {
	margin: 0;
}

.commentlist .avatar-holder {
	float: left;
	margin: 0 1.5384em 4px 0;
}

.commentlist-item .commentlist-item {
	padding: 0;
}

@media (min-width: 768px) {
	.commentlist-item .commentlist-item {
		padding: 0 0 0 2em;
	}
}

.comment,
.commentlist-holder {
	overflow: hidden;
}

.commentlist-item .commentlist-item,
.commentlist-item + .commentlist-item {
	padding-top: 1.5384em;
}

.widget_calendar #next {
	text-align: right;
}

.gallery-item dt {
	float: none;
	padding: 0;
}

.navigation,
.navigation-comments {
	position: relative;
	margin-bottom: 1.5384em;
	font: 700 15px "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
}

.navigation .screen-reader-text,
.navigation-comments .screen-reader-text {
	position: absolute;
	left: -99999px;
}

.navigation .page-numbers,
.navigation-comments .page-numbers {
	display: inline-block;
}

.navigation .page-numbers.current,
.navigation-comments .page-numbers.current {
	color: #fff;
}

.navigation .page-numbers:not(.prev):not(.next),
.navigation-comments .page-numbers:not(.prev):not(.next) {
	margin: 0 8px;
	color: #a5a39b;
}

.navigation .page-numbers:not(.prev):not(.next):not(.dots):hover,
.navigation-comments .page-numbers:not(.prev):not(.next):not(.dots):hover {
	color: white;
}

.navigation .page-numbers:not(.prev):not(.next).current,
.navigation-comments .page-numbers:not(.prev):not(.next).current {
	color: #fff;
}

.navigation .nav-links,
.navigation-comments .nav-links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.navigation .next, .navigation .prev,
.navigation-comments .next,
.navigation-comments .prev {
	overflow: hidden;
	text-indent: 101%;
	white-space: nowrap;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	position: relative;
	display: inline-block;
	text-decoration: none;
	border: 2px solid #a5a39b;
}

.navigation .next:before, .navigation .prev:before,
.navigation-comments .next:before,
.navigation-comments .prev:before {
	top: 50%;
	left: 50%;
	width: 6px;
	height: 6px;
	content: '';
	color: transparent;
	position: absolute;
	background: transparent;
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	border-top: 1px solid #d9d5cc;
	border-right: 1px solid #d9d5cc;
	-webkit-transform: translate(-50%, -50%) rotate(-135deg);
	transform: translate(-50%, -50%) rotate(-135deg);
}

.navigation .next:hover, .navigation .prev:hover,
.navigation-comments .next:hover,
.navigation-comments .prev:hover {
	opacity: 0.8;
}

.navigation .next:before,
.navigation-comments .next:before {
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
}

.navigation-single {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.navigation-single .next, .navigation-single .prev {
	height: 28px;
	letter-spacing: .03em;
	font: 700 13px "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
}

.navigation-single .next:hover, .navigation-single .prev:hover {
	opacity: 0.8;
}

.navigation-single .next a, .navigation-single .prev a {
	height: 100%;
	color: #fff;
	display: block;
	position: relative;
	padding: 5px 0 0 43px;
	text-transform: uppercase;
}

.navigation-single .next a:hover, .navigation-single .prev a:hover {
	color: #a5a39b;
}

.navigation-single .next a:before, .navigation-single .next a:after, .navigation-single .prev a:before, .navigation-single .prev a:after {
	content: '';
	position: absolute;
}

.navigation-single .next a:before, .navigation-single .prev a:before {
	top: 50%;
	left: 12px;
	width: 6px;
	height: 6px;
	color: transparent;
	background: transparent;
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	border-top: 1px solid #d9d5cc;
	border-right: 1px solid #d9d5cc;
	-webkit-transform: translateY(-50%) rotate(-135deg);
	transform: translateY(-50%) rotate(-135deg);
}

.navigation-single .next a:after, .navigation-single .prev a:after {
	top: 0;
	left: 0;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 2px solid #a5a39b;
}

.navigation-single .next a {
	padding: 5px 43px 0 0;
}

.navigation-single .next a:before, .navigation-single .next a:after {
	left: auto;
}

.navigation-single .next a:before {
	right: 12px;
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}

.navigation-single .next a:after {
	right: 0;
}

.wp-caption {
	max-width: 100%;
	clear: both;
	border: 1px solid #504f4d;
	padding: .4em;
	margin-bottom: 1.5384em;
}

.wp-caption img {
	margin: 0;
	vertical-align: top;
}

.wp-caption p {
	margin: .4em 0 0;
}

div.aligncenter {
	margin: 0 auto 1.5384em;
}

img.aligncenter {
	display: block;
	margin: 0 auto;
}

.alignleft {
	float: left;
	margin: 0 1.5384em 4px 0;
}

.alignright {
	float: right;
	margin: 0 0 4px 1.5384em;
}

.mejs-container {
	margin-bottom: 1.5384em;
}

.wp-caption-text,
.gallery,
.alignnone,
.gallery-caption,
.sticky,
.bypostauthor {
	height: auto;
}

@media (max-width: 1023px) {
	iframe {
		width: 100%;
	}
}

#wp-calendar tbody td {
	text-align: center;
}

#wp-calendar td,
#wp-calendar th {
	border: 1px solid #504f4d;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6,
.h {
	font-weight: 400;
	margin: 0 0 0.5em;
	color: inherit;
	font-family: "adobe-caslon-pro", "Times New Roman", "Times", "Baskerville", "Georgia", serif;
}

h1, .h1 {
	text-align: center;
	margin-bottom: 10px;
	color: #454441;
	font-size: 28px;
}

h2, .h2 {
	color: #8b8982;
	font-size: 16px;
}

h3, .h3 {
	font-size: 15px;
}

h4, .h4 {
	font-size: 14px;
}

h5, .h5 {
	font-size: 13px;
}

h6, .h6 {
	font-size: 12px;
}

p {
	margin: 0 0 1em;
}

a {
	text-decoration: none;
	color: #8b8982;
	-webkit-transition: color 0.2s linear;
	transition: color 0.2s linear;
}

a:not(.btn):hover, a:not(.btn):focus {
	color: #454441;
}

a:hover, a:focus {
	outline: none;
}

/* custom select styles */
.jcf-select {
	width: 100%;
	height: 31px;
	font-size: 15px;
	margin: 0 0 37px;
	text-align: left;
	max-width: 343px;
	background: #fff;
	color: #a5a39b;
	line-height: 37px;
	position: relative;
	vertical-align: top;
	display: inline-block;
	text-transform: uppercase;
	border: 2px solid #d6d6d6;
	font: 700 15px "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
}

.inner-page .jcf-select {
	height: 38px;
	margin-bottom: 0;
	background: transparent;
	border: 1px solid #767472;
}

.inner-page .jcf-select [class^="opt-level"] {
	height: 40px;
	padding-left: 18px;
	color: #514f4d;
	font: 14px "adobe-caslon-pro", "Times New Roman", "Times", "Baskerville", "Georgia", serif;
}

.inner-page .jcf-select [class^="opt-level"]:not(:first-child) {
	padding-top: 7px;
	border-top: 1px solid #f4f4f4;
}

.inner-page .jcf-select [class^="opt-level"]:first-child {
	height: 43px;
	padding-top: 11px;
}

.jcf-select select {
	top: 0;
	left: 0;
	z-index: 1;
	color: #a5a39b;
	font: 700 15px "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
}

.jcf-select .jcf-select-text {
	display: block;
	cursor: default;
	font-size: 13px;
	overflow: hidden;
	line-height: 26px;
	white-space: nowrap;
	margin: 0 35px 0 8px;
	text-overflow: ellipsis;
}

.inner-page .jcf-select .jcf-select-text {
	color: #fff;
	line-height: 35px;
	margin: 0 35px 0 21px;
}

.author-directory-inner .jcf-select .jcf-select-text {
	position: relative;
}

.author-directory-inner .jcf-select .jcf-select-text:before {
	margin-right: 5px;
	content: 'viewing:';
	text-transform: uppercase;
}

.jcf-select .jcf-select-opener {
	top: 7px;
	width: 9px;
	right: 13px;
	height: 9px;
	border-width: 2px;
	position: absolute;
	border-style: solid;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	border-color: transparent #acaaa3 #acaaa3 transparent;
}

.inner-page .jcf-select .jcf-select-opener {
	top: 11px;
	border-color: transparent #d6d6d6 #d6d6d6 transparent;
	-webkit-transition: top 0.2s linear, -webkit-transform 0.2s linear;
	transition: top 0.2s linear, -webkit-transform 0.2s linear;
	transition: transform 0.2s linear, top 0.2s linear;
	transition: transform 0.2s linear, top 0.2s linear, -webkit-transform 0.2s linear;
}

.jcf-select .jcf-select-drop {
	top: 100%;
	left: -1px;
	right: -1px;
	z-index: 9999;
	margin-top: 0;
	position: absolute;
}

.jcf-select .jcf-drop-flipped {
	top: auto;
	bottom: 100%;
}

.inner-page .jcf-select[class*="jcf-drop-active"] .jcf-select-opener {
	top: 17px;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

body > .jcf-select-drop {
	position: absolute;
	margin: -1px 0 0;
	z-index: 9999;
}

body > .jcf-select-drop.jcf-drop-flipped {
	margin: 1px 0 0;
}

.jcf-select-drop .jcf-select-drop-content {
	border: 2px solid #d6d6d6;
}

/* multiple select styles */
.jcf-list-box {
	margin: 0 15px;
	overflow: hidden;
	min-width: 200px;
	display: inline-block;
	border: 1px solid #b8c3c9;
}

/* select options styles */
.jcf-list {
	width: 100%;
	font-size: 12px;
	background: #fff;
	line-height: 14px;
	position: relative;
	vertical-align: top;
	display: inline-block;
}

.jcf-list .jcf-list-content {
	width: 100%;
	overflow: auto;
	vertical-align: top;
	display: inline-block;
}

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

.inner-page .jcf-list ul {
	height: 38px;
	margin-bottom: 0;
	color: #514f4d;
	background: transparent;
	border: 1px solid #767472;
	font: 14px "adobe-caslon-pro", "Times New Roman", "Times", "Baskerville", "Georgia", serif;
}

.jcf-list ul li {
	display: block;
	overflow: hidden;
}

.jcf-list ul li:not(:first-child) .jcf-option {
	padding-top: 15px;
	border-top: 1px solid #f4f4f4;
}

.jcf-list ul li:first-child .jcf-option {
	height: 43px;
	padding-top: 16px;
}

.jcf-list .jcf-overflow {
	overflow: auto;
}

.jcf-list .jcf-option {
	height: 40px;
	color: #656565;
	display: block;
	cursor: default;
	overflow: hidden;
	padding-left: 18px;
	white-space: nowrap;
}

.jcf-list .jcf-option.jcf-option-hideme {
	display: none;
}

.jcf-list .jcf-disabled {
	color: #aaa !important;
	background: #fff !important;
}

.jcf-list .jcf-optgroup-caption {
	color: #000;
	display: block;
	cursor: default;
	padding: 5px 9px;
	font-weight: bold;
	white-space: nowrap;
}

.jcf-select-drop .jcf-hover,
.jcf-list-box .jcf-selected {
	color: #fff;
	cursor: pointer;
	background: #514f4d;
}

.jcf-list .jcf-optgroup .jcf-option {
	padding-left: 30px;
}

/* custom scrollbars styles */
.jcf-scrollable-wrapper {
	box-sizing: content-box;
	position: relative;
}

.jcf-scrollbar-vertical {
	position: absolute;
	cursor: default;
	background: #e3e3e3;
	width: 14px;
	bottom: 0;
	right: 0;
	top: 0;
}

.jcf-scrollbar-vertical .jcf-scrollbar-dec,
.jcf-scrollbar-vertical .jcf-scrollbar-inc {
	background: #bbb;
	height: 14px;
	width: 14px;
	left: 0;
	top: 0;
}

.jcf-scrollbar-vertical .jcf-scrollbar-inc {
	top: auto;
	bottom: 0;
}

.jcf-scrollbar-vertical .jcf-scrollbar-handle {
	background: #888;
	height: 1px;
	width: 14px;
}

.jcf-scrollbar-horizontal {
	left: 0;
	top: auto;
	width: 1px;
	opacity: 1;
	right: auto;
	bottom: 6px;
	height: 2px;
	position: absolute;
	background: #d6d6d6;
	-webkit-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}

.jcf-scrollbar-horizontal .jcf-scrollbar-dec,
.jcf-scrollbar-horizontal .jcf-scrollbar-inc {
	width: 0;
	height: 0;
	display: none;
	background: #bbb;
	overflow: hidden;
	vertical-align: top;
}

.jcf-scrollbar-horizontal .jcf-scrollbar-inc {
	left: auto;
	right: 0;
}

.jcf-scrollbar-horizontal .jcf-scrollbar-slider {
	height: 10px;
	display: inline-block;
	position: absolute !important;
}

.jcf-scrollbar-horizontal .jcf-scrollbar-handle {
	height: 6px;
	position: absolute;
	background: #454441;
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
	bottom: calc(50% + 1px);
	-webkit-transition: -webkit-transform 0.2s ease-in-out;
	transition: -webkit-transform 0.2s ease-in-out;
	transition: transform 0.2s ease-in-out;
	transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

.jcf-scrollbar-horizontal .jcf-scrollbar-handle:hover {
	-webkit-transform: scaleY(1.667);
	transform: scaleY(1.667);
}

.jcf-scrollbar.jcf-inactive .jcf-scrollbar-handle {
	visibility: hidden;
}

.jcf-scrollbar.jcf-inactive .jcf-scrollbar-dec,
.jcf-scrollbar.jcf-inactive .jcf-scrollbar-inc {
	background: #e3e3e3;
}

/* common custom form elements styles */
.jcf-disabled {
	background: #d6d6d6 !important;
}

.resize-active * {
	-webkit-transition: none !important;
	transition: none !important;
}

#wrapper {
	overflow: hidden;
	position: relative;
	min-height: 100vh;
}

#wrapper:before {
	top: 0;
	left: 0;
	opacity: 0;
	width: 100%;
	content: '';
	height: 100%;
	position: absolute;
	background: rgba(0, 0, 0, 0.75);
}

@media (max-width: 767px) {
	.nav-active #wrapper:before {
		opacity: 1;
		z-index: 100;
	}
}

#wrapper img {
	vertical-align: top;
}

.container {
	margin: 0 auto;
	padding: 0 16px;
	max-width: 1140px;
}

@media (min-width: 768px) {
	.container {
		padding: 0 25px;
	}
}

#header .container, #footer .container, .promos .container, .inner-page .container {
	max-width: 1250px;
}

.container .container-subdirectory {
	max-width: 720px;
}

div.bg-snow, section.bg-snow, footer.bg-snow {
	background: #f5f2ee;
}

div.bg-snow.triangle-down:after, section.bg-snow.triangle-down:after, footer.bg-snow.triangle-down:after {
	border-color: #f5f2ee transparent transparent transparent;
}

div.bg-dark-grey, section.bg-dark-grey, footer.bg-dark-grey {
	background: #514f4d;
}

div.bg-dark-grey.triangle-down:after, section.bg-dark-grey.triangle-down:after, footer.bg-dark-grey.triangle-down:after {
	border-color: #514f4d transparent transparent transparent;
}

div.triangle-down, div.triangle-up, section.triangle-down, section.triangle-up, footer.triangle-down, footer.triangle-up {
	position: relative;
}

div.triangle-down:after, div.triangle-up:after, section.triangle-down:after, section.triangle-up:after, footer.triangle-down:after, footer.triangle-up:after {
	left: 50%;
	z-index: 1;
	content: '';
	position: absolute;
	border-style: solid;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	border-width: 21px 27px 0 27px;
	border-color: #fff transparent transparent transparent;
}

div.triangle-down:after, section.triangle-down:after, footer.triangle-down:after {
	bottom: -21px;
}

div.triangle-up:after, section.triangle-up:after, footer.triangle-up:after {
	top: 0;
}

.btn-holder {
	text-align: center;
	margin: 30px 0 20px 0;
}

.btn, input[type="submit"],
.newsletter .comment-form .gform_wrapper input:not([type=text]):not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
	color: #fff;
	min-width: 108px;
	border-width: 3px;
	border-style: solid;
	display: inline-block;
	padding: 10px 19px 8px;
	text-transform: uppercase;
	background: #07090f;
	border-color: #07090f;
	box-shadow: inset 0 0 0 2px #feea2b;
	font: 700 13px/18px "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	-webkit-transition: background 0.2s linear;
	transition: background 0.2s linear;
}

.btn:hover, .btn:focus, input[type="submit"]:hover, input[type="submit"]:focus {
	outline: none;
	background: #273355;
}

.btn.btn-yellow, input[type="submit"].btn-yellow {
	color: #07090f;
	background: #fedb34;
	border-color: #fedb34;
	box-shadow: inset 0 0 0 2px #be1316;
}

.btn.btn-yellow:hover, input[type="submit"].btn-yellow:hover {
	background: #e4bd01;
}

.btn.btn-gray, input[type="submit"].btn-gray,
.newsletter .comment-form input[type="submit"].button,
.newsletter .comment-form .gform_wrapper input:not([type=text]):not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
	background: #a5a39b;
	border-color: #a5a39b;
	box-shadow: inset 0 0 0 2px #f5f2ee;
}

.btn.btn-gray:hover, input[type="submit"].btn-gray:hover,
.newsletter .comment-form input[type="submit"].button:hover,
.newsletter .comment-form .gform_wrapper input:not([type=text]):not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]):hover {
	background: #8b8982;
}

.btn-back {
	overflow: hidden;
	text-indent: 101%;
	white-space: nowrap;
	padding: 0;
	width: 28px;
	height: 28px;
	position: relative;
	border-radius: 50%;
	display: inline-block;
	border: 2px solid #969593;
}

.btn-back:before {
	top: 50%;
	left: 50%;
	content: '';
	width: 6px;
	height: 6px;
	color: transparent;
	position: absolute;
	background: transparent;
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	border-top: 1px solid #d7d7d5;
	border-right: 1px solid #d7d7d5;
	-webkit-transform: translate(-50%, -50%) rotate(-135deg);
	transform: translate(-50%, -50%) rotate(-135deg);
}

.share {
	position: relative;
	display: inline-block;
	letter-spacing: .03em;
	text-transform: uppercase;
	font: 700 13px "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
}

.share:after {
	content: '+';
	font-size: 16px;
	margin-left: 5px;
}

@media (min-width: 768px) {
	.share:after {
		margin-left: 8px;
	}
}

.share:not(:hover) {
	color: #a5a39b;
}

.bg-stretch {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.bg-stretch img {
	max-width: inherit;
}

@media (min-width: 768px) {
	.hidden-tablet-up {
		display: none !important;
	}
}

@media (min-width: 1024px) {
	.hidden-desktop-up {
		display: none !important;
	}
}

@media (max-width: 767px) {
	.hidden-mobile {
		display: none !important;
	}
}

@media (max-width: 1023px) {
	.hidden-desktop-down {
		display: none !important;
	}
}

.divider {
	height: 20px;
	margin: 0 auto;
	position: relative;
}

.divider:before, .divider:after {
	top: 50%;
	height: 2px;
	content: '';
	position: absolute;
	background: #d6d6d6;
	width: calc(50% - 13px);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.divider:before {
	left: 0;
}

.divider:after {
	right: 0;
}

.divider span {
	top: 50%;
	left: 50%;
	width: 12px;
	height: 12px;
	position: absolute;
	display: inline-block;
	-webkit-transform-origin: 0% 0%;
	transform-origin: 0% 0%;
	border: 2px solid #d6d6d6;
	-webkit-transform: rotateZ(-45deg) translate(-50%, -50%);
	transform: rotateZ(-45deg) translate(-50%, -50%);
}

.divider.divider-small {
	width: 143px;
}

#header {
	z-index: 1040;
	position: relative;
}

@media (max-width: 767px) {
	#header {
		padding: 20px 0;
		background: #fff;
		position: relative !important;
		border-bottom: 2px solid #bfbfbf;
	}
}

@media (min-width: 768px) {
	#header {
		top: 0;
		width: 100%;
		background: #fff;
		margin-bottom: -60px;
		border-top: 36px solid #f5f2ee;
		-webkit-transition: margin-top 0.2s linear;
		transition: margin-top 0.2s linear;
	}
}

@media (min-width: 769px) {
	#header {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
	}

	#header + * {
		-webkit-transition: margin .2s linear;
		transition: margin .2s linear;
	}

	#header + *,
	#header + #main {
		margin-top: 181px;
	}

	#header.popup-active + *,
	#header.popup-active + #main {
		margin-top: 257px;
	}
}

@media (min-width: 768px) {
	#header.popup-active {
		margin-top: 76px;
	}
}

@media (min-width: 768px) {
	#header.popup-active .open {
		opacity: 0;
		visibility: hidden;
	}
}

@media (min-width: 768px) {
	#header.popup-active .close {
		opacity: 1;
		visibility: visible;
	}
}

#header.fixed-position {
	position: fixed;
	right: 0;
	z-index: 99999;
}

@media (min-width: 768px) {
	#header.fixed-position {
		top: -61px;
		width: 100%;
		margin: 0;
		border-top: none;
		box-shadow: 3px 4px 5px 0px rgba(0, 0, 0, 0.15);
	}

	#header.fixed-position.animate {
		-webkit-transform: translateY(61px);
		transform: translateY(61px);
		-webkit-transition: -webkit-transform .4s;
		transition: -webkit-transform .4s;
		transition: transform .4s;
		transition: transform .4s, -webkit-transform .4s;
	}
}

@media (min-width: 768px) {
	#header.fixed-position .header-holder {
		font-size: 0;
		padding: 9px 0 7px;
	}

	#header.fixed-position.popup-active .header-holder {
		font-size: 0;
		padding: 0 0 7px;
	}
}

@media (min-width: 768px) {
	#header.fixed-position .logo-header {
		margin-bottom: 0;
	}
}

@media (min-width: 768px) {
	#header.fixed-position .logo-header p {
		display: none;
	}
}

@media (min-width: 768px) {
	#header.fixed-position .logo {
		top: 12px;
		left: -4px;
		width: 45px;
		height: 38px;
		margin-bottom: 0;
		position: absolute;
	}
}

@media (min-width: 768px) {
	#header.fixed-position .logo:before {
		content: none;
	}
}

#header.fixed-position .logo:after {
	top: 0;
	left: 0;
	width: inherit;
	height: inherit;
	position: absolute;
	background: url("images/sprite-simple.png") no-repeat -255px 0;
}

@media (min-width: 768px) {
	#header.fixed-position .logo:after {
		content: '';
	}
}

@media (min-width: 768px) {
	#header.fixed-position .logo img {
		display: none;
	}
}

@media (min-width: 768px) {
	#header.fixed-position .main-nav {
		border-top: none;
	}
}

#header .logo-header {
	color: #a5a39b;
}

@media (max-width: 767px) {
	#header .logo-header {
		display: inline-block;
	}
}

@media (min-width: 768px) {
	#header .logo-header {
		font-size: 15px;
		text-align: center;
		margin-bottom: 10px;
	}
}

@media (min-width: 1024px) {
	#header .logo-header {
		margin-bottom: 7px;
	}
}

#header .logo-header p {
	margin-bottom: 0;
}

#header .logo {
	width: 228px;
}

@media (min-width: 768px) {
	#header .logo {
		width: 341px;
		margin-bottom: 6px;
	}
}

@media (min-width: 1024px) {
	#header .logo {
		margin-bottom: 7px;
	}
}

@media (max-width: 767px) {
	#header .logo:before {
		background-size: 228px;
	}
}

#header .social-network {
	left: 0;
	color: #a5a39b;
}

@media (max-width: 767px) {
	#header .social-network {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		border-top: 2px solid #d8d8d8;
	}
}

@media (min-width: 768px) {
	#header .social-network {
		top: -26px;
		position: absolute;
	}
}

#header .social-network li {
	display: inline-block;
}

@media (max-width: 767px) {
	#header .social-network li {
		width: 25%;
		text-align: center;
		padding: 17px 0 14px;
	}
}

@media (max-width: 767px) {
	#header .social-network li:not(:last-child) {
		border-right: 2px solid #d8d8d8;
	}
}

@media (min-width: 768px) {
	#header .social-network li:not(:last-child) {
		margin-right: 22px;
	}
}

#header .social-network li a {
	color: inherit;
	font-size: 18px;
}

@media (min-width: 768px) {
	#header .social-network li a {
		font-size: 18px;
	}
}

@media (max-width: 767px) {
	#header .social-network li a {
		font-size: 28px;
	}
}

#header .social-network a:hover {
	color: #8b8982;
}

@media (min-width: 768px) {
	.header-holder {
		z-index: 99998;
		padding: 32px 0 0;
		position: relative;
	}
}

.logo {
	position: relative;
	display: inline-block;
}

.logo:before {
	top: 0;
	left: 0;
	opacity: 0;
	width: 100%;
	content: '';
	height: 100%;
	position: absolute;
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	background: url("images/logo-hover.png") no-repeat;
	background-size: cover;
}

.logo:hover:before {
	opacity: 1;
}

.logo:hover img {
	opacity: 0;
}

.logo img {
	width: 100%;
	height: auto;
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
}

.nav-opener {
	width: 33px;
	height: 21px;
	float: right;
	position: relative;
	display: inline-block;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: -webkit-transform 0.2s ease-in-out;
	transition: -webkit-transform 0.2s ease-in-out;
	transition: transform 0.2s ease-in-out;
	transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

@media (min-width: 768px) {
	.nav-opener {
		display: none;
	}
}

.nav-active .nav-opener {
	-webkit-transform: rotate(0.0001deg);
	transform: rotate(0.0001deg);
}

.nav-opener span {
	width: 50%;
	opacity: 1;
	height: 3px;
	display: block;
	border-radius: 0;
	position: absolute;
	background: #a5a39b;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: opacity 0.2s ease-in-out, left 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out, left 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
	transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out, left 0.2s ease-in-out;
	transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out, left 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

.nav-active .nav-opener span {
	width: 63%;
}

.nav-opener span:nth-child(2n+1) {
	left: 0;
}

.nav-opener span:nth-child(2n) {
	left: 50%;
}

.nav-opener span:nth-child(1), .nav-opener span:nth-child(2) {
	top: 0;
}

.nav-opener span:nth-child(3), .nav-opener span:nth-child(4) {
	top: 9px;
}

.nav-opener span:nth-child(5), .nav-opener span:nth-child(6) {
	top: 18px;
}

.nav-active .nav-opener span:nth-child(1) {
	top: 2px;
	left: 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.nav-active .nav-opener span:nth-child(2) {
	top: 2px;
	left: calc(50% - 2px);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.nav-active .nav-opener span:nth-child(3) {
	top: 9px;
	left: -50%;
	opacity: 0;
}

.nav-active .nav-opener span:nth-child(4) {
	top: 9px;
	left: 100%;
	opacity: 0;
}

.nav-active .nav-opener span:nth-child(5) {
	left: 0;
	top: 16px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.nav-active .nav-opener span:nth-child(6) {
	top: 16px;
	left: calc(50% - 2px);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

@media (max-width: 767px) {
	.nav-wrapper {
		left: 0;
		opacity: 0;
		width: 100%;
		overflow: auto;
		background: #f5f2ee;
		position: absolute;
		visibility: hidden;
		top: calc(100% + 100px);
		max-height: calc(100vh - 61px);
		-webkit-transition: opacity 0.2s ease-in-out, top 0.2s ease-in-out;
		transition: opacity 0.2s ease-in-out, top 0.2s ease-in-out;
	}
}

.nav-active .nav-wrapper {
	opacity: 1;
	visibility: visible;
	top: calc(100% + 2px);
}

@media (max-width: 767px) {
	.nav-wrapper .nav-holder {
		overflow: hidden;
	}
}

.nav-wrapper .popup {
	display: block !important;
}

#footer .social-network li a {

}

.fixed-position.popup-active .nav-wrapper .popup {
	transition: all .5s ease;
	position: relative;
}

@media (min-width: 768px) {
	.nav-wrapper .popup {
		width: 100%;
		height: 76px;
		padding-top: 12px;
		position: absolute;
		background: #f6f2ef;
		bottom: calc(100% + 36px);
		border-bottom: 1px solid #d8d8d8;
	}

	.nav-wrapper .popup:before, .nav-wrapper .popup:after {
		top: 0;
		content: '';
		width: 999999px;
		position: absolute;
		background: inherit;
		border-bottom: inherit;
		height: calc(100% + 1px);
	}

	.nav-wrapper .popup:before {
		right: 100%;
	}

	.nav-wrapper .popup:after {
		left: 100%;
	}
}

.nav-wrapper .open, .nav-wrapper .close {
	right: 0;
	top: -26px;
	color: #a5a39b;
	position: absolute;
	text-transform: uppercase;
	font: 15px "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	font-weight: 700;
}

.fixed-position .nav-wrapper .open, .fixed-position .nav-wrapper .close {
	bottom: 20px;
	top: auto;
}

@media (max-width: 767px) {
	.nav-wrapper .open, .nav-wrapper .close {
		display: none;
	}
}

.nav-wrapper .open .icon-search, .nav-wrapper .close .icon-search {
	width: 13px;
	height: 13px;
	position: relative;
	display: inline-block;
}

.nav-wrapper .open .icon-search {
	margin-left: 10px;
	border-radius: 50%;
	border: 2px solid #a5a39b;
}

.nav-wrapper .open .icon-search:before {
	width: 3px;
	right: -1px;
	height: 5px;
	bottom: -4px;
	content: '';
	position: absolute;
	background: #a5a39b;
	-webkit-transform-origin: 100% 0;
	transform-origin: 100% 0;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.nav-wrapper .close {
	opacity: 0;
	z-index: 2;
	visibility: hidden;
}

.nav-wrapper .close .icon-search {
	margin-left: 10px;
}

.nav-wrapper .close .icon-search:before, .nav-wrapper .close .icon-search:after {
	width: 2px;
	content: '';
	position: absolute;
	background: #a5a39b;
	height: calc(100% + 2px);
}

.nav-wrapper .close .icon-search:before {
	left: 6px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.nav-wrapper .close .icon-search:after {
	right: 5px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.nav-wrapper .search-form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 0;
	position: relative;
	background: #f6f2ef;
	padding: 9px 5px 10px;
	overflow: visible;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media (min-width: 768px) {
	.nav-wrapper .search-form {
		width: 100%;
		margin: 0 auto;
		max-width: 798px;
		background: #fff;
		padding: 5px 7px 5px 10px;
	}
}

@media (max-width: 767px) {
	.nav-wrapper .search-form .submit-holder {
		width: 44px;
		position: relative;
	}
}

@media (max-width: 767px) {
	.nav-wrapper .search-form .submit-holder:hover:before {
		border-color: #2c2c2c;
	}
}

@media (max-width: 767px) {
	.nav-wrapper .search-form .submit-holder:hover:after {
		background: #2c2c2c;
	}
}

.nav-wrapper .search-form .submit-holder:before, .nav-wrapper .search-form .submit-holder:after {
	position: absolute;
}

@media (max-width: 767px) {
	.nav-wrapper .search-form .submit-holder:before, .nav-wrapper .search-form .submit-holder:after {
		content: '';
	}
}

.nav-wrapper .search-form .submit-holder:before {
	top: 13px;
	left: 9px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 2px solid #a5a39b;
	-webkit-transition: border-color 0.2s linear;
	transition: border-color 0.2s linear;
}

.nav-wrapper .search-form .submit-holder:after {
	width: 3px;
	right: 21px;
	height: 7px;
	bottom: 10px;
	background: #a5a39b;
	-webkit-transform-origin: 100% 0;
	transform-origin: 100% 0;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: background 0.2s linear;
	transition: background 0.2s linear;
}

.nav-wrapper .search-form input {
	float: none;
}

@media (max-width: 767px) {
	.nav-wrapper .search-form input[type='submit'] {
		overflow: hidden;
		text-indent: 101%;
		white-space: nowrap;
		z-index: 1;
		padding: 0;
		height: 100%;
		display: block;
		border-width: 0;
		box-shadow: none;
		background: none;
		position: relative;
	}
}

@media (min-width: 768px) {
	.nav-wrapper .search-form input[type='submit'] {
		min-width: 117px;
		padding-top: 8px;
		padding-bottom: 9px;
	}
}

.nav-wrapper .search-form input[type='search'] {
	color: #000;
	width: calc(100% - 121px);
	background: transparent;
	font: 400 16px/22px "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
}

.nav-wrapper .search-form input[type='search']::-webkit-input-placeholder {
	color: #a5a39b;
}

.nav-wrapper .search-form input[type='search']::-moz-placeholder {
	opacity: 1;
	color: #a5a39b;
}

.nav-wrapper .search-form input[type='search']:-moz-placeholder {
	color: #a5a39b;
}

.nav-wrapper .search-form input[type='search']:-ms-input-placeholder {
	color: #a5a39b;
}

.nav-wrapper .search-form input[type='search'].placeholder {
	color: #a5a39b;
}

.nav-wrapper .search-results {
	left: 0;
	z-index: 1;
	opacity: 0;
	width: 100%;
	display: none;
	position: absolute;
	visibility: hidden;
	background: #f6f2ef;
	padding: 0 17px 30px;
	top: calc(100% + 3px);
}

.nav-wrapper .search-results.active {
	display: block;
	opacity: 1;
	visibility: visible;
	z-index: 9999;
}

@media (min-width: 768px) {
	.nav-wrapper .search-results {
		padding: 8px 0 11px;
		top: calc(100% + 12px);
	}
}

.nav-wrapper .search-results:before, .nav-wrapper .search-results:after {
	position: absolute;
}

@media (min-width: 768px) {
	.nav-wrapper .search-results:before, .nav-wrapper .search-results:after {
		top: 0;
		content: '';
		height: 100%;
		width: 999999px;
		background: inherit;
	}
}

.nav-wrapper .search-results:before {
	right: 100%;
}

@media (max-width: 767px) {
	.nav-wrapper .search-results:after {
		left: 0;
		top: 100%;
		width: 100%;
		content: '';
		height: 9999999px;
		background: rgba(0, 0, 0, 0.41);
	}
}

@media (min-width: 768px) {
	.nav-wrapper .search-results:after {
		left: 100%;
	}
}

.search-results-active .nav-wrapper .search-results {
	opacity: 1;
	display: block;
	visibility: visible;
}

.nav-wrapper .search-results ul {
	margin-bottom: 31px;
}

@media (min-width: 768px) {
	.nav-wrapper .search-results ul {
		margin-bottom: 14px;
	}
}

.nav-wrapper .search-results li {
	height: 108px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-bottom: 1px solid #d8d7d7;
}

.nav-wrapper .search-results li:before, .nav-wrapper .search-results li:after {
	z-index: 1;
	height: 1px;
	content: '';
	bottom: -1px;
	width: 999999px;
	position: absolute;
	background: #d8d7d7;
}

.nav-wrapper .search-results li:before {
	right: 100%;
}

.nav-wrapper .search-results li:after {
	left: 100%;
}

@media (min-width: 768px) {
	.nav-wrapper .search-results li {
		height: 79px;
	}
}

.nav-wrapper .search-results .cover {
	width: 52px;
	height: auto;
	margin-right: 10px;
}

.nav-wrapper .search-results .cover img {
	width: auto;
}

@media (max-width: 767px) {
	.nav-wrapper .search-results .btn {
		width: 100%;
		text-align: center;
	}
}

@media (min-width: 768px) {
	.nav-wrapper .search-results .btn {
		min-width: 157px;
	}
}

.nav-wrapper .search-results a:not(.btn) {
	color: #8b8982;
	display: block;
}

.nav-wrapper .search-results a:not(.btn) span {
	display: inline-block;
	border-bottom: 1px dotted transparent;
}

.nav-wrapper .search-results a:not(.btn):hover span {
	border-bottom: 1px dotted #8b8982;
}

.nav-wrapper .search-results .title {
	font-size: 16px;
	line-height: 19px;
	margin-bottom: 5px;
}

@media (min-width: 1024px) {
	.nav-wrapper .search-results .title {
		margin-bottom: 4px;
	}
}

.nav-wrapper .search-results .autor {
	font-size: 13px;
}

.nav-wrapper .search-results .autor:before {
	content: 'by';
	margin-right: 5px;
	font-style: italic;
	color: #454441;
	font-family: "adobe-caslon-pro", "Times New Roman", "Times", "Baskerville", "Georgia", serif;
}

.nav-wrapper .search-results .find-autor .cover {
	overflow: hidden;
	border-radius: 50%;
}

@media (min-width: 768px) {
	.main-hollder {
		padding: 0;
		max-width: 570px;
		margin: 0 auto;
	}
}

@media (min-width: 1024px) {
	.main-hollder {
		padding: 0 26.25%;
		max-width: none;
		margin: 0;
	}
}

.main-nav {
	font-size: 17px;
	font-weight: 700;
	font-family: "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
}

@media (min-width: 768px) {
	.main-nav {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		font-size: 15px;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		border-top: 2px solid #d8d8d8;
	}
}

.main-nav .submenu {
	position: relative;
}

.main-nav .submenu:before {
	top: 41px;
	right: 26px;
	width: 15px;
	content: '';
	height: 15px;
	position: absolute;
	border-width: 2px;
	border-style: solid;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: -webkit-transform 0.2s linear;
	transition: -webkit-transform 0.2s linear;
	transition: transform 0.2s linear;
	transition: transform 0.2s linear, -webkit-transform 0.2s linear;
	border-color: transparent #aca9a3 #aca9a3 transparent;
}

@media (min-width: 768px) {
	.main-nav .submenu:before {
		top: 14px;
		width: 9px;
		height: 9px;
		right: -15px;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		border-color: transparent #d6d6d6 #d6d6d6 transparent;
	}
}

@media (min-width: 768px) {
	.main-nav .submenu.several .submenu-holder {
		-webkit-transform: translateX(-22%);
		transform: translateX(-22%);
	}
}

@media (min-width: 1024px) {
	.main-nav .submenu.several .submenu-holder {
		-webkit-transform: translateX(-22%);
		transform: translateX(-22%);
	}
}

@media (min-width: 768px) {
	.main-nav .submenu.several .submenu-holder ul {
		margin-bottom: 13px;
	}
}

@media (max-width: 767px) {
	.main-nav .submenu.hover:before {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
}

@media (max-width: 767px) {
	.main-nav > li {
		border-top: 2px solid #d8d8d8;
	}
}

@media (min-width: 768px) {
	.main-nav > li {
		margin: 0 23px;
		position: relative;
	}
}

@media only screen and (max-width: 840px) and (min-width: 768px)  {

	.fixed-position .main-nav > li {
		margin: 0 14px;
	}
}

.main-nav > li.hover > .submenu-holder {
	visibility: visible;
}

@media (max-width: 767px) {
	.main-nav > li.hover > .submenu-holder {
		opacity: 1;
		height: auto;
	}
}

@media (min-width: 768px) {
	.main-nav > li.hover > .submenu-holder {
		top: 100%;
		opacity: 1;
	}
}

@media (min-width: 768px) {
	.main-nav > li.active > a span, .main-nav > li.hover > a span {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}
}

.main-nav > li.active > a span:before, .main-nav > li.hover > a span:before {
	opacity: 1;
}

.main-nav > li.active:after {
	left: 0;
	width: 100%;
	height: 2px;
	bottom: 9px;
	content: '';
	position: absolute;
	background: #a5a39b;
}

.main-nav .submenu-holder div > a > span,
.main-nav > li > a > span {
	text-transform: uppercase;
}

@media (max-width: 767px) {
	.main-nav > li.active:after {
		content: none;
	}
}

.main-nav > li.active > a {
	color: #a5a39b;
}

.main-nav > li > a {
	display: block;
	overflow: hidden;
}

@media (max-width: 767px) {
	.main-nav > li > a {
		display: block;
		padding: 25px 5px 16px 15px;
	}
}

.main-nav > li > a span {
	display: block;
	padding: 9px 0 13px;
	position: relative;
	-webkit-transition: -webkit-transform 0.2s linear;
	transition: -webkit-transform 0.2s linear;
	transition: transform 0.2s linear;
	transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}

.main-nav > li > a span:before {
	top: 100%;
	opacity: 0;
	padding: inherit;
	position: absolute;
	-webkit-transition: inherit;
	transition: inherit;
	content: attr(data-hover);
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
}

@media (max-width: 767px) {
	.main-nav > li > a span:before {
		content: none;
	}
}

.main-nav > li .submenu-holder {
	height: 0;
	opacity: 0;
	visibility: hidden;
}

@media (max-width: 767px) {
	.main-nav > li .submenu-holder {
		top: -13px;
		position: relative;
		padding: 0 0 0 16px;
		-webkit-transition: opacity 0.2s linear;
		transition: opacity 0.2s linear;
	}
}

@media (min-width: 768px) {
	.main-nav > li .submenu-holder {
		height: auto;
		position: absolute;
		visibility: hidden;
		white-space: nowrap;
		top: calc(100% + 30px);
		-webkit-transition: top 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
		transition: top 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.main-nav > li .submenu-holder {
		font-size: 12px;
	}
}

.main-nav > li .submenu-holder:before, .main-nav > li .submenu-holder:after {
	z-index: -1;
	height: 100%;
	width: 999999px;
	background: #f5f2ee;
	position: absolute;
	border-top: 2px solid #d8d8d8;
}

@media (min-width: 768px) {
	.main-nav > li .submenu-holder:before, .main-nav > li .submenu-holder:after {
		content: '';
	}
}

.main-nav > li .submenu-holder:before {
	right: 0;
}

.main-nav > li .submenu-holder:after {
	left: 0;
}

.main-nav > li .submenu-holder > div {
	white-space: normal;
}

@media (min-width: 768px) {
	.main-nav > li .submenu-holder > div {
		width: 170px;
		padding: 23px 0 24px;
		display: inline-block;
	}
}

@media (min-width: 1024px) {
	.main-nav > li .submenu-holder > div {
		width: 208px;
	}
}

@media (min-width: 768px) {
	.main-nav > li .submenu-holder > div:not(:first-child) {
		margin-left: 18px;
	}
}

.main-nav > li .submenu-holder a {
	color: #8b8982;
}

.main-nav > li .submenu-holder a:hover {
	color: #454441;
}

.main-nav > li .submenu-holder a:hover span {
	line-height: 13px;
	display: inline-block;
	border-bottom: 1px dotted;
}

@media (max-width: 767px) {
	.main-nav ul {
		margin-bottom: 22px;
	}
}

@media (min-width: 768px) {
	.main-nav ul {
		font-weight: 400;
		font-family: "adobe-caslon-pro", "Times New Roman", "Times", "Baskerville", "Georgia", serif;
	}
}

@media (min-width: 768px) {
	.main-nav ul li {
		padding: 7px 0 5px;
		border-bottom: 1px solid #e6e5e3;
	}
}

@media (max-width: 767px) {
	.main-nav ul li:not(:last-child) {
		margin-bottom: 19px;
	}
}

@media (min-width: 768px) {
	.main-nav ul li:first-child {
		border-top: 1px solid #e6e5e3;
	}
}

.main-nav ul a {
	font-size: 18px;
}

@media (max-width: 767px) {
	.main-nav ul a {
		font-weight: 400;
		font-family: "adobe-caslon-pro", "Times New Roman", "Times", "Baskerville", "Georgia", serif;
	}
}

@media (min-width: 768px) {
	.main-nav ul a {
		font-size: 16px;
	}
}

.main-nav a {
	color: #8b8982;
}

@media (min-width: 768px) {
	.main-nav a {
		color: #2c2c2c;
	}
}

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

.main-nav .title {
	color: #8b8982;
	margin: 0 0 7px;
	letter-spacing: .03em;
	text-transform: uppercase;
	font: 900 13px/26px "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
}

@media (min-width: 768px) {
	.main-nav .title {
		display: block;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.main-nav .title {
		font-size: 12px;
	}
}

.view-all {
	color: #8b8982;
	font-size: 13px;
	text-transform: uppercase;
}

@media (min-width: 768px) and (max-width: 1023px) {
	.view-all {
		font-size: 12px;
	}
}

.view-all .plus:after {
	content: '+';
	font-size: 15px;
	margin-left: 5px;
}

.view-holder {
	text-align: center;
	font: 900 15px/37px "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
}

.view-holder a {
	padding: 0 22px;
	background: none;
	color: #a5a39b;
	position: relative;
	display: inline-block;
	border: 2px solid transparent;
	-webkit-transition: background 0.1s linear, border 0.1s linear;
	transition: background 0.1s linear, border 0.1s linear;
}

.view-holder a:hover {
	background: #fff;
	border: 2px solid #d6d6d6;
	-webkit-transition: background 0.1s linear 0.1s, border 0.1s linear 0.1s;
	transition: background 0.1s linear 0.1s, border 0.1s linear 0.1s;
}

.view-holder a:hover .text:before {
	right: calc(100% + 30px);
}

.view-holder a:hover .text:after {
	left: calc(100% + 30px);
}

.view-holder a:hover .text span {
	opacity: 1;
	-webkit-transition: opacity 0.02s linear 0.18s;
	transition: opacity 0.02s linear 0.18s;
}

.view-holder a:hover .square {
	opacity: 0;
}

.view-holder a .square {
	top: 50%;
	left: 50%;
	width: 12px;
	height: 12px;
	background: #fff;
	position: absolute;
	display: inline-block;
	-webkit-transform-origin: 0% 0%;
	transform-origin: 0% 0%;
	border: 2px solid #d6d6d6;
	-webkit-transform: rotateZ(-45deg) translate(-50%, -50%);
	transform: rotateZ(-45deg) translate(-50%, -50%);
	-webkit-transition: opacity 0.1s linear;
	transition: opacity 0.1s linear;
}

.view-holder a .text {
	z-index: 1;
	position: relative;
}

.view-holder a .text:before, .view-holder a .text:after {
	top: 50%;
	content: '';
	height: 2px;
	width: 59px;
	position: absolute;
	background: #d6d6d6;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.view-holder a .text:before {
	right: 57%;
	-webkit-transition: right 0.1s linear;
	transition: right 0.1s linear;
}

.view-holder a .text:after {
	left: 57%;
	-webkit-transition: left 0.1s linear;
	transition: left 0.1s linear;
}

.view-holder a .text span {
	opacity: 0;
	display: block;
	-webkit-transition: opacity 0.02s linear;
	transition: opacity 0.02s linear;
}

@media (min-width: 768px) {
	#main {
		margin-top: 60px;
	}
}

@media (min-width: 768px) {
	.inner-page #main {
		margin-top: 73px;
	}
}

#main, #footer {
	position: relative;
}

.carusel-wrapper {
	position: relative;
}

.carusel-wrapper:before, .carusel-wrapper:after {
	top: 0;
	content: '';
	height: 100%;
	/*width: 9999999px;*/
	position: absolute;
	background: #d2232a;
}

.carusel-wrapper:before {
	right: 100%;
}

.carusel-wrapper:after {
	left: 100%;
}

.carusel-wrapper .container {
	padding: 0;
	height: 100%;
	max-width: 1700px;
}

.carusel-wrapper .carousel {
	position: relative;
}

.carusel-wrapper .carousel .mask {
	z-index: 0;
	width: 100%;
	overflow: hidden;
	position: relative;
}

@media (min-width: 768px) {
	.carusel-wrapper .carousel .mask {
		height: 450px;
	}
}

@media (min-width: 1024px) {
	.carusel-wrapper .carousel .mask {
		height: 450px;
	}
}

@media (max-width: 767px) {
	.carusel-wrapper .carousel .slideset {
		/*width: 9999999px;*/
	}
}

.carusel-wrapper .carousel .slide {
	overflow: hidden;
}

@media (max-width: 767px) {
	.carusel-wrapper .carousel .slide {
		float: left;
	}
}

@media (min-width: 768px) {
	.carusel-wrapper .carousel .slide {
		height: 450px !important;
	}
}

@media (min-width: 1024px) {
	.carusel-wrapper .carousel .slide {
		height: 450px !important;
	}
}

.carusel-wrapper .carousel .bg-stretch {
	width: 100%;
	display: block;
}

@media (min-width: 768px) {
	.carusel-wrapper .carousel .bg-stretch {
		left: 50%;
		width: 1500px;
		height: 450px;
		position: relative;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}
}

.carusel-wrapper .carousel .bg-stretch img {
	margin: 0 !important;
	width: 100% !important;
	height: auto !important;
}

@media (min-width: 768px) {
	.carusel-wrapper .carousel .bg-stretch img {
		width: 1500px !important;
		height: 450px !important;
	}
}

.carusel-wrapper .pagination {
	z-index: 10;
	position: absolute;
}

@media (max-width: 767px) {
	.carusel-wrapper .pagination {
		width: 100%;
		bottom: 60px;
		text-align: center;
	}
}

@media (min-width: 768px) {
	.carusel-wrapper .pagination {
		top: 50.35%;
		left: 12px;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.carusel-wrapper .pagination {
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}
}

@media (min-width: 1024px) {
	.carusel-wrapper .pagination {
		top: 50.4%;
		left: 25px;
		transform: translateY(-50%);
	}
}

@media (min-width: 1090px) {
	.carusel-wrapper .pagination {
		left: 50%;
		-webkit-transform: translateX(-520px);
		transform: translateX(-520px);
	}
}

@media (min-width: 1250px) {
	.carusel-wrapper .pagination {
		-webkit-transform: translateX(-545px);
		transform: translate(-545px, -50%);
	}
}

.carusel-wrapper .pagination li {
	line-height: 0;
	margin: 0 7px;
}

@media (max-width: 767px) {
	.carusel-wrapper .pagination li {
		display: inline-block;
	}
}

@media (min-width: 768px) {
	.carusel-wrapper .pagination li {
		margin: 12px 0;
	}
}

.carusel-wrapper .pagination li.slick-active button:before,
.carusel-wrapper .pagination li.active a:before {
	opacity: 1;
}

.carusel-wrapper .pagination button,
.carusel-wrapper .pagination a {
	overflow: hidden;
	text-indent: 101%;
	white-space: nowrap;
	width: 22px;
	height: 22px;
	position: relative;
	border-radius: 50%;
	display: inline-block;
	border: 2px solid rgba(255, 255, 255, 0.9);
}

.carusel-wrapper .pagination button {
	background: transparent;
}

.carusel-wrapper .pagination button:before,
.carusel-wrapper .pagination a:before {
	top: 50%;
	left: 50%;
	width: 8px;
	opacity: 0;
	height: 8px;
	content: '';
	position: absolute;
	background: #fff;
	border-radius: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
}

@media (max-width: 767px) {
	.whats-new {
		padding-bottom: 4px;
	}
}

@media (min-width: 1024px) {
	.whats-new {
		padding-bottom: 0;
	}
}

.whats-new .view-holder {
	margin-bottom: 21px;
}

@media (min-width: 1024px) {
	.whats-new .view-holder {
		margin-bottom: 13px;
	}
}

.whats-new-holder {
	top: -37px;
	padding: 21px 0 0;
	position: relative;
	background: inherit;
}
.home.btn-holder {
    margin: -30px 0 0 0;
    padding: 0 0 30px;
}
@media (min-width: 768px) {
	.whats-new-holder {
		top: -61px;
		padding-top: 29px;
	}
}

@media (min-width: 1024px) {
	.whats-new-holder {
		top: -57px;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.whats-new-holder .tab-content {
		margin-bottom: 25px;
	}
}

.nav-select {
	cursor: pointer;
	font-size: 15px;
	max-width: 343px;
	color: #a5a39b;
	line-height: 37px;
	position: relative;
	left: -1px !important;
	display: inline-block;
	text-transform: uppercase;
	border: 2px solid #d6d6d6;
	width: calc(100% + 2px) !important;
}

@media (min-width: 1024px) {
	.nav-select {
		display: none;
	}
}

.nav-select:before {
	top: 10px;
	width: 9px;
	right: 15px;
	height: 9px;
	content: '';
	border-width: 9px;
	position: absolute;
	border-style: solid;
	border-color: #acaaa3 #acaaa3 transparent transparent;
}

.inner-page .nav-select {
	background: #fff;
}

.select-holder {
	display: block;
	text-align: center;
}

@media (min-width: 1024px) {
	.select-holder {
		display: none;
	}
}

@media (min-width: 768px) {
	.author-directory-inner .select-holder {
		display: none;
	}
}

.tabset {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-weight: 700;
	margin-bottom: 20px;
	letter-spacing: .01em;
	text-transform: uppercase;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	font-family: "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
}

@media (max-width: 1023px) {
	.tabset {
		display: none;
	}
}

@media (min-width: 1250px) {
	.tabset {
		padding: 0 74px;
	}
}

@media (min-width: 768px) {
	.author-directory-inner .tabset {
		display: none;
	}
}

.tabset .active a, .tabset a:hover {
	color: #a5a39b;
}

.tabset .active {
	background: #fff;
	position: relative;
	border-color: #a5a39b;
}

.tabset .active:before, .tabset .active:after {
	left: 50%;
	top: 100%;
	content: '';
	position: absolute;
	border-style: solid;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.tabset .active:before {
	border-width: 8px 8px 0 8px;
	border-color: #a5a39b transparent transparent transparent;
}

.tabset .active:after {
	border-width: 6px 6px 0 6px;
	border-color: #fff transparent transparent transparent;
}

@media (min-width: 768px) {
	.tabset .active span {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}
}

.tabset .active span:before {
	opacity: 1;
}

.tabset li {
	border: 2px solid transparent;
}

.tabset a {
	display: block;
	overflow: hidden;
	color: #454441;
}

.tabset span {
	display: block;
	position: relative;
	white-space: nowrap;
	padding: 3px 12px 4px;
	-webkit-transition: -webkit-transform 0.2s linear;
	transition: -webkit-transform 0.2s linear;
	transition: transform 0.2s linear;
	transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}

.tabset span:before {
	left: 0;
	top: 100%;
	opacity: 0;
	width: 100%;
	padding: inherit;
	position: absolute;
	-webkit-transition: inherit;
	transition: inherit;
	content: attr(data-hover);
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
}

@media (max-width: 767px) {
	.tabset span:before {
		content: none;
	}
}

.tab-content {
	position: relative;
}

@media (max-width: 767px) {
	.tab-content {
		margin-right: -16px;
	}
}

@media (min-width: 1024px) {
	.tab-content > div {
		max-width: 1090px;
	}
}

.tab-content > div:hover .btn-prev, .tab-content > div:hover .btn-next {
	opacity: 1;
}

.tab-content > div:hover .jcf-scrollbar-horizontal {
	opacity: 1;
}

.tab-content > div:not(.tabs-group).js-tab-hidden {
	width: 100%;
	top: -9999px !important;
	left: -9999px !important;
	display: block !important;
	position: absolute !important;
}

.tab-content > div.tabs-group {
	max-width: 1200px;
}

@media (max-width: 767px) {
	.tab-content > div.tabs-group.js-tab-hidden {
		width: 100%;
		top: -9999px !important;
		left: -9999px !important;
		display: block !important;
		position: absolute !important;
	}
}

.tab-content .btn-prev, .tab-content .btn-next {
	overflow: hidden;
	text-indent: 101%;
	white-space: nowrap;
	top: 37%;
	padding: 0;
	opacity: 0;
	width: 24px;
	content: '';
	height: 24px;
	color: #07090f;
	border-width: 2px;
	position: absolute;
	border-style: solid;
	-webkit-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}

.tab-content .btn-prev {
	left: -48px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	border-color: #b2b1af transparent transparent #b2b1af;
}

.tab-content .btn-next {
	right: -48px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	border-color: #b2b1af #b2b1af transparent transparent;
}

@media (max-width: 767px) {
	.tab-content .jcf-scrollbar-horizontal {
		max-width: calc(100% - 16px);
		margin-right: 16px;
	}
}

.tab-mask {
	padding-bottom: 20px;
}

@media (min-width: 1024px) {
	.tab-mask {
		padding-bottom: 32px;
	}
}

.tab-mask .tab-slideset {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.tab-mask .tab-slide {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	cursor: pointer;
	max-width: 246px;
}

.tab-mask .tab-slide:hover time {
	opacity: 1;
}

.tab-mask .tab-slide:hover .book-info {
	background: #fff;
}

.tab-mask .tab-slide:not(:last-child) {
	margin-right: 42px;
}

@media (min-width: 1024px) {
	.tab-mask .tab-slide:not(:last-child) {
		margin-right: 35px;
	}
}

.tab-mask .book-info {
	-webkit-transition: background 0.2s ease-in-out;
	transition: background 0.2s ease-in-out;
}

.book-info .select-holder {
	display: none;
}

.book-info {
	background: none;
	text-align: center;
	padding: 17px 20px 20px;
}

.book-info a {
	display: block;
}

.book-info a:not(:hover) {
	color: #8b8982;
}

.book-info .title {
	font-size: 16px;
	line-height: 19px;
	margin-bottom: 5px;
}

@media (min-width: 1024px) {
	.book-info .title {
		margin-bottom: 4px;
	}
}

.book-info .autor {
	font-size: 13px;
}

.book-info .autor:before {
	content: 'by';
	color: inherit;
	margin-right: 5px;
	font-style: italic;
	font-family: "adobe-caslon-pro", "Times New Roman", "Times", "Baskerville", "Georgia", serif;
	-webkit-transition: color 0.2s linear;
	transition: color 0.2s linear;
}

.cover {
	width: 246px;
	height: 368px;
	position: relative;
}

.cover img {
	width: 100%;
	height: 100%;
}

.cover time {
	left: 50%;
	bottom: 0;
	opacity: 0;
	width: 85%;
	color: #a5a39b;
	padding-top: 15px;
	position: absolute;
	text-align: center;
	background: #fff;
	text-transform: uppercase;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	font: 400 12px/1 "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	-webkit-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}

@media (min-width: 768px) {
	.cover time {
		width: 206px;
	}
}

.news {
	padding: 50px 0 57px;
}

@media (min-width: 768px) {
	.news {
		padding: 31px 0 59px;
	}
}

@media (min-width: 1024px) {
	.news {
		padding: 31px 0 31px;
	}
}

.container-vs-sidebar .news {
	padding: 0;
}

.container-vs-sidebar .news .post-preview {
	padding: 0;
}

.news .view-holder {
	margin-bottom: 15px;
}

@media (min-width: 768px) {
	.news .view-holder {
		margin-bottom: 23px;
	}
}

@media (min-width: 1024px) {
	.news .view-holder {
		margin-bottom: 18px;
	}
}

.news .post-preview {
	padding-top: 6px;
}

@media (min-width: 1024px) {
	.news .post-preview {
		padding-top: 5px;
	}
}

.news .post-preview .img-holder {
	width: 100%;
	position: relative;
	border: 1px solid #e1e1e1;
}

.news .post-preview .img-holder img {
	width: 100%;
}

.news .post-preview .img-holder div:not(.bg-stretch) {
	left: 50%;
	bottom: -1px;
	font-size: 12px;
	min-width: 180px;
	line-height: 12px;
	color: #a5a39b;
	position: absolute;
	text-align: center;
	background: #fff;
	white-space: nowrap;
	padding: 14px 15px 0;
	text-transform: uppercase;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	font-family: "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
}

.news .post-preview .img-holder div:not(.bg-stretch) a {
	color: inherit;
}

.news .post-preview .img-holder div:not(.bg-stretch) a:hover span {
	border-bottom: 1px dotted #8b8982;
}

.news .post-preview .img-holder div:not(.bg-stretch) a, .news .post-preview .img-holder div:not(.bg-stretch) time {
	display: inline-block;
	vertical-align: bottom;
}

.news .post-preview .img-holder div:not(.bg-stretch) time {
	padding-left: 9px;
	position: relative;
}

.news .post-preview .img-holder div:not(.bg-stretch) time:before {
	top: 0;
	left: 0;
	height: 12px;
	content: '|';
	position: absolute;
}

.news .post-preview .text-holder {
	padding-top: 16px;
}

@media (min-width: 1024px) {
	.news .post-preview .text-holder {
		padding-top: 15px;
	}
}

.news .post-preview .text-holder h2 {
	line-height: 20px;
	margin-bottom: 5px;
}

@media (min-width: 1024px) {
	.news .post-preview .text-holder h2 {
		line-height: 22px;
	}
}

.news .post-preview .text-holder h2 a {
	color: inherit;
}

.news .post-preview .text-holder h2 a:hover {
	color: #454441;
}

.important-news {
	margin-bottom: 39px;
}

@media (min-width: 768px) {
	.important-news {
		margin-bottom: 46px;
	}
}

@media (min-width: 1024px) {
	.important-news {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		margin-bottom: 24px;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

@media (min-width: 1024px) {
	.important-news .post-preview {
		width: 48%;
	}
}

@media (max-width: 1023px) {
	.important-news .post-preview:not(:last-child) {
		margin-bottom: 45px;
	}
}

@media (max-width: 767px) {
	.important-news .post-preview:not(:last-child) {
		margin-bottom: 29px;
	}
}

.important-news .post-preview .img-holder {
	height: 144px;
}

@media (min-width: 768px) {
	.important-news .post-preview .img-holder {
		height: 300px;
	}
}

@media (min-width: 1024px) {
	.important-news .post-preview .img-holder {
		height: 220px;
	}
}

.important-news .post-preview .img-holder:before, .important-news .post-preview .img-holder:after {
	top: -7px;
	content: '';
	position: absolute;
	border-style: solid;
}

@media (min-width: 1024px) {
	.important-news .post-preview .img-holder:before, .important-news .post-preview .img-holder:after {
		top: -6px;
	}
}

.important-news .post-preview .img-holder:before {
	left: 19px;
	border-width: 23px 11px 6px;
	border-color: #454441 #454441 transparent #454441;
}

@media (min-width: 768px) {
	.important-news .post-preview .img-holder:before {
		left: 5px;
	}
}

@media (min-width: 1024px) {
	.important-news .post-preview .img-holder:before {
		left: 18px;
	}
}

.important-news .post-preview .img-holder:after {
	left: 41px;
	border-width: 3px 3px;
	border-color: transparent transparent #aba9a0 #aba9a0;
}

@media (min-width: 768px) {
	.important-news .post-preview .img-holder:after {
		left: 27px;
	}
}

@media (min-width: 1024px) {
	.important-news .post-preview .img-holder:after {
		left: 40px;
	}
}

.minor-news {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media (min-width: 768px) {
	.minor-news {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		margin-bottom: 40px;
	}
}

@media (min-width: 1024px) {
	.minor-news {
		margin-bottom: 0;
	}
}

.minor-news .post-preview {
	width: 47%;
}

@media (min-width: 1024px) {
	.minor-news .post-preview {
		width: 31%;
	}
}

@media (min-width: 768px) {
	.minor-news .post-preview .img-holder {
		height: 220px;
	}
}

.newsletter {
	color: #a5a39b;
	padding: 47px 0 40px;
	font: 300 18px/23px "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
}

.newsletter form {
	position: relative;
}

.gform_wrapper.gform_validation_error {
	border: 3px solid #eeb854;
}

#footer .gform_wrapper .gfield_error .gfield_description.validation_message,
.newsletter .gform_wrapper .gfield_error .gfield_description.validation_message {
	display: none;
}

#footer  .gform_wrapper div.validation_error,
.newsletter .gform_wrapper div.validation_error {
	color: #a5a39b;
	font-size: 12px;
	font-weight: 400;
	margin: 0;
	border: none;
	padding: 0;
	text-align: left;
	position: absolute;
	bottom: -30px;
	left: 0;
}

.newsletter .gform_wrapper li.gfield.gfield_error,
#footer .gform_wrapper li.gfield.gfield_error,
#footer .gform_wrapper li.gfield.gfield_error input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),
.newsletter .gform_wrapper li.gfield.gfield_error input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]) {
	border: none;
}

.gform_wrapper .gform_body .gfield.gfield_error .ginput_complex input::-webkit-input-placeholder {
	color: #790000;
}

.gform_wrapper .gform_body .gfield.gfield_error .ginput_complex input:-moz-placeholder {
	color: #790000;
	opacity: 1;
}

.gform_wrapper .gform_body .gfield.gfield_error .ginput_complex input::-moz-placeholder {
	color: #790000;
	opacity: 1;
}

.gform_wrapper .gform_body .gfield.gfield_error .ginput_complex input:-ms-input-placeholder {
	color: #790000;
}

#footer .gform_wrapper .gform_body .gfield .ginput_complex input:focus {
	outline: 0;
}
.newsletter .gform_wrapper .gform_body .gfield .ginput_complex input:focus {
	outline: 0;
}

#gform_wrapper_1 img.gform_ajax_spinner {


}

.gform_confirmation_message_6,
.gform_confirmation_message_1 {
	background: url( images/thanks-bg.png) no-repeat top center;
	background-size: 400px 100%;
	padding: 10px 0;
}

.subscribe-thanks-line1 {
	color: #f5f2ee;
	font-size: 16px;
	font-weight: 700;
	line-height: 25px;
	text-align: center;
	text-transform: uppercase;
}

.subscribe-thanks-line2 {
	color: #a5a39b;
	font-size: 14px;
	text-align: center;
}

@media (min-width: 768px) {
	.newsletter {
		padding: 57px 0 40px;
	}
}

.newsletter .container h1 {
	color: #f5f2ee;
	line-height: 32px;
}

@media (min-width: 768px) {
	.newsletter .container h1 {
		margin-bottom: 10px;
	}
}

.newsletter .subtitle {
	display: block;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 30px;
}

@media (max-width: 767px) {
	.newsletter .subtitle {
		width: 270px;
	}
}

@media (min-width: 768px) {
	.newsletter .subtitle {
		margin-bottom: 26px;
	}
}

@media (min-width: 768px) {
	.newsletter .comment-form {
		width: 547px;
		margin: 0 auto;
	}
}

.newsletter .comment-form form {
	-webkit-align-items: flex-start;
	-moz-align-items: flex-start;
	-ms-align-items: flex-start;
	-o-align-items: flex-start;
	align-items: flex-start;
}

.newsletter .comment-form .gform_wrapper .top_label .gfield_label {
	display: none;
}

.newsletter .comment-form .gform_wrapper.gf_browser_chrome .gform_body {
	width: calc(100% - 108px);
}

#footer .gform_wrapper ul.gform_fields li.gfield,
.newsletter .comment-form .gform_wrapper ul.gform_fields li.gfield,
body .newsletter .comment-form .gform_wrapper .top_label div.ginput_container {
	margin: 0!important;
	padding: 0;
	font-size: 0;
}

.newsletter .comment-form input[type='submit'] {
	display: block;
	width: 100%;
	margin: 0 !important;
}

.newsletter .comment-form .gform_footer {
	width: 108px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin: 0;
	padding: 0;
}

/* @media (min-width: 768px) {
    .newsletter .comment-form input[type='submit'] {
    width: 137px; } } */

.author-spotlight {
	padding: 53px 0 40px;
}

@media (min-width: 768px) {
	.author-spotlight {
		padding: 69px 0 32px;
	}
}

@media (min-width: 1024px) {
	.author-spotlight {
		padding: 52px 0 9px;
	}
}

.author-spotlight .view-holder {
	margin-bottom: 22px;
}

@media (min-width: 768px) {
	.author-spotlight .view-holder {
		margin-bottom: 31px;
	}
}

@media (min-width: 1024px) {
	.author-spotlight .view-holder {
		margin-bottom: 22px;
	}
}

.author-spotlight .view-holder a:not(:hover):before {
	right: calc(100% - 77px);
}

.author-spotlight .view-holder a:not(:hover):after {
	left: calc(100% - 77px);
}

.author-carusel {
	overflow: hidden;
}

.author-carusel .slick-list {
	margin-bottom: 39px;
}

@media (min-width: 1024px) {
	.author-carusel .slick-track {
		text-align: center;
	}
}

.author-carusel .slick-dots {
	text-align: center;
}

.author-carusel .slick-dots li {
	margin: 0 5px;
	display: inline-block;
}

.author-carusel .slick-dots button {
	overflow: hidden;
	text-indent: 101%;
	white-space: nowrap;
	padding: 0;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	position: relative;
	background: #fff;
	border: 2px solid rgba(165, 163, 155, 0.6);
}

.author-carusel .slick-dots button:before {
	top: 50%;
	left: 50%;
	width: 6px;
	opacity: 0;
	height: 6px;
	content: '';
	position: absolute;
	border-radius: 50%;
	background: #a5a39b;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
}

.author-carusel .slick-dots .slick-active button:before {
	opacity: 1;
}

@media (min-width: 1024px) {
	.author-carusel .author-slide {
		width: 300px !important;
	}
}

.author-carusel .face-holder {
	overflow: hidden;
	width: 195px;
	height: 196px;
	margin: 0 auto 10px;
}

@media (min-width: 1024px) {
	.author-carusel .face-holder {
		width: 247px;
		height: 247px;
	}
}

.author-carusel .face-holder svg {
	position: static !important;
}

/* 
.author-slide:hover img.grayscale, .tabs-group .face-holder:hover img.grayscale {
	filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0'/></filter></svg>#grayscale");
	filter: none;
	-webkit-filter: none;
}
 */

.author-slide {
	display: inline-block;
}

.grayscale-fix svg {
	border-radius: 50%;
	border: 4px solid #fff;
}

img.grayscale {
	filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
	filter: gray;
	-webkit-filter: grayscale(100%);
	-webkit-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

.face-holder {
	width: 249px;
	height: 249px;
	overflow: hidden;
	border-radius: 50%;
	border: 3px solid #f5f2ee;
}

.author-directory .face-holder {
	width: 229px;
	height: 229px;
}

@media (max-width: 767px) {
	.face-holder {
		width: 209px;
		height: 209px;
		margin: 0 auto;
	}

	.author-directory .face-holder {
		width: 199px;
		height: 199px;
		margin: 0 0 26px;
	}

}

@media (max-width: 479px) {
	.face-holder,
	.author-directory .face-holder {
		width: 249px;
		height: 249px;
		margin: 0 auto;
	}
}

.author-directory .face-holder {
	display: block;
	margin-bottom: 26px;
}

@media (min-width: 1046px) {
	.author-directory .face-holder {
		margin-bottom: 28px;
	}
}

@media (min-width: 1024px) {
	.face-holder {
		border-width: 4px;
		margin-bottom: 10px;
	}
}

.face-holder img {
	width: 100%;
	border-radius: inherit;
	border: 4px solid #fff;
}

.name-author {
	color: #8b8982;
	text-align: center;
	font: 400 20px "adobe-caslon-pro", "Times New Roman", "Times", "Baskerville", "Georgia", serif;
}

.name-author span:hover {
	color: #454441;
}

.whats-next {
	padding: 67px 0 50px;
}

@media (min-width: 768px) {
	.whats-next {
		padding: 49px 0 57px;
	}
}

@media (min-width: 1024px) {
	.whats-next {
		padding-bottom: 12px;
	}
}

@media (min-width: 768px) {
	.whats-next h1 {
		margin-bottom: 9px;
	}
}

.whats-next .view-holder {
	margin-bottom: 25px;
	margin-bottom: 19px;
}

@media (min-width: 1024px) {
	.whats-next .view-holder {
		margin-bottom: 25px;
	}
}

.whats-next .tab-slide {
	width: 245px;
}

@media (min-width: 1024px) {
	.whats-next .tab-slide {
		width: 196px;
	}
}

.whats-next .cover {
	width: 245px;
	height: 364px;
}

@media (min-width: 768px) {
	.whats-next .cover {
		height: 371px;
	}
}

@media (min-width: 1024px) {
	.whats-next .cover {
		width: 196px;
		height: 296px;
	}
}

@media (min-width: 1024px) {
	.whats-next .cover time {
		width: 156px;
	}
}

.whats-next .book-info {
	color: #8b8982;
	font: 400 16px "adobe-caslon-pro", "Times New Roman", "Times", "Baskerville", "Georgia", serif;
}

.whats-next .tab-content {
	margin-bottom: 15px;
}

@media (min-width: 1024px) {
	.whats-next .tab-content .tab-slide {
		margin-right: 28px;
	}
}

.promos {
	padding: 77px 0 53px;
}

@media (min-width: 768px) {
	.promos {
		padding: 92px 0 82px;
	}
}

@media (min-width: 1024px) {
	.promos {
		padding: 51px 0 39px;
	}
}

@media (max-width: 767px) {
	.author-directory-inner .promos {
		padding-top: 58px;
	}
}

@media (min-width: 1024px) {
	.promos .promos-list {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

.promos .promos-holder {
	width: 100%;
	box-shadow: -5px -5px 0 #d9d5cc;
}

@media (max-width: 767px) {
	.promos .promos-holder {
		margin: 0 auto 34px;
	}
}

@media (min-width: 768px) {
	.promos .promos-holder {
		width: 570px;
		margin-bottom: 57px;
		box-shadow: -10px -10px 0 #d9d5cc;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.promos .promos-holder {
		margin-left: auto;
		margin-right: auto;
	}
}

@media (min-width: 1024px) {
	.promos .promos-holder {
		width: 47.584%;
		margin-bottom: 0;
	}
}

@media (min-width: 1250px) {
	.promos .promos-holder {
		width: 570px;
	}
}

.promos .promos-holder:last-child {
	margin-bottom: 0;
}

@media (min-width: 1024px) {
	.promos .promos-holder:nth-child(odd) {
		margin-left: 12px;
	}
}

.promos .promos-holder img {
	width: 100%;
}

.head-of-section {
	padding: 16px 0 4px;
}

@media (min-width: 768px) {
	.head-of-section {
		padding: 19px 0 8px;
	}
}

@media (min-width: 1024px) {
	.head-of-section {
		padding: 45px 0 27px;
	}
}

@media (max-width: 1023px) {
	.head-of-section:after {
		content: none !important;
	}
}

.head-of-section h1 {
	margin-bottom: 1px;
}

.head-of-section p {
	margin: 22px 0 0;
	font-size: 16px;
	color: #454441;
	text-align: center;
}

.head-of-section .text-center {
	max-width: 866px;
	margin: 20px auto 33px;
	line-height: 1.3;
}

@media (max-width: 1023px) {
	.head-of-section .text-center {
		margin-bottom: 16px;
	}
}

.breadcrumbs-holder {
	min-height: 61px;
	padding: 17px 0 16px;
}

@media (min-width: 768px) {
	.breadcrumbs-holder {
		padding: 16px 0;
		min-height: 70px;
	}
}

@media (min-width: 1024px) {
	.breadcrumbs-holder {
		padding: 27px 0 18px;
	}
}

@media (max-width: 767px) {
	.breadcrumbs-holder.triangle-down:after {
		content: none;
	}
}

@media (min-width: 1024px) {
	.author-subdirectory .breadcrumbs-holder .container > div {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

.breadcrumbs-holder .share:hover {
	color: #fff;
}

.breadcrumbs {
	color: #fff;
	font-size: 14px;
	overflow: hidden;
	display: inline-block;
	text-transform: capitalize;
}

@media (max-width: 767px) {
	.breadcrumbs {
		display: none;
	}
}

.breadcrumbs li {
	float: left;
}

.breadcrumbs li:not(:last-child) {
	position: relative;
	padding: 0 19px 0 0;
}

.breadcrumbs li:not(:last-child):before {
	top: 50%;
	right: 9px;
	content: '';
	position: absolute;
	border-style: solid;
	border-width: 2px 0 2px 2px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	margin-top: -3px;
	border-color: transparent transparent transparent #a5a39b;
}

.breadcrumbs a {
	color: #a5a39b;
}

.breadcrumbs a:hover, .breadcrumbs a:not(.btn):focus {
	color: #fff;
}

@media (max-width: 1023px) {
	.breadcrumbs {
		margin-top: 10px;
	}
}

.breadcrumbs a:not(.btn):focus {
	color: #a5a39b;
}

.author-directory {
	padding: 49px 0 0;
}

@media (min-width: 768px) {
	.author-directory {
		padding: 30px 0 0;
	}
}

@media (min-width: 1024px) {
	.author-directory {
		padding: 55px 0 10px;
	}
}

@media (max-width: 767px) {
	.author-directory .tab-content {
		margin-right: 0;
	}
}

@media (min-width: 768px) {
	.author-directory .tab-content {
		margin-bottom: -11px;
		font-size: 0;
	}
}

@media (min-width: 1046px) {
	.author-directory .tab-content {
		margin-bottom: -15px;
	}
}

.tabs-group {
	display: block;
}

@media (min-width: 769px) {
	.tabs-group {
		display: inline;
		margin-bottom: 53px;
	}
}

@media (min-width: 768px) {
	.tabs-group {
		display: inline;
	}
}

.tabs-group .tab-slide {
	width: 50%;
	display: inline-block;
	vertical-align: top;
}

@media (max-width: 479px) {
	.tabs-group .tab-slide {
		width: 100%;
	}
}

@media (min-width: 768px) {
	.tabs-group .tab-slide {
		width: 33.33%;
		margin-bottom: 52px;
	}
}

@media (min-width: 1046px) {
	.tabs-group .tab-slide {
		width: 25%;
		margin-bottom: 55px;
	}
}

@media (max-width: 767px) {
	.tabs-group .tab-slide:not(:last-child) {
		margin-bottom: 55px;
	}
}

@media (min-width: 768px) and (max-width: 1045px) {
	.tabs-group .tab-slide:nth-child(odd) {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}
}

@media (min-width: 1046px) {
	.tabs-group .tab-slide:nth-child(2), .tabs-group .tab-slide:nth-child(3) {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

@media (min-width: 1046px) {
	.tabs-group .tab-slide:nth-child(4) {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}
}

.tabs-group .tab-slide-holder {
	width: 249px;
	max-width: 100%;
}

@media (min-width: 768px) and (max-width: 1045px) {
	.tabs-group .tab-slide-holder {
		margin: 0 36px;
	}
}

@media (max-width: 1045px) {
	.tabs-group .tab-slide-holder {
		margin: 0;
	}
}

@media (max-width: 479px) {
	.tabs-group .tab-slide-holder {
		margin: 0 auto;
	}
}

@media (max-width: 767px) {
	.tabs-group .author-later {
		width: 64px;
	}
}

.tabs-group .author-later {
	width: 44px;
	margin-right: 20px;
	text-align: right;
}

.author-list-holder {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.author-later {
	line-height: 1;
	font-size: 40px;
	color: #a5a39b;
	text-transform: uppercase;
}

.author-list {
	color: #8b8982;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 16px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.author-directory-inner .author-list ul {
	margin-bottom: 19px;
}

.author-list ul a:not(:hover) {
	color: inherit;
}

.author-list ul a span {
	line-height: 15px;
}

.author-list ul a:hover span {
	display: inline-block;
	border-bottom: 1px dotted;
}

.author-list li:not(:last-child) {
	margin-bottom: 14px;
}

.author-list .view-all-holder {
	padding-top: 14px;
	border-top: 1px solid #d6d6d6;
}

.author-list .view-all {
	font-weight: 700;
	color: #a5a39b;
	font-family: "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
}

.author-list .view-all span:after {
	top: 3px;
	line-height: 0;
	font-size: 24px;
	font-weight: 400;
	margin: 0 0 0 11px;
	position: relative;
	display: inline-block;
}

@media (min-width: 1024px) {
	.author-subdirectory .navigation-single {
		width: 111px;
	}
}

.author-subdirectory .navigation-single .next, .author-subdirectory .navigation-single .prev {
	width: 28px;
	height: 28px;
}

.author-subdirectory .navigation-single .next a, .author-subdirectory .navigation-single .prev a {
	overflow: hidden;
	text-indent: 101%;
	white-space: nowrap;
	padding: 0;
	border-radius: 50%;
	border: 2px solid #969593;
}

.author-subdirectory .navigation-single .next a:before, .author-subdirectory .navigation-single .prev a:before {
	top: 50%;
	left: 50%;
	content: '';
	width: 6px;
	height: 6px;
	color: transparent;
	position: absolute;
	background: transparent;
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	border-top: 1px solid #d7d7d5;
	border-right: 1px solid #d7d7d5;
	-webkit-transform: translate(-50%, -50%) rotate(-135deg);
	transform: translate(-50%, -50%) rotate(-135deg);
}

.author-subdirectory .navigation-single .next a:after, .author-subdirectory .navigation-single .prev a:after {
	content: none;
}

.author-subdirectory .navigation-single .next a:before {
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
}

.navigation-single .change-view {
	width: 28px;
	height: 28px;
}

.navigation-single .change-view:hover {
	opacity: 0.8;
}

.navigation-single .change-view a {
	height: 100%;
	display: block;
}

.navigation-single .change-view span {
	width: 6px;
	height: 6px;
	display: block;
	margin: 0 auto;
	position: relative;
	background: #a5a39b;
}

.navigation-single .change-view span:before, .navigation-single .change-view span:after {
	top: 0;
	content: '';
	width: inherit;
	height: inherit;
	position: absolute;
	background: inherit;
}

.navigation-single .change-view span:before {
	left: -11px;
}

.navigation-single .change-view span:after {
	right: -11px;
}

.navigation-single .change-view span:not(:last-child) {
	margin-bottom: 5px;
}

@media (min-width: 768px) {
	.author-subdirectory-holder {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		padding: 29px 0 42px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

@media (min-width: 1024px) {
	.author-subdirectory-holder {
		padding: 56px 0 43px;
	}
}

@media (min-width: 1046px) {
	.author-subdirectory-holder {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.author-subdirectory-holder .author-slide {
		margin: 0 35px;
	}
}

@media (min-width: 768px) {
	.author-subdirectory-holder .face-holder {
		margin-bottom: 23px;
	}
}

.author-subdirectory-list {
	position: relative;
	margin-bottom: -19px;
}

@media (max-width: 1023px) {
	.author-subdirectory-list {
		padding: 65px 0 0;
	}
}

@media (max-width: 767px) {
	.author-subdirectory-list {
		padding: 14px 0 0;
		border-top: 20px solid #f6f2ef;
	}
}

@media (min-width: 1024px) {
	.author-subdirectory-list {
		margin-bottom: -10px;
	}
}

@media (min-width: 1024px) {
	.author-subdirectory-list .author-subdirectory-list-holder {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		margin-bottom: 52px;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

.author-subdirectory-list .author-later {
	left: -18px;
	color: #f6f2ef;
	overflow: hidden;
	font-size: 489px;
	line-height: 1.11;
	position: relative;
}

@media (max-width: 1023px) {
	.author-subdirectory-list .author-later {
		top: 0;
		left: -45px;
		z-index: -1;
		font-size: 489px;
		position: absolute;
	}
}

@media (max-width: 767px) {
	.author-subdirectory-list .author-later {
		left: -50px;
	}
}

@media (min-width: 1024px) {
	.author-subdirectory-list .author-later {
		-ms-flex-negative: 0;
		flex-shrink: 0;
	}
}

.author-subdirectory-list .author-list {
	padding-left: 59px;
	margin-bottom: 54px;
}

@media (min-width: 768px) {
	.author-subdirectory-list .author-list {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		padding-left: 74px;
		margin-bottom: 42px;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

@media (min-width: 1024px) {
	.author-subdirectory-list .author-list {
		margin-bottom: 0;
		padding: 65px 0 0 13px;
	}
}

@media (max-width: 767px) {
	.author-subdirectory-list .author-list ul {
		padding-top: 28px;
		margin-bottom: 21px;
	}
}

@media (min-width: 768px) {
	.author-subdirectory-list .author-list ul {
		width: 192px;
		-ms-flex-negative: 0;
		flex-shrink: 0;
	}
}

@media (min-width: 1024px) {
	.author-subdirectory-list .author-list ul {
		width: 201px;
	}
}

.author-subdirectory-list .author-list li {
	margin-bottom: 4px;
}

.author-subdirectory-list .author-list .divider {
	margin: 0;
}

.author-anhor-holder {
	-webkit-transition: opacity .4s, visibility .4s;
	transition: opacity .4s, visibility .4s;
	top: 325px;
	right: 17px;
	z-index: 10;
	position: fixed;
}

.author-anhor-holder.fade {
	visibility: hidden;
	opacity: 0;
}

.author-anhor-holder li {
	margin: 5px 0;
}

.author-anhor-holder a {
	width: 22px;
	height: 22px;
	position: relative;
	border-radius: 50%;
	display: inline-block;
	border: 2px solid #a5a39b;
}

.author-anhor-holder a:before {
	top: 50%;
	left: 50%;
	width: 8px;
	opacity: 0;
	height: 8px;
	content: '';
	border-radius: 50%;
	position: absolute;
	background: #a5a39b;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
}

.author-anhor-holder a.anchor-active:before {
	opacity: 1;
}

@media (max-width: 1023px) {
	.news-room-holder .breadcrumbs-holder.triangle-down:after {
		content: none;
	}
}

@media (min-width: 1024px) {
	.news-room-holder .breadcrumbs-holder .container > div {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

@media (max-width: 1023px) {
	.news-room-holder .navigation-holder {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

.news-room-holder .post-preview .img-holder {
	height: 160px;
}

@media (min-width: 768px) {
	.news-room-holder .post-preview .img-holder {
		height: 304px;
	}
}

@media (min-width: 1024px) {
	.news-room-holder .post-preview .img-holder {
		height: 372px;
	}
}

.news-room-holder .post-preview .img-holder div:not(.bg-stretch) {
	min-width: 227px;
	padding-top: 11px;
	background: #f5f2ee;
}

@media (min-width: 768px) {
	.news-room-holder .post-preview .img-holder div:not(.bg-stretch) {
		left: 32px;
		padding-top: 13px;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

.news-room-holder .post-preview .text-holder {
	padding-top: 29px;
}

@media (min-width: 768px) {
	.news-room-holder .post-preview .text-holder {
		padding-top: 25px;
	}
}

.news-room-holder .post-preview .text-holder h2 {
	font-size: 28px;
	line-height: 38px;
	color: #454441;
}

@media (min-width: 1024px) {
	.news-room-holder .post-preview .text-holder h2 {
		line-height: 38px;
	}
}

@media (max-width: 1023px) {
	.news-room-holder .select-holder {
		left: 15%;
		top: -53px;
		width: 192px;
		position: absolute;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}
}

@media (max-width: 767px) {
	.news-room-holder .select-holder {
		left: 20%;
		top: -48px;
	}
}
@media (max-width: 580px) {
	.news-room-holder .select-holder {
		top: -44px;
		left: 50%;
	}
	.inner-page .news-room-holder .jcf-select .jcf-select-text {
		color: #514f4d;
	}

	.inner-page .news-room-holder .breadcrumbs-holder {
		margin-bottom: 50px;
	}

	.inner-page .news-room-holder .socials {
		float: none;
		text-align: center;
	}
}

.news-room-holder .select-holder .jcf-select-text {
	margin-left: 12px;
}

.news-room-title .container-vs-sidebar {
	padding: 28px 0 23px;
}

@media (min-width: 768px) {
	.news-room-title .container-vs-sidebar {
		padding: 32px 0 13px;
	}
}

@media (min-width: 1024px) {
	.news-room-title .container-vs-sidebar {
		padding: 50px 0 29px;
	}
}

@media (min-width: 1024px) {
	.container-vs-sidebar {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

@media (min-width: 1024px) {
	.container-vs-sidebar > div {
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
	}
}

@media (min-width: 1024px) {
	.container-vs-sidebar > div {
		width: calc(100% - 320px);
	}
}

@media (max-width: 1024px) {
	.container-vs-sidebar .sidebar-holder .widget_categories .widgettitle,
	.container-vs-sidebar .sidebar-holder .widget_categories ul {
		display: none;
	}
}

@media (min-width: 1024px) {
	.container-vs-sidebar .sidebar-holder {
		-ms-flex-negative: 0;
		flex-shrink: 0;
	}
}

@media (min-width: 1024px) {
	.container-vs-sidebar .sidebar-holder {
		width: 320px;
		padding-left: 72px;
	}
}

.container-vs-sidebar .sidebar-holder .btn {
	width: 100%;
	text-align: center;
	margin-bottom: 18px;
}

.container-vs-sidebar .sidebar-holder .btn .arrow {
	width: 7px;
	height: 7px;
	margin: 5px 5px 0 0;
	position: relative;
	display: inline-block;
}

.container-vs-sidebar .sidebar-holder .btn .arrow:before {
	left: 0;
	top: 50%;
	width: 8px;
	height: 8px;
	content: '';
	border-width: 1px;
	position: absolute;
	border-style: solid;
	-webkit-transform: translateY(-50%) rotate(-45deg);
	transform: translateY(-50%) rotate(-45deg);
	border-color: #fff transparent transparent #fff;
}

.category-list {
	color: #8b8982;
}

@media (min-width: 1024px) {
	.category-list {
		font-size: 14px;
		background: #fff;
		position: relative;
		border: 2px solid #d6d6d6;
	}
}

.category-list:before, .category-list:after {
	left: 50%;
	width: 13px;
	height: 13px;
	position: absolute;
	background: #fff;
	border: 2px solid #d8d8d8;
	-webkit-transform: translateX(-50%) rotate(45deg);
	transform: translateX(-50%) rotate(45deg);
}

@media (min-width: 1024px) {
	.category-list:before, .category-list:after {
		content: '';
	}
}

.category-list:before {
	top: -7px;
}

.category-list:after {
	bottom: -7px;
}

@media (min-width: 1024px) {
	.category-list .title {
		background: #f5f2ee;
		letter-spacing: .03em;
		color: #514f4d;
		text-transform: uppercase;
		font: 700 13px "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	}
}

@media (min-width: 1024px) {
	.category-list .title a {
		cursor: unset;
		padding: 13px 0 10px 20px;
	}
}

.category-list li:not(:last-child) {
	border-bottom: 1px solid #e2e2e2;
}

.category-list a {
	display: block;
}

@media (min-width: 1024px) {
	.category-list a {
		padding: 13px 0 7px 20px;
	}
}

.category-list a:not(:hover) {
	color: inherit;
}

.content-wrapper {
	font-size: 18px;
	line-height: 1.63;
	padding: 53px 0 13px;
}

@media (min-width: 768px) {
	.content-wrapper {
		padding: 44px 0 22px;
	}
}

@media (min-width: 1024px) {
	.content-wrapper {
		padding: 53px 0 10px;
	}
}

.blockquote-holder {
	font-size: 35px;
	padding: 7px 0 0;
	color: #a5a39b;
	line-height: 47px;
	margin-bottom: 21px;
}

@media (min-width: 768px) {
	.blockquote-holder {
		margin-bottom: 52px;
		padding: 25px 0 0 52px;
	}
}

.blockquote-holder .divider {
	margin: 0 0 24px;
}

@media (min-width: 768px) {
	.blockquote-holder .divider {
		margin: 0 0 37px;
	}
}

.blockquote-holder blockquote {
	margin: 0;
	padding-left: 0;
	border-left: none;
}

@media (min-width: 768px) {
	.blockquote-holder blockquote {
		width: 574px;
	}
}

.read-more-holder {
	margin-bottom: 42px;
}

@media (min-width: 768px) {
	.read-more-holder {
		margin-bottom: 46px;
	}
}

.read-more-holder p {
	margin-bottom: 0;
}

.tags-holder {
	color: #514f4d;
	font: 14px "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
}

.tags-holder dt {
	padding: 5px 5px 0 0;
}

.tags-holder dd {
	height: 31px;
	font-size: 13px;
	font-weight: 700;
	color: #a5a39b;
	background: #f5f2ee;
	padding: 6px 13px 0;
	display: inline-block;
	letter-spacing: .03em;
	margin: 0 0 10px 13px;
	text-transform: uppercase;
}

@media (min-width: 768px) {
	.tags-holder dd {
		margin-left: 11px;
	}
}

.tags-holder a:not(:hover) {
	color: inherit;
}

.page-navigation {
	margin: 15px 0 0;
	padding: 25px 0 22px;
}

@media (min-width: 768px) {
	.page-navigation {
		padding: 21px 0;
	}
}

@media (max-width: 767px) {
	.page-navigation.triangle-down:after {
		content: none;
	}
}

.sidebar-holder .related-books {
	text-align: center;
}

.related-books .related-books-title {
	display: block;
	margin-bottom: 29px;
	font: 300 20px/14px "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
}

.related-books .books-list {
	width: 196px;
	margin: 0 auto;
}

.related-books .books-list li:not(:last-child) {
	margin-bottom: 25px;
}

.related-books .books-list .cover {
	width: 196px;
	height: 291px;
}

.related-books .books-list .book-info {
	padding: 20px 20px 10px;
}

.related-books .books-list .book-info .title {
	margin-bottom: 0;
}

.related-pages {
	padding: 56px 0 28px;
}

.related-pages h1 {
	margin-bottom: 0;
}

.related-pages .container {
	max-width: 1094px;
}

.related-pages .divider {
	margin-bottom: 29px;
}

.related-pages .news {
	padding: 0;
}

.related-pages .post-preview .img-holder div:not(.bg-stretch) {
	background: #f5f2ee;
}

.related-books-footer .jcf-scrollbar.jcf-scrollbar-horizontal {
	display: none;
}

@media (max-width: 1023px) {
	.news-room .breadcrumbs-holder .container > div {
		text-align: right;
	}
}

@media (min-width: 1024px) {
	.news-room .breadcrumbs-holder .container > div {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

@media (min-width: 768px) {
	.news-room .breadcrumbs-holder .container > div .share {
		margin-top: -2px;
	}
}

.news-room .content-wrapper {
	padding: 23px 0 29px;
}

@media (min-width: 768px) {
	.news-room .content-wrapper {
		padding: 31px 0 12px;
	}
}

@media (min-width: 1024px) {
	.news-room .content-wrapper {
		padding: 51px 0 30px;
	}
}

@media (max-width: 767px) {
	.news-room .select-holder {
		left: 15px;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

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

@media (min-width: 1024px) {
	.news-room .post-preview {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		margin-bottom: 23px;
	}
}

.news-room .post-preview .img-holder {
	height: 223px;
}

@media (min-width: 768px) {
	.news-room .post-preview .img-holder {
		height: 304px;
	}
}

@media (min-width: 1024px) {
	.news-room .post-preview .img-holder {
		width: 338px;
		height: 220px;
		-ms-flex-negative: 0;
		flex-shrink: 0;
	}
}

.news-room .post-preview .img-holder div:not(.bg-stretch) {
	background: #fff;
}

.news-room .post-preview .text-holder {
	padding: 26px 0 0;
}

@media (min-width: 1024px) {
	.news-room .post-preview .text-holder {
		padding: 0 0 0 38px;
	}
}

.news-room .post-preview .text-holder h2 {
	margin-bottom: 11px;
}

.news-room .post-preview .text-holder h2 a:hover {
	color: #8b8982;
}

.news-room .post-preview .text-holder p {
	margin-bottom: 14px;
}

.news-room .post-preview .share {
	padding-right: 14px;
}

.news-room .post-preview .share:after {
	top: 45%;
	right: 0;
	margin: 0;
	font-size: 24px;
	font-weight: 300;
	position: absolute;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.content-wrapper {
	position: relative;
}

.post-holder .divider {
	margin-bottom: 30px;
}

.page-navigation-holder {
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.page-navigation-holder {
		position: relative;
	}
}

@media (min-width: 768px) {
	.page-navigation-holder {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

.page-navigation-holder .page-count-holder {
	color: #fff;
	letter-spacing: .03em;
	text-transform: uppercase;
	font: 700 13px "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
}

@media (max-width: 767px) {
	.page-navigation-holder .page-count-holder {
		top: 50%;
		left: 50%;
		position: absolute;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
}

@media (max-width: 767px) {
	.page-navigation-holder .nav-links {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

@media (max-width: 767px) {
	.page-navigation-holder .nav-links .page-numbers:not(.prev):not(.next) {
		display: none;
	}
}

.to-top {
	z-index: 5;
	opacity: .5;
	right: 10px;
	width: 42px;
	bottom: 25px;
	height: 42px;
	display: none;
	cursor: pointer;
	position: fixed;
	background-color: #454441;
	-webkit-transition: 0.2s linear;
	transition: 0.2s linear;
}

.to-top:before, .to-top:after {
	left: 50%;
	content: '';
	position: absolute;
}

.to-top:before {
	top: 50%;
	width: 11px;
	height: 11px;
	border-style: solid;
	border-color: #fff;
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
	border-width: 1px 0 0 1px;
	-webkit-transform: rotate(45deg) translate(-50%, -50%);
	transform: rotate(45deg) translate(-50%, -50%);
}

.to-top:after {
	top: 52%;
	width: 1px;
	height: 14px;
	background: #fff;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.to-top:hover {
	opacity: 1;
}

@media (min-width: 768px) {
	.to-top {
		width: 35px;
		height: 35px;
		bottom: 51px;
	}
}

#footer {
	padding-top: 67px;
}

@media (min-width: 768px) {
	#footer {
		padding-top: 72px;
	}
}

#footer .title {
	font-size: 14px;
	color: #a5a39b;
	line-height: 22px;
	font-family: "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	text-transform: uppercase;
	font-weight: 700;
}

@media (min-width: 1024px) {
	#footer .over {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		position: relative;
		padding: 35px 0 34px;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

#footer .over:after {
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	content: '';
	display: none;
	position: absolute;
	background: #d8d8d8;
}

@media (min-width: 1024px) {
	#footer .over:after {
		display: block;
	}
}

#footer .form-wrapper {
	padding-top: 26px;
	margin-bottom: 29px;
}

@media (min-width: 768px) {
	#footer .form-wrapper {
		padding-top: 0;
		max-width: 375px;
		margin-bottom: 0;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	#footer .form-wrapper {
		margin: 0 auto 48px;
	}
}

@media (min-width: 1024px) {
	#footer .form-wrapper {
		width: 30%;
		max-width: none;
	}
}

#footer .form-wrapper .title {
	margin-bottom: 18px;
}

@media (min-width: 768px) {
	#footer .form-wrapper .title {
		margin-bottom: 9px;
	}
}

@media (min-width: 1024px) {
	#footer .form-wrapper .title {
		margin-bottom: 15px;
	}
}

#footer .form-wrapper form {
	background: #d9d5cc;
}

#footer .form-wrapper form input[type='text'] {
	background: inherit;
}

#footer .form-wrapper .btn {
	min-width: 138px;
}

#footer .social-network li a {
	font-size: 20px;
}

.logo-footer {
	font-size: 15px;
	color: #a5a39b;
	text-align: center;
	text-align: center;
	margin-bottom: 35px;
}

@media (min-width: 768px) {
	.logo-footer {
		margin-bottom: 45px;
	}
}

@media (min-width: 1024px) {
	.logo-footer {
		margin-bottom: 33px;
	}
}

.logo-footer .logo {
	max-width: 341px;
	margin-bottom: 9px;
}

.add-nav {
	font-size: 14px;
	position: relative;
	padding: 39px 0 29px;
	color: #454441;
}

@media (min-width: 768px) {
	.add-nav {
		padding: 28px 0 22px;
	}
}

@media (min-width: 1024px) {
	.add-nav {
		width: 70%;
		padding: 0;
	}
}

.add-nav:before, .add-nav:after {
	left: -100%;
	height: 2px;
	content: '';
	width: 99999px;
	position: absolute;
	background: #d8d8d8;
}

@media (min-width: 1024px) {
	.add-nav:before, .add-nav:after {
		display: none;
	}
}

.add-nav:before {
	top: 0;
}

.add-nav:after {
	bottom: 0;
}

@media (min-width: 768px) {
	.add-nav:after {
		content: none;
	}
}

.add-nav-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.add-nav-wrapper .add-nav-holder {
	width: 50%;
}

@media (min-width: 768px) {
	.add-nav-wrapper .add-nav-holder {
		width: 25%;
		margin-bottom: 8px;
	}
}

@media (max-width: 767px) {
	.add-nav-wrapper .add-nav-holder:not(:last-child):not(:nth-last-child(2)) {
		margin-bottom: 38px;
	}
}

.add-nav-wrapper .title {
	margin-bottom: 10px;
}

@media (min-width: 768px) {
	.add-nav-wrapper .title {
		margin-bottom: 9px;
	}
}

@media (min-width: 1024px) {
	.add-nav-wrapper .title {
		margin-bottom: 13px;
	}
}

.add-nav-wrapper ul:not(.social-network) li {
	margin-bottom: 6px;
}

.add-nav-wrapper a {
	color: inherit;
}

.add-nav-wrapper a:hover {
	color: #8b8982;
}

.add-nav-wrapper .social-network {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-top: 8px;
	color: #a5a39b;
}

@media (max-width: 767px) {
	.add-nav-wrapper .social-network {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

@media (min-width: 768px) {
	.add-nav-wrapper .social-network {
		padding-top: 7px;
	}
}

@media (min-width: 1024px) {
	.add-nav-wrapper .social-network {
		display: block;
		padding-top: 7px !important;
	}
}

@media (min-width: 1024px) {
	.add-nav-wrapper .social-network li {
		float: left;
		margin-right: 19px;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.add-nav-wrapper .social-network li:not(:last-child) {
		margin-right: 20px;
	}
}

.add-nav-wrapper .social-network a {
	font-size: 20px;
}

@media (min-width: 768px) {
	.add-nav-wrapper .social-network a {
		font-size: 15px;
	}
}

.add-nav-wrapper .social-network a:hover {
	text-decoration: none;
}

.logos-publishings span {
	display: block;
}

.logos-publishings a {
	text-align: center;
}

.logos-publishings a:hover img {
	opacity: 0.6;
}

.logos-publishings img {
	display: inline-block;
	margin-bottom: 20px;
}

.logos-publishings {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 30px;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

@media (min-width: 1024px) {
	.logos-publishings {
		max-width: 742px;
		margin: 0 auto 36px;
	}
}

@media (max-width: 767px) {
	.logos-publishings.hidden-mobile {
		display: none;
	}
}

.logos-publishings a {
	color: inherit;
	display: block;
	position: relative;
	text-align: center;
}

.logos-publishings a:hover {
	color: #8b8982;
}

.logos-publishings .grove-press:before, .logos-publishings .grove-press:after {
	width: 62px;
	height: 56px;
}

.logos-publishings .grove-press:before {
	background-position: 0 0;
}

.logos-publishings .grove-press:after {
	background-position: 0 -63px;
}

.logos-publishings .grove-press:hover:before {
	opacity: 0;
}

.logos-publishings .grove-press:hover:after {
	opacity: 1;
}

.logos-publishings .atlantic-montly:before, .logos-publishings .atlantic-montly:after {
	width: 64px;
	height: 55px;
}

.logos-publishings .atlantic-montly:before {
	background-position: -63px 0;
}

.logos-publishings .atlantic-montly:after {
	background-position: -63px -63px;
}

.logos-publishings .atlantic-montly:hover:before {
	opacity: 0;
}

.logos-publishings .atlantic-montly:hover:after {
	opacity: 1;
}

.logos-publishings .black-cat:before, .logos-publishings .black-cat:after {
	width: 60px;
	height: 50px;
}

.logos-publishings .black-cat:before {
	background-position: -128px 0;
}

.logos-publishings .black-cat:after {
	background-position: -128px -63px;
}

.logos-publishings .black-cat:hover:before {
	opacity: 0;
}

.logos-publishings .black-cat:hover:after {
	opacity: 1;
}

.logos-publishings .mysterius-press:before, .logos-publishings .mysterius-press:after {
	width: 62px;
	height: 61px;
}

.logos-publishings .mysterius-press:before {
	background-position: -190px 0;
}

.logos-publishings .mysterius-press:after {
	background-position: -190px -63px;
}

.logos-publishings .mysterius-press:hover:before {
	opacity: 0;
}

.logos-publishings .mysterius-press:hover:after {
	opacity: 1;
}

.footer-bottom {
	color: #8b8982;
	font-size: 11px;
	line-height: 22px;
	text-align: center;
	padding: 21px 0 31px;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	font-family: "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
}

@media (min-width: 768px) {
	.footer-bottom {
		padding: 16px 0 13px;
	}
}

@media (min-width: 1024px) {
	.footer-bottom {
		padding: 12px 0 17px;
	}
}

@media (min-width: 768px) {
	.footer-bottom ul {
		display: inline-block;
	}
}

@media (min-width: 1024px) {
	.footer-bottom ul {
		margin-left: 5px;
	}
}

.footer-bottom li {
	padding-left: 5px;
	position: relative;
	display: inline-block;
}

@media (min-width: 768px) {
	.footer-bottom li {
		padding: 0 11px;
	}
}

.footer-bottom li:not(:first-child):before {
	left: 0;
	top: 50%;
	width: 1px;
	content: '';
	height: 12px;
	background: #8b8982;
	position: absolute;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.footer-bottom li:first-child {
	padding-left: 0;
}

@media (max-width: 767px) {
	.footer-bottom li:last-child {
		display: block;
		padding-left: 0;
	}

	.footer-bottom li:last-child:before {
		content: none;
	}
}

@media (min-width: 768px) {
	.footer-bottom li:last-child {
		padding-right: 0;
	}
}

.footer-bottom li a {
	display: block;
}

.footer-bottom a {
	color: inherit;
}

.footer-bottom a:hover {
	color: #a5a39b;
	text-decoration: underline;
}

.footer-bottom .copyright:hover {
	text-decoration: none;
}

/* ------------------------------------------------------------ * New Styles
\* ------------------------------------------------------------ */
.ico-arrow-down {
	background: url(images/../images/sprite/ico-arrow-down.png) no-repeat 0 0;
	background-size: 100% 100%;
	width: 19px;
	height: 12px;
	display: inline-block;
	vertical-align: middle;
	font-size: 0;
}

.ico-arrow {
	background: url(images/../images/sprite/ico-arrow.png) no-repeat 0 0;
	background-size: 100% 100%;
	width: 12px;
	height: 7px;
	display: inline-block;
	vertical-align: middle;
	font-size: 0;
}

.ico-book-white {
	background: url(images/../images/sprite/ico-book-white.png) no-repeat 0 0;
	background-size: 100% 100%;
	width: 15px;
	height: 14px;
	display: inline-block;
	vertical-align: middle;
	font-size: 0;
}

.ico-book {
	background: url(images/../images/sprite/ico-book.png) no-repeat 0 0;
	background-size: 100% 100%;
	width: 15px;
	height: 14px;
	display: inline-block;
	vertical-align: middle;
	font-size: 0;
}

.ico-download {
	background: url(images/../images/sprite/ico-download.png) no-repeat 0 0;
	background-size: 100% 100%;
	width: 10px;
	height: 13px;
	display: inline-block;
	vertical-align: middle;
	font-size: 0;
}

.ico-facebook-alt {
	background: url(images/../images/sprite/ico-facebook-alt.png) no-repeat 0 0;
	background-size: 100% 100%;
	width: 9px;
	height: 17px;
	display: inline-block;
	vertical-align: middle;
	font-size: 0;
}

.ico-facebook {
	background: url(images/../images/sprite/ico-facebook.png) no-repeat 0 0;
	background-size: 100% 100%;
	width: 9px;
	height: 17px;
	display: inline-block;
	vertical-align: middle;
	font-size: 0;
}

.ico-paging-next {
	background: url(images/../images/sprite/ico-paging-next.png) no-repeat 0 0;
	background-size: 100% 100%;
	width: 29px;
	height: 29px;
	display: inline-block;
	vertical-align: middle;
	font-size: 0;
}

.ico-paging-prev {
	background: url(images/../images/sprite/ico-paging-prev.png) no-repeat 0 0;
	background-size: 100% 100%;
	width: 29px;
	height: 29px;
	display: inline-block;
	vertical-align: middle;
	font-size: 0;
}

.ico-pinterest {
	background: url(images/../images/sprite/ico-pinterest.png) no-repeat 0 0;
	background-size: 100% 100%;
	width: 17px;
	height: 17px;
	display: inline-block;
	vertical-align: middle;
	font-size: 0;
}

.ico-rows {
	background: url(images/../images/sprite/ico-rows.png) no-repeat 0 0;
	background-size: 100% 100%;
	width: 28px;
	height: 28px;
	display: inline-block;
	vertical-align: middle;
	font-size: 0;
}

.ico-squares {
	background: url(images/../images/sprite/ico-squares.png) no-repeat 0 0;
	background-size: 100% 100%;
	width: 28px;
	height: 28px;
	display: inline-block;
	vertical-align: middle;
	font-size: 0;
}

.ico-tumblr {
	background: url(images/../images/sprite/ico-tumblr.png) no-repeat 0 0;
	background-size: 100% 100%;
	width: 11px;
	height: 17px;
	display: inline-block;
	vertical-align: middle;
	font-size: 0;
}

.ico-twitter-alt {
	background: url(images/../images/sprite/ico-x-@2-side-bar.svg) no-repeat 0 0;
	background-size: 100% 100%;
	width: 17px;
	height: 13px;
	display: inline-block;
	vertical-align: middle;
	font-size: 0;
}

.ico-twitter {
	background: url(images/../images/sprite/ico-x-@2-side-bar.svg) no-repeat 0 0;
	background-size: 100% 100%;
	width: 18px;
	height: 16px;
	display: inline-block;
	vertical-align: middle;
	font-size: 0;
}

.ico-tiktok {
	background: url(images/../images/sprite/ico-tiktok@2-side-bar.svg) no-repeat 0 0;
	background-size: 100% 100%;
	width: 18px;
	height: 16px;
	display: inline-block;
	vertical-align: middle;
	font-size: 0;
}

.ico-zoom {
	background: url(images/../images/sprite/ico-zoom.png) no-repeat 0 0;
	background-size: 100% 100%;
	width: 13px;
	height: 13px;
	display: inline-block;
	vertical-align: middle;
	font-size: 0;
}
.ico-instagram { background: url(images/../images/sprite/ico-instagram-x2.png) no-repeat 0 0; background-size: 100% 100%; width: 17px; height: 17px; display: inline-block; vertical-align: middle; font-size: 0; }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
	.ico-arrow-down {
		background: url(images/../images/sprite/ico-arrow-down@2x.png) no-repeat 0 0;
		width: 19px;
		height: 12px;
		background-size: 100% 100%;
		display: inline-block;
		vertical-align: middle;
		font-size: 0;
	}

	.ico-book-white {
		background: url(images/../images/sprite/ico-book-white@2x.png) no-repeat 0 0;
		width: 15px;
		height: 14px;
		background-size: 100% 100%;
		display: inline-block;
		vertical-align: middle;
		font-size: 0;
	}

	.ico-book {
		background: url(images/../images/sprite/ico-book@2x.png) no-repeat 0 0;
		width: 15px;
		height: 14px;
		background-size: 100% 100%;
		display: inline-block;
		vertical-align: middle;
		font-size: 0;
	}

	.ico-download {
		background: url(images/../images/sprite/ico-download@2x.png) no-repeat 0 0;
		width: 10px;
		height: 13px;
		background-size: 100% 100%;
		display: inline-block;
		vertical-align: middle;
		font-size: 0;
	}

	.ico-facebook-alt {
		background: url(images/../images/sprite/ico-facebook-alt@2x.png) no-repeat 0 0;
		width: 9px;
		height: 17px;
		background-size: 100% 100%;
		display: inline-block;
		vertical-align: middle;
		font-size: 0;
	}

	.ico-twitter-alt {
		background: url(images/../images/sprite/ico-twitter-alt@2x.png) no-repeat 0 0;
		width: 17px;
		height: 13px;
		background-size: 100% 100%;
		display: inline-block;
		vertical-align: middle;
		font-size: 0;
	}

	.ico-zoom {
		background: url(images/../images/sprite/ico-zoom@2x.png) no-repeat 0 0;
		width: 13px;
		height: 13px;
		background-size: 100% 100%;
		display: inline-block;
		vertical-align: middle;
		font-size: 0;
	}
}

/* ------------------------------------------------------------ * Btns
\* ------------------------------------------------------------ */
.btn-white {
	min-width: 166px;
	padding: 7px 19px 6px;
	background-color: #fff;
	font-family: "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	font-size: 13px;
	color: #454441;
	box-shadow: none;
	border: none;
	text-align: center;
	-webkit-transition: opacity .3s;
	transition: opacity .3s;
}

.btn-white:hover {
	background-color: #fff;
	opacity: .8;
}

@media (max-width: 767px) {
	.btn-white {
		min-width: 49%;
	}
}

.btn-expand {
	font-size: 0;
	color: #a5a39b;
	white-space: nowrap;
}

.table .btn-expand span,
.btn-expand span {
	display: inline-block;
	margin-right: 5px;
	font-family: "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	font-size: 13px;
	line-height: 1.3;
	text-transform: uppercase;
	font-weight: 900;
	vertical-align: middle;
}

.table .btn-expand .hidden-text,
.btn-expand .hidden-text {
	display: none;
	color: #8b8982;
}

.btn-expand .btn-expand-arrow {
	display: inline-block;
	width: 8px;
	height: 8px;
	border: 2px;
	border-left: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	font-size: 0;
	vertical-align: middle;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transform-origin: center 0;
	transform-origin: center 0;
	opacity: .5;
	-webkit-transition: border .3s, -webkit-transform .3s, -webkit-transform-origin .3s;
	transition: border .3s, -webkit-transform .3s, -webkit-transform-origin .3s;
	transition: border .3s, transform .3s, transform-origin .3s;
	transition: border .3s, transform .3s, transform-origin .3s, -webkit-transform .3s, -webkit-transform-origin .3s;
}

.btn-expand.active span:first-child {
	display: none;
}

.btn-expand.active .hidden-text {
	display: inline-block;
}

.event-actions .view-more {
	display: inline-block;
	margin: 4px 8px -4px;
	color: #8b8982;
}

.event-actions .btn-expand.active .hidden-text {
	margin: 4px 8px -4px;
}

.btn-expand.active .btn-expand-arrow {
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	-webkit-transform-origin: center center;
	transform-origin: center center;
}

.btn-simple {
	padding: 7px 19px 6px;
	background-color: #f5f2ee;
	border: none;
	box-shadow: none;
	font-family: "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	font-size: 13px;
	color: #a5a39b;
	font-weight: 900;
}

.btn-simple i {
	margin: 3px 5px 0 0;
	vertical-align: top;
}

.btn-simple:hover {
	background-color: #dadada;
}

.btn-gray i {
	margin: 2px 7px 0 0;
	vertical-align: top;
}

/* Magnific Popup CSS */
.mfp-bg {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1042;
	overflow: hidden;
	position: fixed;
	background: #0b0b0b;
	opacity: 0.8;
	filter: alpha(opacity=80);
}

.mfp-wrap {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1043;
	position: fixed;
	outline: none !important;
	-webkit-backface-visibility: hidden;
}

.mfp-container {
	text-align: center;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	padding: 0 8px;
	box-sizing: border-box;
}

.mfp-container:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
	display: none;
}

.mfp-content {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin: 0 auto;
	text-align: left;
	z-index: 1043;
}

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
	width: 100%;
	cursor: auto;
}

.mfp-ajax-cur {
	cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
	cursor: zoom-out;
}

.mfp-zoom {
	cursor: pointer;
	cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
	cursor: auto;
}

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.mfp-loading.mfp-figure {
	display: none;
}

.mfp-hide {
	display: none !important;
}

.mfp-preloader {
	color: #CCC;
	position: absolute;
	top: 50%;
	width: auto;
	text-align: center;
	margin-top: -0.8em;
	left: 8px;
	right: 8px;
	z-index: 1044;
}

.mfp-preloader a {
	color: #CCC;
}

.mfp-preloader a:hover {
	color: #FFF;
}

.mfp-s-ready .mfp-preloader {
	display: none;
}

.mfp-s-error .mfp-content {
	display: none;
}

button.mfp-close, button.mfp-arrow {
	overflow: visible;
	cursor: pointer;
	background: transparent;
	border: 0;
	-webkit-appearance: none;
	display: block;
	outline: none;
	padding: 0;
	z-index: 1046;
	box-shadow: none;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

.mfp-close {
	width: 44px;
	height: 44px;
	line-height: 44px;
	position: absolute;
	right: 0;
	top: 0;
	text-decoration: none;
	text-align: center;
	opacity: 0.65;
	filter: alpha(opacity=65);
	padding: 0 0 18px 10px;
	color: #FFF;
	font-style: normal;
	font-size: 28px;
	font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover, .mfp-close:focus {
	opacity: 1;
	filter: alpha(opacity=100);
}

.mfp-close:active {
	top: 1px;
}

.mfp-close-btn-in .mfp-close {
	color: #333;
}

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
	color: #FFF;
	right: -6px;
	text-align: right;
	padding-right: 6px;
	width: 100%;
}

.mfp-counter {
	position: absolute;
	top: 0;
	right: 0;
	color: #CCC;
	font-size: 12px;
	line-height: 18px;
	white-space: nowrap;
}

.mfp-arrow {
	position: absolute;
	opacity: 0.65;
	filter: alpha(opacity=65);
	margin: 0;
	top: 50%;
	margin-top: -55px;
	padding: 0;
	width: 90px;
	height: 110px;
	-webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
	margin-top: -54px;
}

.mfp-arrow:hover, .mfp-arrow:focus {
	opacity: 1;
	filter: alpha(opacity=100);
}

.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
	content: '';
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	left: 0;
	top: 0;
	margin-top: 35px;
	margin-left: 35px;
	border: medium inset transparent;
}

.mfp-arrow:after, .mfp-arrow .mfp-a {
	border-top-width: 13px;
	border-bottom-width: 13px;
	top: 8px;
}

.mfp-arrow:before, .mfp-arrow .mfp-b {
	border-top-width: 21px;
	border-bottom-width: 21px;
	opacity: 0.7;
}

.mfp-arrow-left {
	left: 0;
}

.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
	border-right: 17px solid #FFF;
	margin-left: 31px;
}

.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
	margin-left: 25px;
	border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
	right: 0;
}

.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
	border-left: 17px solid #FFF;
	margin-left: 39px;
}

.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
	border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
	padding-top: 40px;
	padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
	line-height: 0;
	width: 100%;
	max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
	top: -40px;
}

.mfp-iframe-scaler {
	width: 100%;
	height: 0;
	overflow: hidden;
	padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	background: #000;
}

/* Main image in popup */
img.mfp-img {
	width: auto;
	max-width: 100%;
	height: auto;
	display: block;
	line-height: 0;
	box-sizing: border-box;
	padding: 40px 0 40px;
	margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
	line-height: 0;
}

.mfp-figure:after {
	content: '';
	position: absolute;
	left: 0;
	top: 40px;
	bottom: 40px;
	display: block;
	right: 0;
	width: auto;
	height: auto;
	z-index: -1;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	background: #444;
}

.mfp-figure small {
	color: #BDBDBD;
	display: block;
	font-size: 12px;
	line-height: 14px;
}

.mfp-figure figure {
	margin: 0;
}

.mfp-bottom-bar {
	margin-top: -36px;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	cursor: auto;
}

.mfp-title {
	text-align: left;
	line-height: 18px;
	color: #F3F3F3;
	word-wrap: break-word;
	padding-right: 36px;
}

.mfp-image-holder .mfp-content {
	max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
	cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
	/**
     * Remove all paddings around the image on small screen
     */
	.mfp-img-mobile .mfp-image-holder {
		padding-left: 0;
		padding-right: 0;
	}

	.mfp-img-mobile img.mfp-img {
		padding: 0;
	}

	.mfp-img-mobile .mfp-figure:after {
		top: 0;
		bottom: 0;
	}

	.mfp-img-mobile .mfp-figure small {
		display: inline;
		margin-left: 5px;
	}

	.mfp-img-mobile .mfp-bottom-bar {
		background: rgba(0, 0, 0, 0.6);
		bottom: 0;
		margin: 0;
		top: auto;
		padding: 3px 5px;
		position: fixed;
		box-sizing: border-box;
	}

	.mfp-img-mobile .mfp-bottom-bar:empty {
		padding: 0;
	}

	.mfp-img-mobile .mfp-counter {
		right: 5px;
		top: 3px;
	}

	.mfp-img-mobile .mfp-close {
		top: 0;
		right: 0;
		width: 35px;
		height: 35px;
		line-height: 35px;
		background: rgba(0, 0, 0, 0.6);
		position: fixed;
		text-align: center;
		padding: 0;
	}
}

@media all and (max-width: 900px) {
	.mfp-arrow {
		-webkit-transform: scale(0.75);
		transform: scale(0.75);
	}

	.mfp-arrow-left {
		-webkit-transform-origin: 0;
		transform-origin: 0;
	}

	.mfp-arrow-right {
		-webkit-transform-origin: 100%;
		transform-origin: 100%;
	}

	.mfp-container {
		padding-left: 6px;
		padding-right: 6px;
	}
}

.mfp-ie7 .mfp-img {
	padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
	width: 600px;
	left: 50%;
	margin-left: -300px;
	margin-top: 5px;
	padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
	padding: 0;
}

.mfp-ie7 .mfp-content {
	padding-top: 44px;
}

.mfp-ie7 .mfp-close {
	top: 0;
	right: 0;
	padding-top: 0;
}

/* ------------------------------------------------------------ * Header
\* ------------------------------------------------------------ */
@media (max-width: 767px) {
	#header {
		z-index: 9999;
	}
}

/* ------------------------------------------------------------ * Nav
\* ------------------------------------------------------------ */
@media (min-width: 1024px) {
	.main-nav li:hover .submenu-holder {
		top: 100%;
		opacity: 1;
		visibility: visible;
	}

	.main-nav > li:hover > a span {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}

	.main-nav > li:hover > a span:before {
		opacity: 1;
	}

	.main-nav > li:hover > a span:before {
		color: #a5a39b;
	}
}

.main-nav > li.hover > a span:before {
	color: #a5a39b;
}

.main-nav > li .submenu-holder {
	padding: 0 38px 0 40px;
	border: 1px solid #d8d8d8;
	border-top: 2px solid #d8d8d8;
	background-color: #f5f2ee;
}

.main-nav > li .submenu-holder:before,
.main-nav > li .submenu-holder:after {
	display: none;
}

.main-nav > li > .submenu-holder {
	left: -40px;
}

.main-nav > li .submenu-holder > div {
	width: 174px;
	padding: 22px 0 30px;
}

.main-nav .title {
	margin-bottom: 6px;
}

.main-nav ul li {
	padding: 10px 0 2px;
}

.main-nav .submenu.several .submenu-holder {
	left: auto;
}

@media (max-width: 1024px) {
	.main-nav li:hover .submenu-holder {
		top: calc(100% + 30px);
		opacity: 0;
		visibility: hidden;
	}

	.main-nav li.hover:hover .submenu-holder {
		top: 100%;
		opacity: 1;
		visibility: visible;
	}
}

@media (max-width: 767px) {
	.main-nav .submenu:before {
		top: 37px;
	}

	.main-nav > li > .submenu-holder {
		left: auto;
	}
}

@media (min-width: 768px) {
	.main-hollder {
		max-width: 630px;
		padding: 0;
		margin: 0 auto;
	}
}

/* ------------------------------------------------------------ * Sort
\* ------------------------------------------------------------ */
.sort {
	float: right;
	font-size: 0;
}

.sort .btn-visualization {
	display: inline-block;
	margin: -3px 0 0 20px;
	opacity: .5;
	vertical-align: middle;
	-webkit-transition: opacity .2s;
	transition: opacity .2s;
}

.sort .btn-visualization:hover,
.sort .btn-visualization.active {
	opacity: 1;
}

@media (max-width: 1023px) {
	.sort {
		float: none;
		text-align: right;
	}

	.sort:after {
		content: '';
		display: table;
		clear: both;
		font-size: 0;
	}

	.sort .btn-visualization {
		margin-top: 6px;
	}
}

/* ------------------------------------------------------------ * Sort Applied
\* ------------------------------------------------------------ */
.sort-applied {
	display: none;
	clear: both;
	padding: 12px 0 0;
	margin-bottom: -5px;
	font-family: 0;
	text-align: left;
}

.sort-applied.show {
	display: block;
}

.sort-applied .option {
	overflow: hidden;
	position: relative;
	display: inline-block;
	width: 166px;
	padding: 2px 32px 3px 13px;
	margin: 0 19px 5px 0;
	background-color: #6b6968;
	font-family: "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	font-size: 14px;
	line-height: 1.86;
	color: #f5f2ee;
	font-weight: 400;
	vertical-align: top;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.sort-applied .option:after, .sort-applied .option:before {
	content: '';
	position: absolute;
	top: 50%;
	right: 10px;
	width: 12px;
	height: 2px;
	background-color: #d6d6d6;
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}

.sort-applied .option:before {
	right: 15px;
	width: 2px;
	height: 12px;
}

@media (max-width: 767px) {
	.sort-applied .option {
		width: 49%;
		margin-right: 2%;
	}

	.sort-applied .option:nth-child(even) {
		margin-right: 0;
	}
}

/* ------------------------------------------------------------ * Dropdown
\* ------------------------------------------------------------ */
.dropdown {
	position: relative;
	z-index: 99;
	display: inline-block;
	width: 175px;
	height: 100%;
	padding: 9px 13px 9px 20px;
	margin: -27px 0 -18px;
	border-left: 1px solid #74726f;
	border-right: 1px solid #74726f;
	vertical-align: top;
	cursor: pointer;
}

.dropdown .dropdown-text {
	color: #fff;
}

.dropdown .dropdown-text-title {
	display: block;
	font-family: "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	font-size: 13px;
	line-height: 2.36;
	font-weight: 900;
}

.dropdown .dropdown-text-option {
	position: relative;
	display: block;
	padding-top: 5px;
	font-family: 'Adobe Caslon Pro', serif;
	font-size: 14px;
	line-height: 1.3;
	font-weight: 400;
}

.dropdown .dropdown-inner ul li {
	position: relative;
}

.dropdown .dropdown-text-option i {
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: -webkit-transform .3s;
	transition: -webkit-transform .3s;
	transition: transform .3s;
	transition: transform .3s, -webkit-transform .3s;
}

.dropdown.open .dropdown-text-option i {
	-webkit-transform: translateY(-50%) rotate(180deg);
	transform: translateY(-50%) rotate(180deg);
}

/*
.dropdown .dropdown-inner .sorter:hover i {
	-webkit-transform: translateY(-50%) rotate(180deg);
	transform: translateY(-50%) rotate(180deg);
}
.dropdown .dropdown-inner .sorter.desc:hover i {
	-webkit-transform: translateY(-50%) rotate(0deg);
	transform: translateY(-50%) rotate(0deg);
}*/

.dropdown .dropdown-inner {
	visibility: hidden;
	position: absolute;
	top: 120%;
	left: -1px;
	right: -1px;
	border: 2px solid #d6d6d6;
	border-top-width: 1px;
	background-color: #fff;
	opacity: 0;
	-webkit-transition: top .3s, opacity .3s, visibility .4s;
	transition: top .3s, opacity .3s, visibility .4s;
}

.dropdown .dropdown-inner ul {
	list-style: none outside none;
}

.dropdown .dropdown-inner li {
	padding: 3px;
	line-height: 1;
}

.dropdown .dropdown-inner li + li {
	border-top: 1px solid #f4f4f4;
}

.dropdown .dropdown-inner a {
	display: block;
	padding: 3px 20px 0;
	font-family: 'Adobe Caslon Pro', serif;
	font-size: 14px;
	line-height: 2.3;
	-webkit-transition: background .4s, color .4s;
	transition: background .4s, color .4s;
}

.dropdown .dropdown-inner .current a,
.dropdown .dropdown-inner a:hover {
	background-color: #514f4d;
	color: #fff;
}

.dropdown.open .dropdown-inner {
	top: 100%;
	visibility: visible;
	opacity: 1;
}

@media (max-width: 1023px) {
	.dropdown {
		float: left;
		width: 165px;
		padding: 3px 30px 3px 11px;
		border: 1px solid #767472;
		margin: 0;
		text-align: left;
	}

	.dropdown .dropdown-text-option {
		position: static;
		padding: 0;
		font-size: 0;
		line-height: 0;
	}

	.dropdown .dropdown-text-option i {
		right: 12px;
	}
}

@media (max-width: 767px) {
	.dropdown {
		width: 49%;
	}
}

/* ------------------------------------------------------------ * Section Primary
\* ------------------------------------------------------------ */
.section-primary {
	padding-top: 53px;
}

.section-primary .section-aside {
	float: left;
	width: 247px;
	margin-right: 72px;
}

.section-primary .section-content {
	overflow: hidden;
}

@media (max-width: 1023px) {
	.section-primary {
		padding-top: 23px;
	}

	.section-primary .section-actions {
		overflow: hidden;
		margin-bottom: 22px;
		font-size: 0;
		text-align: right;
	}

	.section-primary .section-actions > span {
		float: left;
		margin-top: 2px;
		font-family: "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
		font-size: 13px;
		line-height: 2;
		color: #454441;
		font-weight: 900;
		text-transform: uppercase;
	}
}

/* ------------------------------------------------------------ * Section Simple
\* ------------------------------------------------------------ */
.section-simple {
	position: relative;
	padding-top: 50px;
}

.section-simple.top-image {
	/*padding-top: 0;*/
}

.section-simple:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 418px;
	background-color: #f5f2ee;
}

.section-simple.top-image:before {
	content: '';
	position: relative;
	height: 0;
	background: none;
}

.section-simple .container:after {
	content: '';
	display: table;
	clear: both;
	font-size: 0;
}

.section-simple .section-inner {
	position: relative;
	z-index: 2;
	padding: 55px 53px 0;
	background-color: #fff;
}

.section-simple .section-inner > .divider {
	margin: 33px 0 36px;
}

.section-simple .section-inner .staff-items + .divider {
	width: auto;
	margin: 20px -49px 32px;
}

.section-simple .section-inner .staff-items + .divider:last-child {
	margin-bottom: 0;
}

.section-simple .section-head {
	padding: 0 70px;
}

.section-simple .section-title {
	line-height: 1.43;
}

.section-simple .section-aside {
	float: left;
	width: 340px;
	margin-right: 60px;
}

.section-simple .section-content {
	overflow: hidden;
}

.section-simple .section-content .divider {
	margin: 39px 0 39px;
}

.section-simple .section-group {
	padding-top: 10px;
}

.section-simple .section-group ~ .section-group {
	padding-top: 0;
}

.section-simple .section-group h1 {
	text-align: left;
}

.section-simple .section-group h2 {
	margin-bottom: 16px;
	font-size: 16px;
	line-height: 1.63;
	color: #454441;
	font-weight: 700;
}

.section-simple .section-group p {
	margin-bottom: 18px;
	font-size: 18px;
	line-height: 1.63;
	color: #454441;
}

.section-simple .section-group blockquote {
	padding: 0;
	margin: 0 0 26px;
	border: none;
	font-size: 16px;
	line-height: 1.5;
	color: #454441;
}

.section-simple .section-group blockquote cite {
	display: block;
	font-size: 13px;
	line-height: 1.54;
	font-weight: 700;
	font-style: normal;
}

.section-simple .section-video-holder {
	height: 396px;
	margin: 28px 0 0 10px;
}

.section-simple .section-entry p {
	max-width: 1040px;
	font-size: 20px;
}

.section-simple .section-actions {
	margin: 20px 0 27px;
}

@media (max-width: 1249px) {
	.section-simple .section-aside {
		margin-right: 30px;
	}
}

@media (max-width: 1023px) {
	.section-simple {
		padding-top: 0;
	}

	.section-simple:before {
		display: none;
	}

	.section-simple .section-inner {
		padding: 27px 0 0;
	}

	.section-simple .section-inner > .divider {
		margin: 20px 0 27px;
	}

	.section-simple .section-head {
		padding: 0 10px;
	}

	.section-simple .section-aside {
		float: none;
		display: block;
		width: auto;
		margin-right: 0;
	}

	.section-simple .section-content .divider:first-child {
		margin: 20px 0;
	}

	.section-simple .section-content .divider {
		margin: 30px 0;
	}

	.section-simple .section-video-holder {
		height: 0;
	}
}

@media (max-width: 767px) {
	.section-simple .section-inner {
		padding-top: 20px;
	}

	.section-simple .section-inner > .divider {
		margin: 32px 0 16px;
	}

	.section-simple .section-title {
		font-size: 20px;
		line-height: 1.5;
	}

	.section-simple .section-head {
		padding: 0;
	}

	.section-simple .section-content .divider:first-child {
		margin: 0;
	}

	.section-simple .section-content .divider {
		margin: 20px 0;
	}
}

.section-simple-white {
	padding-top: 0;
	background-color: #fff;
}

.section-simple-white:before {
	display: none;
}

.section-simple-white .section-inner {
	padding-top: 0;
}

.section-simple-alt {
	padding-bottom: 48px;
}

.section-simple-alt .section-inner {
	padding-top: 60px;
}

@media (max-width: 1023px) {
	.section-simple-alt .section-inner {
		padding-top: 20px;
	}
}

.section-simple .section-inner-alt {
	padding: 49px 53px 0;
}

.section-simple .section-inner-alt h1 {
	margin-bottom: 23px;
}

@media (max-width: 1023px) {
	.section-simple .section-inner-alt {
		padding: 27px 0 0;
	}

	.section-simple .section-inner-alt .book .book-content-small {
		margin-bottom: 20px;
	}
}

/* ------------------------------------------------------------ * Section Author
\* ------------------------------------------------------------ */
.single-crb_author .section-simple .section-inner,
.section-author .section-inner {
	padding: 26px 49px;
}

@media (max-width: 1023px) {
	.single-crb_author .section-simple .section-inner,
	.section-author .section-inner {
		padding: 31px 0 20px;
	}
}

@media (max-width: 767px) {
	.single-crb_author .section-simple .section-inner,
	.section-author .section-inner {
		padding: 14px 0 12px;
	}
}

/* ------------------------------------------------------------ * Section Default
\* ------------------------------------------------------------ */
.section-default {
	position: relative;
	padding: 56px 0 27px;
	background-color: #f5f2ee;
}

.section-default .section-entry {
	max-width: 870px;
	margin: 0 auto 20px;
	text-align: left;
}

.section-default .section-entry p {
	font-size: 20px;
	line-height: 1.5;
	text-align: left;
}

.section-default .section-actions {
	padding-top: 9px;
}

.section-default.triangle-down:after {
	bottom: -21px;
	border-color: #f5f2ee transparent transparent transparent;
}

.section-default .container > .select-holder .jcf-select {
	margin-top: 20px;
	background-color: #fff;
}

.section-default .container > .select-holder .jcf-select .jcf-select-text {
	color: #acaaa3;
}

@media (max-width: 1249px) {
	.section-default .text-center {
		text-align: center;
	}
}

@media (max-width: 1023px) {
	.section-default {
		padding: 52px 0 27px;
	}

	.section-default h1 {
		margin-bottom: 18px;
		text-align: left;
	}

	.section-default.triangle-down:after {
		content: '';
		display: block !important;
	}
}

@media (max-width: 767px) {
	.section-default {
		padding: 44px 0 20px;
	}

	.section-default h1 {
		margin-bottom: 14px;
	}
}

/* ------------------------------------------------------------ * Section Book
\* ------------------------------------------------------------ */
.section-book {
	margin-bottom: 2px;
}

.top-image > .section-image,
.section-book > .section-image {
	position: relative;
	z-index: 1;
	margin-top: -50px;
}

.top-image > .section-image img,
.section-book > .section-image img {
	width: 100%;
}

.top-image > .section-image:before,
.section-book > .section-image:before {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	height: 416px;
	background-color: #f5f2ee;
}

.section-book.triangle-down {
	z-index: 5;
}

.section-book.triangle-down:after {
	bottom: -31px;
}

.top-image .section-inner,
.section-book .section-inner-alt {
	padding-top: 38px;
	margin-top: -70px;
}

.section-book-alt .section-inner .book-info .divider {
	display: none;
}

@media (max-width: 1023px) {
	.top-image > .section-image,
	.section-book > .section-image {
		margin-top: 0;
	}

	.top-image .section-inner,
	.section-book .section-inner-alt {
		margin-top: -128px;
	}
}

@media (max-width: 767px) {
	.top-image .section-inner,
	.section-book .section-inner-alt {
		margin-top: -60px;
	}

	.top-image > .section-image:before,
	.section-book.section-book-alt .section-image:before {
		display: none;
	}
}

/* ------------------------------------------------------------ * Section Dark
\* ------------------------------------------------------------ */
.section-dark {
	padding: 82px 0;
	background-color: #514f4d;
	color: #f5f2ee;
}

.section-dark .section-inner {
	max-width: 1094px;
	margin: 0 auto;
}

.section-dark.section:after {
	border-color: #514f4d transparent transparent transparent;
}

/* ------------------------------------------------------------ * Gird
\* ------------------------------------------------------------ */
.grid {
	position: relative;
	margin-right: -35px;
	font-size: 0;
}

.grid + .divider {
	margin: 20px 0 15px;
}

.grid + .divider:last-child {
	margin-bottom: 50px;
}

.grid .grid-item {
	display: inline-block;
	width: 194px;
	margin-right: 35px;
	vertical-align: top;
}

.grid .grid-item > a {
	display: block;
	text-decoration: none;
}

.grid .grid-image {
	max-height: 300px;
	margin: 0;
	line-height: 300px;
}

.grid .grid-content {
	position: relative;
	padding-top: 24px;
	font-family: 'Adobe Caslon Pro', serif;
	text-align: center;
}

.grid .grid-title {
	display: inline-block;
	margin-bottom: 5px;
	line-height: 1;
	color: #8b8982;
}

.grid .grid-title span {
	display: block;
	border-bottom: 1px dotted transparent;
	margin-bottom: 3px;
}

.grid .grid-meta {
	display: block;
	font-size: 13px;
	line-height: 1.14;
	color: #454441;
}

.grid .grid-meta a,
.grid .grid-meta span {
	border-bottom: 1px dotted transparent;
	color: #8b8982;
	font-style: normal;
}

.grid .grid-date {
	visibility: hidden;
	position: absolute;
	bottom: 80%;
	left: 19px;
	right: 19px;
	padding-top: 10px;
	margin: 0 0 -6px;
	background-color: #fff;
	font-family: "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	font-size: 12px;
	color: #a5a39b;
	text-transform: uppercase;
	opacity: 0;
	-webkit-transition: opacity .3s, bottom .3s, visibility .3s;
	transition: opacity .3s, bottom .3s, visibility .3s;
}

.grid .grid-item:hover .grid-date {
	visibility: visible;
	bottom: 100%;
	opacity: 1;
}

.grid .grid-item:hover span {
	border-color: currentColor;
}

.grid .grid-link {
	position: relative;
	display: inline-block;
	padding-right: 16px;
	font-family: "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	font-size: 13px;
	line-height: 1.4;
	color: #a5a39b;
	font-weight: 900;
	vertical-align: middle;
	text-transform: uppercase;
}

.grid .grid-link:hover {
	color: #a5a39b;
}

.grid .grid-link:after, .grid .grid-link:before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 10px;
	height: 2px;
	background-color: #a5a39b;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: -webkit-transform .3s;
	transition: -webkit-transform .3s;
	transition: transform .3s;
	transition: transform .3s, -webkit-transform .3s;
}

.grid .grid-link:before {
	right: 4px;
	width: 2px;
	height: 10px;
}

.grid .grid-link:hover:before, .grid .grid-link:hover:after {
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}

.grid .grid-content-actions {
	padding-top: 36px;
}

.grid .grid-content-actions .btn + .btn {
	margin-left: 14px;
}

@media (max-width: 1249px) {
	.grid {
		margin-right: -2.5%;
	}

	.grid + .divider {
		margin: 24px 0 26px;
	}

	.grid .grid-item {
		width: 22.5%;
		margin-right: 2.5%;
	}

	.grid .grid-image {
		max-height: none;
		line-height: 1;
	}

	.grid .grid-content {
		padding-top: 19px;
	}

	.grid .grid-title {
		margin-bottom: 7px;
	}
}

@media (max-width: 1023px) {
	.grid {
		margin-bottom: 20px;
	}

	.grid + .divider:last-child {
		display: none;
	}

	.grid .grid-content-actions .btn {
		margin-bottom: 8px;
	}

	.grid .grid-content-actions .btn + .btn {
		margin-left: 0;
	}
}

@media (max-width: 767px) {
	.grid {
		margin-right: -2.5%;
	}

	.grid + .divider {
		display: none;
	}

	.grid .grid-item {
		width: 47.5%;
		margin: 0 2.5% 25px 0;
	}

	.grid .grid-link {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		font-size: 0;
		padding-right: 0;
	}

	.grid .grid-link:after, .grid .grid-link:before {
		display: none;
	}
}

#wrapper .grid-image img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

#wrapper .grid-list-alt .grid-image img {
	width: auto;
	max-width: 100%;
}

/* Modifiers */
.grid-list {
	padding-bottom: 30px;
	margin-right: 0;
}

.grid-list .divider {
	margin-bottom: 15px;
}

.grid-list .divider:last-child {
	margin-bottom: 50px;
}

.grid-list .grid-item {
	overflow: hidden;
	display: block;
	width: auto;
	margin: 0 0 21px;
}

.grid-list .grid-image {
	float: left;
	width: 194px;
	margin-right: 30px;
	max-height: none;
}

.grid-list .grid-image figcaption {
	position: relative;
	padding: 18px 23px 20px;
	margin-top: 19px;
	background-color: #f5f2ee;
	line-height: 1;
	text-align: center;
}

.grid-list .grid-image figcaption:before {
	content: '';
	position: absolute;
	top: 3px;
	right: 3px;
	bottom: 3px;
	left: 3px;
	border: 2px solid #a5a39b;
	background-color: #e9e6e2;
}

.grid-list .grid-image figcaption > h3 {
	position: relative;
	z-index: 2;
	margin: 0 0 20px;
	font-family: "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	font-size: 15px;
	line-height: 1;
	color: #514f4d;
	font-weight: 900;
	text-transform: uppercase;
}

.grid-list .grid-image figcaption > img {
	position: relative;
	z-index: 2;
}

.grid-list .grid-image figcaption > .btn {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	padding: 5px 19px 3px;
	margin-top: 10px;
}

.grid-list .grid-content {
	overflow: hidden;
	padding-top: 10px;
	font-size: 16px;
	line-height: 1.63;
	text-align: left;
}

.grid-list .grid-content-alt {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	padding: 5px 0 13px;
}

.grid-list .grid-content-alt h2 {
	margin-bottom: 20px;
	font-family: "adobe-caslon-pro", "Times New Roman", "Times", "Baskerville", "Georgia", serif;
	font-size: 16px;
	line-height: 1.63;
	color: #454441;
	font-weight: 700;
}

.grid-list .grid-content-alt blockquote {
	padding: 0;
	margin: 0 0 20px;
	border: none;
}

.grid-list .grid-content-alt cite {
	display: block;
	font-style: normal;
}

.grid-list .grid-content-alt .grid-entry {
	width: calc(100% - 278px);
}

.grid-list .grid-content-box {
	position: relative;
	margin: 10px 0 8px;
	width: 247px;
	border: 2px solid #d6d6d6;
}

.grid-list .grid-content-box:before, .grid-list .grid-content-box:after {
	content: '';
	position: absolute;
	left: 50%;
	width: 14px;
	height: 14px;
	border: 2px solid #d6d6d6;
	margin-left: -7px;
	background-color: #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.grid-list .grid-content-box:before {
	top: -8px;
}

.grid-list .grid-content-box:after {
	bottom: -8px;
}

.grid-list .grid-content-box h5 {
	padding: 10px 20px;
	margin: 0;
	background-color: #f5f2ee;
	font-family: "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	font-weight: 700;
	text-transform: uppercase;
}

.grid-list .grid-content-box ul {
	padding: 0;
	margin: 0 0 8px;
	list-style: none outside none;
}

.grid-list .grid-content-box li {
	border-top: 1px solid #e2e2e2;
}

.grid-list .grid-content-box ul a {
	position: relative;
	display: block;
	padding: 14px 5px 10px 39px;
	font-family: "adobe-caslon-pro", "Times New Roman", "Times", "Baskerville", "Georgia", serif;
	font-size: 14px;
	line-height: 1.29;
}

.grid-list .grid-content-box ul i {
	position: absolute;
	top: 50%;
	left: 16px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.grid-list .grid-date {
	position: static;
	visibility: visible;
	opacity: 1;
	padding: 0;
	margin: 0 0 6px;
}

.grid-list .grid-meta {
	margin-bottom: 11px;
}

.grid-list .grid-meta + p {
	margin-bottom: 11px;
}

.grid-list .grid-title {
	margin-bottom: 4px;
	font-size: 28px;
	line-height: 1.43;
	text-align: left;
}

@media (max-width: 1249px) {
	.grid-list .grid-content-alt .grid-entry {
		width: calc(100% - 200px);
	}

	.grid-list .grid-content-box {
		width: 180px;
	}
}

@media (max-width: 1249px) and (max-width: 1023px) {
	.grid-list {
		margin-right: 0;
	}

	.grid-list .grid-item {
		margin-right: 0;
	}
}

@media (max-width: 1023px) {
	.grid-list .grid-content-alt {
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
	}

	.grid-list .grid-content-alt .grid-entry {
		width: 100%;
	}

	.grid-list .grid-content-box {
		width: 100%;
	}

	.grid-list .grid-content-box ul {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}

	.grid-list .grid-content-box ul li {
		width: 50%;
	}

	.grid-list .grid-content-box ul li:nth-child(even) {
		border-left: 1px solid #e2e2e2;
	}

	.grid-list .grid-content-box ul a {
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
	}
}

@media (max-width: 767px) {
	.grid-list {
		margin-right: -2.5%;
		padding-bottom: 0;
	}

	.grid-list .divider {
		display: none;
	}

	.grid-list .grid-item {
		display: inline-block;
		width: 47.5%;
		margin: 0 2.5% 25px 0;
	}

	.grid-list .grid-image {
		float: none;
		width: auto;
		margin-right: 0;
	}

	.grid-list .grid-image figcaption {
		padding-right: 172px;
	}

	.grid-list .grid-image figcaption img {
		position: absolute;
		top: 50%;
		right: 20px;
		max-width: 119px;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	.grid-list .grid-content {
		overflow: visible;
		text-align: center;
		padding-top: 20px;
	}

	.grid-list .grid-content-alt h2 {
		margin-top: 21px;
	}

	.grid-list .grid-date {
		visibility: hidden;
		position: absolute;
		padding-top: 10px;
		margin: 0 0 -6px;
		opacity: 0;
		text-align: center;
	}

	.grid-list .grid-title {
		font-size: 16px;
		line-height: 1.3;
		text-align: center;
	}

	.grid-list .grid-meta {
		margin-bottom: 0;
	}

	.grid-list .grid-meta ~ p {
		display: none;
	}

	.grid-list .grid-content-box {
		margin: 30px 0 20px;
	}

	.grid-list .grid-content-box ul li {
		width: 100%;
	}

	.grid-list .grid-content-box ul li:nth-child(even) {
		border-left: none;
	}
}

@media (max-width: 1023px) {
	.grid-list-alt .grid-content {
		padding-top: 0;
	}
}

@media (max-width: 767px) {
	.grid-list-alt {
		margin-right: 0;
	}

	.grid-list-alt .grid-item {
		width: 100%;
		margin: 0 0 15px 0;
	}

	.grid-list-alt .grid-image {
		margin-bottom: 22px;
	}

	.grid-list-alt .grid-image img {
		width: auto;
		max-width: 100%;
	}

	.grid-list-alt .grid-content {
		text-align: left;
	}

	.grid-list-alt .grid-title {
		font-size: 28px;
		line-height: 1.43;
	}

	.grid-list-alt .grid-meta ~ p {
		display: block;
		padding-right: 10px;
		margin-top: 20px;
		font-size: 16px;
		line-height: 1.63;
	}

	.grid-list-alt .grid-link {
		position: relative;
		display: inline-block;
		width: auto;
		font-size: 13px;
	}

	.grid-list-alt .grid-link:after, .grid-list-alt .grid-link:before {
		display: block;
	}

	.grid-list-alt .divider {
		display: block;
	}

	.grid-list-alt .divider:last-child {
		margin-bottom: 20px;
	}
}

.grid-small {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: flex-start;
	padding: 30px 53px 0;
	margin-right: -60px;
}

.grid-small .grid-item {
	display: block;
	width: 197px;
	margin: 0 30px 30px 0;
}

.grid-small .grid-date {
	bottom: 100%;
	background-color: #fff;
}

.grid-small .grid-content {
	padding: 20px 0 12px;
}

.grid-small .grid-item:hover .grid-content {
	background-color: #fff;
}

/* .grid-small .grid-item span {
    border: none; } */
@media (max-width: 1023px) {
	.grid-small {
		width: 644px;
		padding: 0;
		margin: 0 auto;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}

	.grid-small .grid-item {
		margin-bottom: 37px;
		width: 194px;
	}
/*
	.grid-small .grid-item:nth-child(n+2) {
		margin-left: 25px;
	}*/
	.grid-small .grid-item:nth-child(3n) {
		margin-right: 0;
	}

	.grid-small .grid-item:nth-child(3n+1) {
		margin-left: 0;
	}
}

@media (max-width: 767px) {
	.grid-small {
		width: 196px;
	}
	.grid-small .grid-item {
		width: 196px;
		margin: 0 0 37px;
	}
	.grid-small .grid-item:nth-child(3n),
	.grid-small .grid-item:nth-child(3n+1) {
		margin: 0 0 37px;
	}
/*	.grid-small .grid-item:nth-child(n+2) {
		margin-left: 0;
	}*/
}

.grid-small-nowrap {
	overflow-x: auto;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	font-size: 0;
}

@media (max-width: 1249px) {
	.grid-small-nowrap {
		padding-left: 0;
		padding-right: 0;
		margin-right: -30px;
	}

	.grid-small-nowrap .grid-item {
		margin-right: 30px;
	}
}

@media (max-width: 1023px) {
	.grid-small-nowrap {
		display: block;
		width: auto;
		padding-top: 40px;
		white-space: nowrap;
		font-size: 0;
	}

	.grid-small-nowrap .grid-item {
		display: inline-block;
		margin-right: 30px;
		white-space: normal;
	}

	.grid-small-nowrap .grid-item:nth-child(n+2) {
		margin: 0 30px 0 0;
	}
}

.grid-simple .grid-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 20px 0;
	border-bottom: 1px solid #d6d6d6;
}

.grid-simple .grid-item:last-child {
	border-bottom: none;
}

.grid-simple .grid-image {
	width: 128px;
	border: 1px solid #e1e1e1;
	margin: 0 71px 0 0;
}

.grid-simple .grid-image a {
	display: block;
}

.grid-simple .grid-image img {
	width: 100%;
	height: auto;
}

.grid-simple .grid-content {
	width: calc(100% - 198px);
	margin-bottom: 12px;
}

.grid-simple .grid-meta {
	display: block;
	margin-bottom: 18px;
	font-size: 13px;
	line-height: 1.54;
}

.grid-simple .grid-meta a {
	color: #8b8982;
	font-style: normal;
	-webkit-transition: opacity .3s;
	transition: opacity .3s;
}

.grid-simple .grid-meta a:hover {
	opacity: .7;
}

.grid-simple .grid-content h1 {
	margin-bottom: 0;
	color: #8b8982;
	text-align: left;
}

.grid-simple .grid-content h1 a {
	text-decoration: none;
}

.grid-simple .grid-content h1 a:hover {
	text-decoration: underline;
}

.grid-simple .grid-content p {
	font-size: 16px;
	line-height: 1.63;
}

.grid-simple .grid-item-author .grid-image {
	overflow: hidden;
	position: relative;
	border-radius: 50%;
}

.grid-simple .grid-item-author .grid-image img {
	border-radius: 50%;
}

.grid-simple .grid-item-author .grid-image:before {
	content: '';
	position: absolute;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
	z-index: 2;
	border: 4px solid #f5f2ee;
	border-radius: 50%;
}

.grid-simple .grid-item-author .grid-image:after {
	content: '';
	position: absolute;
	top: 3px;
	right: 3px;
	bottom: 3px;
	left: 3px;
	border: 3px solid #fff;
	border-radius: 50%;
}

.grid-simple .grid-item-author p {
	margin-top: 8px;
}

@media (max-width: 767px) {
	.grid-simple {
		margin-right: 0;
	}

	.grid-simple .grid-item {
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
	}

	.grid-simple .grid-image {
		margin: 0 0 20px;
	}

	.grid-simple .grid-item-author .grid-image {
		width: 180px;
	}

	.grid-simple .grid-content {
		width: 100%;
	}

	.grid-simple .grid-content h1 {
		font-size: 20px;
	}

	.grid-simple .grid-content p {
		font-size: 14px;
	}
}

.grid-books {
	padding-bottom: 86px;
}

.grid-books .grid-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	width: 100%;
	margin-bottom: 48px;
}

.grid-books .grid-item ~ .grid-item {
	margin-top: 44px;
}

.grid-books .grid-image {
	width: 340px;
	max-height: none;
	margin-right: 60px;
	line-height: 1;
}

.grid-books .grid-content {
	max-width: calc(100% - 400px);
	padding: 0 20px 0 0;
	text-align: left;
}

.grid-books .grid-title {
	margin-bottom: 13px;
	line-height: 1.25;
	color: #454441;
}

.grid-books .grid-meta,
.grid-books p {
	font-size: 16px;
	line-height: 1.5;
	color: #646260;
}

.grid-books .grid-meta a {
	color: #8b8982;
}

.grid-books .grid-content-actions {
	padding-top: 16px;
}

.grid-books h2 {
	margin-bottom: 10px;
	font-weight: 700;
	color: #454441;
}

.grid-books h2 ~ h2 {
	margin-top: -4px;
}

.grid-books p {
	margin-bottom: 20px;
	color: #454441;
}

@media (max-width: 1023px) {
	.grid-books {
		margin-top: 50px;
		padding-bottom: 0;
	}
}

@media (max-width: 767px) {
	.grid-books {
		margin-right: 0;
	}

	.grid-books .grid-item {
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
		margin-bottom: 20px;
	}

	.grid-books .grid-item ~ .grid-item {
		margin-top: 20px;
	}

	.grid-books .grid-image {
		margin: 0 0 20px;
	}

	.grid-books .grid-content {
		max-width: none;
		width: 100%;
		padding: 0;
	}

	.grid-books .grid-title {
		font-size: 20px;
	}

	.grid-books h2 {
		font-size: 14px;
	}

	.grid-books .grid-meta,
	.grid-books p {
		font-size: 14px;
	}
}

/* ------------------------------------------------------------ * Widgets
\* ------------------------------------------------------------ */
.widgets {
	padding-left: 0;
	list-style: none outside none;
}

/* ------------------------------------------------------------ * Widget Simple
\* ------------------------------------------------------------ */
.widget-simple {
	padding-bottom: 19px;
}

.widget-simple .widget-head {
	border-top: 2px solid #d6d6d6;
	border-bottom: 2px solid #d6d6d6;
	margin-bottom: 17px;
	cursor: pointer;
	position: relative;
}

.widget-simple .widget-title {
	margin: 8px 0 2px;
	font-family: "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	line-height: 1.95;
	color: #514f4d;
	text-transform: uppercase;
	font-weight: 900;
	letter-spacing: .03em;
	position: relative;
	padding-right: 30px;
}

/* Arrow indicator for desktop view */
.widget-simple .widget-title:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 7px solid #514f4d;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: -webkit-transform .3s;
	transition: -webkit-transform .3s;
	transition: transform .3s;
	transition: transform .3s, -webkit-transform .3s;
}

/* Rotate arrow when active */
.widget-simple .widget-head.active .widget-title:after {
	-webkit-transform: translateY(-50%) rotate(180deg);
	transform: translateY(-50%) rotate(180deg);
}

.widget-simple ul {
	padding-left: 0;
}

.widget-simple .radio-dropdown {
	display: none;
	margin: 13px 0 0 24px;
}

@media (max-width: 1023px) {
	.widget-simple {
		padding-bottom: 0;
		border-bottom: 1px solid #d6d6d6;
	}

	.widget-simple:last-child {
		border-bottom: none;
	}

	.widget-simple .widget-title {
		position: relative;
		padding: 24px 30px 22px 10px;
		margin: 0;
		-webkit-transition: padding .3s;
		transition: padding .3s;
	}

	/* Override desktop arrow styles for mobile */
	.widget-simple .widget-title:after {
		border: none;
		width: 7px;
		height: 12px;
		right: 14px;
		background: url(images/ico-arrow-right.png) 0 0 no-repeat;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		-webkit-transition: -webkit-transform .3s, -webkit-transform-origin .3s;
		transition: -webkit-transform .3s, -webkit-transform-origin .3s;
		transition: transform .3s, transform-origin .3s;
		transition: transform .3s, transform-origin .3s, -webkit-transform .3s, -webkit-transform-origin .3s;
	}

	.widget-simple .widget-head {
		border: none;
		margin-bottom: 0;
	}

	.widget-simple .widget-head.active .widget-title {
		padding-bottom: 13px;
	}

	.widget-simple .widget-head.active .widget-title:after {
		-webkit-transform: rotate(90deg) translateY(-50%);
		transform: rotate(90deg) translateY(-50%);
		-webkit-transform-origin: center top;
		transform-origin: center top;
	}
}

/* ------------------------------------------------------------ * List
\* ------------------------------------------------------------ */
[class^='list-'] {
	list-style: none outside none;
}

/* ------------------------------------------------------------ * List Radios
\* ------------------------------------------------------------ */
.list-radios li {
	margin-bottom: 11px;
}

/* ------------------------------------------------------------ * List Simple
\* ------------------------------------------------------------ */
.list-simple {
	padding: 0;
	margin: 0;
}

.list-simple > li {
	overflow: hidden;
	margin-bottom: 36px;
}

.page-template-default .entry-title,
.list-simple h1 {
	float: left;
	width: 322px;
	margin-right: 52px;
	text-align: left;
}

.page-template-default .entry-content,
.list-simple div {
	overflow: hidden;
	padding-top: 2px;
}

.page-template-default .entry-content {
	font-size: 16px;
}

.list-simple ul {
	list-style: none outside none;
}

.list-simple ul li {
	overflow: hidden;
}

.list-simple ul span:first-child {
	float: left;
	width: 68px;
	padding-right: 0;
}

.list-simple ul span {
	overflow: hidden;
	display: block;
	padding-right: 10px;
}

.list-simple p {
	margin-bottom: 0;
	font-size: 18px;
	line-height: 1.63;
	color: #454441;
}

.list-simple div > p,
.list-simple div > ul {
	margin-bottom: 20px;
	padding-left: 0;
}

.list-simple h2 {
	margin: 0;
	font-family: "adobe-caslon-pro", "Times New Roman", "Times", "Baskerville", "Georgia", serif;
	font-size: 20px;
	line-height: 1.5;
	color: #514f4d;
	font-weight: 600;
}

.list-simple h2 ~ h2 {
	margin-top: -5px;
}

.list-simple .divider {
	margin-top: 14px;
}

@media (max-width: 1023px) {
	.list-simple > li {
		margin-bottom: 26px;
	}

	.list-simple h1 {
		float: none;
		width: auto;
		margin: 0 0 6px;
	}

	.list-simple h2 {
		margin-top: 5px;
	}

	.list-simple h2 ~ h2 {
		margin-top: -3px;
	}

	.list-simple .divider {
		margin-top: 4px;
	}
}

@media (max-width: 767px) {
	.list-simple .divider {
		margin-top: -2px;
	}

	.list-simple h2 {
		margin-top: 0;
	}

	.list-simple h2 ~ h2 {
		margin-top: -5px;
	}
}

/* ------------------------------------------------------------ * List Actions
\* ------------------------------------------------------------ */
.list-actions {
	padding-left: 4px;
	margin-bottom: 18px;
	font-size: 0;
}

.list-actions li {
	position: relative;
	display: inline-block;
}

.list-actions li + li {
	padding-left: 18px;
	margin-left: 18px;
}

.list-actions li + li:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 2px;
	height: 13px;
	background-color: #d6d6d6;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.list-actions a {
	font-family: "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	font-size: 13px;
	line-height: 1.3;
	color: #a5a39b;
	font-weight: 900;
	text-transform: uppercase;
}

.list-actions i {
	margin-right: 5px;
}

@media (max-width: 767px) {
	.list-actions {
		padding-left: 0;
	}
}

/* ------------------------------------------------------------ * List Links
\* ------------------------------------------------------------ */
.list-links {
	padding-left: 0;
}

.list-links li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 8px;
}

.list-links li:before {
	content: '';
	position: absolute;
	top: 10px;
	left: 0;
	width: 6px;
	height: 6px;
	background-color: #a5a39b;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
}

.list-links a {
	font-family: "adobe-caslon-pro", "Times New Roman", "Times", "Baskerville", "Georgia", serif;
	font-size: 18px;
	line-height: 1.5;
	color: #8b8982;
	font-weight: 300;
}

@media (max-width: 1023px) {
	.list-links li {
		margin-bottom: 5px;
	}
}

.list-links-light li:before {
	background-color: #a5a39b;
}

.list-links-light a {
	color: #a5a39b;
}

/* ------------------------------------------------------------ * List Contacts
\* ------------------------------------------------------------ */
.list-contacts {
	max-width: 870px;
	margin: 0 auto 10px;
	padding-left: 0;
}

.list-contacts > li {
	margin-bottom: 34px;
	font-family: "adobe-caslon-pro", "Times New Roman", "Times", "Baskerville", "Georgia", serif;
	font-size: 16px;
	line-height: 1.5;
	color: #454441;
}

.list-contacts > li:last-child {
	margin-bottom: 0;
}

.list-contacts li h2 {
	max-width: none;
	margin: 0 0 5px;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 700;
}

.list-contacts li > p {
	margin-top: 6px;
}

.list-contacts address {
	margin: 0;
	font-style: normal;
}

.list-contacts a {
	color: inherit;
}

.list-contacts a[href^="mailto"] {
	color: #8b8982;
}

/* ------------------------------------------------------------ * List Bullets
\* ------------------------------------------------------------ */
.list-bullets {
	padding-left: 0;
}

.list-bullets li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 0;
}

.list-bullets li:before {
	content: '';
	position: absolute;
	top: 5px;
	left: 0;
	width: 6px;
	height: 6px;
	background-color: #a5a39b;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.list-bullets p {
	margin-bottom: 0;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 400;
}

/* ------------------------------------------------------------ * List Meta Info
\* ------------------------------------------------------------ */
.list-meta-info {
	padding-left: 0;
	font-size: 0;
}

.list-meta-info li {
	display: inline-block;
	width: 50%;
	margin-bottom: 16px;
	font-family: "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	font-size: 14px;
	line-height: 1.3;
	font-weight: 400;
	color: #a5a39b;
	vertical-align: top;
}

.list-meta-info strong {
	display: block;
	color: #514f4d;
}

/* Modifiers */
.list-meta-info-alt li {
	width: 33.33%;
}

.list-meta-info-alt p,
.list-meta-info-alt strong {
	margin-bottom: 5px;
	font-family: "adobe-caslon-pro", "Times New Roman", "Times", "Baskerville", "Georgia", serif;
	font-size: 20px;
	line-height: 1.5;
	color: #454441;
	font-weight: 700;
}

.list-meta-info-alt p {
	font-weight: 400;
}

@media (max-width: 1023px) {
	.list-meta-info-alt li {
		width: 50%;
		margin-bottom: 36px;
	}

	.list-meta-info-alt p {
		padding-right: 10px;
	}
}

@media (max-width: 767px) {
	.list-meta-info-alt li {
		width: 100%;
	}

	.list-meta-info-alt li:last-child {
		margin-bottom: 0;
	}

	.list-meta-info-alt p {
		padding-right: 10px;
	}
}

/* ------------------------------------------------------------ * List Partners
\* ------------------------------------------------------------ */
.list-partners {
	font-size: 0;
}

.list-partners li {
	display: inline-block;
	width: 50%;
	margin-bottom: 26px;
	vertical-align: middle;
}

.list-partners li img {
	-webkit-filter: grayscale(0); /* Safari 6.0 - 9.0 */
	filter: grayscale(0);

}

.list-partners li:hover img {
	opacity: 1;
	-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
	filter: grayscale(100%);
	opacity: 0.6;
}

.list-partners a {
	display: block;
}

.list-partners img + img {
	display: none;
}

/* ------------------------------------------------------------ * List Imprints
\* ------------------------------------------------------------ */
.list-imprints {
	padding-left: 0;
}

.list-imprints li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	padding-top: 8px;
	margin-bottom: 28px;
	font-size: 16px;
	line-height: 1.63;
}

.list-imprints li > div {
	width: calc(100% - 382px);
}

.list-imprints figure {
	width: 382px;
	padding-top: 10px;
	margin: 0;
	text-align: center;
}

.list-imprints h1 {
	margin-bottom: 7px;
	text-align: left;
}

.list-imprints p {
	margin-bottom: 20px;
}

.list-imprints .divider {
	margin-top: 44px;
}

@media (max-width: 1023px) {
	.list-imprints li {
		padding-top: 0;
		margin-bottom: 46px;
	}

	.list-imprints li:last-child {
		margin-bottom: 0;
	}

	.list-imprints li > div {
		width: calc(100% - 110px);
	}

	.list-imprints figure {
		width: 80px;
		padding-top: 8px;
		margin-right: 30px;
	}

	.list-imprints .divider {
		margin-left: -110px;
	}
}

@media (max-width: 767px) {
	.list-imprints {
		padding-top: 26px;
	}

	.list-imprints li {
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
		margin-bottom: 12px;
	}

	.list-imprints li > div {
		width: 100%;
	}

	.list-imprints figure {
		margin-bottom: 23px;
	}

	.list-imprints .divider {
		margin: 25px 0 0;
	}
}

/* ------------------------------------------------------------ * Form Elements
\* ------------------------------------------------------------ */
/* Radio */
.radio {
	position: relative;
}

.radio input {
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

.radio .form-label {
	position: relative;
	display: inline-block;
	padding: 2px 0 0 26px;
	font-size: 14px;
	line-height: 1.2;
	cursor: pointer;
}

.radio .form-label:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 16px;
	height: 16px;
	border: 2px solid #c9c8c3;
	border-radius: 50%;
	margin-top: -2px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.radio .form-label:after {
	content: '';
	visibility: hidden;
	position: absolute;
	top: 50%;
	left: 5px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #a5a39b;
	margin-top: -2px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	opacity: 0;
	-webkit-transition: opacity .4s, visibility .4s;
	transition: opacity .4s, visibility .4s;
}

.radio input:checked + .form-label:after {
	visibility: visible;
	opacity: 1;
}

/* Select Alt */
.select-alt + .jcf-select {
	display: inline-block;
	height: 41px;
	border: 2px solid #d6d6d6;
	background-color: #fff;
}

.select-alt + .jcf-select .jcf-select-text {
	margin: 0 35px 0 19px;
	font-size: 15px;
	line-height: 2.47;
	color: #a5a39b;
}

.select-alt + .jcf-select .jcf-select-text:before,
.select-alt + .jcf-select-text:before {
	display: none;
}

.select-alt + .jcf-select .jcf-select-opener {
	border-color: transparent #a5a39b #a5a39b transparent;
}

.waypoint-holder .jcf-select {
	display: inline-block;
	height: 41px;
	border: 2px solid #d6d6d6;
	background-color: #fff;
}

.waypoint-holder .jcf-select .select-alt + .jcf-select-text {
	margin: 0 35px 0 19px;
	font-size: 15px;
	line-height: 2.47;
	color: #a5a39b;
}

.waypoint-holder .jcf-select .select-alt + .jcf-select-text:before {
	display: none;
}

.waypoint-holder .jcf-select .select-alt ~ .jcf-select-opener {
	border-color: transparent #a5a39b #a5a39b transparent;
}

.waypoint-holder .jcf-select[class*="jcf-drop-active"] .jcf-select-opener {
	top: 11px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.waypoint-holder .jcf-select[class*="jcf-drop-active"] .jcf-select-opener {
	top: 17px;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

.head-of-section-alt .jcf-select {
	display: inline-block;
	height: 31px;
	border: 2px solid #d6d6d6;
	background-color: #fff;
	margin-bottom: 12px;
}

.head-of-section-alt .jcf-select .nav-select + .jcf-select-text {
	margin: 0 35px 0 8px;
	font-size: 15px;
	line-height: 1.8;
	color: #a5a39b;
}

.head-of-section-alt .jcf-select .nav-select + .jcf-select-text:before {
	display: none;
}

.head-of-section-alt .jcf-select .nav-select ~ .jcf-select-opener {
	top: 6px;
	border-color: transparent #a5a39b #a5a39b transparent;
}

.head-of-section-alt .jcf-select[class*="jcf-drop-active"] .jcf-select-opener {
	top: 6px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.head-of-section-alt .jcf-select[class*="jcf-drop-active"] .jcf-select-opener {
	top: 17px;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

/* ------------------------------------------------------------ * Filters
\* ------------------------------------------------------------ */
@media (max-width: 1023px) {
	.filters {
		position: relative;
		float: left;
		margin-right: 19px;
		text-align: left;
		-webkit-transition: margin .3s;
		transition: margin .3s;
	}

	.filters .filter-title {
		position: relative;
		z-index: 10;
		display: block;
		min-width: 166px;
		padding: 5px 30px 5px 11px;
		border: 1px solid #767472;
		background-color: #514f4d;
		font-family: "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
		font-size: 13px;
		line-height: 2;
		color: #f5f2ee;
		font-weight: 900;
		text-transform: uppercase;
		-webkit-transition: min-width .3s, padding .4s, margin .4s;
		transition: min-width .3s, padding .4s, margin .4s;
	}

	.filters .filter-title:after, .filters .filter-title:before {
		content: '';
		position: absolute;
		top: 50%;
		right: 12px;
		width: 12px;
		height: 2px;
		background-color: #d4d4d4;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		-webkit-transition: -webkit-transform .3s;
		transition: -webkit-transform .3s;
		transition: transform .3s;
		transition: transform .3s, -webkit-transform .3s;
	}

	.filters .filter-title:before {
		right: 17px;
		width: 2px;
		height: 12px;
	}

	.filters .widgets {
		visibility: hidden;
		position: absolute;
		top: 84px;
		left: 0;
		z-index: 99;
		width: 100%;
		border: 2px solid #d6d6d6;
		background-color: #fff;
		opacity: 0;
		-webkit-transition: top .3s, visibility .3s, opacity .3s;
		transition: top .3s, visibility .3s, opacity .3s;
	}

	.filters .list-radios li {
		margin-bottom: 2px;
	}

	.filters .radio .form-label {
		display: block;
		padding: 13px 10px 7px;
		-webkit-transition: background .3s, color .3s;
		transition: background .3s, color .3s;
	}

	.filters input:checked + .form-label,
	.filters .form-label:hover,
	.filters .form-label.active {
		background-color: #454441;
		color: #fff;
	}

	.filters .form-label:after,
	.filters .form-label:before {
		display: none;
	}

	.filters.active + * {
		display: none;
	}

	.filters.active .filter-title {
		min-width: 378px;
		padding: 14px 30px 20px 11px;
		margin: -8px 0 -21px;
	}

	.filters.active .filter-title:after, .filters.active .filter-title:before {
		-webkit-transform: translateY(-50%) rotate(45deg);
		transform: translateY(-50%) rotate(45deg);
	}

	.filters.active .widgets {
		visibility: visible;
		opacity: 1;
		top: 54px;
	}

	.filters .filter-inner .filter-title {
		display: none !important;
	}
}

@media (max-width: 767px) {
	.filters {
		width: 49%;
		margin: 0 2% 0 0;
	}

	.filters .widgets {
		visibility: visible;
		position: static;
		opacity: 1;
	}

	.filters .filter-inner {
		overflow-y: auto;
		position: fixed;
		top: 100%;
		bottom: 0;
		left: 0;
		z-index: 9999;
		width: 100%;
		background-color: #fff;
		-webkit-transition: top .4s;
		transition: top .4s;
	}

	.filters.active {
		position: static;
	}

	.filters.active .filter-title {
		width: 100%;
		min-width: 0;
		margin-right: 0;
	}

	.filters.active .widgets {
		position: static;
	}

	.filters.active > .filter-title {
		opacity: 0;
	}

	.filters.active .filter-inner .filter-title {
		padding: 5px 30px 25px 11px;
		margin: 0;
		background-color: #514f4d;
	}

	.filters.active .filter-inner .filter-title:after, .filters.active .filter-inner .filter-title:before {
		margin-top: -10px;
	}

	.filters.active .filter-inner {
		top: 0;
	}

	.filters .filter-title {
		width: 100%;
		min-width: 0;
		margin-right: 0;
	}

	.filters .filter-inner .filter-title {
		display: block !important;
	}
}

/* ------------------------------------------------------------ * Show Options
\* ------------------------------------------------------------ */
.show-options {
	display: inline-block;
	vertical-align: middle;
}

.show-options a,
.show-options span {
	position: relative;
	display: inline-block;
	padding: 0 12px;
	font-family: "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	font-size: 13px;
	line-height: 2;
	color: #a5a39b;
	font-weight: 900;
	vertical-align: middle;
}

.show-options span,
.show-options .active {
	color: #454441;
}

.show-options *:last-child {
	padding-right: 0;
}

.show-options * + *:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 2px;
	height: 14px;
	background-color: #cfcec9;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

/* ------------------------------------------------------------ * Socials
\* ------------------------------------------------------------ */
.socials {
	float: right;
	margin-top: -6px;
	font-size: 0;
}

.socials > span {
	display: inline-block;
	font-family: "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	font-size: 14px;
	line-height: 1.4;
	color: #a5a39b;
	font-weight: 700;
	text-transform: uppercase;
	vertical-align: middle;
	-webkit-transition: margin .3s;
	transition: margin .3s;
}

.socials > ul {
	overflow: hidden;
	display: inline-block;
	width: 0;
	border: none;
	margin: -9px 0;
	line-height: 1;
	vertical-align: middle;
	white-space: nowrap;
	-webkit-transition: border .3s, width .3s;
	transition: border .3s, width .3s;
}

.socials > ul li {
	display: inline-block;
}

.socials > ul li + li {
	border-left: 1px solid #81807e;
}

.socials > ul a {
	display: block;
	width: 50px;
	height: 44px;
	line-height: 44px;
	text-align: center;
	opacity: .5;
	-webkit-transition: opacity .3s;
	transition: opacity .3s;
}

.socials > ul a:hover {
	opacity: 1;
}

/*
.socials:hover > span {
	margin-right: 24px;
}

.socials:hover > ul {
	width: 204px;
	border: 1px solid #81807e;
}*/

.socials > span {
	margin-right: 24px;
}

.socials > ul {
	width: 204px;
	border: 1px solid #81807e;
}

@media (max-width: 1023px) {
	.socials {
		margin-top: 0;
	}

	.socials > ul {
		margin: -4px 0;
	}
}

@media (max-width: 767px) {

	.socials {
		margin: 0 15px 0 0;
	}

	.socials > ul {
		margin: -10px 0;
		width: 175px;
	}

	.socials > ul a {
		width: 42px;
		height: 40px;
		line-height: 40px;
	}

}

/* ------------------------------------------------------------ * Socials Simple
\* ------------------------------------------------------------ */
.socials-simple ul {
	padding-left: 0;
	list-style: none outside none;
	font-size: 0;
}

.socials-simple li {
	display: inline-block;
	vertical-align: top;
}

.socials-simple li + li {
	margin-left: 9px;
}

.socials-simple a {
	display: block;
	width: 31px;
	height: 31px;
	background-color: #f5f2ee;
	line-height: 31px;
	text-align: center;
	-webkit-transition: opacity .3s;
	transition: opacity .3s;
}

.socials-simple a:hover {
	opacity: .8;
}

/* ------------------------------------------------------------ * Accordion
\* ------------------------------------------------------------ */
.accordion {
	margin-top: 5px;
	margin-bottom: 15px;
}

.accordion .accordion-section {
	padding: 0 0 22px;
	border-bottom: 1px solid #d6d6d6;
	margin-bottom: 26px;
}

@media (max-width: 1023px) {
	.accordion .accordion-section:last-child {
		border-bottom: none;
	}
}

.accordion .accordion-title {
	position: relative;
	padding-right: 60px;
	font-family: "adobe-caslon-pro", "Times New Roman", "Times", "Baskerville", "Georgia", serif;
	font-size: 20px;
	line-height: 1.5;
	color: #8b8982;
}

.accordion .accordion-title i {
	position: absolute;
	top: 50%;
	right: 5px;
	margin-top: -4px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: -webkit-transform .3s, -webkit-transform-origin .3s;
	transition: -webkit-transform .3s, -webkit-transform-origin .3s;
	transition: transform .3s, transform-origin .3s;
	transition: transform .3s, transform-origin .3s, -webkit-transform .3s, -webkit-transform-origin .3s;
}

.accordion .accordion-title.active i {
	-webkit-transform: rotate(180deg) translateY(-50%);
	transform: rotate(180deg) translateY(-50%);
	-webkit-transform-origin: center 0;
	transform-origin: center 0;
}

.accordion .accordion-section p {
	max-width: 648px;
	margin-bottom: 0;
}

.accordion .accordion-section p + p {
	margin-top: 25px;
}

.accordion .accordion-body {
	display: none;
	padding-top: 15px;
}

@media (max-width: 767px) {
	.accordion {
		margin-top: 6px;
	}

	.accordion .accordion-section {
		padding-bottom: 26px;
		margin-bottom: 21px;
	}

	.accordion .accordion-title,
	.accordion .accordion-body {
		padding-right: 57px;
	}

	.accordion .accordion-title i {
		top: 10px;
		margin-top: 0;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	.accordion .accordion-title.active i {
		top: 20px;
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}
}

/* ------------------------------------------------------------ * Form Contact
\* ------------------------------------------------------------ */
.form-contact {
	float: left;
	width: 100%;
	max-width: 697px;
	margin: -7px 60px 1px 0;
}

.form-contact form {
	display: block;
	padding: 0;
}

.form-contact .divider:before,
.form-contact .divider:after {
	width: calc(50% - 6px);
}

.form-contact .gform_heading {
	margin-bottom: 23px;
}

.form-contact .gform_title {
	margin-bottom: 4px;
	font-family: "adobe-caslon-pro", "Times New Roman", "Times", "Baskerville", "Georgia", serif;
	font-size: 28px;
	line-height: 1.36;
	color: #454441;
	font-weight: 400;
}

.form-contact .gform_description {
	font-family: "adobe-caslon-pro", "Times New Roman", "Times", "Baskerville", "Georgia", serif;
	font-size: 20px;
	line-height: 1.5;
	color: #454441;
}

.form-contact .gform_body {
	position: relative;
	padding: 29px 13px 0;
	border-left: 2px solid #d6d6d6;
	border-right: 2px solid #d6d6d6;
}

.form-contact .gform_body .divider {
	position: absolute;
	top: -9px;
	left: 0;
	width: 100%;
}

.form-contact .gform_footer {
	position: relative;
	padding: 7px 0 29px;
	border-left: 2px solid #d6d6d6;
	border-right: 2px solid #d6d6d6;
	text-align: center;
}

.form-contact .gform_footer .divider {
	position: absolute;
	bottom: -9px;
	left: 0;
	width: 100%;
}

.form-contact ul {
	list-style: none outside none;
	padding: 0;
	margin: 0 -2% 0 0;
}

.form-contact ul:after {
	content: '';
	display: table;
	clear: both;
	font-size: 0;
}

.form-contact .gfield {
	clear: both;
	margin: 0 2% 13px 0;
}

.form-contact .gfield-text,
.form-contact .gfield-phone,
.form-contact .gfield-email {
	float: left;
	width: 48%;
	clear: none;
}

.form-contact .gfield_label {
	display: inline-block;
	font-family: "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	font-size: 14px;
	line-height: 1.63;
	color: #514f4d;
	font-weight: 900;
}

.form-contact .medium {
	display: block;
	width: 100%;
	height: 57px;
	padding: 0 17px;
	background-color: #e8e6e0;
}

.form-contact .medium:focus {
	outline: 0;
}

.form-contact .textarea {
	height: 144px;
	padding: 17px;
	resize: none;
}

.form-contact .jcf-select {
	max-width: none;
	height: 57px;
	border: none;
	background-color: #e8e6e0;
}

.form-contact .jcf-select .jcf-select-text {
	margin: 0 45px 0 17px;
	font-family: "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	font-size: 16px;
	line-height: 57px;
	color: #454441;
	font-weight: 400;
	text-transform: none;
}

.form-contact .jcf-select .jcf-select-text:before {
	display: none;
}

.form-contact .jcf-select .jcf-select-opener {
	top: 50%;
	border-color: transparent #514f4d #514f4d transparent;
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
	-webkit-transform-origin: center top;
	transform-origin: center top;
	-webkit-transition: -webkit-transform .3s, -webkit-transform-origin .3s linear;
	transition: -webkit-transform .3s, -webkit-transform-origin .3s linear;
	transition: transform .3s, transform-origin .3s linear;
	transition: transform .3s, transform-origin .3s linear, -webkit-transform .3s, -webkit-transform-origin .3s linear;
}

.form-contact .jcf-select[class*="jcf-drop-active"] .jcf-select-opener {
	top: 50%;
	margin-top: 3px;
	-webkit-transform: translateY(-50%) rotate(225deg);
	transform: translateY(-50%) rotate(225deg);
	-webkit-transform-origin: center center;
	transform-origin: center center;
}

.form-contact input[type='submit'] {
	min-width: 138px;
	border-color: #a5a39b;
	background-color: #a5a39b;
	box-shadow: inset 0 0 0 2px #fff;
	letter-spacing: .03em;
}

.form-contact input[type='submit']:hover {
	background-color: #fff;
	color: #a5a39b;
}

@media (max-width: 1249px) {
	.form-contact {
		max-width: 64%;
		margin-right: 6%;
	}
}

@media (max-width: 1023px) {
	.form-contact {
		float: none;
		max-width: 100%;
		margin: -4px 0 50px;
	}

	.form-contact .gform_title {
		margin-bottom: 21px;
	}
}

@media (max-width: 767px) {
	.form-contact {
		max-width: 100%;
		margin: 0 0 32px;
	}

	.form-contact .gform_heading {
		margin-bottom: 25px;
	}

	.form-contact .gform_title {
		margin-bottom: 8px;
		padding-right: 60px;
		line-height: 1.43;
	}

	.form-contact .gform_body {
		padding-top: 19px;
	}

	.form-contact ul {
		margin-right: 0;
	}

	.form-contact .gfield_label {
		margin-bottom: 4px;
	}

	.form-contact .gfield-text,
	.form-contact .gfield-phone,
	.form-contact .gfield-email {
		width: 100%;
		margin-right: 0;
	}

	.form-contact .medium {
		padding: 0 9px;
	}

	.form-contact .jcf-select .jcf-select-text {
		margin-left: 9px;
	}

	.form-contact .gform_footer {
		padding-bottom: 26px;
	}
}

/* ------------------------------------------------------------ * Contacts
\* ------------------------------------------------------------ */
.contacts {
	overflow: hidden;
}

.contacts h1 {
	margin: 4px 0 4px;
	color: #454441;
	text-align: left;
}

.contacts address,
.contacts ul {
	margin-bottom: 32px;
	font-family: "adobe-caslon-pro", "Times New Roman", "Times", "Baskerville", "Georgia", serif;
	font-size: 16px;
	line-height: 1.85;
	color: #454441;
	font-style: normal;
}

.contacts ul {
	padding-left: 0;
	list-style: none outside none;
	line-height: 1.5;
}

.contacts a {
	color: inherit;
}

.contacts a[href^="mailto"] {
	color: #8b8982;
}

.contacts a:hover {
	text-decoration: underline;
}

@media (max-width: 1023px) {
	.contacts {
		overflow: hidden;
	}

	.contacts h1 {
		clear: both;
		margin-bottom: 16px;
	}

	.contacts address {
		float: left;
		max-width: 354px;
		width: 100%;
	}

	.contacts ul {
		overflow: hidden;
		padding-top: 4px;
	}

	.contacts .divider {
		clear: both;
		margin-top: 51px;
	}

	.contacts.contacts-alt address {
		float: none;
	}
}

@media (max-width: 767px) {
	.contacts address,
	.contacts ul {
		float: none;
		width: auto;
		margin-bottom: 28px;
	}

	.contacts .divider {
		margin-top: 47px;
	}
}

/* ------------------------------------------------------------ * Author
\* ------------------------------------------------------------ */
.author {
	overflow: hidden;
}

.author .author-image {
	position: relative;
	float: left;
	width: 342px;
	margin: 0 65px 0 0;
	text-align: center;
}

.author .author-image > div {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 342px;
	border-radius: 50%;
	margin-bottom: 16px;
	font-size: 0;
	line-height: 1;
}

.author .author-image > div:before {
	content: '';
	position: absolute;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
	z-index: 2;
	border: 7px solid #f5f2ee;
	border-radius: 50%;
}

.author .author-image > div:after {
	content: '';
	position: absolute;
	top: 5px;
	right: 5px;
	bottom: 5px;
	left: 5px;
	border: 7px solid #fff;
	border-radius: 50%;
}

.author .author-image img {
	width: 100%;
	height: auto;
}

.author .author-image figcaption {
	padding-left: 15px;
}

.author .author-image figcaption > em {
	display: block;
	margin-bottom: 10px;
	font-size: 12px;
	line-height: 1.67;
	color: #454441;
}

.author .author-image figcaption > em a {
	color: #8b8982;
}

.author .author-image .socials-simple ul {
	margin-left: -15px;
}

.author .author-content {
	overflow: hidden;
	padding-top: 17px;
}

.author .author-content h1 {
	margin: 0 0 8px;
	line-height: 1.43;
	color: #454441;
	text-align: left;
}

.author .author-content p {
	margin-bottom: 37px;
	font-size: 22px;
	line-height: 1.5;
	color: #454441;
}

.author .author-info {
	overflow: hidden;
}

.author .author-info h1 {
	margin: 0 0 15px;
	text-align: left;
}

.author .author-info h1 ~ h1 {
	margin-bottom: 5px;
}

.author .author-info h1 em {
	color: #8b8982;
}

.author .divider {
	margin-bottom: 36px;
}

@media (max-width: 1023px) {
	.author .author-image {
		width: 247px;
		margin-right: 50px;
	}

	.author .author-image > div {
		height: 247px;
		margin-bottom: 19px;
	}

	.author .author-image > div:before {
		border-width: 4px;
	}

	.author .author-image > div:after {
		top: 1px;
		right: 1px;
		bottom: 1px;
		left: 1px;
	}

	.author .author-info {
		clear: both;
		padding-top: 31px;
	}

	.author .author-info h1 {
		margin-bottom: 13px;
	}

	.author .author-info h1 ~ h1 {
		padding-top: 2px;
		margin-bottom: 7px;
	}

	.author .author-content {
		padding-top: 0;
	}

	.author .divider {
		margin-bottom: 34px;
	}
}

@media (max-width: 767px) {
	.author {
		overflow: visible;
	}

	.author .author-image {
		float: none;
		margin: 0 auto 36px;
	}

	.author .author-image > div {
		margin-bottom: 12px;
	}

	.author .author-image figcaption {
		padding-left: 0;
	}

	.author .author-content h1 {
		margin-bottom: 1px;
	}

	.author .author-content p {
		padding-right: 25px;
	}

	.author .author-content p:last-child {
		margin-bottom: 0;
	}

	.author .author-info {
		overflow: visible;
		padding-top: 22px;
	}

	.author .author-info h1 {
		margin-bottom: 18px;
		line-height: 1.2;
	}

	.author .author-info h1 ~ h1 {
		margin-bottom: 11px;
	}

	.author .author-info h1 em {
		display: block;
	}

	.author .divider {
		margin-bottom: 30px;
	}
}

.author-basic {
	margin-top: 15px;
}

.author-basic .author-image {
	float: none;
	width: 248px;
	margin: 0 0 7px;
}

.author-basic .author-image > div {
	height: 248px;
}

.author-basic .author-image > div:before {
	border-width: 5px;
}

.author-basic .author-image > div:after {
	top: 3px;
	right: 3px;
	bottom: 3px;
	left: 3px;
	border-width: 5px;
}

.author-basic .author-content {
	max-width: 300px;
	margin-bottom: 52px;
}

.author-basic .author-content p {
	margin: 0 0 18px;
	font-size: 16px;
	line-height: 1.5;
}

.author-basic .author-content a {
	font-size: 18px;
	line-height: 1.5;
	color: #8b8982;
	-webkit-transition: opacity .3s;
	transition: opacity .3s;
}

.author-basic .author-content a:hover {
	opacity: .8;
}

.author-basic ul {
	padding-left: 0;
}

@media (max-width: 1023px) {
	.author-basic .author-image {
		float: left;
		margin-right: 48px;
	}

	.author-basic .author-content {
		overflow: hidden;
		max-width: none;
		padding: 25px 20px 0 0;
		margin-bottom: 20px;
	}

	.author-basic .author-content br {
		display: none;
	}

	.author-basic .author-info {
		overflow: hidden;
		clear: none;
	}
}

@media (max-width: 767px) {
	.author-basic .author-image {
		float: none;
		margin: 0 auto;
	}

	.author-basic .author-content {
		padding-right: 0;
	}

	.author-basic .author-content p {
		padding-right: 10px;
	}

	.author-basic .author-info {
		padding-top: 0;
	}

	.author-basic br {
		display: none;
	}
}

.author-simple {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: -82px 0;
}

.author-simple .author-info {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
	width: 340px;
	padding: 66px 0;
	margin-right: 62px;
	border-right: 2px solid #666463;
}

.author-simple .author-info h1 {
	margin-bottom: 28px;
	color: #f5f2ee;
}

.author-simple .author-image {
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2;
	float: none;
	width: 134px;
	padding-top: 59px;
	margin-right: 44px;
}

.author-simple .author-image > div {
	height: 134px;
}

.author-simple .author-image > div:before {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-width: 4px;
}

.author-simple .author-image > div:after {
	display: none;
}

.author-simple .author-content {
	-webkit-box-ordinal-group: 4;
	-ms-flex-order: 3;
	order: 3;
	overflow: visible;
	max-width: 510px;
	width: calc(100% - 580px);
	padding: 68px 0 54px;
}

.author-simple .author-content h1 {
	margin-bottom: 22px;
	color: #f5f2ee;
}

.author-simple .author-content h2 {
	font-size: 24px;
	line-height: 1.3;
}

.author-simple .author-content p {
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 1.71;
	color: #a5a39b;
}

.author-simple .author-content a {
	font-size: 16px;
	line-height: 1.13;
	color: #cfcec9;
	-webkit-transition: opacity .3s;
	transition: opacity .3s;
}

.author-simple .author-content a:hover {
	opacity: .8;
}

@media (max-width: 1023px) {
	.author-simple {
		overflow: visible;
	}

	.author-simple .author-info {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
		overflow: visible;
		position: relative;
		display: block;
		width: 100%;
		padding: 36px 0 30px 178px;
		border: none;
		margin-right: 0;
	}

	.author-simple .author-info:before {
		content: '';
		position: absolute;
		top: 0;
		left: 50%;
		height: 2px;
		width: 100vw;
		border-top: 2px solid #666463;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}

	.author-simple .author-content {
		width: calc(100% - 178px);
		max-width: none;
		padding-bottom: 40px;
	}
}

@media (max-width: 767px) {
	.author-simple {
		display: block;
	}

	.author-simple .author-image {
		display: block;
		width: 247px;
	}

	.author-simple .author-image > div {
		height: 247px;
	}

	.author-simple .author-image > div:before {
		border-width: 7px;
	}

	.author-simple .author-content {
		padding: 0 0 40px;
		width: 100%;
	}

	.author-simple .author-info {
		padding-left: 0;
	}
}

/* ------------------------------------------------------------ * Author List
\* ------------------------------------------------------------ */
.author-directory .face-holder svg {
	-webkit-transition: opacity .3s, visibility .3s;
	transition: opacity .3s, visibility .3s;
}

.author-directory .face-holder svg + img {
	border-radius: 50%;
	opacity: 0;
	-webkit-transition: opacity .3s, visibility .3s;
	transition: opacity .3s, visibility .3s;
}

.author-directory .face-holder:hover svg {
	visibility: hidden;
	opacity: 0;
}

.author-directory .face-holder:hover svg + img {
	visibility: visible !important;
	opacity: 1;
}

.author-directory .face-holder .grayscale-fix {
	overflow: hidden;
}

/* ------------------------------------------------------------ * Table
\* ------------------------------------------------------------ */
.table {
	margin-bottom: 40px;
}

.table.table-alt {
	margin-top: 20px;
}

.table table {
	width: 100%;
}

.table tr {
	border-top: 1px solid #d6d6d6;
}

.table.table-alt tr:first-child {
	border-top: none;
}

.table td {
	padding: 15px 5px;
	border: none;
	text-align: left;
}

.table td:first-child {
	width: 110px;
}

.table.table-alt td:first-child {
	width: 189px;
}

.table small {
	display: block;
	font-family: "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	font-size: 11px;
	color: #454441;
	text-transform: uppercase;
	font-weight: 400;
}

.table h2 {
	margin: 0;
	font-family: "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	font-size: 20px;
	line-height: .95;
	color: #454441;
	font-weight: 900;
	letter-spacing: -.1em;
}

.table span,
.table p {
	display: block;
	margin: 4px 0 -4px !important;
	font-family: "adobe-caslon-pro", "Times New Roman", "Times", "Baskerville", "Georgia", serif;
	font-size: 16px !important;
	line-height: 1.3 !important;
	color: #8b8982 !important;
}

.table span {
	color: #454441;
}

@media (max-width: 1023px) {
	.table {
		margin-bottom: 19px;
	}
}

@media (max-width: 767px) {
	.table {
		padding: 0 13px;
		margin: 0 -16px -10px;
	}

	.table table,
	.table tr,
	.table td,
	.table tbody {
		display: block;
	}

	.table tr {
		overflow: hidden;
	}

	.table tr + tr {
		padding-top: 10px;
	}

	.table tr:first-child {
		border-top: none;
	}

	.table.table-alt td:first-child {
		width: 110px;
	}

	.table td {
		overflow: hidden;
	}

	.table td:last-child {
		padding-bottom: 12px;
	}

	.table td + td {
		padding: 10px 0 0;
	}

	.table td:first-child {
		float: left;
		width: 95px;
		min-height: 127px;
		padding-right: 10px;
	}
}

/* ------------------------------------------------------------ * Triangle Up
\* ------------------------------------------------------------ */
div.bg-snow.triangle-down.triangle-up:before,
section.bg-snow.triangle-down.triangle-up:before,
footer.bg-snow.triangle-down.triangle-up:before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 10;
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 21px 27px 0 27px;
	border-color: #fff transparent transparent transparent;
	font-size: 0;
	line-height: 1;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

div.bg-snow.triangle-up.triangle-down:after,
section.bg-snow.triangle-up.triangle-down:after,
footer.bg-snow.triangle-up.triangle-down:after {
	content: '';
	top: 100%;
	bottom: auto;
	left: 50%;
	z-index: 10;
	display: block;
	border-style: solid;
	border-width: 21px 27px 0 27px;
	border-color: #f5f2ee transparent transparent transparent;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

div.triangle-down:after,
section.triangle-down:after,
footer.triangle-down:after {
	bottom: -20px;
}

div.triangle-down:after,
div.triangle-up:after,
section.triangle-down:after,
section.triangle-up:after,
footer.triangle-down:after,
footer.triangle-up:after {
	z-index: 10;
}

@media (max-width: 767px) {
	.breadcrumbs-holder.triangle-down-tablet-visible:after {
		content: '';
	}
}

/* ------------------------------------------------------------ * Promos
\* ------------------------------------------------------------ */
.promos blockquote {
	padding: 0;
	margin: 0;
	border: none;
	font-size: 16px;
	line-height: 1.5;
	color: #454441;
}

.promos blockquote + blockquote {
	margin-top: 30px;
}

.promos blockquote cite {
	display: block;
	font-family: "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	font-size: 13px;
	line-height: 1.54;
	font-weight: 700;
	font-style: normal;
	text-transform: uppercase;
}

@media (max-width: 1023px) {
	.promos blockquote {
		margin-bottom: 30px;
	}
}

.promos .content-hidden {
	max-width: 100%;
	margin: 0 auto;
}

@media (max-width: 1023px) {
	.promos.promos-beige {
		background-color: #f5f2ee;
	}

	.promos.promos-beige:after {
		border-color: #f5f2ee transparent transparent transparent;
	}
}

.promos-alt {
	padding: 50px 0;
}

.promos-alt .select-holder .jcf-select {
	margin-top: 20px;
	background-color: #fff;
}

.promos-alt .select-holder .jcf-select .jcf-select-text {
	color: #acaaa3;
}

.promos-content {
	max-width: 1094px;
	padding-top: 22px;
	margin: 0 auto;
}

.promos-content h2 {
	max-width: 870px;
	margin: 0 auto 36px;
	font-family: "adobe-caslon-pro", "Times New Roman", "Times", "Baskerville", "Georgia", serif;
	font-size: 20px;
	line-height: 1.5;
	color: #454441;
}

.promos-content p {
	 font-size: 20px;
    line-height: 1.5;
	text-align: left;
}

@media (max-width: 1023px) {
	.promos-content br {
		display: none;
	}
}

.promos-entry {
	max-width: 870px;
	margin: 15px auto 0;
}

.promos-entry p {
	font-size: 16px;
	text-align: left;
}

.promos-entry h2 {
	margin: 30px 0 22px;
	font-size: 20px;
	line-height: 1.5;
	color: #454441;
	text-align: center;
}

.promos-actions {
	padding: 12px 0 18px;
}

/* ------------------------------------------------------------ * Waypoint
\* ------------------------------------------------------------ */
.waypoint-holder {
	position: relative;
	padding: 36px 0 31px;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.waypoint-holder.fixed {
	position: fixed;
	top: 61px;
	left: 0;
	right: 0;
	z-index: 99;
}

.waypoint-holder.fixed.fixed:before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 21px 27px 0 27px;
	border-color: #fff transparent transparent transparent;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.waypoint-holder.fixed + * {
	margin-top: 108px;
}

@media (max-width: 1023px) {
	.waypoint-holder.fixed {
		position: static;
	}

	.waypoint-holder.fixed:before {
		display: none;
	}

	.waypoint-holder.fixed + * {
		margin-top: 0;
	}
}

/* ------------------------------------------------------------ * Video Holder
\* ------------------------------------------------------------ */
.video-holder {
	position: relative;
	max-width: 858px;
	height: 500px;
	margin: 38px auto 20px;
}

.single-crb_book .video-holder {
	margin: 38px 0 20px 12px;
}

.single-crb_author .video-holder {
	margin: 38px auto 20px;
}

.single-crb_book .section-default.head-of-section .video-holder,
.single-crb_book .promos .video-holder {
	margin: 38px auto 20px;
}

.video-holder:before {
	content: '';
	position: absolute;
	top: -12px;
	left: -12px;
	width: 100%;
	height: 100%;
	background-color: #d9d5cc;
}

.single-crb_author .video-holder:before {
	background-color: #fff;
}

.video-holder iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media (max-width: 1023px) {
	.video-holder {
		height: 0;
		padding-bottom: 56.25%;
	}
}

@media (max-width: 767px) {
	.video-holder:before {
		top: -5px;
		left: -5px;
	}
}

/* ------------------------------------------------------------ * Content
\* ------------------------------------------------------------ */
.content-hidden {
	display: none;
}

.content-hidden .cols-inline {
	padding-top: 0;
}

/* ------------------------------------------------------------ * Tabset Alt
\* ------------------------------------------------------------ */
.tabset-alt {
	margin-top: 30px;
}

/* ------------------------------------------------------------ * Tab Slideset
\* ------------------------------------------------------------ */
.tab-content-center {
	margin-right: 0;
}

.tab-content-center > div {
	max-width: 1094px;
	margin: 0 auto;
}

.tab-content-center .jcf-scrollbar-vertical {
	display: none;
}

.tab-content-center .jcf-scrollbar-slider,
.tab-content-center .jcf-scrollbar-slider {
	max-width: 100%;
}

.tab-content-center .tab-mask {
	height: auto !important;
}

@media (max-width: 767px) {
	.tab-content-center .jcf-scrollbar-horizontal {
		opacity: 1;
		width: auto !important;
		right: 0;
	}
}

.tab-slideset.with-5-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 30px 0 0;
}

.tab-slideset.with-5-items .grid-item {
	display: block;
	width: 197px;
	margin: 0 28px 40px 0;
}

.tab-slideset.with-5-items .grid-item a {
	display: block;
}

.tab-slideset.with-5-items .grid-image {
	margin: 0;
}

.tab-slideset.with-5-items .grid-date {
	bottom: 100%;
}

.tab-slideset.with-5-items .grid-content {
	padding: 20px 10px;
}

/*  .tab-slideset.with-5-items .grid-item span {
 border: none; } */
.tab-slideset.with-5-items .grid-date,
.tab-slideset.with-5-items .grid-item:hover .grid-content {
	background-color: #fff;
}

@media (max-width: 1249px) {
	.tab-slideset.with-5-items {
		padding-left: 0;
		padding-right: 0;
		margin-right: -30px;
	}

	.tab-slideset.with-5-items .grid-item {
		margin-right: 30px;
	}
}

@media (max-width: 1023px) {
	.tab-slideset.with-5-items {
		width: 644px;
		padding: 0 0 30px;
		margin: 30px auto 0;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}

	.tab-slideset.with-5-items .grid-item {
		margin-bottom: 37px;
	}
}

@media (max-width: 767px) {
	.tab-slideset.with-5-items .grid-item {
		margin-bottom: 37px;
	}
}

/* ------------------------------------------------------------ * Tabset Simple
\* ------------------------------------------------------------ */
.tabset-simple {
	padding: 0;
	margin-bottom: -2px;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.tabset-simple li {
	z-index: 2;
}

.tabset-simple li + li {
	margin-left: 10px;
}

.tabset-simple .active {
	border-color: #d6d6d6;
}

.tabset-simple .active:before {
	border-color: #d6d6d6 transparent transparent transparent;
}

.tabset-simple span {
	padding: 3px 16px 4px;
	font-family: "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	font-size: 13px;
	color: #514f4d;
	letter-spacing: .03em;
}

.tabset-simple span:before {
	color: #a5a39b;
}

@media (max-width: 1023px) {
	.tabset-simple {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}

@media (max-width: 767px) {
	.tabset-simple li + li {
		margin-left: 0;
	}

	.tabset-simple span {
		overflow: hidden;
		padding: 3px 12px 4px;
		white-space: nowrap;
		text-overflow: ellipsis;
	}
}

/* ------------------------------------------------------------ * Tab Content Simple
\* ------------------------------------------------------------ */
.tab-content-simple {
	padding-bottom: 1px;
}

.tab-content-simple .tab {
	padding-top: 27px;
	border-top: 2px solid #d6d6d6;
	font-size: 0;
}

.tab-content-simple .tab > ul,
.tab-content-simple .tab > div {
	display: inline-block;
	width: 50%;
	vertical-align: top;
}

@media (max-width: 1023px) {
	.tab-content-simple {
		padding-bottom: 22px;
	}
}

@media (max-width: 767px) {
	.tab-content-simple .tab > ul,
	.tab-content-simple .tab > div {
		display: block;
		width: 100%;
		padding: 0 18px;
	}
}

/* ------------------------------------------------------------ * Tab Content Fluid
\* ------------------------------------------------------------ */
.tab-content-fluid > div {
	max-width: none;
}

@media (max-width: 767px) {
	.tab-content-fluid {
		margin-right: 0;
	}
}

/* ------------------------------------------------------------ * Tabset Center
\* ------------------------------------------------------------ */
.tabset-center {
	overflow: hidden;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding-bottom: 10px;
	margin: 20px 0 3px;
}

.tabset-center li {
	border: none;
}

.tabset-center li:before, .tabset-center li:after {
	-webkit-transition: all .3s;
	transition: all .3s;
}

.tabset-center li + li {
	margin-left: 3px;
}

.tabset-center a {
	overflow: visible;
	position: relative;
	height: 42px;
	background-color: #fff;
	font-family: "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	font-size: 15px;
	line-height: 1.33;
	color: #2c2c2c;
	font-weight: 900;
	-webkit-transition: background .3s;
	transition: background .3s;
}

.tabset-center a:before, .tabset-center a:after {
	content: '';
	visibility: hidden;
	opacity: 0;
	-webkit-transition: visibility .3s, opacity .3s;
	transition: visibility .3s, opacity .3s;
}

.tabset-center span {
	padding: 0 20px;
	color: #2c2c2c;
	line-height: 42px;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.tabset-center .active:before {
	border-width: 10px 10px 0 10px;
}

.tabset-center .active:after {
	border-width: 10px 10px 0 10px;
	margin-top: -4px;
}

.tabset-center .active a {
	position: relative;
	background-color: #a5a39b;
}

.tabset-center .active a:after {
	visibility: visible;
	opacity: 1;
	position: absolute;
	top: 3px;
	right: 3px;
	bottom: 3px;
	left: 3px;
	border: 2px solid #f5f2ee;
}

.tabset-center .active a:before {
	visibility: visible;
	opacity: 1;
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 10;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 10px 0 10px;
	border-color: #a5a39b transparent transparent transparent;
	margin-top: -7px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.tabset-center .active span {
	color: #fff;
}

/* ------------------------------------------------------------ * Tabset Align Center
\* ------------------------------------------------------------ */
.tabset-align-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 30px;
}

.tabset-align-center li + li {
	margin-left: 10px;
}

/* ------------------------------------------------------------ * Book
\* ------------------------------------------------------------ */
.book:after {
	content: '';
	display: table;
	clear: both;
	font-size: 0;
}

.book .book-head {
	clear: both;
	margin-bottom: 42px;
	text-align: center;
}

.book .book-head h1 {
	margin-bottom: 13px;
	text-align: center;
}

.book .book-head h2 {
	margin-bottom: 5px;
	font-size: 20px;
	line-height: 1.5;
	color: #514f4d;
}

.book .book-image {
	float: left;
	width: 340px;
	/*margin: 0 62px 0 0;*/
	margin: 0;
}

.book .book-image div {
	margin-bottom: 20px;
	border: 1px solid #f5f2ee;
}

.book .book-image-small {
	margin-bottom: 37px;
}

.book .book-content {
	overflow: hidden;
	position: relative;
	padding-right: 160px;
	margin-bottom: 12px;
}

@media (max-width: 767px) {
	.book-imprint span {
		max-width: 90px;
	}
}

.book-content-header {
	margin: 10px 0;
}

.book .book-content-small {
	margin-bottom: 48px;
}

.book h1 {
	margin: 0 0 3px;
	line-height: 1.25;
	color: #454441;
	text-align: left;
}

.book small {
	display: block;
	margin-bottom: 25px;
	font-size: 15px;
	line-height: 1.54;
	color: #8b8982;
}

.book small em {
	color: #454441;
}

.book p {
	font-size: 22px;
	line-height: 1.5;
	margin-bottom: 35px;
}

.book .book-badge {
	position: absolute;
	top: 0;
	right: 4px;
	text-align: center;
}

.book .book-badge .size-imprint_logo {
	margin: 0 0 6px;
}

.book .book-badge > span {
	position: relative;
	display: block;
	margin: 5px 0 15px;
	font-size: 13px;
	color: #454441;
}

.book .book-info {
	overflow: hidden;
	padding: 0;
	text-align: left;
}

@media (max-width: 1249px) {
	.book .book-image {
		margin-right: 30px;
	}
}

@media (max-width: 1023px) {
	.book .book-image {
		width: 256px;
		margin-right: 39px;
	}

	.book .book-image div {
		margin-bottom: 15px;
	}

	.book .book-image-small {
		margin: 0 60px 0 43px;
	}

	.book .book-content {
		padding-right: 0;
	}

	.book .book-content-small {
		padding-right: 52px;
		margin-bottom: 0;
	}

	.book .book-badge {
		position: relative;
		top: auto;
		right: auto;
		display: inline-block;
		margin-bottom: 10px;
	}

	.book .book-badge > .star {
		position: absolute;
		margin: 0 0 0 20px;
	}

	.book .book-info {
		overflow: visible;
		clear: both;
		padding-top: 30px;
	}
}

@media (max-width: 767px) {
	.book {
		position: relative;
	}

	.book .book-head {
		padding: 0 20px;
		margin-bottom: 25px;
	}

	.book .book-head small {
		margin-bottom: 20px;
	}

	.book .book-image {
		position: relative;
		float: none;
		width: auto;
		margin: 0 87px 30px 0;
	}

	.book .book-image div:first-child > img {
		width: 100%;
		height: auto;
	}

	.book .book-image {
		margin-right: 0;
		padding-right: 97px;
	}

	.book .book-badge {
		position: absolute;
		top: 0;
		right: 0;
		text-align: center;
	}

	.book .book-badge > .star {
		position: relative;
		top: auto;
		left: auto;
		display: inline-block;
		margin: 0;
	}

	.book .book-content {
		position: static;
		padding-right: 38px;
	}

	.book .book-content-small {
		padding-right: 10px;
	}

	.book .book-info {
		overflow: hidden;
		padding-top: 0;
	}

	.book br {
		display: none;
	}

	.book small {
		margin-bottom: 20px;
	}
}

/* ------------------------------------------------------------ * Star
\* ------------------------------------------------------------ */
.star {
	position: relative;
	display: block;
}

.star > span {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	font-family: "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	font-size: 11px;
	color: #fff;
	font-weight: 900;
	text-align: center;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

@media (max-width: 1023px) {
	.star {
		position: absolute;
		top: 0;
		left: 100%;
		width: 51px;
		height: 51px;
	}
}

/* ------------------------------------------------------------ * Tags
\* ------------------------------------------------------------ */
.tags {
	padding: 4px 0;
	font-size: 0;
	font-family: "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	font-weight: 900;
}

.tags span {
	display: inline-block;
	margin-right: 18px;
	font-size: 14px;
	line-height: 1.43;
	color: #514f4d;
	vertical-align: middle;
}

.tags a {
	display: inline-block;
	height: 31px;
	padding: 0 13px;
	margin: 0 14px 10px 0;
	background-color: #f5f2ee;
	font-size: 13px;
	line-height: 31px;
	color: #a5a39b;
	letter-spacing: .03em;
	vertical-align: middle;
	text-transform: uppercase;
}

@media (max-width: 767px) {
	.tags {
		margin-right: -14px;
	}

	.tags span,
	.tags a {
		margin-bottom: 10px;
	}
}

.tags-light {
	margin-top: 20px;
}

.tags-light a {
	background-color: #ffffff;
}

/* ------------------------------------------------------------ * Slider Gallery
\* ------------------------------------------------------------ */
.slider-gallery {
	position: relative;
	margin-top: 15px;
}

.slider-gallery.slider-gallery-alt {
	margin-top: 32px;
}

.slider-gallery.slider-gallery-alt figcaption {
	padding: 28px 16px 24px;
}

.slider-gallery .slider-clip {
	position: relative;
}

.slider-gallery .slides {
	overflow: hidden;
	position: relative;
	z-index: 2;
}

.slider-gallery .slide {
	float: left;
}

.slider-gallery .slide-image {
	position: relative;
	margin: 10px 0 0 10px;
}

.slider-gallery .slide-image:before {
	content: '';
	position: absolute;
	top: -10px;
	left: -10px;
	width: 100%;
	height: 100%;
	background-color: #d9d5cc;
}

.slider-gallery .slider-gallery-actions {
	padding-top: 21px;
	font-size: 0;
	text-align: center;
}

.slider-gallery .slider-gallery-actions a {
	display: inline-block !important;
	vertical-align: middle;
}

.slider-gallery .slider-gallery-counter {
	display: inline-block;
	min-width: 50px;
	font-family: "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	font-size: 15px;
	line-height: 1.73;
	color: #a5a39b;
	vertical-align: middle;
}

.slider-gallery img {
	position: relative;
	z-index: 2;
	width: 100%;
	height: auto;
}

.slider-gallery figure {
	position: relative;
	margin: 0;
}

.slider-gallery figcaption {
	position: absolute;
	bottom: -30px;
	left: 0;
	z-index: 3;
	width: 100%;
	padding: 14px 16px 20px;
	background-color: rgba(41, 36, 35, 0.7);
	font-size: 14px;
	line-height: 1.43;
	color: #f1efe7;
	visibility: hidden;
	opacity: 0;
	transition: opacity .3s, visibility .3s, bottom .3s;
}

.slider-gallery .slide:hover figcaption {
	visibility: visible;
	opacity: 1;
	bottom: 0;
}

.slider-gallery .slick-arrow {
	-webkit-transition: opacity .3s;
	transition: opacity .3s;
}

.slider-gallery .slick-arrow:hover {
	opacity: .6;
}

@media (max-width: 1023px) {
	.slider-gallery figcaption {
		visibility: visible;
		opacity: 1;
		bottom: 0;
	}
}

@media (max-width: 767px) {
	.slider-gallery figcaption {
		position: relative;
		padding: 14px 10px 0 0;
		margin-left: -10px;
		background-color: #fff;
		font-size: 14px;
		line-height: 1.43;
		color: #454441;
	}

	.slider-gallery.slider-gallery-alt figcaption {
		padding: 14px 10px 0 0;
		background: #f5f2ee;
	}
}

/* ------------------------------------------------------------ * Events
\* ------------------------------------------------------------ */
.events .event {
	overflow: hidden;
	margin-bottom: 0;
}

.events .event-image {
	overflow: hidden;
	position: relative;
	float: left;
	width: 232px;
	border-radius: 50%;
	margin: 0 58px 0 0;
}

.events .event-image img {
	width: 100%;
	height: auto;
}

.events .event-image:before {
	content: '';
	position: absolute;
	top: -1px;
	left: -1px;
	right: -1px;
	bottom: -1px;
	border: 5px solid #f5f2ee;
	border-radius: 50%;
}

.events .event-image:after {
	content: '';
	position: absolute;
	top: 4px;
	left: 4px;
	right: 4px;
	bottom: 4px;
	border: 4px solid #fff;
	border-radius: 50%;
}

.events .event-content {
	overflow: hidden;
}

.events .event-content > h1 {
	padding: 0 3px;
	margin: 0;
	font-size: 28px;
	line-height: 1.3;
	color: #8b8982;
	text-align: left;
}

.events .event-content > h2 {
	padding: 0 3px 10px;
	border-bottom: 2px solid #514f4d;
	margin: 0;
	font-size: 22px;
	line-height: 1.3;
	color: #454441;
}

.events .event-content > h2 em {
	color: #8b8982;
}

.events .divider {
	margin-bottom: 50px;
}

.events .divider:last-child {
	margin-bottom: 0;
}

@media (max-width: 1023px) {
	.events .event-table table,
	.events .event-table tr,
	.events .event-table td,
	.events .event-table tbody {
		display: block;
	}

	.events .event-table tr,
	.events .event-table td {
		overflow: hidden;
		width: 100%;
	}

	.events .event-table tr {
		padding: 15px 0;
	}

	.events .event-table td {
		padding: 0 5px;
	}

	.events .event-table td:first-child {
		float: left;
		width: 104px;
	}

	.events .event-table td:last-child {
		margin-bottom: 0;
	}

	.events .event-table td + td {
		float: right;
		padding: 0;
		margin-bottom: 10px;
		width: calc(100% - 104px);
	}
}

@media (max-width: 767px) {
	.events .event-image {
		float: none;
		margin: 0 auto 10px;
	}

	.events .event-content > h2 em {
		display: block;
	}

	.events .divider {
		margin-bottom: 30px;
	}
}

/* ------------------------------------------------------------ * Staff Items
\* ------------------------------------------------------------ */
.staff-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	padding-top: 23px;
}

.staff-items ~ .staff-items {
	padding-top: 0;
}

.staff-items .staff-item {
	width: 248px;
	margin-bottom: 2px;
	text-align: center;
}

.staff-items .staff-item-image {
	margin: 0;
}

.staff-items .staff-item-image div {
	overflow: hidden;
	position: relative;
	height: 248px;
	border-radius: 50%;
	margin-bottom: 28px;
	background-color: #f5f2ee;
}

.staff-items .staff-item-image div:before {
	content: '';
	position: absolute;
	top: -1px;
	left: -1px;
	right: -1px;
	bottom: -1px;
	border: 5px solid #f5f2ee;
	border-radius: 50%;
}

.staff-items .staff-item-image div:after {
	content: '';
	position: absolute;
	top: 4px;
	left: 4px;
	right: 4px;
	bottom: 4px;
	border: 5px solid #fff;
	border-radius: 50%;
}

.staff-items .staff-item-image img {
	width: 100%;
	height: auto;
	border-radius: 50%;
}

.staff-items h3 {
	margin: 0 0 3px;
	font-size: 20px;
	line-height: 1.5;
	color: #454441;
}

.staff-items p,
.staff-items h4 {
	margin: 0px 8px 0px 8px;
	font-size: 16px;
	line-height: 1.5;
	color: #514f4d;

}

.staff-items .staff-question {
	text-align: left;
}

@media (max-width: 1249px) {
	.staff-items {
		margin: 0 -40px;
	}

	.staff-items .staff-item {
		width: 228px;
	}

	.staff-items .staff-item-image div {
		height: 228px;
	}
}

@media (max-width: 1023px) {
	.staff-items {
		display: inline;
		margin: 0;
		font-size: 0;
		text-align: center;
	}

	.staff-items .staff-item {
		width: 33.3%;
		display: inline-block;
		vertical-align: top;
		margin-bottom: 68px;
		text-align: center;
	}

	.staff-items .staff-item-image {
		width: 220px;
		margin: 0 auto;
	}

	.staff-items .staff-item-image div {
		height: 220px;
		margin-bottom: 26px;
	}
}

@media (max-width: 767px) {
	.staff-items {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		padding: 0;
	}

	.staff-items .staff-item {
		width: 100%;
		margin: 2px 0 38px;
	}

	.staff-items .staff-item-image {
		width: 248px;
	}

	.staff-items .staff-item-image div {
		height: 248px;
	}
}

/* ------------------------------------------------------------ * Post Holder Small
\* ------------------------------------------------------------ */
.post-holder-small {
	max-width: 1094px;
	padding: 0;
	margin: 32px auto 0;
}

.post-holder-small p {
	font-size: 16px;
}

.post-holder-small .divider:last-child {
	margin-bottom: 13px;
}

@media (max-width: 1023px) {
	.post-holder-small .post-preview {
		margin-bottom: 32px;
	}

	.post-holder-small .post-preview .img-holder div:not(.bg-stretch) {
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}

	.post-holder-small .post-preview .img-holder:before {
		content: '';
		position: absolute;
		top: -7px;
		left: 6px;
		width: 0;
		height: 0;
		border-style: solid;
		border-color: #454441 #454441 transparent #454441;
		border-width: 23px 11px 6px;
	}

	.post-holder-small .post-preview .img-holder:after {
		content: '';
		position: absolute;
		top: -7px;
		left: 28px;
		width: 0;
		height: 0;
		border-style: solid;
		border-color: transparent transparent #aba9a0 #aba9a0;
		border-width: 3px 3px;
	}

	.post-holder-small .post-preview .text-holder {
		padding-top: 19px;
	}

	.post-holder-small .post-preview .text-holder h2 {
		margin-bottom: 2px;
		font-size: 16px;
		color: #8b8982;
		line-height: 1.4;
	}

	.post-holder-small .post-preview .text-holder p {
		margin-bottom: 9px;
		font-size: 13px;
		line-height: 1.54;
	}
}

/* ------------------------------------------------------------ * Time Items
\* ------------------------------------------------------------ */
.time-items {
	overflow: hidden;
	position: relative;
	padding: 40px 5px 40px;
	margin: 35px 0;
}

.time-items:before {
	content: '';
	position: absolute;
	top: 20px;
	bottom: 20px;
	left: 50%;
	width: 2px;
	background-color: #514f4d;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.time-items:after {
	content: '';
	position: absolute;
	top: 2px;
	left: 50%;
	width: 12px;
	height: 12px;
	background-color: #514f4d;
	-webkit-transform: translateX(-50%) rotate(45deg);
	transform: translateX(-50%) rotate(45deg);
}

.time-items .time-item {
	position: relative;
	clear: both;
	width: 518px;
	min-height: 134px;
	padding-right: 82px;
	font-size: 0;
	text-align: right;
}

.time-items .time-item:before {
	content: '';
	position: absolute;
	top: 10px;
	right: 61px;
	width: 10px;
	height: 10px;
	border: 2px solid #514f4d;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.time-items .time-item:after {
	content: '';
	position: absolute;
	top: 14px;
	right: 6px;
	width: 47px;
	height: 2px;
	background-color: #514f4d;
}

.time-items .time-item:nth-child(even) {
	float: right;
	clear: none;
	padding: 0 0 0 82px;
	text-align: left;
}

.time-items .time-item:nth-child(even) span {
	left: auto;
	right: 100%;
}

.time-items .time-item:nth-child(even):before {
	right: auto;
	left: 61px;
}

.time-items .time-item:nth-child(even):after {
	right: auto;
	left: 6px;
}

.time-items .time-item:nth-child(even) .time-item-images {
	margin: 0 0 0 22px;
}

.time-items .time-item + .time-item {
	margin-top: -53px;
}

.time-items .time-item:last-child:nth-child(even) .time-item-content:before {
	content: '';
	position: absolute;
	bottom: -31px;
	right: 100%;
	width: 10px;
	height: 10px;
	margin-right: 19px;
	background-color: #514f4d;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.time-items .time-item:last-child:nth-child(odd) .time-item-content:before {
	content: '';
	position: absolute;
	bottom: -31px;
	left: 100%;
	width: 10px;
	height: 10px;
	background-color: #514f4d;
	margin-left: 19px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.time-items .time-item-images {
	display: inline-block;
	margin: 0 22px 0 0;
	vertical-align: top;
}

.time-items .time-item-images img + img {
	margin-left: 10px;
}

.time-items .time-item-content {
	display: inline-block;
	width: 200px;
	padding-top: 8px;
	font-size: 14px;
	line-height: 1.29;
	vertical-align: top;
	text-align: left;
}

.time-items .time-item-content p {
	margin-bottom: 0;
}

.time-items .time-item-content p + p {
	margin-top: 10px;
}

.time-items span {
	position: absolute;
	top: 2px;
	left: 100%;
	z-index: 10;
	padding: 5px;
	margin-left: -6px;
	background-color: #fff;
	font-family: "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	font-size: 20px;
	line-height: 1;
	color: #454441;
	font-weight: 900;
}

@media (max-width: 1249px) {
	.time-items .time-item {
		width: 50%;
		text-align: left;
	}

	.time-items .time-item br {
		display: none;
	}

	.time-items .time-item:after {
		width: 27px;
		right: 15px;
	}

	.time-items .time-item:before {
		right: 45px;
	}

	.time-items .time-item:nth-child(even) span {
		margin-right: -22px;
	}

	.time-items .time-item:nth-child(even):before {
		right: auto;
		left: 45px;
	}

	.time-items .time-item:nth-child(even):after {
		right: auto;
		left: 15px;
	}

	.time-items .time-item:nth-child(even) .time-item-images {
		margin-left: 20px;
		text-align: left;
	}

	.time-items .time-item:last-child:nth-child(even) .time-item-content:before {
		margin-right: -5px;
	}

	.time-items .time-item:last-child:nth-child(odd) .time-item-content:before {
		margin-left: -5px;
	}

	.time-items .time-item-images {
		width: 140px;
		margin-right: 20px;
		text-align: left;
	}

	.time-items .time-item-images img + img {
		display: block;
		margin: 5px 0 0 0;
	}

	.time-items .time-item-content {
		width: calc(100% - 160px);
	}

	.time-items span {
		margin-left: -22px;
	}
}

@media (max-width: 1023px) {
	.time-items {
		max-width: 570px;
		margin: 0 auto;
	}

	.time-items:before {
		left: 28px;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	.time-items:after {
		left: 23px;
		-webkit-transform: translateX(0) rotate(45deg);
		transform: translateX(0) rotate(45deg);
	}

	.time-items .time-item {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-flow: row nowrap;
		flex-flow: row nowrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		width: 100%;
		min-height: 134px;
		padding: 0 0 0 138px;
	}

	.time-items .time-item:after {
		right: auto;
		left: 61px;
	}

	.time-items .time-item:before {
		right: auto;
		left: 92px;
	}

	.time-items .time-item:nth-child(even) {
		float: none;
		padding: 0 0 0 138px;
	}

	.time-items .time-item:nth-child(even):after {
		right: auto;
		left: 61px;
	}

	.time-items .time-item:nth-child(even):before {
		right: auto;
		left: 92px;
	}

	.time-items .time-item:nth-child(even) span {
		right: auto;
		left: 0;
		margin: 0;
	}

	.time-items .time-item:nth-child(even) .time-item-images {
		margin-left: 20px;
	}

	.time-items .time-item + .time-item {
		margin-top: 20px;
	}

	.time-items .time-item:last-child:nth-child(even) .time-item-content:before,
	.time-items .time-item:last-child:nth-child(odd) .time-item-content:before {
		left: 19px;
		right: auto;
		margin: 0;
	}

	.time-items .time-item-images {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
		width: calc(100% - 206px);
	}

	.time-items .time-item-images img + img {
		display: inline-block;
		margin: 0 0 0 10px;
	}

	.time-items .time-item-content {
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0;
		width: 186px;
	}

	.time-items span {
		right: auto;
		left: 0;
		margin: 0;
	}
}

@media (max-width: 767px) {
	.time-items {
		max-width: 340px;
	}

	.time-items .time-item {
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
		min-height: 0;
	}

	.time-items .time-item:nth-child(even) .time-item-images {
		margin-left: 0;
	}

	.time-items .time-item-content {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
		width: 100%;
	}

	.time-items .time-item-images {
		overflow-y: auto;
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
		width: 100%;
		margin: 0 0 5px;
		white-space: nowrap;
	}
}

/* ------------------------------------------------------------ *\
  Testing for scrollbar
\* ------------------------------------------------------------ */

.scrollbar-measure {
	width: 100px;
	height: 100px;
	overflow: scroll;
	position: absolute;
	top: -9999px;
}

/* ------------------------------------------------------------ * Nav Secondary
\* ------------------------------------------------------------ */
.nav-secondary ul {
	overflow: hidden;
	padding-bottom: 10px;
	margin: 20px 0 3px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	list-style: none outside none;
	font-family: "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .01em;
}

.nav-secondary li {
	border: none;
	-webkit-transition: opacity .3s;
	transition: opacity .3s;
	text-align: center;
}

.nav-secondary li:before, .nav-secondary li:after {
	content: '';
	-webkit-transition: all .3s;
	transition: all .3s;
}

.nav-secondary li:before {
	position: absolute;
	left: 50%;
	top: 100%;
	border-style: solid;
	border-width: 8px 8px 0 8px;
	border-color: #a5a39b transparent transparent transparent;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.nav-secondary li:after {
	position: absolute;
	left: 50%;
	top: 100%;
	border-style: solid;
	border-width: 6px 6px 0 6px;
	border-color: #fff transparent transparent transparent;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.nav-secondary li + li {
	margin-left: 3px;
}

.nav-secondary li > a {
	overflow: visible;
	position: relative;
	display: block;
	height: 42px;
	background-color: #fff;
	font-family: "futura-pt", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	font-size: 15px;
	line-height: 1.33;
	color: #2c2c2c;
	font-weight: 900;
	-webkit-transition: background .3s;
	transition: background .3s;
}

.nav-secondary li > a:before, .nav-secondary li > a:after {
	content: '';
	visibility: hidden;
	opacity: 0;
	-webkit-transition: visibility .3s, opacity .3s;
	transition: visibility .3s, opacity .3s;
}

.nav-secondary li a > span {
	display: block;
	padding: 0 20px;
	color: #2c2c2c;
	line-height: 42px;
	text-transform: uppercase;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.nav-secondary li.active {
	position: relative;
	border-color: #a5a39b;
	background: #fff;
}

.nav-secondary li.active:before {
	border-width: 10px 10px 0 10px;
}

.nav-secondary li.active:after {
	border-width: 10px 10px 0 10px;
	margin-top: -4px;
}

.nav-secondary li.active a {
	position: relative;
	background-color: #a5a39b;
}

.nav-secondary li.active a:after {
	visibility: visible;
	opacity: 1;
	position: absolute;
	top: 3px;
	right: 3px;
	bottom: 3px;
	left: 3px;
	border: 2px solid #f5f2ee;
}

.nav-secondary li.active a:before {
	visibility: visible;
	opacity: 1;
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 10;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 10px 0 10px;
	border-color: #a5a39b transparent transparent transparent;
	margin-top: -7px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.nav-secondary li.active span {
	color: #fff;
}

.nav-secondary li:hover {
	opacity: .8;
}

.nav-secondary .jcf-select {
	display: inline-block;
	height: 31px;
	border: 2px solid #d6d6d6;
	background-color: #fff;
	margin-bottom: 12px;
}

.nav-secondary .jcf-select .nav-select + .jcf-select-text {
	margin: 0 35px 0 8px;
	font-size: 15px;
	line-height: 1.8;
	color: #a5a39b;
}

.nav-secondary .jcf-select .nav-select + .jcf-select-text:before {
	display: none;
}

.nav-secondary .jcf-select .nav-select ~ .jcf-select-opener {
	top: 6px;
	border-color: transparent #a5a39b #a5a39b transparent;
}

.nav-secondary .jcf-select .jcf-select-text {
	margin: 0 35px 0 8px;
	font-size: 15px;
	line-height: 1.8;
	color: #a5a39b;
}

.nav-secondary .jcf-select .jcf-select-text:before {
	display: none;
}

.nav-secondary .jcf-select .jcf-select-opener {
	top: 6px;
	border-color: transparent #a5a39b #a5a39b transparent;
}

.nav-secondary .jcf-select[class*="jcf-drop-active"] .jcf-select-opener {
	top: 6px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.nav-secondary .jcf-select[class*="jcf-drop-active"] .jcf-select-opener {
	top: 17px;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

@media (max-width: 1023px) {
	.nav-secondary ul {
		display: none;
	}
}

/* ------------------------------------------------------------ * Search Alt
\* ------------------------------------------------------------ */
.search-alt {
	position: relative;
	z-index: 40;
	padding: 17px 0 45px;
}

.search-alt form {
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	padding: 0;
}

.search-alt h1 {
	display: block;
	width: 100%;
	margin-bottom: 33px;
	line-height: 1.43;
	text-align: left;
	color: #454441;
}

.search-alt h1 a {
	color: #807878;
}

.search-alt .search-inner {
	width: 100%;
	max-width: 668px;
	padding: 2px;
	border: 3px solid #d8d8d8;
	font-size: 0;
}

.search-alt .search-inner .search-field {
	width: calc(100% - 118px);
}

.search-alt .search-inner .search-field:focus {
	border: none;
	outline: 0;
}

.search-alt .search-inner .btn {
	width: 117px;
}

@media (max-width: 1023px) {
	.search-alt br {
		display: none;
	}

	.search-alt h1 {
		margin-bottom: 20px;
	}

	.search-alt .search-inner {
		max-width: none;
	}
}

@media (max-width: 767px) {
	.search-alt {
		padding: 0 0 20px;
	}

	.search-alt h1 {
		font-size: 20px;
	}
}

/* ------------------------------------------------------------ * Search Results
\* ------------------------------------------------------------ */
.search-results {
	margin-bottom: 30px;
}

.search-results .grid-item:last-child {
	border-bottom: 1px solid #d6d6d6;
}

.search-results .grid-image {
	width: 187px;
	margin-right: 40px;
	border: none;
	text-align: center;
}

.search-results .grid-image img {
	max-width: 100%;
	width: auto;
	height: auto;
}

.search-results .grid-image + .grid-content {
	max-width: calc(100% - 250px);
	padding: 0;
	margin-bottom: 0;
}

.search-results .grid-image + .grid-content p {
	margin-top: 0;
}

.search-results .grid-item-author .grid-image + .grid-content p {
	margin-top: 8px;
}

.search-results .grid-content {
	padding: 52px 20px 14px;
	width: 100%;
	max-width: 860px;
}

.search-results .grid-content p {
	margin-top: 8px;
}

@media (max-width: 767px) {
	.search-results {
		margin-bottom: 0;
	}

	.search-results .grid-image {
		width: auto;
	}

	.search-results .grid-image + .grid-content {
		max-width: 100%;
	}

	.search-results .grid-content {
		padding: 20px 0 0;
	}
}

#wrapper .search-results .grid-image img {
	max-width: 100%;
	width: 100%;
	height: auto;
}

.grid-simple .grid-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 20px 0;
	border-bottom: 1px solid #d6d6d6;
}

.grid-simple .grid-item:last-child {
	border-bottom: none;
}

.grid-simple .grid-image {
	width: 128px;
	border: 1px solid #e1e1e1;
	margin: 0 71px 0 0;
}

.grid-simple .grid-image a {
	display: block;
}

.grid-simple .grid-image img {
	width: 100%;
	height: auto;
}

.grid-simple .grid-content {
	width: calc(100% - 198px);
	margin-bottom: 12px;
}

.grid-simple .grid-meta {
	display: block;
	margin-bottom: 18px;
	font-size: 13px;
	line-height: 1.54;
}

.grid-simple .grid-meta a {
	color: #8b8982;
	font-style: normal;
	-webkit-transition: opacity .3s;
	transition: opacity .3s;
}

.grid-simple .grid-meta a:hover {
	opacity: .7;
}

.grid-simple .grid-content h1 {
	margin-bottom: 0;
	color: #8b8982;
	text-align: left;
}

.grid-simple .grid-content h1 a {
	text-decoration: none;
}

.grid-simple .grid-content h1 a:hover {
	text-decoration: underline;
}

.grid-simple .grid-content p {
	font-size: 16px;
	line-height: 1.63;
}

.grid-simple .grid-item-author .grid-image {
	overflow: hidden;
	position: relative;
	border-radius: 50%;
}

.grid-simple .grid-item-author .grid-image img {
	border-radius: 50%;
}

.grid-simple .grid-item-author .grid-image:before {
	content: '';
	position: absolute;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
	z-index: 2;
	border: 4px solid #f5f2ee;
	border-radius: 50%;
}

.grid-simple .grid-item-author .grid-image:after {
	content: '';
	position: absolute;
	top: 3px;
	right: 3px;
	bottom: 3px;
	left: 3px;
	border: 3px solid #fff;
	border-radius: 50%;
}

.grid-simple .grid-item-author p {
	margin-top: 8px;
}

@media (max-width: 767px) {
	.grid-simple {
		margin-right: 0;
	}

	.grid-simple .grid-item {
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
	}

	.grid-simple .grid-image {
		margin: 0 0 20px;
	}

	.grid-simple .grid-item-author .grid-image {
		width: 180px;
	}

	.grid-simple .grid-content {
		width: 100%;
	}

	.grid-simple .grid-content h1 {
		font-size: 20px;
	}

	.grid-simple .grid-content p {
		font-size: 14px;
	}
}

.search-results .grid-image {
	width: 187px;
	margin-right: 40px;
	border: none;
	text-align: center;
}

.search-results .grid-image img {
	max-width: 100%;
	width: auto;
	height: auto;
}

/* ------------------------------------------------------------ * Testimonial
\* ------------------------------------------------------------ */
.testimonial {
	position: relative;
	padding: 68px 0 77px;
	font-family: "adobe-caslon-pro", "Times New Roman", "Times", "Baskerville", "Georgia", serif;
}

.testimonial:before {
	content: '“';
	position: absolute;
	top: 20px;
	left: -8px;
	font-size: 489px;
	line-height: 1;
	color: #fff;
}

.testimonial:after {
	content: '”';
	position: absolute;
	bottom: -373px;
	right: -20px;
	font-size: 489px;
	line-height: 1;
	color: #fff;
}

.testimonial blockquote {
	position: relative;
	z-index: 20;
	max-width: 772px;
	padding: 0;
	margin: 0 auto;
	border: none;
	font-size: 28px;
	line-height: 1.43;
	color: #454441;
	text-align: center;
}

.testimonial cite {
	display: block;
	margin-top: 30px;
	font-style: normal;
}

@media (max-width: 767px) {
	.testimonial {
		padding: 30px 50px;
	}

	.testimonial:before {
		top: 30px;
		left: 0;
		font-size: 160px;
	}

	.testimonial:after {
		bottom: -110px;
		right: 0;
		font-size: 160px;
	}

	.testimonial blockquote {
		font-size: 20px;
	}

	.testimonial cite {
		margin-top: 20px;
	}
}

@media (max-width: 479px) {
	.testimonial {
		padding: 20px 0;
	}

	.testimonial:before, .testimonial:after {
		display: none;
	}
}

.promos-body {
	padding: 37px 0 58px;
}

.promos-body h1 {
	margin-bottom: 17px;
	line-height: 1.43;
	text-align: left;
}

@media (max-width: 1023px) {
	.promos-body br {
		display: none;
	}
}

@media (max-width: 767px) {
	.promos-body {
		padding: 20px 0;
	}

	.promos-body h1 {
		margin-bottom: 10px;
		font-size: 20px;
	}
}

/* ------------------------------------------------------------ * List Contacts Default
\* ------------------------------------------------------------ */
.list-contacts-default {
	padding: 17px 0 4px;
	margin-bottom: 0;
	font-family: "adobe-caslon-pro", "Times New Roman", "Times", "Baskerville", "Georgia", serif;
}

.list-contacts-default > li {
	text-align: left;
}

.list-contacts-default > li > p {
	margin-bottom: 24px;
}

.list-contacts-default h1 {
	margin-bottom: 18px;
	line-height: 1.36;
	color: #454441;
	text-align: left;
}

.list-contacts-default ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	padding-left: 0;
	list-style: none outside none;
}

.list-contacts-default ul li {
	width: 33.33%;
}

.list-contacts-default ul li + li {
	padding-left: 13px;
}

.list-contacts-default h2 {
	margin-bottom: 3px;
	font-size: 20px;
	line-height: 1.5;
	color: #454441;
	font-weight: 700;
}

.list-contacts-default address {
	font-size: 20px;
	line-height: 1.78;
	color: #454441;
	font-style: normal;
}

.list-contacts-default address:last-child {
	margin-bottom: 0;
}

.list-contacts-default p {
	margin-bottom: 6px;
	font-size: 20px;
	line-height: 1.5;
}

.list-contacts-default p a {
	color: #8b8982;
}

.list-contacts-default p a:hover {
	color: #454441;
	text-decoration: underline;
}

.list-contacts-default p a[href^='mailto'] {
	color: #8b8982;
}

.list-contacts-default p a[href^='mailto']:hover {
	color: #454441;
	text-decoration: underline;
}

.list-contacts-default .divider {
	margin: 28px 0 38px;
}

@media (max-width: 1023px) {
	.list-contacts-default ul {
		margin-bottom: -20px;
	}

	.list-contacts-default ul li {
		width: 50%;
		margin-bottom: 20px;
	}

	.list-contacts-default ul li:nth-child(even) {
		padding-left: 30px;
	}

	.list-contacts-default ul li + li {
		padding-left: 0;
	}
}

@media (max-width: 767px) {
	.list-contacts-default ul li {
		width: 100%;
	}

	.list-contacts-default ul li:nth-child(even) {
		padding-left: 0;
	}

	.list-contacts-default h2 {
		font-size: 18px;
	}

	.list-contacts-default address,
	.list-contacts-default p {
		font-size: 16px;
	}

	.list-contacts-default .divider {
		margin: 20px 0;
	}
}

/* ------------------------------------------------------------ * List Squares
\* ------------------------------------------------------------ */

.list-squares {
	padding: 0;
	margin: 0;
}

.list-squares li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 5px;
	font-size: 16px;
	line-height: 1.5;
	color: #454441;
}

.list-squares li:before {
	content: '';
	position: absolute;
	top: 6px;
	left: 2px;
	width: 6px;
	height: 6px;
	background-color: #a5a39b;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* ------------------------------------------------------------ * Form Elements
\* ------------------------------------------------------------ */
/* Radio */
.radio {
	position: relative;
}

.radio input {
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

.radio .form-label {
	position: relative;
	display: inline-block;
	padding: 4px 0 0 26px;
	font-size: 14px;
	line-height: 1.2;
	cursor: pointer;
}

.radio .form-label:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 16px;
	height: 16px;
	border: 2px solid #c9c8c3;
	border-radius: 50%;
	margin-top: -2px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.radio .form-label:after {
	content: '';
	visibility: hidden;
	position: absolute;
	top: 50%;
	left: 5px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #a5a39b;
	margin-top: -2px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	opacity: 0;
	-webkit-transition: opacity .4s, visibility .4s;
	transition: opacity .4s, visibility .4s;
}

.radio input:checked + .form-label:after {
	visibility: visible;
	opacity: 1;
}

/* Select Alt */
.select-alt + .jcf-select {
	display: inline-block;
	height: 41px;
	border: 2px solid #d6d6d6;
	background-color: #fff;
}

.select-alt + .jcf-select .jcf-select-text {
	margin: 0 35px 0 19px;
	font-size: 15px;
	line-height: 2.47;
	color: #a5a39b;
}

.select-alt + .jcf-select .jcf-select-text:before,
.select-alt + .jcf-select-text:before {
	display: none;
}

.select-alt + .jcf-select .jcf-select-opener {
	border-color: transparent #a5a39b #a5a39b transparent;
}

.waypoint-holder .jcf-select {
	display: inline-block;
	height: 41px;
	border: 2px solid #d6d6d6;
	background-color: #fff;
}

.waypoint-holder .jcf-select .select-alt + .jcf-select-text {
	margin: 0 35px 0 19px;
	font-size: 15px;
	line-height: 2.47;
	color: #a5a39b;
}

.waypoint-holder .jcf-select .select-alt + .jcf-select-text:before {
	display: none;
}

.waypoint-holder .jcf-select .select-alt ~ .jcf-select-opener {
	border-color: transparent #a5a39b #a5a39b transparent;
}

.waypoint-holder .jcf-select[class*="jcf-drop-active"] .jcf-select-opener {
	top: 11px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.waypoint-holder .jcf-select[class*="jcf-drop-active"] .jcf-select-opener {
	top: 17px;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

.head-of-section-alt > .select-holder > .jcf-select {
	display: inline-block;
	height: 31px;
	border: 2px solid #d6d6d6;
	background-color: #fff;
	margin-bottom: 12px;
}

.head-of-section-alt > .select-holder > .jcf-select .nav-select + .jcf-select-text {
	margin: 0 35px 0 8px;
	font-size: 15px;
	line-height: 1.8;
	color: #a5a39b;
}

.head-of-section-alt > .select-holder > .jcf-select .nav-select + .jcf-select-text:before {
	display: none;
}

.head-of-section-alt > .select-holder > .jcf-select .nav-select ~ .jcf-select-opener {
	top: 6px;
	border-color: transparent #a5a39b #a5a39b transparent;
}

.head-of-section-alt > .select-holder > .jcf-select[class*="jcf-drop-active"] .jcf-select-opener {
	top: 6px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.head-of-section-alt > .select-holder > .jcf-select[class*="jcf-drop-active"] .jcf-select-opener {
	top: 17px;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

/* Nav Select */
.jcf-select-nav-select li span {
	text-transform: uppercase;
}

/* ------------------------------------------------------------ *\
  Nav
\* ------------------------------------------------------------ */

@media (max-width: 767px) {
	.nav-wrapper .search-form input[type='search'] {
		width: calc(100% - 44px);
		font-size: 14px;
	}

	.nav-wrapper .search-form .submit-holder {
		overflow: hidden;
	}
}

/* ------------------------------------------------------------ *\
  Main Nav
\* ------------------------------------------------------------ */

@media (max-width: 767px) {
	.main-nav > li .submenu-holder > div {
		padding-bottom: 0;
	}

	.main-nav > li .submenu-holder > div:last-child {
		padding-bottom: 30px;
	}

	.main-nav > li .submenu-holder > div + div {
		padding: 0;
	}
}

.single-post.post-template-default .news-room-holder .bg-dark-grey .clearfix:after {
	display: none;
}

.news-room-holder .tags-holder {
	margin: 40px 0 20px;
}

.single-crb_author .section-simple .section-aside {
	height: 10px;
	width: 342px;
	margin: 0 65px 0 0;
}

/*.section-type-basic .author-info { max-width: 695px; float: right; }*/
.single-crb_author .section-content p,
.single-crb_author .content-hidden p {
	font-size: 18px;
}

/*.single-crb_author .section-content .divider:last-child {
	display: none;
}*/

.single-crb_author .section-content {
	padding-bottom: 50px;
}

@media (max-width: 1024px) {
	/*.section-type-basic .author-info { max-width: 100%; float: none; }*/

	.author-info .divider {
		display: none;
	}
}

.main-nav .hidden-mobile {
	cursor: default;
}

.main-nav .hidden-mobile:hover {
	color: #8b8982 !important;
}

.main-nav .hidden-mobile:hover span {
	text-decoration: none !important;
}

.book-subtitle {
	font-size: 22px !important;
}

.contributor {
	margin-bottom: 5px !important;
}

.book-head .divider {
	margin-top: 34px;
}

.author-content .author-info .divider-bottom {
	margin-top: 30px;
	margin-bottom: 0;
}

.section-type-deluxe .author-info .divider-bottom {
	display: none;
}

/* ==========================================================================
  Loading CSS
   ========================================================================== */
#grove-loading {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	display: none;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transition: all 1s linear;
	-moz-transition: all 1s linear;
	-ms-transition: all 1s linear;
	-o-transition: all 1s linear;
	width: 100%;
	z-index: 9000;
	webkit-transition: all 1s linear;
}

.grove-loading-svg {
	background: url(images/loading.gif) 0 0 no-repeat;
	background-size: 100px 100px;
	height: 100px;
	left: 50%;
	position: fixed;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100px;
	z-index: 9001;
}

.home .important-news .text-holder p {
	font-size: 16px;
	line-height: 1.6;
}

.home .important-news .text-holder h2 {
	font-size: 18px;
	line-height: 1.33;
}

.home h1 {
	text-align: center;
	margin-bottom: 0px;
	color: #454441;
	font-size: 28px;
}

.gform_wrapper form {
    position: relative;
}
.gform_ajax_spinner {
	margin-left: 0;
	border: 4px solid #514f4d;
	border-left: 4px solid #ff0;
	animation: spinner 1.1s infinite linear;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	position: absolute;
	left: 42%;
	top: 20%;
	transform: translate(-50%,-50%);
}

@keyframes spinner {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

   /* Changes the style of the overall form */
#mc_embed_signup_scroll {
    background-color: #ffffff;
    color: #000000;
        width: 100%;
 margin: 40px;
}

#mc_embed_signup {
    background-color: #f2efe9;
    color: #000000;
    padding: 20px;
        text-align: center;
}

/* Styles the header text above the inputs */
#mc_embed_signup h2 {
    font-size: 18px;
    margin: 0 0 20px;
    color: #000000;
    text-align: center;
}

/* Adds extra space around the input boxes */
#mc_embed_signup .mc-field-group {
    margin: 0 0 10px;
}
#mc_embed_signup_scroll > .mc-field-group {
	margin: 15px 0 0;
}
#mc_embed_signup .size1of2 {
	text-align: center;
}

#mc_embed_signup .monthfield,
#mc_embed_signup .dayfield {
	display: inline-block;
	width: 40%;
}
/* Styles the form content area */
#mc_embed_signup_scroll input {
    width: 100%;
    background-color: #f2efe9;
    -bottom: 0 0 10px 0;
}

/* Styles the form content area */
#mc_embed_signup input {
  
    margin-bottom: 15px;
}

/* Select */
.inner-page .mc-field-group .jcf-select {
	width: 100%;
	max-width: 100%;
	background-color: #f2efe9;
	border: none;
}
.inner-page .mc-field-group .jcf-select-text {
	color: #000;
}
.inner-page  .mc-field-group .jcf-select .jcf-select-opener {
	border-color: transparent #000 #000 transparent;
}

/* Styles the subscribe button */
#mc_embed_signup .button {
	margin: 0 0 15px;
	border-color: #a5a39b;
	background-color: #a5a39b;
	font: 700 13px/18px futura-pt,Arial,"Helvetica Neue",Helvetica,sans-serif;
	box-shadow: inset 0 0 0 2px #f5f2ee;
}

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

#author-tour-dates.triangle-up:after {
	top: auto;
}

.book-hardcover-top-section {
	display: none;
}

.prevailing-hardcover .book-hardcover-top-section {
	display: block;
}