html
{
	background-image: url(../img/background.jpg);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-attachment: fixed;
	height: 100%;
	min-height: 100%;
}

body
{
	position: relative;
	height: 100%;
	min-height: 100%;
	width: 100%;
	margin: 0px;
	font-family: Candara;
}

form
{
	position: relative;
	margin-left: auto;
	margin-right: auto;
	width: 650px;
}

input, textarea
{
	width: 600px;
	height: 20px;
	padding: 4px;
	margin-left: auto;
	margin-right: auto;
}

textarea
{
	height: 200px;
}

#submit
{
	width: 600px;
	height: 2em;
	margin-left: auto;
	margin-right: auto;
}

#container
{
	display: table;
	min-height: 100%;
	height: auto;
	width: 1044px;
	overflow: hidden;
	margin: 0px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

#site
{
	display: table-cell;
	min-height: 100%;
	height: auto;
	width: 1024px;
	position: relative;
	overflow: hidden;
	margin: 0px;
	text-align: center;
	background: rgba(255,255,255,0.82);
}

#borderLeft
{
	display: table-cell;
	height: 100%;
	width: 10px;
	position: relative;
	margin: 0px;
	background: linear-gradient(to left, rgba(255,255,255,0.5), rgba(255,255,255,0));
}

#borderRight
{
	display: table-cell;
	height: 100%;
	width: 10px;
	position: relative;
	margin: 0px;
	background: linear-gradient(to right, rgba(255,255,255,0.5), rgba(255,255,255,0));
}

#header
{
	width: 100%;
	height: 70px;
	text-align: center;
	padding-top: 30px;
	font-size: 42px;
}

#navigation
{
	width: 100%;
	height: 33px;
	text-align: center;
}

#breadcrumb
{
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	height: auto;
	width: 100%;
	overflow: hidden;
	text-align: left;
	padding: 5px;
}

#inhalt
{
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	height: 100%;
	width: 100%;
	overflow: hidden;
	text-align: left;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 50px;
	font-family: 1em;
}

#footer
{
	width: 100%;
	height: 30px;
	position: absolute;
	bottom: 0;
	overflow: hidden;
}

#by
{
	width: 502px;
	height: 100%;
	float: left;
	text-align: left;
	padding: 5px;
	position: relative;
}

#backgroundBy
{
	float: left;
	height: 100%;
	width: 502px;
	text-align: right;
	padding: 5px;
	position: relative;
}

.menu 
{
	margin: 0px;
	padding: 0px;
	height: inherit;
	list-style: none;
}

.menu li 
{
	float: left;
	width: 16.666%;
	height: inherit;
	position: relative;
}

.menu li a 
{
	background: linear-gradient(rgb(135,0,150), black);
	color: #FFF;
	display: block;
	padding: 7px 8px;
	text-decoration: none;
	border-bottom: 2px solid rgb(250,200,0);
}

.menu li a:hover 
{
	color: #FFF;
	background: linear-gradient(black, rgb(135,0,150));
}

/*=== submenu ===*/

.menu ul {
	display: none;
	position: relative;
	margin-left: 0px;
	list-style: none;
	padding: 0px;
}

.menu ul li {
	width: 100%;
	float: left;
}

.menu ul a {
	display: block;
	height: auto;
	padding: 7px 8px;
	color: #fff;
	text-decoration: none;
	border-bottom: none;
}

.menu ul li a:hover {
	color: #FFF;
	border-bottom: 2px solid rgb(250,200,0);
}

.ueberschrift
{
	font-size: 1.2em;
	font-style: italic;
	text-decoration: underline;
}

.mobile
{
	display: none;
}

#homeImg
{
	float: right;
	width: 300px;
	height: auto;
	overflow: hidden;
	margin-left: 20px;
	margin-bottom: 20px;
}

.license-table {
	width: 100%;
	border-collapse: collapse;
}

.license-table tr:nth-child(odd) {
	background: rgba(200,200,200,0.5);
}

@media (max-device-width: 480px) and (orientation: landscape)
{
	html
	{
		background-image: url(../img/backgroundMobile.jpg);
		background-position: center;
		background-size: 100% auto;
		background-repeat: no-repeat;
		background-attachment: fixed;
		width: 100%;
	}
	
	body
	{
		position: relative;
		height: 100%;
/* 		min-height: 100%; */
		width: 100%;
		margin: 0px;
		font-family: Candara;
	}
	
	form
	{
		position: relative;
		width: 100%;
	}

	input, textarea
	{
		width:100%;
		height: 2em;
		padding: 4px;
		font-size: 2em;
		box-sizing: border-box;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
	}

	textarea
	{
		height: 200px;
	}

	#submit
	{
		width: 100%;
		height: 3em;
	}

	#container
	{
		display: table;
		min-height: 100%;
		height: auto;
		width: 100%;
		overflow: hidden;
		margin: 0px;
		position: relative;
	}

	#site
	{
		display: table-cell;
		min-height: 100%;
		height: auto;
		width: 90%;
		position: relative;
		overflow: hidden;
		margin: 0px;
		text-align: center;
		background: rgba(255,255,255,0.82);
	}

	#borderLeft
	{
		display: table-cell;
		height: 100%;
		width: 5%;
		position: relative;
		margin: 0px;
		background: linear-gradient(to left, rgba(255,255,255,0.5), rgba(255,255,255,0));
	}

	#borderRight
	{
		display: table-cell;
		height: 100%;
		width: 5%;
		position: relative;
		margin: 0px;
		background: linear-gradient(to right, rgba(255,255,255,0.5), rgba(255,255,255,0));
	}

	#header
	{
		width: 100%;
		height: 2.5em;
		text-align: center;
		padding-top: 0.5em;
		font-size: 4em;
		padding-bottom:0.5em;
	}
	
	#menuMobile
	{
		font-size: 2em;
		padding: 7px 0px;
		border-bottom: 2px solid rgb(250,200,0);
		color: #FFF;
		background: linear-gradient(rgb(135,0,150), black);
		padding: 7px 8px;
		text-decoration: none;
	}

	#navigation
	{
		display: none;
		width: 100%;
		height: auto;
		overflow: hidden;
		text-align: center;
	}

	#breadcrumb
	{
		box-sizing: border-box;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		height: auto;
		width: 100%;
		overflow: hidden;
		text-align: left;
		padding: 5px;
		font-size: 1.5em;
	}

	#inhalt
	{
		box-sizing: border-box;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		height: 100%;
		width: 100%;
		overflow: hidden;
		text-align: left;
		padding-left: 20px;
		padding-right: 20px;
		padding-bottom: 50px;
		font-family: 1em;
	}

	#footer
	{
		width: 100%;
		height: 30px;
		position: absolute;
		bottom: 0;
		overflow: hidden;
	}

	#by
	{
		box-sizing: border-box;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		width: 50%;
		height: 100%;
		float: left;
		font-size: 1em;
		text-align: left;
		padding: 5px;
		position: relative;
	}

	#backgroundBy
	{
		box-sizing: border-box;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		float: left;
		height: 100%;
		width: 50%;
		text-align: right;
		font-size: 1em;
		padding: 5px;
		position: relative;
	}

	.menu 
	{
		margin: 0px;
		padding: 0px;
		height: inherit;
		list-style: none;
	}

	.menu li 
	{
		float: left;
		width: 100%;
		height: inherit;
		position: relative;
	}

	.menu li a 
	{
		background: linear-gradient(rgb(135,0,150), black);
		color: #FFF;
		font-size: 2em;
		display: block;
		padding: 7px 8px;
		text-decoration: none;
		border-bottom: 2px solid rgb(250,200,0);
	}

	.menu li a:hover 
	{
		border-bottom: 2px solid rgb(0,200,0);
		color: #FFF;
		background: linear-gradient(black, rgb(135,0,150));
	}

	/*=== submenu ===*/

	.menu ul {
		display: none;
		position: relative;
		margin-left: 0px;
		list-style: none;
		padding: 0px;
	}

	.menu ul li {
		width: 100%;
		float: left;
	}

	.menu ul a {
		display: block;
		height: auto;
		padding: 7px 8px;
		color: #fff;
		text-decoration: none;
		border-bottom: none;
	}

	.menu ul li a:hover {
		border-top: none;
		color: #FFF;
	}

	.ueberschrift
	{
		font-size: 1.6em;
		font-style: italic;
		text-decoration: underline;
	}

	.embeddedImg
	{
		float: left;
		width: 256px;
		height: auto;
		overflow: hidden;
		margin-right: 5px;
		margin-bottom: 5px;
	}
	
	.mobile
	{
		display: block;
	}
}

@media (max-device-width: 480px) and (orientation: portrait)
{
	html
	{
		background-image: url(../img/backgroundMobile.jpg);
		background-position: center;
		background-size: auto 100%;
		background-repeat: no-repeat;
		background-attachment: fixed;
		width: 100%;
	}
	
	body
	{
		position: relative;
		height: 100%;
/* 		min-height: 100%; */
		width: 100%;
		margin: 0px;
		font-family: Candara;
	}
	
	form
	{
		position: relative;
		width: 100%;
	}

	input, textarea
	{
		width:100%;
		height: 2em;
		padding: 4px;
		font-size: 2em;
		box-sizing: border-box;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
	}

	textarea
	{
		height: 200px;
	}

	#submit
	{
		width: 100%;
		height: 3em;
	}

	#container
	{
		display: table;
		min-height: 100%;
		height: auto;
		width: 100%;
		overflow: hidden;
		margin: 0px;
		position: relative;
	}

	#site
	{
		display: table-cell;
		min-height: 100%;
		height: auto;
		width: 90%;
		position: relative;
		overflow: hidden;
		margin: 0px;
		text-align: center;
		background: rgba(255,255,255,0.82);
	}

	#borderLeft
	{
		display: table-cell;
		height: 100%;
		width: 5%;
		position: relative;
		margin: 0px;
		background: linear-gradient(to left, rgba(255,255,255,0.5), rgba(255,255,255,0));
	}

	#borderRight
	{
		display: table-cell;
		height: 100%;
		width: 5%;
		position: relative;
		margin: 0px;
		background: linear-gradient(to right, rgba(255,255,255,0.5), rgba(255,255,255,0));
	}

	#header
	{
		width: 100%;
		height: 2.5em;
		text-align: center;
		padding-top: 0.5em;
		font-size: 4em;
		padding-bottom:0.5em;
	}
	
	#menuMobile
	{
		font-size: 2em;
		padding: 7px 0px;
		border-bottom: 2px solid rgb(250,200,0);
		color: #FFF;
		background: linear-gradient(rgb(135,0,150), black);
		padding: 7px 8px;
		text-decoration: none;
	}

	#navigation
	{
		display: none;
		width: 100%;
		height: auto;
		overflow: hidden;
		text-align: center;
	}

	#breadcrumb
	{
		box-sizing: border-box;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		height: auto;
		width: 100%;
		overflow: hidden;
		text-align: left;
		padding: 5px;
		font-size: 1.5em;
	}

	#inhalt
	{
		box-sizing: border-box;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		height: 100%;
		width: 100%;
		overflow: hidden;
		text-align: left;
		padding-left: 20px;
		padding-right: 20px;
		padding-bottom: 50px;
		font-family: 1em;
	}

	#footer
	{
		width: 100%;
		height: 30px;
		position: absolute;
		bottom: 0;
		overflow: hidden;
	}

	#by
	{
		box-sizing: border-box;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		width: 50%;
		height: 100%;
		float: left;
		font-size: 1em;
		text-align: left;
		padding: 5px;
		position: relative;
	}

	#backgroundBy
	{
		box-sizing: border-box;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		float: left;
		height: 100%;
		width: 50%;
		text-align: right;
		font-size: 1em;
		padding: 5px;
		position: relative;
	}

	.menu 
	{
		margin: 0px;
		padding: 0px;
		height: inherit;
		list-style: none;
	}

	.menu li 
	{
		float: left;
		width: 100%;
		height: inherit;
		position: relative;
	}

	.menu li a 
	{
		background: linear-gradient(rgb(135,0,150), black);
		color: #FFF;
		font-size: 2em;
		display: block;
		padding: 7px 8px;
		text-decoration: none;
		border-bottom: 2px solid rgb(250,200,0);
	}

	.menu li a:hover 
	{
		border-bottom: 2px solid rgb(0,200,0);
		color: #FFF;
		background: linear-gradient(black, rgb(135,0,150));
	}

	/*=== submenu ===*/

	.menu ul {
		display: none;
		position: relative;
		margin-left: 0px;
		list-style: none;
		padding: 0px;
	}

	.menu ul li {
		width: 100%;
		float: left;
	}

	.menu ul a {
		display: block;
		height: auto;
		padding: 7px 8px;
		color: #fff;
		text-decoration: none;
		border-bottom: none;
	}

	.menu ul li a:hover {
		border-top: none;
		color: #FFF;
	}

	.ueberschrift
	{
		font-size: 1.6em;
		font-style: italic;
		text-decoration: underline;
	}

	.embeddedImg
	{
		float: left;
		width: 256px;
		height: auto;
		overflow: hidden;
		margin-right: 5px;
		margin-bottom: 5px;
	}
	
	.mobile
	{
		display: block;
	}
}