/** 
 * Layout 2 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-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
}

.layout_header {
	background-color:#D5E3EF;
	background-image: url(/images/background-top.jpg);
	background-repeat: repeat-x;
	margin:0;
	padding:0;
	border-bottom:5px solid #004871;
}

.layout_expander {
	height: 400px;
}

.layout_column1 {
	width:200px;
	padding-top:0px;
	padding-bottom:20px;
}

.layout_column2 {
	width:560px;
}
.layout_column3 {
	width:200px;
	border-top: 1px solid #D5E3EF;
}

.layout_footer {
	background-color:#004871;
	padding:10px 0px 0px 0px;
}
.content_column1 {
}

.content_column2 {
	margin: 0px 0px 0px 30px;
	border-top: 1px solid #D5E3EF;
	padding: 30px 30px 20px 0px;
}

.content_column3 {
	border-bottom: 1px solid #D5E3EF;
	background-color: #F7F7F7;
}
.bottom_footer_bg {
	width: 100%;
	margin-top: 0px;
	margin-left: auto;
	margin-right: auto;
	background-repeat: repeat-x;
	padding-top: 10px;
}
