@charset "UTF-8";
body  {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	color: #777777;
	background-color: #FFFFFF;
	background-image:url("http://www.lanes4claims.com/resources/assets/bg_01.png");
	background-repeat:repeat-x;
	background-position: top right;
	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 */
}
a:link, a:visited {
	color: #777777; 
	text-decoration: underline;
}
a:hover, a:active {
	color: #4093B4; 
	text-decoration: underline;
}
.twoColElsLtHdr #container { 
	width: 980px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #DDDDDD;
	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. */
} 
.twoColElsLtHdr #header {  
	padding: 0;  /* 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. */
} 
.twoColElsLtHdr #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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColElsLtHdr #sidebar1 {
	float: left; 
	width: 12em; /* since this element is floated, a width must be given */
	padding: 15px 0 0 30px; /* top right bottom left padding create visual space within this div */
	color: #4093B4;
}
.twoColElsLtHdr #sidebar1 h3, .twoColElsLtHdr #sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

.twoColElsLtHdr #mainContent {
	/*margin: 0 1.5em 0 13em;  the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	margin: 15px 30px 0 250px; /* top right bottom left. */
	
} 
.twoColElsLtHdr #footer { 
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
} 

/* Miscellaneous classes for reuse */
.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;
}
.twoColElsLtHdr #links {
	width: 980px;
	margin: 0 auto; 
	text-align: center;
	font: 10px Verdana, Arial, Helvetica, sans-serif;
	color: #999999; 
}
 .twoColElsLtHdr #links a:link, .twoColElsLtHdr #links a:visited {
 	font: 10px Verdana, Arial, Helvetica, sans-serif;
	color: #999999; 
	text-decoration: none;
}
.twoColElsLtHdr #links a:hover, .twoColElsLtHdr #links a:active {
	font: 10px Verdana, Arial, Helvetica, sans-serif;
	color: #4093B4; 
	text-decoration: underline;
}