@charset "UTF-8";
body  {
	font: 90% Verdana, Arial, Helvetica, sans-serif;
	background-image: url(../images/IF/RR_BGslice.jpg); /* 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;
}

.twoColFixLtHdr #container { 
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto;
	background: transparent; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixLtHdr #header {
	width: 900px;
	height: 166px;
	padding: 0;
	text-align: center;
	background: transparent url(../images/IF/RR_MainLogoRight.jpg) no-repeat;
} 

.twoColFixLtHdr #ContentWrapper {
	width: 900px;
	background-color: white;
	border: 2px solid #306b9e;	
}

/*Top Nav Rules */

#topNav {
	width: 100%;
	margin: 0;
	padding: 0;
	font-size: 90%;
	font-style: italic;
	border-top: 2px solid #cb981e;
	border-bottom: 1px solid #306b9e;
}
#topNav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	
}
#topNav li {
	float:left;
	margin: 0;
	padding:0;
	text-align: center;
}
#topNav  li a {
	display: block;
	width: 180px;
	height: 25px;
	margin: 0;
	padding:0;
	color:black;
	background-image: url(../images/IF/RR_buttonOff.jpg);
	text-decoration: none;
}
#topNav li a:hover {
	color: #c97300;
}
#topNav li a:focus {
	background-image: url(../images/IF/RR_buttonOn.jpg);
}

/* SideBar Rules */

.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 220px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 10px 10px 15px 20px;
}
#sidebarImg {
	text-align: center;
	
}
#sidebarLogo {
	margin: 60px 0 50px 0;
	
}

/* Main Content Rules */

.twoColFixLtHdr #mainContent { 
	margin: 0 0 0 270px; /* 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 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#mainContent h1, h2 {
	margin: 20px 0 10px 0;
	font-weight: 500;
	font-style: italic;
	color: #0e006c;
}
#mainContent p {
	line-height: 1.3em;
}

/* Footer Rules */

.twoColFixLtHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#ffec9b;
	border-top: 1px solid #ffec9b;
	border-color: #a9e3ff;
} 

.twoColFixLtHdr #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: 3px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 80%;
	text-align: center;
	
}
#footer a {
	text-decoration: none;
	margin:  0 10px;
	color: black;
}
#footer a:hover {
	color: #c97300;
}

/* Copyright rules */

.copyright {
	padding-left: 5px;
	font-size: 70%;
}

/* Misc Rules */

.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;
}
.caption {
	text-align: center;
	font-size: 80%;
	letter-spacing: .1em;
}
.smallItalic {
	font-size: 50%;
	font-style: italic;
	font-weight: bold;
}
.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;
}
