/*============== LAYOUT - just newspaper style sizing (padding, margins, height, width etc) no styles ==========================*/
/* site dimensions
 			TOTAL WIDTH: 1000px
			  ALL CONTENT WIDTH: 923px
				#PAGE 2
					sidebar1: 501px (481px + 20padright)
					mainContent:  221px (211px bannersmall logos + 10pad)
					sidebar2: 201px (right side submenu 201px)
			TOTAL HEIGHT: 
			  HEADER HEIGHT: 188px
				CONTENT HEIGHT: 493px
				FOOTER HEIGHT: 
*/

/************************* PAGE 1 home page ***************************/

.page1 #container { 
	width: 923px;        /* 923 the width of actual content (see newsletter graphic that spans horizontally)
	                        inside the 1000 background so we can see gradients on left and right, allows pixels either side */
	background:#FFFFFF; 
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	/*border: 1px solid #000000; */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.page1 #header {
	background: #FFFFFF;
	padding: 0 0px 0 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	height: 183px;
	width: 923px;
} 
	.page1 #header h1 {
		margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
		padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
		width: 923px;
	}
.page1 #content {
	height:493px;
	width: 923px;
}	
.page1 #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 201px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 0px 0px 0px;
}
	.page1 #sidebar1 img {
		margin-bottom: 5px;
	}
.page1 #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 201px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 0px 0px 0px; /* padding keeps the content of the div away from the edges */
}
	.page1 #sidebar2 img {
		margin-bottom: 5px;
	}
.page1 #mainContent {
	margin: 0 201px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0 5px 0 5px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	width: 511px;
	position:relative;
} 
.page1 #footer {
	padding: 0 0px 0 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFFFFF;
	width: 923px;
} 
	.page1 #footer p {
		margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
		padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	}
	
/******************** PAGE 2 subpage from home page with logos (eg electronics.html) ************************/
	
.page2 #container {
	width: 923px;
	background:#FFFFFF;
	margin: 0 auto;
	/* border: 1px solid #000000; for testing */
	text-align: left;
} 
.page2 #header {
	background: #FFFFFF;
	padding: 0 0px 0 0px;
	height: 183px;
	width: 923px;
} 
	.page2 #header h1 {
		margin: 0; 
		padding: 10px 0; 
	}
.page2 #content {
	min-height:493px;
	width: 923px;
}	
.page2 #sidebar1 {
	float: left;
	width: 481px;
	background: #FFFFFF;
	padding: 0px 20px 0px 0px;
}
.page2 #sidebar2 {
	float: right;
	width: 201px;
	background: #FFFFFF;
	padding: 0;
	/* overflow: hidden; */
}
	.page2 #sidebar2 img {
		margin-bottom: 5px;
	}
.page2 #mainContent {
	margin: 0 0 0 501px;
	padding: 0 0px 0 10px;       /*  0 5px 0 5px */
	width: 211px;
} 
.page2 #footer {
	padding: 0 0px 0 0px; 
	background:#FFFFFF;
	width: 923px;
} 
	.page2 #footer p {
		margin: 0; 
		padding: 10px 0; 
	}

/******************** PAGE 3 subpages from home page without logos (one column of text) ************************/
	
.page3 #container {
	width: 923px;
	background:#FFFFFF;
	margin: 0 auto;
	text-align: left;
} 
.page3 #header {
	background: #FFFFFF;
	padding: 0 0px 0 0px;
	height: 183px;
	width: 923px;
} 
	.page3 #header h1 {
		margin: 0; 
		padding: 10px 0; 
	}
.page3 #content {
	width: 923px;
	min-height: 493px;
}	
.page3 #sidebar1 {
	float: left;
	width: 696px;
	background: #FFFFFF;
	padding: 0px 5px 0px 0px;
}
.page3 #sidebar2 {
	float: right;
	width: 201px;
	background: #FFFFFF;
	padding: 0;
	/* overflow: hidden; */
}
	.page3 #sidebar2 img {
		margin-bottom: 5px;
	}
.page3 #mainContent {
	margin: 0 0 0 701px;
	padding: 0 5px 0 5px;
	width: 11px;
} 
.page3 #footer {
	padding: 0 0px 0 0px; 
	background:#FFFFFF;
	width: 923px;
} 
	.page3 #footer p {
		margin: 0; 
		padding: 10px 0; 
	}

/**************** PAGE 4 - breadcrumb sub menu on left, large main text middle like certified service centre **************/

.page4 #container {
	width: 923px;
	background:#FFFFFF;
	margin: 0 auto;
	text-align: left;
} 
.page4 #header {
	background: #FFFFFF;
	padding: 0 0px 0 0px;  
	height: 183px;
	width: 923px;
} 
	.page4 #header h1 {
		margin: 0; 
		padding: 10px 0; 
		width: 923px;
	}
.page4 #content {
	min-height:493px;
	width: 923px;
}	
.page4 #sidebar1 {
	float: left; 
	width: 201px; 
	background: #FFFFFF; 
	padding: 0px 0px 0px 0px;
}
.page4 #sidebar2 {
	float: right; 
	width: 201px; 
	background: #FFFFFF; 
	padding: 0px 0px 0px 0px; 
}
	.page4 #sidebar2 img {
		margin-bottom: 5px;
	}
.page4 #mainContent {
	margin: 0 201px;
	padding: 0 15px 0 5px;
	width: 501px;
} 
.page4 #footer {
	padding: 0 0px 0 0px; 
	background:#FFFFFF;
	width: 923px;
} 
	.page4 #footer p {
		margin: 0; 
		padding: 10px 0; 
	}

/**************** PAGE 5 - two even columns as for sitemap page **************/

.page5 #container {
	width: 923px;
	background:#FFFFFF;
	margin: 0 auto;
	text-align: left;
} 
.page5 #header {
	background: #FFFFFF;
	padding: 0 0px 0 0px;  
	height: 183px;
	width: 923px;
} 
	.page5 #header h1 {
		margin: 0; 
		padding: 10px 0; 
		width: 923px;
	}
.page5 #content {
	min-height:493px;
	width: 923px;
}	
.page5 #sidebar1 {
	float: left; 
	width: 351px; 
	background: #FFFFFF; 
	padding: 0px 0px 0px 0px;
}
.page5 #sidebar2 {
	float: right; 
	width: 201px; 
	background: #FFFFFF; 
	padding: 0px 0px 0px 0px; 
}
.page5 #mainContent {
	margin: 0 0 0 351px;
	padding: 0 15px 0 5px;
	width: 351px;
} 
.page5 #footer {
	padding: 0 0px 0 0px; 
	background:#FFFFFF;
	width: 923px;
} 
	.page5 #footer p {
		margin: 0; 
		padding: 10px 0; 
	}
	
/**************** PAGE 6 - breadcrumb sub menu on left, no right menu full space for iframe used boats for sales etc  **************/

.page6 #container {
	width: 923px;                  /* 923px */
	background:#FFFFFF;
	margin: 0 auto;
	text-align: left;
} 
.page6 #header {
	background: #FFFFFF;
	padding: 0 0px 0 0px;  
	height: 183px;                 /* 188px */
	width: 923px;
} 
	.page6 #header h1 {
		margin: 0; 
		padding: 10px 0; 
		width: 923px;
	}
.page6 #content {
	min-height:493px;           /* min-height:493px; */
	width: 940px;               /* 933 923px */
	
	overflow:visible;             /* added for extra wide iframe space */
}	
.page6 #sidebar1 {
	float: left; 
	width: 121px;               /* 181 , 201px */
	background: #FFFFFF; 
	padding: 0px 0px 0px 0px;
	
	overflow:hidden;           /* iframe will wipe over the tail of the left menu */
}
.page6 #sidebar2 {
	float: right; 
	width: 1px; 
	background: #FFFFFF; 
	padding: 0px 0px 0px 0px; 
}
	.page6 #sidebar2 img {
		margin-bottom: 5px;
	}
.page6 #mainContent {
	margin: 0 0 0 121px;          /* 181 , 0 0 0 201px; */
	padding: 0 0 0 0;
	width: 818px;                   /* 755 741px */
} 
.page6 #footer {
	padding: 0 0px 0 0px; 
	background:#FFFFFF;
	width: 923px;                 /* 923px */
} 
	.page6 #footer p {
		margin: 0; 
		padding: 10px 0; 
	}	

