/**
* CSS
* 
* @version 1.0
* @author Vaska 
* @author Gregory Cadar
*/
* {
	margin: 2px;
	padding: 5px;
}

body {
	font-size: 12px;
	font-family: Helvetica Neue, sans-serif; // Schriftart 
	background: #fff;
	color: #424141;
}

body.section-1 { }
body.section-2 { }
body.section-3 { }

a:link { text-decoration: none; 
		color: #fff; //Schriftfarbe der einzelnen Projekte und Links
	
}
a:active { text-decoration: none; }
a:visited { text-decoration: none; color: #666; }
a:hover { 
	text-decoration: none; //Reaktion der Links beim Drüberfahren; underline, overline, line-through, blink, none
	color: #000; //Schriftfarbe beim Drüberfahren
	
}

a img { border: none; }

#menu {
    width: 240px;
    overflow: auto;
    top: 10px;
    bottom: 0;
	left: 40px;
    position: fixed;
    height: 100%;
	background-image: url(/images/menu_bg_magenta2.png);
}

#menu ul {
	list-style: none;
	margin: 0 0 12px 0;
}

#menu ul li.section-title { 
	border-bottom: #000 2px dotted; //Trennlinien
	margin: 0 0 5px 0;
	padding: 0 0 5px 0;
	color: #000
	
}

#content {
    height: 100%;
    margin: 0 0 0 315px;
    top: 0;
    background-color: #fff; // Hintergrundfarbe des Contens
}

.container {
    padding: 30px 5px 25px 5px; // Abstand von Menü & Content zum oberen Rand (1. px)
}

#content p { width: 400px; margin-bottom: 30px; } //margin-bottom=Abstand zwischen den eizelnen Content-Texten

p {
    margin: 0 0 0 0; // 60px= Abstand von "Portfolio zum Logo"
}

h1 { font-size: 32px; }
h2 { font-size: 24px; }
h3 { font-size: 16px; }
h4 { font-size: 12px; }

#img-container	{ margin: 0; padding: 0; }
#img-container p	{ width: 400px; margin: 0; padding: 0 0 12px 0; }

#once { clear: left; }