@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #ececf4;
	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;
}
.oneColElsCtr #container {
	width: 1024px;
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColElsCtr #mainContent {
	border-left: 58px solid #ececf4;
	border-right: 64px solid #ececf4;
	padding: 0 10px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.contentHead {
	color: #15375e;
	font-weight:bold;
	font-size:large;
	margin-top:20px;
}
.contentBody {
	padding-top:3px;
}
#sidebar {
float:right;
width:250px;
background:#fff;
text-align:center;
padding-left:10px;
padding-top: 10px;
}

/* nav */
ul#topnav {
	margin: 0; padding: 0;
	list-style: none;
	float: left;
	width: 1024px;
}
ul#topnav li {
	float: left;
	margin: 0; padding: 0;
}

/*--CSS Sprites - Default State--*/
ul#topnav a {
	float: left;
	display: block;
	height: 32px; /*--Specify height of navigation--*/
	text-indent: -99999px; /*--Shoot the text off the page--*/
	background-position: left top;
}
/*--CSS Sprites - Hover State--*/
ul#topnav a:hover {
	background-position: left -31px;
}
/*--Assign an image and width to each link--*/
ul#topnav li.nav_left  {
	background-image: url(images/nav_left.jpg);
	width: 58px;
}
ul#topnav li.nav_right a {
	background-image: url(images/nav_right.jpg);
	width: 300px;
}
ul#topnav li.home a {
	background-image: url(images/nav_home.jpg);
	width: 118px;
}
ul#topnav li.services a {
	background-image: url(images/nav_services.jpg);
	width: 149px;
}
ul#topnav li.gallery a {
	background-image: url(images/nav_gallery.jpg);
	width: 134px;
}
ul#topnav li.contact a {
	background-image: url(images/nav_contact.jpg);
	width: 146px;
}
ul#topnav li.blog a {
	background-image: url(images/nav_blog.jpg);
	width: 119px;
}


