@charset "iso-8859-1";
/* 
= Default Page Layout =
Based on the SkidooToo layout from Ruthsarian Labs, this CSS defines a
fixed-width, two-column, source ordered layout that allows a background color
to be used for the left column that scales with the content.
*/
#pageWrapper
{ 
    width: 770px; 
    margin: 0 auto; 
}
* html #pageWrapper
{
	/* \*/
	word-wrap: break-word;
}
#outerColumnContainer
{
    border-left: solid 195px #FFF;
}
#innerColumnContainer
{
	border-width: 0 1px;
	margin: 0 -1px;
	width: 100%;
	z-index: 1;
}
#leftColumn, #middleColumn, * html #SOWrap
{
	overflow: visible;	/* fix for IE italics bug */
	position: relative;	/* fix some rendering issues */
}
#SOWrap
{
	float: left;
	margin: 0 -1px 0 0;
	width: 100%;
	z-index: 3;
}
#middleColumn
{
	float: right;
	margin: 0 0 0 -1px;
	width: 100%;
	z-index: 5;
}
#leftColumn
{
	float: left;
	margin: 0 1px 0 -195px;
	width: 195px;
	z-index: 4;
}
