/* CSS Document */

/* ===========================================================================================================
	CSS Standardvorlage
	-------------------
	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 Header
		3.3 Horizontale Navleiste
		3.4 Vertikale Navleiste
		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: Georgia, "Times New Roman", Times, serif;	/* Globale Textformatierung - ====EDIT==== */
    color: #666666; /* Textfarbe ====EDIT==== */
    background: #FFFFFF; /* Hintergrundfarbe ====EDIT==== */
	background-image: url(STYLES/background03.gif);
	background-attachment:fixed;
}




/* ===========================================================================================================
	 2. Text und Überschriften 
   =========================================================================================================== */

p {
	font-size: 0.7em;
	line-height: 1.4em;
	margin: 0.5em 0;
}

h1 
{
font-family: Georgia, "Times New Roman", Times, serif;
text-align:left;
letter-spacing:0.4em;
text-transform: uppercase;
font-size:1.3em;
color:#CCCCCC;
font-style:normal;
font-weight:bold; 
margin-bottom:50px;
}

h2 {

}

h3 {

}


/* ===========================================================================================================
	 3. Seitenstruktur
   =========================================================================================================== */
   

/* =====================================================
	3.1 Wrapper 
======================================================== 
======================================================== */ 

#wrapper /* umfasst alle Inhaltselemente */{
margin: 0 auto;
margin-top: 50px;
width:790px;
text-align:left;
}

#wrapper_content /* umfasst den inneren Bereich - Content */{
margin: 0 auto;
width:790px;
text-align:left;
background-image: url(STYLES/back_mitte03.gif);
background-repeat:repeat-y;
}


/* =====================================================
	3.2 Header 
======================================================== 
======================================================== */ 

#head{
background-image: url(STYLES/header03.gif); /* Bannerbild ====EDIT==== */
background-repeat:no-repeat;
margin:0px;
width:790px;
max-width:790px;
height:218px;
}


/* =====================================================
	3.3 Horizontale Navleiste 
======================================================== 
======================================================== */       
	 
#horizontal_navi{
width:590px;
padding: 0 100px;
height:100px; /* kann auch als Abstandswert zum maincontent-div verwendet werden */
text-align:center;
}

/* Horizontale Liste 
==================================== */  

#horizontal_navi ul{
list-style-type: none;
}

#horizontal_navi li { 
display: inline; 
}

/* === Rollover und Linkfarbe === */ 

#horizontal_navi ul li a  {
font-family:Georgia, "Times New Roman", Times, serif;;
text-decoration: none;
padding: 0.1em 0.3em ;
color: #960221;
background-color: #FFAF08; 
text-transform: uppercase;

}

#horizontal_navi ul li a:hover{
color: #FFFFFF;
/* background-color: #369; */
}

/* /Ende Horizontale Liste 
====================================== */ 



/* =====================================================
	3.4 Vertikale Navleiste (hier Bereich Rechts)
======================================================== 
======================================================== */ 

#vertical_navi{
background-color:#FFFFFF;
margin-left:550px;
width:120px;
padding-left:25px;
}

#vertical_navi ul {
list-style-type: none;
}

#vertical_navi li { 
float:left;
display: inline; 
padding:0;
margin-right:7px; /* Abstand zwischen Bildelementen */
margin-bottom:7px; /* Abstand zwischen Bildelementen */ 
line-height:0px;  /* Abstand zwischen Bildelementen */

}

#vertical_navi li img { 
display:block;  /*bringt bildelemente direkt nebeneinander */ 
border:solid;
border-width:1px;
border-color:#999999;
}

#vertical_navi h1  {
letter-spacing:0.1em;
text-align:right;
padding-right:8px;
}

/* === Rollover und Linkfarbe === */ 

#vertical_navi a  {
text-decoration: none;
padding-right: 1em ;
color: #960221;
/* background-color: #036; */
}

#vertical_navi a:hover{
color: #4C5906;
/* background-color: #369; */
}


/* =====================================================
	3.5 Maincontent
======================================================== 
======================================================== */ 

#maincontent {
float:left; /* Float linkes Element ====EDIT==== */
display: inline;  /*Nötig um den "double-margin" bug im IE zu verhindern */
text-align:left; 
margin-left:120px;
padding-right:30px;
width:400px;
overflow: hidden; /* verhindert "Expanding Box Problem"  Text/Grafiken werden abgeschnitten (Firefox: Text/Grafiken, IE: nur Grafiken s.o.) - */
border-right-style: dashed;
border-right-width:1px;
border-right-color: #CCCCCC;
} 


#maincontent h2 {
font-family: Georgia, "Times New Roman", Times, serif;;
text-align:left;
font-size: 1em;
color: #333333;
font-style:normal;
font-weight: bold;
padding-bottom: 5px;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #FFCC99;
margin-bottom: 15px;
}

#maincontent a  {
text-decoration: none;
color: #960221;
/* background-color: #036; */
}

#maincontent a:hover{
color: #4C5906;
/* background-color: #369; */
}


/* Liste Referenzen 
==================================== */  


.referenzliste-div {
clear:both; /* bringt die Referenzlisten-divs untereinander */
margin-bottom: 60px; /* Abstand Listeneinträge */
}

.referenzliste-div hr {
visibility:hidden; /* unsichtbarer Trennstrich - nur zur Code Strukturierung */
}

.referenzliste-div img {
margin:0px;
border:solid;
border-width:1px;
border-color: #CCCCCC;
margin-bottom: 60px;  /*Abstand Listeneinträge */
}

.referenzliste-left {
float:left;
width:200px;

}

.referenzliste-right {
width:175px;
margin-left:220px;
}


.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(STYLES/footer03.gif); /* Footerbild ====EDIT==== */
background-repeat:no-repeat;
width:535px;
max-width:790px;
text-align: right;
padding-top:30px; /* === positioniert die Inhaltselemente === */ 
padding-right:255px;  /* === positioniert die Inhaltselemente === */ 
height:146px;
} 

#footer p  {
font-family:Georgia, "Times New Roman", Times, serif;;
font-size:0.9em;
color: #000000;
} 

#footer a  {
text-decoration: none;
color: #000000;
padding-right:5px;
}

#footer a:hover{
color: #FF9900;
/* background-color: #369; */
}


/* Allgemeines Layout */

.bold {
font-weight:bold;
}

.clearboth {
clear:both;  /* h1 immer ausserhalb von float  ============= */
}

.tooltip {
text-decoration:none;
border-bottom: 1px dashed #CC3300;
}

.absatz-standard {
text-align:left;
clear:both;
margin-bottom: 50px;
}

/* Blockelemente */

/* Inlineelemente */


