@charset "utf-8";
/* CSS Document */
a:link {
	text-decoration:underline;
	color: #333333;
}
a:visited {
	text-decoration:underline;
	color: #333333;
}
a:hover { 
	text-decoration:none;
	color: #333333;
}
a:active { 
	text-decoration:none;
	color: #333333;
}
/* These are classes to be applied to text*/
.small_body {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 12px;
}
.medium_body_green {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #7F7800;
	font-weight: bold;
}
.medium_body {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: bold;
	color: #666666;
}
.large_body_green {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #B2BC00;
}
.large_body {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 18px;
}
#global {
     margin-left: auto;
     margin-right: auto;
	 position: relative;
     width: 780px;
}
#container {
	position:absolute;
	width:780px;
	z-index:1;
}
#header_image {
	position:absolute;
	width:780px;
	height:220px;
	z-index:1;
}
#HeaderNav {
	position:absolute;
	width:780px;
	height:24px;
	z-index:1;
	bottom: -254px;
	background-color: #BBCA29;
	font-family:Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	padding-left: 0px;
	left: 0px;
}
#HeaderNav li {
	float: left;
	list-style-type: none;
	margin: 0 0 0 0;
	white-space: nowrap;
	padding-left: 0px;
	padding-right: 15px;
	padding-top: 5px;
	padding-bottom: 5px;
}
#HeaderNav ul {
	margin: 0px;
	padding: 0px 0px 0px 0px;
}
#HeaderNav a {
	padding: 4px 17px 4px 17px;
	color: #333333;
	text-decoration:none;
}
#HeaderNav a:link {
	padding: 4px 17px 4px 17px;
	color: #333333;
}
#HeaderNav a:visited {
	padding: 4px 17px 4px 17px;
	color: #333333;
	text-decoration:none;
}
#HeaderNav a:hover {
	padding: 4px 17px 4px 17px;
	background-color: #798000;
	color: #FFFFFF;;
}
#HeaderNav a:active {
	padding: 4px 17px 4px 17px;
	color: #FFFFFF;;
}
#navbar {
	position:absolute;
	width:780px;
	height:27px;
	z-index:2;
	top: 235px;
	background-color: #B2BC00;
}
#aclogo {
	position:absolute;
	width:113px;
	height:47px;
	z-index:6;
	top: 265px;
	right: 4px;
}
#right_side_bar {
	position:absolute;
	width:170px;
	z-index:6;
	right: 0px;
	top: 330px;
}
#content {
	position:absolute;
	width:780px;
	min-height:330px;
	height:auto !important;
	z-index:5;
	left: 0px;
	top: 334px;
	border-right-style: none;
	text-align: left;
	border-top-style: none;
	border-bottom-style: none;
	border-left-style: none;
	overflow: visible;
	padding-bottom: 80px;
}
#content_side {
	position:absolute;
	width:600px;
	min-height:330px;
	height:auto !important;
	z-index:5;
	left: 0px;
	top: 334px;
	border-right-style: none;
	text-align: left;
	border-top-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-right: 180px;
	overflow: visible;
	padding-bottom: 80px;
}
#header_text {
	position:absolute;
	width:593px;
	height:49px;
	z-index:1;
	left: 0px;
	top: 269px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: normal;
	padding: 4px;
	color: #B2BC00;
}
#footer {
	position:absolute;
	width:780px;
	height:50px;
	z-index:9;
	left: 0px;
	bottom: 0px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #798000;
}
#register {
	position: absolute;
	top: -32px;
}
#export {
	position:absolute;
	width:545px;
	height:115px;
	z-index:1;
	bottom: 0;
}
form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
	position:absolute;
	margin: 0;
	padding: 10px;
	min-width: 520px;
	max-width: 520px;
	width: 520px;
	left: 49px;
	top: -10px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	border-color: #798000;
  	border-width: 1px;
  	border-style: solid;
}

form fieldset {
  	/ * clear: both; note that this clear causes inputs to break to left in ie5.x mac, commented out */
  	padding: 10px;        /* padding in fieldset support spotty in IE */
  	margin: 0;
	border: hidden;
}

form fieldset legend {
	font-size:1.1em; /* bump up legend font size, not too large or it'll overwrite border on left */
                       /* be careful with padding, it'll shift the nice offset on top of border  */
}

form label { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 125px; 
	padding: 0; 
	margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right; 
}

form input, form textarea {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width:auto;      /* set width of form elements to auto-size, otherwise watch for wrap on resize */
	margin:5px 0 0 10px; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
}

form input#reset {
	margin-left:0px; /* set margin-left back to zero on reset button (set above) */
}

textarea { overflow: auto; }

form small {
	display: block;
	margin: 0 0 5px 160px; /* instructions/comments left margin set to align w/ right column inputs */
	padding: 1px 3px;
	font-size: 88%;
}

form .required	{
	font-weight:bold;
	color:#000;
} /* uses class instead of div, more efficient */

form br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}
.submit_button {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #FFFFFF;
	background-image: url(../images/rn_bg.jpg);
	background-repeat: repeat-x;
}
