
body {
	background: #b9b8a4 url(rmb-bkg.jpg) no-repeat left top;
	color: #534e3b;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 14px;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
	width: 100%;
	display: table;
}

.rnote {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	color: #534e3b;
	text-align: justify;
}

#nav {
	position: fixed;
	right: 0px;
	bottom: -3px;
}

/* style page titles */
h1 {
	color: #534e3b;
	background-color: #d3d3cb;
	border: 1px solid #534e3b;
	/* for IE */
	filter:alpha(opacity=50);
	/* CSS3 standard */
	opacity:0.5;
	font-size: 12px;
	font-family:Georgia, serif;
	font-variant: small-caps;
	text-transform: none;
	font-weight: bold;
	line-height: 12px;
	padding: 3px 3px 3px 3px;
}

/* style section titles */
h2 {
	color: #534e3b;
	font-size: 12px;
	font-weight: bold;
	line-height: 14px;
}

/* Sets the style for unvisited links. */
a, a:link {
	color: #055105;
	/* font-weight: bold; */
	text-decoration: none;
}

/* Sets the style for visited links. */
a:visited {
	color: #055105;
	text-decoration: none;
}

/* Sets the style for links on mouseover. */
a:hover {
	color: #D3D3CB;
	background-color: #055105;
	text-decoration: none;
}

/* Sets the style for a link that has focus. */
a:focus {
	color: #D3D3CB;
	background-color: #055105;
}

/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #D3D3CB;
	background-color: #055105;
}

/* blank out links */
a.blankLink:link {
	background-color: transparent;
}

a.blankLink:visited {
	background-color: transparent;
}

a.blankLink:hover {
	background-color: transparent;
}

a.blankLink:focus {
	background-color: transparent;
}

a.blankLink:active {
	background-color: transparent;
}

/* blank out links */

/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	margin: 230px auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 900px;
}

#outerWrapper #header {
	/* border-bottom: solid 1px #568176; /* Sets the bottom border properties for an element using shorthand notation */
	padding: 5px 5px 5px 5px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

#outerWrapper #contentWrapper #leftColumn1 {
	/* border-right: solid 1px #534e3b; */
	float: left;
	padding: 0px 10px 10px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 300px;
}

/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	/* border-top: solid 1px #534e3b; */
	margin: 0 0 0 320px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0px 0px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
	clear: left;
	display: block;
}

#outerWrapper #footer {
	/* background-color: #eef0e2; */
	border-top: solid 1px #534e3b; /* Sets the top border properties for an element using shorthand notation */
	padding: 5px 5px 5px 5px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	margin-bottom: 100px;
}

