/**
* CSS SAMPLE
* 
* @version 1.0
* @author Vaska 
* @author Gregory Cadar
*/



/**
* HIER AM BESTEN NICHTS AENDERN , weil bezieht sich auf ALLE Elemente
*/
* {
margin : 0;
padding : 0;
-webkit-text-size-adjust: none; 
}



/**
* Inhalt des gesamten Browserfensters, die 'Buehne', auf der sich die Website 'abspielt' 
* was hier definiert wird, gilt als STANDART fuer die gesamte Website 
* so z.B. die Hintergrundfarbe, Schriftart etc. 
*/
body {
	font-size:14px;
	line-height:23px;
	font-family: 'Roboto Condensed', sans-serif;
	background: #fff;
	font-color: #000;
}



/** 
* Moeglichkeit verschiedenen Kategorien verschiedene Layouts zuzuweisen
* hierzu gibt es ein Handout 
*/
body.section-1 { }
body.section-2 { }
body.section-3 { }



/**
* Standart Link-Formatierung
* wenn keine Extra-Angaben (class='') gemacht werden, sieht ein Links so aus, wie hier definiert 
*/
a:link { 
	text-decoration: none; 
	color: #ad7e1e;
}
a:active { 
	text-decoration: none; 
	color: #FF8040;
}
a:visited { 
	text-decoration: none; 
	color: #ad7e1e;
}
a:hover { 
	text-decoration: underline; 
	color: #ad7e1e;
}


/**
* Aussehen verlinkter Bilder (hier: Rahmen unterdruecken) 
*/
a img { border: none; }



/**
* Bereich des PRENAV TEXT (unter Einstellungen im Back-End) 
*/
#top-section {
position: fixed;
z-index: 900;
left: 40px;
top: 40px;
width: auto;
margin: 0px 0px 0px 0px;
font-size: 15px;
}



/**
* der gesamte Menuebereich
* das Div, auf dem alle Menuepunkte liegen 
*/
#menu {
    width: 180px;
    overflow: auto;
    top: 20px;
	left: 20px;
    position: fixed;
    height: 100%;
	z-index:800;
	background-color: rgb(255,255,255);
	background-color: rgba(255,255,255,0.99);
	background-color: transparent\9;
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4CFFFFFF,endColorstr=#4CFFFFFF);
	zoom:1;
	padding: 80px 20px 20px 20px;
	
}



/**
* Menuekategorie-Bereiche 
* z.B. Abstaende etc. 
*/
#menu ul {
	list-style: none;
	margin: 0px 0px 15px 0px;
}
	
	

/**
* nicht anklickbare Kategoriebezeichnungen 
*/
#menu ul li.section-title {
	font-weight:normal; 
	text-transform: uppercase;
	color:#000000;
	margin-bottom:5px;
	font-size: 14px;
}



/**
* anklickbare Menuepunkte
*/
#menu ul a:link {
	text-decoration: none;
	color: #000;
	line-height: 23px;
	font-size: 14px;
}

#menu ul a:active {
	text-decoration: none;
	color: #000;
	line-height: 23px;
}

#menu ul a:visited {
	text-decoration: none;
	color: #000;
	line-height: 23px;
}

#menu ul a:hover {
	color: #FF8040;
	text-decoration: none;
	line-height: 23px;
}



/**
* angeklickten Menuepunkt markieren 
*/

#menu ul li.active a {
	color: #000;
	font-size:15px;
	font-weight:bold;
	text-transform: uppercase;
	background-color:#fff;
	border-radius:5px;
	padding:0 10px 0 10px;
	line-height:15px;
	}
li.active
{
	margin:15px 0 15px 0;
	display: block;
}


/**
* relevant nur für Aufklappmenue
*/
/* #menu ul li.section-title {cursor: pointer; } */

h3 { margin-bottom : 10px;}


/**
* der Contentbereich
* alles, was in das Textfeld im Editierbereich (Backend) eingetragen wird, ist automatisch Teil von #content
*/
#content {
	position: absolute;
    left: 260px;
    top: 100px;
    margin: 0px 0px 0px 0px;
	width: 600px;
}

#text {padding-right: 40px !important;}
.smalltext {font-size: 12px;line-height:18px;}

/**
* Textabsaetze des Content-Bereichs
*/
#content p { 
	width: 600px; 
	margin-bottom: 15px;
	line-height: 23px; 
	font-size: 14px;
}

/**
* Bereich für Bilder, die ueber die Upload-Funktion im Backend hochgeladen wurden 
*/
#img-container	{ margin: 0; padding: 0; }



/**
* Positionierung der Bildunterschriften
*/
#img-container p	{ width: 400px; margin: 0; padding: 0 0 12px 0; }



/*****************************************************************
******************************************************************
************** NACHTRAEGLICH EINGEFUEHRTE ELEMENTE ***************
******************************************************************
******************************************************************

* die folgende Liste kann nach Belieben ergänzt werden
* Gebrauch ist optional
* bei der Anwendung der unten stehenden Stilvorlagen, 
* müssen diese in indexhibit extra angesprochen werden


/**
* spezielle Link-Formatierungen
* wenn bestimmte Links anders aussehen sollen, als die Standartformatierung
* Beispiel: Name (mit Link zurück auf die Startseite) soll größer sein und eine andere Farbe haben
* als Links im Text 
*/
/**
* muss im Backend mit class="linkvariante01" extra angegeben werden 
*/

a.linkvariante01:link { 
	font-size:15px;
	font-weight:regular;
	text-decoration: none; 
	color: #000000; 
}
a.linkvariante01:active { 
	font-size:15px;
	font-weight:regular;
	text-decoration: none; 
	color: #000000; 
}
a.linkvariante01:visited { 
	font-size:15px;
	font-weight:regular;
	text-decoration: none; 
	color: #000000;

}

a.linkvariante01:hover { 
	font-size:15px;
	font-weight:regular;
	text-decoration: none; 
	color: #000000;  
}


/** 
Ueberschriften 
*/
/**
* muss im Backend mit <h1> bzw. <h2> us.w  extra angegeben werden
*/

h1 { font-size: 15px; color:#ccc; text-transform:uppercase; font-weight:normal; margin-bottom:10px;}
h2 { font-size: 15px; }

/**
* zusätzliche Schriftformatierungen 
*/
/**
* muss im Backend mit <span class="auszeichnung01"> usw. extra angegeben werden
*/

.auszeichnung01{
	color:#fff;
	font-weight:bold;
	background-color:#000;
}

.auszeichnung02{
	color:#ccc;
	font-size:10px;
}

.auszeichnung03{
	color:#ad7e1e;
	text-transform: uppercase;
	background-color:#fff;
	border-radius:5px;
	
}


#EinsDiv
{
position:absolute;
left:270px;
top: 0px;
width:7000px;
}
#EinsDiv img{
margin-right:25px;
}

#text230px
{
width:250px;
font-family: 'Crimson Text', sans-serif;
}

#DomiAndMe
{
position:absolute;
left:260px;
top: 0px;
width:600px;
height:600px;
overflow-y: scroll;
overflow-x: hidden;
}

#MeAndDomi
{
position:absolute;
left:860px;
top: 0px;
width:600px;
height:600px;
overflow-y: scroll;
overflow-x: hidden;
}
}


/*das hier einfach am Ende stehen lassen und ignorieren*/
#once { clear: left; }

#mobile_menu{
display:none;
}