@charset "UTF-8";
/* CSS Document */

/*	1. wrapper
	2. header
	3. navigation
	4. sidebar_left
	5. content 
	6. footer
*/	

/*------------- CSS RESET --------------------------------------------------------*/	

*{
/*	Standard Reset CSS 								*/
/*	Name: reset.css									*/
/*	Based on:										*/
/*		Credit: Eric Meyer							*/
/*		http://meyerweb.com/eric/tools/css/reset/	*/
/*		v1.0 | 20080212								*/

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, font, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}

del {
	text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
}

/*------------------------------------------------------------------------------*/

body {
	background-color:#963;
	background:url(bilder/bg_all.jpg); 
	}

a {
	color:#000;
	text-decoration:none;
	}

a:hover {
	/*background-color:#FFF;*/
	color:#903;
	}
/*------------- WRAPPER --------------------------------------------------------*/	

#wrapper {
	width:1200px;
	height:1000px;
	margin:0px auto;
	background:#fff url(bilder/bg.jpg) no-repeat;
	position:relative;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size:14px;
}

/*------------------------------------------------------------------------------*/

/*------------- HEADER --------------------------------------------------------*/	

#header {
	-moz-background-clip:border;
	-moz-background-inline-policy:continuous;
	-moz-background-origin:padding;
	background:transparent;
	height:110px;
	padding:10px;
}

/*------------------------------------------------------------------------------*/

/*------------- NAVIGATION --------------------------------------------------------*/	

#navbar {	
	width:1200px;
	padding:0px;
	position:relative;
	z-index:100;
}

#vertical-navigation { 
	list-style: none; 
	margin: 0px 0px 20px 0px;
	/*_margin: 0px 0px 150px 0px;*/
	padding: 130px 0px 0px 310px;
	font-size: 1.2em;
	float: left;
	position: relative;
}


/* CSS for each Parent Item */
#vertical-navigation li {
	float: left; 
	position: relative;
}

#vertical-navigation li a {
	float: left;
	display: block;
	padding: 10px;
	text-decoration: none;
	color: #C96;
	text-transform: uppercase;
	margin-right: 0px;
}

/* 
Change background color and font color 
of parent items when mouse hover 
*/
#vertical-navigation li:hover a,
#vertical-navigation li a:hover {
	background:#C96;
	color:#900;	
}

/* 
Applie to group of Child Items
Each Child Item will be invisible by default
*/
#vertical-navigation ul {
	display: none;
}

/* Each Child Item will be visible if mouse hover */
#vertical-navigation li:hover ul {
	display: block;
}

#vertical-navigation ul {
	float: none;
	position: absolute;
	list-style: none;
	margin: 0;
	padding: 0;
	top: 1.8em;
	left: 0;
}

#vertical-navigation ul li {
	float: none;
	clear: none;
	margin: 0;
	padding: 0px 0px 0px 0px;
	width: 230px;
	color: #000;
	background:#C96;
}

/* 
Reset and re style link of each child item
*/
#vertical-navigation li:hover ul li a,
#vertical-navigation ul li a {
	line-height: 200%;
	display: block;
	padding: 0 0 0 10px;
	float: none;
	text-transform: none;
	color: #000;
	background:#C96;
}

#vertical-navigation li:hover ul li a:hover,
#vertical-navigation ul li a:hover {
	background:transparent;
	color: #900;
}

/*------------------------------------------------------------------------------*/

/*------------- CONTENT --------------------------------------------------------*/	

#content {
	position:relative;
	/*background-color:#C96;*/
	float:left;
	margin:0px 0px;
	color:#000;
	}

/*------------------------------------------------------------------------------*/

/*------------- SIDEBAR_LEFT --------------------------------------------------------*/	

#left_col {
	width:250px;
	background:transparent;
	padding:0px 0px 10px 250px;
	}

/*------------------------------------------------------------------------------*/

/*------------- SIDEBAR_RIGHT --------------------------------------------------------*/	

#right_col {
	width:470px;
	background:#C96;;
	position:absolute;
	overflow:auto;
	left: 480px;
	top: 0px;
	bottom:-80px;
	padding:0px;
	margin:0px;
	}
	
.content_right_col {
	position:relative;
	background-color:#C96;
	margin:10px 20px 0px 0px;
	padding:0 15px 10px 15px;
	text-align: justify;
	line-height:150%;
	}
	
.headline {
	margin:0px 0px 20px 0px;
	font-size:18px;
	text-align:left;
	
	}

/*------------------------------------------------------------------------------*/

/*------------- SIDEBAR_MIDDLE --------------------------------------------------------*/	

#middle_col {
	width:700px;
	height:381px;
	background:#C96;
	position:relative;
	overflow:auto;
	left: 250px;
	top: 0px;
	_top: 30px;
	bottom:0px;
	margin:0px 0 0 0;
	}

.content_middle_col {
	position:relative;
	background-color:#C96;
	margin:0px 0px 50px 0px;
	padding:0px 30px 10px 15px;
	text-align: justify;
	line-height:150%;
	}
	
.titel_list {
	clear:both;
	width:450px;
	}

.img_titel {
	float:left;
	margin:10px 0 0 20px;
	}
	
.text_titel {
	float:right;
	margin:10px 0 0 0px;
	}	
	
.link_list li{
	list-style-type:none;
	list-style-position:inherit;
	}

/*------------------------------------------------------------------------------*/


/*------------- FOOTER --------------------------------------------------------*/	

#footer {
	height:25px;
	position:absolute;
	top:620px;
	/*clear:both;*/
	background:transparent;
	padding:0px 0px 0px 550px;
	margin-top:150px;
	font-size:13px;
	color:#C96;
	font-weight:bold;
	
	/*clear:both;
	position:relative;
	/*height:25px;*/
	/*position:absolute;
	top:620px;*/
	/*clear:both;*/
	/*background:transparent;
	padding:100px 0px 0px 550px;
	/*_margin:150px 0 0 0;*/
	/*font-size:13px;
	color:#C96;
	font-weight:bold;*/
	}

/*------------------------------------------------------------------------------*/

