* {
   padding: 0;
   margin: 0;            /*THIS FIXES POSITIONING PROBLEMS IN IE*/
}

body {
	background: url('images/Hintergrund.jpg');
	font-family: Verdana, Helvetica, courier;
	font-size: 100%
}

div#container {
	position: absolute;
	top: 50%;
	width: 96%; /* MUST BE 100% MINUS THE LEFT AND RIGHT MARGINS */
	height: 650px;
	margin-top: -325px; /* MUST BE HALF OF THE HEIGHT */
	margin-left: 2%;
	margin-right: 2%;
	background: #d8edf6;
}	

/*----------------------------------------------------------------
               STYLES FOR THE TITLE/SLOGAN DIVS
-----------------------------------------------------------------*/

#title {
	position: absolute;
	display: inline; /* PREVENTS OTHER DIVS FROM WRAPPING */
	background: url('images/logo1.png') no-repeat;
	float: left;
	margin: 10px 2%;
	width: 26%;
	height: 620px
}	

#title h1 {
	font-family: trebuchet MS, sans-serif;
	font-size: 20px;
	color: #000588;
	text-align: left;
	margin: 150px 30px 0 0;
}

#title h1 span {
	color: #1A658D;
}

#title h2 {
	font-family: trebuchet MS, sans-serif;
	font-size: 20px;
	color: #000008;
	text-align: left;
	margin: 4px 20px 0 0;
}

/*------------------------------------------------------------------
               STYLES FOR THE NAVIGATION MENU DIV
------------------------------------------------------------------*/

#nav {
	background: url('images/separator1.jpg') no-repeat;
	display: inline;
	position: absolute;
	margin-left: 30%;
	width: 20%;
	height: 100%
}

#nav ul {
	font-size: 18px;
	font-weight: bold;
	list-style: none;
	margin-left: 20px;
	margin-top: 108px; /* DEPENDING ON THE NUMBER OF LINKS IN THE NAVBAR, AND THE SIZE OF THE BACKGROUND IMAGES, YOU MAY NEED TO ADJUST THIS NUMBER TO VERTICALLY CENTER THE NAVBAR */
}

#nav ul li {
	line-height: 40px; /* HEIGHT OF BACKGROUND IMAGE */
	margin-bottom: 5px; /* SPACES OUT LIST ITEMS */
}
#link1 {background: url('images/nav/Stern.gif') no-repeat;}
#link2 {background: url('images/nav/Stern.gif') no-repeat;}
#link3 {background: url('images/nav/Stern.gif') no-repeat;}
#link4 {background: url('images/nav/Stern.gif') no-repeat;}
#link5 {background: url('images/nav/Stern.gif') no-repeat;}
#link6 {background: url('images/nav/Stern.gif') no-repeat;}
#link7 {background: url('images/nav/Stern.gif') no-repeat;}
#link8 {background: url('images/nav/Stern.gif') no-repeat;}
#link9 {background: url('images/nav/Stern.gif') no-repeat;}
#link10 {background: url('images/nav/Stern.gif') no-repeat;}

#nav ul li a:link, #nav ul li a:hover, #nav ul li a:visited {
	display: block; /* THIS MAKES THE ENTIRE LIST ITEM CLICKABLE (NOT JUST TEXT) */
	width: 100%;
	color: #91b9dd;
	text-decoration: none;
	text-indent: 30px; /* ACTS LIKE LEFT PADDING */
}

#nav ul li a:link, #nav ul li a:visited {
	border-right: 5px #91b9dd solid;
}

#nav ul li a:hover {
	border-right: 5px #c0c0c0 solid;
	color: #c0c0c0;
}

#nav ul li a#active {
	border-right: 5px #0c6bab solid;
	color: #0c6bab;
}

/*-----------------------------------------------------------------
                  STYLES FOR THE CONTENT DIV
-----------------------------------------------------------------*/

#content {
	position: absolute;
	display: inline;
	background: url('images/05b.jpg') no-repeat fixed center right; /* POSITION MUST BE CENTER-RIGHT TO SHOW UP CORRECTLY IN FF */
	width: 46%; /* WIDTH = 100% - (MARGIN-RIGHT + MARGIN-LEFT) */
	height: 620px; /* HEIGHT = CONTAINER HEIGHT - (MARGIN-TOP + MARGIN-BOTTOM + BORDER-TOP + BORDER-BOTTOM) */
	border: 2px solid #B2E5FF;
	overflow: auto; margin-left:52%; margin-right:2%; margin-top:10px; margin-bottom:10px
}

#content h1 {
	color: #000000;
	font-size: 22px;
	margin-left: 10px;
}

#content p {
	margin: 5px 5px 0 5px;
	text-align: justify;
	text-indent: 1em;
}
	
#content a {
	color: #000000;
	text-decoration: underline;
	letter-spacing: 0.1em;
}

/*-----------------------------------------------------------------
                  STYLES FOR THE GALLERY IMAGES
-----------------------------------------------------------------*/

.galleryimage {
	float: left; /* THIS LETS THE DIVS DISPLAY AS INLINE, AND WRAP ACCORDING TO THE SCREEN SIZE */
	border: 2px #1A658D solid;
	margin: 5px;
	padding: 2px;
	text-align: center;
	width: 77px;
	height: auto;
	text-decoration: none;
}

.galleryimage a {
	text-decoration: none;
}

.galleryimage img {
	border: none;
}
