body  {
	font: 1.0em Verdana, Arial, Helvetica, sans-serif;
	background: #d9dfea url(../images/page_bg2.jpg) repeat-y center; 
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}

/* Tips for this Hybrid layout
1. Since the side columns em-based sizing is based on the user's default font size, you will want to be sure that background graphics in the columns take that into account. Built correctly, this is more accessible for those that need larger font sizes, since the width of the columns remains proportionate. If this is undesirable with your design, simply change the width to a pixel size and be sure to change the margins on the #mainContent div accordingly.
2. Since the sizing of side columns in this layout are based on the 100% font size in the body element, if you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the column widths will downsize proportionately. You may want to increase their widths, and the size of the #mainContent div's side margins, to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
4. The #container div is not necessary for this layout at the 100% width. You may want to use it to create faux columns or limit the width of the layout.
5. It is not neccessary to have the 100% width on the #container div since, by nature, a div takes up 100% of the available space. It is here so that if you want to decrease the size of the overall container - perhaps leaving a bit of margin on each side - this will already be available for adjustment.
*/
.layout #container { 
	width: 995px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding: 0;
	border: none;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

/* Tips for absolutely positioned sidebars with header and footer:
1. Absolutely positioned (AP) elements must be given a top and side value, either right or left. (As a default, if no top value is given, the AP element will begin directly after the last element in the source order of the page. This means, if the sidebars are first element in the #container in the document's source order, they will appear at the top of the #container even without being given a top value. However, if they are moved later in the source order for any reason, they'll need a top value to appear where you desire.
2. Absolutely positioned (AP) elements are taken out of the flow of the document. This means the elements around them don't know they exist and don't account for them when taking up their proper space on the page. Thus, an AP div should only be used as a side column if you are sure the middle #mainContent div will always contain the most content. If either sidebar were to contain more content, that sidebar would run over the bottom of the parent div, and in this case the footer as well, and the sidebar would not appear to be contained.
3. If the above mentioned requirements are met, absolutely positioned sidebars can be an easy way to control the source order of the document.
4. If the source order is changed, the top value should be equal to the height of the header since this will cause the columns to visually meet the header.
*/

.layout #header { 
	background: #183f76; 
	padding: 10px 0px 0 1px;  /* 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: 120px;
	width: 100%;
	border-bottom: 1px solid #fff;
} 


.layout #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: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color: #fff;

}

.layout #header h1 {  }
.layout #header h1 a { border: none; padding: 0; text-decoration: none; }
.layout #header h1 a:link { border: none; padding: 0; text-decoration: none; }
.layout #header h1 a:hover { text-decoration: none; border: none; }
.layout #header img { padding: 0; border: none; float:left; }


.layout #siteName{
	margin: 0;
	padding: 0px 0 0 0px;
	color: #fff;
	background: #183f7b;
	
}

.layout #siteName h1 { text-align:left; float:left; }

.layout #siteName h1 a { border: none; padding: 0; text-decoration: none; }
.layout #siteName h1 a:link { border: none; padding: 0; text-decoration: none; }
.layout #siteName h1 a:hover { text-decoration: none; border: none; }
.layout #siteName img { padding: 0; border: none; }

.layout #siteName .proudlyAustralian {
	font-family: Verdana, Arial, sans-serif;
	text-align: center;
	float: right;
	font-size: 62%;
	color: #fff;
	width: 98px;
	font-weight: normal;
	font-weight: bold;
	padding: 0px 10px 0 0px;
}

.layout #siteName p {
	font-family: Verdana, Arial, sans-serif;
	text-align: center;
	font-size: 76%;
	color: #fff;
	float: right;
	width: 250px;
	position: relative;
	top: 15px;
	font-weight: normal;
	margin-top: 0px;
	padding: 0 0px 0 0;
}

.largePhone { font-size: 240%; color: #fff; font-weight: bold; }
.largeAllSuburbs { font-size: 110%; color: #ff6600; font-weight: bold; }

.contact .largePhone { font-size: 180%; color: #fff; font-weight: bold; }
.contact .largeAllSuburbs { font-size: 110%; color: #ff6600; font-weight: bold; }


/* --------------- skip link ------------ */
.skip {
position: absolute;
top: 0;
left: -9999px;
}

/************* #globalNav styles **************/

.layout #globalNav { z-index: 1; position:relative; float: left; width:100%; border-bottom: 1px solid #fff; }

img.printicon {
	padding: 3px 3px 0 0;
	float:left;
	margin: 0;
	border:0;
}


.hide { visibility: hidden; }

/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the .layout #sidebar1 p rule.
*/
.layout #sidebar1 {
	float: left; 
	margin-top: 0px;
	width: 200px; /* since this element is floated, a width must be given */
	background: #fffaf2; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 0px 30px 1px; /* top and bottom padding create visual space within this div */
	font-size: 70%;
	color: #183f76;
	font-weight: bold;
	line-height: 150%;
	height: 100%;
	border-right: 0px solid #ffebcc;
}

.layout #sidebar1 iframe { margin-left: 5px; margin-right: 10px; padding:5px; border: 1px solid #ebebeb; }

.layout #sidebar1 h3 {
	color: #ff6600; 
	padding: 20px 0 0px 1px; 
	margin: 0;
	font-size: 15px; 
	font-weight: bold;
}

.layout #sidebar1 h4 {
	color: #183f7b; 
	padding: 20px 0 5px 1px; 
	margin: 0;
	font-size: 10px; 
	font-weight: bold;
}

.layout #sidebar1 h3, .layout #sidebar1 p, .layout #sidebar1 h4 {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

.layout #sidebar1 a {
	text-decoration: none;
	color: #183f7b;
	font-weight: bold;
	font-size: 80%;

}

.layout #sidebar1 a:hover{
	text-decoration: underline;
	color: #ff6600;
}

.layout #sidebar1 .testimonial a {
	text-decoration: none;
	color: #ff6600;
	font-weight: bold;
	font-size: 95%;

}

.layout #sidebar1 .testimonial a:hover{
	text-decoration: underline;
	color: #183f7b;
}


.layout #sidebar1 ul {
 	margin: 0px 0 0 0;
	padding: 5px 12px 10px 1px;
	color: #ff6600;
	list-style-type: none;
	font-weight: bold;

}

.layout #sidebar1 ul li {
	text-decoration: none;
	padding: 2px 0 2px 11px;
	border-bottom: 1px dotted #ff6600;

}

.layout #sidebar1 img { 
	text-align: center;
}

.layout #sidebar1 p.large { 
	font-size: 120%;
	padding: 0;
}

.layout #sidebar1 p.base {
	background: #fff url(../images/sidebar1_bg_2_base.jpg) no-repeat;
	height: 333px;
	padding-right: 5px;
}

.layout #sidebar2 p.testSpeed {
	color: #666; 
	padding: 0px 10px 5px 0; 
	margin: 20px 0px 0px 7px;
	font-size: 80%; 
	font-weight: normal;
	line-height: 14px;
	text-align: center;
	
}


.layout #sidebar2 p.testSpeed a {
	text-decoration: underline;
	color: #ff6600;
	font-weight: bold;
	font-size: 80%;
}

.layout #sidebar2 p.testSpeed a:hover {
	text-decoration: underline;
	color: #183f76;
}

.layout #sidebar2 p.testExchange {
	color: #666; 
	padding: 0 10px 5px 0px; 
	margin: 0px 0px 7px 7px;
	font-size: 80%; 
	font-weight: normal;
	line-height: 14px;
	text-align: center;
	
	
}


.layout #sidebar2 p.testExchange a {
	text-decoration: underline;
	color: #ff6600;
	font-weight: bold;
	font-size: 80%;
}

.layout #sidebar2 p.testExchange a:hover {
	text-decoration: underline;
	color: #183f76;
}

.layout #sidebar1 p.earlybird {
	text-align: center;
	padding: 1px;
	margin: 10px;
}


.layout #sidebar2 {
	float: right;
	width: 190px; /* since this element is floated, a width must be given */
	background: #fff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 0; /* top and bottom padding create visual space within this div */
	margin: 0;
	color: #183f7b;
}

.layout #sidebar2 h3 {
	background: #FFF url(../images/hbg.jpg) repeat-x;  
	padding: 5px 0 0px 3px; 
	height: 20px;
	margin: 5px 0 0 0; 
	font-size: 80%;
	font-weight: bold;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #ff6600;
}

.layout #sidebar2 p {
	font-family: Verdana, Helvetica, Arial, sans-serif;
	font-weight: normal;
	font-size: 80%;
	line-height: 120%;
	color: #0784bf;
	padding: 0 2px 0 5px;
	margin-top: 5px;
}

.layout #sidebar2 ul {
 	margin: 0px 0 0 25px;
	padding: 0px 2px 0px 5px;
	color: #0784bf;
	list-style-type: square;
	font-weight: normal;
	font-size: 70%;

}

.layout #sidebar2 ul li {
	text-decoration: none;
	padding: 0;
}



.layout #sidebar2 #tickList {  padding-left: 0px; line-height:100%; }
.layout #sidebar2 #tickList table .technicians { background: #c1d7e9; }
.layout #sidebar2 #tickList table h2 { color: #990000; font-size: 100%; padding:4px 0 5px 0px; margin:0; }
.layout #sidebar2 #tickList table img { padding-left: 5px; }
.layout #sidebar2 #tickList .technicians td { font-size: 70%; font-weight:bold; text-align:left; }


.layout #sidebar2 #guarantee { margin-left: 0px; padding-top: 20px; }
.layout #sidebar2 #contactusImage img { padding:40px 0px 0 0px; border:none; }
.layout #sidebar2 #callus { padding: 2px; margin: 20px 0px 20px 0; float: right; border:1px solid #eee; }
.layout #sidebar2 #callus img { text-align: center; }
.layout #sidebar2 #callus p { padding: 0; margin: 0; font-family: Arial, Helvetica, sans-serif; font-size: 120%; text-align: center; font-weight: bold; }
.layout #sidebar2 #callus .large { font-size: 120%; color: #FF6600; }
.layout #sidebar2 #creditcard img {text-align: center; }
.layout #sidebar2 #abn {text-align: center; margin-left: 3px; }

.layout #sidebar2 #lifetime_guarantee { padding: 2px; margin: 20px 0px 20px 0; float: right; border:1px solid #eee; }
.layout #sidebar2 #lifetime_guarantee img { text-align: center; }

.layout #sidebar2 #payment { float: right; margin-top: 10px; clear:both; }

.layout #sidebar2 img.trenching { padding: 3px 0 0 0px; float:right; margin: 20px 0px 0 0px; }
.layout #sidebar2 p.dbyd img { float:right; margin: 20px 5px 0 0; border:0; }

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent hasLayout. This avoids several IE-specific bugs that may occur.
*/



.layout #mainContent {
 	margin: 0 210px 0 220px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */ 
	padding: 0 20px 0 20px; /* padding here creates white space inside the box. */
	
}

.layout #mainContent {
	padding: 0px 0px 20px 20px;
} 

.layout #mainContent ul {
	font-size: 75%;
	
}

.layout #mainContent ol li ul li { font-size: 120%; line-height: 140%;}

.layout #mainContent a { color: #183f76; }
.layout #mainContent a:hover { color: #ff6600; }

.layout #mainContent h1 {
	font-weight: bold;
	font-size: 1.1em;
	font-family: Arial, Helvetica, sans-serif;
	color: #ff6600;
	letter-spacing: 1px; 
	margin: 23px 0 0 10px;
	line-height: 135%;
	padding: 15px 0 5px 0;
	text-indent: 0px;
	

}

.layout #mainContent h2 {
	font-weight: bold;
	font-size: 1.2em;
	font-family: Arial, Helvetica, sans-serif;
	color: #ff6600;
	letter-spacing: 1px; 
	margin: 23px 0 0 10px;
	line-height: 135%;
	padding: 15px 0 5px 0;
	text-indent: 0px;
	

}

.layout #mainContent h3 {
	  
	padding: 15px 0 5px 0px; 
	font-family: Arial, Helvetica, sans-serif;
	color: #ff6600;
	font-size: 0.8em;
	margin: 0 0 0px 10px;
	line-height: 105%;
	text-indent: 0px;
	font-weight: bold;
	}
	

.layout #mainContent h4 {
	padding: 5px 0 5px 10px; 
	margin: 0px;
	font-weight: bold;
	color: #0784bf;
	font-size: 70%;
}	
	
.hidden { 
	visibility: hidden;
		
}


	
.layout #mainContent h2.employment {
	padding: 5px 0 5px 0px; 
	font: bold verdana, Arial, Sans-Serif;
	color: #0784bf;
	font-size: 125%;
	margin: 0 0 0px 0;
	line-height: 140%;
}	

.layout #mainContent h3.employment {
	background: #FFF url(../images/hbg3.jpg) repeat-x left top;  
	padding: 5px 0 5px 0px; 
	font: bold verdana, Arial, Sans-Serif;
	color: #0784bf;
	font-size: 115%;
	margin: 0 0 0px 0;
	height:65px;
	line-height: 130%;
	text-align: center;
	}	
	
.layout #mainContent p.otherRef { font-weight:normal; color: #999; line-height: 120%; }
.layout #mainContent strong { color: #ff6600; font-weight: bold; }
.layout #mainContent p.otherRef a img { border: none; }
.layout #mainContent p.otherRef a { font-weight: normal; color: #999999; text-decoration: none; }
.layout #mainContent p.otherRef a:hover { color: #ff6600; text-decoration: underline; }

.layout #mainContent img { float: right; padding: 3px; margin: 0 0 0 20px; }
.layout #mainContent table#lightboxLayout img { text-align: center; }
.layout #mainContent table#lightboxLayout a img { border: 1px solid #eaeaea; padding:1px; text-align:center; } 
.layout #mainContent table#lightboxLayout .textlink { padding: 0; font-size: 65%; text-align:center }


.layout #mainContent  .gallerycontainer img { float:none; display:inline; }
.layout #mainContent .right { float:right; padding: 3px; margin: 10px 0 0 20px; }
.layout #mainContent .left { float:left; padding: 3px; margin: 10px 10px 0 10px; }
.layout #mainContent .center { text-align: center; padding: 3px; margin: 10px 10px 0 10px }

.layout #mainContent h3 span { padding: 1px 10px 0 0px; margin: 0; color: #0784bf;}

.layout #mainContent   { padding: 0 0 10px 0; }
.layout #mainContent p {
	color: #183f76;
	font-size: 70%;
	margin: 10px 0;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 0px;
	line-height: 140%;
}

.layout #mainContent img {
	display: block;
	margin: 8px 10px 0 1px;
	padding: 2px;
	border: 1px solid #ccc;
}


.layout #mainContent .center  {
	margin: 8px 0px 0 0;
	padding: 2px;
	text-align: center;
	border: none;
	float:none;
}

.layout #mainContent .leftNB  {
	margin: 8px 0px 0 0;
	padding: 2px;
	text-align: left;
	border: none;
	float:left;
}

.layout #mainContent .rightNB  {
	margin: 8px 0px 0 0;
	padding: 12px;
	text-align: right;
	border: none;
	float:right;
}

.layout #mainContent .image  {
	width: 100%;
	border: none;
	text-align: center;

}

.layout #mainContent .centerNB  {
	padding: 10px;
	text-align: center;
	border: none;
	float:none;
}

.layout #mainContent  .noborder {
	border: none;
}

				  
.layout #mainContent .testimonial_homepage {
	margin-top: 50px;
	padding: 30px 10px 10px 20px;
	font-size: 110%;
	border: 0px dotted #ff6600;
	height: 210px;
	text-align: center;
}

.layout #mainContent .testimonial_homepage { font-size: 120%; line-height: 126%; text-align: center; font-weight: bold;  }
.layout #mainContent .testimonial_homepage img { border: 0; padding: 0; text-align:center;}
.layout #mainContent .testimonial_homepage p {  }
.layout #mainContent .testimonial_homepage .more a { color: #0784bf; font-size: 70%; padding-top: 5px; text-decoration: underline; font-weight: normal; }
.layout #mainContent .testimonial_homepage .more a:hover { color: #fc7502;  }


.layout #mainContent .subtopic {
	background: #fff ;
	 padding: 0 0 10px 0;
}

.layout #mainContent .subtopic h4 {
	padding: 6px 0 0 10px; 
	margin: 0px;
	font-weight: bold;
	color: #0784bf;
	font-size: 70%;
	font-style:italic;
}


.layout #mainContent h3.testimonial {
	color: #ff6600;
}


.layout #mainContent p.testimonial {
	padding: 0 5px 0 10px; 
}

.layout #mainContent p.signature {
	font-weight: bold;
	font-style:italic;
	padding: 0 5px 0 10px; 
	color: #aaa;
	font-size: .7em;

}

.layout #mainContent ul {
	font-size: .85em;

}

.layout #mainContent ul li {
	font-size: .80em;
	line-height: 140%;	
	color: #183f76;
}

.layout #mainContent td ul {
	font-size: .85em;
}

.layout #mainContent td ul li {
	font-size: .80em;
}


.layout #mainContent ol {
	font-size: .85em;
}

.layout #mainContent ol li {
	font-size: 0.8em;
	color: #183f76;
}


.layout #mainContent ul.FAQlinks { text-align:left; color: #fc7502; padding: 10px 0 20px 35px; margin:0; font-size: 90%; font-weight:bold; }
.layout #mainContent ul.FAQlinks li { color: #fc7502; padding: 3px 0 3px 0; list-style-type:square; }
.layout #mainContent ul.FAQlinks li a { text-decoration: underline; color: #0784bf; font-weight: normal; }
.layout #mainContent ul.FAQlinks li a:hover { color: #fc7502; }

.layout #mainContent ul.accreditationLinks { text-align:left; padding: 10px 0 20px 20px; margin-left:20px; font-size: 90%; font-weight:normal; list-style-type: none; }
.layout #mainContent ul.accreditationLinks li { padding: 3px 0 3px 0; list-style-type:none; }
.layout #mainContent ul.accreditationLinks li a { text-decoration: underline; color: #0784bf; font-weight: normal; }
.layout #mainContent ul.accreditationLinks strong { font-weight: bold; color: #0784bf; }
.layout #mainContent ul.accreditationLinks li a:hover { color: #fc7502; }
	
	
.layout #mainContent .clear { clear:both;}

/***************** STYLES FOR OPTIONAL FOOTER **************/

#optionalFooter {
	padding: 5px 0px 5px 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #fff;
	border-top: 0px  solid #eaeaea;
	color: #aaa;
	font-size: 70%;
	text-align: center;
	}

#optionalFooter 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 */
	
}

#optionalFooter a { text-decoration: underline; color: #ccc; font-size: 11px; }
#optionalFooter a:hover { color: #fc7502; }
	
	 
/******************* STYLES FOR FOOTER *******************/

.layout #footer { 
	padding: 20px 0px 20px 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #0784bf url(../images/footer_bg.jpg) repeat-x;
	border-top: 0px  solid #ff6600;
	font-size: 11px;
	color: #ffffff;
	text-align: center;
} 
.layout #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 */
}

.layout #footer a { text-decoration: underline; color: #fff; font-size: 11px; }
.layout #footer a:hover { color: #fc7502; }



/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 10px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

/**********  Sitemap Styles ************/


ul.sitemap li a {
	font-size: 120%;
}

.layout #mainContent #sitemap { margin:0; padding:0; margin-top: 20px; margin-left: 10px; list-style-type: none; line-height: 140%; font-size: .90em;}

.layout #mainContent #sitemap ul {
 	margin: 0px 0 0 20px;
	padding: 0px 2px 10px 5px;
	color: #0784bf;
	list-style-type: none;
	font-weight: normal;
	color: #0784bf;

}

.layout #mainContent #sitemap ul li {
	text-decoration: none;
	padding: 0;

	
}

.layout #mainContent #sitemap a {
	text-decoration: underline;
	padding: 0;
	color: #0784bf;
	font-size: 1.1em;
	line-height: 150%;
	}
	
.layout #mainContent #sitemap a:hover {
	text-decoration: underline;
	color: #ff6600;

	}	
	
.layout #mainContent #sitemap ul ul {
 	margin: 0px 0 0 15px;
	padding: 0px 2px 0px 5px;
	color: #0784bf;
	list-style-type: square;
	font-weight: normal;
	color: #0784bf;
	font-size: 1.1em;
	line-height: 140%;

}

.layout #mainContent #sitemap ul ul li {
	text-decoration: none;
	padding: 0;
	
}

.layout #mainContent #sitemap ul ul li a {
	text-decoration: underline;
	padding: 0;
	color: #0784bf;
	font-size: 1.1em;
	line-height: 140%;
	}	
	
.highlight {
	border: 1px solid #eee;
	background: #d1d1ff;
	width: 91%;
	margin: 0 0px 0 20px;
	padding: 0 20px 0 10px;
	text-align: left;
	font-size: 100%;

	}
	
.highlight h2 {
	font-size:90%;
}	
	
.highlight li {	padding-bottom: 5px; }

#highlight { height:187px; margin-left: 5px;}
.highlight2 {
	background: #fff url(../images/img_highlight2a.jpg) center no-repeat;
	width: 290px;
	height: 190px;
	float: left;

	}

.layout #mainContent .highlight2 ul { padding-top: 10px; margin-left: -5px; }
.layout #mainContent .highlight2 p.emph { font-size: 110%; color: #fc7502; text-align: center; }
.layout #mainContent .highlight2 ul.tickList li { list-style-image: url(../images/tick_highlight.png); color: #0784bf; font-weight: bold;}
	
.highlight3 {
	background: #fff url(../images/img_highlight3a.jpg) center no-repeat;
	width: 250px;
	height: 190px;
	float: right;
	text-align: center;
	}	

.layout #mainContent .highlight3 p { font-size: 90%;
	color: #0784bf; font-weight: bold; }
.layout #mainContent .highlight3 ul { padding-top: 0px; }
.layout #mainContent .highlight3 p.emph { font-size: 100%; color: #fc7502; }
.layout #mainContent .highlight3 ul.tickList li { list-style-image: url(../images/tick_highlight.png); color: #0784bf; font-weight: bold;}

.emph { 
	color: #fc7502;
	font-weight: bold;
	font-size: 120%;
	font-family: verdana, arial, sans-serif;
	padding: 0;
}

.emph2 { 
	color: #fc7502;
	font-weight: bold;
	font-size: 140%;
	font-family: verdana, arial, sans-serif;
	padding: 0;
}


.emergency { 
	font-size: 120%;
	font-weight: bold;
	color: #0784bf;
	font-family: verdana, arial, sans-serif;
	padding: 0;
}

.address {
	font-size: 100%;
	color: #0784bf;
	line-height: 140%;
	padding: 0;

}

.largeph { 
	font-size: 160%;
	font-weight: bold;
	color: #0784bf;
	font-family: Arial;
}

.large { 
	font-size: 160%;
	font-weight: bold;
	color: #0784bf;
	font-family: Arial;
}

.layout #mainContent .tableLists {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #003366;
	padding: 10px 10px 10px 20px;
	line-height: 140%;
	font-size: .70em;
	border:0px solid #ccc;
	background: #f1f1f1;
	margin: 0 10px 10px 10px;
	width: 100%;
}
.layout #mainContent .tableLists td { vertical-align: top; }

.layout #mainContent .tableTermsConditions {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #003366;
	padding: 10px 10px 10px 0px;
	line-height: 140%;
	margin-left: 8px;
	font-size: .70em;
	border:0px solid #ccc;
	background: #fff;
	width: 100%;
}
.layout #mainContent .tableTermsConditions td { vertical-align: top; }

.layout #mainContent td ul.tableSubList { font-size: 125%; }

.layout #mainContent .subList { font-size: 11px; margin-left: 10px; line-height: 100%; vertical-align:middle; }
.layout #mainContent .subList img { border: none;}


.layout #mainContent table.phoneSockets {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #003366;
	padding: 2px;
	line-height: 140%;
	background: #fff;
	margin: 0 10px 10px 10px;
	width: 100%;
}

.layout #mainContent table.phoneSockets td { vertical-align: top; text-align:center; padding: 20px 0 20px 0;border-bottom: dotted 1px #ff6600; }

.layout #mainContent table.phoneSockets td.socketImage { vertical-align: top; text-align:center; background: #fff; font-size: 70%; }

.layout #mainContent table.phoneSockets td.socketImage img { vertical-align:top; text-align:center; padding:0; margin:0; float:none; border: none;}

.layout #mainContent table.phoneSockets td.caption { padding-bottom: 10px; vertical-align: top; text-align:left; }

.layout #mainContent table.phoneSockets td.caption h4 { line-height: 100%; padding-top: 0; font-size: 90%; text-decoration: underline; }

.layout #mainContent strong { color: #666666; }

.layout #mainContent ul.tickList li { list-style-image: url(../images/tick.jpg); color: #183f76;}
.layout #mainContent ul.orangeList li { list-style-image: url(../images/disc.jpg); color: #183f76; }

.layout #container #mainContent ol.list {
	list-style-position: outside;
	list-style-image: none;
	list-style-type: none;
	 
}

.pagination1
{
font-family: Arial, Helvetica, sans-serif;
font-size: 11px;
color:#009ddc;
text-decoration:none;
padding-left:5px;
}



.pagination
{
font-family: Arial, Helvetica, sans-serif;
font-size: 11px;
color:#009ddc;
text-decoration:underline;
padding-left:5px;
}
.pagination:hover
{
font-family: Arial, Helvetica, sans-serif;
font-size: 11px;
color:#b2b2b2;
text-decoration:none;
padding-left:5px;
}

.pagination_hover
{
font-family: Arial, Helvetica, sans-serif;
font-size: 11px;
color:#b2b2b2;
text-decoration:none;
padding-left:5px;
}


#sidebar1 #left_wide {
	width: 300px;
}

#sidebar1 #left_wide #services {
	width: 300px;
	padding: 0 5px 0 5px;
}

#sidebar1 #left_wide #services #commercial {
	width: 150px;
}

#sidebar1 #left_wide #services #residential {
	width: 150px;
}


.roundedcornr_box_382521 {
	width: 550px;
	margin-bottom: 20px;
	background: url(../images/box/roundedcornr_382521_tl.png) no-repeat top left;
}

.roundedcornr_top_382521 {
	background: url(../images/box/roundedcornr_382521_tr.png) no-repeat top right;
}
.roundedcornr_bottom_382521 {
	background: url(../images/box/roundedcornr_382521_bl.png) no-repeat bottom left;
}
.roundedcornr_bottom_382521 div {
	background: url(../images/box/roundedcornr_382521_br.png) no-repeat bottom right;
}
.roundedcornr_content_382521 {
	background: url(../images/box/roundedcornr_382521_r.png) top right repeat-y;
}

.roundedcornr_top_382521 div,.roundedcornr_top_382521,
.roundedcornr_bottom_382521 div, .roundedcornr_bottom_382521 {
	width: 100%;
	height: 15px;
	font-size: 1px;
}
.roundedcornr_content_382521, .roundedcornr_bottom_382521 {
	margin-top: -19px;
	
}
.roundedcornr_content_382521 { padding: 0px 15px; }

table #contactform { font-size: 80%; }

#mainContent .testimonials { padding-top: 20px; padding-left:0px; }

#mainContent .testimonials img { padding:0; border:0; margin:0; }