/* ------------------------ DO NOT ALTER THIS FILE ---------------------------- 
structure.css are the styles for the DIVs in a website and should not contain
any typographic or content-related styles for a site. The styles within are strictly
used to create the layout/structure of the website and, as such, this style sheet 
will (almost) never need to be altered by the client or back-end programmers.
   ------------------------ DO NOT ALTER THIS FILE ---------------------------- */

/* ----- comment styles well for better reference later! ----- */

/* main divs to hold the main structure of the site */
#uber {
	position: relative;
	margin: 0 auto;
	width: 933px;
	background: #fff;
}

/* link to the top anchor of the site for handhelds */
#gototop {
	display: none;
	height: 0;
	width:0;
}
/* content area divs for both the two column and three column (attorneys) pages */
#contentfloat {
	width: 100%;
	float: left;
	padding: 20px 0px;
	padding-bottom: 10px;
}
#leftcolumn {
	float: left;
	width: 181px;
	margin: 0;
	padding: 0 10px;
	text-align: center;
}
#rightcolumn {
	margin-left: 201px;
	text-align: left;
	padding-right: 25px;
}
/* #rightcolumnsearch {text-align: left; padding: 15px 25px;} */
#rightcolumnsearch {
	text-align: left;
	width: 95%;
	margin: auto auto;
}
/* these are for the three column lawyer bio pages */
#lawyerpic {
	float: left;
	width: 145px;
	padding-bottom: 10px;
	border-right: 1px solid #666;
	border-bottom: 1px solid #666;
	font: 11px/13px Verdana, Arial, Helvetica, sans-serif;
	color: #666;
}
#lawyertext {
	margin-left: 155px;
	text-align: left;
}
#lawyercontact {
	display: none;
	height: 0;
	width:0;
}
#attorneypoplist {
	margin-top: 8px;
	width: 75%;
	border-top: 1px dotted #CC6666;
	border-bottom: 1px dotted #CC6666;
	padding: 8px 0px;
}
/* footer div relative positioned so we can add absolutely positioned links and esolutions logo divs inside it */
#footertop {
	height: 15px;
	clear: left;
	background-color: #a10b2f;
	position: relative;
}
#footertophome {
	height: 15px;
	background-color: #a10b2f;
	position: relative;
}
#footer {
	height: 60px;
	position: relative;
}
#footerredlinks {
	position: absolute;
	top: 11px;
	right: 20px;
}
#footerlogo {
	position: absolute;
	top: 28px;
	left: 259px;
	width: 111px;
	height: 18px;
}
