﻿/*|------------------BODY--------------------------------------------------------------------------------------------------|*/
/*|                                                                                                                        |*/
/*|  |---------------WRAPPER--------------------------------------------------------------------------------------------|  |*/
/*|  |                                                                                                                  |  |*/
/*|  |  |------------MASTHEAD----------------------------------------------------------------------------------------|  |  |*/
/*|  |  |                                                                                                            |  |  |*/
/*|  |  |  |---------HEADING--------------------------------------------------------------------------------------|  |  |  |*/
/*|  |  |  |                                                                                                      |  |  |  |*/
/*|  |  |  |------------------------------------------------------------------------------------------------------|  |  |  |*/
/*|  |  |                                                                                                            |  |  |*/
/*|  |  |  |---------TOP-NAV--------------------------------------------------------------------------------------|  |  |  |*/
/*|  |  |  |                                                                                                      |  |  |  |*/
/*|  |  |  |------------------------------------------------------------------------------------------------------|  |  |  |*/
/*|  |                                                                                                                  |  |*/
/*|  |  |------------CONTENT-----------------------------------------------------------------------------------------|  |  |*/
/*|  |  |                                                                                                            |  |  |*/
/*|  |  |  |---------MAIN-CONTENT---------------------------------------------------------------------------------|  |  |  |*/
/*|  |  |  |                                                                                                      |  |  |  |*/
/*|  |  |  |------------------------------------------------------------------------------------------------------|  |  |  |*/
/*|  |  |                                                                                                            |  |  |*/
/*|  |  |  |---------SIDEBAR--------------------------------------------------------------------------------------|  |  |  |*/
/*|  |  |  |                                                                                                      |  |  |  |*/
/*|  |  |  |------------------------------------------------------------------------------------------------------|  |  |  |*/
/*|  |  |                                                                                                            |  |  |*/
/*|  |  |------------------------------------------------------------------------------------------------------------|  |  |*/
/*|  |                                                                                                                  |  |*/
/*|  |  |------------FOOTER------------------------------------------------------------------------------------------|  |  |*/
/*|  |  |                                                                                                            |  |  |*/
/*|  |  |  |---------FOOT-NAV-------------------------------------------------------------------------------------|  |  |  |*/
/*|  |  |  |                                                                                                      |  |  |  |*/
/*|  |  |  |------------------------------------------------------------------------------------------------------|  |  |  |*/
/*|  |  |                                                                                                            |  |  |*/
/*|  |  |  |---------FOOT-TEXT------------------------------------------------------------------------------------|  |  |  |*/
/*|  |  |  |                                                                                                      |  |  |  |*/
/*|  |  |  |------------------------------------------------------------------------------------------------------|  |  |  |*/
/*|  |  |                                                                                                            |  |  |*/
/*|  |  |------------------------------------------------------------------------------------------------------------|  |  |*/
/*|  |                                                                                                                  |  |*/
/*|  |------------------------------------------------------------------------------------------------------------------|  |*/
/*|                                                                                                                        |*/
/*|------------------------------------------------------------------------------------------------------------------------|*/


/****************************************************************************************************************************/
/****************************************************************************************************************************/
/* The Body and Wrapper define the overall layout as a centered, variable width column within the available browser window  */
/****************************************************************************************************************************/

body {
	width: 100%;
	background-color: #E8E8E8;
	text-align: center;
}

@media print {
	body {
		width: 220mm;
		background: none;
	}
}

#wrapper {
	width: 90%;
	min-width: 824px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	border: #990000 2px solid;
}

@media print {
	#wrapper {
		width: 220mm;
		border-style: none;
	}
}