
header h1 {
	font-size: 200%;
}

header h2 {
	font-size: 150%;
}

header nav#main-navigation li a {
    font-size: 125%;
}

header img#logo {
	float: left;
	height: 80px;
	width: 80px;
}

header a#sponsor img {
	margin-bottom: -0.2em;
	height: 1.1em;
	width: auto;
}

header hgroup {
    margin-left: 6em;
}


header nav#main-navigation {
    margin-left: 6em;
}


article section, article.col3 section {
	float: none;
	width: 100%;
	margin-bottom: 2%;
}

article .half-left, article .half-right {
	float: none;
	width: 100%;
	margin-right: 0;
}

article h1 {
	font-size: 200%;
}

article h2 {
	font-size: 125%;
}


aside article h2 {
	font-size: 125%;
	text-transform: none;
}

article h3 {
	font-size: 100%;
	text-transform: uppercase;
}

div#gooding_banner {
	display: none;
}

footer article {
	float: none;
	width: 100%;
}

aside {
	float:none;
	width: 100%;
	margin-left: 0;
	
}

div#main-wrapper aside article {
    margin-bottom: 0;
}

section#main {
	float: none;
	width: 100%;
}


section#legal-advices {
    width: 90%;
}

/*


Media Query Abfragen für verschiedene Ausgabegrößen in der Übersicht

Desktop & Laptops
 
css

1

	

@media only screen and (min-width: 1224px){... }

Große Bildschirme
 
css

1

	

@media only screen and (min-width:1824px){... }

iPads(Portrait)
 
css

1
2
3
4

	

@media only screen and
(min-device-width:768px) and
(max-device-width:1024px) and
(orientation:portrait){... }

iPads (Landscape)
 
css

1
2
3
4

	

@media only screen and
(min-device-width:768px) and
(max-device-width:1024px) and
(orientation: landscape){... }

Smartphones (Landscape & Portrait)
 
css

1
2
3

	

@media only screen and
(min-device-width:320px) and
(max-device-width:480px){... }

Smartphones (Landscape)
 
css

1
2
3

	

@media only screen and
(min-device-width:321px)
{... }

Smartphones (Portrait)
 
css

1
2

	

@media only screen and
(min-width:320px){... }

iPhone 4
 
css

1
2
3
4

	

@media only screen and
(-webkit-min-device-pixel-ratio: 1.5), only screen and
(min-device-pixel-ration: 1.5)
{... }


*/