/*(c) - Copyright 1997-2018 Latitude Technologies Inc.  All Rights reserved. */
/* CSS Document */
/*******************************************************************************
* Provide a fixed width to the layout
* If a fluid layout is desired just comments the following styles, or remove
* this style sheet from master.css
*******************************************************************************/

* html body
{
	text-align: center;	/* hack to center this under IE5 */
}

* html #pageWrapper
{
	text-align: left;	/* keep the content left-aligned */
}

/* QVD-252 BL 3/16/2018 */
#pageWrapper
{
	max-width:1280px;  /* old: width:998px; new:1280px; */
	min-width:998px;
	margin-left:auto;
	margin-right:auto;
}

.leftOldPart { 
	width:11%;
	height:100%;
	float:left;
	position:relative;		
}

.middleOldPart {
	width:78%;
	height:100%;
	float:left;
	position:relative;	
}

.rightOldPart {
	width:11%;
	height:100%;
	float:right;
	position:relative;		
}

.leftNewPart {  /* responsive from 998px to 1280px */
	width:1%;
	height:100%;
	float:left;
	position:relative;		
}

.middleNewPart {
	width:98%;
	height:100%;
	float:left;
	position:relative;	
}

.rightNewPart {
	width:1%;
	height:100%;
	float:right;
	position:relative;		
}

table.center {
	float:none;
	margin-left:auto;
	margin-right:auto;
}

/******************************************************************************/