@charset "utf-8";
body  {
	background: #666666;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.85em;
	font-weight: bold;
	line-height: 1.4em;
}
.specialtext_blue {
	color: #3D92CF;
	font-style: italic;
	font-weight: bolder;
	font-size: 13px;
}
.specialtext_red {
	color: #B8252F;
	font-style: italic;
	font-weight: bolder;
	font-size: 13px;
}
#container  {
	width: 900px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	height: 573px;
	background-color: #FFFFFF;
	background-image: url(images/RMHCPage2shell.jpg);
} 
#sidebar  {
	float: left; /* since this element is floated, a width must be given */
	width: 225px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 2px;
	height: 520px;
}
h1 {
	font-family: "Times New Roman", Times, serif;
	color: #B8252F;
	padding-left: 20px;
	padding-top: 0px;
	padding-bottom: 0px;
	margin: 10px 0px 0px;
	font-weight: bolder;
	font-style: italic;
	text-align: center;
}
sup {
}
h2 {
	color: #B8252F;
	margin: 0px;
	padding: 0px 0px 0px 20px;
	font: italic bold 22px "Times New Roman", Times, serif;
}
#sidebar div#menu {
	margin-top: 220px;
	padding: 0px;
	font-weight: bold;
}

#sidebar ul {
	margin-top: 220px;
	padding: 0px;
	font-weight: bold;
}
#sidebar ul li {
	font-family: Verdana, Geneva, sans-serif;
	list-style: none;
	line-height: 20px;
	background-image: url(images/StarBullet%20copy.gif);
	background-repeat: no-repeat;
	background-position: left center;
	font-size: 11px;
	text-indent: 15px;
}
#sidebar ul li a {
	text-decoration: none;
	color: #000;
}
#mainContent  {
	margin: 0px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 30px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	height: 540px;
	float: right;
	overflow: auto;
	width: 595px;
	font-weight: normal;
	font-family: Arial, Helvetica, sans-serif;
} 
#footer  {
	padding: 0 10px 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
} 
#footer p  {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font: 10px Arial, Helvetica, sans-serif;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
