/*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: #2e639d;
	background-image:  url(../Styles/Images/AH_Background.jpg);	
	background-position:top center;
	background-repeat:no-repeat;
}

#FC_PageContainer
{
	width:900px;
}


#FC_HeaderControl
{
	float: left;
	width: 100%;
}
#MainColumn
{
	width:100%;
	min-height: 400px;
	float:left; 	
	padding-bottom: 5px;

}
#LeftColumn
{
	float: left;
	width: 150px;
}
#RightColumn
{
	width:100px;
	float:right;
}
.FC_FooterControl
{

	float: left;
	width: 100%;
}

.clear { clear:both;}