/* 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:"Trebuchet MS",Verdana, Arial, sans-serif;	/* Globale Textformatierung - ====EDIT==== */
    color: #666666; /* Textfarbe ====EDIT==== */
    background: #e5e5e5; /* Hintergrundfarbe ====EDIT==== */
}




/* ===========================================================================================================
	 2. Text und Überschriften 
   =========================================================================================================== */

p {
	font-size: 0.8em;
	line-height: 1.4em;
	margin: 0.5em 0;
}

h1 
{
font-family: "Courier New", Courier, monospace;
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 */{
background-image:url(IMG/column01.gif);
background-color:#FFFFFF;
margin: 0 auto;
margin-top: 50px;
width:780px;
text-align:left;
}


/* =====================================================
	3.2 Header 
======================================================== 
======================================================== */ 

#head{
background-image: url(STYLES/header02.jpg); /* Bannerbild ====EDIT==== */
background-color:#FFFFFF;
margin:0px;
width:780px;
max-width:780px;
height:180px;
}


/* =====================================================
	3.3 Horizontale Navleiste 
======================================================== 
======================================================== */       
	 
#horizontal_navi{
background-color:#FFFFFF;
width:730px;
margin-left: 50px;
height:100px; /* kann auch als Abstandswert zum maincontent-div verwendet werden */
}

/* Horizontale Liste 
==================================== */  

#horizontal_navi ul{
list-style-type: none;
}

#horizontal_navi li { 
display: inline; 
}

/* === Rollover und Linkfarbe === */ 

#horizontal_navi ul li a  {
font-family:"Courier New", Courier, monospace;
text-decoration: none;
font-size: 1em;
/*text-transform: uppercase;*/
padding-right: 1em ;
color: #4C5906;
/* background-color: #036; */
}

#horizontal_navi ul li a:hover{
color: #960221;
/* background-color: #369; */
}

/* /Ende Horizontale Liste 
====================================== */ 



/* =====================================================
	3.4 Vertikale Navleiste (hier Bereich Rechts)
======================================================== 
======================================================== */ 

#vertical_navi{
background-color:#FFFFFF;
margin-left:575px;
width:150px;
padding-left:25px;
}

#vertical_navi ul {
list-style-type: none;
}

#vertical_navi 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 */

}

#vertical_navi li img { 
display:block; /* bringt bildelemente direkt nebeneinander */ 
border:solid;
border-width:1px;
border-color:#999999;
}

/* === 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 {
background-color:#FFFFFF;
float:left; /* Float linkes Element ====EDIT==== */
display: inline;  /*Nötig um den "double-margin" bug im IE zu verhindern */
text-align:left; 
margin-left:50px;
width:500px;
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-bottom: 5px;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #4C5906;
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 {
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(STYLES/footer02.jpg); /* Footerbild ====EDIT==== */
background-color:#FFFFFF;
width:750px;
max-width:750px;
text-align:right;
padding-top:95px;
padding-right:30px;
height:80px;
} 

#footer p  {
font-family:"Trebuchet MS",Verdana, Arial, sans-serif;
font-size:0.9em;
color: #FFFFFF;
background-color: #CC6600;
} 

#footer a  {
text-decoration: none;
color: #FFFFFF;
background-color: #CC6600; 
padding-right:5px;
}

#footer a:hover{
color: #960221;
/* 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 {
clear:both;
margin-bottom: 50px;
}

/* Blockelemente */

/* Inlineelemente */


