html, body {
	width: 100%;
	min-height: 100%;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	background:  white;
}

/* F O N T S */ 

@font-face {
	font-family: Cinetype;
	src: url(/assets/fonts/GT-Cinetype-Mono.ttf);
}

@font-face {
	font-family: America;
	src: url(/assets/fonts/GT-America-Mono-Regular.ttf);
}


/* T Y P O G R A P H Y */

body, div, h1, h2, p, a, em, span, figcaption {
	font-family: Cinetype, 'Courier New', monospace;
	font-size: 15px;
	line-height: 20px;
	font-weight: normal;
	font-variant-ligatures: none;
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
a:link, a:visited, a:active {
	color: royalblue;
	text-decoration: none;
}
a:hover {
	color: tomato;
	text-decoration: none;
}

/* T A P - H I G H L I G H T */

* {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}


/* U S E R - S E L E C T */ 

img, header, footer, aside {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}


/* T E X T - S E L E C T */

::-moz-selection {
  background: oldlace;
}
::selection {
  background: oldlace;
}


/* S C R O L L */

::-webkit-scrollbar {
	box-sizing: border-box;
	width: 15px;
}
::-webkit-scrollbar-track {
	box-sizing: border-box;
	border-top: none;
	border-right: none;
	border-bottom: none;
	border-left: 1px solid #ececec;
	background: #e6e6e6;
}
::-webkit-scrollbar-thumb {
	box-sizing: border-box;
	height: 100px;
	width:100px;
	border: 1px solid #ececec;
	border-right: none;
	border-radius: none;
	background: white;
}
::-webkit-scrollbar-thumb:window-inactive {
	background: white;
}


/* H E A D E R */

header {
	position: fixed;
	z-index: 7;
	float: left;
	top: 0;
	height: 41px;
	width: 100%;
	background: white;
	box-sizing: border-box;
	border-bottom: 1px solid #ececec;
	transition: all 200ms;
}
header p, #logo_dark {
	position: relative;
	float: left;
	margin: 0;
	padding: 10px 20px;
}
header span {
	position: relative;
	float: right;
	margin: 0;
	color: royalblue;
	transition: all 200ms;
	padding: 10px 20px;
}
header span.logo {
	position: relative;
	float: left;
	padding: 0;
	margin: 0;
	min-width: 9px;
	padding: 0;
}
#menu {
	box-sizing: border-box;
	width: 25%;
	text-align: right;
	cursor: pointer;
}
#menu:hover {
	background: whitesmoke;
	-webkit-transition: background-color 150ms ease-in-out;
	-moz-transition: background-color 150ms ease-in-out;
	-ms-transition: background-color 150ms ease-in-out;
	-o-transition: background-color 150ms ease-in-out;
	transition: background-color 150ms ease-in-out;
}


/* N A V I G A T I O N */

nav {
	display: none;
	position: fixed;
	top: 40px;
	z-index: 6;
	float: left;
	width: 100%;
	margin: 0;
	padding: 0;
	background: white;
	border-bottom: 1px solid #ececec;
	box-sizing: border-box;
}
nav ul {
	list-style-type: none;
	margin: 0;
	padding:0;
	display: flex;
	flex-grow: 1;
	flex-flow: row nowrap;
	justify-content: flex-end;
	text-align: center;
}
nav li:hover {
	background: whitesmoke;
	-webkit-transition: background-color 150ms ease-in-out;
	-moz-transition: background-color 150ms ease-in-out;
	-ms-transition: background-color 150ms ease-in-out;
	-o-transition: background-color 150ms ease-in-out;
	transition: background-color 150ms ease-in-out;
}
nav li a {
	padding: 10px 20px;
	}
nav li a:link, nav li a:visited, nav li a:active {
	display: block;
	margin: 0;
	color: royalblue;
	transition: all 200ms;
}
nav li a:hover {
	color: tomato;
}
nav li a.active {
	background: white;
	color: Gold;
	cursor: default;
	pointer-events: none;
}


/* F O O T E R */

footer {
	position: fixed;
	z-index: 6;
	height: 41px;
	width: 100%;
	right: 0;
	bottom: 0;
	left: 0;
	background: white;
	box-sizing: border-box;
	border-top: 1px solid #ececec;
	transition: all 200ms;
}
footer span {
	box-sizing: border-box;
	transition: all 200ms;
	padding: 10px 20px;
}

/* L O O K B O O K */

.look {
	display: none;
	position: absolute;
	float: left;
	padding: 0;
	margin: 0;
	transition: transform 200ms;
}
#book {
	cursor: pointer;
	display: block;
	position: absolute;
	width: 100%;
	height: calc(100% - 82px);
	top: 41px;
	box-sizing: border-box;
	display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.first {
	display: block;
}
#play {
	display: none;
}

/* C A P T I O N */

#caption {
	position: absolute;
	width: 100%;
	height: 60px;
	bottom: 41px;
	right: 0;
	left: 0;
	z-index: 6;
	float: right;
	text-align: right;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	display: flex;
  justify-content: center;
  align-items: flex-end;
}

#caption p.caption {
	display: none;
	position: absolute;
	width: calc(100% - 60px);
	height: auto;
	right: 0;
	float: right;
	text-align: right;
	color:  white;
	padding: 10px 20px;
	margin: 0;
	box-sizing: border-box;
}


#caption p.first_caption {
	display: block;
}

/* A R T S Y */

#artsy {
	position: absolute;
	bottom: 54px;
	left: 20px;
	height: 25px;
	width: 25px;
	z-index: 7;
	float: left;
	filter: invert(1);
}

#artsy:hover {
	  filter: 
	    invert(0.5)
	    sepia(1)
	    hue-rotate(200deg)
	    saturate(50)
	    brightness(1);
}

/* B U T T O N S */

#prev, #about_prev, #lookbook_prev, #next, #about_next, #lookbook_next {
	position: relative;
	box-sizing: border-box;
	width: 25%;
	margin: 0;
	color: tomato;
	cursor: pointer;
}
#prev:hover, #about_prev:hover, #lookbook_prev:hover, #next:hover, #about_next:hover, #lookbook_next:hover {
	color: forestgreen;
	background: whitesmoke;
	-webkit-transition: background-color 150ms ease-in-out;
	-moz-transition: background-color 150ms ease-in-out;
	-ms-transition: background-color 150ms ease-in-out;
	-o-transition: background-color 150ms ease-in-out;
	transition: background-color 150ms ease-in-out;
}
#prev, #about_prev, #lookbook_prev {
	float: left;
	text-align: left;
}
#next, #about_next, #lookbook_next {
	float: right;
	text-align: right;
}
#item_nr, #draw_nr, #page_nr, #work_nr, #look_nr {
	position: relative;
	box-sizing: border-box;
	float: left;
	margin: 0;
	text-align: center;
	color: forestgreen;
}
#item_nr, #draw_nr {
	width: 40%;
}
#page_nr, #work_nr, #look_nr {
	width: 25%;
}
#sort, #list, #back, #home, #home_info, #view, #top, #play, #stop {
	position: relative;
	margin: 0;
	box-sizing: border-box;
	cursor: pointer;
}
#sort:hover, #list:hover {
	color: forestgreen;
	background: whitesmoke;
	-webkit-transition: background-color 150ms ease-in-out;
	-moz-transition: background-color 150ms ease-in-out;
	-ms-transition: background-color 150ms ease-in-out;
	-o-transition: background-color 150ms ease-in-out;
	transition: background-color 150ms ease-in-out;
}
#sort {
	float: left;
	width: 30%;
	text-align: left;
	color: tomato;
}
#list {
	float: right;
	width: 30%;
	text-align: right;
	color: tomato;
}
#back, #view, #play, #stop {
	float: right;
	width: 25%;
	text-align: center;
	color: royalblue;
}
#home {
	float: left;
	width: 25%;
	text-align: left;
	color: tomato;
}
#back:hover, #home:hover, #home_info:hover, #view:hover, #play:hover, #stop:hover {
	background: whitesmoke;
	-webkit-transition: background-color 150ms ease-in-out;
	-moz-transition: background-color 150ms ease-in-out;
	-ms-transition: background-color 150ms ease-in-out;
	-o-transition: background-color 150ms ease-in-out;
	transition: background-color 150ms ease-in-out;
}
#menu:hover, #back:hover, #home:hover, #home_info:hover, #view:hover, #play:hover, #stop:hover, #top:hover, aside p:hover, aside span:hover {
	color: tomato;
}
#top {
	display: none;
	float: left;
	width: 25%;
	color: forestgreen;
	text-align: center;
}
#home_info {
	display: block;
	float: right;
	width: 25%;
	color: royalblue;
	text-align: center;
	cursor: pointer;
}


/* A S I D E */

aside {
	position: fixed;
	top: 40px;
	bottom: 40px;
	float: left;
	z-index: 2;
	width: 220px;
	left: -221px;
	background: white;
	border-right: 1px solid #ececec;
	-webkit-transition: left 200ms;
	-moz-transition: left 200ms;
	-ms-transition: left 200ms;
	-o-transition: left 200ms;
	transition: left 200ms;
	overflow-y: auto;
	overflow-x: hidden;
}
aside.open {
	left: 0px;
}
aside.about {
	display: block;
	left: 0px;
}
aside.about a.selected p, aside.open p.selected {
	background: whitesmoke;
	-webkit-transition: background-color 150ms ease-in-out;
	-moz-transition: background-color 150ms ease-in-out;
	-ms-transition: background-color 150ms ease-in-out;
	-o-transition: background-color 150ms ease-in-out;
	transition: background-color 150ms ease-in-out;
	color: tomato;
}
aside p {
	box-sizing: border-box;
	position: relative;
	float: left;
	width: 100%;
	margin: 0;
	padding: 10px 20px;
	color: forestgreen;
	cursor: pointer;
	border-bottom: 1px solid #ececec;
}
aside p:hover {
	background: whitesmoke;
	-webkit-transition: background-color 150ms ease-in-out;
	-moz-transition: background-color 150ms ease-in-out;
	-ms-transition: background-color 150ms ease-in-out;
	-o-transition: background-color 150ms ease-in-out;
	transition: background-color 150ms ease-in-out;
}
aside span {
	position: relative;
	float: left;
	width: 100%;
	margin: 0;
	padding: 10px 20px;
	color: royalblue;
	cursor: pointer;
	border-bottom: 1px solid #ececec;
}
aside span:hover {
	background: whitesmoke;
	-webkit-transition: background-color 150ms ease-in-out;
	-moz-transition: background-color 150ms ease-in-out;
	-ms-transition: background-color 150ms ease-in-out;
	-o-transition: background-color 150ms ease-in-out;
	transition: background-color 150ms ease-in-out;
}
aside p em {
	display: inline;
	font-style: normal;
	position: relative;
	width: auto;
	margin: 0;
	padding: 0;
	color: silver;
	cursor: pointer;
	border-bottom: none;
}

.format, .technique, .medium, .period {
	display: none;
}

/* A B O U T */

.profile {
	display: none;
	cursor: pointer;
}
article {
	box-sizing: border-box;
	position: relative;
	float: right;
	width: 100%;
	margin: 0;
	padding: 0 0 0 220px;
}
article h1, article p {
	box-sizing: border-box;
	position: relative;
	float: left;
	width: 100%;
	margin: 0;
}
article h1 {
	padding: 60px 20px 20px 20px;
	color: tomato;
	border-left: 1px solid #ececec;
}
article h1 span.date {
	padding: 0;
	color: tomato;
	border: none;
	float: right;
	color: silver;
}
article h2 {
	position: absolute;
	right: 0;
	padding: 80px 20px 20px 20px;
	float: right;
	color: royalblue;
}
article p {
	padding: 0 20px 40px 20px;
	color: forestgreen;
	border-left: 1px solid #ececec;
	border-bottom: 1px solid #ececec;
}
article img {
	box-sizing: border-box;
	display: block;
	position: relative;
	width: 100%;
	max-width: 650px;
	float: left;
	margin: 0;
	padding: 60px 20px 20px 20px;
}
article#contact h1 {
	border-top: 1px solid #ececec;
}
article#cover {
	padding: 0 0 0 220px;
}
article#academy {
	padding: 0 0 0 220px;
}
article.faq, article.terms {
	padding:0;
}

article.faq, article.index_quote {
	padding:50px 0 0 0;
}

article.faq h1, article.terms h1 {
	padding: 20px 20px 20px 20px;
}

/* P O R T F O L I O */

#paintings {
	text-decoration: none;
}
section {
	position: absolute;
	top: 40px;
	float: left;
	right: 0;
	left: 0;
	padding: 20px 20px 80px 20px;
	-webkit-transition: left 200ms;
	-moz-transition: left 200ms;
	-ms-transition: left 200ms;
	-o-transition: left 200ms;
	transition: left 200ms;
}
section.list {
	position: absolute;
	top: 40px;
	padding: 0 0 40px 0;
	float: left;
	right: 0;
	left: 0;
	-webkit-transition: left 200ms;
	-moz-transition: left 200ms;
	-ms-transition: left 200ms;
	-o-transition: left 200ms;
	transition: left 200ms;
}
section.about {
	position: absolute;
	float: left;
	top: 0;
	right: 0;
	left: 0;
	padding: 0 0 40px 0;
}
section.academy {
	position: absolute;
	float: left;
	padding:0;
	top: 0;
	right: 0;
	left: 0;
}
section.academy article {
	padding: 0 0 0 220px;
}
section.open {
	left: 220px;
	border-left: 1px solid #ececec;
}
figure {
	display: table;
	float: left;
	width: 1px;
	margin: 0;
	padding: 0;
}
figure img {
	display: block;
	margin: 0;
	padding: 0;
}
figure:hover img {
	animation: shake 1s; 
	animation-iteration-count: infinite;

}
@keyframes shake {
	0% { transform: translate(1px, 1px) rotate(0deg); }
	10% { transform: translate(-1px, -2px) rotate(-1deg); }
	20% { transform: translate(-3px, 0px) rotate(1deg); }
	30% { transform: translate(3px, 2px) rotate(0deg); }
	40% { transform: translate(1px, -1px) rotate(1deg); }
	50% { transform: translate(-1px, 2px) rotate(-1deg); }
	60% { transform: translate(-3px, 1px) rotate(0deg); }
	70% { transform: translate(3px, 1px) rotate(-1deg); }
	80% { transform: translate(-1px, -1px) rotate(1deg); }
	90% { transform: translate(1px, 2px) rotate(0deg); }
	100% { transform: translate(1px, -2px) rotate(-1deg); }
}
section.portfolio:not(.list) {
	margin: 0 -2px 0 0;
	padding: 0 0 40px 0;
}
section.portfolio figure {
	padding: 20px;
	margin: 0;
	border-right: 1px solid #ececec;
	border-bottom: 1px solid #ececec;
	box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
figcaption {
	margin: 0;
	padding: 0;
}
figcaption h1 {
	margin: 0;
	padding: 15px 0 10px 0;
	color: royalblue;
}
figcaption p {
	margin: 0;
	padding: 0;
	color: forestgreen;
}
img a:link, img a:visited, img a:active {
	display: block;
	margin: 0;
	padding: 0;
	outline: 0;
}
img a:hover {
	outline: none;
	border-bottom: none;
}
section.list figure {
	width: 100%;
	display: flex;
	border-bottom: 1px solid #ececec;
	padding: 0;
	margin: 0;
}
section.list figure img {
	margin: 0;
	padding: 20px;
}
section.list figcaption {
	display: block;
	box-sizing: border-box;
	position: absolute;
	height: 225px;
	right: 0;
	padding: 0 20px;
	margin: 0;
	width: 50%;
	border-left: 1px solid #ececec;
	background: white;
}
section.list figcaption h1 {
	width: 100%;
	padding: 20px 0 10px 0;
	margin: 0;
	float: left;
	text-align: left;
	color: royalblue;
}
section.list figcaption p {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	float: left;
	text-align: left;
	color: forestgreen;
}

/* I T E M - B L U R B */

.blurb {
	position: fixed;
	float: left;
	bottom: -55px;
	background: white;
	z-index: 2;
	border-top: 1px solid #ececec;
	transition: all 150ms ease-in-out;
	box-sizing: border-box;
	padding: 10px 20px;
	left: 0;
	right: 0;
	transition: all 150ms ease-in-out;
	pointer-events: none;
}

.open {
	bottom: 41px;
	transition: all 150ms ease-in-out;
}

.hide_blurb {
	bottom: -55px !important;
}

.blurb p {
	float: left;
	display: inline-block;
	left: 0;
	color: royalblue;
}

.blurb span {
	float: right;
	display: inline-block;
	right: 0;
	color: forestgreen;
}

/* S L I D E R */

.expo {
	display: none;
	position: absolute;
	box-sizing: border-box;
	width: 100%;
	top: 40px;
	right: 0;
	bottom: 0;
	left: 0;
	margin: 0;
	padding: 0;
}
.text h1, .text span, .text p {
	pointer-events: none;
}
.text, .info {
	position: absolute;
	box-sizing: border-box;
	float: right;
	width: 40%;
	top: 0;
	right: 0;
	margin: 0;
	padding: 0 0 200px 0;
	text-align: left;
	border-left: 1px solid #ececec;
	background: white;
	bottom: 40px;
}
.info {
	border-left: 1px solid #ececec;
}
.text h1, .info h1 {
	color: tomato;
	margin: 0;
	padding: 20px 20px 14px 20px;
}
.text span, .text p, .info span, .info p {
	display: block;
	color: royalblue;
	margin: 0;
	padding: 0 20px 14px 20px;
}
.info em {
	display: block;
	color: silver;
	margin: 0;
	padding: 0 20px 14px 20px;
}
.text span, .info span {
	font-family: America, 'Courier New', monospace;
	font-size: 13px;
	line-height: 20px;
	font-weight: normal;
	text-transform: lowercase;
}
.text p, .info p {
	color: forestgreen;
}
.text img, .info img {
	position: relative;
	width: 12px;
	margin: 0 8px -1px 0;
	padding: 0;
}
.wall {
	position: absolute;
	box-sizing: border-box;
	display:  flex;
	align-items: center;
  justify-content: center;
	float: left;
	width: 60%;
	top: 0;
	left: 0;
	margin: 0;
	padding: 20px;
	text-align: center;
	background: white;
	bottom: 40px;
}
.wall.wallpaper {
	display: flex;
	align-items: center;
	justify-content: center;
}
.wallpaper, .textpaper {
	align-items: center;
	background-image: url('/assets/img/floor.jpg');
	background-position: right bottom;
	background-repeat: repeat-x;
	background-size: 1500px 60px;
	background-color: whitesmoke;
}
.textpaper {
	border-left: 1px solid #ececec;
	background-position: left bottom;
}
.wall img {
	position: relative;
	margin: 0 auto;
	padding: 0;
	height: 80%;
	width: auto;
	min-height: 250px;
	display: block;
}
.expo img, .wall img {
	pointer-events: none;
}
.wall.landscape img {
	height: initial;
	min-height: 0;
	width: 90%;
	max-width: 500px;
}
.wall.square img {
	height: initial;
	min-height: 0;
	width: 80%;
	max-width: 500px;
}
.wallpaper img {
	position: relative;
	margin: 20px 0 100px 0;
	-webkit-box-shadow: -3px 6px 2px 0px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: -3px 6px 2px 0px rgba(0, 0, 0, 0.1);
	-ms-box-shadow: -3px 6px 2px 0px rgba(0, 0, 0, 0.1);
	-o-box-shadow: -3px 6px 2px 0px rgba(0, 0, 0, 0.1);
	box-shadow: -3px 6px 2px 0px rgba(0, 0, 0, 0.1);
}
.expo.thumbnails .wall, .expo.thumbnails .text {
	transition: bottom 300ms;
	bottom: 140px;
}

.expo.thumbnails span:last-of-type {
	text-transform: capitalize;
}

/* P A I N T I N G S * T H U M B N A I L S */

#thumbnails {
	margin-bottom:0px;
	position: fixed;
	bottom: 0;
	border-top: 1px solid #ececec;
	height: 110px;
	width: 100%;
	box-sizing: border-box;
	padding: 20px 10px;
	display: block;
	background: white;
	display: flex;
	justify-content: space-between;
	align-items: center;
	overflow-x: auto;
	overflow-y: hidden;
	z-index: 4;
	transition: all 300ms;
	opacity: 1;
	bottom: 40px;
}

#thumbnails img {
	padding: 0 10px;
	position: relative;
	bottom: 0;
	float: left;
	height: 60px;
	-webkit-transition: 150ms ease-in-out;
	-moz-transition: 150ms ease-in-out;
	-ms-transition: 150ms ease-in-out;
	-o-transition: 150ms ease-in-out;
	transition: 150ms ease-in-out;
	z-index:5;
	pointer-events: auto !important;
}

#thumbnails img:last-of-type {
	padding:0 20px 0 10px;
}

#thumbnails img.active {
	padding: 0 5px;
	position: relative;
	float: left;
	cursor: pointer;
	z-index: 5;
}

#thumbnails:hover {
	background: whitesmoke;
}

#thumbnails img.active, #thumbnails:hover img.active, #thumbnails:hover img:hover {
	padding: 0 5px;
	position: relative;
	float: left;
	height: 110px;
	cursor: pointer;
	z-index: 6;
	height: 80px;
}

#thumbnails img:last-of-type:hover {
	padding:0 10px 0 5px;
}

/* C O O K I E S */

div#cookies {
	position: fixed;
	float: left;
	width: 100%;
	height: auto;
	border-bottom: 1px solid #fbceb1;
	background: #fffaf0;
	box-sizing: border-box;
	z-index: 5;
	padding: 0;
	color: #fbceb1;
	display: none;
	top: 40px;
}
div#cookies p {
	padding: 10px 95px 10px 20px;
}
div#cookies p a {
	color: #fbceb1;
	text-decoration: underline;
}
div#cookies p a:hover {
	color: #fbceb1;
	text-decoration: none;
}
div#okay {
	position: absolute;
	float: right;
	height: 100%;
	width: 75px;
	right: 0;
	background: #fffaf0;
	border-left: 1px solid #fbceb1;
	text-align: center;
	cursor: pointer;
	color: #fbceb1;
	display: flex;
	align-items: center;
	justify-content: center;
}
div#okay:hover {
	background: oldlace;
	color: forestgreen;
	-webkit-transition: background-color 150ms ease-in-out;
	-moz-transition: background-color 150ms ease-in-out;
	-ms-transition: background-color 150ms ease-in-out;
	-o-transition: background-color 150ms ease-in-out;
	transition: background-color 150ms ease-in-out;
}

/* S C R E E N * S I Z E S */

/* M A X * 550 PX */

@media (max-width: 550px) {
	.text, .info {
		position: relative;
		float: left;
		width: 100%;
		border-left: none;
		border-top: 1px solid #ececec;
	}
	.wall {
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		width: 100%;
	}
	.wall.wallpaper img {
		max-width: 70%;
		height: auto;
	}
	.wall img  {
		position: relative;
		width: 90%;
		height: initial;
		margin: 0;
		padding: 0;
	}
	.wall.landscape img {
		width: 100%;
	}
	.wall.square img {
		width: 100%;
	}
	.wallpaper {
		background-image: url("/assets/img/floor.jpg");
		background-position: center bottom;
		background-repeat: no-repeat;
		background-color: whitesmoke;
	}
	.textpaper {
		background-image: none;
		background: white;
	}
	.wallpaper img {
		position: relative;
		margin: 20px 20px 100px 20px;
		padding: 0;
		-webkit-box-shadow: -3px 7px 3px 0px rgba(0, 0, 0, 0.1);
		-moz-box-shadow: -3px 7px 3px 0px rgba(0, 0, 0, 0.1);
		-ms-box-shadow: -3px 7px 3px 0px rgba(0, 0, 0, 0.1);
		-o-box-shadow: -3px 7px 3px 0px rgba(0, 0, 0, 0.1);
		box-shadow: -3px 7px 3px 0px rgba(0, 0, 0, 0.1);
	}
	article#cover {
		padding: 0;
	}
	section.about article {
		padding: 0;
	}
	section.academy article {
		padding: 0;
	}
	article#academy {
		padding: 0;
	}
	aside.about {
		display: none;
	}
}

/* 0 - 599 PX BASE */

@media (min-width: 0px) {
	.wall.wallpaper img {
		height: 200px !important;
		width: auto !important;
	}
	figcaption, figcaption p {
		display: none;
	}
	section.portfolio figure {
		width: 50%;
		height: 50vw;
	}
	section.portfolio figure img {
		height:  calc(50vw - 40px);
		width:  auto;
	}
	section.portfolio figure img.img_landscape {
		max-width:  calc(50vw - 40px);
		height:  auto;
	}
	section.portfolio.open figure img {
  	height:  calc(33.33vw - 40px);
		width:  auto;
  }
  section.portfolio.open figure img.img_landscape {
  	max-width:  calc(33.33vw - 40px);
		height:  auto;
  }
	section.list figure {
		height: 200px;
		width: 100%;
		padding-right: 50%;
	}
	section.list figure {
	height: 200px;
	}
	section.list figcaption {
		height: 199px;
	}
	section.list figure img {
		max-height: 80%;
		max-width: auto;
		padding: 0;
		margin: auto;
		box-sizing: border-box;
	}
	section.list figure img.img_landscape {
		max-width: 80%;
		max-height: auto;
		padding: 0;
		margin: auto;
		box-sizing: border-box;
	}
	.blurb {
		height: 61px;
		width: 100%;
	}
	.blurb p {
		width: 100%;
		height: 20px;
		text-align: left;
	}
	.blurb span {
		width: 100%;
		height: 20px;
		text-align: left;
	}


}


/* 600 - 799 PX */

@media (min-width: 600px) {
	.wall.wallpaper img {
		height: 200px !important;
		width: auto !important;
	}
	section.portfolio figure {
		width: 33.33%;
		height: 33.33vw;
	}
	section.portfolio figure img {
		height:  calc(33.33vw - 40px);
		width:  auto;
	}
	section.portfolio figure img.img_landscape {
		max-width:  calc(33.33vw - 40px);
		height:  auto;
	}
	section.portfolio.open figure img {
  	height:  calc(25vw - 40px);
		width:  auto;
  }
  section.portfolio.open figure img.img_landscape {
  	max-width:  calc(25vw - 40px);
		height:  auto;
  }
	section.list figure {
		height: 200px;
		width: 100%;
		padding-right: 50%;
	}
	section.list figure {
	height: 200px;
	}
	section.list figcaption {
		height: 199px;
	}
	section.list figure img {
		max-height: 80%;
		max-width: auto;
		padding: 0;
		margin: auto;
		box-sizing: border-box;
	}
	section.list figure img.img_landscape {
		max-width: 80%;
		max-height: auto;
		padding: 0;
		margin: auto;
		box-sizing: border-box;
	}
	.blurb {
	height: 41px;
	width: 100%;
	}
	.blurb p {
		width: 50%;
		height: 20px;
		text-align: left;
	}
	.blurb span {
		width: 50%;
		height: 20px;
		text-align: right;
	}
}

/* 800 - 999 PX */

@media (min-width: 800px) {
	.wall.wallpaper img {
		height: 200px !important;
		width: auto !important;
	}
	section.portfolio figure {
		width: 25%;
		height: 25vw;
	}
	section.portfolio figure img {
		height:  calc(25vw - 40px);
		width:  auto;
	}
	section.portfolio figure img.img_landscape {
		max-width:  calc(25vw - 40px);
		height:  auto;
	}
	section.portfolio.open figure img {
  	height:  calc(20vw - 40px);
		width:  auto;
  }
  section.portfolio.open figure img.img_landscape {
  	max-width:  calc(20vw - 40px);
		height:  auto;
  }
	section.list figure {
		height: 200px;
		width: 100%;
		padding-right: 50%;
	}
	section.list figure {
		height: 200px;
	}
	section.list figcaption {
		height: 199px;
	}
	section.list figure img {
		max-height: 80%;
		max-width: auto;
		padding: 0;
		margin: auto;
		box-sizing: border-box;
	}
	section.list figure img.img_landscape {
		max-width: 80%;
		max-height: auto;
		padding: 0;
		margin: auto;
		box-sizing: border-box;
	}
}

/* 1000 - 1199 PX */

@media (min-width: 1000px) {
	.wall.wallpaper img {
		height: 250px !important;
		width: auto !important;
	}
	section.portfolio figure {
		width: 20%;
		height: 20vw;
	}
	section.portfolio figure img {
		height:  calc(20vw - 40px);
		width:  auto;
	}
	section.portfolio figure img.img_landscape {
		max-width:  calc(20vw - 40px);
		height:  auto;
	}
  section.portfolio.open figure img {
  	height:  calc(16.66vw - 40px);
		width:  auto;
  }
  section.portfolio.open figure img.img_landscape {
  	max-width:  calc(16.66vw - 40px);
		height:  auto;
  }

	section.list figure {
		height: 200px;
		width: 100%;
		padding-right: 50%;
	}
	section.list figure {
	height: 200px;
	}
	section.list figcaption {
		height: 199px;
	}
	section.list figure img {
		max-height: 80%;
		max-width: auto;
		padding: 0;
		margin: auto;
		box-sizing: border-box;
	}
	section.list figure img.img_landscape {
		max-width: 80%;
		max-height: auto;
		padding: 0;
		margin: auto;
		box-sizing: border-box;
	}
}

/* 1200 - 1399 PX */

@media (min-width: 1200px) {
	.wall.wallpaper img {
		height: 250px !important;
		width: auto !important;
	}
	section.portfolio figure {
		width: 16.66%;
		height: 16.66vw;
	}
	section.portfolio figure img {
		height:  calc(16.66vw - 40px);
		width:  auto;
	}
	section.portfolio figure img.img_landscape {
		max-width:  calc(16.66vw - 40px);
		height:  auto;
	}
	section.portfolio.open figure img {
  	height:  calc(14.28vw - 40px);
		width:  auto;
  }
  section.portfolio.open figure img.img_landscape {
  	max-width:  calc(14.28vw - 40px);
		height:  auto;
  }
	section.list figure {
		height: 200px;
		width: 100%;
		padding-right: 50%;
	}
	section.list figure {
	height: 200px;
	}
	section.list figcaption {
		height: 199px;
	}
	section.list figure img {
		max-height: 80%;
		max-width: auto;
		padding: 0;
		margin: auto;
		box-sizing: border-box;
	}
	section.list figure img.img_landscape {
		max-width: 80%;
		max-height: auto;
		padding: 0;
		margin: auto;
		box-sizing: border-box;
	}
}

/* 1400 PX */

@media (min-width: 1400px) {
	.wall.wallpaper img {
		height: 300px !important;
		width: auto !important;
	}
	section.portfolio figure {
		width: 14.28%;
		height: 14.28vw;
	}
	section.portfolio figure img {
		height:  calc(14.28vw - 40px);
		width:  auto;
	}
	section.portfolio figure img.img_landscape {
		max-width:  calc(14.28vw - 40px);
		height:  auto;
	}
	section.portfolio.open figure img {
  	height:  calc(12.5vw - 40px);
		width:  auto;
  }
  section.portfolio.open figure img.img_landscape {
  	max-width:  calc(12.5vw - 40px);
		height:  auto;
  }
	section.list figure {
		height: 200px;
		width: 100%;
		padding-right: 50%;
	}
	section.list figure {
	  height: 200px;
	}
	section.list figcaption {
		height: 199px;
	}
	section.list figure img {
		max-height: 80%;
		max-width: auto;
		padding: 0;
		margin: auto;
		box-sizing: border-box;
	}
	section.list figure img.img_landscape {
		max-width: 80%;
		max-height: auto;
		padding: 0;
		margin: auto;
		box-sizing: border-box;
	}
}

/* 1600 PX */

@media (min-width: 1600px) {
	.wall.wallpaper img {
		height: 300px !important;
		width: auto !important;
	}
	section.portfolio figure {
		width: 12.5%;
		height: 12.5vw;
	}
	section.portfolio figure img {
		height:  calc(12.5vw - 40px);
		width:  auto;
	}
	section.portfolio figure img.img_landscape {
		max-width:  calc(12.5vw - 40px);
		height:  auto;
	}
	section.portfolio.open figure img {
  	height:  calc(11.11vw - 40px);
		width:  auto;
  }
  section.portfolio.open figure img.img_landscape {
  	max-width:  calc(11.11vw - 40px);
		height:  auto;
  }
	section.list figure {
		height: 200px;
		width: 100%;
		padding-right: 50%;
	}
	section.list figure {
	  height: 200px;
	}
	section.list figcaption {
		height: 199px;
	}
	section.list figure img {
		max-height: 80%;
		max-width: auto;
		padding: 0;
		margin: auto;
		box-sizing: border-box;
	}
	section.list figure img.img_landscape {
		max-width: 80%;
		max-height: auto;
		padding: 0;
		margin: auto;
		box-sizing: border-box;
	}
}

/* 1800 PX */

@media (min-width: 1800px) {
	.wall.wallpaper img {
		height: 300px !important;
		width: auto !important;
	}
	section.portfolio figure {
		width: 11.11%;
		height: 11.11vw;
	}
	section.portfolio figure img {
		height:  calc(11.11vw - 40px);
		width:  auto;
	}
	section.portfolio figure img.img_landscape {
		max-width:  calc(11.11vw - 40px);
		height:  auto;
	}
	section.portfolio.open figure img {
  	height:  calc(10vw - 40px);
		width:  auto;
  }
  section.portfolio.open figure img.img_landscape {
  	max-width:  calc(10vw - 40px);
		height:  auto;
  }
	section.list figure {
		height: 200px;
		width: 100%;
		padding-right: 50%;
	}
	section.list figure {
	  height: 200px;
	}
	section.list figcaption {
		height: 199px;
	}
	section.list figure img {
		max-height: 80%;
		max-width: auto;
		padding: 0;
		margin: auto;
		box-sizing: border-box;
	}
	section.list figure img.img_landscape {
		max-width: 80%;
		max-height: auto;
		padding: 0;
		margin: auto;
		box-sizing: border-box;
	}
}

@media (max-height: 550px) {
	.expo.thumbnails .wall, .expo.thumbnails .text {
		bottom: 40px;
	}
	#thumbnails {
		margin-bottom:-150px;
	}
}

/* N A V I G A T I O N * F L E X */

@media (max-width: 700px) {
	nav ul {
		justify-content: space-between;
	}
	nav li, nav li.left, nav li.right {
		flex-grow: 1;
	}
	nav li.left {
		text-align: left;
	}
	nav li.right {
		text-align: right;
	}
}
@media (max-width: 550px) {
	nav ul {
		flex-flow: column nowrap;
	}
	nav li, nav li.left, nav li.right {
		float: left;
		width: 100%;
		padding: 0;
		border-bottom: 1px solid #ececec;
		text-align: center;
	}
	nav {
		padding: 0;
		border-bottom: none;
	}
	nav li a:link, nav li a:visited, nav li a:active {
		display: block;
		margin: 0;
		padding: 10px 20px;
	}
	nav li a:hover {
		color: tomato;
	}
}

/* L O O K B O O K * O R I E N T A T I O N */

@media screen and (orientation:portrait) {
	.wall:not(.wallpaper) img {
		width: 90%;
		height: initial;
	}
	.wall.landscape img, .wall.square img {
		width: 100%;
		height: initial;
	}
	.look {
		width: 115vh;
		height: calc(100vh - 80px);
	}
}
@media screen and (orientation:landscape) {
	.look {
		width: 115vw;
		height: calc(100vw - 80px);
	}
}