@charset "UTF-8";
@import url("../../webfonts/Luna/stylesheet.css");
/* CSS Document */
/*
Here are some commonly used CSS class selectors which 
-class rules can applied to multiple elements on a page
-can be applied in any combination
*/
@font-face {/*instructions to browser where to find your custom font*/
    font-family: titlefont;/*use any name but don't start with a number and don't use spaces or strange characters*/
    src:	url(../fonts/titlefont.ttf);
}
@font-face {/*instructions to browser where to find your custom font*/
    font-family: customName2;/*use any name but don't start with a number and don't use spaces or strange characters*/
    src:	url(../fonts/filename2.ttf); 
}
* {
    box-sizing:border-box;/*This allows you to set and border width and padding but the div will retain its set width and set height*/
    position: relative;
    margin: 0px;
    padding: 0px;
}
header, nav, section, article, figure, figcaption, aside, footer {/*ensures older browsers display these tags correctly*/
    display:block;
    /*DON'T ADD anything else in this selector block - only this property should be in this CSS selector set*/
}
#mainContent{
	width: 100%;
	height: auto;
	max-width: 1000px;
	margin: 0 auto;
	background-color:rgba(255,253,240,0.49);
}
#navholder{
	width: 100%;
	height: auto;
	position: fixed;
	top: 0px;
	left: 0px;
 z-index: 8010;
}
nav {
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
	flex-direction: row;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	height: 180px;
}
nav div {
	display: block;
}
nav a {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
	position: relative;
	display: inline-block;
	color: #0C0635;
	text-decoration: none;
	text-shadow: 0 0 1px rgba(255,255,255,0.3);
	font-size: 1.5em;
	font-style: normal;
	font-weight: 400;
}
/* Effect 15: scale down, reveal */
.cl-effect-15 a {
	color: rgba(0,0,0,0.2);
	font-weight: 700;
	text-shadow: none;
	font-family: titlefont;
}

.cl-effect-15 a::before {
	color: #1A5362;
	content: attr(data-hover);
	position: absolute;
	transition: transform 0.3s, opacity 0.3s;
}

.cl-effect-15 a:hover::before,
.cl-effect-15 a:focus::before {
	transform: scale(0.9);
	opacity: 0;
}
html, body {
    width:100%;
    min-height:100%;
    height:auto;
}

body {/*these are the 5 basic CSS properties and values to start a website*/
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;/*change this for your design*/
	font-size: 100%;/*DON'T CHANGE THIS VALUE HERE - you can set font sizes in other selector styles*/
	color: rgba(0,0,0,1.00);/*main text color, default black, change as needed*/
	margin: 0px;/*removes default edges*/
	padding: 0px;/*removes default settings*/
	z-index: 0;/*stacking order - small numbers a below high numbers*/
	background-image: url(../images/bg.jpg);
	background-position: center top;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	font-weight: 400;
	font-style: normal;
}
#centeringDiv, .centeringDiv{
    max-width:980px;/*optimum width for both desktops, laptops, and tablets*/
    width:100%;/*allows the page to resize it's width to fit smaller devices*/
    height: auto;/*optimum height for both desktops, laptops, and tablets*/    
    margin:0 auto;/*0 = no margin for top and bottom and auto = same margin for left and right*/
    z-index:1;/*stacking order - small numbers a below high numbers*/
}
header, .header {
    padding:10px;
    width:100%;
    height:300px;
    display:-webkit-flex;/*allows elements in nav to have flexible locations*/
    display:flex;/*allows elements in nav to have flexible locations*/
    align-items:center;/*vertically centers all elements in header for a single row of elements*/
    z-index:920;/*stacking order - small numbers a below high numbers*/
}
nav {
    width:100%;/*change as needed*/
    height:100px;/*change as needed*/
    margin: 0 auto;
    z-index:720;/*stacking order, bigger numbers are on top*/
    display:-webkit-flex;/*allows elements in nav to have flexible locations*/
    display:flex;/*allows elements in nav to have flexible locations*/
    justify-content:center;/*horizontally centers all elements in nav*/
    align-items:center;/*vertically centers all elements in nav for a single row of elements*/
    flex-direction:row;/*places all elements in nav in a row - other option is column*/
    flex-wrap:no-wrap;/*ensures that elements in nav do NOT wrap to a 2nd row*/ 
}
.btn {
    z-index:926;/*stacking order, bigger numbers are on top*/  
    margin:auto;/*IMPORTANT! togther with btn justify-content will space out buttons automatically*/
    display:-webkit-flex;/*allows elements in btn to have flexible locations*/
    display:flex;/*allows elements in btn to have flexible locations*/
    justify-content:center;/*horizontally centers all elements in btn*/
    align-items:center;/*vertically centers all elements in btn for a single row of elements*/
    flex-direction:row;/*places all elements in btn in a row - other option is column*/
    flex-wrap:no-wrap;/*ensures that elements in btn do NOT wrap to a 2nd row*/ 
	
}
article {/*used for the main content area*/
	clear: both;/*clears away and floating or text wrapping*/
	width: 100%;
	height: auto;
	z-index: 900;/*stacking order - below nav and .btn but above section*/
	padding: 0;
	margin: 0;
	margin-bottom: -21px;
}
section {/*used for the main content area*/
	width: 100%;
	height: auto;
	max-width: 1000px;
	
	z-index: 901;/*stacking order - below nav and .btn and article*/
	clear: both;
	min-height: 100vh;
	padding: 0 10px;
	margin: 0 auto;
}
#section1 {
	padding-top: 180px;
}
#jackportrait{
	border: 2px #000 solid;
}
#section3{margin-top: -20px;}
article p {
    text-indent: 0rem;/*an rem is the size of a letter m relative to what's set in the body css rule*/
}
article h1 {
	text-align: center;
	font-style: normal;
	font-weight: 400;
	font-family: titlefont;
}
footer {
    clear: both;/*clears away and floating or text wrapping*/
    text-align: right;
    font-size: 0.8rem;
    width: 100%;
    line-height: 1.2rem;/*This will help to vertically center the text */  
    height: auto;
    z-index: 900;/*stacking order - below article, nav, and .btn*/ 
}
/*===========Class rules to apply to multiple elements in the HTML===============================*/
figure, figure p, figcaption p {text-indent: 0px; text-align:center;}/*for any captions or paragraphs inside figure tags*/
figure img {width: 100%; height:auto;}/*forces image in figure to fit a specific figure width set with other CSS*/
.clearFloats {clear: both; width:100%; height:0px;}/*apply to div tags - clears away and floating or text wrapping*/


.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
	max-width:853px;/*same width as video itself*/
	width:100%;
	margin:0 auto;/*centers the video*/
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	max-width:853px;/*change as desired*/
	max-height:480px;/*if you change max-width, make sure the height has a ratio of 16:9*/
	width: 100%;
	height: 100%;
}
.floatRight {/*YOU MAY ALREADY HAVE THIS SO don't copy this in such a case*/
	float:right;
}
.floatLeft {/*YOU MAY ALREADY HAVE THIS so don't copy this in such a case*/
	float:left;
}


.wrap {
	-webkit-shape-margin:0.5rem;/*This determines how close you want the text to be to the image*/
	-moz-shape-margin:0.5rem;/*rem stands for root em - you are changing the size relative to the size of 1em of the body (root) css instead of relative to the font-size of the parent container*/
	-ms-shape-margin:0.5rem;
	-o-shape-margin:0.5rem;
	shape-margin:0.5rem;
}
#uniqueID {/*Repeat this blcok for all image you want text to wrap around*/
	-webkit-shape-outside: url("../images/bookThumbnail.png");/*IMPORTANT!!!! - the URL path is relative to the CSS file, NOT the html file*/
	-moz-shape-outside: url("../images/bookThumbnail.png");
	-ms-shape-outside: url("../images/bookThumbnail.png");
	-o-shape-outside: url("../images/bookThumbnail.png");
    shape-outside: url("../images/bookThumbnail.png");
	z-index: 720;
}
.bioBox {
	clear: both;/*needed because .bioPic has float:left to avoid overlapping */
	min-height: 250px;
	height: auto;
	width: 100%;
}
.bioPic {
	width: 200px;
	height: 226px;/*200 for pic and 26 for audio controller */
	float: left;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-top: 7px;
}
.bioPic audio {
	width: 100%;
	height: 26px;
	margin-top: 5px;
}
.bioName {
	font-size: 1.5em;
	font-weight: bold;
}
@font-face {/* for the curly quotes */
		font-family: JandaQuirkygirl;
		src: url(/fonts/JandaQuirkygirl.ttf);		
	}
	.floatRightQuote {
		float: right;
		margin: 0px 0px 20px 20px;
	}
	.floatLeftQuote {
		float: left;
		margin: 0px 20px 20px -80px;
	}
/*-----for 1st quote block -------------*/
	.quoteBlock1 {
	border-left: 5px solid rgba(26,87,93,1.00);
	font-size: 1.2rem;
	padding: 20px;
	padding-right: 0px;
	font-style: italic;
	width: 100%;
	height: auto;
	max-width: 30%;
	color: #000000;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	}
	.quotee1 {
	display: block;
	font-size: 1.5rem;
	color: rgba(25,87,93,1.00);
	text-align: right;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	}
#thumbnails {
    width:800px;
    height:800px;
    position:relative;
    top:0;
    margin:20px auto;
	z-index: 750;
}
.btnBox {/*container for each thumbanil*/
	float: left;/*allows for reshuffling depending upon window size*/
	position: relative;
	overflow: hidden;
	background-image: url(../images/btnBoxBackground.png);
	background-repeat: no-repeat;
	background-size: cover;
}
.btnBox, .btnBox figure img {
    width:200px;
    height:200px;
}
.btnBox figure  img{
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 40;
	cursor: pointer;
}
.btnHolder {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 50;
}
.boxHeader {
	text-align: center;
	font-weight: 400;
	font-size: 1.5em;
	margin-top: 15px;
	margin-bottom: 10px;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	font-style: normal;
}
.boxText {
	width: 80%;
	height: 50%;
	margin: 0 auto;
	font-size: 0.9em;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
}
.btnView {
	width: 50%;
	margin: 10px auto;
	text-align: center;
	font-size: 1.1em;
	font-weight: bold;
	padding: 5px;
	color: #184C47;
	font-family: titlefont;
}
.btnView a:link, .btnView a:visited {
	color: #184C47;/*text link color and when visited*/
	text-decoration: none;
}
.btnView a:hover, .btnView a:active {
	color: #59874D;/*text hover color and when active or as mouse is pressed down*/
	text-decoration: none;
}
.indesignscreenshot {
	margin: 10px 10px 10px 0px;
}
