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

body {
	font-size: 9pt;
	font-family: Hoefler Text, Georgia, "Times New Roman", Times, serif;
	/* font of all the text in your website except for sections overwritten.
	Go to www.typetester.org to test sizes and see the list of safe fonts - If the user doesnt have the first one, it tries the second, and goes along the list until it finds a font that the computer has installed */
	color: white; /* color of all the text in your website except for links and other sections overwritten */
	text-align: left;
	background-color: #1d1f22; /* sets the background color */
	line-height : 140%;
	letter-spacing: 0.7pt;
}

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

a:link {
	text-decoration: none;
	background-color: none;
	color: white;
}

a:active {
	text-decoration: none;
	background-color: none;
	color: white;
}

a:visited {
	text-decoration: none;
	background-color: none;
	color: white; }
	
a:hover { 
	text-decoration: none;
	background-color: none;
	color: white; }

a img { border: none; }

#menu {
    width: 230px;
    height: 100%;
	float: left;
	margin: 0 0 0 20px;   
	padding-right: 5px;
	padding-top: 40px;
	padding-left: 10px; 
    position: fixed;
 	background-image: url('/files/mbg.png');
 	background-repeat: repeat;
	color: #888;
	line-height: 125%;
	letter-spacing: 1px;
}	

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

#menu ul li.section-title { 
	font-size: 10pt;
	letter-spacing: 1.5pt;
	line-height: 150%;
}

#content {
    height: 100%;
    margin: 0 0 0 300px;
    top: 0px;
}

.container {
    padding: 40px 5px 25px 5px;
}

#content p { width: 400px; margin: 0 0 0 0; }

p {
    margin: 0 0 0 0;
}

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; }
