@charset "utf-8";
/* CSS Document */

* {margin:0;padding:0;} 

/* must declare 0 margins on everything, also for main layout components use padding, not 
vertical margins (top and bottom) to add spacing, else those margins get added to total height 
and your footer gets pushed down a bit more, creating vertical scroll bars in the browser */

html, body {
	height: 100%;
	text-align:left; /* IE6 fix */
}

a {
	color:#015fb9;
	text-decoration:none;
}
a:hover{
	text-decoration:underline;
	/*text-decoration:none;
	color:#8dc0f7;*/
}

ul.top {
	color:#22374d;
	font-size: 30px;
	font-weight:bold;
}
ul.top li{
	display:inline;
}

h1 {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:16px;
	color:#000000;
	line-height:150%;
	padding: 30px 10px 10px 10px;
}	

h2 {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#ffffff;
	line-height:100%;
	padding: 5px 10px 10px 10px;
}

h3 {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#000000;
	line-height:100%;
}

p.big {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#000000;
	/*color:#22374d;*/
	line-height:150%;
	padding: 10px 10px 0px 10px;
}

table.services {
	position:relative;
	left:10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color:#000000;
}
td.services {
	width:49%;
	vertical-align:top;
	font-size: 12px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
}

table.services-whyPlumbshore {
	border:solid 2px #000000;
	position:relative;
	left:10px;
}
ul.services-whyPlumbshore {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color:#000000;
	line-height: 2em;
	list-style-type: square;
	padding: 0px 10px 10px 25px;
}

table.contact {
	position:relative;
	left:10px;
}

form {
	background-color:#000000;
}

#top {
	background-image:url(images/top-bgd.jpg);
	background-repeat:repeat;
	height:150px;
}

#menu {
	margin: 0px 0px 0px 0px;
	height:40px;
	top:0px;
	display:block;
	position:relative;
}
#menu ul{
	position:relative;
	margin: 0px 0px 0px 0px;
	padding:10px 0px 0px 0px;
	font:Verdana, Arial, Helvetica, sans-serif;
	font-size:20px;
	text-align:center;
}
#menu li{display:inline;}
#menu ul a{
	text-decoration:none;
	color:#ffffff;
	font-weight:bold;
	margin: 0px 30px;
}
#menu ul a:hover{
	text-decoration:underline;
}

#emergency {
	position:absolute;
	right:0px;
}

#content {
	width:950px;
	min-height:100%;
	height:920px;
	margin:0em auto -3em;
	margin-top:30px;
	position:relative;
	top:-185px;
	overflow:auto;
	padding-bottom: 206px;  /* must be same height as the footer */
}

#content-middle-left {
	width:560px;
	float:left;
}

#content-middle-right {
	padding: 30px 15px 0px 0px;
	float:right;
}

#footer {
	position: relative;
	background-image:url(images/water.jpg);
	margin-top: -206px; 	/* negative value of footer height */
	height: 206px;
	clear:both;
	text-align:left;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:10px;
	color:#000000;
} 
#footer a {
	text-decoration:none;
	color:#3971a0;
}
#footer a:hover {
	text-decoration:underline;
	/*text-decoration:none;
	color:#bad1f1;*/
}

#credits {
	position:absolute;
	right: 5px;
	bottom: 15px;
}

/*Opera Fix*/
body:before {/* thanks to Maleika (Kohoutec)*/
content:"";
height:100%;
float:left;
width:0;
margin-top:-32767px;/* thank you Erik J - negate effect of float*/
}
