* {
	margin: 0px;
	padding: 0px;
}

@font-face {
    font-family: bau;
    src:url("/fonts/BauWebPro.woff");
    font-style: normal;
    font-weight: 300;
}

html {
	font-family: bau, helvetica, arial, sans-serif;
	font-size: 17px;
	line-height: 21px;


	text-rendering: optimizeLegibility !important;
	-webkit-font-smoothing: antialiased !important;

	font-feature-settings: "kern";
	-webkit-font-feature-settings: "kern";
	-moz-font-feature-settings: "kern";
	-moz-font-feature-settings: "kern=1";  	
}

body {
    font-family: bau, Helvetica, Arial, sans-serif;
    font-size: 17px;
    line-height: 21px;
    font-weight: 300;
    color: #111;
    
    background: #cfc7ba; /* tan */
    background: #fec9c8; /* pink */
    background: #e0fefd; /* turquoise blue */
    background: #ebebeb; /* light grey */
    background: #f6eae4; /* light pink */
    background: #cabdc6; /* light purple */
    background: #fffaba; /* light yellow */
    background: #fffef1; /* light yellow/beige */
    background: #faf5f0; /* light beige */
   
    background: #f6eae4; /* light pink */
    color: #f34f4b;


    -webkit-text-size-adjust: 100%;

    overflow: scroll;

}

body.scroll {
	overflow-y: hidden; 
	overflow-x: scroll; 
}

a {
	color: black;
	color: #f34f4b;
	text-decoration: none;
	background-image: linear-gradient(to top,
		rgba(243,79,75,0) 2%,
		rgba(243,79,75,1) 2%,
		rgba(243,79,75,1) 8%,
		rgba(243,79,75,0) 8%
	);
}

a:hover {
	background-image: none;
}

/* floating books */

.floating-book {
	max-width: 100px;
	height: auto;
	z-index: 10;
}

/* hover screen test */

#corner{
    height: 70px;
    width: 70px;
    position: absolute;
    right: 160px;
    top: 200px;
}


/* loading screen */

#loading {
    position: fixed;
    overflow: hidden;
    cursor: pointer;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    text-align: center;

    background: #f34f4b;
    color: white;

    overflow: hidden;
    z-index: 10000000;

    -o-transition: opacity 100ms ease;
    -ms-transition: opacity 100ms ease;
    -webkit-transition: opacity 100ms ease;
    transition: opacity 100ms ease;	    
}

#loading.fade {
    background: transparent;
    color: black;
    color: #f34f4b;

    -o-transition: opacity 1000ms ease;
    -ms-transition: opacity 1000ms ease;
    -webkit-transition: opacity 1000ms ease;
    transition: opacity 1000ms ease;	    
}

#loading.hide {
	opacity: 0;
	pointer-events: none;
}

#loading-content-container {
    height: 100vh;
    width: 100vw;	
    top: 0;
    left: 0;
    text-align: center;
	position: absolute;

	pointer-events: none;
}

#loading-content {
	font-size: 160px;
	line-height: 180px;
		
    display: inline-block;
    vertical-align: middle;

	text-align: center;
	font-weight: 100;
	letter-spacing: -5px;
	width: 80%;

	pointer-events: none;

/*    -o-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;	*/

}

#loading.hide #loading-content {
	/*transform: translateY(20px);*/
}

#loading-aligner {
	height: 100%;
	display: inline-block;
    vertical-align: middle;
    width: 0px;
}

#container {
    width: 100%;
    height: 100vh;
    overflow: auto;


    position: relative;


	-o-transition: opacity 1200ms ease;
    -ms-transition: opacity 1200ms ease;
    -webkit-transition: opacity 1200ms ease;
    transition: opacity 1200ms ease;

    -webkit-overflow-scrolling: touch;    
}

#container.interior-page {
    width: 100%;
    height: auto;
    overflow: auto;

    position: relative;


	-o-transition: opacity 600ms ease;
    -ms-transition: opacity 600ms ease;
    -webkit-transition: opacity 600ms ease;
    transition: opacity 600ms ease;

    -webkit-overflow-scrolling: touch;    
}


#draw {
	width: 100vw;
	height: 100vh;
	background: transparent;
	position: absolute;
	top: 0px;
	left: 0px;
}

/* page header */

header {
	position: fixed;
	top: 25px;
	left: 35px;
	width: calc(100% - 70px);
	z-index: 100;
}

#logo {
	display: block;
	float: left;
	width: 80px;
	height: 80px;

	background: url('../img/logo.png') no-repeat center center;
	background-size: cover;

	text-indent: -10000px;

	cursor: pointer;
}

.interior-page #header-info {
	display: none;
}

#header-info {
	float: left;
	padding: 20px;
	pointer-events: all;

    -o-transition: opacity 800ms ease;
    -ms-transition: opacity 800ms ease;
    -webkit-transition: opacity 800ms ease;
    transition: opacity 800ms ease;	  		
}

#header-info .name, #header-info .inline-filters{
	display: block;
}

.filter {	
	text-decoration: none;
	background-image: linear-gradient(to top,
		rgba(243,79,75,0) 2%,
		rgba(243,79,75,1) 2%,
		rgba(243,79,75,1) 8%,
		rgba(243,79,75,0) 8%
	);

	cursor: pointer;

    -o-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;	
}

#add-filters {
	width: 20px;
	height: 20px;
	border-radius: 10px;
	background: #f34f4b;
	vertical-align: middle;
	margin-left: 10px;
	text-align: center;
	line-height: 17px;
	font-size: 20px;

	cursor: pointer;

	display: inline-block;
	position: relative;

    -o-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;

}

#add-filters::before, #add-filters::after {
	height: 2px;
	width: 10px;
	background: white;
	content: "";
	top: 9px;
	position: absolute;
	left: 5px;
} 

#add-filters::after {
	-ms-transform: rotate(90deg); /* IE 9 */
    -webkit-transform: rotate(90deg); /* Chrome, Safari, Opera */
    transform: rotate(90deg);
}

#add-filters:hover {
	-ms-transform: rotate(180deg); /* IE 9 */
    -webkit-transform: rotate(180deg); /* Chrome, Safari, Opera */
    transform: rotate(180deg);
}

/* hover states */

.filter:hover {
	background-image: linear-gradient(#fff 50%, #fff 50%);
}

.add-filters:hover {
	background: #fafafa;
	cursor: pointer;
}


/* filtered states */

.filtering #books .book {
	display: none;
}


.filtering #books .book.show {
    display: table-cell;
}


/* books */

#books {
	z-index: 0;
    overflow: auto;
    display: table;
    table-layout: fixed;
    width: 100%;

}

.book {
    width: 120vh;
    height: 88vh;
    display: table-cell;
    vertical-align: baseline;
    text-align: center;
    padding-top: 0vh;
    cursor: none;	
    position: relative;
    z-index: 0;
}

.book img {
	vertical-align: baseline;
	height: 88vh;
	width: auto;
	position: relative;
	z-index: 0;

}

.book:hover {
	cursor: none; 	
}

a.book {
	color: transparent;
	text-decoration: none;
	border: none;
	background-image: none;
}


.end {
	width: 0px; 
	height: 0px;
}

/* small book item */

.book.small-item {
    vertical-align: middle;
}

.book.small-item img{
	width: 200px;
	height: auto;
}

/* make sure you can see the cursor when hovering on the stamp */

.book.small-item:hover {
	cursor: pointer;
}



/* medium book item */

.book.medium-item {
    vertical-align: middle;
}

.book.medium-item img{
	width: 500px;
	height: auto;

}

#rotating {
    -webkit-animation:spin 120s linear infinite;
    -moz-animation:spin 120s linear infinite;
    animation:spin 120s linear infinite;	
}

@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }


/* page overlays */

.overlay header {
	pointer-events: none;
	z-index: 100;
}

.overlay #header-info{
	opacity: 0;
	pointer-events: none;
}

.overlay #about-link {
	z-index: 1;
}

.overlay .social-media-list {
	opacity: 0;
	pointer-events: none;
}

.close {
	z-index: 1000;
}

a.close {
	color: transparent;
	text-decoration: none;
	border: none;
	background-image: none;
}

.page {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100vh;
	background: rgba(255,255,255,1);
	background: #ebebeb;
	background: #f6eae4;
	z-index: 1;
	overflow: scroll;

    -o-transition: opacity 800ms ease;
    -ms-transition: opacity 800ms ease;
    -webkit-transition: opacity 800ms ease;
    transition: opacity 800ms ease;	  	
}

.center-col {
	width: 630px;
	margin: auto;
	padding-top: 105px;
	padding-top: 48px;
	position: relative;
	z-index: 10;
}

.center-col h2{
	font-size: 24px;
	line-height: 34px;
	margin-bottom: 10px;
	font-weight: 100;
	text-align: center;
}

.center-col h3 {
	font-weight: 100;
	font-size: 16px;
	margin-bottom: 175px;
	text-align: center;
}

.center-col p{
	font-size: 24px;
	line-height: 32px;
	margin-bottom: 0px;
	font-weight: 100;
	text-indent: 35px;
}

.center-col p:first-of-type{
	text-indent: 0px;
}

/* expanded book page */

.interior-page {
	position: relative;
}

.interior-page .close { 
	width: 22px;
	height: 22px;
	position: fixed;
	top: 52px;
	right: 40px;

	cursor: pointer;
}

.interior-page .close::before, .interior-page .close::after { 
	height: 2px;
	width: 22px;
	background: #f34f4b;
	content: "";
	top: 10px;
	position: absolute;
	right: 0px;

	-ms-transform: rotate(45deg); /* IE 9 */
    -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
    transform: rotate(45deg);	
}

.interior-page .close::after { 
	-ms-transform: rotate(135deg); /* IE 9 */
    -webkit-transform: rotate(135deg); /* Chrome, Safari, Opera */
    transform: rotate(135deg);
}

.interior-page .close:hover:before, .interior-page .close:hover:after { 
	color: #ba2525;
}

#slideshow {
	position: absolute;
	top: 0px;
	left: 0px;
	min-height: auto;
	height: calc(100vh - 100px);
	z-index: 1;
	width: 100%;			
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}

.slide-item {
	position: absolute;
	width: auto;
	max-width: 100%;
	height: auto;
	opacity: 0;
	top: 50vh;
	left: 50%;
	margin: 0px;
}

.slide-item:not(.full-bleed){
	max-height: calc(100vh - 180px);		
}


.slide-item.active {
	opacity: 1;
}


.slide-item.full-bleed {
	position: absolute;
	width: 100%;
	max-width: 100%;
	max-height: auto !important;
	top: 0px;
	margin-top: 0px !important;
}

#book-content {
	padding-top: 0px;
	margin-top: calc(100vh - 380px);
	padding-bottom: 120px;
}

.purchase-block, .purchase-block p {
	text-align: center;
	font-size: 16px;
	line-height: 24px;
	display: block;
}

.price {
	color: #a8a8a8;
	display: block;
	margin-bottom: 50px;
}

a.buy {
	text-decoration: none;
	color: #000;
	color: #f34f4b;
	background: #fff;
	padding: 7px 6px;
	border-radius: 30px;
	display: block;
	width: 130px;
	font-weight: 100;
	font-size: 14px;

	margin: 30px auto 50px;
}

.sold-out {
	background: transparent;
	border: 1px solid #f34f4b;
	text-decoration: none;
	color: #f34f4b;
	padding: 7px 6px;
	border-radius: 30px;
	display: block;
	width: 80px;
	font-weight: 100;
	font-size: 14px;

	margin: 30px auto 50px;	
}

/* over riding paypal buttons */

.paypal-button button {
    width: 80px !important;
    padding: 7px 8px !important;
    border-radius: 30px !important;
	font-family: bau, helvetica, arial, sans-serif !important;
    font-weight: 100 !important;
    font-size: 14px !important;
    font-style: normal !important;
    border: none !important;
    /*color: #000 !important;*/
    /*background: #fff !important;*/
    background-image: none !important;
    text-shadow: 0 0 0 rgba(0,0,0,0) !important;
	margin: 30px auto 5px !important;

}

.paypal-button button:before {
	display: none !important;
}

.paypal-button button:after {
	display: none !important;
}

.paypal-button button:hover {
	cursor: pointer !important;
/*	background: red !important;
	color: white !important;*/
}


.center-col .purchase-block p {
	display: block;
	text-indent: 0px;
}

.center-col .purchase-block p.meta {
	margin: 70px 0px;
}


/* purchase block bottom */

.purchase-block.bottom {
	padding-top: 70px;
}

.purchase-block:first-of-type {
	margin-top: calc(100vh - 248px);
}

.purchase-block.bottom p.meta {
	margin-top: 0px;
}

/* arranging interstitial image blocks */

.image-block {
	width: 700px;
	/* adding a negative left margin to hang outside of column */
	margin: 90px 0px 90px -35px;
	position: relative;
	overflow: auto;
}

.image-block .vertical {
	float: left;
	width: 315px;
}

.image-block .horizontal {
	float: left;
	width: 420px;
}

.image-block img {
	margin-top: -50px;
	position: relative;
}

.image-block img:nth-of-type(1) {
	margin-top: 0px;
}

.image-block img:nth-of-type(2) {
	float: right;
	clear: both;
}

.image-block img:nth-of-type(4) {
	float: right;
	clear: both;
}

.image-block img:nth-of-type(1):hover, 
.image-block img:nth-of-type(2):hover, 
.image-block img:nth-of-type(3):hover,
.image-block img:nth-of-type(4):hover,
.image-block img:nth-of-type(5):hover,
.image-block img:nth-of-type(6):hover,
.image-block img:nth-of-type(7):hover,
.image-block img:nth-of-type(8):hover,
.image-block img:nth-of-type(9):hover,
.image-block img:nth-of-type(10):hover,
.image-block img:nth-of-type(11):hover,
.image-block img:nth-of-type(12):hover
{
	z-index: 10000;
}	

/* support stacking order for up to 12 images */

.image-block img:nth-of-type(1) { z-index: 12; }
.image-block img:nth-of-type(2) { z-index: 11; }
.image-block img:nth-of-type(3) { z-index: 10; }
.image-block img:nth-of-type(4) { z-index: 9; }
.image-block img:nth-of-type(5) { z-index: 8; }
.image-block img:nth-of-type(6) { z-index: 7; }
.image-block img:nth-of-type(7) { z-index: 6; }
.image-block img:nth-of-type(8) { z-index: 5; }
.image-block img:nth-of-type(9) { z-index: 4; }
.image-block img:nth-of-type(10) { z-index: 3; }
.image-block img:nth-of-type(11) { z-index: 2; }
.image-block img:nth-of-type(12) { z-index: 1; }
.image-block img:nth-of-type(1) { z-index: 1; }


.image-block .caption {
	width: 345px;
	float: right;
	padding-top: 25px;
}

.caption li {
	list-style-type: decimal;
	list-style-position: inside;
	margin-bottom: 30px;
}




/* about page */

#mobile-logo {
	width: 121px;
	height: 120px;
	display: block;
	background: url('../img/logo.png') no-repeat center center;
	background-size: cover;

	text-indent: -10000px;
	display: none;
}

/* about collage */

#about-collage {
	margin: 0 auto;	
	text-align: center;
	position: relative;
	padding-top: 200px;
}

.collage-item img{
	width: 100%;
	margin: 0px;
}

.collage-item {
	width: 16.666666665%;
	display: inline-block; 
	padding: 0px;
	margin: 0px;	
}


.collage-item.quarter{
	width: 67.5px;
}

.collage-item.half{
	width: 135px;
}

.collage-item.one{
	width: 270px;
}

.collage-item.two{
	width: 405px;
}

.collage-item.three{
	width: 540px;
}


/* filters overlay */

.overlay #add-filters {
	opacity: 0;
	/*transform: rotate(45deg);*/
}

#filters .close { 
	height: auto;
	position: fixed;
	top: 65px;
	right: 39px;
	cursor: pointer;
	font-size: 23px;

	color: #009966;
	color: #f34f4b;

	cursor: pointer;
}

#filters-inner {
	padding: 185px 40px;
}

#filters-inner ul li {
	list-style-type: none;
	display: inline;
	font-size: 50px;
	line-height: 75px;
	color: #a8a8a8;
	color: #f29f9d;
	
	position: relative;

    -o-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;	
}

#filters-inner ul li.active {
	color: black;
	color: #f34f4b;
}

#filters-inner ul li::after {
	content: ",";
}

#filters-inner ul li:last-of-type::after {
	content: " ";
}

#filters-inner ul li:hover {
	color: #000;
	color: #f34f4b;	
	cursor: none;
}

#filters-inner ul li.active:hover {
	color: #000;
	color: #f34f4b;
	cursor: none;
}

.filter-list {
	text-transform: capitalize;
}


/**
  Site footer
 **/


#about-link{
	position: fixed;
	bottom: 20px;
	left: 45px;
	cursor: pointer;
	z-index: 10;
}

a#about-link {
	color: black;
	color: #f34f4b;
	text-decoration: none;
	background-image: linear-gradient(to top,
		rgba(243,79,75,0) 2%,
		rgba(243,79,75,1) 2%,
		rgba(243,79,75,1) 4%,
		rgba(243,79,75,0) 4%
	);
}


.social-footer {
    padding: 0;
}

.social-media-list {
    list-style: none;
    margin: 0;
    position: fixed;
    bottom: 20px;
    right: 35px;
    cursor: pointer;
    z-index: 10;
}

.social-media-list a{
	background: transparent;
	border: none;
}

.social-media-list li {
	display: inline-block;
}

.social-media-list li .icon {
    width: 28px;
    height: 28px;
    display: inline-block;
    vertical-align: sub;
}

.social-media-list li .icon svg {
	fill: #f34f4b;
}

/* cursors */

#cursor {
	position: absolute;
	width: 60px;
	height: 60px;
	background: url('../img/plus-cursor.png') no-repeat center center;
	background-size: cover;
	pointer-events: none;
	opacity: 0;
	top: 0px;
	left: 0px;
	z-index: 10000;
	display: block;


    -o-transition: transform 300ms ease;
    -ms-transition: transform 300ms ease;
    -webkit-transition: transform 300ms ease;
    transition: transform 300ms ease;	 	
}


#cursor.ex {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg); 
}


#cursor.rotate {
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-o-transform: rotate(180deg); 
}

#cursor.plus-cursor {
	opacity: 1;
}

#cursor.x-cursor {
	background: url('../img/x-cursor.png') no-repeat center center;
	background-size: cover;
	pointer-events: none;
	opacity: 1;
}

#mobile-scroll {
	position: fixed;
	top: 50%;
	margin-top: -25px;
	right: 20px;
	width: 50px;
	height: 50px;
	font-size: 20px;
	background: url('../img/scroll-arrow.png') no-repeat center center;	
	background-size: 100%;

	display: none;

	-o-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;

}

/* next and previous item links */

#next-item, #prev-item {
	width: 40px;
	height: 40px;
	position: fixed;
	top: 50%;
	margin-top: -20px;
	border: none;
	text-decoration: none;
	background: transparent;

	z-index: 1000000;	
}

#prev-item { left: 35px; }
#next-item { right: 35px; }

#next-item::before, #next-item::after { 
	height: 2px;
	width: 16px;
	background: #f34f4b;
	content: "";
	top: 50%;
	margin-top: -5px;
	position: absolute;
	right: 10px;

	-ms-transform: rotate(45deg); /* IE 9 */
    -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
    transform: rotate(45deg);	
}

#next-item::after { 
	margin-top: 5px;
	-ms-transform: rotate(135deg); /* IE 9 */
    -webkit-transform: rotate(135deg); /* Chrome, Safari, Opera */
    transform: rotate(135deg);
}

#prev-item::before, #prev-item::after { 
	height: 2px;
	width: 16px;
	background: #f34f4b;
	content: "";
	top: 50%;
	margin-top: -5px;
	left: 10px;
	position: absolute;

	-ms-transform: rotate(-45deg); /* IE 9 */
    -webkit-transform: rotate(-45deg); /* Chrome, Safari, Opera */
    transform: rotate(-45deg);	
}

#prev-item::after { 
	margin-top: 5px;
	-ms-transform: rotate(-135deg); /* IE 9 */
    -webkit-transform: rotate(-135deg); /* Chrome, Safari, Opera */
    transform: rotate(-135deg);
}

#next-item:hover:before, #next-item:hover:after, #prev-item:hover:before, #prev-item:hover:after { 
	background: #ba2525;	
	cursor: pointer;
}



/* useful class */

.hide {
	opacity: 0;
	pointer-events: none;
}

.quote::before {
	content: "\201C";
	text-indent: -12px;
    display: block;
    padding: 0px;
    margin: 0px;
    float: left;
}

/* media queries */

/* 15" laptop and smaller */

@media screen 
and (min-width: 1025px) 
and (max-width: 1440px) {
	#loading-content {
		font-size: 120px;
		line-height: 140px;
		width: 88%;
	}
}

/* landscape iphone through ipad */

@media only screen 
and (min-width : 668px) 
and (max-width : 1024px) {


	html {
		font-size: 15px;
		line-height: 20px;
	}


	header {
		font-size: 20px;
		line-height: 26px;
	}

	#header-info {
		padding: 16px 20px;				
	}

	#container {
	}

	.book {
	    width: 120vh;
	    height: 88vh;
	    display: table-cell;
	    vertical-align: middle;
	    text-align: center;
	    padding-top: 0vh;
	    cursor: none;	
	}

	.book img {
		vertical-align: baseline;
		height: 100%;
	}

	/* page overlays */

	.center-col {
		width: 550px;
		padding-top: 55px;
	}

	.center-col h2{
		font-size: 20px;
		line-height: 31px;
		margin-bottom: 5px;
	}

	.center-col h3 {
		font-weight: 100;
		font-size: 16px;
		margin-bottom: 175px;
		text-align: center;
	}

	.center-col p{
		font-size: 20px;
		line-height: 31px;
		margin-bottom: 0px;
		font-weight: 100;
		text-indent: 35px;
	}

	/* expanded book page */

	#expanded-book .close, #about .close { 
		width: 22px;
		height: 22px;
		position: fixed;
		top: 30px;
		right: 35px;

		cursor: pointer;
	}

	#slideshow {
		position: absolute;
		top: 0px;
		left: 0px;
		min-height: auto;
		height: calc(100vh - 100px);
		z-index: 1;
		background-position: center center;
		background-repeat: no-repeat;
		background-size: contain;
	}

	.slide-item {
		position: absolute;
		width: auto;
		max-width: 100%;
		height: auto;
		opacity: 0;
		top: 50vh;
		left: 50%;
		margin: 0px;
	}

	.slide-item.active {
		opacity: 1;
	}

	#book-content {
		padding-top: 0px;
		margin-top: calc(100vh - 300px);
		padding-bottom: 120px;
	}

	.purchase-block, .purchase-block p {
		text-align: center;
		font-size: 16px;
		line-height: 24px;
		display: block;
	}

	a.buy {
		margin: 25px auto 65px;
	}


	.center-col .purchase-block p {
		display: block;
		text-indent: 0px;
	}

	.center-col .purchase-block p.meta {
		margin: 60px 0px;
	}


	/* purchase block bottom */

	.purchase-block.bottom {
		padding-top: 40px;
	}

	.purchase-block:first-of-type {
		margin-top: calc(100vh - 400px);
	}

	/* arranging interstitial image blocks */

	.image-block {
		width: 550px;
		margin: 90px 0px 90px 0px;
		position: relative;
		overflow: auto;
	}

	.image-block .vertical {
		float: left;
		width: 255px;
	}

	.image-block .horizontal {
		float: left;
		width: 340px;
	}

	.image-block img {
		margin-top: -50px;
	}

	.image-block .caption {
		width: 260px;
		float: right;
		padding-top: 5px;
	}


	/* about page */

	#about .center-col h3 {
		margin-bottom: 75px;
		
	}

	.collage-item.quarter{
		width: 50px;
	}

	.collage-item.half{
		width: 100px;
	}

	.collage-item.one{
		width: 200px;
	}

	.collage-item.two{
		width: 400px;
	}

	.collage-item.three{
		width: 600px;
	}


	#loading-content {
		font-size: 100px;
		line-height: 110px;
		letter-spacing: 0px;
	}

	#mobile-scroll {
		display: block;
	}

	#mobile-scroll.hide {
		opacity: 0;
	}

	.slide-item {
		display: none;
	}

	.slide-item.active {
		display: block;
	}

}


/* landscape iphone 5 to landscape iphone 6+ */

@media only screen 
and (min-width : 569px) 
and (max-width : 667px) {

	html {
		font-size: 16px;
		line-height: 22px;
	}
	
	#logo {
		display: none;
	}

	/* page header */

	header {
		top: 25px;
		left: 35px;
		font-size: 19px;
		line-height: 25px;
	}

	#header-info {
		padding: 0px;
	}

	#about-link{
		position: fixed;
		bottom: 15px;
		left: 30px;
		cursor: pointer;
		z-index: 100;
	}	

	#filters-inner ul li {
	    font-size: 25px;
	    line-height: 40px;
	}

	/* books */

	.book {
	    width: 120vh;
	    height: 88vh;
	    display: table-cell;
	    vertical-align: middle;
	    text-align: center;
	    padding-top: 0vh;
	    cursor: none;	
	}

	.book img {
		vertical-align: baseline;
		height: 100%;
	}

	/* page overlays */

	.center-col {
		width: calc(100% - 66px);
		margin: auto;
		padding-top: 35px;
		position: relative;
		z-index: 10;
	}

	.center-col h2{
		font-size: 19px;
		line-height: 26px;
		margin: 0px 40px 5px;
		font-weight: 100;
		text-align: center;
	}

	.center-col h3 {
		font-weight: 100;
		font-size: 16px;
		margin-bottom: 175px;
		text-align: center;
	}

	.center-col p{
		font-size: 16px;
		line-height: 25px;
	}

	.interior-page .close { 
		top: 35px;
		right: 20px;
	}

	#prev-item {
    	left: 20px;
	}

	#next-item {
    	right: 20px;
	}

	/* expanded book page */
	
	#expanded-book .close, #about .close {
	    top: 35px;
	    right: 30px;
	}

	#slideshow {
		position: absolute;
		top: 0px;
		left: 0px;
		min-height: auto;
		height: calc(100vh - 50px);
	}

	.slide-item {
		position: absolute;
		width: auto;
		max-width: 100%;
		height: auto;
		opacity: 0;
		top: 50vh;
		left: 50%;
		margin: 0px;
	}

	.slide-item.active {
		opacity: 1;
	}

	#book-content {
		padding-top: 0px;
		margin-top: calc(100vh - 85px);
		padding-bottom: 120px;
	}

	.purchase-block, .purchase-block p {
		text-align: center;
		font-size: 16px;
		line-height: 24px;
		display: block;
	}


	a.buy {
		padding: 7px 8px;
		width: 120px;
		margin: 25px auto 70px;
	}


	.center-col .purchase-block p {
		display: block;
		text-indent: 0px;
	}

	.center-col .purchase-block p.meta {
		margin: 60px 0px;
	}


	/* purchase block bottom */

	.purchase-block.bottom {
		padding-top: 40px;
	}

	.purchase-block:first-of-type {
		margin-top: calc(100vh - 400px);
	}

	/* arranging interstitial image blocks */

	.image-block {
		width: 100%;
		margin: 65px 0px 75px;

	}

	.image-block .vertical {
		float: left;
		width: 160px;
	}

	.image-block .horizontal {
		float: left;
		width: 210px;
	}

	.image-block img {
		margin-top: -50px;
	}

	.image-block img:nth-of-type(1) {
		margin-top: 0px;
	}

	.image-block img:nth-of-type(2) {
		float: right;
		clear: both;
	}

	.image-block .caption {
		font-size: 13px;
		line-height: 19px;
		width: calc(100% - 50px) ;
		float: none;
		clear: both;
		display: block;
		padding: 0px 50px 10px 0px;
	}

	/* about collage */

	#about .center-col h3 {
		margin-bottom: 0px;
		text-align: center;
	}

	#mobile-logo {
		display: block;
		margin: 55px auto;
	}

	#about-collage {
		padding-top: 100px;
	}

	.collage-item {
		width: 16.666666665%;
		display: inline-block; 
		padding: 0px;
		margin: 0px;	
		height: auto;
	}


	.collage-item.quarter{
		width: calc(100% - 87.5%);
	}

	.collage-item.half{
		width: calc(100% - 75%);
	}

	.collage-item.one{
		width: calc(100% - 50%);
	}

	.collage-item.two{
		width: calc(100% - 25%);
	}

	.collage-item.three{
		width: 100%;
	}

	/*
	.spacer {
		display: none;
	}
	*/
	
	/* footer */

	.social-media-list {
	    position: fixed;
	    bottom: 10px;
	    right: 30px;
		z-index: 100;

	}	

	#loading-content {
		font-size: 50px;
		line-height: 55px;
		letter-spacing: 0px;
	}

	#mobile-scroll {
		display: block;
	}

	#mobile-scroll.hide {
		opacity: 0;
	}	

	.slide-item {
		display: none;
	}

	.slide-item.active {
		display: block;
	}

}

/* phones up to landscape iphone 5  */

@media only screen 
and (min-width : 320px)
and (max-width : 568px) { 

	html {
		font-size: 16px;
		line-height: 22px;
	}
	
	#logo {
		display: none;
	}

	.desktop-text {
		display: none;
	}

	/* page header */

	header {
		top: 25px;
		left: 35px;
		font-size: 17px;
		line-height: 22px;
	}

	#header-info {
		padding: 0px;
	}

	#filters-inner ul li {
	    font-size: 25px;
	    line-height: 40px;
	}

	#about-link{
		position: fixed;
		bottom: 35px;
		left: 30px;
		cursor: pointer;
		z-index: 10;
		z-index: 100;
	}	

	/* books */

	.book {
	    width: 120vh;
	    height: 88vh;
	    display: table-cell;
	    vertical-align: middle;
	    text-align: center;
	    padding-top: 0vh;
	    cursor: none;	
	}

	.book img {
		vertical-align: baseline;
		height: 100%;
	}

	/* page overlays */

	.center-col {
		width: calc(100% - 66px);
		margin: auto;
		padding-top: 35px;
		position: relative;
		z-index: 10;
	}

	.center-col h2{
		font-size: 19px;
		line-height: 26px;
		margin: 0px 40px 5px;
		font-weight: 100;
		text-align: center;
	}

	.center-col h3 {
		font-weight: 100;
		font-size: 16px;
		margin-bottom: 175px;
		text-align: center;
	}

	.center-col p{
		font-size: 16px;
		line-height: 25px;
	}

	.interior-page .close { 
		top: 35px;
		right: 20px;
	}

	#prev-item {
    	left: 15px;
	}

	#next-item {
    	right: 15px;
	}


	/* expanded book page */
	
	#expanded-book .close, #about .close {
	    top: 35px;
	    right: 30px;
	}

	#slideshow {
		position: absolute;
		top: 0px;
		left: 0px;
		min-height: auto;
		height: calc(100vh - 50px);
	}

	.slide-item {
		position: absolute;
		width: auto;
		max-width: 100%;
		height: auto;
		opacity: 0;
		top: 50vh;
		left: 50%;
		margin: 0px;
	}

	.slide-item.active {
		opacity: 1;
	}

	#book-content {
		padding-top: 0px;
		margin-top: calc(100vh - 200px);
		/*width: calc(100% - 40px);*/
	}

	.purchase-block, .purchase-block p {
		text-align: center;
		font-size: 16px;
		line-height: 24px;
		display: block;
	}


	a.buy {
		text-decoration: none;
		padding: 7px 8px;
		border-radius: 30px;
		display: block;
		width: 120px;
		margin: 25px auto 70px;
	}


	.center-col .purchase-block p {
		display: block;
		text-indent: 0px;
	}

	.center-col .purchase-block p.meta {
		margin: 60px 0px;
	}


	/* purchase block bottom */

	.purchase-block.bottom {
		padding-top: 40px;
	}

	.purchase-block:first-of-type {
		margin-top: calc(100vh - 400px);
	}

	/* arranging interstitial image blocks */

	.image-block {
		width: 100%;
		margin: 65px 0px 75px;

	}

	.image-block .vertical {
		float: left;
		width: 160px;
	}

	.image-block .horizontal {
		float: left;
		width: 210px;
	}

	.image-block img {
		margin-top: -50px;
	}

	.image-block img:nth-of-type(1) {
		margin-top: 0px;
	}

	.image-block img:nth-of-type(2) {
		float: right;
		clear: both;
	}

	.image-block .caption {
		font-size: 13px;
		line-height: 19px;
		width: calc(100% - 50px) ;
		float: none;
		clear: both;
		display: block;
		padding: 0px 50px 10px 0px;
	}

	/* about collage */

	#about .center-col h3 {
		margin-bottom: 0px;
		text-align: center;
	}

	#mobile-logo {
		display: block;
		margin: 55px auto;
	}

	#about-collage {
		padding-top: 100px;
	}

	.collage-item {
		width: 16.666666665%;
		display: inline-block; 
		padding: 0px;
		margin: 0px;	
		height: auto;
	}


	.collage-item.quarter{
		width: calc(100% - 87.5%);
	}

	.collage-item.half{
		width: calc(100% - 75%);
	}

	.collage-item.one{
		width: calc(100% - 50%);
	}

	.collage-item.two{
		width: calc(100% - 25%);
	}

	.collage-item.three{
		width: 100%;
	}

	/*
	.spacer {
		display: none;
	}
	*/
	
	/* footer */

	.social-media-list {
	    position: fixed;
	    bottom: 30px;
	    right: 30px;
		z-index: 10;
	}	

	#loading-content {
		font-size: 50px;
		line-height: 55px;
		letter-spacing: 0px;
	}

	#mobile-scroll {
		display: block;
	}

	#mobile-scroll.hide {
		opacity: 0;
	}	

	.slide-item {
		display: none;
	}

	.slide-item.active {
		display: block;
	}

}

/* phone up to iphone 6 portrait */

@media only screen 
and (max-width : 320px) 
and (max-width : 374px) { 

	html, #about-link {
		font-size: 14px;
		line-height: 20px;
		z-index: 100;
	}
	
	/* page header */

	header {
		top: 25px;
		left: 35px;
		font-size: 15px;
		line-height: 20px;
	}

	#filters-inner ul li {
	    font-size: 25px;
	    line-height: 40px;
	}

	.center-col h2{
		font-size: 17px;
		line-height: 23px;
	}

	.center-col h3 {
		font-weight: 100;
		font-size: 14px;
		margin-bottom: 175px;
	}

	.center-col p{
		font-size: 14px;
		line-height: 23px;
	}

	.purchase-block, .purchase-block p {
		text-align: center;
		font-size: 14px;
		line-height: 22px;
		display: block;
	}

	a.buy {
		padding: 7px 8px;
		border-radius: 30px;
		width: 120px;
		font-weight: 100;
		font-size: 14px;
	}

	.image-block .caption {
		font-size: 11px;
		line-height: 17px;
	}

	#loading-content {
		font-size: 50px;
		line-height: 55px;
		letter-spacing: 0px;
	}

	#mobile-scroll {
		display: block;
	}

	#mobile-scroll.hide {
		opacity: 0;
	}

	.slide-item {
		display: none;
	}

	.slide-item.active {
		display: block;
	}

}