@charset "utf-8";
/* CSS Document */
 
body  {
	font: 100% Arial, Helvetica, sans-serif;
	background: #272727;
	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: #FFFFFF;
	background-color: #272727;
}
h1 {
	font-size: 28px;
	color: #FF4225;
	font-weight: lighter;
	margin-bottom: -3px;
}
h2 {
	font-size: 16px;
	color: #FF4225;
	margin-bottom: -16px;
}
.twoColFixLtHdr #container #wrapper #mainContent .serviceRow {
	width: 100%;
	display: block;
}
.twoColFixLtHdr #container #wrapper #mainContent .servicePic {
	width: 15%;
	display: block;
}
.twoColFixLtHdr #container #wrapper #mainContent .serviceText {
	width: 80%;
	margin-left: 15%;
}
.twoColFixLtHdr #container {
	width: 954px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #272727;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	/* height: 720px; */
} 
.twoColFixLtHdr #header {
	height: 40px;
}
.twoColFixLtHdr #header img {
	float: right;
	margin-right: -9px;
	padding-left: 12px;
	padding-top: 4px;
	border: none;
	/*height: 40px;
	background-color: #272727;
	color: #5F5F54;
	text-align: right;*/
	/*word-spacing: 20px;
	font-weight: bold;
	padding-bottom: -5px;*/
} 
.twoColFixLtHdr #container #wrapper #mainContent img {
	float: left;
	padding-right: 20px;
	padding-bottom: 15px;
	padding-top: 5px;
}
.twoColFixLtHdr #container #wrapper #mainContent a {
	text-decoration: underline;
	color: #FFFFFF;
}


.twoColFixLtHdr #header 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: 0px 20px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixLtHdr #wrapper {
	border: 2px solid #5F5F54;
	/* height: 650px; */
	width: 100%;
	background: #FFFFFF;
	/* background-color: #1B1B18; */
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 320px; /* 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: #FFFFFF;
	color: #FF4225;
	font-size: 14px;
	height: 100%; /* height: 620px; */
	margin: 0px;
	padding-top: 15px;
	padding-right: 5px;
	padding-bottom: 15px;
	padding-left: 25px;
}
.twoColFixLtHdr #container #wrapper #sidebar1 img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

.twoColFixLtHdr  #container  #wrapper  #sidebar1  a  {
	color: #FF4225;
	text-decoration: underline;
}

.twoColFixLtHdr #mainNav {
	height: 20px;
	color: #5F5F54;
	text-align: right;
	font-weight: bold;
	padding-top: 0px;
	padding-right: 20px;
	float: right;
}
.orange {
	font-weight: bold;
	color: #FF4225;
	text-decoration: none;
}
.twoColFixLtHdr #mainContent {
	background-color: #1B1B18;
	padding-top: 130px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	margin-left: 350px;
} 
.twoColFixLtHdr #container #wrapper #mainNav a {
	font-weight: bold;
	color: #5F5F54;
	text-decoration: none;
}

.twoColFixLtHdr #container #wrapper #mainContent hr {
	border: 2px solid #272727;
	margin-bottom: 25px;
}

.twoColFixLtHdr #footer {
	padding: 0 10px 0 20px;
	height: 30px;
	background-color: #272727;
} 
.twoColFixLtHdr #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-size: 11px;
	color: #5F5F54;
	text-decoration: none;
}
.twoColFixLtHdr #container #footer a {
	color: #5F5F54;
	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;
}
 
