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

body { 								/*Everything set to zero for a good cross-browser starting point*/
	margin: 0px;					/*Zero off the margins on the body*/
	padding: 0px;					/*Zero off padding on body ~ Some browsers use default padding requiring that it be zeroed*/
	border: 0px;					/*Zero off any existing */
	background-color: #FFFFFF;		/*Set Page Color*/
	color: #000000;					/*Set Text Color*/
	text-align: center;				/*Hack to center the wrapper in IE5.x on PCs*/
	font-family: Arial, Helvetica, sans-serif;	/*Set default font*/
	font-size:	100.01%;			/*Sets default font size ~ This value compensates for several browser bugs*/
	min-width:	770px;				/*Keeps the body from becoming more narrow than our wrapper div*/
}

#wrapper {
	width: 772px;					/*Sets the width for IE5.x's broken box model*/
	w\idth: 770px;					/*Sets the width of the wrapper for compliant browsers*/
	margin: 15px auto;				/*First value applies to the top and bottom of the wrapper, second value centers the wrapper*/
	position:	relative;			/*Positions the wrapper "relatively"*/
	background-color: #FFFFFF;		/*Sets the wrapper's background color*/
	text-align:	left;				/*Realigns text to left after the IE hack in body section*/
}

#banner {
	width: 770px;
	height: 100px;
	background-image: url(banner.gif);
	background-repeat: no-repeat;
}

#navigation {
	width: 770px;
	margin: 20px 0px;
	background-image: url(nav_bg1.gif);
	background-repeat: repeat-x;
}

/*Code for the Rollover Text Menu*/

.indentmenu{
font: bold 13px Arial;
width: 563px; /*leave this value as is in most cases*/
margin: 0px auto;
}

.indentmenu ul{
margin: 0;
padding: 0;
float: left;
width: 563px; /*width of menu*/
/*border: 1px solid #000000; /*dark black border*/
border-width: 1px 0;
background: black url(nav_bg1.gif) center center repeat-x;
/*border-left: 1px solid #000000; /*dark black divider between menu items*/

}

.indentmenu ul li{
display: inline;
}

.indentmenu ul li a{
float: left;
color: #FFFFFF; /*text color*/
padding: 5px 11px;
text-decoration: none;
/*border-right: 1px solid #000000; /*dark black divider between menu items*/
}

.indentmenu ul li a:visited{
color: #FFFFFF;
}

.indentmenu ul li a:hover, .indentmenu ul li .current{
color: #CCCCCC !important; /*text color of selected and active item*/
padding-top: 6px; /*shift text down 1px for selected and active item*/
padding-bottom: 4px; /*shift text down 1px for selected and active item*/
background: black url(nav_bg2.gif) center center repeat-x;
}

#txt_area {
	width: 400px;
	float: left;
	margin-left: 25px;
}

#img_area {
	width: 300px;
	margin-left: 455px;
}

#divider {
	width: 770px;
	height: 9px;
	background-image: url(div_background.gif);
	background-repeat: repeat-x;
}

#legal {
	width: 770px;
	margin-top: 25px;
	font-size: 60%;
	text-align: center;
}
