@import url(http://fonts.googleapis.com/css?family=Inconsolata);

body {
	font-family: Inconsolata, sans-serif;

	background: #222;
	background-attachment: fixed;
	background-position: right;
	background-size: 3em 1px;
}

/* sticky nav */

#navcontainer ul {
	background-color: black;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;

	color: white;

	list-style-type: none;
	padding: 0;
	margin: 0;

	width: 6em;
	text-align: center;
}

#navlist li {
	height: 20vh;
	position: relative;
}

#navlist a {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	padding-top: 7.5vh;
	color: white;
	text-decoration: none;
}

#one{background: #3333FF;
	opacity: 0.4;}

#two{background: #B20000;
	opacity: 0.4;}

#three {background: #7A007A;
	opacity: 0.4;}

#four{background: #007A29;
	opacity: 0.4;}

#five{background: #CC9900;
	opacity: 0.4;}


#navlist a:hover {color: black;
	  opacity: 1.0;}




#active a {opacity: 1.0;}


h2{color:white;}


h1 {
	color: #CCC;
	margin-left: 7em;
	margin-right: 3.5em;
	line-height: 1.3em;
}





/* I got some of the code for the navigation bar from here and modified it.  http://robin.learnnewmedia.ca/320/04structure/vh/   */
