/*Layout for website*/ 
/*Style: Default 3 column
|----------------------------|
|	Header                           |
|________________________|
|          |                |          |
|          |                |          |
|  LEFT  |   MAIN      | RIGHT |
|          |                |          |
|          |                |          |
|          |                |          |
|          |                |          |
|________________________|
|		Footer                       |
|________________________|
*/
/*Max Width: 900 px*/
/*Min Height: 600px*/
body, html {
	margin:0; 
	padding:0; 
	height:100%; 
	border:0; 	
	background-color:#ebeeee;
	background-image: url("../Styles/images/BD_Header.jpg");
	background-repeat:no-repeat;
	background-position:center top;
	
}

#FC_PageContainer
{
	width: 900px;
	margin-top:0;
}

#FC_MainArea
{	
	min-height:400px;
	max-height:100%;	
	float:left;
}


#FC_HeaderControl
{
	float: left;
	width: 100%;
}
#MainColumn
{
	width: 674px;
	float:right;
	
}
#LeftColumn
{
	float: left;
	width: 210px;
}
#RightColumn
{
	display:none;
	float:right;
}
.FC_FooterControl
{

	float: left;
	width: 100%;
	padding-top:20px;	
	height: 30px;
}
.PageTitle
{
	float:left;
	width:200px;
}
.Breadcrumb
{
	float:right;
	width:200px;
}

.clear { clear:both;}