@charset "utf-8";
/* CSS Document */

body  {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	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;
	background-color: #333333;
}

p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.0em;
	color: #000000;
	font-weight: normal;
	text-align: left;
}

#container { 
	width: 54em;  /* 46em width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background:  #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border-style: none;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header {
	background-color: #000000;
	background-image: url(images/head_graphic-rcm.png);
	background-repeat: no-repeat;
	height: 100px;
} 
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 1.2em 0 .2em 15em; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color: #FFFFFF;
	font-size: 1.3em;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style: normal;
}

#topNav {
	margin: 0;
	background: #FFFFFF;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-top-width: 1px;
	}

#topNav p{
	margin: .5em 1em;
	color: #000000;
	text-align: left;
	font-size: 0.8em;
	font-weight: bold;
	}
	
#topNav a{
	color: #0054a6;
	text-decoration: none;
	}
	
#topNav a:hover{
	color: #db0b24;
	text-decoration: underline;
	}

#sidebar1 {
	float: left;
	width: 10.8em; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: .5em 0; /* top and bottom padding create visual space within this div */
	background-color: #FFFFFF;
	}
#sidebar1 h4 {
	margin-left: 1.0em; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 1.0em;
	color: #db0b24;
}

#sidebar1 p {
	margin-left: 1.0em;
	margin-right: 1.0em;
	font-size: 0.8em;
	color: #000000;
}

#sidebar1 li {
     list-style-type: square;
	 line-height: 1.75;
	 font-size: 0.9em;
	 color: #000000;
	 }

#sidebar1 a {
	font-size: 0.9em;
	font-weight: bold;
	color: #000000;
	text-decoration:underline;
}

#sidebar1 a:hover {
	color: #db0b24;
	}


#mainContent {
	margin: 0 1.5em 2em 12em; /* right margin can be given in ems or pixels. Creates the space down the right side of the page. */
} 

#mainContent form {
	display: inline;
	} 

#mainContent h3{
	color: #af1e23;
	text-align: center;
	}
	
#mainContent h5{
	color: #000099;
	text-align: center;
	}
	
#mainContent p{
	font-size: .8em;
	}

#mainContent img {
	border: 1px;
	border-style: solid;
	border-color: #000000;
	}
	

#footer { 
	padding: 0 1.0em; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#ffffff;
} 
#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: 0 0 0 17em; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 0.65em;
	font-weight: normal;
	text-align: center;
}

#footer a{
	color: #0054a6;
	font-size: 1.1em;
	text-decoration: none;
	}
	
#footer a:hover{
	color: #db0b24;
	text-decoration: underline;
	}
	
.tablestyle{
	border: 1px solid #CCCCCC;
	border-collapse: collapse;
	}
	
.tablestyle td{
	border-left: 1px solid #CCCCCC;
	padding: 4px;
	text-align: center;
	}
	
.altrow{
	border-bottom: 1px solid #CCCCCC;
	font-size: .3em;
	vertical-align: bottom;
	text-align: center;
	}
	
.optiontextsize{
	font-size: 2.5em; /* The size is effected by the altrow font-size. It's 2.5 of .3 */
	}

/* Miscellaneous classes for reuse */
	
.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;
}
