/* ==========================================================================
   Reset default styles
   ========================================================================== */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,
ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{
	background: transparent;
	border: 0;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
	outline: none;
	color:#333;
	font-weight:normal;
}

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

blockquote {
	quotes: none;
}

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

a img {
	border: none;
}

img,
.wp-caption{
	max-width: 100%;
	height: auto;
}
ul, li {
	list-style-type:none;
	margin:0;
	padding:0;
}
/* ==========================================================================
   End of reset styles
   ========================================================================== */

body,html {
	height:100%;	
}

body {
	font-family: 'Quattrocento Sans', sans-serif;
}

.mobile-only {
    display: none;
}

#main {
	width:1100px;
	height:100%;
	margin:0px auto;
	margin-top:-1px;
}

	#main #content-wrapper {
		min-height: 100%;
		width:100%;
  		margin-bottom: -30px;
	}
	
	footer, #content-wrapper:after {
  		height: 30px;
        margin-top: 20px;
	}
	
	#content-wrapper:after {
  		content: "";
  		display: block;
	}

	#main header {
		height:98px;
		margin:0;
		border-bottom:1px solid #ccc;
		display: flex;
		padding-bottom:20px;
		justify-content: space-between;
	}
	
		#main header .logo {
			text-indent: -9999px;
    		background-image: url(../images/logo.png);
    		background-size: 100%;
			background-repeat: no-repeat;
    		margin: 10px 10px 0;
    		width: 300px;
    		height: 100px;
			cursor: pointer;
		}
		
		#main header nav {
			float:left;
			display:table;
			margin-top:80px;
		}
		
			#main header nav ul {
				display: flex;
				vertical-align: bottom;
				font-size: 14px;
			}
			#main header nav ul a {
				text-decoration: none;
				color:#333;
			}	
			
				#main header nav > ul li a {
					margin: 0px 20px;
					padding:5px 3px;
					font-size:16px;
				}

				#main header nav > ul li.order-now-container {
					display: flex;
					position: relative;
    				top: -11px;
				}
				
				#main header nav > ul li a.order-now {
					border:1px solid #333;
					padding:10px 15px;
					margin:0px 10px;
					overflow: hidden;
				  	position: relative;
					box-sizing: inherit;
  					transition-property: all;
  					transition-duration: 0.6s;
  					transition-timing-function: ease;
				}
			
				#main header nav > ul li .order-now span {
				  z-index: 20;
				}
				#main header nav > ul li .order-now:after {
				  background: #e09d95;
				  content: "";
				  height: 155px;
				  left: -75px;
				  opacity: 0.2;
				  position: absolute;
				  top: -50px;
				  transform: rotate(35deg);
				  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
				  width: 50px;
				  z-index: -10;
				}
				#main header nav > ul li .order-now:hover:after {
				  left: 120%;
				  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
				}
			
			#main header nav a:hover:not(.order-now),
			#main header nav a.active {
				font-weight:700;
				color:#000;
				border-top:1px solid #666;
				
			}

			#main header nav a:hover:not(.order-now) {
				font-weight:400;
			}

			#main header nav a.active:hover {
				font-weight:700;
			}
			
				#main header nav li ul {
					position:absolute;
					display:none;
					top: 21px;
					left:-20px;
					opacity:.9;
				}
				
					#main header nav li ul li {
						display:block;
						float:none;
						
					}
					
						#main header nav li ul li a {
							border:0;
							display:block;
							background:#ccc;
							padding:8px 20px;
							font-size:14px;
						}
						
						#main header nav li ul li a:hover {
							font-weight:normal;
							background:#eee;
							border:0;
						}


#main header nav.mobile-menu{
    align-items: center;
    justify-content: space-between;
    padding: 0;
    background-color: #eee;
    color: white;
	text-align: inherit;
	float:none;
	margin-top:0;
	display: none;
}
.mobile-menu-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    transition: all .5s ease-in-out;
	margin:0px auto;
}
.mobile-menu-hamburger{
    width: 40px;
    height: 2px;
    background-color: #666;
    border-radius: 5px;
    z-index: 10;
    transition: all .5s ease;
}
.mobile-menu-hamburger::before,
.mobile-menu-hamburger::after{
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: #666;
    border-radius: 5px;
    transition: all .5s ease;
}
.mobile-menu-hamburger::before{
    transform: translateY(-6px);
}
.mobile-menu-hamburger::after{
    transform: translateY(6px);
}

.mobile-menu-input:checked ~.mobile-menu-hamburger::before{
    transform: rotate(45deg) translate(35px, -35px);
}
.mobile-menu-input:checked ~.mobile-menu-hamburger::after{
    transform: rotate(-45deg) translate(35px, 35px);
}
.mobile-menu-input:checked ~.mobile-menu-hamburger{
    transform: translateX(-50px);
    background: transparent;
}

.mobile-menu-items{
    position: absolute;
	top: -100%;
    width: 100%;
    left: 0;
    transition: all .5s ease-out; 
    padding-top: 50px;
	z-index: 1;
	background:#fff;
	box-shadow: 0px 3px 10px #999;
	display: block!important;
	
}
.mobile-menu-items li{
    border-bottom: .5px solid rgb(182, 181, 181);
    padding: 12px 0;
    text-align: center;
    transition: all .5s ease-out; 
    cursor: pointer;
	font-size: 1.5em;
}
	.mobile-menu-items li:last-of-type {
		border-bottom:0;
	}
	.mobile-menu-items li:first-of-type {
		border-top: .5px solid rgb(182, 181, 181);
	}
	
.mobile-menu-items li:hover{
    letter-spacing: 2px;
    opacity: .6;
}

.mobile-menu-input:checked ~.mobile-menu-items{
    top:0;
	display: block!important;
}
.mobile-menu-input{
    display: none;
}
			
	#main .content {
		margin:40px auto;
		display: flex;
		justify-content: center;
		gap:40px;
		padding:0px 20px;
	}

	.home #main .content {
		gap:40px;
		margin:30px auto 20px;
	}

#main .intro {
	display:flex;
/*	padding:0px 20px;*/
	margin: 0;
/*     border-bottom: 1px solid #ccc;*/
}

.home #main .intro h1 {
	margin: 10px 0px 0px;
	font-size: 32px;
  font-weight: 600;
    text-align: left;
	line-height: 40px;
/*	width:74%;*/
}

.home #main .intro h1 strong {
	font-weight: 700;
    color: #e09d95;
    display: block;
    font-size: 36px;
}

.home #main .intro .btn-wrapper {
	width:34%;
	flex-grow: 1;
	display: flex;
}
.home #main .intro .btn-wrapper .btn {
	height:69px;
	align-self: flex-end;
	margin-bottom:10px;
}

	#main .content section {
/*		width:50%;*/
	}

.col-lgr {
	width:75%;
}
.col-lg {
	width:66.67%;
}
.col-med {
	width:55.67%;
}
.col-sm {
/*	width:27%;*/
    width:33%;
}
.col-smlr {
/*	width:27%;*/
    width:25%;
}
.col-lg-inside {
	width:100%;
    display: flex;
    justify-content: center;
    gap: 40px;
}
.col-lg-inside > div {
    width: 50%;
}

.upcoming-appearances {
	background: #eee;
    width:100%;
    box-sizing: border-box;
    padding: 10px 20px 10px;
    margin-top: 28px;
}

#main .content section .upcoming-appearances h3 {
    color: #e09d95;
}

.upcoming-appearances p {
    margin: 15px 0px 10px 0px;
}

.latest {
    padding-bottom: 20px;
    margin-bottom: 20px;
    margin-top: 0px;
}
.banner {
    margin-top: 20px;
}

#main .content section .latest a.read-more {
    margin-bottom:15px;
    line-height: 1.33em;
    font-weight: 400;
    font-size: 1em;
}

.order-from-author {
    padding:15px;
    padding-top: 0px;
    width: 300px;
    /*width: 100%;*/
    box-sizing: border-box;
    border: 4px solid #e09d95;
    margin-top: 15px;
    padding-bottom: 10px;
}

.order-from-author a.read-more {
    display: block;
    text-align: right;
    margin-right: 10px;
}

.order-from-author h4 {
    margin-bottom:10px;
    line-height: 1.2em;
}

.order-from-author h4 cite {
    font-weight: 700;
}

#main .content section .order-from-author h2,
#main .content section .order-from-author p
{
    margin-bottom:10px;
}

	#main .content section h2 {
		font-size: 24px;
		margin: 24px 0px 10px;
        font-weight: 600;
	}

#main .content section h2 span {
    color:#e09d95;
    font-weight: 600;
}

#main .content section h4 {
	}

	#main .content section .event {
		margin:0px 0px 20px;
		line-height: 21px;
	}

	#main .content section .event span {
		display: block;
	}

#main .content section h3 {
	font-size: 20px;
    line-height: 24px;
    margin: 20px 0px 10px;
    font-weight: 600;
}

#main .content section h3 span {
    color: #e09d95;
    font-weight: 600;
}

#main .content section .event h4.event-title {
		font-size:17px;
		margin:0px;
		font-weight: 700;
	}

#main .content .description {
	/*width:60%;*/
}

	.home #main .content .description {
		display:flex;
		justify-content: center;
    	gap: 30px;
		width:auto;
	}


#main .content .main-image {
	width:33.33%;
}

	#main .content .description-image {
        width:100%;
        /*text-align: center;
		width:49%;
		margin: 5px 0px 0px;*/
	}
#main .content .description-image img {
/*    border: 1px solid #ccc;
    padding: 7px;*/
    box-sizing: border-box;
    /*width:97%;*/
}

	#main .content .description-text {
		width:53%;
/*		margin-top:10px;*/
	}
#main .content .description h1 {
    margin: -4px 0px 0px;
    line-height: 1.2em;
    font-size: 2em;
}

#main .content .description h1 cite {
	white-space: nowrap;
}

#main .content .description h2 {
         margin: 30px 0px 0px;
    line-height: 23px;
    font-size: 1.5em;
}

	#main .content .description blockquote,
	#main .content .description p {
		margin:15px 0 20px;
		font-size:17px;
		line-height: 22px;
	}
	
	.home #main .content .description blockquote,
	.home #main .content .description p {
		margin:0px 0 20px;
	}

.home #main .content .description blockquote {
	    line-height: 21px;
    clear: both;
        margin-bottom: 30px;
    margin-top: 5px;
}

	#main .content .description blockquote a {
		text-decoration: none;
	}

	#main .content .description blockquote cite {
		font-weight: 700;
	}

		#main .content .description blockquote .source {
			white-space: nowrap;
			display: block;
			float: right;
			margin-right: 15px;
		}
	
		#main #content #latest-news {
  			float: left;
  			width: 32%;
			padding-left:12px;
			padding-bottom:50px;
			margin-top:30px;
		}
		
			#main #content #latest-news audio {
				margin-top:5px;	
			}
		
			#main #content #latest-news p {
				font-size:16px;
				line-height:19px;
				margin-right:0px;
				margin-bottom: 24px;
			}
			
				#main #content #latest-news p a,
				#main #content #latest-news p a cite {
					font-weight:bold;	
				}
			
			#main #content #latest-news h2 {
				margin: 0px 0 20px 8px;
  				font-size: 24px;
  				line-height: 24px;	
			}
			
			#main .content a.read-more,
			.press #main .content a.read-more {
				position:relative;
				white-space:nowrap;
				font-weight: 400;
			    text-decoration: underline;
			}
			
			.press #main .content p a,
			.press #main .content p a cite {
				font-weight:700;
				text-decoration: none;
			}
			
			#main .content a.read-more:after {
				  content: '';
				  position: absolute;
				  right: -21px;
				  border: 8px solid transparent;
				  border-width: 5px 9px;
				  border-left-color: #333;
				  background: transparent;
				  top: 5px;
			}
			
		
		#main #content img {
			margin: 5px 20px 5px 10px;
    		float: left;
		}
		
		#main #content h2 {
			margin: 10px 0 30px 8px;
  			font-size: 30px;
  			font-weight: 400;
		}
		
		#main #content h3 {
		  	margin: 0px 0 10px 10px;
  			font-size: 20px;
			clear:left;
		}
		
		#main #content p {
			margin: 5px 30px 18px 10px;
  			font-size: 16px;
		}
		
				
		#main #content #about-us p {
			line-height:18px;
			margin-top: 2px;
    		clear: none;
    		float: none;
    		width: 95%;
    		margin-right: 10px;
    		font-size: 15px;
		}
		
		#main #content #about-us img {
			margin: 6px 16px 1px 10px;
    		float: left;
    		width: 13%;
		}
		
		#main #content #about-us p:first-of-type {
			margin-top:2px;
			clear: none;
		}
		
		#main #content a {
			font-weight:bold;
		}
		
		#main #content .content-float-left {
			float:left;
			width:33%;
			white-space: nowrap;
		}
		
		
/* video */

#lightbox-container {
/*    display: none;*/
    z-index: 0;
    visibility: hidden;
  opacity: 0;
  transition: visibility 0s .3s, opacity .3s linear;
}

#lightbox-container.fade-in {
    display: block;
    visibility: visible;
  opacity: 1;
  transition: opacity .3s linear;
}

.lightbox {
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: .85;
    position: fixed;
    z-index: 0;
    top: 0;
    left: 0;
}

.lightbox-close {
    position: fixed;
    top: 10px;
    right: 20px;
    color: #fff;
    z-index: 1;
    text-decoration: none;
    font-size: 36px;
}

.video h3 a {
    font-weight: 600;
    margin-left: 5px;
}

.video-container {
    position: fixed;
    top: 15%;
    left: 15%;
    right: 15%;
    z-index: 1;
}

video {
    width:100%;
/*    display:none;*/
    cursor: pointer;
}

#video-image {
    cursor: pointer;
    background-color: #eee;
}
	
	#main footer {
		text-align:center;
		font-size:11px;
		clear:both;
	}
	
	cite {
		font-style:italic;	
	}

cite.book-title {
    color:#e09d95;
    font-weight:600;
}
	
	em {
		font-style:normal;
		font-weight:bold;
	}
	
	
			
	/* gallery */
	
	#gallery-content ul {
		margin:0px 0 24px 10px;
	}
	
	#gallery-content {
		width:1089px;	
	}
	
	#gallery-content ul li a {
		float:left;
		width:207px;
		height:150px;
		border:1px solid #999;
		background-size:cover;
		background-position:top left;
		background-repeat:no-repeat;
		margin:0;
	}
	
	#gallery-content ul li a:hover {
		opacity:.5;
	}
	

	
	/* contact */
	

.press #main .content h2 {
    margin: 10px 0 30px 8px;
    font-size: 30px;
    font-weight: 400;
}

.contact #main .content h3 {

	    margin: 20px 0 0;
    font-size: 1.2em;
}

	.contact #main .content p{
		font-size: 15px;
    line-height: 18px;
    margin: 0px 0px 0px;
	}
	
	.contact #main .content p.primary-contact {
		font-size: 18px;
    margin-bottom: 50px;
    margin-top: 0px;
    line-height: 22px;
	}
	
	.contact h4 {
	    width: 100%;
    	clear: both;
		margin:30px 0 0 10px;
		float:left;
		padding-top:20px;
	}
	
	.contact h5 {
		font-size: 18px;
	}
	
.flex-components {
    display: flex;
    justify-content: left;
    gap: 30px;
}

.flex-components .flex-component {
    width:50%;
}

.flex-components .flex-component h2 {
    margin-bottom: 20px!important;
}
.order-now h4 {
    line-height:1.2em;
    font-size:1.2em;
    margin-bottom:20px;
}
.order-now h4.separator {
    width: 100%;
    text-align: center;
    position: relative;
}
.order-now h4.separator:before,
.order-now h4.separator:after {
    content: '';
    position: absolute;
    height: 1px;
    background: #333;
    width: 43%;
    top: 13px;
}
.order-now h4.separator:before {
    left: 0px;
}
.order-now h4.separator:after {
    right: 0px;
}
.order-now h4 a:first-of-type {
    font-weight: 600;
}
.order-now cite {
    font-weight: 700;
}
.order-now #main .content .description .flex-components .flex-component p {
    margin: 10px 0 15px;
	font-size: 1.2em;
}
.flex-components .flex-component ul li {
    margin: 10px 0 5px;
	font-size:1.15em;
    display: flex;
}
.flex-components .flex-component ul.pdf-download li {
    gap:5px;    
}
.flex-components .flex-component ul li:before {
	content:'';
}
.flex-components .flex-component ul.pdf-download li:before {
	content:'';
}
ul.pdf-download i {
	font-size:1.4em;
	color:#f00;
    position: relative;
    top: -3px;
    left: -5px;
}
.flex-components .flex-component ul li a {
	text-decoration: none;
	position: relative;
}
.flex-components .flex-component ul li a:hover {
	color:#999;
}
.flex-components .flex-component ul li a:after {
    content: '';
    position: absolute;
    right: -23px;
    border: 8px solid transparent;
    border-width: 5px 9px;
    border-left-color: #999;
    background: transparent;
    top: 6px;
}

.flex-components .flex-component ul.pdf-download li a:after {
    display: none;
}

	.icon {
		position:relative;
		display:block;
	}
	
	.icon:before {
		content: "";
  		position: absolute;
  		top: 0px;
	  	z-index: 10;
		left: 3px;
  		width: 13px;
		height: 12px;
		border-width: 0 1px 1px 0;
		border-style: solid;
		border-color: #fff;
		margin-top: -3px;
		background: transparent;
		-webkit-transform: rotate(39deg) skew(-12deg);
		-moz-transform: rotate(39deg) skew(-12deg);
		-ms-transform: rotate(39deg) skew(-12deg);
		-o-transform: rotate(39deg) skew(-12deg);
		transform: rotate(39deg) skew(-12deg);
	}
	
	.icon:after {
		content: "";
  		position: absolute;
  		top: 50%;
  		left: 0;
	}
	
	.icon .email {
		display: block;
		border: 0;
		padding-left: 24px;
		line-height: 16px;
	}
	
	.icon .email:before {
		content: "";
		position: absolute;
  		top: 4px;
  		left: 0px;
  		width: 7px;
  		border-width: 6px;
  		border-style: solid;
  		border-color: #999 #999 transparent;
  		margin-top: -7px;
  		background: transparent;
		margin: -1px 0 0;
	}
	
	.icon .email:after {
		content: "";
		position: absolute;
  		top: 14px;
		left: 2px;
		border-width: 0 8px 9px;
		border-style: solid;
		border-color: #999 transparent;
		background: transparent;
		margin: -8px 0 0;
	}

/* buy buttons */

.btn {
    background: none;
    border: none;
    cursor: pointer;
    font: 700 2rem "Times New Roman", serif;
    padding: .5em 1em;
    letter-spacing: 0.05rem;
	box-sizing: border-box;
	text-decoration: none;
	width: 100%;
    text-align: center;
	margin:10px 0px 0px;
}
		
.draw-border {
    box-shadow: inset 0 0 0 4px #333;
    color: #333;
    transition: color 0.25s 0.0833333333s;
    position: relative;
	display: inline-block;
}
.draw-border::before {
   border-bottom-width: 4px;
	border-left-width: 4px;
}
.draw-border::after {
 border-top-width: 4px;
	border-right-width: 4px;
}
.draw-border::before, .draw-border::after {
    border: 0 solid transparent;
    box-sizing: border-box;
    content: "";
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    bottom: 0;
    right: 0;
}
.draw-border::before {
    border-bottom-width: 4px;
    border-left-width: 4px;
}
.draw-border::after {
    border-top-width: 4px;
    border-right-width: 4px;
}
		.draw-border:hover {
			color: #e09d95;
		}
.draw-border:hover::before, .draw-border:hover::after {
	border-color: #e09d95;
    transition: border-color 0s, width 0.25s, height 0.25s;
    width: 100%;
    height: 100%;
}
.draw-border:hover::before {
  transition-delay: 0s, 0s, 0.25s;
}
.draw-border:hover::after {
  transition-delay: 0s, 0.25s, 0s;
}
		
		.btn:focus {
			outline:2px dotted #55d7dc;
		}
	
@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 1) {
	
	#main {
		width:768px!important;	
	}
	
	#main header {
		height:56px;
		width: 91%;
    	margin: 0px auto;
	}
	
	#main header nav {
		margin-top:35px;	
	}
	
	#main header .nav-right {
		margin-top:25px;	
	}
	
	#main header h1 {
		width:200px;
		height:50px;
	}
	
	#main header nav > ul li a {
		margin: 0px 10px;
	}
	
	#main #content {
		margin-left:6px;
		width:98%;
	}
	
	#main #content #home-left {
		width: 95%;
    	margin-left: 10px;
    	border-right: 0;
    	border-bottom: 1px solid #ccc;	
	}
	
	#main #content #whats-new h2 {
		margin-top:0;
		margin-left:0;
	}
	
	#main #content #whats-new p {
		margin-left:0;	
	}
	
	#main #content #latest-news {
		clear:both;
		width:100%;
		padding-left:0px;
		border-left:0;
	}
	
	#main #content #latest-news h2 {
		margin-left:10px;	
	}
	
	#main #content #about-us p {
		margin-right:10px;
		margin-bottom:10px;
		width:66%;
	}
	
	#gallery-content {
		width: 95%;
    	margin-left: 15px;
	}
	
	#gallery-content ul li a {
		width:139px;	
	}
	
	#main footer {
		width: 93%;
    	margin-left: 20px;
	}

	.book-content {
		width:70%;	
	}
	
	#main #content .excerpt p {
		margin-left:0;	
	}
		
	
}

@media screen and (max-width: 720px) {
	#main #content #featured-content h4 {
    	margin-left: 0px;
	}
    .flex-components .flex-component ul li a {
        display: block!important;
    }
}


@media only screen and (max-width : 1024px)
  	and (-webkit-min-device-pixel-ratio: 1) {

    #main {
		width:968px!important;	
	}
	
	#main header nav > ul li a {
		margin: 0px 13px;	
	}
	
	#main #content p {
		margin-right:10px;	
	}
	
	#main #content img {
		margin: 4px 20px 10px 10px;
	}

	#gallery-content ul li a {
		width: 178px;
		height:120px;
	}
	
	#gallery-content {
  		width: 954px;
	}
	
	.slick-prev, .slick-next {
		top:43px!important;	
	}
	
	.book-content {
		width:74%;	
	}
        
        .flex-components .flex-component ul li a {
            display:grid;
        }
	
}
/*  Desktops and laptops ----------- */

@media only screen 
and (min-width : 1224px) {


 #main,#slideshowWrapper, #slideshow, #slideshow li {
		width:1100px!important;	
	}

}
/*  Larger Screens ----------- */

@media only screen 
and (min-width : 1824px) {

    /* Styles */

}

/* Smartphones (portrait and landscape) ----------- */
@media screen and (max-width: 720px){
    
    .desktop-only {
        display: none!important;
    }
    
    .mobile-only {
        display: block!important;
    }
    
    .banner {
        margin-top: 5px;
    }
    
    .banner img {
        margin-top: 15px;
    }
    
    #main,
	#main header,
	#main header h1,
	#main #content,
	#main #content img,
	footer {
		width:100%!important;
		padding:0;
	}
	
	#main header {
		height:170px;
		display: block;
		border-bottom: none;
	}
	
	#main header .logo {
		height: 110px;
    	width: 320px!important;
    	margin: 15px auto;
		display: block;
	}
	
	#main header nav {
		width:100%;
		text-align:center;
		margin-top: 0;
		border-top:1px solid #ccc;
	}
	
	#main header nav > ul {
		display: block;
	}
	
	#main header nav > ul li {
		float:none;
		padding:4px 0;
		border-bottom:1px solid #ccc;
	}
	
	#main header nav > ul li:last-of-type {
		display: block;
		top:0;
	}
	
	#main header nav > ul li a {
		margin:0;
		padding:0;
		font-size:20px;
		display:block;
	}
	
	#main header nav > ul li:last-of-type a {
		border:none;
		padding:0;
	}
	
	#main header nav a:hover {
		border:0!important;
		font-weight:normal!important;
	}
	
	#main header nav a.active {
		border:0!important;
	}
	
	#main header .nav-right {
		margin:0;
		margin-left: 102px;
    	width: 125px;
		float:left;
		padding-top:3px;
	}
	
	#main header nav.desktop-menu {
			display: none;
		}
		#main header nav.mobile-menu{
			display: flex;
		}
	
	.home #main .intro {
		display: block;
		margin-top:20px;
	}
	
	.home #main .intro h1,
	.home #main .intro h1 strong {
		text-align: center;
		width: 100%;
		font-size: 32px;
        line-height: 32px;
	}
	
	.home #main .intro .btn-wrapper {
		width:auto;
	}
	
	#main .content {
		margin-top:0;
		display: block;
		margin-bottom: 40px!important;
	}
	
	#main .content .description {
		width:100%;
		margin-top:15px;
	}
	
	#main .content section[class^="col"] {
		width:100%;
		box-sizing: border-box;
    	padding-bottom: 10px;
	}
    
    .latest {
        margin-bottom: 0px;
        padding-bottom: 0px;
    }
    
    .upcoming-appearances {
        margin-top: 0;
        margin-bottom: 20px;
    }
	
    .video-container {
        top: 12%;
        left: 5%;
        right: 5%;
    }
    
	.home #main .content .description {
		display:block;
		width:100%;
	}
	
	#main h1,
	#main .content .description h1 {
		font-size: 1.75em;
		margin-top:0;
	}
	#main .content .description h1 cite {
		white-space: normal;
	}
	
	#main .content .description-image,
	#main .content .description-text {
		width:100%;
		margin-top:0px;
	}
	
	#main .content .description-text {
		margin-top:15px;
	}
	
	#main .content section h2,
	#main .content .description h2 cite {
    	    margin: 10px 0 10px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
	}
	
	#main .content .description blockquote,
	#main .content section p,
	#main .content section p.event {
    	margin: 15px 0 15px;
    	font-size: 16px;
    	line-height: 20px;
	}
	
	#main .content .main-image {
		width: 100%;
		margin-top:20px;
	}
	
	#main .content .main-image img {
		width: 100%;
	}
    
    .col-lg-inside {
        display: block;
    }
    
    .col-lg-inside > div {
        width: 100%;
    }
    
    .banner img {
        width: 100%;
    }

	.gallery-content h1 {
		margin: 0px 10px 10px;
	}
	
	.slick-prev, .slick-next {
		top:65px!important;
	}
	
	.slick-prev:before, .slick-next:before {
		font-size: 24px!important;
  		line-height: 41px!important;
	}
	
	.slick-prev {
		left:-26px!important;	
	}
	
	.slick-next {
		right:-24px!important;	
	}
	
	.cboxPhoto {
		width:300px!important;
		height:auto!important;
	}
	
	.book-content {
		width:100%;
		margin-left:0;
	}
	
	.pp_content_container .pp_left {
    	padding-left: 15px!important;
	}
	.flex-components {

    	display: block;
	}
	.flex-components .flex-component {
		width:100%;
	}
	.draw-border {
		width:100%;
		text-align: center;
	}
    .video {
        padding-bottom:0px;
        margin-bottom:0px;
    }
    .order-from-author {
        width: 100%;
        margin-top: 0;
    }
}
