@charset "utf-8";
/* CSS Document */

body  {
	font-family: 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;
	background-color: darkgoldenrod;
	background-image: url(images/Background.gif);
}
#container {
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 960px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	/* border: 1px solid #000000; */
	text-align: justify; /* this overrides the text-align: center on the body element. */
	background-color: goldenrod;
} 
#pageheader {
	background-color: darkgoldenrod;
	overflow: hidden;
	height: 150px;
	width: 960px;
	text-align:left;
	background-image: url(images/960_150_top.jpg);
}
#slogan {
	background-color: darkgoldenrod;
	overflow: hidden;
	height: 50px;
	width: 950px;
	line-height: 50px;
	background-image: url(images/180_50_page_slogan.jpg);
	background-repeat: no-repeat;
	background-position: right;
	font-size: x-large;
	font-weight: bold;
	font-style: italic;
	padding-left: 10px;
}
#topnav  {
	background-color: darkgoldenrod;
	font-family: Verdana, Geneva, sans-serif;
	font-size: small;
	text-decoration: none;
	height: 25px;
	width: 960px;
	text-align: center;
}
#leftsidenav {
	float: left; /* since this element is floated, a width must be given */
	width: 180px; /* 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: goldenrod; /* padding keeps the content of the div away from the edges */
	font-family: Verdana, Geneva, sans-serif;
	font-size: small;
	text-decoration: none;
}
#leftsidenav ul  {
	margin: 0px;
	padding: 0px;
	text-align: left;
	list-style-type: none;
	border-left: 10px solid darkgoldenrod;
	border-bottom: 1px solid black;
}
#leftsidenav ul li  {
	border-top: 1px solid black;
	border-left: 1px solid black;
	border-right: 1px solid black;
}
#leftsidenav ul li a {
	display: block;
	font-size: small;
	text-decoration: none;
	padding-left: 1px;
	color: black;
	font-weight: bold;
	line-height: 30px;
	text-align: left;
}
#leftsidenav ul li a:hover {
	color: gold;
	background-color: darkgoldenrod;
	border-left: 10px solid gold;
	margin-left: -10px;
}
#rightsidebar {
	float: right; /* since this element is floated, a width must be given */
	width: 160px; /* padding keeps the content of the div away from the edges */
	background-color: goldenrod;
	background-image: url(images/180_125_right.jpg);
	background-repeat: no-repeat;
	padding: 140px 10px 15px 10px;
	text-align: left;
}
#mainPrivacy {
	background-color: palegoldenrod;
	margin-top: 0;
	/* margin-right: 180px; */
	margin-bottom: 0;
	margin-left: 180px;
	padding-top: 0;
	padding-right: 10px;
	padding-left: 10px;
	padding-bottom: 10px;
}
#mainContent {
	background-color: palegoldenrod;
	margin-top: 0;
	margin-right: 180px;
	margin-bottom: 0;
	margin-left: 180px;
	padding-top: 0;
	padding-right: 10px;
	padding-left: 10px;
	padding-bottom: 10px;
}
#mainContent ul {
	list-style-position: outside;
	list-style-image: url(images/gold2-bullet-002s.png);
	list-style-position:outside;
	list-style-type: square;
	text-align: justify;
}
#mainContent ul li{
	margin-top: 20px;
	margin-bottom: 20px;
}
#footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:goldenrod;
} 
#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 */
	text-align:center
}
.center  {
	text-align:center;
}
.notopmargin  {
	margin-top: 0;
}
.testimonial  {
	font-size: x-small;
	margin-bottom: 5px;
}
.client  {
	margin-top: 0;
	font-size: small;
	font-weight:bold;
	font-style: italic;
}
