/* CSS Document */

/* ===========================================================================================================
	CSS Standardvorlage - Columns
	-------------------
	Author: Andreas Berg
	Date: 2007/01
	Website: www.brainticket.de
	Credits to: www.positioniseverything.net, www.yaml.de, www.websemantics.co.uk
   =========================================================================================================== */




/* ===========================================================================================================
	I.) Allgemeine Styles 
	-----------------
	1. Browserspezifika
	2. Text und Überschriften
	3. Seitenstruktur
		3.1 Wrapper
		3.2 Columns
		3.3 Navleisten
		3.4 Images
		3.5 Maincontent
		3.6 Footer
		
   =========================================================================================================== */


/* ===========================================================================================================
	 1. Browserspezifika
   =========================================================================================================== */
   

* { margin:0; padding:0; } /* Innen- und Außenabstände aller HTML-Elemente werden auf null gesetzt */
option {padding-left: 0.4em} /* Wiederherstellung Standardwerte für <select> */
html, body {height:100%} /* Berücksichtigung von Höhenangaben in Prozentwerten */
fieldset, img, a img { border:0; } /* Rahmen für fieldset und Image auf null */
select, input, textarea { font-size: 99% } /* Korrektur Schriftgrößen für Safari */
hr.clearing {height: 0;clear: both; visibility:hidden;} /* wird benötigt um Hintergrundbild des Containers auch bei float elementein in Firefox anzuzeigen */

body {
    min-height: 101%; /* Firefox vertikaler Scrollbalken */
    font-size: 100.01%; /* em für IE und Opera */
    position: relative; /* Resize bugfix */
	text-align: center; /* in IE zentrieren */
	/*word-wrap: break-word;  erzwingt bei zu langen Texten Umbruch "Expanding Box Problem" (nur IE)- bei Grafiken: "overflow: hidden;" verwenden s.u. */
	
	font-family:Verdana, Arial, Helvetica, sans-serif; /* Globale Textformatierung - ====EDIT==== */
    color: #333333; /* Textfarbe ====EDIT==== */
	background-image: url(background_verlauf.gif);
	background-repeat: repeat-x;
    background-color: #000000; /* Hintergrundfarbe ====EDIT==== */
	background-attachment:fixed;
}




/* ===========================================================================================================
	 2. Text und Überschriften 
   =========================================================================================================== */

p {
	font-size: 0.7em;
	line-height: 1.4em;
	margin: 0.5em 0;
}

h1 
{
font-family: Arial, Helvetica, sans-serif;
letter-spacing:0.2em;
text-transform: uppercase;
font-size:1.2em;
color:#CCCCCC;
font-style:normal;
font-weight:bold; 
margin-bottom:40px;
}

h2 {

}

h3 {

}


/* ===========================================================================================================
	 3. Seitenstruktur
   =========================================================================================================== */
   

/* =====================================================
	3.1 Wrapper 
======================================================== 
======================================================== */ 

#wrapper /* umfasst alle Inhaltselemente */{
background: url(col_trans.gif);
margin: 0 auto;
margin-top: 50px;
width:900px;
text-align:left;
}



/* =====================================================
	3.2 Columns 
======================================================== 
======================================================== */ 

#col_eins /* Column 1 - Navi */{
float:left;
margin:0px;
width:425px;
display: inline; 
}

#col_zwei /* Column 2 - Content */{
margin: 0 auto;
float:left;
width:460px;
margin-top: 120px;
text-align:left;
display: inline; 
}




/* =====================================================
	3.3 Navleisten 
======================================================== 
======================================================== */       
	 
#navi_eins {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 1em;
	float:left;
	width:165px;
	margin-top: 23px;
	line-height: 1.5em;
	text-align:right;
	display: inline;

}

#navi_eins ul li a {
list-style-type:none;
text-decoration:none;
padding: .5em .5em;
}


/* === Rollover und Linkfarbe === */ 

#navi_eins ul li a  {
text-decoration: none;
color: #FFFFFF;

}

#navi_eins ul li a:hover{
color: #CCCCCC;
}

#navi_eins ul {
list-style-type:none;
}

/* /Ende Nav Eins
====================================== */ 

#navi_zwei {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	float:left;
	width:250px;
	margin-top: 23px;
	line-height: 1.6em;
	text-align:left;
	display: inline;

}


#navi_zwei ul li a {
list-style-type:none;
text-decoration:none;
padding: .5em .5em;
}



/* === Rollover und Linkfarbe === */ 

#navi_zwei ul li a  {
text-decoration: none;
color: #FFFFFF;
}

#navi_zwei ul li a:hover{
color: #CC0000;
}

#navi_zwei ul {
list-style-type:none;
}

#navi_zwei .active {
color:#FFFFFF;
font-weight:bold;
}




/* /Ende Navi Zwei
====================================== */ 

/* =====================================================
	3.4 Images
======================================================== 
======================================================== */ 

#images{

margin-left:607px;
padding-top:70px;
width:150px;
text-align:left;
}

#images ul {
list-style-type: none;
}

#images li { 
float:left;
display: inline; 
padding:0;
margin-right:10px; /* Abstand zwischen Bildelementen */
margin-bottom:10px; /* Abstand zwischen Bildelementen */ 
line-height:0px;  /* Abstand zwischen Bildelementen */

}

#images li img { 
display:block; /* bringt bildelemente direkt nebeneinander */ 
border:solid;
border-width:1px;
border-color:#999999;
}

/* === Rollover und Linkfarbe === */ 

#images a  {
text-decoration: none;
padding-right: 1em ;
color: #960221;
/* background-color: #036; */
}

#images a:hover{
color: #4C5906;
/* background-color: #369; */
}


/* =====================================================
	3.5 Maincontent
======================================================== 
======================================================== */ 

#maincontent {
display: inline;  /*Nötig um den "double-margin" bug im IE zu verhindern */
text-align:left;
width:460px;
max-width:460px;
overflow: hidden; /* verhindert "Expanding Box Problem"  Text/Grafiken werden abgeschnitten (Firefox: Text/Grafiken, IE: nur Grafiken s.o.) - */
} 


#maincontent h2 {
font-family: Arial, Helvetica, sans-serif;
font-size: 1em;
color: #333333;
font-style:normal;
font-weight:normal;
padding-top: 30px;
padding-bottom: 5px;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #465E75;
margin-bottom: 10px;
}

#maincontent h3 {
font-family: Arial, Helvetica, sans-serif;
font-size: 0.7em;
text-transform: uppercase;
color: #333333;
font-style:normal;
font-weight:bold;
padding-top: 10px;
margin-bottom: 5px;
}

#maincontent a  {
text-decoration: none;
color: #960221;
/* background-color: #036; */
}

#maincontent a:hover{
color: #4C5906;
/* background-color: #369; */
}

#maincontent li {
list-style:square;
font-size: 0.7em;
line-height: 1.4em;
margin-left: 2em;
margin-right: 1em;
}


/* Liste Referenzen 
==================================== */  


.referenzliste-div {
clear:both; /* bringt die Referenzlisten-divs untereinander */
margin-bottom: 60px; /* Abstand Listeneinträge */
}

.referenzliste-div hr {
display:none; /* unsichtbarer Trennstrich - nur zur Code Strukturierung */
}

.referenzliste-div img {
margin:0px;
border:solid;
border-width:1px;
border-color:#999999;
margin-bottom: 60px; /* Abstand Listeneinträge */
}

.referenzliste-left {
float:left;
width:200px;
}

.referenzliste-right {
width:260px;
margin-left:230px;
}


.referenzliste-right ul {
list-style-type: square;
font-size: 0.8em;
line-height: 1.4em;
margin: 0.5em 0;
padding-left:15px;
}



.referenzliste-liste {
margin-top:75px;
clear:both;
}

.referenzliste-liste ul {
list-style-type: square;
}



/* === Rollover und Linkfarbe === */ 

.referenzliste-div a  {
text-decoration: none;
color: #960221;
/* background-color: #036; */
}

.referenzliste-div a:hover{
color: #4C5906;
/* background-color: #369; */
}

/* /Ende Liste Refernzen
====================================== */ 



/* =====================================================
	3.6 Footer
======================================================== 
======================================================== */ 

#footer{
/* === Hält den footer unten === */ 
clear: both;
position:relative;
top:0px;
background-image: url(footer03.gif);
background-repeat:no-repeat;
width:900px;
max-width:900px;
text-align:right;
height:200px;
} 

#content_footer  {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size:0.7em;
color: #999999;
padding-right:10px;
padding-top:130px;
} 

#footer a  {
text-decoration: none;
color: #CC0000;
/* background-color: #036; */
}

#footer a:hover{
color: #999999;
/* background-color: #369; */
}


/* Allgemeines Layout */

.bold {
font-weight:bold;
}

.current {
font-weight:bold;
}


.logo {
margin-left:165px;
margin-top: 7px;
}

.clearboth {
clear:both;  /* h1 immer ausserhalb von float  ============= */
}

.tooltip {
text-decoration:none;
border-bottom: 1px dashed #CC3300;
}

.absatz-standard {
clear:both;
margin-bottom: 50px;
}

/* Blockelemente */

/* Inlineelemente */

