
/* ---------->>> page content position styles: <<<---------------------------------------------------------------------------*/
/* ------------  the following styles govern the position/style of the content area of interior pages (area with white background), including left sub-navigation links, page text and any photos that appear on right side of page ------------------------------*/

/* note: this is a 2-column content layout with sub-navigation links (left) and text (center); no photo (right) */
/* below documents the only changes applied to interior_layout_3cols.css in order to arrive at this 2-column layout: */
/*
#content {		padding-right:0px;	}
#rightColumn {	display:none;}
*/

/* contentWrapper: sets fixed width for content area (1000px) without setting any padding */
#contentWrapper {
	position:relative;
	top:0px;
	width:1000px;	
	border:0px solid #cccccc;
}

/* contains main content of page; also sets left/right padding for right and left columns to display, without specifying width */
/* (ie calculates overall width incorrectly, so we have to get sneaky and set the overall width first then add padding second) */
#content {
	float:left;		 		 /* have to float this div or it will expand beyond 1000px in ie */
	padding-left:225px;      /* left column fullwidth */
	padding-right:0px;     	 /* right column fullwidth + center column padding */
	text-align:left;
	top:0px;
	left:0px;
	height:auto;
	overflow:hidden;	
	min-height:300px; 			/* min-height is for short pages (contact us) where right image scrolls vertically in ff */
	border-bottom-width: 15px;
	border-bottom-style: solid;
	border-bottom-color: #000000;	
	background-repeat: no-repeat;
	background-position: left top;
	background-color: #ffffff;
}

#content .multiColumn {
	position: relative;
	float: left;
}

/* centerColumn: contains text and other content for this page  */
#centerColumn {
	padding-top:0px;    	/* center column padding */
	width:100%;
	overflow:hidden;
	border:0px #666666 solid;
}

/* bodyText: spaces out text and other page content from edges of centerColumn */
/* (adding padding directly to centerColumn is problematic because of the way ie incorrectly calculates width)  */
#bodyText {
	padding-top:0px;
	padding-left:25px;
	padding-right:50px;
	padding-bottom:50px;
	border:0px #ffcccc solid;
}

/* leftColumn: contains sub-navigation links that appear down left side of page */
#leftColumn {
	width: 200px;             /* left column width */
	right: 225px;             /* left column fullwidth + center column padding */
	margin-left: -100%;
	padding-top:50px;
	padding-left:25px;
	overflow: hidden;
	border:0px #333333 solid;
}

/* rightColumn: contains any right column content, such as a photo */
/* (to make it disappear, set display:none and also set interiorContent's padding-right:0px; ) */
#rightColumn {
	display:none;
}

#clearIt {
  clear: both;
}