/* 
	notes.css - Styling lecture notes for the CS 1 course.
	Author: 	Sam Slee
	Date:	5-9-2006
*/

h1{
	color: #fff;
	padding: 3px;
	margin: 1em 0 0 1em;
	background-color: #057;
}
h2 span{
	color: #069;
}
h3{ 
	text-decoration: underline;
	margin-top: 1.5em;
	color: #069;
}
h3, h4 {
	margin-bottom: 10px;
}
pre{
	color: #00f;
	display: inline;
}
.css{
	color: #f00;
	display: inline;
}
code{
	margin: 0 0.5em;
	color: #00f;
	display: inline;
}
.display{
	color: #069;
	font-size: 1.3em;
	font-style: italic;
}

table {
	margin: 0;
}
th{
	text-decoration: underline;
}
.back{
	float: left;
}
.forward{
	float: right;
}
.return{
	position: absolute;
	right: 0.7em;
	margin-top: -1.7em;
	padding: 0;
}
.holder{
	width: 2em;
}

/* Handling the lecture note drop-down menu. */
ul#menu{
	position: absolute;
	top: 1.5em;
	right: 0.7em;
	list-style-type: none; 
	padding: 0.2em 0.2em;
	width: 11em;
	border: 1px solid #057;
	background-color: #fff;
}
ul#menu li{ 
	color: #057;
	margin: 0;
}
ul#menu ul{ 
	list-style-type: none; 
}
ul#menu li ul{
	display: none;
	margin:0;
	padding:0;
	width: 11em;
	background-color: #eee;
}
li a{
	display: block;
	padding: 0 3px;
	border-top: 1px solid #fff;
	color: #057;
	text-decoration: none;
}
#menu:hover{
	border: 1px solid #fff;
	background-color: #057;
}
#menu:hover ul{
	display: block;
}
#menu li:hover{
	color: #fff;
}
