@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,400italic);

* {
	margin: 0;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
}

html, body {
    width: 100%;
}
body {
	background-color: #fff;
}

/** Formatierungen **/
h1, h2, h3, h4 {
	margin-bottom: 10px;
	color: #333;
	text-transform: uppercase;
}
h3, h4 { color: #333; }

p {
	font-size: 1em;
	margin-bottom: 5px;
	color: #333;
}

a {
	font-size: 1em;
	color: #333;
	text-decoration: none;
}
	a:hover {
		border-bottom: 1px solid #333;
	}

/** Klassen **/
.clear {
	clear: both;
}

/** Hauptelemente **/
.outer {
	display: table;
	position: absolute;
	height: 100%;
	width: 100%;
}

.middle {
	display: table-cell;
	vertical-align: middle;
}

h1 {
	width: 200px;
	margin: 0 auto;
	color: #ccc;
	text-align: center;
	font-weight: 300;
}


/********
> 1280px
********/
@media(min-width: 1280px) {

}


/********
960px - 1280px
********/
@media(max-width: 1279px) and (min-width: 960px) {

}


/********
768px - 960px
********/
@media(max-width: 959px) and (min-width: 768px) {

}


/********
> 768px
********/
@media(min-width: 768px) {

}


/********
< 768px
********/
@media(max-width: 767px) {

}


/********
< 480px
********/
@media(max-width: 480px) {

}