/**
* CSS
* 
* @version 1.0
* @author Vaska 
* @author Gregory Cadar
*/
* {
	margin: 60;
	padding: 0;
}

body {
	font-size: 10px;
	font-family: Arial, sans-serif;
	background: #fff;
}

body.section-1 { }
body.section-2 { }
body.section-3 { }

/*
Ici ce sont les liens :

a:link c'est un lien normal non visité, 
a:visited c'est un lien déjà visité 
a:hover c'est un lien au survol de la souris
*/
a:link { text-decoration: none; color:#000000; }
a:active { text-decoration: none; }
a:visited { text-decoration: none; color:#000000; background-color:#D2FFFF; }
a:hover { text-decoration: none; color:#FE0000; }

a img { border: none; }

#menu {
    width: 180px;
    overflow: auto;
    top: 0;
    bottom: 0;
	left: 200;
    position: fixed;
    height: 100%;
	background-color: #FFF;
}

#menu ul {
	list-style: none;
	margin: 0 0 10px 0;
}

#menu ul li.section-title { }

#content {
    height: 100%;
    margin: 0 0 0 160px;
    top: 0px;
}

.container {
    padding: 30px;
}

#content p { width: 800px; margin-bottom: 4px; }

p {
    margin: 0 0 10px 0;
}

h1 { font-size: 320px; }
h2 { font-size: 24px; }
h3 { font-size: 16px; }
h4 { font-size: 12px; }

#img-container	{ margin: 0; padding: 0px; }
#img-container p	{ width: 400px; margin: 0px; padding: 0 0 60px 0; }

#once { clear: left; }