* {
	padding: 0px;
	margin: 0px;
	font-family: sans-serif;
	font-size: 12pt;
	color: #000;
}

div {
	border: 0px solid #F00;
}

a {
	text-decoration: none;
}

a:hover {
	color: #F00;
}

#page {
	min-height: 90vh;
}

#head {
	line-height: 300%;
	margin-bottom: 10px;
}

#head div.title {
	font-weight: bold;
	font-size: 24pt;
	cursor: pointer;
}

#return_to_top {
	float: right;
}

#menu {
	border: 1px solid #AAA;
}

#menu .title {
	line-height: 200%;
	padding: 5px;
	font-weight: bold;
	background-color: #EEE;
}

#menu .item {
	cursor: pointer;
	border-top: 1px dashed #CCC;
	padding: 5px 10px;
}

#contents div.title {
	font-weight: bold;
	font-size: 18pt;
}

#contents div.item {
	padding: 10px 10px 0px;
}

/*
#contents div.item a {
	text-decoration: none;
}

#contents div.item a:hover {
	color: #F00;
}
*/

#footer {
	clear: both;
	text-align: center;
	padding: 10px 0px 0px;
	border-top: 1px dashed #AAA;
}

@media screen and (min-width: 800px) {
	
	#page {
		width: 800px;
		margin: 0px auto;
	}
	
	#menu {
		width: 20%;
		float: left;
	}
	
	#contents {
		width: 75%;
		float: right;
	}
	
}

@media screen and (max-width: 800px) {

	#page {
		width: 100%;
	}
	
	#head {
		padding: 0px 5px;
	}
	
	#menu {
		display: none;
		border-left: 0px;
		border-right: 0px;
	}
	
	#contents {
		padding: 10px;
	}
	
}