/* wcg_styles2.css - For the two column display */

/* .centercolumn base settings
====================================
These values allow the two columns to butt up against each other
You can change the margins between them either by altering these values. However, in most cases altering the padding property of the .[$column]padding selectors will be simpler and more effective.
------------------------------------
NN4
------------------------------------
margin-left: -25px
margin-right: 0px
margin-top: -1px
If you must change these, experiment with these values extensively since the center column does not move in a direct one-to-one relationship to the value specified here. The margin-top of -1px is needed to make NN4 line up correctly.
------------------------------------
OmniWeb
------------------------------------
margin-left: 0px;
margin-right: 0px;
------------------------------------
Other browsers
------------------------------------
margin-left: width of .leftcolumn
margin-left: final width of .rightcolumn
margin-right is set to the value of the overriding values for .rightcolumn's width.
*/
.centercolumn
	{
	margin: 0px;
	padding: 0px;
	border-right: 2px solid #fa6;
	border-left: 2px solid #fa6;

	}

/* NN4 values */
.centercolumn
	{
	margin-right: 0px;
	margin-left: -25px;
	}
/* Other browsers */
/*/*/
.centercolumn
	{
	margin-left: 180px;
	}
/* */

/* OmniWeb (exclude from IE5 mac) */
/*\*/
.fake.centercolumn
	{
	margin-right: 0px;
	margin-left: 0px;
	}
/* reset IE*/
* html body .centercolumn
	{
	margin-left: 180px;
	}
