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

/*In body, you define the background color or image of your page, and default font size and color*/ 

body {
	font-size: 10px;
	font-family: Futura, medium;
	background: #fffffff;
}

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

/*a:link, active, visited, and hover describes your links at rest, being clicked, ones you've visited, and when you're mouse-overing it, in that order*/

a:link { text-decoration: none; }
a:active { text-decoration: none; }
a:visited { text-decoration: none; color: #666; }
a:hover { text-decoration: underline; }

/*This is for images that are links*/

a img { border: none; }

/*Here you define the properties of your menu: size, position, behaviours, etc. */

#menu {
    width: 215px;
    overflow: auto;
    top: 0;
    bottom: 0;
	left: 0;
    position: fixed;
    height: 100%;
	background-color: #fff;

#menu .container { padding: 21px 0 21px 21px; }

}

/*This is for your menu box: how the elements themselves act inside the box*/

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

/*This is for the titles*/

#menu ul li.section-title { text-decoration: none; color: #000000; font-weight: bolder; margin-center: 50px; }

/*These are the properties of your content box*/

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

}

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

/*These are the properties for each paragraph as a whole within your content*/

#content p { width: 400px; margin-bottom: 9px; }

p {
    margin: 0 0 9px 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; }
