@charset "UTF-8";
body  {
	font: 0.8em Arial;
	background: #132432;
	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;
}

a{
	color:#C2C2C2;
	text-decoration:underline;
}
a:hover{
	color:#B3B3B3;
	text-decoration:underline;
}

h1{ font-size: 1.5em; color:#FFFFFF;}

h2{ font-size: 1.2em; color:#FFFFFF;}

p { margin: 0 0 15px 0; }

#container {
	width: 795px;
	background: #264661;
	margin: 0 auto 20px 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 {
	padding: 0;
	height: 184px;
	background: url(/assets/images/header-bg.png) repeat-x;
	
} 
#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 */
}

#home-flash {
	padding: 0;
	height: 260px;
	background: url(/assets/images/flash-home-placer.png) repeat-x;
	
}

#interior-header {
	padding: 0;
	height: 117px;
	background-color: #8F9EA3;
} 
	#banner {
	float:left;
	width: 557px;
	height:117px;
	background-color: #760708;
}
	#quote {
	float: left;
	width: 211px;
	background-color: #8f9ea3;
	height:109px;
	padding: 8px 10px 0 15px;
	font-size: 11px;
	line-height: 1.2;
}
	

#lawyer-names {
	padding: 2px 0 0 0;
	height: 25px;
	background: url(/assets/images/lawyer-names-bg.png) repeat-x;
}

#nav { float: left; width: 200px; background: #264661; padding: 0px 10px 0px 25px; border-right: 1px #FFFFFF solid; margin: 10px 0 0 0; }
	#nav ul { list-style: none; margin: 5; padding: 0; }
	#nav ul li { margin: 0 0 6px 0; }
	
	#nav a {
	color: #FFFFFF;
	text-decoration: none;
	margin: 0 0 10px 0;
}

#mainContent { margin: 10px 0 50px 250px; padding: 0 20px;}
	#mainContent ul { margin: 0 0 0 40px; padding: 0; list-style:disc; }
	#mainContent ul li { margin: 0 0 0 2px; }
	#mainContent h1 { margin: 0; padding: 10px 0;}

#footer { padding: 6px 6px 6px 6px; height: 20px; background: url(/assets/images/footer-bg.png) repeat-x; text-transform:uppercase; text-align: center; font-size: 0.9em } 

#address { position:absolute; margin: 67px 0 0 418px; }

#nav-top { color: #000000; float: right; margin: 146px 15px 0 0; }
	#nav-top a { color: #000000; text-decoration:none; }

#logo { margin: 0px; padding: 0; position: absolute; }

.float-right { float: right; margin-left: 8px; }

#float_right { float: right; margin-left: 8px; }

.float-left { 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; }
	
#contact_box {
	background-color: #132432;
	float: right;
	padding: 15px;
	border: solid 2px black;
}
#case {
	background-color: #1E384E;
	float: right;
	padding: 10px;
	border: solid 2px black;
	width: 460px;
}
#staffNames {
	float:left;
	width: 250px;
}
#staffNames ul {
	list-style-type: none;
}
#staffNames li {
	padding: 0 0 40px 0;
}

#staffPics img{
	margin: 0 0 10px 0;
	border: none;
}

/****************Animation for staff pictures****************/
.thumbnail{
position: relative;
z-index: 0;
}

.thumbnail:hover{
background-color: transparent;
z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: lightyellow;
padding: 5px;
left: -1000px;
border: 1px dashed gray;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: -20;
left: 60px; /*position where enlarged image should offset horizontally */

}

