@charset "UTF-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #FFF;
	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;
}
 #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: url(../images/container_back.jpg) no-repeat;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
 #header {
	padding: 0 10px 0 20px;
	background: url(../images/logo.png) no-repeat left top;
	height: 200px;
}
#header h1 {
	text-indent: -1999px;
}
#navBar {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin-left: 265px;
	padding: 0;
	margin-top: -75px;
	height: 150px;
	}
#nav {
	padding-left:3px;
	list-style: none;
	width: 780px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: -60;
}

#nav li {
	float: left;
}
#nav li a {
	text-indent: -1999em;
	height: 39px;
	display: block;
}

#nav li #home {
	background: url(../images/home.png) no-repeat;
	width: 111px;
}
#nav li #home:hover {
	width:111px;
	background: url(../images/home-over.png) no-repeat;
}

#nav li #services {
	width: 111px;
	background: url(../images/services.png) no-repeat;
}
#nav li #services:hover {
	width: 111px;
	background: url(../images/services-over.png) no-repeat;
}
#nav li #portfolio {
	width: 111px;
	background: url(../images/portfolio.png) no-repeat;
}
#nav li #portfolio:hover {
	width: 111px;
	background: url(../images/portfolio-over.png) no-repeat;
}

#nav li #contact {
	width: 111px;
	background: url(../images/contact.png) no-repeat;
}
#nav li #contact:hover {
	width: 111px;
	margin: 0;
	background: url(../images/contact-over.png) no-repeat;
}
 #mainContent {
	padding: 0 20px 0 280px;
}
#mainContent p {
	font: 18px Georgia, "Times New Roman", Times, serif;
}
#mainContent h1 {
	font: italic bold 19px Georgia, "Times New Roman", Times, serif;
	color: #000000;
}
#mainContent h2 {
	font: italic 16px Georgia, "Times New Roman", Times, serif;
	text-align: right;
}
#mainContent1 {
	padding: 0 20px 0 0px;
	height: 500px;
	}
 #footer {
	padding: 0 10px;
	margin-top: auto;
}
 #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 */
	font: 16px Georgia, "Times New Roman", Times, serif;
	text-align: right;
}

