@charset "iso-8859-1";

/*******************************************************************************
*  colors.css : 2004-06-28 : Ruthsarian Layouts
* ------------------------------------------------------------------------------
*  defines background and foreground colors of elements within the layout.
*  sites that want to use different color schemes for different sub-sections
*  of a website need only make different versions of this stylesheet and link
*  or import them as need. The other stylesheets can be shared across the
*  entire site.
*******************************************************************************/

body
{
	background-color: #FFFFFF;
	color: #46485D;
}
#outerColumnContainer
{
	border-left-color: #FFFFFF;	/* left hand column background color */
	border-right-color: #FFFFFF;	/* right hand column background color */
}

#footer
{
	background-color: #FFFFFF;
	color: #46485D;
}
#outerColumnContainer, #contentcolumn	/* selector case hack to reset version 4 stylesheet setting */
{
	background-color: #FFFFFF;		/* this sets the background color on the center column */
	color:#46495D;
}

#leftColumn, #rightColumn, #contentColumn
{
	color:#46495D;
	background-color: #FFFFFF;
}


/******************************************************************************/