/* *** ** Start of CSS ** *** */
* {margin:0; padding:0;}
#mainContent ul { margin:0 0 0 25px; padding:0; line-height:22px; }
ul.side-links { margin:0; }
ul.side-links li { list-style:none; padding:0 0 10px 0; margin:5px 0; border-bottom:dotted 1px #000;}
h1, h2, h3, h4, h5, h6, p, blockquote, form, label, dl, fieldset, address { margin:.5em 0; }

/* Text Styling */
h1 { color:#002448; font-family:Georgia, "Times New Roman", Times, serif, "Trajan Pro"; font-size:22px; }
h2 { color:#002448; font-family:Georgia, "Times New Roman", Times, serif, "Trajan Pro"; font-size:18px; }
#sidebar h2 { color:#fff; font-size:16px; text-align:center; }
h3 { color:#002448; font-family:Georgia, "Times New Roman", Times, serif, "Trajan Pro"; font-size:14px; }
#sidebar h3 { color:#fff; font-size:12px; text-align:center; font-family:Verdana, Arial, Helvetica, sans-serif; }
h4 {}
h5 {}
p { line-height:18px; margin:10px 0;}
strong { font-weight:bold; }
a { text-decoration:none; color: #0000CC; }
a:hover { text-decoration:underline; }
a:active
{
  outline: none;
}
a:focus
{
  -moz-outline-style: none;
}
.required { color:#FF0000; }
img { border:none; }
.clear { clear:both; }
hr { border: none; border-top: 1px solid #000; width: 100%; height: 1px;}

/* Layout Styling */
.body {
	font: 12px Arial, Helvetica, sans-serif;
	background:#af9888;
	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: #002448;
}
#top { width:100%;	background: #fef8e4 url(/images/bg-top-repeat.gif) repeat-x top; }
#bot { width:100%;	background: url(/images/bg-bot-repeat.gif) repeat-x bottom; }
#container {
	width: 898px;
	margin: 0 auto;
	text-align: left;
	background: url(/images/bg-sidebar.gif) right repeat-y;
}
#contentContainer { width:898px; background: url(/images/bg-sidebar-bot.gif) bottom right no-repeat; }
#mainContent { width:648px; padding: 0; float:left; margin: 0; }
#content { padding: 5px 20px; }
.homepage #content { width:457px; float:right; border-left:1px solid #002448;}
#practice-areas { width:150px; float:left; font-size:14px; }
#sidebar { width:249px; float:right; background:url(/images/bg-sidebar-top.jpg) no-repeat top; padding:50px 0 0 0; }
#sidebar a { color:#fff; }
p#address {
	text-align:center;
	color:#fff;
}

/* Form Styling */
#mc-form { width:170px; padding:10px 10px 10px 35px; margin:0; background:; text-align:center; color:#fff; }
#mc-form form { width:100%; }
#mc-form label { display:block; text-align:left; height:15px; padding:0 0 3px 0; margin:0; width:100%; }
#mc-form input { width:100%; margin:0 auto 5px; }
#mc-form textarea { width:100%; height:40px; }
#mc-form input.submit-btn { width:54px; height:20px; margin:10px 0 0 0; vertical-align:middle; text-align:center; }

/* Footer Styling */
#footerContainer {
	width:100%;
	height:100px;
	padding: 0;
	margin: 0;
	background:#002448 url(/images/bg-footer.gif) 0 62px repeat-x;
	color:#fff;
}
#footer { width:800px; height:57px; margin:0 auto; padding: 5px 0 0; }
#footer p {	margin: 0; padding: 10px 0; }

/* Footer Navigation Styling */
#footerNav a { color:#fff; padding:0 10px; border-right:1px solid #fff; font-size:10px; }
#footerNav a:hover { color:#5283a8; }
#footerNav a.last-child { border: none; }

/* Disclaimer Styling */
#disclaimer {
	width: 800px; /* adjust width and height for your disclaimer */
	height:50px;
	margin: 0 auto; /* centers the disclaimer (if outside your container div) */
	padding:20px 0 0;
	text-align: left;
}
#disclaimer p {
	margin:0; 
	padding:0; 
	line-height:17px;
	font-size:11px;
}
#disclaimer a { color:#FFF; font-weight:bold; }
#disclaimer a:hover { text-decoration:underline; } 

/* SpryMenuBarVertical.css - Revision: Spry Preview Release 1.4 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/*******************************************************************************

 LAYOUT INFORMATION: describes box model, positioning, z-order

 *******************************************************************************/

/* The outermost container of the Menu Bar, a fixed width box with no margin or padding */
#sidebar ul.MenuBarVertical
{
	margin: 0 22px;
	padding: 25px 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: 205px;
	background:#002448;
	font-family:Verdana, Arial, Helvetica, sans-serif;
}
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are same fixed width as parent */
#sidebar ul.MenuBarVertical li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 205px;
	background:#002448;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
#sidebar ul.MenuBarVertical ul
{
	margin: -5% 0 0 -105px;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: absolute;
	z-index: 5000;
	cursor: default;
	width: 120px;
	left: -1000em;
	top: 0;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
#sidebar ul.MenuBarVertical ul.MenuBarSubmenuVisible
{
	left: 0;
}
/* Menu item containers are same fixed width as parent */
#sidebar ul.MenuBarVertical ul li
{
	width: 120px;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Submenu containers have borders on all sides */
#sidebar ul.MenuBarVertical ul
{
	border: 1px solid #CCC;
	z-index:3000;
}
/* Menu items are a light gray block with padding and no text decoration */
#sidebar ul.MenuBarVertical a
{
	display: block;
	cursor: pointer;
	padding: 5px 5px 5px 50px;
	color: #ccc6b1;
	text-decoration: none;
}
#sidebar ul.MenuBarVertical ul a
{
	display: block;
	cursor: pointer;
	background-color: #002448;
	padding: 0.5em 0.75em;
	color: #FFF;
	text-decoration: none;
}
/* Menu items that have mouse over or focus have a blue background and white text */
#sidebar ul.MenuBarVertical a:hover, #sidebar ul.MenuBarVertical a:focus
{
	background: url(/images/SpryMenuBarRightHover.gif) no-repeat 10% 50%;
	color: #FFF;
	text-decoration:none;
}
#sidebar ul.MenuBarVertical ul a:hover, #sidebar ul.MenuBarVertical ul a:focus
{
	background-image:none;
	background-color: #FFFFCC;
	color: #333;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
#sidebar ul.MenuBarVertical a.MenuBarItemHover, #sidebar ul.MenuBarVertical a.MenuBarItemSubmenuHover, #sidebar ul.MenuBarVertical a.MenuBarSubmenuVisible
{
	background: url(/images/SpryMenuBarRightHover.gif) no-repeat 38px 50%;
	color: #FFF;
}
#sidebar ul.MenuBarVertical ul a.MenuBarItemHover, #sidebar ul.MenuBarVertical ul a.MenuBarItemSubmenuHover, #sidebar ul.MenuBarVertical ul a.MenuBarSubmenuVisible
{
	background-image:none;
	background-color: #FFFFCC;
	color: #333;
}



/*******************************************************************************

 BROWSER HACKS: the hacks below should not be changed unless you are an expert

 *******************************************************************************/

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
#sidebar ul.MenuBarVertical iframe
{
	position: absolute;
	z-index: 1010;
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	#sidebar ul.MenuBarVertical li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
	}
	#sidebar ul.MenuBarVertical ul li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		background: #FFF;
	}
}

/*  <![ Primary Contact Form [ ----------------------------------------------------*/

.pad_frm_itm {
	padding:3px 0px;
	margin:0px;}

.form-label {
	width:130px; /* Width of labels */
	padding:0px 5px 0px 0px;
	display:inline-block;
	vertical-align:top;}
  
.form-pct {	
	border:1px solid #999;
	background:#ddd;
	font:11px Verdana, Arial, Helvetica, sans-serif;
	color:#555;
	padding:3px 4px;
	width:330px;}
	
.msg-pct {
	border:1px solid #999;
	background:#ddd;
	font:11px Verdana, Arial, Helvetica, sans-serif;
	color:#555;
	padding:3px 4px;
	width:470px; /*  .form-label + .form-pct + horizontal padding on .form-label   */
	height:70px;
	overflow:auto;}

.custom-form {
	}

	.custom-form fieldset {
		margin:0px 0px 10px 0px;
		padding:0px;
		border:none;}
		  
	.custom-form legend {
		padding:0px 2px;
		font-weight:bold;}
		  
	.custom-form ol {
		margin:0px;
		padding:0px;
		list-style:none;}

/*  <![ Disclaimer alert [ ----------------------------------------------------*/

#overlay_div{
	position:relative;
	font:11px Verdana, Arial, Helvetica, sans-serif;
	color:#666;
	padding:0px;
	z-index:100;}

#overlay_div p {
	border-top:1px solid #0a3150;
	padding-top:6px;}
	
#iagree{
	position:absolute;
	font:11px Verdana, Arial, Helvetica, sans-serif;
	color:#666;
	padding:15px 15px 15px 15px;
	border:1px solid #031c40; /* Disclaimer box border color */
	background-color:#ececec; /* Disclaimer box bgcolor color */
	width:450px;
	margin:4px 0 0 0;}

#overlay_div h3{
	font:18px Verdana, Arial, Helvetica, sans-serif;
	color:#031c40;
	padding:0;
	margin:0;}

#iagree .overlay_submit{
	padding:4px;
	margin:0 6px 0 0;
	font:12px Verdana, Arial, Helvetica, sans-serif;
	color:#666;
	background-color:#fff;
	border:1px solid #999;
	float:right;}
	
#iagree .checkbox{
	float:left;
	height:22px;
	display:block;}

#iagree input#Agreement{
	position:relative;
	top:3px;
	border:none;}

/* Directions Page Styles (Google Maps Default)

/* [ Outer div ] -----------> */
#directionsForm{
	}

/* div that wraps form */
#directionsInput {
	padding:10px 0px;}

#fromAddress{
	width:350px;}

#directionsLocale{
	padding:10px 0px;}

#locale{
	}

#directionsSubmit{
	padding:10px 0px;}

#map{
	border:1px solid #000;
	color:#000;}

#addressNotFound{
	}

#directions{
	}/* *** ** End   of CSS ** *** */
/* *** ** Start of ContactUsLayout ** *** */
.CaptchaComponent img{
	padding:10px 0px;
}

.CaptchaComponent input{
	margin:10px 0px;
}/* *** ** End   of ContactUsLayout ** *** */
