@charset "UTF-8";
/* Experienced Plumbers CSS Document */

body {
	font-family:Arial, Helvetica, sans-serif;
	color:#ffffff;
	background-color:#1D4578;
	margin: 0;
	padding: 0;
}

#container {
   width: 906px;
   margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
	overflow: hidden; /* this declaration makes the .container understand where the floated columns within ends and contain them */
   border:1px solid #7b95b0;
   background-image:url(img/tlo906.jpg);
   background-repeat:repeat-y;
 }
 
#logo {
	float:left;
	width:177px;
	height:177px;
	border:none;
	border-collapse:collapse;
}

#header {
	float:left;
	width:729px;
	height:177px;
	border:none;
	border-collapse:collapse;
}
 
#sidebar {
	float: left;
	width: 177px;
	border:none;
	border-collapse:collapse;
}

#content {
	padding-top: 10px;
	width: 729px;
	float: left;
	border:none;
	border-collapse:collapse;
}
 
h1 {
	text-align:center; 
	font-family:Arial, Helvetica, sans-serif; 
	font-size:24px; 
	font-style:normal;
}

h2 {
	 text-align:center; 
	 font-family:Arial, Helvetica, sans-serif; 
	 font-size:20px; 
	 font-style:normal;
}


p {
	margin:0px 5px;
	font-size:18px;
	line-height:150%;
	color:#ffffff;
}

ul {
	font-size:18px;
}

table#nav {
	border:none;
	border-collapse:collapse;
	width:100%;
	height:29px;
}

td.reg {
	width:115px;
	padding:0px 8px;
}

td.wide {
	width:154px;
	padding:0px 8px;
}

img {
	border:none;
}

p.phone {
	text-align:center;
	font-family:Arial, Helvetica, sans-serif;
	font-size:20px;
	line-height:150%;
}

.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #ffffff;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #ffffff;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}