<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: 44em; /* since this element is floated, a width must be given */
	border-right: 1px solid #B3BF91;
		padding: 5px 0; /* top and bottom padding create visual space within this div */
}
#rightcolum {
	float: right; 
	width: 20em; /* 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 */
	
}
#rightcolum  p{color:#FFF;
	
}
#leftcolum .bluebck 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:#91B3BF; 
	padding:2px;
	margin-top:-5px; 
	border-bottom: 1px solid #666; 
	-moz-border-radius: 15px; 
	border-radius: 15px; 
	padding-left:1em;}
	
#rightcolum .bluebck h3{
	margin-left: 1px; 
	margin-right: 10px;
	background-color:#91B3BF; 
	padding:4px;
	
}
#middleContent {
 	margin: 0 21em 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:#252525; 
	padding:2px;

	
}

 #leftcolum h2 {
	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;
	padding:2px;
	color:#000;
	font-size: 1.25em;
	}

 #leftcolum 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:#252525; 
	padding:2px;
	color:#FFF;}
	
#rightcolum h3 {
	margin-left: 1px; 
	margin-right: 10px;
	background-color:#252525; 
	padding:4px;
	color:#FFF;
	
}
 #leftcolum p, #rightcolum p {
	margin-left: 15px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 15px;}
.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>