/* GENERAL */

html { 
  margin: 0; 
  padding: 0;
}

body {
  font-size: 11px;
  font-family: Helvetica, "Helvetica Neue", Arial, Geneva, sans-serif;
  color: black;  
  padding:0 20px;
	background: white fixed;
}

p { 
margin-bottom: 18px; 
}

a:link { 
color: #000; 
text-decoration: none; 
}


a:visited { 
color: gray;
text-decoration: none;
}


a:hover {
color: black;
text-decoration: underline;
}



/*LOGO TREATMENT*/


#logo {
position: fixed;
top: 40px;
left: 55px;
width: 10%;
background-color:white;
margin-bottom: 18px;
}

/*NAVIGATION*/
#nav {
position: fixed;
top: 120px;
left: 55px;
width: 142px;
background-color: white;
margin-bottom: 18px;
padding: 10px;
}

#list a:link { 
color: #000; 
text-decoration: none; 
}


#list a:visited { 
color: gray;
text-decoration: none;
}


#list a:hover {
text-decoration: underline;
}

/* MAIN CONTENT */

#content {
position: absolute;
margin-left: 200px;
top: 65px;
width: 550px;
padding: 20px;
padding-top: 60px;
background-color: white;
padding-bottom: 10px;
}



/* SIDEBAR */
#sidebar{
position: fixed;
left: 140px;
top: 70px;
width: 200px;
margin-left: 85px;
padding-top: 60px;
overflow: auto;
padding-bottom: 10px;
background-color: white;}


/* HEADINGS */
h1 {
font-size: 12px;
font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
color: black;
font-weight: bold;
}

h2 {
font-size: 11px;
color:  black;
font-style: italic;
font-weight: normal;
}

h3 {
font-size: 11px;
font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
color: black;
font-weight: normal;
}



