/*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; 
	background-image: url(Images/ribbons.gif);
	background-repeat:repeat;
	height:100%; 
	border:0; 
	background-color: Gray;
}

#FC_PageContainer
{
	width: 900px;
}

#FC_MainArea
{	
	min-height: 600px;
}



#FC_HeaderControl
{
	float: left;
	width: 100%;
}
#MainContentArea
{
	float:left;
	width: 735px;
	min-height: 600px;
}
#MainColumn
{
	width:550px;
	height: 100%;
	float:left; 	
}
#LeftColumn
{
	float: left;
	width: 162px;
}
#RightColumn
{
	width:18%;
	float:right;
	margin-right:10px;

}
.FC_FooterControl
{

	float: left;
	width: 100%;
	height:22px;
}

.clear { clear:both;}