/********************************************************************************
 This stylesheet defines the base page structure, i.e. module containers.
 No brand specific styles allowed here!!!
*********************************************************************************/
.page
{
    height: auto;
    margin: 0px auto;
    overflow: auto;
}

/********************************************************************************
 Page header container
*********************************************************************************/
.header
{
    clear: both;
    position: relative;
}

/********************************************************************************
 Back to results
*********************************************************************************/
.backtoresults
{
	clear:both;
	height:20px;
}
/********************************************************************************
 Main content container
*********************************************************************************/
.body
{
    clear: both;
    overflow: hidden;
}
/*******************************************************************************
Left Column
********************************************************************************/
.leftCol{ 
	float:left;
	}
/********************************************************************************
 Middle column content container
*********************************************************************************/
.mainCol
{
    float: left;
}

/********************************************************************************
 Right column content container
*********************************************************************************/
.rightCol
{
    float: right;
}

/********************************************************************************
 Page footer
*********************************************************************************/
.footer
{
    clear: both;
}
/********************************************************************************
 Simple grid system
*********************************************************************************/
.grid
{
    overflow: hidden;
}
.cell_1of2
{
    float: left;
    width: 50%;
}
.cell_1of3
{
    float: left;
    width: 33.33333%;
}
.cell_2of3
{
    float: left;
    width: 66.66666%
}
.cell_3of4
{
    float: left;
    width: 75%;
}

/********************************************************************************
centred within column
*********************************************************************************/
.centre{width:100%; text-align:center;}

