/* The layout is based on the Jello Mold method */
/* http://www.positioniseverything.net/articles/jello-expo.html */

/* Copy & Adjust this stylesheet to modify the outer body of the web page */
/* This controls the width of the content, and the centering of that content */
/* To alter the width of the centered screen, follow the dimension tips in the website above */

html, body, ol, ul, li, dl, dt, dd, img {
	margin: 0; 
	padding: 0;
	border: 0;
	list-style: none;
}

body {
	padding: 0 350px;	/* the critical side padding that sets the natural min-width! */ 
	text-align: center;	/* centers the #sizer element in IE5.x/win */
}

#ltPage { 
	margin: 0 auto;		/* centers in standard browsers */
	width: 70%;		/* this value controls liquidity; 0% = full rigid, 100% = full liquid */
	text-align: left;	/* resets centering hack to default text alignment for the page*/
	max-width: 300px;	/* for large screen resolutions.  IE requires a JS in a conditional comment in the header */
	padding: 0;
}

#ltPageContainer {		/* Any % height here causes IE to lose the neg right margin */
	position: relative;	/* makes #expander visible outside #bodysizer in IEwin */
	margin: 0 -350px;	/* neg side margin values should be < or = to side body padding */
	min-width: 900px;	/* This prevents Safari from losing the negative margins in narrow windows */
}



/************** Special Fixes for IE/Win *************/

/* \*/
* html body, 
* html #ltPage, 
* html #ltPageContainer, 
* html #ltContent { height: 0; }
/* Holly hack */

/* Inner Page Elements */

/* page header */

.ltHeader {
	display: none;
}

/* page footer */

.ltFooter {
	display: none;
}

/* page content */

#ltContent {
	position: relative;	/* this positioning may be needed for IEwin if page is to contain positioned elements */
	margin-top: 5px;
}

.ltFloatWrap {
	float: left;
	width: 100%;
}

.ltContent01 {
	float: left;
	width: 100%;
	min-height: 580px;
}


.ltContent02 {
	display:none;
}


.ltContent03 {
	display: none;
}


/************** Special Fixes *************/

.ltContentContainer {word-wrap: break-word;}
/* Prevents long urls from breaking layout in IE, must 
be hidden in a conditional comment for CSS to validate */

img {max-width: 100%;} 
/* prevents oversize images from breaking layout in browsers that support max-width */

/* \*/
* html .ltContentContainer a, 
* html .ltContentContainer {height: 1%;}
* html .ltContentContainer p {margin-right: -6px;} /*** Variance fixes for IEwin ***/
* html .ltContent01 {height: 615px; }
/* Holly hack */


/* general */

.brclear {			/* Use a break with this class to clear float containers */
  clear:both;
  height:0;
  margin:0;
  font-size: 1px;
  line-height: 0px;
}

