/*CSS RESET - MEYERS + EXTRAS*/

		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;
		}

		* {
			outline: none;
		}

		a {
			text-decoration: none;
		}
/*END CSS RESET*/

/*START HELPER CLASSES*/
	body {
		width: 100vw;
		overflow-x: hidden;
		font-family: 'brandon-grotesque', sans-serif;
		text-transform: uppercase;
	}

	.black {
		font-weight: 900;
	}

	.light {
		font-weight: 300;
	}

	.medium {
		font-weight: 500;
	}

	.bold {
		font-weight: 700;
	}

	.readmore {
		color: #333;
		text-decoration: none;
	}

	.readmore:visited {
		color: #333;
		text-decoration: none;
	}

	.readmore:hover {
		color: rgba(51,51,51, 0.5);
	}
/*END HELPER CLASSES*/

/*START SINGLE PAGE STYLES*/

	/*START IMAGE BANNER STYLES*/

		.post-img-banner-container {
		  position: absolute;
		  top: 0;
		  left: 0;
		  width: 100vw;
		  height: 40vh;
		  overflow: hidden;
		  z-index: -1;
		}

		.img-banner {
		  position: absolute;
		  left: 0;
		  top: 0;
		  min-width: 100vw;
		  height: auto;
		  transform: translateX(0) translateY(-50%);
		}
	/*END IMAGE BANNER STYLES*/


	/*START MAIN POST CONTAINER*/

		.post-container {
		  width: 100vw;
		  min-height: 100vh;
		  height: auto;
		  overflow: hidden;
		  margin: 0;
		  margin-top: 40vh;
		  background-color: rgba(227, 227, 227, 0.35);
		  box-shadow: 1px -10px 15px rgba(0, 0, 0, 0.5);
		}

		.post-wrapper {
		  width: 90vw;
		  min-height: 100vh;
		  height: auto;
		  margin: 2vh auto;
		  border: 10px solid #333;
		}

		.single-post-close {
		  position: absolute;
		  z-index: 5002;
		  right: 7vw;
		  margin-top: 15px;
		  width: 25px;
		  height: auto;
		  cursor: pointer;
		}


		/*START POST DATE STYLES*/

			.post-date-container {
			  position: absolute;
			  width: 90vw;
			  height: auto;
			  overflow: hidden;
			  margin-top: -15vh;
			  text-transform: uppercase;
			}

			.post-date-wrapper {
			  width: 120px;
			  height: 150px;
			  margin: 20px auto;
			  padding-top: 10px;
			}

			.post-date {
			  width: 120px;
			  height: 120px;
			  background-color: #333;
			  color: #fff;
			  -webkit-transform: rotate(45deg);
			  transform: rotate(45deg);
			  -webkit-box-shadow: 8px -7px 0 rgba(0, 0, 0, 0.2);
			  box-shadow: 8px -7px 0 rgba(0, 0, 0, 0.2);
			}

			.post-date-div {
			  width: 50px;
			  height: 1px;
			  background-color: #fff;
			  margin: 7px auto;
			}

			.post-date-text-container {
			  width: 120px;
			  height: 120px;
			  margin: 20px auto;
			}

			.post-date-text-wrapper {
			  width: 120px;
			  height: auto;
			  margin: auto;
			  text-align: center;
			}

			.post-date-text-container {
			  -webkit-transform: rotate(-45deg);
			  transform: rotate(-45deg);
			}

			.post-date-text {
			  line-height: 1em;
			}

			.post-date-day {
			  font-weight: 900;
			  letter-spacing: 1px;
			  font-size: 2em;
			}

			.post-date-month {
			  font-weight: 300;
			  letter-spacing: 3px;
			  font-size: 1em;
			}

			.post-date-year {
			  font-weight: 300;
			  letter-spacing: 6px;
			  font-size: 0.5em;
			  text-align: center;
			}
		/*END POST DATE STYLES*/


		/*START POST TITLE STYLES*/

			.post-title-container {
			  width: 90vw;
			  height: auto;
			  text-align: center;
			}

			.post-title-wrapper {
			  width: auto;
			  height: auto;
			  margin: 0 auto;
			  margin-top: 150px;
			}

			.post-title {
			  font-weight: 900;
			  font-size: 2.25em;
			  letter-spacing: 3px;
			  text-transform: uppercase;
			}

			.post-author {
			  font-weight: 300;
			  font-size: 0.75em;
			  letter-spacing: 5px;
			  text-transform: uppercase;
			  margin-top: 15px;
			}

			.post-category {
			  font-weight: 300;
			  font-size: 0.75em;
			  letter-spacing: 3px;
			  text-align: center;
			  text-transform: uppercase;
			  color: #999;
			  width: 80vw;
			  margin: 0 auto;
			  margin-top: 20px;
			}

			.post-title-div {
			  width: 50px;
			  height: 1px;
			  background: #333;
			  margin: 40px auto;
			  margin-top: 30px;
			}

			.post-event {
			  font-size: 1em;
			  width: 75vw;
			  text-align: left;
			  margin: 0 auto;
			}

			.post-event > .medium {
			  letter-spacing: 2.5px;
			  position: absolute;
			}

			.post-event > .light {
			  letter-spacing: 1px;
			  margin-left: 80px;
			  width: 60vw;
			}
		/*END POST TITLE STYLES*/


		/*START CONTENT EMPHASIS*/

			.post-content-emphasis-container {
			  width: 90vw;
			  height: auto;
			  margin: 0 auto;
			  margin-top: 10px;
			}

			.content-emphasis-svg-container {
			  position: absolute;
			  width: 120px;
			  margin: 0 auto;
			  margin-top: -20px;
			  left: 0;
			  right: 0;
			}

			.content-emphasis-svg {
			  position: absolute;
			  width: 120px;
			  margin: 0 auto;
			}

			.content-emphasis-text-container {
			  width: 90vw;
			  height: auto;
			  margin: 0 auto;
			}

			.content-emphasis-text {
			  position: relative;
			  width: 65vw;
			  margin: 40px auto;
			  color: rgba(51, 51, 51, 0.5);
			  text-align: center;
			  font-size: 1.65em;
			  letter-spacing: 3px;
			  font-style: italic;
			  text-transform: lowercase;
			}
		/*END CONTENT EMPHASIS*/


		/*START POST BODY STYLES*/
			.post-body {
			  font-size: 1em;
			  letter-spacing: 0;
			  text-transform: none;
			  font-weight: 300;
			  width: 70vw;
			  height: auto;
			  margin: 0 auto;
			  margin-top: 20px;
			  margin-bottom: 50px;
			  text-align: left;
			  line-height: 1.4em;
			}
		/*END POST BODY STYLES*/
	/*END MAIN POST CONTAINER*/


	/*START GALLERY STYLES*/
		.aux-img {
		  width: 44.9vw;
		  height: auto;
		  margin: 0;
		  padding: 0;
		  display: inline-block;
		  cursor: pointer;
		}

		.aux-img > img {
		  width: 44.9vw;
		  height: auto;
		  cursor: pointer;
		}


		.post-lightbox-container {
			position: fixed;
			z-index: 5500;
			width: 100vw;
			height: 100%;
			background-color: rgba(0,0,0,0.85);
			left: 0;
			right: 0;
			top: 0;
			overflow: hidden;
		}

	.lightbox-close {
		position: absolute;
		z-index: 5502;
		width: 30px;
		height: auto;
		right: 4vw;
		margin-top: 20px;
		cursor: pointer;
	}

	.lightbox-prev {
		position: absolute;
		z-index: 5502;
		left: 30px;
		top: 85%;
		width: 30px;
		height: auto;
		cursor: pointer;
	}

	.lightbox-next {
		position: absolute;
		z-index: 5502;
		right: 30px;
		top: 85%;
		width: 30px;
		height: auto;
		cursor: pointer;
	}

	.lightbox-active-img {
		max-width: 90vw;
		max-height: 90vh;
		width: auto;
		height: auto;
		position: absolute;
		top: 50%;
		left: 50%;
		z-index: 5502;
		cursor: pointer;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
	/*END GALLERY STYLES*/
/*END SINGLE PAGE STYLES*/