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

body {
	font-size: 12px;
	font-family: Verdana, Geneva, sans-serif;
	background: #FFF;
}

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

a:link { text-decoration: none; color: #666;}
a:active { text-decoration: none; color: #666; background-color:#FF0;} 
a:visited { text-decoration: line-through; color: #666;}
a:hover { text-decoration: none; color: #666; background-color:#FF0;}

a img { border: 1px; color:#666; }
	

#menu {
    width: 200px;
	height: 100%;
    overflow: auto;
    top: 50px;
    bottom: 0;
	left: 30px;
    position: fixed;
	background-color: #FFF;
	border-style: solid;
	border-width: 1px;
	border-color: #FFF;
	border-right-style: solid;
	border-right-width: 1px;
	border-right-color: #666;
}

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

#menu ul li.section-title { }

#content {
    height: 100%;
	width: 100%;
	overflow: auto;
    top: 50px;
	bottom: 0;
	left: 280px;
	position: fixed;
	background-color: #FFF;
	border-style: solid;
	border-width: 1px;
	border-color: #FFF;
	
}

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

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

p {
    margin: 0 0 9px 0;
}

h1 { font-size: 32px; color: #666 }
h2 { font-size: 24px; color: #666 }
h3 { font-size: 20px; color: #666 }
h4 { font-size: 16px; color: #666 }
h5 { font-size: 12px; color: #666 }
h6 { font-size: 08px; color: #666 }

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

#once { clear: left; }