@charset "utf-8";
body  {
	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;
	background-color: #000000;
}
#container {
	width: 1000px;
	margin: 20px auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFFFFF;
	background-image: url(../assets/back-container.gif);
	background-repeat: repeat-y;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #000000;
} 
#header {
	background-color: #006a9e;
	background-image: url(../assets/orange-county-court-polygraph-test.gif);
	background-repeat: no-repeat;
	height: 130px;
	padding: 0 10px 0 20px;
	border-bottom: thin solid #000000;
} 
#columnLeft {
	float: left;
	width: 176px; /* 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: #00699b;
	padding: 20px 10px 15px 20px;
	color: #FFFFFF;
}
#columnRight {
	float: right;
	width: 209px;
	background: #429b77;
	color: #FFFFFF;
	padding-top: 26px
}
#columnRightDivider {
	background-image: url(../assets/back-columnRightDivider.gif);
	background-repeat: repeat-x;
	height: 18px;
}
#columnContent {
	padding: 0px 12px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #FFFFFF;
}
#mainContent {
	margin: 0 230px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#mainContent h1 {
	margin: 0;
	padding: 22px 0 0 0;
	font-size: 20px;
}
#mainContent h2 {
	margin: 0;
	padding: 0;
	font-size: 16px;
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
}
#mainContentBanner {
	background-color: #FFFFFF;
	text-align: center;
}
h2  {
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #FFFF00;
	font-size: 18px;
}
h3 {
	color: #FFFF00;
	font-size: 18px;
	text-align: center;
	font-weight: normal;
}
.servicesList {
	line-height: 50px;
}

#footer {
	color: #FFFFFF;
	font-size: 10px;
	border-top: 1px solid #000000;
	background-image: url(../assets/polygraph-orange-county.png);
	background-repeat: no-repeat;
	height: 52px;
	padding: 0 10px 0 20px;
	background-color: 000000;
	
} 
#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;
}

.mainLinks a:link {
	text-decoration: none;
}
.mainLinks a:visited {
	text-decoration: none;
}
.mainLinks a:hover {
	text-decoration: none;
}

.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;
}
.bullet {
	font-size: 16px;
	font-weight: bold;
}
