/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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, img, 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,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}





/*universal type & image styles*/

html {
	font-size: 28px; /*put this here as rem reference point*/
}

body {
	font-family: Helvetica, sans-serif;
	line-height: 33px;
	/*letter-spacing: .005em;*/
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /*hyphens: auto;
	-webkit-hyphens: auto; 
	-ms-hyphens: auto;
	hyphenate-limit-lines: 2;
	-webkit-hyphenate-limit-lines: 2;
	hyphenate-limit-chars: 7 3 3;
	-webkit-hyphenate-limit-before:  3;
	-webkit-hyphenate-limit-after:  3;*/
}

path {
  fill: none;
  stroke: #646464;
  stroke-width: 10px;
  stroke-dasharray: 2,2;
  stroke-linejoin: round;
}

i {
	font-style: italic;
}

a {
	color: currentColor;
	text-decoration: none;
	background-image: url("graphics/underline.svg");
	background-size: 500px 20px;
 	background-repeat: no-repeat;
 	background-position: bottom;
}

a:hover {
	background-image: url("graphics/underline-dark.svg");	
}

#header a {
	background-image: none;
}

#header a:hover {
	background-image: url("graphics/underline-dark.svg");	
}






/*site structure*/
.slideshow-page {
	height: 100vh;
}

#site-wrapper {
	max-width: 1500px;
	height: 100%;
	margin: auto;
	padding: 15px 30px;
	padding-bottom: 35px;
}

.slideshow-page #site-wrapper {
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	max-width: 1560px;
}

#header {
	margin-bottom: 15px;
	border-style: solid;
	border-bottom-width: 0px;
	flex-grow: 0;
	display: flex;
	justify-content: space-between;
	padding-bottom: 2px; /*controls distance between header text and bottom border*/
}

#slideshow-wrapper {
	margin: 0 auto;
	height: 100%;
	max-width: 1400px;
	width: 100%;
	flex-grow: 1;
	display: flex;
}

img {
	width: 100%;
   cursor: e-resize;
}

.slideshow {
	outline: none;
}

.caption {
	margin-top: 8px;
	font-size: 15px;
	line-height: 21px;
}

.caption a {
	background-image: none;
	text-decoration: underline;
}

.caption p:last-child {
	margin-bottom: 0;
}

#info-wrapper {
	display: flex;
	margin-top: 1rem;
	position: relative;
	height: 100%;
}

p {
	margin-bottom: .75rem;
}

.column {
	flex: 50%;
}

.left {
	margin-bottom:  1.5rem;
}




/* responsive styles */


/* 800px - single column desktop */

@media screen and (max-width: 800px) {
	#info-wrapper {
   	display: block;
	}
}

/* 500px - mobile */

@media screen and (max-width: 500px) {
	html {
		font-size: 20px;
	}
	body {
		line-height: 24px;
	}
	#site-wrapper {
		padding: 10px 15px;
	}
	#header {
		padding-bottom: 2px;
	}
	#slideshow-wrapper {
		margin-bottom: 50px;
	}
	.caption {
		text-align: center;
	}
}






/* slick slider styles */

.slideshow-placeholder {
	position: relative;
	width: 100%;
	padding-bottom: 75%; /* 3/4 = 0.75 */
	background-color: #f1f1f1;

	align-self: center;
}
.slideshow-placeholder .slideshow {
	display: none;
	position: absolute;
}

.slideshow-placeholder.disabled {
	padding-bottom: 0%;
	background-color: transparent;
}
.slideshow-placeholder.disabled .slideshow {
	display: block;
	position: relative;
}

.slick-counter {
	font-size: 16px;
	text-align: right;
	margin-top: 12px;
	display: none; /* hide the slide counter for now */
}

.slide:focus {
	outline: none;
}

.opacity-0 {
	opacity: 0;
}
