/* CSS Layout Styles */

html {
height:100%; /* fix height to 100% for IE */
max-height:100%; /* fix height for other browsers */
padding:0; /*remove padding */
margin:0; /* remove margins */
border:0; /* remove borders */
background:#fff; /*color background - only works in IE */
font-size:100%; /*set default font size */
font-family:verdana, "trebuchet ms", tahoma, arial, sans-serif; /* set default font */
/* hide overflow:hidden from IE5/Mac */
/* \*/
overflow:hidden; /*get rid of scroll bars in IE */
/* */
}

body {
height:100%; /* fix height to 100% for IE */
max-height:100%; /* fix height for other browsers */
overflow:hidden; /*get rid of scroll bars in IE */
padding:0; /*remove padding */
margin:0; /* remove margins */
border:0; /* remove borders */
}

#content {
	overflow:auto; /* add scroll bars as necessary */
	position:absolute; /* position absolutely */
	z-index:-1; /* If required to cover any other divs */
	top:66px; /* a value to miss the header */
	bottom:0px; /* a value to miss the footer */
	left:0px; /* a value to miss any navigation div */
	right:0; /* this will put the scroll bar at the right of the page */
	}


* html #content {
	height:100%; /* full screen height */
	width:100%; /* full screen width 8 */
	top:0; /* place the content at the top */
	left:0; /* and left of the body */
	border-top:66px solid #fff; /*add a top border to miss the header 
				(this is SUBTRACTED from the 100% height on quirks mode) */
	border-bottom:0px solid #fff; /*add a bottom border to miss the footer 
				(this is SUBTRACTED from the 100% height on quirks mode) */
	border-left:0px solid #fff; /* add a left border to miss any navigation div 
				(this is SUBTRACTED from the 100% width on quirks mode) */
	}

#contentPayments {
	overflow:auto; /* add scroll bars as necessary */
	position:absolute; /* position absolutely */
	z-index:-1; /* If required to cover any other divs */
	top:180px; /* a value to miss the header */
	bottom:0px; /* a value to miss the footer */
	left:1px; /* a value to miss any navigation div */
	right:0; /* this will put the scroll bar at the right of the page */
	}


* html #contentPayments {
	height:100%; /* full screen height */
	width:100%; /* full screen width 8 */
	top:0; /* place the content at the top */
	left:0; /* and left of the body */
	border-top:180px solid #fff; /*add a top border to miss the header 
				(this is SUBTRACTED from the 100% height on quirks mode) */
	border-bottom:0px solid #fff; /*add a bottom border to miss the footer 
				(this is SUBTRACTED from the 100% height on quirks mode) */
	border-left:1px solid #fff; /* add a left border to miss any navigation div 
				(this is SUBTRACTED from the 100% width on quirks mode) */
	}

#contentDriverPay {
	overflow:auto; /* add scroll bars as necessary */
	position:absolute; /* position absolutely */
	z-index:-1; /* If required to cover any other divs */
	top:233px; /* a value to miss the header */
	bottom:0px; /* a value to miss the footer */
	left:1px; /* a value to miss any navigation div */
	right:0; /* this will put the scroll bar at the right of the page */
	}


* html #contentDriverPay {
	height:100%; /* full screen height */
	width:100%; /* full screen width 8 */
	top:0; /* place the content at the top */
	left:0; /* and left of the body */
	border-top:233px solid #fff; /*add a top border to miss the header 
				(this is SUBTRACTED from the 100% height on quirks mode) */
	border-bottom:0px solid #fff; /*add a bottom border to miss the footer 
				(this is SUBTRACTED from the 100% height on quirks mode) */
	border-left:1px solid #fff; /* add a left border to miss any navigation div 
				(this is SUBTRACTED from the 100% width on quirks mode) */
	}
/* END OF LAYOUT STYLES */