﻿/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
   
   RESET all zuerst einbauen, damit nicht die unterschiedlichen
   Voreinstellungen der Browser genommen werden
   
   h1 für tags
   .klassenname für Klassen damit können alle derselben Klasse beeinflusst werden
   #idname für ID definitionen trifft nur ein element mit der ID
      
_________________________________________________________________
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:normal;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block; }
body {	line-height: 1;}
ol, ul {	list-style: none; }
blockquote, q {	quotes: none; }
blockquote:before, blockquote:after,
q:before, q:after {	content: ''; content: none; }
table {	border-collapse: collapse; border-spacing: 0; }
/* Ende der Voreinstellungen für den Reset
_________________________________________________________________
Parent/Son Beispiele:
#content p {color:red;} Alle p in content werden betroffen
#secton1 ul li alle List items in der Ul von Section 1 betroffen

Ab hier Sonderdefinitionen für die eigentliche Darstellung
_________________________________________________________________
*/
body {background-color:#eeeeee; } /*Generelle Definition für Background */
#wrapper {width:1024px; margin: 0px auto; background-color:#ffffff;}
	#top {background-color:#888888; width:100%; overflow:hidden; border-bottom: 2px #ffffff solid; } /*Overflow für Überlappung unsichtbar*/
		#logo {background-color: #888888; padding:20px; float:left; }
		#social-media {visibility: collapse;float :right; margin: 20px 10px 0 0; } /*Visibility ausgeblendet*/
			#social-media p {color:#ffffff; font-size:11px; margin:4px 10px 4px 0px; }
			#social-media img {width:24px; height:24px; }
			#social-media ul li {display:inline; } /*Dann werden die Bilder nebeneinander dargestellt*/
	#topnav {background-color:#888888; clear: both;}
		#topnav ul {width:100%; float:left; margin:0px; background-color:#888888; border-bottom: 2px #ffffff solid; }/*border gibt den weissen Strich horizontal*/
		#topnav ul li {display:inline; }
		#topnav ul li a {float:left; padding: 10px 20px; }
			/*Linkfarbe anders als andere Farben*/
			#topnav a:link {color:#ffffff; }
			#topnav a:visited {color:#ffffff; }
			#topnav a:active {color:#ffffff; }
			#topnav a:hover {background-color:#CC0000; }
			#topnav a:focus {color:#ffffff; }
	#banner {width: 100%; border-bottom: 2px #ffffff solid; }
		#banner img {width:100%; }
	#subbanner {width:100%; padding:50px 0; color: #333333; font-size:24px; text-align:center; background-color:#bbbbbb; }
	#content {visibility:collapse; height: 0px; }/*Inhalt ausblenden im Moment*/
	#rightside {visibility:collapse; height: 0px; }/*Inhalt ausblenden im Moment*/
	#footer {background-color:#dddddd; clear: both; text-align:center; }
		#footer ul {width:100%; float:left; margin:0px; padding: 5px 0; background-color:#888888;  }/*border-bottom: 1px #ffffff solid; border gibt den weissen Strich horizontal*/
		#footer ul li {display:inline; }
		#footer ul li a {padding: 5px 20px; }
			/*Linkfarbe anders als andere Farben*/
			#footer a:link {color:#ffffff; }
			#footer a:visited {color:#ffffff; }
			#footer a:active {color:#ffffff; }
			#footer a:hover {background-color:#CC0000; }
			#footer a:focus {color:#ffffff; }



