@charset "utf-8";
body  {
	font: 100% Arial, Helvetica, sans-serif;
	background: #ffffff;
	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: #000000;
}
.twoColFixRtHdr #container { 
	width: 960px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 12px auto 0 auto; /* the auto margins (in conjunction with a width) center the page */
	/*border: 1px solid #000000;*/
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixRtHdr #header { 
	background: #DDDDDD; 
	padding: 0 10px 0 20px;  /* 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. */
} 
.twoColFixRtHdr #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 */
}


.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 434px; /* 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 */
	height: 700px;
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0;
	background-image:url(images/pic1.jpg);
}
.twoColFixRtHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 434px; /* 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 */
	height: 700px;
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0;
	background-image:url(images/pic2.jpg);
}
.twoColFixRtHdr #sidebar3 {
	float: right; /* since this element is floated, a width must be given */
	width: 434px; /* 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 */
	height: 700px;
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0;
	background-image:url(images/pic3.jpg);
}
.twoColFixRtHdr #sidebaradv {
	float: right; /* since this element is floated, a width must be given */
	width: 434px; /* 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 */
	height: 700px;
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0;
	background-image:url(images/pic-rowers.jpg);
}
.twoColFixRtHdr #sidebar4 {
	float: right; /* since this element is floated, a width must be given */
	width: 434px; /* 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 */
	height: 700px;
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0;
	background-image:url(images/pic4.jpg);
}
.twoColFixRtHdr #sidebar5 {
	float: right; /* since this element is floated, a width must be given */
	width: 434px; /* 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 */
	height: 700px;
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0;
	background-image:url(images/pic5.jpg);
}
.twoColFixRtHdr #sidebar6 {
	float: right; /* since this element is floated, a width must be given */
	width: 434px; /* 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 */
	height: 700px;
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0;
	background-image:url(images/pic6.jpg);
}
.twoColFixRtHdr #sidebar7 {
	float: right; /* since this element is floated, a width must be given */
	width: 434px; /* 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 */
	height: 700px;
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0;
	background-image:url(images/pic-advisory.jpg)
}
.twoColFixRtHdr #sidebar8 {
	float: right; /* since this element is floated, a width must be given */
	width: 434px; /* 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 */
	height: 700px;
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0;
	background-image:url(images/pic8.jpg);
}


.twoColFixRtHdr #mainContent { 
	margin: 0 434px 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twoColFixRtHdr #footer { 
	padding: 12px 0 0 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#ffffff; 
} 
.twoColFixRtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size:10px;
	color:#6d6e71;
	font-family:Arial, Helvetica, sans-serif;
	
}
.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;
}
.fltlftimg { /* this class can be used to float an element left in your page */
	float: left;
	margin: 80px 30px 0 0;
}
.fltlftimg2 { /* this class can be used to float an element left in your page */
	float: left;
	margin: 140px 30px 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;
}
.menu { padding:30px 0 0 0;
		width:180px; 
		margin:0 auto; 
		float:left;
}
.menu ul {  
	padding:0; 
	margin:0; 
	list-style:none;
	border:0; 
	float:left;
}
.menu ul li { 
	margin:0; 
	padding:0; 
	border:0;

}
.menu ul li a {  
	margin:0 0 4px 0; 
	padding:4px 0; 
	color:#999678;
	background-color: #fff;
	font:bold 11px Arial, Helvetica, sans-serif; 
	text-decoration:none;
	text-transform: uppercase;
	display:block;
	width: 180px;
	}
.menu ul li a span { 
	padding:4px 0px 4px 4px ; 

	}
.menu ul li a:hover {
	background-color: #999678;
	}
	
.menu ul li a:hover span {   
	background-color: #999678;
	color: #fff;
}
.menu ul li a.active {
	background-color: #999678;
	color: #fff;
}
.menu ul li a.active span {   
	background-color: #999678;
	color: #fff;
}
.clr { 
	clear:both; 
	padding:0; 
	margin:0;
}

.titlestrata {
    background:url(images/strata-legal-header.gif) no-repeat;
    width:184px;
    height:91px;
    font-size:0;
    overflow:hidden;
    text-indent:-9999px;
    margin: 30px 0 0 0;
	float:left;
}
.titlewelcome {
    background:url(images/1-sub-head.gif) no-repeat;
    width:496px;
    height:74px;
    font-size:0;
    overflow:hidden;
    text-indent:-9999px;
    margin: 90px 0 0 0;
	float:left;
}
.titleprivacypolicy {
    background:url(images/priv-policy-head.png) no-repeat;
    width:496px;
    height:100px;
    font-size:0;
    overflow:hidden;
    text-indent:-9999px;
    margin: 90px 0 0 0;
	float:left;
}
.titlebedifferent {
    background:url(images/2-sub-head.gif) no-repeat;
    width:389px;
    height:74px;
    font-size:0;
    overflow:hidden;
    text-indent:-9999px;
    margin: 90px 0 60px 0px;
	float:left;
}
.titleservice {
    background:url(images/3-title.gif) no-repeat;
    width:262px;
    height:75px;
    font-size:0;
    overflow:hidden;
    text-indent:-9999px;
    margin: 90px 0 35px 0px;
	float:left;
}
.titlemission {
    background:url(images/mission-statement.gif) no-repeat;
    width:368px;
    height:159px;
    font-size:0;
    overflow:hidden;
    text-indent:-9999px;
    margin: 90px 0 35px 0px;
	float:left;
}
.titlecontact {
    background:url(images/title-contact.gif) no-repeat;
    width:285px;
    height:74px;
    font-size:0;
    overflow:hidden;
    text-indent:-9999px;
    margin: 90px 0 35px 0px;
	float:left;
}

.titleadvisory {
    background:url(images/title-advisory.gif) no-repeat;
    width:309px;
    height:159px;
    font-size:0;
    overflow:hidden;
    text-indent:-9999px;
    margin: 90px 0 35px 0px;
	float:left;
}
.titleabout {
    background:url(images/4-sub-head.gif) no-repeat;
    width:217px;
    height:74px;
    font-size:0;
    overflow:hidden;
    text-indent:-9999px;
    margin: 90px 0 30px 0px;
	float:left;
}
.titleourservices {
    background:url(images/5-sub-head.gif) no-repeat;
    width:449px;
    height:75px;
    font-size:0;
    overflow:hidden;
    text-indent:-9999px;
    margin: 26px 0 0 0;
	float:left;
}
.titlesetsapart {
    background:url(images/title-sets-apart.gif) no-repeat;
    width:360px;
    height:178px;
    font-size:0;
    overflow:hidden;
    text-indent:-9999px;
    margin: 26px 0 26px 0;
	float:left;
}
.titlebenefits {
    background:url(images/6-sub-head.gif) no-repeat;
    width:286px;
    height:72px;
    font-size:0;
    overflow:hidden;
    text-indent:-9999px;
    margin: 40px 0 26px 0;
	float:left;
}
.titlewhatwedo {
    background:url(images/7-sub-head.gif) no-repeat;
    width:437px;
    height:73px;
    font-size:0;
    overflow:hidden;
    text-indent:-9999px;
    margin: 89px 0 43px 0px;
	float:left;
}
.titlewhere {
    background:url(images/8-sub-head.gif) no-repeat;
    width:238px;
    height:73px;
    font-size:0;
    overflow:hidden;
    text-indent:-9999px;
    margin: 80px 0 0 0;
	float:left;
}
.homeh3 {
    background:url(images/1-sub-head2.gif) no-repeat;
    width:479px;
    height:84px;
    font-size:0;
    overflow:hidden;
    text-indent:-9999px;
    margin: 28px 0 20px 0;
	float:left;
}
.abouth3 {
    background:url(images/4-sub-head2.gif) no-repeat;
    width:282px;
    height:86px;
    font-size:0;
    overflow:hidden;
    text-indent:-9999px;
    margin: 0 0 53px 0;
	float:left;
}
.clienth3 {
    background:url(images/5-sub-head2.gif) no-repeat;
    width:445px;
    height:56px;
    font-size:0;
    overflow:hidden;
    text-indent:-9999px;
    margin: 16px 0 30px 0;
	float:left;
}
.assignmentsh3 {
    background:url(images/7-sub-head2.gif) no-repeat;
    width:255px;
    height:27px;
    font-size:0;
    overflow:hidden;
    text-indent:-9999px;
    margin: 0 0 17px 0;
	float:left;
}
.block1col { 
	width:486px; 
	float:left; 
	margin:0 30px 0 0; 
	padding:0;
}
.block2col { 
	width:238px; 
	float:left; 
	margin:0 25px 0 0; 
	padding:0;
}

.blockabout { 
	width:135px; 
	float:left; 
	margin:0 30px 0 0; 
	padding:0;
}

.blockabout2 { 
	width:301px; 
	float:left; 
	margin:0 30px 0 0; 
	padding:0;
}

#email {
/*	padding: 104px 0 0 0;*/
	padding: 90px 0 0 0;
	float: left;
	width: 342px;
	text-align:right;
}
#underline {
	width: 526px;
	height: 25px;
	background:url(images/underline.gif) repeat-x;
	float:left;
}

.elink {
	font-size: 10px;
	font-weight: bold;
	text-decoration: none;
	margin-right:30px;
	color:#818285;
}
.twoColFixRtHdr #mainContent p{
	color: #6d6e71;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:11px;
	letter-spacing:normal;
	line-height:1.4em;
	margin:0;
	padding:0;
}
.twoColFixRtHdr #container #mainContent #top .block1col .textab tr td {
	color: #6d6e71;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:11px;
	letter-spacing:normal;
	line-height:1.4em;
	margin:0;
	padding:0;
}
.twoColFixRtHdr #mainContent p.contact{
	color: #818285;
	font-family: Arial, Helvetica, sans-serif;
	font-size:20px;
	letter-spacing:normal;
	line-height:1.4em;
	margin:0;
	padding:0;
}
.twoColFixRtHdr #mainContent li{
	color: #6d6e71;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:11px;
	letter-spacing:normal;
	line-height:1.4em;
	margin:0 0 4px 0;
	padding:0;
}
.indent {
	margin: 0 0 0 30px;
}
.help {
	background:url(images/howcanwehelp.gif) no-repeat;
    width:120px;
    height:19px;
    font-size:0;
    overflow:hidden;
    text-indent:-9999px;
    margin: 0;
	padding: 0;	
}
.phone {    
	background:url(images/phone.gif) no-repeat;
    width:250px;
    height:30px;
    font-size:0;
    overflow:hidden;
    text-indent:-9999px;
    margin: 0;
	padding: 0;
}
#top { height:650px; }
#bot { height:50px; }
#bentop { height: 650px; }
.boxed {float:left;}
.copyright {float:right;text-align:right;}
#footer a:link {color:#6d6e71; text-decoration:none;}
#footer a:active {color:#6d6e71; text-decoration:none;}
#footer a:visited {color:#6d6e71; text-decoration:none;}
#footer a:hover {color:#6d6e71; text-decoration:underline;}

#top h3.norm {
	color:#a6a389;
	font-family: "Times New Roman", Times, serif;
	font-size: 20px;
	margin:0;
	padding:0;
}

.fewerconflicts {
	background:url(images/2-sub-head2.gif) no-repeat;
    width:175px;
    height:40px;
    font-size:0;
    overflow:hidden;
    text-indent:-9999px;
    margin: 0 0 6px 0;
	padding: 0;	
}
.reputation {
	background:url(images/2-sub-head3.gif) no-repeat;
    width:108px;
    height:22px;
    font-size:0;
    overflow:hidden;
    text-indent:-9999px;
    margin: 0 0 6px 0;
	padding: 0;	
}
.charging {
	background:url(images/2-sub-head4.gif) no-repeat;
    width:197px;
    height:40px;
    font-size:0;
    overflow:hidden;
    text-indent:-9999px;
    margin: 8px 0 6px 0;
	padding: 0;	
}
.execsearch {
	background:url(images/5-sub-head3.gif) no-repeat;
    width:164px;
    height:17px;
    font-size:0;
    overflow:hidden;
    text-indent:-9999px;
    margin: 0 0 6px 0;
	padding: 0;	
}
.advselection {
	background:url(images/5-sub-head4.gif) no-repeat;
    width:199px;
    height:17px;
    font-size:0;
    overflow:hidden;
    text-indent:-9999px;
    margin: 8px 0 6px 0;
	padding: 0;	
}
.advsearch {
	background:url(images/5-sub-head5.gif) no-repeat;
    width:176px;
    height:17px;
    font-size:0;
    overflow:hidden;
    text-indent:-9999px;
    margin: 8px 0 6px 0;
	padding: 0;	
}
.bullfinancial {
	background:url(images/financial-services-regulatory.gif) no-repeat;
    width:243px;
    height:18px;
    font-size:0;
    overflow:hidden;
    text-indent:-9999px;
    margin: 16px 0 6px 0;
	padding: 0;	
}
.bullemployment {
	background:url(images/employment.gif) no-repeat;
    width:243px;
    height:18px;
    font-size:0;
    overflow:hidden;
    text-indent:-9999px;
    margin: 8px 0 6px 0;
	padding: 0;	
}
.bullpropfin {
	background:url(images/property-finance.gif) no-repeat;
    width:243px;
    height:18px;
    font-size:0;
    overflow:hidden;
    text-indent:-9999px;
    margin: 8px 0 6px 0;
	padding: 0;	
}
.bulllitigation {
	background:url(images/litigation.gif) no-repeat;
    width:243px;
    height:18px;
    font-size:0;
    overflow:hidden;
    text-indent:-9999px;
    margin: 8px 0 6px 0;
	padding: 0;	
}
.charitable {
	background:url(images/6-sub-head3.gif) no-repeat;
    width:215px;
    height:22px;
    font-size:0;
    overflow:hidden;
    text-indent:-9999px;
    margin: 20px 0 6px 0;
	padding: 0;	
}
.ethics {
	background:url(images/6-sub-head4.gif) no-repeat;
    width:73px;
    height:22px;
    font-size:0;
    overflow:hidden;
    text-indent:-9999px;
    margin: 26px 0 6px 0;
	padding: 0;	
}
.whether {
	background:url(images/8-sub-head2.gif) no-repeat;
    width:439px;
    height:79px;
    font-size:0;
    overflow:hidden;
    text-indent:-9999px;
    margin: 16px 0 29px 0;
	padding: 0;	
	float:left;
}
.twoColFixRtHdr #mainContent ul {
	margin: 0 0 0 12px;
	padding: 0px;
}
#top a:link {color:#818285; text-decoration:none;}
#top a:active {color:#818285; text-decoration:none;}
#top a:visited {color:#818285; text-decoration:none;}
#top a:hover {color:#818285; text-decoration:underline;}
#bentop a:link {color:#818285; text-decoration:none;}
#bentop a:active {color:#818285; text-decoration:none;}
#bentop a:visited {color:#818285; text-decoration:none;}
#bentop a:hover {color:#818285; text-decoration:underline;}

.twoColFixRtHdr #mainContent #top UL {
	margin: 22px 0 0 0;
	padding:0;
}

.twoColFixRtHdr #mainContent #top UL UL{
	margin-top: -2px;
}

.twoColFixRtHdr #mainContent #top UL LI {
	color:#a6a389;
	margin-right: 30px;
	margin-left: 0;
	line-height: 1.1em;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	font-family: "Times New Roman", Times, serif;
	font-size: 20px;
	list-style-type: none;
	background-image:url(images/bullet.gif);
	background-repeat:no-repeat;
}


html {
  overflow-y: scroll;
}
.text-privacy-policy p {
	margin: 0 0 5px !important;
}
.text-privacy-policy h3 {
	color: #a29d80; 
	font-family: 'Times New Roman', Times, serif; 
	margin: 15px 0 8px;
}
#mainContent.privacy-policy-page #top {
	height: auto;
}
#mainContent.privacy-policy-page #bot {
	height: auto;
	clear: both;
	padding-top: 20px;
}
#mainContent.privacy-policy-page ~ #footer > p > .copyright {
	padding: 10px 0;
}
.text-center {
	text-align: center;
}
.text-privacy-policy p span.text-underline {
	font-weight: normal;
	font-style: italic;
	text-decoration: underline !important;
}
.text-privacy-policy .privacy-policy-items {
	padding: 0 0 0 20px; 
}
.text-privacy-policy .privacy-policy-items a {
	text-decoration: underline !important;
}
.text-privacy-policy .privacy-policy-items h4 {
	font-variant: small-caps;
	font-size: 16px;
}
.text-privacy-policy .privacy-policy-items h5 {
	font-weight: bolder;
	
	font-size: 13px;
	margin: 10px 0 5px;
}
.text-privacy-policy .privacy-policy-items li {
	font-size: 14px !important;
}
.text-privacy-policy .privacy-policy-items li .inner-privacy-policy-list, .text-privacy-policy .privacy-policy-items li .sub-privacy-policy-list {  
	margin: 0 !important;
	padding: 0 0 0 20px !important;
}
.text-privacy-policy .privacy-policy-items li .inner-privacy-policy-list li { 
	background-image: none !important;
	list-style-type: disc !important;
	color: #6d6e71 !important;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif !important;
	font-size: 16px !important;
	margin: 0 !important;
}
.text-privacy-policy .privacy-policy-items li .inner-privacy-policy-list li p { 
	font-size: 11px !important;
}
.text-privacy-policy .privacy-policy-items li .sub-privacy-policy-list li { 
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif !important;
	font-size: 14px !important;
	margin: 0 !important;
}
.text-privacy-policy .privacy-policy-items li .sub-privacy-policy-list li p { 
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif !important;
	font-size: 11px !important;
	margin: 0 !important;
	font-weight: normal !important;
}
.text-privacy-policy .privacy-policy-items li p {
	font-weight: normal;
}
.text-privacy-policy .privacy-policy-items .text-italic {
	font-style: italic !important;
}
.text-privacy-policy .privacy-policy-items .text-bold {
	font-weight: bold !important;
}