/* CSS Document */
*{

				padding:0; /* Abstände entfernen */

				margin:0;

				}

				

				body{

				font:12px "Trebuchet MS", verdana, arial, sans-serif;

				/* Für Zentrierung in älteren Browsern wichtig: */

				text-align: center; 

				background: #B5CCDF;

				}

				

				/* Allgemeine Formatierungen */

				

				h2{

				margin: 1em 0;

				font-size: 16px;

				text-transform: uppercase;

				border-left: 5px solid orange;

				padding-left: 8px;

				line-height: 18px;  /* Höhe des linken Rands */

				}

				

				/* Hauptcontainer */

				

				#box{
				
				width: 900px;

				margin-top: 20;
				
				margin-left: auto;  /* Zentrierung */
				
				margin-right: auto;

				text-align: center;

				background: #dddddd;

				border: 5px solid white;

				border-bottom: none;
				
				
				}

				

				/* Header */

				

				#header{

				background: #ffcc99;

				height: 120px;

				color:black;

				line-height: 70px; /* vertikale Ausrichtung */

				padding-left: 30px;

				font-size: 25px;

				text-transform: uppercase;

				text-align: left;

				}

				#header span{

				display: block;

				color: white;

				font-size: 12px;

				text-transform: none;

				margin-top: -45px;   /* nach oben verschieben */

				font-weight: normal;

				}

				

				/* Navigation */

				

				#navigation{

				list-style: none;

				width: 900px;

				float: left;

				height: 30px;

				background: black;

				}

				#navigation li{

				float: left;

				}

				#navigation li a{

				display: block;

				height: 30px;

				

				text-decoration: none;

				line-height: 30px;

				float: left;

				background: black;

				color: white;

				}

				#navigation li a:hover{

				background: white;

				color: black;

				}
				
				
			/* Navigation2 */

				

				#navigation2{

				list-style: none;

				width: 650px;

				float: right;

				height: 15px;

				background: none;

				}

				#navigation2 li{

				float: right;

				}

				#navigation2 li a{

				display: block;

				height: 15px;

				

				text-decoration: none;

				line-height: 15px;

				float: right;

				background: #999999;

				color: white;

				}

				#navigation2 li a:hover{

				background: white;

				color: black;

				}

				

				/* Inhalt */

				

				#inhalt{

				padding: 10px 20px; /* Innenabstand */

				text-align: left;  /* wichtig */

				clear: left; /* wichtig */

				min-height: 600px; 

				}

				

				/* Footer */

				

				#footer{

				height: 30px;

				line-height: 30px;

				background: black;

				color: white;

				text-align: center;

				}

				#footer span a{

				float: right;

				margin: -30px 10px 0 0;

				color: orange;

				}

				#footer span a:hover{

				color: white;

				}
				
				#gallery{
				
				background-color: #cccccc;
				}

