/* standard_fest.css ist die css, die für alle seiten gleich gilt,
diese wird im /css ordnder abgespeichert,
für jedes projekt gibt es noch die eigene css datei, welche dann im /css/projektx ordner abgespeichert wird,
hierbei auf die korrekte einbindung der htmls achten <- Zeilen im header, ganz oben der html

#x ist ein div-tag, html element
a:, p, ul, li - html elemente, aber keine div-tags
jedes element kann css regeln bekommen
*/



a:link, a:visited {
	color: #999;
	text-decoration: none;
}
a:hover {
	color: #000;
	text-decoration: none;
}
a:active {
	color: #000;
	text-decoration: none;
}


/*Links und ihre EIgenschaften - a: ist die Bezeichnung für Links, Pseudoklassen*/


#wrapper {
	width: 980px;
	font-family: Arial, Helvetica, sans-serif;
	color: #000;
	text-decoration: none;
	font-size: 16px;
	margin: 0 auto;
}


/* wrapper ist das ganze, 
dann aufteilung in links rechts, 
links navi (position fixed, nicht mehr scrollbar), 
rechts content wo das jeweilige Projekt reinkommt (bearbeitbarer Bereich der Template)
neue projekte: dw auf, sites verwalten, ordnersruktur checken, neue html - unter neu, von vorlage erstellen*/


#wrapper #left {
	width: 260px;
	margin-top: 80px;
	font-size: 14px;
	position: fixed;
}
#wrapper #left p {
	text-align: right;
	padding-right: 80px;
	margin-top: 18px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	color: #999;
}
#wrapper #left #nav {
	color: #999;
	text-decoration: none;
	list-style-type: none;
}

#wrapper #left #nav ul {
	font-size: 14px;
	line-height: 18px;
	padding: 0px;
	text-decoration: none;
	list-style-type: none;
	color: #999;
	margin-top: 18px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}


/* "ul" ist das div-mässige, die ganze liste - "ul li" ist die liste an sich */


#wrapper #left #nav ul li {
	list-style-type: none;
	text-align: right;
	margin-right: 80px;
	color: #999;
	text-decoration: none;

}
#wrapper #left #info {
	margin-top: 18px;
}
#wrapper #right {
	width: 720px;
	float: right;
}

#wrapper #right #header {
	margin-top: 12.15%;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	width: 480px;
}
#wrapper #right #header h1 {
	margin-bottom: 3.1%;
}



/* h1 - überschriften, formatierungsart, text
   h1 strong - in der Überschrift schriftgröße geändert, macht aber standardmäßig auch fett, halt strong*/


#wrapper #right #header h1 strong {
	font-size: 18px;
	margin: 0px;
}
#wrapper #right #header p {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	font-size: 14px;
	line-height: 18px;
}
#wrapper #right #text p {
	font-size: 14px;
	margin-top: 0px;
}

#wrapper #right #header p font {
	margin: 0px;
	color: #999;
}


/* p - absatz, mit enter beim schreiben im entwurfsbereich von dw */


#wrapper #right #header {
	margin-top: 12.15%;
}
#wrapper #right #header h1 {
	margin-bottom: 3.1%;
	font-size: 24px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
}
#wrapper #right #header p {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	font-size: 14px;
	line-height: 18px;
}
#wrapper #right #imprint p {
	margin-top: 18px;
	margin-right: 0px;
	margin-bottom: 18px;
	margin-left: 0px;
	font-size: 10px;
}


#wrapper #right #imprint {
	width: 480px;
	text-align: right;
}
