div#content {
	padding: 0px 0px 0px 1px;
}

div#showHeader {
	padding-top: 15px;
	background-color: #f4f4f8;
}

div#tabSelector {
	border-bottom: 1px solid #3f3f3f;
}

div#tabSelector ul {
	list-style-type: none;
	height: 70px;
	margin: 0px;
	padding: 0px;
	cursor: default;
}

div#tabSelector ul li {
	float: left;
	width: 180px;
	height: 70px;
	margin: 0px;
	padding: 0px;
	position: relative;
}

div#tabSelector ul li a {
	position: absolute;
	bottom: 0px;
	width: 150px; /* + 20px margin + 8px padding + 2px border = 180px */
	padding: 5px 4px;
	margin-left: 20px;
	border-top: 1px solid #3f3f3f;
	border-left: 1px solid #3f3f3f;
	border-right: 1px solid #3f3f3f;
	border-radius: 5px 5px 0 0;
	background-color: #b6bbd0;
	color: black;
	text-decoration: none;
	text-align: center;
	font-size: 23px;
	font-weight: bold;
}

div#tabSelector ul li a:hover {
	background-color: #c9ccdb;
}
div#tabSelector ul li a.active {
	background-color: #e1e1e1;
	border-bottom: 2px solid #e1e1e1;
	bottom: -2px;
}



#posterImage {
	float: right;
	margin-left: 10px;
	margin-bottom: 10px;
	background-color: white;
	border: 1px solid #33446C;
	padding: 2px;
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
	border-radius: 7px;
	cursor: pointer;
}
#posterImage:hover {
	background-color: #cccccc;
	-moz-box-shadow: 0 0 15px -8px;
	-webkit-box-shadow: 0 0 15px -8px;
	box-shadow: 0 0 15px -8px;
}


#posterOverlay {
	display: none;
	position: fixed;
	left: 0px;
	top: 10px;
	bottom: 10px;
	width: 100%;
	text-align: center;
}

#trailerPlayer {
	display: block;
	width: 680px;
	height: 383px;
	margin: 10px auto;
	-moz-box-shadow: 2px 3px 5px black;
	-webkit-box-shadow: 2px 3px 5px black;
	box-shadow: 2px 3px 5px black;
}


.bluebox {
	margin: 20px 0px;
	width: 500px;
	padding: 18px;
	-moz-border-radius: 17px;
	-webkit-border-radius: 17px;
	border-radius: 17px;
	background-color: #1d204a;
	color: white;
	text-align: left;
	font-size: 19px;
}




a.albumPreview {
	display: block;
	width: 500px;
	margin: 30px auto;
	padding: 10px 0px;
	background-color: #405565;
	border: 2px solid #99aebe;
	border-radius: 25px;
	box-shadow: 2px 6px 4px gray;
	color: white;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
}

a.albumPreview:hover {
	background-color: #566B7B;
	border-color: white;
	color: white;
}
a.albumPreview:hover .albumLabel {
	text-decoration: underline;
}

a.albumPreview * {
	vertical-align: middle;
}

a.albumPreview .albumLabel {
	margin-left: 20px;
	font-weight: bold;
	font-size: 33px;
	color: white;
}



#albumOverlay {
	display: none;
	position: fixed;
	left: 15px;
	right: 15px;
	top: 15px;
	bottom: 15px;
	background-color: black;
}

#albumOverlay .closeBtn {
	display: block;
	width: 36px;
	height: 36px;
	background-image: url(./gfx/icon_overlay_close.png);
	position: absolute;
	right: 5px;
	top: 5px;
	z-index: 20;
}

#albumOverlay .scrollSelector {
	float: left;
	height: 100%;
	padding: 0 10px;
	width: 150px;
	background-color: white;
	background-image: url(./gfx/background_albumviewer_navi.png);
	background-repeat: repeat-y;
	overflow: auto;
	overflow-y: scroll;
}

#albumOverlay .scrollSelector a {
	display: block;
}

#albumOverlay .scrollSelector a img {
	display: block;
	margin: 15px auto;
	padding: 3px;
	background-color: white;
	border: 1px solid gray;
	opacity: 0.85;
}

#albumOverlay .scrollSelector a:hover img {
	box-shadow: 0px 0px 15px black !important;
	box-shadow: 0px 0px 15px black;
	opacity: 1;
}

#albumOverlay .scrollSelector a.selected img {
	background-color: black;
	box-shadow: 0px 0px 5px black;
	opacity: 1;
}

#albumOverlay .viewHeader {
	display: none;
	position: absolute;
	left: 170px;
	top: 0px;
	padding: 6px 20px;
	background-image: url("./gfx/banner_overlay_bg.png");
	background-repeat: repeat;
	cursor: default;
	z-index: 15;
}

#albumOverlay .viewHeader .albumCaption {
	display: inline;
	font-weight: bold;
	font-size: 30px;
	line-height: 32px;
	color: white;
	text-shadow: 1px 2px 4px black;
	text-decoration: underline;
}

#albumOverlay .viewHeader .activeCounter {
	display: inline;
	font-size: 20px;
	line-height: 32px;
	color: #222222;
	margin-left: 20px;
}

#albumOverlay .viewHeader .description {
	display: inline;
	font-size: 26px;
	line-height: 32px;
	color: black;
	margin-left: 25px;
}

#imageViewContainer {
	height: 100%;
	margin-left: 170px;
	text-align: center;
	overflow: hidden;
}

#imageView {
	display: table;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

#imageView .wrapper {
	display: table-cell;
	width: 100%;
	height: 100%;
	vertical-align: middle;
	overflow: hidden;
}

#imageView img {
	display: block;
	margin: auto;
	cursor: pointer;
}


/* === Ticket-Formular === */

.tickets-form * {
	box-sizing: border-box;
}

.tickets-form .tickets-row {
	display: flex;
	flex-direction: row;
	justify-content: stretch;
	margin: 8px 0;
}

.tickets-form .tickets-label {
	width: 150px;
	height: 40px;
	line-height: 40px;
	flex: 0 0 auto;
	padding-right: 12px;
	text-align: right;
}

.tickets-form .aligned {
	width: 300px;
}

.tickets-form input {
	padding: 0 12px;
	height: 40px;
}

.tickets-form select {
	padding: 0 8px;
	height: 40px;
}

.tickets-form textarea {
	padding: 0.5em 12px;
	font-family: inherit;
}

.tickets-comments {
	display: flex;
	flex-direction: column;
	align-items: stretch;
}
