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

body {
	margin-left: 0px;
	font-size: 12px;
	font-family: "Trebuchet ms", Verdana, 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; }
a:visited { text-decoration: none; color: #666; }
a:hover { text-decoration: none; background-color: #666; color: white;}

a img { border: none; }

#menu {
    width: 275px;
    overflow: hidden;
    top: -25px;
    bottom: 0;
	padding-left: 17px;
    position: fixed;
    height: 100%;
	background-color: #fff;
	font-size: 11px;
	
}

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

}

#menu li {
	margin-top: 5px;
    margin-bottom: 0px;
}


#menu ul li.section-title { }

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


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

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

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

div#scrollbar {
    display:block; /* initially display:none; to hide from incapable */
    }

div#wn	{ 
    position:relative;
    width:280px; height:200px;
    overflow:hidden;
	}
    
div#scrollbar { 
  position:relative;
  width:11px; height:200px; 
  font-size:1px;  /* so no gap or misplacement due to image vertical alignment */
  }
div#track { 
  position:absolute; left:0; top:12px;
  width:11px; height:176px;
  background: white;
  }
div#dragBar {
  position:absolute; left:1px; top:1px;
  width:9px; height:20px;
  background-color:black;
  }  
div#up { position:absolute; left:0; top:0; }  
div#down { position:absolute; left:0; bottom:0; }

/* for safari, to prevent selection problem  */
div#scrollbar, div#track, div#dragBar, div#up, div#down {
    -moz-user-select: none;
    -khtml-user-select: none;
}


/* so no gap or misplacement due to image vertical alignment
font-size:1px in scrollbar has same effect (less likely to be removed, resulting in support issues) */
div#scrollbar img {
    display:block; 
    } 
