﻿/* 
--------------> FONTS
*/
	@font-face {
		font-family: 'Impact Label';
		font-style: normal;
		font-weight: normal;
		src: url('../fnt/Impact_Label-webfont.woff') format('woff'),
			 url('../fnt/Impact_Label-webfont.ttf') format('truetype');
	}

/*
--------------> DOCUMENT
*/
	body {
		background: url(../img/vorhang.jpg) repeat-x;
		background-size: 284px 100%;
		height: 100%;
		margin: 0;
		overflow: hidden;
	}

/* 
--------------> IDs
*/
	#impressum {
		color: black;
		left: 50px;
		position: absolute;
		bottom: -100px;
		transform-origin: 50% 100%;
		transition: all 2s ease-out;
		transform: rotate(-90deg);		
	}

	#impressum #schild {
		background-color: white;
		border-radius: 20px;
		padding: 5px;
		box-shadow: 3px 3px 5px gray;
	} 

	#impressum #schild h1 {
		font-family: 'Impact Label';
		font-size: 1.5em;
	}

	#impressum #schild p {
		font-family: Georgia, Times, 'Times NewRoman', serif;
		font-size: 1em;
		line-height: 150%;
	}

	#impressum #schild #close {
		border: 1px solid gray;
		border-radius: 50%;
		cursor: pointer;
		float: right;
		height: 20px;
		position: relative;
		right: 10px;
		top: 15px;
		width: 20px;
	}

	#impressum #stiel {
		background-color: white;
		height: 200px;
		width: 3px;
		position: relative;
		left: 50%;
	}

	#impressumLink {
		bottom: 10px;
		color: white;
		cursor: pointer;
		font-family: 'Impact Label';
		font-size: 1.2em;
		left: 10px;
		position: absolute;	
	}

	#label {
		left: 5%;
		margin-right: 20%;
		position: absolute;
		text-align: right;
		top: 5%;
		width: 350px;
	}

	#label h1 {
		font-family: 'Impact Label';
		font-size: 3em;
		line-height: 100%;
		margin-bottom: 0;
		opacity: 1;
		padding: 0;
		transition: all 1s;
	}

	#label h2 {
		color: white;
		font-family: Georgia, Times, 'Times NewRoman', serif;
		font-size: 1.3em;
		font-weight: bold;
		letter-spacing: 5px;
		line-height: 150%;
		margin-bottom: 0;
		margin-top: 1.5em;
	}

	#label hr {
		background-color: white;
		height: 2px;
		margin-top: .5em;
		opacity: 0.5;
		width: 100%;
	}

	#label p {
		background-color: black;
		color: white;
		font-family: Georgia, Times, 'Times NewRoman', serif;
		line-height: 150%;
		opacity: .5;
		padding: 1em;
	}

	#rss {
		bottom: -60px;
		height: 150px;
		position: absolute;
		right: 0;
		transition: bottom 1s;
		width: 158px;
	}

	#rss:hover {
		bottom: 0;
	}

	#rssBubble {
		bottom: 140px;
		color: white;
		display: none;
		font-family: Helvetica, Arial, sans-serif;
		font-size: .7em;
		font-weight: bold;
		line-height: 100%;
		position: absolute;	
		right: 135px;	
		text-align: right;
		transform: rotate(20deg);	
	}

/* 
--------------> CLASSES
*/
	.w {
		background: white;
	}

	.b {
		background: black;
	}

/* 
--------------> MEDIA: HANDHELD
*/
	@media handheld {
		#rss {
			opacity: 1;
		}
		#rssBubble {
			display: block;
		}
	}