body {
	height: 100%;
	width: 100%;
}
html {
	height: 100%;
	width: 100%;
}

#toplogo {
	background: url('title.jpg') no-repeat;
	height: 400px;
	width: 950px;
}
#toplogo span {
	display: none;
}
#toplogo_print {
	display: none;
}
#wholedocument {
	margin: auto;
}

/* --- Message Boxes --- */

#errorbox,
#noticebox,
#successbox {
	cursor: pointer;
	font-family: "Trebuchet MS", sans-serif;
	margin: 1em;
	padding: 1em;
	padding-top: 0.5em;
	position: fixed;
	top: 0;
	right: 0;
	text-align: center;
	width: 30em;
	z-index: 1000;
}
#errorbox {
	background-color: #fcc;
	border: 1px solid #daa;
	color: #a00;
}
#noticebox {
	background-color: #ffc;
	border: 1px solid #dda;
}
#successbox {
	background-color: #cfc;
	border: 1px solid #ada;
}
#errorbox li,
#noticebox li,
#successbox li {
	padding-top: 0.5em;
	list-style-type: none;
}
.closebox {
	color: #888;
	padding: 2px;
	position: absolute;
	top: 0;
	right: 0;
	font-size: 0.8em;
}
