/* Notes hacks at the bottom */

body, html {
	margin: 0;
	padding: 0;
	font-size: 12px;
}

#header {
	text-align: center;
	padding: 10px;
	background-color: Navy;
}
/* .blockImport signifies imported rich text. See the hack below */
#header .blockImport {
	font-weight: bold;
	font-size: 24px;
}

#linksbar {
	float: left;
	width: 190px;
	padding-left: 10px;
	background-color: Navy;
}
#linksbar ul {
	padding-left: 0;
	margin-left: 0;
}
#linksbar li {
	padding: 5px;
	list-style-type: none;
}
#linksbar a {
	color: White;
}
#content {
	margin-left: 220px;
	padding-right: 10px;
}
#contentNL {
	margin-left: 10px;
	padding-right: 10px;
}
#footer {
	clear: both;
	padding: 10px;
	margin-top: 10px;
	background-color: rgb(240, 240, 240);
}

div.EventSetBox input {
	float: left;
}
div.EventInfo {
	margin-left: 30px;
}

/****** Let's handle our Notes-related hacks down here *******/

/* There are a number of line breaks that Notes puts between subforms. This clears them all out */
br { display: none; }
#header br, #linksbar br, #content br, #footer br, #contentNL br { display: block; }
p { display: none; }
#header p, #linksbar p, #content p, #footer p, #contentNL p { display: block; }

/* Rich text drawn into a computed field loses its font information */
.blockImport { font-family: verdana; font-size: 100%; }