@charset "iso-8859-1";

/*******************************************************************************
*  twoColumnsRight.css : 2004-08-17 : Ruthsarian Layouts
* ------------------------------------------------------------------------------
*  This stylesheet removes the left-hand column from the 3 column layout
*******************************************************************************/

html>body #leftColumn
{
	display: none;	/* for compliant browsers, hide this column entirely */
}
* html #leftColumn *
{
	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. */
}

.highlightedObject {
	font-weight: bold;
	font-style: italic;
}

.emphasizedText {
	font-weight: bold;
	background: #dcdcdc;
}

.emphasizedText2 {
	font-weight: bold;
	font-size: 12pt;
	color: #003366;
}

.emphasizedText3 {
	font-weight: bold;
	color: #aa0000;
}

.centeredObject {
	text-align: center;
	border-width: 0px;
}

#floatImage {
	text-align: center;
}

#leftColumn
{
	position: absolute;
	margin: 0;
	padding: 0;
	width: 0;
	height: 0;
	border: none;	/* remove anything that'll give this elemnt width. */
}
#outerColumnContainer, #innerColumnContainer
{
	border-left-width: 0;	/* to get from 3 to 2 columns, we must hide the
				   left-side border */
}
#innerColumnContainer
{
	margin-left: 0;
}

#articlesBody {
	width: 80%;
	text-align: left;
	background-color: #FFFFFF;
	font-size: 12pt;
	margin-left: 10%;
}

#articlesBodyText { margin-left: 10px; }



/**** TABLE STUFF ****/

.tableAuthor {
	width: 75%;
	margin-left: 200px;
}

.tableCellAuthor {
	width: 25%;
	text-align: center;
	background-color: #F6FBC3;
	color: #804040;
	font-weight: bold;
	font-style: italic;
}	

.tableCellNarrative {
	width: 75%;
	text-align: left;
	background-color: #FFFFFF;
}

.tableCellNarrativeText {
	margin-left: 5%;
	font-style: italic;
}
	
/******************************************************************************/
