@import "Wizard.css";

/* CORE LAYOUT */

/* Craft the core layout of the page. this includes positioning and
 * gutter space. colors and fonts are set in Theme.css.
 * When defining a border, default its color to white which is probably
 * the safest thing to do.
 */
#pageWrapper
{
	width:950px;
}
#header
{
	padding: 0.5em 0;
}
#outerColumnContainer
{
	/* reserves space for the left and right columns. you can use either
	 * padding, margins, or borders, depending on your needs. however you
	 * can use the border method to create a background color for both left
	 * and right columns
	 */
	border-left: 0;
	border-right: 0;
}
#innerColumnContainer
{
	border: solid 1px #fff;
	border-width: 0 1px;
	margin: 0 -1px;		/* compensate for the borders because of
				   100% width declaration */
	width: 100%;
	z-index: 1;
}
#innerColumnContainer, #outerColumnContainer { border-right-width: 0; border-left-width: 0; }
#SOWrap
{
	float: left;
	margin: 0;
	width: 100%;
	z-index: 3;
}
#middleColumn
{
	float: right;
	margin: 0;
	width: 100%;
	z-index: 5;
}
#leftColumn, #rightColumn
{
	display:none;
}
#footer
{
	padding: 0.5em;
	text-align:center;
}

p.fontsize-set
{
	text-align: center;
}
p.fontsize-set img
{
	border-width: 0;
}


.validationSummary
{
	width:770px;
	margin:0 90px;
	margin-bottom:10px;
}
