.clear { 
	clear: both; 
}

#mainContainer {
	width: 760px;
	margin: 0 auto 0 auto;
	min-height: 300px;
	text-align: left; /*** Because we centered the text in body we have to move the text back to left aligning ***/
}

* html #mainContainer {
	height: 300px; /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}

/**************************
HEADER
**************************/
#headerImage {
	background-image: url(../pictures/layout/header.png);
	background-position: bottom center;
	background-repeat: no-repeat;
	text-align: center;	
	padding: 25px 0 25px 0;
}

/**************************
CONTENT AND COLUMNS
**************************/
.outerBody {
	padding-left: 165px;  
	padding-right: 120px;
	background-image: url(../pictures/layout/outerBody.png);
	background-repeat: repeat-y;
	background-position: top center;
}

.innerBody {
	width: 585px; /*** This width is for non-IE browsers. Mozilla makes this necessary. Be sure to check your layout in different browsers if you changes this value. Especially IE7 seems to create a horisontal scroll if this value is set too large ***/
}

* html .innerBody {
	width: 100%;
}

/*** div.inner is wider than its container, div.outer, and so overlaps to the right, pushing
div.right into the proper position. IE expands div.outer instead, requiring a Tan hack to avoid 
blowing the layout apart. IE gets the original 100% width as in the Livingstone layout.
***/
.floatWrap {
	float: left;
	width: 630px;
	margin-left: -165px; /*** Same length as .outer padding-left but with negative value ***/
}

/*** div.left is in div.float-wrap, and when div.float-wrap is neg margined to the left, 
div.left is carried over into the proper position. 
***/
#content {
	float: right;
	width: 470px;
	position: relative; /*** IE needs this  ***/
	margin-top: 1em;
}

.contentWrap {
	padding: 5px;
}

/**************************
LEFT COLUMN
**************************/
/*** div.left is in div.float-wrap, and when div.float-wrap is neg margined to the left, 
div.left is carried over into the proper position. 
***/
#left {
	float: left;
	width: 140px;
	min-height: 250px;
	padding: 45px 5px 5px 15px;
	font-variant: small-caps;
	position: relative; /*** IE needs this  ***/
}

* html #left {
	height: 250px;
}

#left li a {
	color: black;
	text-decoration: none;	
	display: block;
}

#left ul {
	list-style: none;
}

#left ul li {
	margin: .5em 0 .5em 0;
	width: 110px;
}

#left ul li ul {
	margin: 0 0 0 1em;	
	width: 110px;
}

#left ul li ul li {
	margin: .2em 0 .2em 0;	
	width: 110px;
}

#left ul li a {
	width: 100%;	
}


/*************************
RIGHT COLUMN
**************************/
#right {
	float: right; 
	width: 100px;
	padding: 5px;
	min-height: 250px;
	position: relative; /*** IE needs this  ***/
}

* html #right {
	margin-right: -120px; /*** IE gets this margin. ***/
	height: 250px;
}

#right div.externalLinks {
	margin-bottom: 1.5em;
	font-size: .7em;
}

#right div.externalLinks div.externalLinksLinks {
	margin-left: .5em;
	font-variant: small-caps;
}

/**************************
FOOTER
**************************/
#footer {
	background-image: url(../pictures/layout/footer.png);
	background-position: top center;
	background-repeat: no-repeat;
	font-size: .8em;
	font-weight: bold;
	width: 760px;
	height: 100px;
	padding: 1em 0 0 0;
	margin: 0 auto;
	text-align: center;
}

/**************************
ACTIONS
**************************/
#left li.hover {
	background-image: url(../pictures/layout/navigationFade.png);
	background-position: top left;
	background-repeat: repeat-y;
}

/**************************
siteMessage
**************************/
div#footer div.siteMessage {
	position: static;
	text-align: center;
	width: 90%;
	font-size: 1.1em;
	margin: -10px auto 0;
	color: red;
}

div#footer div.siteMessage a {
	color: red;
}

div.siteMessage {
	color: #e9e132;
	font-size: .9em;
	margin-left: 73px;
	position: absolute;
	top: 178px;
	width: 458px;
}

div.siteMessage a {
	color: #e9e132;
}

div.siteMessage em {
	font-weight: bold;
	font-style: italic;
}
