/*******************************************************************************
*  twoColumnsLeft.css : 2004-08-17 : Ruthsarian Layouts
* ------------------------------------------------------------------------------
*  This stylesheet removes the right-hand column from the 3 column layout
*******************************************************************************/

html>body #rightColumn {
	display: none;
}
* html #rightColumn * {
	display: none;	
}
#rightColumn {
	position: absolute;
	margin: 0;
	padding: 0;
	width: 0;
	height: 0;
	border: none;
}
#outerColumnContainer, #innerColumnContainer {
	border-right-width: 0;
}
#innerColumnContainer {
	margin-right: 0;
}

/******************************************************************************/