
/* Layout Stylesheet */

* { /*Sets border, padding and margin to 0 for all elements.  This is important for 100% height to work. */
	padding: 0px;
	margin: 0px;
	border: 0px;
}

body, html {
	color: #000000;
	font-family: "Times New Roman", Times, serif;
	font-size: 12px;
	text-align: center; /* Centers the design in old versions of IE. */
	min-height: 100%;
	letter-spacing: 0.05em;
}

html {
	background: url(../images/body_bg.gif) repeat-x;
}

body {
	background: url(../images/main_bg.png) center top repeat-y;
}

* html body {  
	background: url(../images/main_bg.gif) center top repeat-y; /* Star hack because IE doesn't support transparent PNG. */
}

#mainContainer {
	width: 935px;
	margin: 0 auto; /* Centers the design in modern browsers. */
	min-height: 100%;
	background: url(../images/footer_bg.gif) bottom right no-repeat;
	text-align: left; /* We centered the body text for IE hack, now we have to move the text back to the left. */
}

* html #mainContainer {
	height: 100%;  /* Star hack because IE doesn't support min-height. */
}

#leftColumn {
	float: left;
	width: 141px;
	text-align: right;
	line-height: 25px;
	margin-right: 13px;
	letter-spacing: normal;
}

#contentColumn {
	position; relative;
	border: 0px solid #000;
	margin-bottom: 150px;
	padding-right: 41px;
}

#leftContent {
	margin-left: 187px; /* This column's width is set in column.js */
}

#rightContent {
	float: right;
	width: 226px;
	padding-top: 50px;
}

#logo {
	text-align: center;
	padding-top: 23px;
	padding-bottom: 23px;
}

#logo img{
	border: 0px;
}

#footerwrapper {
	width: 917px;
	height: 146px; /* If the content exceeds the height, you will get a vertical scrollbar and the content will overflow. */
	margin: 0 auto;
	margin-top: -146px; /* Use a negative margin-top to move the footer up the same amount as its height to avoid vertical scrolling. */
	position: relative;
}

#footer {
  width: 700px;
  text-align: center;
  position: absolute;
  bottom: 0px;
  left: 155px;
  color: #8a7d65;
  background: url(../images/footer_border.gif) top center no-repeat;
  height: 35px;
  padding: 20px 20px 0 20px;
}

#footer .left {
	float: left;
}

#footer .right {
	float: right;
	text-align: right;
}

#footer a:link, #footer a:visited {
	color: #8a7d65;
	text-decoration: none;
}

#footer a:hover {
	color: #000000;
}

.clear {
	clear: both;
	height: 1px;
	overflow: hidden;
	font-size: 1px;
	padding: 0px;
	margin: 0px;
}

.clearRight {
	clear: right;
	height: 1px;
	overflow: hidden;
	font-size: 1px;
	padding: 0px;
	margin: 0px;
}