#body-wrapper {
	background-color: #fff; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	width: 948px;
	padding: 0 1px 0 1px;
	
	/* Spaltentrenner */
	background: #fff url('images/background.gif') repeat-y;
	background-position: 0px 0;
	/* Zentrierung */
	margin: 0 auto 15px auto;
	position: absolute;
    left: 0;
    right: 0; 
}

#body-wrapper #header {
	line-height: 15px;
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	color: #333333;
	height: 188px;
	text-align: right;
	
	vertical-align: bottom;
	background: #fff url('images/header-background.jpg') no-repeat top left;
	
	/* Rand */
	border-bottom: 1px solid #ccc;
	
}

#body-wrapper #navigation {
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	height: 17px;
	padding: 5px 0 5px 0;
	margin: 0;
	background: #fff;
	
	/* Rand */
	border-bottom: 1px solid #ccc;
}

#body-wrapper #content-wrapper {
	background: transparent url('images/content-wrapper-background.jpg') no-repeat top left;
}

/* Rechte Spalte (Menü & Adresse, wobei die Adresse nur scheinbar in der Spalte enthalten ist!) */
#body-wrapper #content-wrapper #sub-navigation {
	float: left;
	width: 180px;
	text-align: left;
	/* Die 124px Padding unten verhindern, dass das Menü und die Adresse überlappen wenn der Inhalt zu kurz ist. */
	padding: 10px 0 124px 10px;
	margin: 0;
  display: inline;
}
#body-wrapper #content-wrapper #sidebar {
	float: right; 
	width: 198px;
	text-align: left;
	text-decoration: none;
	padding: 14px 10px 124px 10px;
	margin: 0;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#body-wrapper #content-wrapper #content {
	padding: 10px; 
	margin: 0 219px 0 221px;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
.clear-float {
	clear: both;
}

#body-wrapper #footer {
	padding: 10px; 

	background: #fff;
	
	/* Rand */
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}

#top-bar {
	padding: 12px 10px 12px;
	text-align: right;	
}

#address {
	position: absolute;
	bottom: 33px;
	left: 0;
	padding:10px;
	width: 178px;
	
	/* Rand */
	/*border-top: 1px solid #ccc; */
}

#logo {
	position: absolute;
	bottom: 37px;
	right: 10px;
	width: 200px;
	height: 67px;
	background: #ddd url('images/logo.jpg') no-repeat top center;
}