/**
* CSS
* 
* @version 1.0
* @author lorenzo bravi
*/
* {
	margin: 0;
	padding: 0px;
}

body {
	background: #fff;
	color: black;
	font: 9px/16px Monaco, "Lucida Grande", Lucida, Verdana;
}

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

a:link {
	background-color: yellow;
	color: black;
	text-decoration: none;
}
a:active {
	background-color: aqua;
}
a:visited { text-decoration: none; color: black;
	background-color: silver;
}
a:hover {
	background-color: aqua;
}

a img { border: none; }

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

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

#menu ul li.section-title {
	
	margin-top:10px;
	color: black;
	border-bottom-style: solid;
	border-bottom-width: medium;
}

#content {
	height: 100%;
	top: 0;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0px;
	padding-left: 10px;
	padding-right: 10px;
}

.container {
    padding: 30px 0px 0px 0px;
}

#content p {
	width: 100%;
	margin-bottom: 10px;
	font-family: monaco, "Lucida Grande", Lucida, Verdana;
	padding-bottom: 2px;
}

p {
    margin: 0 0 0px 0;
	line-height: 15px;
	border-bottom-style: solid;
	padding-bottom: 3px;
}

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

#img-container	{ width: 95%; margin-top: 100;
	border-bottom-style: solid;
	padding: 0 0 5px;
}
#img-container p	{ width: 95%; margin: 0; padding: 0 0 0px; }

#once { clear: left; }

