/********************************************************************************
 This stylesheet defines the base page structure, i.e. module containers.
 No brand specific styles allowed here!!!
*********************************************************************************/
.page
{
    height: auto;
    overflow: auto;
}

/* Page template  */
.page { width: 960px; overflow: hidden; }

/* forms */
fieldset { display: block; }
/*fieldset legend { text-indent: -9999px; } */
fieldset .field { overflow: hidden; }
fieldset .field .field-label, fieldset .field .field-input { float: left; }

/********************************************************************************
 Page header container
*********************************************************************************/
.header
{
    clear: both;
    position: relative;
}

/********************************************************************************
 Boom box / tri-color bar
*********************************************************************************/
.boombox
{
    clear: both;
}
/********************************************************************************
 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%;
}


