@charset "iso-8859-1";

/*******************************************************************************
*  twoColumnsLeft.css : 2004-08-17 : Ruthsarian Layouts
* ------------------------------------------------------------------------------
*  This stylesheet removes the right-hand column from the 3 column layout
*******************************************************************************/

html>body #rightColumn
{
	display: none;	/* for compliant browsers, hide this column entirely */
}
* html #rightColumn *
{
	display: none;	/* ie's ghost-text bug is triggered by key elements
			   having display:none set. #rightColumn is one of those
			   key elements. so we display:none all child
			   elements (doesn't trigger the bug) and try to
			   make #rightColumn have no chance to affect
			   document flow. */
}
#rightColumn
{
	position: absolute;
	margin: 0;
	padding: 0;
	width: 0;
	height: 0;
	border: none;	/* remove anything that'll give this elemnt width. */
}
#contentColumn
{
	margin-left: 0px;
}
#outerColumnContainer, #innerColumnContainer
{
	border-right-width: 0;	/* to get from 3 to 2 columns, we must hide the
				   right-side border */
}
#innerColumnContainer
{
	margin-right: 0;
}

#container {
  padding-left: 220px;   /* LC fullwidth */
  padding-right: 0px;  /* RC fullwidth + CC padding */
}

#support img.imgpadding {padding: 5px 0 10px 0;}
#support h2 {padding-left:0; margin-left:0; font-size:110%;}
#support table {margin: 15px 0;}
#support table td {padding: 0 8px;}
#support td.supbrdr {border-right: 1px solid #ccc; }
#support th.supbrdr {border-right: 1px solid #ccc; }
#support .callout {width: 170px; padding: 10px; background: #F8F4D6; float:right;}

/******************************************************************************/
