@charset "utf-8";
/* CSS Document */

* { padding: 0; margin: 0;}

body  {
	font: 13px Verdana, Helvetica, sans-serif; 
	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 */
	line-height: 20px;
	color: #e1e1e1;
	background: #1d1d1d;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;	
}

#background ul {color:#e1e1e1;}
#background li {list-style: square;}

#container { 
	width: 960px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #1d1d1d;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

#header { 
	background: #1d1d1d; 
	color: #929898;
	font-family: Verdana, Helvetica, sans-serif;
	position: relative;
	width: 100%;
	height: 90px;
/* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 

#header img {  position: absolute; top: 20px; left: 20px;}

#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: 20px 20px 0 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-size: 16px;
	letter-spacing: 0.05em;
	position: absolute;
	top: 33px;
	left: 20px;
	text-align: left; 
}

#header h2 {
	
	
	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: 20px 20px 0 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-size: 12px;
	position: absolute;
	top: 33px;
	left: 700px;
	text-align: right; 
}

#showcase { width: 948px; float: left; position: relative}

#showcase h1 {
	width: 960px;
	height: 240px;
	margin-top:80px;
	font-size: 50px;
	line-height: 1.1em;
	text-align: center; 
	color: #929898;
	font-family: Verdana, Helvetica, sans-serif;
}

#content-wrapper { float: left; width: 940px; position: relative; background: #1d1d1d; padding: 80px 20px 80px 20px; color:#e1e1e1;}

#content1 {
	float: left; /* since this element is floated, a width must be given */
	width: 280px; /* 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 */
	padding: 0 20px 0 0; /* padding keeps the content of the div away from the edges */
	border-right: 1px solid #414742;
}
#content2 {
	float: left; /* since this element is floated, a width must be given */
	width: 280px; /* 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 */
	padding: 0 20px 0 20px; /* padding keeps the content of the div away from the edges */
	border-right: 1px solid #414742;
}
#content3 { 
	float: left; /* since this element is floated, a width must be given */
	width: 275px; /* 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 */
	padding: 0 0 0 20px; /* padding keeps the content of the div away from the edges */
} 
#content-wrapper2 { float: left; width: 960px; position: relative; background: #1d1d1d;}

#footer { 
	padding: 0 0 0 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#414742;
	color: #a0a3a1;
}

.horizontalRule {
    clear:both;
    width:100%;
    background-color:#414742;
    height:1px;
    margin-top:10px;
    margin-bottom:10px;
}


.dkgraytext { color: #929898; font-size: 11px;}
.orangetext { color: #e47c27; font-size: 11px;}
.ltgraytext { color: #e4e4e4; font-size: 11px;}
.ltgraytext2 { color: #e4e4e4;}
.contentHeader { color: #929898; letter-spacing: 0.02em;}

h3 { padding: 0; margin: 0; color: #e1e1e1; font-size: 120%;}

ul { margin: 0 0 0 20px; background: url(../../../../../Inetpub/gsroot/images/brochureware/lexington-law/blank.gif) no-repeat 0 0;}

.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;
}

a {
	color: #e47c27;
}
a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #e47c27;
}
a:hover {
	text-decoration: underline;
	color: #e47c27;
}
a:active {
	text-decoration: none;
	color: #e47c27;
}
