/** 
 * Layout 3 Column Capped Stylesheet
 * ---------------------------------
 * The following styles should be based upon mostly layout and not content design. The following
 * should be observed. Layout columns are placed on TD tags.
 *
 * Do's
 * 1. Place width for total layout here. Individual layouts need to be placed in Content stylesheets
 * 2. Do place heights here.
 * 3. Background colors & borders for entire columns can be used here.
 * 
 * Dont's
 * 1. Do not place width here except for .layout (they will not work). Instead place in Content
 * 2. Do not use margins or padding here. Instead place in Content
 * 3. Do not use fonts here except
 * 
 */
 
 
body {
	padding:0;
	margin:0;
}

.layout {
	width: 100%;
	margin-top: 0px;
	margin-left: auto;
	margin-right: auto;
}

.layout_header {
	background-color:#FFFFFF;
}

.layout_expander {
	height: 400px;
}

.layout_column1 {
	border: 1px solid #CCC;
	width: 218px;
}

.layout_column2 {
	width: 500px;
}

.layout_column3 {
	border: 1px solid #CCC;
	width: 218px;
}

.layout_footer {
	background-color:#EFEFEF;
	background-image: url(/images/footer_white.jpg);
	background-repeat: repeat-x;
}
