/*Layout for website*/ 
/*Style: Default 3 column
|----------------------------|
|	Header                           |
|________________________|
|          |                |          |
|          |                |          |
|  LEFT  |   MAIN      | RIGHT |
|          |                |          |
|          |                |          |
|          |                |          |
|          |                |          |
|________________________|
|		Footer                       |
|________________________|
*/
/*Max Width: 900 px*/
/*Min Height: 600px*/
body, html {
	min-width:800px;
	margin:0; 
	padding:0; 
	height:100%; 
	border:0;
	
	
}

#FC_PageContainer
{
	width:100%;
	margin-right:0px;
	margin-left:0px;
	float:left;
}

#FC_HeaderControl
{
	float: left;
	width: 100%;
}
#FC_MainArea
{
	width:100%;
	min-height:600px;
	max-height:100%;
	float:left;
	z-index:0;
	position: relative;
	background-image: url("../Styles/images/LeftColumn.jpg");
	background-repeat:repeat-y;
	
}
#MainColumn
{
	float:left; 
	margin-top:-10px;
	width:60%;
	
}
#LeftColumn
{
	float: left;
	width: 200px;
	
}
#RightColumn
{	margin-top:-10px;
	width:15%;
	float:left;
}
.FC_FooterControl
{

}

.clear { clear:both;}

