/*  RESET */
* {
	margin:0;
	padding:0;
	border: 0;

	-webkit-box-sizing: border-box;	/* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;	/* Firefox, other Gecko */
	box-sizing: border-box;			/* Opera/IE 8+ */
}

body {
	background: #FFF;
	margin: 0;
	
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
	font-weight: 400;

	font-family: 'HelveticaNeueLT-Light', "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;


	font-weight: normal;
	font-style: normal;

	color:#141215;
	font-size: 12px;
	line-height: 2em;
}

html,body {
	/*
	margin:0;
	padding:0;
	*/
	height:100%; /* braucht es für die min-height des Containers */
}

ul {
	list-style-type: none;
}

/* end: RESET */

#bg {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;

	background-repeat: no-repeat;
	background-position: center;
	background-attachment: fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;

	background-color: none;
}

header {
	z-index: 100;
	
	position: fixed;
	width: 100%;
	height: 150px;
	
	/*
	background-color: tomato;
	*/

	padding-top: 60px;
}

header h1,
header h2 {
	float: left;
	font-size: 23px;
	font-weight: 600;

	font-family: 'HelveticaNeueLT-Bold', "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 

	font-weight: normal;
	font-style: normal;

	line-height: 1em;
	text-transform:uppercase;

	padding: 4px 6px 4px 6px;
	padding: 5px 6px 3px 6px;


	cursor: pointer;
	
}

header a {
	color:#141215;
}

h1.Jens_Boldt {
	width: 235px;
	text-align: right;

	letter-spacing: 0.05em;

	background-color: #141215;
	color: #FFF;
	/*
	font-weight: 400;
	*/
}

.weiss {
	background: #FFF;
}

div.toggle_nav {

	position: fixed;
	top: 0;
	right: 0;
	z-index: 550;

	width: 60px;
	height: 60px;

	background-image: url('../gfx/icon_menu.gif');
	background-position: right;
	background-repeat: no-repeat;

	cursor: pointer;

	display: none;

}

div.toggle_nav a {
	background: none;
	display: block;
	overflow: hidden;

	width:100%;
	height: 100%;

	text-indent: -9999px;
}

nav {
	z-index: 50;
	
	position: fixed;
	left: 0;
	top: 150px;
	bottom: 0;
	
	width: 235px;
	
	text-align: right;
	/*
	background-color: lightgreen;
	*/

	-webkit-transition: left 500ms ease-out;
	-moz-transition: left 500ms ease-out;
	-o-transition: left 500ms ease-out;
	transition: left 500ms ease-out;
}

nav li {
	margin-bottom: 7px;
	position: relative;
}

nav a {
	display: block;

	color: #141215;
	text-decoration: none;

	font-size: 21px;
	line-height: 1em;
	text-transform:uppercase;
	letter-spacing: 0.03em;

	padding: 1px 3px;
	padding: 3px 3px 0;

	-webkit-transition: color 500ms ease-out;
    -moz-transition: color 500ms ease-out;
    -o-transition: color 500ms ease-out;
    transition: color 500ms ease-out;

	/*
	background-color: aqua;
	*/
}

nav a:hover,
nav li.aktiv a {
	color: #FFF;
	/*
	background-color: #141215;
	*/
}

nav a::after {
	content: "";
	position: absolute;
	left: 100%;
	top: 0;
	right: 0;
	bottom: 0;

	/*
	
	*/
	background-color: tomato;
	background-color: #141215;
	
	z-index: -1;
	
	-webkit-transition: left 500ms ease-out;
	-moz-transition: left 500ms ease-out;
	-o-transition: left 500ms ease-out;
	transition: left 500ms ease-out;
}

nav a:hover::after {
	left: 0;
}

nav li.aktiv a {
	background-color: #141215;
}

nav li#download_btn {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 20px;

}

@media screen and (max-height: 450px) {
	nav li#download_btn {
		display: none;
	}

}

main {
	z-index: 10;
	
	position: absolute;
	top: 150px;
	left: 295px;
	right: 0;
	bottom: 0;
	/*
	background: lightPink;
	*/
}

/* SLIDE-Show */
div#img_holder {
	position: absolute;

	top: 0;
	left: 0;
	right: 30px;
	bottom: 30px;

	overflow: hidden;
	/*
	background: lightCyan;
	*/
}

div.img_container {
	
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;

	display: none;
	
	overflow: hidden;
	/*
	background-color: rebeccapurple;
	background-color: rgba(22,222,22,0.3);
	*/

	background-image: url(../gfx/icon_load_anim_s.gif);
	background-repeat: no-repeat;
	background-position: center;
}

div.img_container.img_loaded {
	background-image: initial;
}

div.img_container.center {
	display: block;
}

div#img_holder img,
div#img_holder video {
	display: block;

	max-width: 100%;
	max-height: 100%;
	
	-webkit-backface-visibility: hidden;
	-webkit-transform-style: preserve-3d;
	-webkit-transform:translate3d(0,0,0);
	
}

div#img_holder video {
	/*
	width: 100%;
	max-width: 100%;
	height: auto;
	*/
}



div.video_icon {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/*
	background-color: rgba(123, 123, 256, 0.45);
	*/
	background-image: url("../gfx/video_play.png");
	background-position: center;
	background-repeat: no-repeat;

	cursor: pointer;
}

div.video_icon:hover {
	background-image: url("../gfx/video_play_over.png");
}

div#show_nav {
	position: absolute;
	top: 600px;
	left: 0;
	right: 30px;

	/*
	width: 100%;
	*/
	height: 30px;

	background-color: teal;
	background-color: rgba(88, 8, 222, 0.5);
	background-color: #FFF;

	/*
	-webkit-transition: top 300ms ease-in-out;
	-moz-transition: top 300ms ease-in-out;
	-o-transition: top 300ms ease-in-out;
	transition: top 300ms ease-in-out;
	*/
}

div#show_nav a {
	display: block;
	float: left;
	overflow: hidden;
	text-indent: -9999px;

	line-height: 25px;

	background-repeat: no-repeat;
	cursor: pointer;
}

div#show_nav p {
	float: left;
	padding: 4px 0 0;
	padding: 5px 0 0;
	letter-spacing: 0.02em;
}

div#show_nav p#info_text {
	margin-left: 5px;
}

div#show_nav span {
	display: inline-block;
	min-width: 17px;
}

#counter_img {
	text-align: right;
}

a.btn_overview {
	width: 23px;
	height: 30px;

	background-image: url(../gfx/icon_overview.gif);

	position: relative;
	left: -3px;


	-webkit-transition: background-image 750ms ease-out;
	-moz-transition: background-image 750ms ease-out;
	-o-transition: background-image 750ms ease-out;
	transition: background-image 750ms ease-out;
}

a.btn_overview:hover {
	background-image: url(../gfx/icon_overview_hl.gif);
}

a.btn_prev,
a.btn_next {
	width: 23px;
	height: 30px;

	background-image: url(../gfx/icon_pfeil_l.png);

	background-position: 0 1px;

	-webkit-transition: background-position 300ms ease-out;
	-moz-transition: background-position 300ms ease-out;
	-o-transition: background-position 300ms ease-out;
	transition: background-position 300ms ease-out;



}

a.btn_next {
	-moz-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);

	background-position: 0 -1px;

}

a.btn_prev:hover {
	background-position: -4px 1px;
}

a.btn_next:hover {
	background-position: -4px -1px;
}

/* SLIDE-Show - PFEILE */

div#btn_prev,
div#btn_next {
	position: absolute;
	top: 0;
	left: 0;
	height: 600px;
	width: 35%;
	overflow: hidden;

	cursor: pointer;
	/*
	background-color: rgba(0,0,166,0.5);
	background-color: rgba(255,0,0,0.5);
	*/
	
}

div#btn_next {
	left: auto;
	right: 0;
}

div#btn_prev div,
div#btn_next div {
	width: 23px;
	height: 23px;

	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -12px;
	
	background-image:  url('../gfx/icon_pfeil.gif');

	background-repeat: no-repeat;

	background-position: 23px 0;

	-webkit-transition: background-position 300ms ease-out;
	-moz-transition: background-position 300ms ease-out;
	-o-transition: background-position 300ms ease-out;
	transition: background-position 300ms ease-out;
}

div#btn_prev div {
	right: auto;
	left: 0;

	margin-top: -13px;
	
	-moz-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}


div#btn_prev:hover div,
div#btn_next:hover div {
	background-position: 0 0;
}

div#btn_next:hover div {
	
}


/* WALL */

#thumb_list li {
	float: left;
	
	padding-right: 40px;
	padding-bottom: 40px;

	width: 240px;
	width: 25%;
/*
	width: 16.66%;
	*/
}

#thumb_list li.masonary_break {
	width: 100%;
	height: 0;
	padding: 0;
	background-color: tomato;
}

#thumb_list a {
	display: block;
	position: relative;
}

#thumb_list a img {
	display: block;
	width: 100%;
}

#thumb_list div.video_icon {
	background-size: 30%;
}

/* CONTACT */
section {
	background-color: none;
	float: left;
	width: 40%;
	margin-right: 5%;

	max-width: 400px;
}

h2, h3, h4 {
	font-weight: 600;

	font-family: 'HelveticaNeueLT-Bold', "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
	font-family: 'HelveticaNeueLT-Bold', Georgia, serif;
	font-weight: normal;
	font-style: normal;

	font-size: 12px;
	line-height: 1.5em;
	letter-spacing: 0.02em;
}

section p {
	letter-spacing: 0.02em;
	line-height: 1.5em;

	
}

section h2, 
section p {
	margin-bottom: 15px;
}

section h4 {
	float: left;
	margin-right: 5px;
}

section a {
	color: rgb(20, 18, 21);
	text-decoration: none;
	padding: 1px 3px;
	padding: 3px 3px 0;
	margin-left: -3px;
}

section a:hover {
	color: #FFF;
	background-color: #141215;
}