/* Fallback Styles JUST for Browsers that Understand Media Queries */
/*	(older browser will ignore these and use the default sets)	*/
/* Fallback Styles */

#tabletop {
	display: none;
	}
	
#sheet {	/* Contains all pages, size determines how they can be imposed	*/
			/* To shift up/down use #binder in UI/Theme CSS, not here.	*/
	position: absolute; /* MUST be absolute for older browsers to work right */
	width: 100%;
	height: 100%;
	overflow: visible;
	margin: 0;
}
.folio { /* Page and associated content container */
	position: relative;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	overflow: visible;
}
/* recto and verso should be empty in fallback style! */
.verso { /* left facing page in spread */
}
.recto { /* right facing page in spread */
}
.page { /* Page at Trim Size */
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	overflow: visible;
	z-index: 1;
	background: #fff;
	border: 1px solid #333;
}
.header { /* Header attached to page */
	height: 44px;
	width: auto;
	margin: 0 50px 0 50px;
	border-bottom: 1px solid black;
	overflow: hidden;
	text-align: right;
}

.header h1 {
	font-size: 18px;
	line-height: 18px;
	font-family: Helvetica Neue,Helvetica,Arial,FreeSans,sans-serif;
	font-weight: bold;
	color: #000;
}

.live {
	height: 90%;
	margin: 5px 50px 5px 50px;
	overflow: hidden;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

.col1 {
	width: 100%;
	margin-right: 20px;
	overflow: visible;
}
.col2 {
	width: 100%;
	column-count: 2;
	column-gap: 20px;
	-moz-column-count: 2;
	-webkit-column-count: 2;
	margin-right: 20px;
	overflow: visible;
}
.columns {
	display: none;
}
#column0 {
	display: block;
}

.footer { /* Footer attached to page */
	height: 40px;
	width: auto;
	margin: 0 50px 0 50px;
	border-top: 1px solid black;
	text-align: right;
	font-size: .5em;
}
	.footer .pgnum .ldash {
		display: none;
	}
.shadow { /* Shadow for page turn effect */
	position:absolute;
	top: 0;
	left: 0;
	visibility: hidden;
	display: none;
}
.shadow-hide {
	visibility: hidden;
	display: none;
}

.firstnav .back, .lastnav .next,
.covercorners-front .flipleft, .covercorners-back .flipright {
	display: none;
}

#bmark, .bmark {
		position: absolute;
		top: 1px;
		right: 0px;
		height: 50px;
		width: 50px;
		z-index: 900;
		text-align: center;
		text-decoration: none;
		color: black;
	}
#features li {
	font-family: Arial, Sans-serif;
	font-size: 36px;
	font-weight: bold;
	list-style: none;
}
	#features li a {
		color: yellow;
		text-decoration: none;
		text-shadow: 2px 2px 0px black;
	}
	#features li a:hover {
		color: white;
	}

@media screen {
	/* fallback styles implied */
}
/*==============================================================*/
/* Widescreen Monitor */
/* Note: Each page is same size as iPad Portrait */
@media only screen and (min-width: 1600px) {

	/* Assume Tabbar is always showing and allow for it */
	/* If hiding Tabbar in thisissue.css file then you should */
	/* also subtract 20px from the #sheet top margin there */
	#sheet {
		position: absolute; 
		top: 50%; left: 50%;
		width: 1536px;
		height: 902px;
		margin: -471px 0 0 -768px;
	}
	
	#tabletop {
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	display: block;
	}
	
	
	
	.header {
		margin-top: 10px;
	}

	.folio {
		position: absolute;
		top: 0; left: 0;
		width: 768px;
		height: 100%;
	}

	.shift {
		left: 50%;
	}
	.live {
		height: 546px;
		font-size: 1em;
		overflow: hidden;
	}
	.footer {
		margin-bottom: 10px;
		font-size: 1em;
	}
	.verso { /* left facing page in spread */
	/* Safari and Chrome */
		-webkit-transform-origin: right;
		-webkit-transform: scaleX(0);
		-webkit-transition-timing-function: ease-in-out;
		-webkit-transition-duration: 1s;
		-webkit-transition-delay: 0s;
	/* Firefox 4+ */
		-moz-transform-origin: right;
		-moz-transform: scaleX(0);
		-moz-transition-timing-function: ease-in-out;
		-moz-transition-duration: 1s;
		-moz-transition-delay: 0s;
	/* Opera 11.10+ */
		-o-transform-origin: right;
		-o-transform: scaleX(0);
		-o-transition-timing-function: ease-in-out;
		-o-transition-duration: 1s;
		-o-transition-delay: 0s;
	/* IE 9+ */
		-ms-transform-origin: right;
		-ms-transform: scaleX(0);
	/* CSS3 Standards */
		transform-origin: right;
		transform: scaleX(0);
		transition-timing-function: ease-in-out;
		transition-duration: 1s;
		transition-delay: 0s;
	}
	.recto { /* right facing page in spread */
		-webkit-transform-origin: left;
		-webkit-transform: scaleX(1);
		-webkit-transition-timing-function: ease-in-out;
		-webkit-transition-duration: 1s;
		-webkit-transition-delay: 0s;
	
		-moz-transform-origin: left;
		-moz-transform: scaleX(1);
		-moz-transition-timing-function: ease-in-out;
		-moz-transition-duration: 1s;
		-moz-transition-delay: 0s;
	
		-o-transform-origin: left;
		-o-transform: scaleX(1);
		-o-transition-timing-function: ease-in-out;
		-o-transition-duration: 1s;
		-o-transition-delay: 0s;
	
		-ms-transform-origin: left;
		-ms-transform: scaleX(1);

		transform-origin: left;
		transform: scaleX(1);
		transition-timing-function: ease-in-out;
		transition-duration: 1s;
		transition-delay: 0s;
	}

	.covershadow-front {
		-webkit-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-moz-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-o-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-ms-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
	}

	.covershadow-back {
		-webkit-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-moz-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-o-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-ms-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
	}
	.shadow { /* Shadow for page turn effect */
		position:absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,.15);
		visibility: visible;
		display: block;
		}

	.verso .flipright, .verso .bmark, .verso .footer .pgnum .rdash,
	.recto .flipleft, .recto .footer .pgnum .ldash {
		display: none;
	}
		.verso .footer .pgnum {
			float: left;
			margin-right: 3px;
		}
			.verso .footer .pgnum .ldash {
				display: inline;
			}
	
	.verso .footer, .verso .header {
		text-align: left;
		margin-left: 72px;
		margin-right: 36px;
	}
	.recto .footer, .recto .header {
		text-align: right;
		margin-right: 72px;
		margin-left: 36px;
	}
	.verso .live {
		margin-left: 72px;
		margin-right: 36px;
	}
	.recto .live {
		margin-right: 72px;
		margin-left: 36px;
	}
	#spineshadow {
		position: absolute;
		left: 50%; 
		width: 2px;
		background: rgba(0, 0, 0, 0.50);
		-webkit-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-moz-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-o-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-ms-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		z-index: 10;
	}
		.spine_fill {
			top: 0px;
			height: 100%;
		}
		.spine_curve {
			top: 8px;
			height: 886px;
		}
}

/*==============================================================*/
/* BlackBerry Playbook Landscape */
@media only screen and (min-width: 1024px) and (max-width: 1599px) {

	#sheet {
		position: absolute;
		top: 0; 
		left: 50%;
		width: 1024px;
		max-height: 646px;
		margin: 0 0 0 -512px;
	}
	
	#tabletop {
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	display: block;
	}
	
	
	.header {
		margin-top: 10px;
	}

	.folio {
		position: absolute;
		top: 0; left: 0;
		width: 512px;
		height: 100%;
	}
		
	.shadow { /* Shadow for page turn effect */
		position:absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,.15);
		visibility: visible;
		}
	.shift {
		left: 50%;
	}
	.live {
		height: 546px;
		font-size: .66em;
		overflow: hidden;
	}
	.footer {
		margin-bottom: 10px;
	}
	.verso { /* left facing page in spread */
	/* Safari and Chrome */
		-webkit-transform-origin: right;
		-webkit-transform: scaleX(0);
		-webkit-transition-timing-function: ease-in-out;
		-webkit-transition-duration: 1s;
		-webkit-transition-delay: 0s;
	/* Firefox 4+ */
		-moz-transform-origin: right;
		-moz-transform: scaleX(0);
		-moz-transition-timing-function: ease-in-out;
		-moz-transition-duration: 1s;
		-moz-transition-delay: 0s;
	/* Opera 11.10+ */
		-o-transform-origin: right;
		-o-transform: scaleX(0);
		-o-transition-timing-function: ease-in-out;
		-o-transition-duration: 1s;
		-o-transition-delay: 0s;
	/* IE 9+ */
		-ms-transform-origin: right;
		-ms-transform: scaleX(0);
	/* CSS3 Standards */
		transform-origin: right;
		transform: scaleX(0);
		transition-timing-function: ease-in-out;
		transition-duration: 1s;
		transition-delay: 0s;
	}

	.recto { /* right facing page in spread */
		-webkit-transform-origin: left;
		-webkit-transform: scaleX(1);
		-webkit-transition-timing-function: ease-in-out;
		-webkit-transition-duration: 1s;
		-webkit-transition-delay: 0s;
	
		-moz-transform-origin: left;
		-moz-transform: scaleX(1);
		-moz-transition-timing-function: ease-in-out;
		-moz-transition-duration: 1s;
		-moz-transition-delay: 0s;
	
		-o-transform-origin: left;
		-o-transform: scaleX(1);
		-o-transition-timing-function: ease-in-out;
		-o-transition-duration: 1s;
		-o-transition-delay: 0s;
	
		-ms-transform-origin: left;
		-ms-transform: scaleX(1);

		transform-origin: left;
		transform: scaleX(1);
		transition-timing-function: ease-in-out;
		transition-duration: 1s;
		transition-delay: 0s;
	}



	.covershadow-front {
		-webkit-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-moz-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-o-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-ms-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
	}
	

	.covershadow-back {
		-webkit-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-moz-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-o-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-ms-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
	}

	
	.verso .flipright, .verso .bmark, .verso .footer .pgnum .rdash,
	.recto .flipleft, .recto .footer .pgnum .ldash {
		display: none;
	}
		.verso .footer .pgnum {
			float: left;
			margin-right: 3px;
		}
			.verso .footer .pgnum .ldash {
				display: inline;
			}
	
	.verso .footer, .verso .header {
		text-align: left;
		margin-right: 25px;
	}
	.recto .footer, .recto .header {
		text-align: right;
		margin-left: 25px;
	}
	.verso .live {
		margin-right: 25px;
	}
	.recto .live {
		margin-left: 25px;
	}
	#spineshadow {
		position: absolute;
		left: 50%;
		width: 2px;
		background: rgba(0, 0, 0, 0.50);
		-webkit-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-moz-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-o-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-ms-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		z-index: 10;
	}
		.spine_fill {
			top: 0px;
			height: 100%;
		}
		.spine_curve {
			top: 8px;
			height: 98%;
		}
}

/*==============================================================*/
/* Desktop and iPad Screen 1024 to 1279 px */
@media only screen and (min-width: 1024px) and (max-width: 1599px) and (min-height: 690px) {

	#sheet {
		position: absolute;
		top: 50%; 
		left: 50%;
		width: 1024px;
		height: 646px;
		margin: -343px 0 0 -512px;
	}
	
	#tabletop {
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	display: block;
	}
	
	
	.header {
		margin-top: 10px;
	}

	.folio {
		position: absolute;
		top: 0; left: 0;
		width: 512px;
		height: 100%;
	}
		
	.shadow { /* Shadow for page turn effect */
		position:absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,.15);
		visibility: visible;
		}
	.shift {
		left: 50%;
	}
	.live {
		height: 546px;
		font-size: .66em;
		overflow: hidden;
	}
	.footer {
		margin-bottom: 10px;
	}
	.verso { /* left facing page in spread */
	/* Safari and Chrome */
		-webkit-transform-origin: right;
		-webkit-transform: scaleX(0);
		-webkit-transition-timing-function: ease-in-out;
		-webkit-transition-duration: 1s;
		-webkit-transition-delay: 0s;
	/* Firefox 4+ */
		-moz-transform-origin: right;
		-moz-transform: scaleX(0);
		-moz-transition-timing-function: ease-in-out;
		-moz-transition-duration: 1s;
		-moz-transition-delay: 0s;
	/* Opera 11.10+ */
		-o-transform-origin: right;
		-o-transform: scaleX(0);
		-o-transition-timing-function: ease-in-out;
		-o-transition-duration: 1s;
		-o-transition-delay: 0s;
	/* IE 9+ */
		-ms-transform-origin: right;
		-ms-transform: scaleX(0);
	/* CSS3 Standards */
		transform-origin: right;
		transform: scaleX(0);
		transition-timing-function: ease-in-out;
		transition-duration: 1s;
		transition-delay: 0s;
	}

	.recto { /* right facing page in spread */
		-webkit-transform-origin: left;
		-webkit-transform: scaleX(1);
		-webkit-transition-timing-function: ease-in-out;
		-webkit-transition-duration: 1s;
		-webkit-transition-delay: 0s;
	
		-moz-transform-origin: left;
		-moz-transform: scaleX(1);
		-moz-transition-timing-function: ease-in-out;
		-moz-transition-duration: 1s;
		-moz-transition-delay: 0s;
	
		-o-transform-origin: left;
		-o-transform: scaleX(1);
		-o-transition-timing-function: ease-in-out;
		-o-transition-duration: 1s;
		-o-transition-delay: 0s;
	
		-ms-transform-origin: left;
		-ms-transform: scaleX(1);

		transform-origin: left;
		transform: scaleX(1);
		transition-timing-function: ease-in-out;
		transition-duration: 1s;
		transition-delay: 0s;
	}



	.covershadow-front {
		-webkit-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-moz-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-o-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-ms-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
	}
	

	.covershadow-back {
		-webkit-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-moz-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-o-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-ms-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
	}

	
	.verso .flipright, .verso .bmark, .verso .footer .pgnum .rdash,
	.recto .flipleft, .recto .footer .pgnum .ldash {
		display: none;
	}
		.verso .footer .pgnum {
			float: left;
			margin-right: 3px;
		}
			.verso .footer .pgnum .ldash {
				display: inline;
			}
	
	.verso .footer, .verso .header {
		text-align: left;
		margin-right: 25px;
	}
	.recto .footer, .recto .header {
		text-align: right;
		margin-left: 25px;
	}
	.verso .live {
		margin-right: 25px;
	}
	.recto .live {
		margin-left: 25px;
	}
	#spineshadow {
		position: absolute;
		left: 50%;
		width: 2px;
		background: rgba(0, 0, 0, 0.50);
		-webkit-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-moz-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-o-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-ms-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		z-index: 10;
	}
		.spine_fill {
			top: 0px;
			height: 100%;
		}
		.spine_curve {
			top: 8px;
			height: 632px;
		}
}

/*==============================================================*/
/* Desktop Screen 1280 to 1600 px */
@media only screen and (min-width: 1280px) and (max-width: 1599px) and (min-height: 795px) {
	#sheet {
		position: absolute;
		top: 50%; left: 50%;
		width: 1280px;
		height: 750px;
		max-height: 100%;
		margin: -395px 0 0 -640px;
	}
	
	
	#tabletop {
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	display: block;
	}
	

	.header {
		margin-top: 10px;
	}

	.folio {
		position: absolute;
		top: 0; left: 0;
		width: 640px;
		height: 100%;
	}
	.shift {
		left: 50%;
	}
	.live {
		height: 575px;
		font-size: .83em;
		overflow: hidden;
	}
	.footer {
		margin-bottom: 10px;
	}
	.verso { /* left facing page in spread */
	/* Safari and Chrome */
		-webkit-transform-origin: right;
		-webkit-transform: scaleX(0);
		-webkit-transition-timing-function: ease-in-out;
		-webkit-transition-duration: 1s;
		-webkit-transition-delay: 0s;
	/* Firefox 4+ */
		-moz-transform-origin: right;
		-moz-transform: scaleX(0);
		-moz-transition-timing-function: ease-in-out;
		-moz-transition-duration: 1s;
		-moz-transition-delay: 0s;
	/* Opera 11.10+ */
		-o-transform-origin: right;
		-o-transform: scaleX(0);
		-o-transition-timing-function: ease-in-out;
		-o-transition-duration: 1s;
		-o-transition-delay: 0s;
	/* IE 9+ */
		-ms-transform-origin: right;
		-ms-transform: scaleX(0);
	/* CSS3 Standards */
		transform-origin: right;
		transform: scaleX(0);
		transition-timing-function: ease-in-out;
		transition-duration: 1s;
		transition-delay: 0s;
	}
	.recto { /* right facing page in spread */
		-webkit-transform-origin: left;
		-webkit-transform: scaleX(1);
		-webkit-transition-timing-function: ease-in-out;
		-webkit-transition-duration: 1s;
		-webkit-transition-delay: 0s;
	
		-moz-transform-origin: left;
		-moz-transform: scaleX(1);
		-moz-transition-timing-function: ease-in-out;
		-moz-transition-duration: 1s;
		-moz-transition-delay: 0s;
	
		-o-transform-origin: left;
		-o-transform: scaleX(1);
		-o-transition-timing-function: ease-in-out;
		-o-transition-duration: 1s;
		-o-transition-delay: 0s;
	
		-ms-transform-origin: left;
		-ms-transform: scaleX(1);
		
		transform-origin: left;
		transform: scaleX(1);
		transition-timing-function: ease-in-out;
		transition-duration: 1s;
		transition-delay: 0s;
	}

	.covershadow-front {
		-webkit-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-moz-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-o-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-ms-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
	}

	.covershadow-back {
		-webkit-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-moz-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-o-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-ms-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
	}
	.shadow { /* Shadow for page turn effect */
		position:absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,.15);
		visibility: visible;
		display: block;
		}
	.footer {
		font-size: .75em;
	}	
	
	.verso .flipright, .verso .bmark, .verso .footer .pgnum .rdash,
	.recto .flipleft, .recto .footer .pgnum .ldash {
		display: none;
	}
		.verso .footer .pgnum {
			float: left;
			margin-right: 3px;
		}
			.verso .footer .pgnum .ldash {
				display: inline;
			}
	
	.verso .footer, .verso .header {
		text-align: left;
		margin-right: 25px;
	}
	.recto .footer, .recto .header {
		text-align: right;
		margin-left: 25px;
	}
	.verso .live {
		margin-right: 25px;
	}
	.recto .live {
		margin-left: 25px;
	}
	#spineshadow {
		position: absolute;
		left: 50%;
		width: 2px;
		background: rgba(0, 0, 0, 0.50);
		-webkit-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-moz-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-o-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-ms-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		box-shadow: 1px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		z-index: 10;
	}
		.spine_fill {
			top: 0px;
			height: 100%;
		}
		.spine_curve {
			top: 8px;
			height: 735px;
		}
}

/*==============================================================*/
/* Low Res Screen */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
	#sheet {
		position: absolute;
		top: 0; 
		left: 0;
		width: 768px;
		height: 100%;
		margin: 0;
	}

	.folio {
		position: absolute;
		top: 0; left: 0;
		width: 100%;
		height: 100%;
		overflow: hidden;
	}
	.header { /* attached to each page */
		height: 44px;
		width: auto;
		margin: 10px 50px 0 50px;
		border-bottom: 1px solid black;
		overflow: hidden;
	}


	.live {
		font-size: 1.25em;
		margin: 0 72px 0 72px;
		overflow: hidden;
	}
	.col2 {
		width: 100%;
		column-count: 2;
		column-gap: 20px;
		-moz-column-count: 2;
		-webkit-column-count: 2;
		margin-right: 20px;
		overflow: visible;
	}
	.footer {
		margin: 0 5px 0px 5px;
		font-size: .75em;
	}
	.verso { /* left facing page in spread */
	-webkit-transform-origin: left;
	-webkit-transform: scaleX(1);
	-webkit-transition-timing-function: ease-in-out;
	-webkit-transition-duration: 1s;
	-moz-transform-origin: left;
	-moz-transform: scaleX(1);
	-moz-transition-timing-function: ease-in-out;
	-moz-transition-duration: 1s;
	-o-transform-origin: left;
	-o-transform: scaleX(1);
	-o-transition-timing-function: ease-in-out;
	-o-transition-duration: 1s;	
	-ms-transform-origin: left;
	-ms-transform: scaleX(1);
	transform-origin: left;
	transform: scaleX(1);
	transition-timing-function: ease-in-out;
	transition-duration: 1s;
	}
	.recto { /* right facing page in spread */
	-webkit-transform-origin: left;
	-webkit-transform: scaleX(1);
	-webkit-transition-timing-function: ease-in-out;
	-webkit-transition-duration: 1s;
	-moz-transform-origin: left;
	-moz-transform: scaleX(1);
	-moz-transition-timing-function: ease-in-out;
	-moz-transition-duration: 1s;
	-o-transform-origin: left;
	-o-transform: scaleX(1);
	-o-transition-timing-function: ease-in-out;
	-o-transition-duration: 1s;		
	-ms-transform-origin: left;
	-ms-transform: scaleX(1);
	transform-origin: left;
	transform: scaleX(1);
	transition-timing-function: ease-in-out;
	transition-duration: 1s;
	
	}


	.shadow { /* Shadow for page turn effect */
		position:absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,.15);
		visibility: visible;
		display: block;
		}
	.back, .next {
			visibility: visible;
			display: block;
		}
	
	.covercorners-back { /* Used as stand-in way to target last page */
		-webkit-box-shadow: 10px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-moz-box-shadow: 10px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-o-box-shadow: 10px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-ms-box-shadow: 10px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		box-shadow: 10px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
	}	
	#spineshadow {
		position: absolute;
		left: -2px;
		width: 2px;
		background: #333;
		-webkit-box-shadow: 5px 0 20px #000, -5px 0 20px #000;
		-moz-box-shadow: 5px 0 20px #000, -5px 0 20px #000;
		-o-box-shadow: 5px 0 20px #000, -5px 0 20px #000;
		-ms-box-shadow: 5px 0 20px #000, -5px 0 20px #000;
		box-shadow: 5px 0 20px #000, -5px 0 20px #000;
		z-index: 10;
		}
		.spine_fill {
			top: 0px;
			height: 100%;
		}
		.spine_curve {
			top: 0px;
			height: 100%;
		}
		
	#logo {
		height: 100px;
		width: 100px;
		top: 45px;
		left: 0;
	}
	#logo p {
		font-size: 30px;
	}
}

/*==============================================================*/
/* iPad + Android Tablet in Portrait */
@media only screen and (min-width: 768px) and (max-width: 1023px) and (min-height: 946px) {
	#sheet {
		position: relative;
		top: 50%; left: 0;
		width: 768px;
		height: 902px;
		margin: -471px 0;
	}

	.folio {
		position: absolute;
		top: 0; left: 0;
		width: 100%;
		height: 100%;
		overflow: hidden;
	}
	.header {
		margin: 10px 72px 0 72px;
	}
	.live {
		font-size: 1.25em;
		margin: 5px 72px 5px 72px;
		overflow: hidden;
	}
	.footer {
		margin: 0 72px 10px 72px;
		font-size: 1em;
	}
	.verso { /* left facing page in spread */
	-webkit-transform-origin: left;
	-webkit-transform: scaleX(1);
	-webkit-transition-timing-function: ease-in-out;
	-webkit-transition-duration: 1s;
	-moz-transform-origin: left;
	-moz-transform: scaleX(1);
	-moz-transition-timing-function: ease-in-out;
	-moz-transition-duration: 1s;
	-o-transform-origin: left;
	-o-transform: scaleX(1);
	-o-transition-timing-function: ease-in-out;
	-o-transition-duration: 1s;	
	-ms-transform-origin: left;
	-ms-transform: scaleX(1);		
	transform-origin: left;
	transform: scaleX(1);
	transition-timing-function: ease-in-out;
	transition-duration: 1s;
	}
	.recto { /* right facing page in spread */
	-webkit-transform-origin: left;
	-webkit-transform: scaleX(1);
	-webkit-transition-timing-function: ease-in-out;
	-webkit-transition-duration: 1s;
	-moz-transform-origin: left;
	-moz-transform: scaleX(1);
	-moz-transition-timing-function: ease-in-out;
	-moz-transition-duration: 1s;
	-o-transform-origin: left;
	-o-transform: scaleX(1);
	-o-transition-timing-function: ease-in-out;
	-o-transition-duration: 1s;		
	-ms-transform-origin: left;
	-ms-transform: scaleX(1);		
	transform-origin: left;
	transform: scaleX(1);
	transition-timing-function: ease-in-out;
	transition-duration: 1s;
	}

	.covercorners-back { /* Used as stand-in way to target last page */
		-webkit-box-shadow: 10px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-moz-box-shadow: 10px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-o-box-shadow: 10px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-ms-box-shadow: 10px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		box-shadow: 10px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
	}
	
		.shadow { /* Shadow for page turn effect */
		position:absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,.15);
		visibility: visible;
		display: block;
		}
	#spineshadow {
		position: absolute;
		left: -2px;
		width: 2px;
		background: #333;
		-webkit-box-shadow: 5px 0 20px #000, -5px 0 20px #000;
		-moz-box-shadow: 5px 0 20px #000, -5px 0 20px #000;
		-o-box-shadow: 5px 0 20px #000, -5px 0 20px #000;
		-ms-box-shadow: 5px 0 20px #000, -5px 0 20px #000;
		box-shadow: 5px 0 20px #000, -5px 0 20px #000;
		z-index: 10;
		}
		.spine_fill {
			top: 0px;
			height: 100%;
		}
		.spine_curve {
			top: 0px;
			height: 100%;
		}
}


/*==============================================================*/
/* Android Landscape */
@media only screen and (min-width: 600px) and (max-width: 767px) {
	#sheet {
		position: absolute;
		top: 0; left: 0;
		max-width: 640px;
		max-height: 750px;
		margin: 0;
	}

	.folio {
		position: absolute;
		top: 0; left: 0;
		width: 100%;
		height: 100%;
		overflow: hidden;
	}
	.live {
		font-size: .83em;
		margin: 0 50px 0 50px;
		overflow: hidden;
	}
	.col2 {
		width: 100%;
		column-count: 2;
		column-gap: 20px;
		-moz-column-count: 2;
		-webkit-column-count: 2;
		margin-right: 20px;
		overflow: visible;
	}
	.header {
		margin: 10px 50px 0 50px;
	}
	.footer {
		margin: 0 5px 0px 5px;
	}
	.verso { /* left facing page in spread */
	-webkit-transform-origin: left;
	-webkit-transform: scaleX(1);
	-webkit-transition-timing-function: ease-in-out;
	-webkit-transition-duration: 1s;
	-moz-transform-origin: left;
	-moz-transform: scaleX(1);
	-moz-transition-timing-function: ease-in-out;
	-moz-transition-duration: 1s;
	-o-transform-origin: left;
	-o-transform: scaleX(1);
	-o-transition-timing-function: ease-in-out;
	-o-transition-duration: 1s;	
	-ms-transform-origin: left;
	-ms-transform: scaleX(1);		
	transform-origin: left;
	transform: scaleX(1);
	transition-timing-function: ease-in-out;
	transition-duration: 1s;
	}
	.recto { /* right facing page in spread */
	-webkit-transform-origin: left;
	-webkit-transform: scaleX(1);
	-webkit-transition-timing-function: ease-in-out;
	-webkit-transition-duration: 1s;
	-moz-transform-origin: left;
	-moz-transform: scaleX(1);
	-moz-transition-timing-function: ease-in-out;
	-moz-transition-duration: 1s;
	-o-transform-origin: left;
	-o-transform: scaleX(1);
	-o-transition-timing-function: ease-in-out;
	-o-transition-duration: 1s;		
	-ms-transform-origin: left;
	-ms-transform: scaleX(1);		
	transform-origin: left;
	transform: scaleX(1);
	transition-timing-function: ease-in-out;
	transition-duration: 1s;
	}

	.covercorners-back { /* Used as stand-in way to target last page */
		-webkit-box-shadow: 10px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-moz-box-shadow: 10px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-o-box-shadow: 10px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-ms-box-shadow: 10px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		box-shadow: 10px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
	}	
	.shadow { /* Shadow for page turn effect */
		position:absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,.15);
		visibility: visible;
		display: block;
		}
	#spineshadow {
		position: absolute;
		left: -2px;
		width: 2px;
		background: #333;
		-webkit-box-shadow: 5px 0 20px #000, -5px 0 20px #000;
		-moz-box-shadow: 5px 0 20px #000, -5px 0 20px #000;
		-o-box-shadow: 5px 0 20px #000, -5px 0 20px #000;
		-ms-box-shadow: 5px 0 20px #000, -5px 0 20px #000;
		box-shadow: 5px 0 20px #000, -5px 0 20px #000;
		z-index: 10;
		}
		.spine_fill {
			top: 0px;
			height: 100%;
		}
		.spine_curve {
			top: 0px;
			height: 100%;
		}
	
	#logo {
		height: 150px;
		width: 150px;
		top: 0px;
		left: 0;
	}
	#logo p {
		font-size: 48px;
	}	
}


/*==============================================================*/
/* Android Portrait */
@media only screen and (min-width: 600px) and (max-width: 767px) and (min-height: 795px) {
	#sheet {
		position: absolute;
		top: 50%; left: 0;
		max-width: 640px;
		height: 750px;
		margin: -395px 0;
	}

	.folio {
		position: absolute;
		top: 0; left: 0;
		width: 100%;
		height: 100%;
		overflow: hidden;
	}
	.header {
		margin: 10px 50px 0 50px;
	}
	.live {
		font-size: .83em;
		margin: 5px 50px 5px 50px;
		overflow: hidden;
	}
	.col2 {
		width: 100%;
		column-count: 2;
		column-gap: 20px;
		-moz-column-count: 2;
		-webkit-column-count: 2;
		margin-right: 20px;
		overflow: visible;
	}
	
	.footer {
		margin: 0 50px 10px 50px;
	}
	.verso { /* left facing page in spread */
	-webkit-transform-origin: left;
	-webkit-transform: scaleX(1);
	-webkit-transition-timing-function: ease-in-out;
	-webkit-transition-duration: 1s;
	-moz-transform-origin: left;
	-moz-transform: scaleX(1);
	-moz-transition-timing-function: ease-in-out;
	-moz-transition-duration: 1s;
	-o-transform-origin: left;
	-o-transform: scaleX(1);
	-o-transition-timing-function: ease-in-out;
	-o-transition-duration: 1s;	
	-ms-transform-origin: left;
	-ms-transform: scaleX(1);		
	transform-origin: left;
	transform: scaleX(1);
	transition-timing-function: ease-in-out;
	transition-duration: 1s;
	}
	.recto { /* right facing page in spread */
	-webkit-transform-origin: left;
	-webkit-transform: scaleX(1);
	-webkit-transition-timing-function: ease-in-out;
	-webkit-transition-duration: 1s;
	-moz-transform-origin: left;
	-moz-transform: scaleX(1);
	-moz-transition-timing-function: ease-in-out;
	-moz-transition-duration: 1s;
	-o-transform-origin: left;
	-o-transform: scaleX(1);
	-o-transition-timing-function: ease-in-out;
	-o-transition-duration: 1s;		
	-ms-transform-origin: left;
	-ms-transform: scaleX(1);		
	transform-origin: left;
	transform: scaleX(1);
	transition-timing-function: ease-in-out;
	transition-duration: 1s;
	}

	.covercorners-back { /* Used as stand-in way to target last page */
		-webkit-box-shadow: 10px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-moz-box-shadow: 10px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-o-box-shadow: 10px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		-ms-box-shadow: 10px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
		box-shadow: 10px 0 10px rgba(0, 0, 0, 0.50), -1px 0 10px rgba(0, 0, 0, 0.50);
	}
	
		.shadow { /* Shadow for page turn effect */
		position:absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,.15);
		visibility: visible;
		display: block;
		}
	#spineshadow {
		position: absolute;
		left: -2px;
		width: 2px;
		background: #333;
		-webkit-box-shadow: 5px 0 20px #000, -5px 0 20px #000;
		-moz-box-shadow: 5px 0 20px #000, -5px 0 20px #000;
		-o-box-shadow: 5px 0 20px #000, -5px 0 20px #000;
		-ms-box-shadow: 5px 0 20px #000, -5px 0 20px #000;
		box-shadow: 5px 0 20px #000, -5px 0 20px #000;
		z-index: 10;
		}
		.spine_fill {
			top: 0px;
			height: 100%;
		}
		.spine_curve {
			top: 0px;
			height: 100%;
		}
}




/*==============================================================*/
/* iPhone + iPod Touch + Android Phone in Landscape */
@media only screen and (min-width: 480px) and (max-width: 599px) {
	#sheet {
		position: absolute;
		top: 0; left: 0;
		width: 100%;
		height: 100%;
		margin: 0;
	}

	.folio {
		position: absolute;
		top: 0; left: 0;
		width: 100%;
		height: 100%;
		overflow: hidden;
	}
	.header { /* attached to each page */
		visibility: hidden;
		display: none;
	}
	.live {
		font-size: 1em;
		margin: 0 50px 0 50px;
		overflow: hidden;
	}
	.col2 {
		width: 100%;
		column-count: 1;
		column-gap: 0px;
		-moz-column-count: 1;
		-webkit-column-count: 1;
		margin-right: 20px;
		overflow: visible;
	}
	.footer {
		margin: 0 5px 0px 5px;
	}
	.verso { /* left facing page in spread */
	-webkit-transform-origin: left;
	-webkit-transform: scaleX(1);
	-webkit-transition-timing-function: ease-in-out;
	-webkit-transition-duration: 1s;
	-moz-transform-origin: left;
	-moz-transform: scaleX(1);
	-moz-transition-timing-function: ease-in-out;
	-moz-transition-duration: 1s;
	-o-transform-origin: left;
	-o-transform: scaleX(1);
	-o-transition-timing-function: ease-in-out;
	-o-transition-duration: 1s;	
	-ms-transform-origin: left;
	-ms-transform: scaleX(1);		
	transform-origin: left;
	transform: scaleX(1);
	transition-timing-function: ease-in-out;
	transition-duration: 1s;
	}
	.recto { /* right facing page in spread */
	-webkit-transform-origin: left;
	-webkit-transform: scaleX(1);
	-webkit-transition-timing-function: ease-in-out;
	-webkit-transition-duration: 1s;
	-moz-transform-origin: left;
	-moz-transform: scaleX(1);
	-moz-transition-timing-function: ease-in-out;
	-moz-transition-duration: 1s;
	-o-transform-origin: left;
	-o-transform: scaleX(1);
	-o-transition-timing-function: ease-in-out;
	-o-transition-duration: 1s;		
	-ms-transform-origin: left;
	-ms-transform: scaleX(1);		
	transform-origin: left;
	transform: scaleX(1);
	transition-timing-function: ease-in-out;
	transition-duration: 1s;
	}

	.shadow { /* Shadow for page turn effect */
		position:absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,.15);
		visibility: visible;
		display: block;
		}
	#spineshadow {
		}
	
	#logo {
		height: 150px;
		width: 150px;
		top: 0px;
		left: 0;
	}
	#logo p {
		font-size: 48px;
	}	
		
}
/*==============================================================*/
/* iPhone 4  in landscape */
@media only screen and (min-width: 480px) and (max-width:599px) and (-webkit-min-device-pixel-ratio : 2.0),
only screen and (min-device-pixel-ratio : 2.0) {
	#sheet {
		position: absolute;
		top: 0; left: 0;
		width: 100%;
		height: 100%;
		margin: 0;
	}
	.folio {
		position: absolute;
		top: 0; left: 0;
		width: 100%;
		height: 100%;
		overflow: hidden;
	}
	.header { /* attached to each page */
		visibility: hidden;
		display: none;
	}
	.live {
		font-size: 1em;
		margin: 0 50px 0 50px;
		overflow: hidden;
	}
	.col2 {
		width: 100%;
		column-count: 1;
		column-gap: 0px;
		-moz-column-count: 1;
		-webkit-column-count: 1;
		margin-right: 20px;
		overflow: visible;
	}
	.footer {
		margin: 0 5px 0px 5px;
	}
	.verso { /* left facing page in spread */
	-webkit-transform-origin: left;
	-webkit-transform: scaleX(1);
	-webkit-transition-timing-function: ease-in-out;
	-webkit-transition-duration: 1s;
	-moz-transform-origin: left;
	-moz-transform: scaleX(1);
	-moz-transition-timing-function: ease-in-out;
	-moz-transition-duration: 1s;
	-o-transform-origin: left;
	-o-transform: scaleX(1);
	-o-transition-timing-function: ease-in-out;
	-o-transition-duration: 1s;	
	-ms-transform-origin: left;
	-ms-transform: scaleX(1);		
	transform-origin: left;
	transform: scaleX(1);
	transition-timing-function: ease-in-out;
	transition-duration: 1s;
	}
	.recto { /* right facing page in spread */
	-webkit-transform-origin: left;
	-webkit-transform: scaleX(1);
	-webkit-transition-timing-function: ease-in-out;
	-webkit-transition-duration: 1s;
	-moz-transform-origin: left;
	-moz-transform: scaleX(1);
	-moz-transition-timing-function: ease-in-out;
	-moz-transition-duration: 1s;
	-o-transform-origin: left;
	-o-transform: scaleX(1);
	-o-transition-timing-function: ease-in-out;
	-o-transition-duration: 1s;		
	-ms-transform-origin: left;
	-ms-transform: scaleX(1);		
	transform-origin: left;
	transform: scaleX(1);
	transition-timing-function: ease-in-out;
	transition-duration: 1s;
	}

	
	.shadow { /* Shadow for page turn effect */
		position:absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,.15);
		visibility: visible;
		display: block;
		}
	#spineshadow {
		}
	
	#logo {
		height: 150px;
		width: 150px;
		top: 0px;
		left: 0;
	}
	#logo p {
		font-size: 48px;
	}	
}


/*==============================================================*/
/* iPhone + iPod Touch + Android Portrait */
@media only screen and (max-width: 479px)  {
	#sheet {
		position: absolute;
		top: 0; left: 0;
		width: 100%;
		height: 100%;
		margin: 0;
	}

	.folio {
		position: absolute;
		top: 0; left: 0;
		width: 100%;
		height: 100%;
		overflow: hidden;
	}
	.header { /* attached to each page */
		height: 44px;
		width: 100%;
		margin: 0;
		border-bottom: 1px solid black;
		overflow: hidden;
	}


	.live {
		font-size: 1em;
		margin: 0 5px 0 5px;
		overflow: hidden;
	}
	.col2 {
		width: 100%;
		column-count: 1;
		column-gap: 0px;
		-moz-column-count: 1;
		-webkit-column-count: 1;
		margin-right: 20px;
		overflow: visible;
	}
	.footer {
		margin: 0 5px 0px 5px;
	}
	.verso { /* left facing page in spread */
	-webkit-transform-origin: left;
	-webkit-transform: scaleX(1);
	-webkit-transition-timing-function: ease-in-out;
	-webkit-transition-duration: 1s;
	-moz-transform-origin: left;
	-moz-transform: scaleX(1);
	-moz-transition-timing-function: ease-in-out;
	-moz-transition-duration: 1s;
	-o-transform-origin: left;
	-o-transform: scaleX(1);
	-o-transition-timing-function: ease-in-out;
	-o-transition-duration: 1s;	
	-ms-transform-origin: left;
	-ms-transform: scaleX(1);
	transform-origin: left;
	transform: scaleX(1);
	transition-timing-function: ease-in-out;
	transition-duration: 1s;
	}
	.recto { /* right facing page in spread */
	-webkit-transform-origin: left;
	-webkit-transform: scaleX(1);
	-webkit-transition-timing-function: ease-in-out;
	-webkit-transition-duration: 1s;
	-moz-transform-origin: left;
	-moz-transform: scaleX(1);
	-moz-transition-timing-function: ease-in-out;
	-moz-transition-duration: 1s;
	-o-transform-origin: left;
	-o-transform: scaleX(1);
	-o-transition-timing-function: ease-in-out;
	-o-transition-duration: 1s;		
	-ms-transform-origin: left;
	-ms-transform: scaleX(1);
	transform-origin: left;
	transform: scaleX(1);
	transition-timing-function: ease-in-out;
	transition-duration: 1s;
	
	}


	.shadow { /* Shadow for page turn effect */
		position:absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,.15);
		visibility: visible;
		display: block;
		}
	.back, .next {
			visibility: visible;
			display: block;
		}
	
	
	#spineshadow {
		}
		
	#logo {
		height: 100px;
		width: 100px;
		top: 45px;
		left: 0;
	}
	#logo p {
		font-size: 30px;
	}
}
/*==============================================================*/
/* iPhone 4 + Android XDPI in portrait */
@media only screen and (max-width: 479px) and (-webkit-min-device-pixel-ratio : 2.0),
only screen and (min-device-pixel-ratio : 2.0) {
	#sheet {
		position: absolute;
		top: 0; left: 0;
		width: 100%;
		height: 100%;
		margin: 0;
	}

	.folio {
		position: absolute;
		top: 0; left: 0;
		width: 100%;
		height: 100%;
		overflow: hidden;
	}
	.header { /* attached to each page */
		height: 44px;
		width: auto;
		margin: 0;
		border-bottom: 1px solid black;
		overflow: hidden;
	}


	.live {
		font-size: 1em;
		margin: 0 5px 0 5px;
		overflow: hidden;
	}
	.col2 {
		width: 100%;
		column-count: 1;
		column-gap: 0px;
		-moz-column-count: 1;
		-webkit-column-count: 1;
		margin-right: 20px;
		overflow: visible;
	}
	.footer {
		margin: 0 5px 0px 5px;
	}
	.verso { /* left facing page in spread */
	-webkit-transform-origin: left;
	-webkit-transform: scaleX(1);
	-webkit-transition-timing-function: ease-in-out;
	-webkit-transition-duration: 1s;
	-moz-transform-origin: left;
	-moz-transform: scaleX(1);
	-moz-transition-timing-function: ease-in-out;
	-moz-transition-duration: 1s;
	-o-transform-origin: left;
	-o-transform: scaleX(1);
	-o-transition-timing-function: ease-in-out;
	-o-transition-duration: 1s;	
	-ms-transform-origin: left;
	-ms-transform: scaleX(1);
	transform-origin: left;
	transform: scaleX(1);
	transition-timing-function: ease-in-out;
	transition-duration: 1s;
	}
	.recto { /* right facing page in spread */
	-webkit-transform-origin: left;
	-webkit-transform: scaleX(1);
	-webkit-transition-timing-function: ease-in-out;
	-webkit-transition-duration: 1s;
	-moz-transform-origin: left;
	-moz-transform: scaleX(1);
	-moz-transition-timing-function: ease-in-out;
	-moz-transition-duration: 1s;
	-o-transform-origin: left;
	-o-transform: scaleX(1);
	-o-transition-timing-function: ease-in-out;
	-o-transition-duration: 1s;		
	-ms-transform-origin: left;
	-ms-transform: scaleX(1);
	transform-origin: left;
	transform: scaleX(1);
	transition-timing-function: ease-in-out;
	transition-duration: 1s;
	
	}



	.shadow { /* Shadow for page turn effect */
		position:absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,.15);
		visibility: visible;
		display: block;
		}
	.back, .next {
			visibility: visible;
			display: block;
		}
	
	
	#spineshadow {
		}
		
	#logo {
		height: 100px;
		width: 100px;
		top: 45px;
		left: 0;
	}
	#logo p {
		font-size: 30px;
	}
}