/* 
	Base Layout
		Setup the base layout and measurements. A combination of cascaded styles
		replacing these base values should be done to get the desired layout.
		The base is setup for fluid layout set for 800x600.
	20060831-1345 SMa
 */

/* Get rid of the vertical scrollbar in IE */
html {
	overflow: auto;
}

/* html, body,*/
#page {
	min-width: 770px; /* Force a horizontal scrollbar in Mozilla for fluid layout */
	min-height: 100%;
	width: 100%;
	height: 100%;
}

html>body, html>body #page {
	height: auto;
}

body {
	margin: 0px;
	padding: 0px;
	font-family:Trebuchet MS;
}

#header {
	text-align: left;
	width: auto;
	height: 150px;
	padding: 0px;
	margin: 0px;
	z-index: 3;
}

/* Wrap the left, right and content in the .clearfix class.
   The order in HTML markup must be left, right and content */
#left {
	float: left;
	width: 200px;
	padding: 0px;
	margin: 0px;
	z-index: 2;
}


#right {
	float: right;
	width: 200px;
	padding: 0px;
	margin: 0px;
	z-index: 1;
}

#content {
	width: auto;
	padding: 0px 0px 10px 0px; /* Pad out the bottom of the content area so there is some whitespace */
	margin: 0px 200px 0px 200px;
	z-index: 5;
}

#footer {
	position: relative;
	width: auto;
	height: 75px;
	display: block;
	z-index: 4;
}

.clearfix:after {
	content: "."; 
	display: block;
	height: 0; 
	clear: both; 
	visibility: hidden;
}
 
.clearfix{display: inline-block;}

/* Hides from IE-mac \*/
* html .clearfix{height: 1%;}
.clearfix{display: block;}
/* End hide from IE-mac */