@import url(https://fonts.googleapis.com/css?family=Ubuntu+Condensed);
/* font-family: 'Ubuntu Condensed', sans-serif; */


* {
	margin: 0;
	padding: 0;
	font-family: 'Ubuntu Condensed', sans-serif;
	font-size: 16px;
	color: #252525;
}

body {
	background-color: #E2E3E4;
}

h1, h2 {
	margin: 0;
	padding: 0;
	font-weight: bold;
	color: #000000;
}

h1 {
	font-size: 26px;
}

h2 {
	font-size: 20px;
}

.clearBoth {
	clear: both;
}

ul {
	margin: 0;
	padding: 0;
}

a:link, a:active, a:visited, a:hover {
	color: #153357;
	transition: color 0.25s ease;
	-moz-transition: color 0.25s ease;
	-webkit-transition: color 0.25s ease;
}

a:hover {
	color: #000000;
	transition: color 0.25s ease;
	-moz-transition: color 0.25s ease;
	-webkit-transition: color 0.25s ease;
}

a.mediaDownload:link,
a.mediaDownload:active,
a.mediaDownload:visited,
a.mediaDownload:hover {
	color: #FFFFFF;
	background-color: #153357;
	padding: 2px;
	text-decoration: none;
	padding: 10px;
	display: inline-block;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
	margin: 1px;
}

a.mediaDownload:hover {
	background-color: #264468;
	transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
}

a.mediaDownload img {
	transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	transition: transform 0.5s ease;
	-moz-transition: transform 0.5s ease;
	-webkit-transition: transform 0.5s ease;
	display: block;
	float: left;
}

a.mediaDownload:hover img {
	transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
	transition: transform 0.5s ease;
	-moz-transition: transform 0.5s ease;
	-webkit-transition: transform 0.5s ease;
}

a.mediaDownload span {
	color: #FFFFFF;
	position: relative;
	top: -1px;
	margin-left: 20px;
	line-height: 20px;
	display: block;
}


#outerContentWrapper {
	/* margin-bottom: 100px; */
	z-index: 2;
}

#outerContentWrapper #innerContentWrapper {
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
	background-color: #FFFFFF;
	border-top: 1px solid #C0C1C2;
	border-left: 1px solid #C0C1C2;
	border-right: 1px solid #C0C1C2;
	border-bottom: 1px solid #C0C1C2;
	/* transform: perspective(600px) rotateX(0deg); */
	box-shadow: 0 0px 15px rgba(0,0,0, 0.15); 
}

#header {
	clear: both;
	position: fixed;
	top: 0;
	width: 1000px;
	height: 85px;
	background-color: #FFFFFF;
	z-index: 100;
}

#header.scrolled {
	box-shadow: 0 5px 5px rgba(0,0,0, 0.25);
	-moz-box-shadow: 0 5px 5px rgba(0,0,0, 0.25);
	-webkit-box-shadow: 0 5px 5px rgba(0,0,0, 0.25);
}

/*
#header.scrolled {
	height: 45px;
}
#header.scrolled .logo {
	height: 45px;
}

#header.scrolled .logo img {
	height: 100%;
}

#header.scrolled .menu ul.menu >li {
	padding-top: 10px;
	padding-bottom: 6px;
}

#header.scrolled .menu ul.menu >li ul.subMenu {
	margin-top: 6px;
}

#header.scrolled .menu ul.menu >li >a:link,
#header.scrolled .menu ul.menu >li >a:active,
#header.scrolled .menu ul.menu >li >a:visited,
#header.scrolled .menu ul.menu >li >a:hover {
	padding: 30px 10px 5px 10px;
}
*/

#header .logo {
	float: left;
	height: 85px;
	width: 385px;
	overflow: hidden; 	
}

#header .logo img {
	max-height: 75px;
	padding-left: 25px;
	padding-top: 19px;
}

#header .menu {
	float: right;
	margin-right: 25px;
}

/* Main Menu */
#header .menu ul.menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

#header .menu ul.menu >li {
	float: left;
	margin: 0;
	padding-top: 30px;
	padding-bottom: 30px;
}

#header .menu ul.menu >li >a:link,
#header .menu ul.menu >li >a:active,
#header .menu ul.menu >li >a:visited,
#header .menu ul.menu >li >a:hover {
	color: #757575;
	font-size: 20px;
	text-decoration: none;
	padding: 30px 10px 30px 10px;
	border-bottom: 2px solid #FFFFFF;
	transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
}

#header .menu ul.menu >li >a.active:link,
#header .menu ul.menu >li >a.active:active,
#header .menu ul.menu >li >a.active:visited,
#header .menu ul.menu >li >a.active:hover,
#header .menu ul.menu >li >a:hover {
	color: #153357;
	border-bottom: 2px solid #153357;
	transition: all 1.5s ease;
	-moz-transition: all 1.5s ease;
	-webkit-transition: all 1.5s ease;	
}

/* Submenu */
#header .menu ul.menu >li:hover ul.subMenu {
	display: block;		
}

#header .menu ul.menu >li ul.subMenu {
	margin-top: 31px;
	list-style: none;
	background-color: #FFFFFF;
	border: 1px solid #C0C0C0;
	box-shadow: 0 0 5px rgba(0,0,0, 0.25);
	-moz-box-shadow: 0 0 5px rgba(0,0,0, 0.25);
	-webkit-box-shadow: 0 0 5px rgba(0,0,0, 0.25);
	display: none;
	position: absolute;
}

/* Kabarettprogramme */
#header .menu ul.menu >li ul.subMenu.c3 {
	width: 169px;
}

/* Maier-Bode */
#header .menu ul.menu >li ul.subMenu.c4 {
	width: 103px;
}

/* Medien */
#header .menu ul.menu >li ul.subMenu.c5 {
	width: 74px;
}


#header .menu ul.menu >li ul.subMenu >li {
	opacity: 0;
}

#header .menu ul.menu >li:hover ul.subMenu >li {
	opacity: 1;
	transition: all 1.5s ease;
	-moz-transition: all 1.5s ease;
	-webkit-transition: all 1.5s ease;		
}

#header .menu ul.menu >li ul.subMenu >li.headline {
	padding: 5px 10px 5px 10px;
	border-bottom: 1px solid #F0F0F0;
	color: #000000;
}

#header .menu ul.menu >li ul.subMenu >li.link {	
}

#header .menu ul.menu >li ul.subMenu >li.link a:link,
#header .menu ul.menu >li ul.subMenu >li.link a:visited,
#header .menu ul.menu >li ul.subMenu >li.link a:active,
#header .menu ul.menu >li ul.subMenu >li.link a:hover {
	padding: 5px 10px 5px 10px;
	color: #757575;
	display: block;
	text-decoration: none;
}

#header .menu ul.menu >li ul.subMenu >li.link a:hover {
	color: #153357;
	background-color: #FAFAFA;
	transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;		
}


#content {
	clear: both;
	padding-top: 75px;
}

#footer {
	clear: both;
	text-align: center;
	z-index: -1;
	border-top: 2px solid #C0C1C2;	
}

#footer .innerContent {
	background-color: #D1D2D3;
	padding: 50px;
}

#footer .innerContent,
#footer .innerContent * {
	font-size: 22px;
}

#footer .innerContent a:link,
#footer .innerContent a:active,
#footer .innerContent a:visited,
#footer .innerContent a:hover {
	text-decoration: none;
	color: #757575; 
}

#footer .innerContent a:hover {
	color: #000000;
}

.contentBlock {
	padding: 25px;
}

/* Termine */
.appointmentsMonthPreview {
	text-align: left;
}

.appointmentsMonthPreview .item {
	display: inline-block;
	width: 155px;
}

.appointmentsMonthPreview .item a {
	font-size: 20px;
	color: #000000;
	text-decoration: none;
	padding-left: 0px;
	transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
}

.appointmentsMonthPreview .item a:hover {
	color: #153357;
	padding-left: 20px;
	transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
}

.appointments {
	
}

.appointments .item {
	clear: both;
	margin-top: 5px;
	margin-bottom: 5px;
	padding: 10px;
	min-height: 90px;
	background-color: #FFFFFF;
}

.appointments .item:hover {
	background-color: #FAFAFA;
}

.appointments .item:hover .playingTime {
	top: -25px;
	box-shadow: 0 4px 4px rgba(0,0,0, 0.25); 
	-moz-box-shadow: 0 4px 4px rgba(0,0,0, 0.25);
	-webkit-box-shadow: 0 4px 4px rgba(0,0,0, 0.25);
	margin-right: 25px;
	transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
}

.appointments .item .innerContentContainer {
	margin-left: 75px;
}

.appointments .item .playingTime {
	position: relative;
	top: 0;
	left: 10px;
	float: left;
	width: 50px;
	text-align: center;
	background-color: #F0F0F0;
	border: 1px solid #D1D2D3;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	box-shadow: 0 2px 2px rgba(0,0,0, 0.25); 
	-moz-box-shadow: 0 2px 2px rgba(0,0,0, 0.25);
	-webkit-box-shadow: 0 2px 2px rgba(0,0,0, 0.25);
	margin-right: 25px;
	transition: all 1.25s ease;
	-moz-transition: all 1.25s ease;
	-webkit-transition: all 1.25s ease;
}

.appointments .item .playingTime .monthname {
	font-size: 12px;
	background-color: #E2E3E4;
	padding-top: 2px;
	padding-bottom: 2px;
	font-weight: bold;
}

.appointments .item .playingTime .dayNr {
	padding-top: 2px;
	padding-bottom: 2px;
	color: #153357;
	font-size: 30px;
}

.appointments .item .playingTime .weekday {
	font-size: 10px;
	padding-top: 2px;
	padding-bottom: 2px;
}

.appointments .item .title_text {
	font-size: 20px;
}

.appointments .item .activity a:link,
.appointments .item .activity a:active,
.appointments .item .activity a:visited,
.appointments .item .activity a:hover {
	color: #000000;
	text-decoration: none;
}

.appointments .item .activity a:hover {
	color: #153357;
}
	
.appointments .item .footer {
}

.appointments .item .footer .address {
	color: #808080;
}

.appointments .item .footer .order_linking a:link,
.appointments .item .footer .order_linking a:active,
.appointments .item .footer .order_linking a:visited,
.appointments .item .footer .order_linking a:hover {
	color: #000000;
	text-decoration: none;
}

.appointments .item .footer .order_linking a:hover {
	color: #153357;
}

/* Cabaret, Content-Sites */
.cabaret {
	
}

.cabaret .head,
.content_site .head {
	position: relative;
}

.cabaret .head .image,
.content_site .head .image {
	height: 200px;
	overflow: hidden;
}

.cabaret .head .image img,
.content_site .head .image img {
	width: 100%;
}

.cabaret .head .text,
.content_site .head .text {
	position: absolute;
	top: 0px;
	font-size: 36px;
	color: #FFFFFF;
	text-shadow: 0 0 1px #000000;
	font-style: italic;
	margin: 10px;
}

.cabaret .content,
.content_site .content {
	display: table;
	width: 100%;
	margin-top: 10px;
}

.cabaret .content .left,
.cabaret .content .center,
.cabaret .content .right {
	display: table-cell;
	width: 33%;
	vertical-align: top;
}

.content_site .content .left,
.content_site .content .right {
	display: table-cell;
	width: 33%;
	vertical-align: top;
}

.content_site .content .content_text {
	display: table-cell;
	width: 66%;
	vertical-align: top;
}

.content_site .content .content_text.wide {
	padding: 0;
	width: 100%;
}

.cabaret .content .left {
	position: relative;
}

.cabaret .content .left .image img,
.content_site .content .image img {
	width: 100%;
}

.cabaret .content .left .text {
	padding: 20px;
}

.cabaret .content .center,
.cabaret .content .right,
.content_site .content .content_text {
	padding-left: 20px;
	padding-right: 20px;
}

.cabaret .content .left .text {
	position: absolute;
	top: 0px;
	color: #FFFFFF;
	text-shadow: 0 0 1px #000000;
}

.cabaret .content .right .block {
	margin-bottom: 25px;
}

.cabaret .content .right .mediaDownload {
	display: block;
	margin-top: 1px;
	margin-bottom: 1px;
}

.nextAppointments .item {
	margin-top: 5px;
	margin-bottom: 10px;
	padding: 2px;
}

.nextAppointments .item:nth-child(even) {
	background-color: #FFFFFF;
}
.nextAppointments .item:nth-child(odd) {
	background-color: #E2E3E4;
}

.nextAppointments .item .date {
	display: inline;
	font-weight: bold;
}
.nextAppointments .item .name {
	display: inline;
}

.nextAppointments .item .name a:link,
.nextAppointments .item .name a:visited,
.nextAppointments .item .name a:visited,
.nextAppointments .item .name a:hover {
	color: #000000;
	text-decoration: none;
}

.nextAppointments .item .name a:hover {
	color: #153357;
}

/* Cabaret Overview */
.cabarets-overview {
}

.cabarets-overview .item {
	width: 460px;
	float: left;
	margin-left: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	height: 606px;
	overflow: hidden;
}

.cabarets-overview .item .innerContainer {
	position: relative;
	overflow: hidden;
	max-height: 606px;	
}

.cabarets-overview .item .innerContainer:hover {
}

.cabarets-overview .item img {
	position: relative;
	top: 0;
	left: 0;
	width: 460px;
	transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}

.cabarets-overview .item .innerContainer:hover img {
	top: -10px;
	left: -10px;
	width: 480px;
	opacity: 1;
	-moz-opacity: 1;
	-webkit-opacity: 1;
	transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}

.cabarets-overview .item .text {
	position: absolute;
	background-color: rgba(255, 255, 255, 0.25);
	width: 100%;
	padding: 10px;
	/* bottom: -56px; */
	bottom: 0px;
	height: 56px;
	box-sizing: border-box;	
	overflow: hidden;
	transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	/*opacity: 0;
	-moz-opacity: 0;
	-webkit-opacity: 0;*/
}

.cabarets-overview .item .innerContainer:hover .text {
	bottom: 0px;
	transition: all 1.0s ease;
	-moz-transition: all 1.0s ease;
	-webkit-transition: all 1.0s ease;
	opacity: 1;
	-moz-opacity: 1;
	-webkit-opacity: 1;
	background-color: rgba(255, 255, 255, 0.9);
}

/* Medien: Fotos/Videos */
.medien.items .items .container {
	position: relative;
	margin-right: 10px;
	margin-bottom: 10px;
	overflow: hidden;
}
.medien.items .items .container img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 225px;
	transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
		
}

.medien.items .items .container:hover img {
	position: absolute;
	top: -10px;
	left: -10px;
	right: -10px;
	bottom: -10px;
	width: 245px;
	transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;	
}

.medien.items .items .container span {
	box-sizing: border-box;
	position: absolute;
	left: 0;
	bottom: -56px;;
	width: 100%;
	height: 56px;
	padding: 10px;
	overflow: hidden;
	background-color: rgba(255, 255, 255, 0.75);
	transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	opacity: 0.0;
	-moz-opacity: 0.0;
	-webkit-opacity: 0.0;	
}

.medien.items .items .container:hover span {
	z-index: 3;
	bottom: 0;
	opacity: 1.0;
	-moz-opacity: 1.0;
	-webkit-opacity: 1.0;
	transition: all 1s ease;
	-moz-transition: all 1s ease;
	-webkit-transition: all 1s ease;	
}

.medien.items .items .container .blackOutContainer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #000000;
	opacity: 0.0;	
	-moz-opacity: 0.0;
	-webkit-opacity: 0.0;	
	transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;	
	z-index: 1;
}

.medien.items.videos .items .container a {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	cursor: pointer;
	z-index: 4;
}

.medien.items .items .container .blackOutContainer:after {
	content: ' ';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url(/static/img/video_start.png);
	background-repeat: no-repeat;
	background-position: center center;	
	transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}

.medien.items .items .container:hover .blackOutContainer {
	opacity: 0.55;
	-moz-opacity: 0.55;
	-webkit-opacity: 0.55;	
	transition: all 1s ease;
	-moz-transition: all 1s ease;
	-webkit-transition: all 1s ease;
}

.medien.items .items .container:hover .blackOutContainer:after {
	transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
	transition: all 1s ease;
	-moz-transition: all 1s ease;
	-webkit-transition: all 1s ease;
}

/* Home - Startseite */
.contenBlock.home {
	
}

.contentBlock.home .contentLeft,
.contentBlock.home .contentMiddle,
.contentBlock.home .contentRight {
	box-sizing: border-box;
	padding: 10px;
	width: 33.3%;
	float: left;
}

.contentBlock.home .contentBottom {
	box-sizing: border-box;
	margin-top: 10px;
	padding: 10px;
	clear: both;
}

.contentBlock.home .contentLeft img {
	width: 100%;
}

/* Media Cabarets */
.contentBlock.mediaCabarets {
	
}

.contentBlock.mediaCabarets .item {
	clear: both;
	margin-bottom: 10px;
}

.contentBlock.mediaCabarets .item .image {
	width: 245px;
	float: left;
}

.contentBlock.mediaCabarets .item .image img {
	width: 100%;
}

.contentBlock.mediaCabarets .item .text {
	margin-left: 255px;
}

.contentBlock.mediaCabarets .item .mediaDownloads {
	margin-top: 10px;
	margin-bottom: 10px;
}

.contentBlock.mediaCabarets .item .mediaDownloads .mediaDownload {
	margin-right: 5px;
}
