<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document for Forms */


#leftcolum {
	float: left; 
	width: 20em; /* since this element is floated, a width must be given */
	border-right: 1px solid #EBEBEB;
		padding: 5px 0; /* top and bottom padding create visual space within this div */
}
#rightcolum {
	float: right; 
	width: 21em; /* since this element is floated, a width must be given */
	border-left: 1px solid #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	color:#000;
	padding: 5px 0; /* top and bottom padding create visual space within this div */
}
#middleContent {
	margin: 0 22em 0 21em; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	padding: 0 1.5em 0 1.5em; /* padding here creates white space "inside the box." */
} 
#middleContent h3 {
	background-color:#CCC; 
	padding:2px;
}
 #leftcolum h3, #rightcolum h3 {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
	background-color:#CCC; 
	padding:2px;}
	
 #leftcolum p, #rightcolum p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;}
.room {
	margin-top: 15px;
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
	margin-bottom: 5px;}
</pre></body></html>