@charset "utf-8";
body  {
	font: 90% Verdana, Arial, Helvetica, sans-serif;

	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;
}

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 */
	font: 140% Georgia, "Times New Roman", Times, serif;
	font-weight:bold;
}

h2 {
	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 */
	font: 100% Georgia, "Times New Roman", Times, serif;
	font-weight:bold;
}

h3 {
	font:160% Georgia, "Times New Roman", Times, serif;
	margin:0;
	padding:5px;
	border-top:2px solid #ccc;
	border-bottom:2px solid #ccc;
	background:#fff;
	font-weight:bold;
}

#container { 
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #efefef;
	margin: 10px auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #ccc;
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding:10px 0;
} 
 #header { 
	background-image:url(../images/background/newtilebg.jpg);
	background-repeat:repeat-x;
	background-color:#000;
	background-position: left -4px;
	padding: 0 10px 0 20px;  /* 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. */
} 

 #sidebar1 {
	width: 300px; /* 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: #fff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px;
	margin:0 10px 0 668px;
	border:1px solid #ccc;
}
 #mainContent { 
 	width:598px;
	padding: 10px 20px 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background:#fff;
	border:1px solid #ccc;
	float:left;
	margin:0 0 0 10px;
} 
 #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#000; 
} 
 #footer p {
	margin: 0 auto; /* 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 */
	color:#fff;
	width:1000px;
	display:block;
	font:80% Verdana, Arial, Helvetica, sans-serif;
}
.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: 8px;
}
.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;
}

/* Logo */

#logo {
	width:1000px;
	height:75px;
	border:0px solid #ffd235;
	background:#000;
	margin:0 auto;
}
#logo img {
	float:left;
}
#phone {
	width:1000px;
	margin:0 auto;

}
#phone p {
	text-align:right;
	font:180% Arial, Helvetica, sans-serif;
	font-weight:bold;
	margin:0.5em 0;
	color:#fff;
}

/* Navigation */

#nav {
	margin:0 auto;
	width:1000px;
	border:0px solid #fff;
}
#nav ul {
	list-style:none;
	list-style-type:none;
	margin:0;
	padding:0;
}

#nav ul li {
	list-style:none;
	list-style-type:none;
	float:left;
	padding:0;
	margin:0;
}

#nav a {
	padding:0px 20px;
	color:#fff;
	font:110% Arial, Helvetica, sans-serif;
	font-weight:bold;
	text-decoration:none;
}

#nav a:hover {
	background:#ffd235;
}

/* Introduction area */

#intro {
	width:940px;
	border:1px solid #999;
	margin:0 auto 10px auto;
	height:300px;
	padding:10px 20px;
	background:#fff;
}
#introtext, #intropic {
	height:275px;
	background:#fff;
	padding:0;
}

#introtext {
	float:left;
	font: 120% Georgia, "Times New Roman", Times, serif;
	width:400px;
}

#introtext h1 {
	text-transform:uppercase;
}

#intropic {
	width:450px;
	margin-left:440px;
}

/* Sidebar */

.testimonial {
	font:140% Georgia, "Times New Roman", Times, serif;
	color:#494949;
	font-style:normal;
}

/* Footer Navigation */

#footernav ul {
	list-style:none;
	list-style-type:none;
	margin:0 auto;
	width:500px;
}

#footernav ul li, #footernav a {
	list-style:none;
	list-style-type:none;
	float:left;
	padding:0 10px;
	color:#fff;
	margin:5px 0;
}

#footernav a {
	text-decoration:none;
	border-right:1px solid #fff;
}

/* Carryovers */
#contactbox {
	margin:0;
	padding:0 0 5px 0;

	color:#494949;
}

#contactbox h4 {
	color:#ffd235;
	font-weight:bold;
}


#callnow {
	margin:25px 0;
	padding:0 0 5px 0;

}

#callnow p {
	text-align:center;
	font:130% Georgia, "Times New Roman", Times, serif;
	color:#494949;
	font-weight:bold;	
}
