/* Generic Styles */
/*body {font-family: arial, verdana, helvetica, sans serif;font-size:0.8em;color: #000000;background-color:#ffffff;}
h1 {font-size:1.2em;}
h2 {font-size:1em;}
h1,h2 {margin:0.5em;font-weight:bold;}
p {margin:0.8em}
*/

html, body, table { 
	height: 100%; 
	font: 14px Helvetica, Arial, sans-serif;
	background: #fff;
	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: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #BC9632;
}

body {
scrollbar-base-color: #BC9632;
scrollbar-arrow-color: #8f6a08;
scrollbar-DarkShadow-Color: #aa7d07; 
}

#wrapper {
	/*we need to tell the borwser the size of the container / division*/
	width:800px;
	height:400px;
		
	/*alings the page to the center horizontal (x)*/
	margin-left:auto;
	margin-right:auto;
	
	/*aligns the page to the center vertical (y)*/
	position: absolute;
	top: 50%;
	left: 50%;
	
	/*resets the offset (should be half the width and height*/
	margin-top:-300px;
	margin-left:-400px;
	
	/*allows us to see wrapper*/
	background-color:red;
}

.twoColFixLt #container {
	width: 850px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: none;
	text-align: left; /* this overrides the text-align: center on the body element. */
}

.twoColFixLt #mainContent {
	padding: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

table {
	padding:0px;
	margin:0px;
}
	
p {
	padding:0px 0px 20px 50px;
}	

/* IMAGES */
img.img-align-left { /*formats images as inline with padding*/
margin:0 8px 0 0;
padding:3px;
display:block;
background:#fff;
float:left;
}

img.img-align-right { /*formats images as inline with padding*/
margin:0 0 0 8px;
padding:3px;
display:block;
background:#fff;
float:right;
}

/* LINKS */
a:link
{
  color:#7b5b07;
  text-decoration:none;
}

a:visited
{
  color:#7b5b07;
  text-decoration:none;
}

a:hover
{
  color:#c4a452;
  text-decoration: underline;
}

a:active
{
  color:#c4a452;
  text-decoration: underline;	
}

/* wrapper to align center of page */
#wrapper {
	/*we need to tell the borwser the size of the container / division*/
	width:850px;
	height:570px;
		
	/*alings the page to the center horizontal (x)*/
	margin-left:auto;
	margin-right:auto;
	
	/*aligns the page to the center vertical (y)*/
	position: absolute;
	top: 50%;
	left: 50%;
	
	/*resets the offset (should be half the width and height*/
	margin-top:-285px;
	margin-left:-425px;
	
	/*allows us to see wrapper*/
	background-color:#ffffff;
}

