/*! HTML5 Boilerplate v5.2.0 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/*
 * apply a natural box layout model to all elements
 */
 
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
}

/* ==========================================================================
   General
   ========================================================================== */

body {
	font-family: "Benton Sans", sans-serif;
	font-style: normal;
	font-weight: normal;
	font-size: 18px;
	line-height: 32px;
	color: #484848;
	-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
	-webkit-text-size-adjust: 100%;
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	background: #252525;
}

img {
	max-width: 100%;
	height: auto;
	border: 0;
}

.responsive-img {
	width: 100%;
}

.float-right { float: right !important; }
.float-left { float: left !important; }
.float-none { float: none !important; }
.block { display: block !important; }

.margin-none { margin: 0 !important;}
.margin-top { margin-top: 50px !important; }
.margin-bottom { margin-bottom: 50px !important; }
.margin-bottom-dbl { margin-bottom: 100px !important; }
.margin-bottom-half { margin-bottom: 25px !important; }

.padding-none { padding: 0 !important; }
.padding-top { padding-top: 50px !important; }
.padding-bottom { padding-bottom: 50px !important; }
.padding-bottom-dbl { padding-bottom: 100px !important; }
.padding-bottom-half { padding-bottom: 25px !important; }

hr {
	margin-top: 50px;
	margin-bottom: 50px;
	border-top: 1px solid #d7d7d7;
	clear: both;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 { 
	color: #653a62;
	font-family: BentonModernDispSmbld;
	font-style: normal;
	font-weight: normal;
	line-height: normal;
	margin-top: 0px;
	margin-bottom: 50px;
}

h1, .h1 { font-size: 34px; }
h2, .h2 { font-size: 30px; }
h3, .h3 { font-size: 26px; }
h4, .h4 { font-size: 22px; }
h5, .h5 { font-size: 18px; }
h6, .h6 { font-size: 14px; }

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { color: #653a62; font-weight: normal; text-decoration: none; }
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover { color: #999; }

.fake-heading {
	font-family: "Benton Sans";
	font-style: normal;
	font-weight: bold;
	font-size: 16px;
	text-transform: uppercase;
	color: #ab1d41;
	margin-bottom: 40px;
}

p { margin: 0 0 35px 0; }
em, i { font-style: italic; }
strong, b { color: #ab1d41; font-weight: bold; }
small, .small { font-size: 70%; }
.large { font-size: 50px; }

.text-center { text-align: center; }
.text-left, .text-left-center { text-align: left; }
.text-right, .text-right-center { text-align: right; }
.uppercase { text-transform: uppercase !important; }
.lowercase { text-transform: lowercase !important; }
.capitalize { text-transform: capitalize !important; }
.selected, .current { color: #653a62 !important; }

/* ==========================================================================
   Color
   ========================================================================== */
   
.purple { color: #653a62 !important; }
.red { color: #ab1d41 !important; }
.gray { color: #d7d7d7 !important; }
.white { color: #fff !important; }

.purple-bg { background-color: #653a62; color: #fff; }
.red-bg { background-color: #ab1d41; color: #fff; }
.gray-bg { background-color: #d7d7d7; color: #fff; }
.white-bg { background-color: #fff; border: 1px solid #9d9d9d; }

/* ==========================================================================
   Links
   ========================================================================== */

a {
	color: #ab1d41;
	text-decoration: none;
	font-weight: normal;
	outline: 0;
	-webkit-transition:0.2s color linear;
			transition:0.2s color linear;
}

a:hover { color: #999; }
a:hover, a:active, a:focus { outline: 0; }

a.back {
	font-size: 14px;
	color: #929292;
	text-transform: uppercase;
	font-weight: normal;
}

a.back:hover {
	color: #ab1d41;
}

/* ==========================================================================
   Header
   ========================================================================== */
   
.header {
	width: 100%;
	background: rgba(0, 0, 0, .60);
	position: absolute;
	top: 0;
	left: 0;
	padding: 0 25px;
	z-index: 10000;
}

.home .header {
	background: none;
}

.no-hero .header {
	position: relative;
	background: #555;
}

.site-title {
	position: absolute;
	top: -17px;
	left: 0;
}

.site-title img {
	width: 159px;
	height: 62px;
}

.eyebrow {
	text-align: right;
	padding-top: 20px;
}

.eyebrow ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: inline-block;
}

.eyebrow ul li {
	display: inline;
	margin-right: 25px;
}

.eyebrow ul li:last-child {
	margin-right: 0px;
}

.eyebrow ul li a {
	font-size: 12px;
	text-transform: uppercase;
	font-weight: normal;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
}

.eyebrow ul li a:hover {
	color: #ab1d41;
}

/* ==========================================================================
   Mobile Nav
   ========================================================================== */

.main-menu .close {
	display: none;
	cursor: pointer;
	position: relative;
	text-align: right;
	padding: 25px;
	color: #fff;
	-webkit-transition:0.2s color linear;
			transition:0.2s color linear;
	
}

.main-menu .close:hover {
	color: #ab1d41;
}


.hamburger {
	display: none;
	cursor: pointer;
	float: right;
}

.hamburger i {
	font-size: 20px;
	line-height: 24px;
	color: #eee;
	-webkit-transition:0.2s color linear;
			transition:0.2s color linear;
}

.hamburger i:hover {
	color: #ab1d41;
}

/* ==========================================================================
   Main Navigation
   ========================================================================== */

.main-nav {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}

.home .main-nav {
	border-bottom: 1px solid #636363;
}

.main-nav:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.main-nav .social-nav {
	position: absolute;
	top: 92px;
	right: 0px;
	width: 250px;
}

.main-nav .mobile-social {
	display: none;
}

/*** SF ESSENTIAL STYLES ***/

.sf-menu, .sf-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
	position: relative;
}

.sf-menu li {
	position: relative;
}

.sf-menu ul {
	position: absolute;
	display: none;
	top: 100%;
	left: 0;
	z-index: 99;
}

.sf-menu > li {
	float: left;
}

.sf-menu li:hover > ul,
.sf-menu li.sfHover > ul {
	display: block;
}

.sf-menu a {
	display: block;
	position: relative;
}

.sf-menu ul ul {
	top: 0;
	left: 100%;
}


/*** SF SKIN ***/

.sf-menu {
	float: right;
	font-family: "Benton Sans";
	font-style: normal;
	font-weight: normal;
	margin-top: 5px;
}

.sf-menu ul {
	min-width: 2em; /* allow long menu items to determine submenu width */
	*width: 2em; /* no auto sub width for IE7, see white-space comment below */
}

.sf-menu a {
	position: relative;
	color: #fff;
	text-transform: uppercase;
	font-weight: normal;
	font-size: 14px;
	letter-spacing: .5px;
	text-decoration: none;
	zoom: 1; /* IE7 */
}

.sf-menu > li {
	margin-left: 50px;
	padding-top: 20px;
	padding-bottom: 15px;
}

.sf-menu > li:first-child {
	margin-left: 0px;
}

.sf-menu li {
	white-space: nowrap; /* no need for Supersubs plugin */
	*white-space: normal; /* ...unless you support IE7 (let it wrap) */
	-webkit-transition: background .2s;
			transition: background .2s;
}

.sf-menu > li:hover > a, .sf-menu > li > a:hover {
	color: #ab1d41;
}

.sf-menu li.current > a {
	font-weight: bold;
}

.sf-menu > li.current > a:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -15px;
	width: 100%;
	height: 7px;
	border-bottom: 7px solid #ab1d41;
}

.sf-menu ul li {
	background: rgba(101, 58, 98, .80);
}

.sf-menu li li a {
	letter-spacing: normal;
	text-transform: none;
	font-weight: normal;
	padding: 5px 16px;
	-webkit-transition:0.2s background linear;
			transition:0.2s background linear;
}

.sf-menu li li a:hover {
	background: rgba(101, 58, 98, .95);
}

.sf-menu li li.current a {
	background: rgba(101, 58, 98, .95);
}

/* ==========================================================================
   Sub Nav
   ========================================================================== */
 
.sub-nav {
 	width: 100%;
 	background-color: rgba(101, 58, 98, .75);
	padding: 20px 15px;
	position: absolute;
 	bottom: 0;
 	left: 0;
 	z-index: 9999;
 	text-align: center;
}
 
.no-hero .sub-nav {
 	background-color: #653a62;
 	position: relative;
 	margin-bottom: 100px;
}
 
.sub-nav ul {
 	padding: 0;
 	margin: 0 !important;
 	list-style: none;
 	text-align: center;
}
 
.sub-nav ul li {
	display: inline-block;
 	padding: 0;
 	margin: 0 20px;
 	position: relative;
}
 
.sub-nav ul li:before {
	content: "";
}
 
.sub-nav ul li:after {
	content: "|";
 	color: #fff;
 	position: absolute;
 	top: -1px;
 	right: -24px;
}
 
.sub-nav ul li:last-child:after {
 	content: "";
}
 
.sub-nav ul li a {
	color: #fff;
 	text-transform: uppercase;
 	font-size: 16px;
 	font-weight: normal;
 	text-decoration: none;
}
 
.sub-nav ul li > a:hover {
 	color: #ccc;
}
 
.sub-nav ul li.current > a {
	font-weight: bold;
}

.dropdown-wrapper span {
	display: none;
}

/* ==========================================================================
   Generic Inline List
   ========================================================================== */
   
.inline-list {
	padding: 0;
	margin: 0 !important;
	list-style: none;
}

.inline-list li {
	display: inline;
	margin: 0 10px;
	padding: 0 !important;
	position: relative;
}

.inline-list li:before {
	content: "" !important;
}

.inline-list li:first-child {
	margin-left: 0px;
}

.inline-list li:last-child {
	margin-right: 0px;
}

.inline-list li a {
	display: inline-block;
}

.gray-icons a {
	color: #7a7a7a;
}

/*.gray-icons a:hover {
	color: #ab1d41;
}*/

/* ==========================================================================
   Side Nav
   ========================================================================== */

.side-nav {
	margin-bottom: 25px;
}

.side-nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.side-nav ul li {
	padding: 0;
	margin: 0 0 25px;
	position: relative;
	display: block;
	
}

.side-nav ul li:before {
	content: "";
}

.side-nav ul li:last-child:after {
	content: "";
}

.side-nav ul li a {
	font-family: BentonModernDispSmbld;
	font-style: normal;
	font-weight: normal;
	font-size: 24px;
	text-decoration: none;
	color: #484848;
	display: block;
	padding-bottom: 5px;
}

.side-nav ul li > a:hover {
	color: #653a62;
}

.side-nav ul li.current > a {
	color: #653a62;
	border-bottom: 1px solid #ab1d41;
}

.side-nav ul ul {
	margin-top: 20px;
	margin-left: 40px;
	margin-bottom: 0px;
}

.side-nav ul ul li:before {
	content: ">";
	position: absolute;
	top: 0;
	left: -25px;
	color: #666;
}

/* ==========================================================================
   Post Nav
   ========================================================================== */

.post-nav ul {
	width: 100%;
	list-style: none;
	overflow: hidden;
	display: inline-block;
	margin: 30px 0 50px;
	padding: 50px 0;
	border: 1px solid #e6e6e6;
	border-width: 1px 0;
}

.post-nav ul li {
	float: left;
	width: 50%;
	min-height: 1px;
	padding: 0px;
}

.post-nav ul li:before {
	content: "" !important;
}

.post-nav ul li:first-child {
	text-align: left;
}

.post-nav ul li:last-child {
	text-align: right;
}

.post-nav ul li a {
	text-decoration: none;
	font-size: 15px;
	font-weight: bold;
	line-height: 20px !important;
	color: #484848;
	display: block;
}

.post-nav ul li span {
	font-size: 16px;
	font-style: italic;
	font-weight: normal;
	color: #ab1d41;
	display: block;
}

/* ==========================================================================
   Content
   ========================================================================== */

.content {
	background: #fff;
	overflow: hidden;
	padding-bottom: 50px;
}

.content.login  {
	padding-bottom: 0px;
}

.content ul {
	list-style: none;
	margin-top: 0px;
	margin-bottom: 60px;
	padding-left: 0px;
}

.content li {
    padding-left: 20px;
    position: relative;
}

.content li:before {
    content: ">";
    font-weight: bold;
    color: #ab133f;
    position: absolute;
    top: 0;
    left: 0;
}

.section-top {
	margin-top: 100px;
}

.hero {
	margin-bottom: 80px;
	background-color: #000 !important;
	z-index: 9999;
}

.login .hero  {
	margin-bottom: 0px;
}

.hero .tagline {
	font-family: BentonModernDispSmbld;
	font-style: normal;
	font-weight: normal;
	color: #fff;
	padding: 20px;
	text-shadow: 0px 0px 8px rgba(0, 0, 0, .50);
}

.hero .contact-box {
	background: rgba(171, 29, 65, .80);
	width: 380px;
	padding: 50px;
}

.hero .contact-box h2 {
	font-size: 37px;
	color: #fff;
	margin-bottom: 15px;
	line-height: 24px;
}

.hero .contact-box p {
	font-size: 17px !important;
	line-height: 24px;
	color: #fff;
	margin-bottom: 40px;
}

.hero .contact-box a {
	color: #fff;
}

.hero .contact-box img {
	width: 15px !important;
	height: 15px !important;
	margin-right: 10px;
}

.hero .attorney-box {
	background: rgba(101, 58, 98, .60);
	width: 430px;
	padding: 50px;
}

.hero .attorney-box h2 {
	font-size: 37px;
	color: #fff;
	margin-bottom: 10px;
	line-height: 32px;
}

.hero .attorney-box p {
	font-size: 17px;
	line-height: 32px;
	color: #fff;
	margin-bottom: 0px;
}

.hero .attorney-box .position {
	line-height: 20px;
}

.position {
	font-family: BentonModernDispSmbld;
	font-style: italic;
	font-weight: normal;
	line-height: normal;
	font-size: 24px !important;
}

.hero .attorney-box a {
	color: #fff;
	font-weight: normal;
}

.hero .attorney-box hr {
	margin-top: 30px;
	margin-bottom: 30px;
	border-top: 1px solid #8b4086;
}

.hero .attorney-box .avvo-img {
	width: 14px !important;
	height: 14px !important;
}

.hero .attorney-box .superlawyers-img {
	width: 61px !important;
	height: 14px !important;
}

.hero .attorney-box .bestlawyers-img {
	width: 61px !important;
	height: 14px !important;
}

.attorney-details {
	display: none;
}

.hero.static {
	position: relative;
	width: 100%;
	height: 600px;
	margin-bottom: 80px;
	background-position: center center !important;
	background-repeat: no-repeat;
	-webkit-background-size: cover !important;
	   -moz-background-size: cover !important;
			background-size: cover !important;
}

.login .hero.static {
	height: 750px;
	margin-bottom: 0px;
}

.callout {
	padding: 80px;
	border: 2px solid #ab1d41;
}

.callout p:last-child {
	margin-bottom: 0px;
}

/* ==========================================================================
   Home
   ========================================================================== */

.features .row {
	max-width: 1320px;
}

.features *[class*='col-'] {
	padding: 0 10px;	
}

.features h2 {
	color: #fff;
	font-size: 36px;
	margin-bottom: 40px;
}

.feature-box-1, .feature-box-2, .feature-box-3, .feature-box-4 {
	color: #fff;
	padding: 75px;
	margin-bottom: 20px;
	position: relative;
}

.feature-box-1, .feature-box-2 {
	min-height: 450px;
}

.feature-box-3, .feature-box-4 {
	min-height: 500px;
}
 
.feature-box-1 {
	background-position: center center !important;
	background-repeat: no-repeat;
	-webkit-background-size: cover !important;
	   -moz-background-size: cover !important;
			background-size: cover !important;
}

.feature-box-2 {
	background: #653a62;
}

.feature-box-3 ul {
	padding-left: 0px;
	margin-bottom: 60px;
}

.feature-box-3 li a {
	font-weight: normal;
	font-size: 16px;
	color: #484848;
}

.feature-box-3 li a:hover {
	color: #ab1d41;
}

.feature-box-4 {
	background: #ab1d41;
}

/*.feature-box-4 .btn {
	position: absolute;
	right: 75px;
	bottom: 75px;
}*/

/* ==========================================================================
   Social
   ========================================================================== */

.linkedin, .avvo, .google, .youtube, .facebook {
	background-repeat: no-repeat;
	background-position: 0px 0px;
	height: 14px;
	display: inline-block;
}

.linkedin {
	background-image: url('../images/ui/icon-linkedin.png');
	width: 14px;
}

.avvo {
	background-image: url('../images/ui/icon-avvo.png');
	width: 14px;
}

.google {
	background-image: url('../images/ui/icon-google+.png');
	width: 16px;
}

.youtube {
	background-image: url('../images/ui/icon-youtube.png');
	width: 17px;
}

.facebook {
	background-image: url('../images/ui/icon-facebook.png');
	width: 8px;
}

.linkedin:hover, .avvo:hover, .google:hover, .youtube:hover, .facebook:hover {
	background-position: 0px -14px;
}

.contact-social .linkedin, .contact-social .avvo, .contact-social .google, .contact-social .youtube, .contact-social .facebook {
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: 0px 0px;
	height: 27px;
	display: inline-block;
}

.contact-social .linkedin {
	background-image: url('../images/ui/icon-linkedin-lg.png');
	width: 27px;
}

.contact-social .avvo {
	background-image: url('../images/ui/icon-avvo-lg.png');
	width: 27px;
}

.contact-social .google {
	background-image: url('../images/ui/icon-google+-lg.png');
	width: 27px;
}

.contact-social .youtube {
	background-image: url('../images/ui/icon-youtube-lg.png');
	width: 31px;
}

.contact-social .facebook {
	background-image: url('../images/ui/icon-facebook-lg.png');
	width: 14px;
}

.contact-social .linkedin:hover, .contact-social .avvo:hover, .contact-social .google:hover, .contact-social .youtube:hover, .contact-social .facebook:hover {
	background-position: 0px -27px;
}

/* ==========================================================================
   Misc
   ========================================================================== */

.partners, .partners br {
	font-family: "Benton Sans", sans-serif;
	font-style: normal;
	font-weight: normal;
	font-size: 16px !important;
	line-height: 30px !important;
	color: #fff;
	-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
	-webkit-text-size-adjust: 100%;
}

.logo-print {
	display: none;
	margin-bottom: 50px;
	margin-left: 25px;
}

.logo-print img {
	width: 125px;
	height: auto;
}

.system-message {
	border:	#ab1d41 2px solid;
	background-color: rgba(101, 58, 98, .25);
	padding: 50px;
	width: 100%;
}

.cta-left, .cta-right {
	display: table-cell;
	vertical-align: middle;
	padding: 0 25px;
}

.cta-left {
	width: 66.66666%;
}

.cta-right {
	width: 33.33333%;
	text-align: right;
}

.team-thumb-print {
	display: none;
}

.bio-extended {
	display: none;
}

.list-item {
	display: none;
}

.top {
	display: none;
	position: fixed;
	bottom: 25px;
	right: 25px;
	width: 35px;
	height: 35px;
	background: none;
	border: 2px solid #ab1d41;
	color: #ab1d41;
	cursor: pointer;
	z-index: 99999;   
	text-align: center;
	vertical-align: bottom;
	-webkit-transition:0.2s all linear;
			transition:0.2s all linear;
	
}

.top:hover {
	background: #ab1d41;
	color: #fff;
}

.top i {
	font-size: 40px;
	line-height: 40px;
	margin-top: -6px;
}

.news-list h2 {
	font-size: 28px;
	margin-bottom: 25px;
}

.news-list p {
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 25px;
}

.news-list img {
	margin-top: 6px;
}

.attorneys h2 {
	font-size: 26px;
	padding-bottom: 10px;
	margin-bottom: 0px;
	border-bottom: 1px solid #ab1d41;
}

.attorneys p {
	font-family: BentonModernDispSmbld;
	font-style: italic;
	font-weight: normal;
	line-height: 32px;
	color: #808080;
}

.attorneys .photo-container {
	overflow: hidden;
	margin-bottom: 30px;
}

.attorneys .photo {
	-webkit-transition: -webkit-transform 1s;
			transition: transform 1s;
}

.attorneys .photo:hover {
	-webkit-transform: scale3d(1.1,1.1,1);
	transform: scale3d(1.1,1.1,1);
}

.attorneys .info {
	position: relative;
	width: 50%;
	float: left;
}

.side-list h2 {
	font-size: 24px;
	color: #484848;
	margin-bottom: 25px;
}

.side-list p {
	font-size: 16px;
	line-height: 28px;
	margin-bottom: 25px;
}

.related img {
	margin-bottom: 20px;
}

.related p {
	font-family: BentonModernDispSmbld;
	font-style: normal;
	font-weight: normal;
	font-size: 19px;
	line-height: 22px;
	color: #653a62;
	margin-bottom: 15px;
}

.related .date {
	font-family: "Benton Sans";
	font-style: normal;
	font-weight: normal;
	font-size: 13px;
	text-transform: uppercase;
	color: #929292;
	margin-bottom: 0px;
}

.date {
	text-transform: uppercase;
	color: #653a62;
	font-size: 16px;
}

.avvo-badges {
	margin: 0 0 35px !important;
	padding: 0;
	list-style: none;
	width: 100%;
	display: block;
	overflow: hidden;
}

.avvo-badges li {
	padding-right: 30px;
	padding-left: 0px;
	padding-bottom: 30px;
	/*padding: 0;
	width: 25%;
	text-align: center;*/
	display: inline-block;
	line-height: 86px;
	height: 86px;
}

.avvo-badges li:before {
    content: "";
}

.avvo-badges li:last-child {
	padding-right: 0px;
}

.avvo-badges li img {
	/*padding: 0 15px;*/
}

.video-wrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* ==========================================================================
   Boxes
   ========================================================================== */

.insights .box-gray, .insights .box-red, .insights .box-purple, .insights .box-white {
	/*min-height: 450px;*/
	height: 550px;
	overflow: hidden;
}

.insights .box-gray p:last-child, .insights .box-red p:last-child, .insights .box-purple p:last-child, .insights .box-white p:last-child {
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 50px;
}

.boxes *[class*='col-'] {
	padding: 15px;
}

.box-gray, .box-red, .box-purple, .box-white {
	width: 100%;
	padding: 50px;
	position: relative;
}

.box-gray {
	background-color: #d7d7d7;
}

.box-red {
	background-color: #ab1d41;
	color: #fff;
}

.box-purple {
	background-color: #653a62;
	color: #fff;
}

.box-white {
	background-color: #fff; border: 1px solid #9d9d9d;
}

.box-gray h2, .box-red h2, .box-purple h2, .box-white h2 {
	text-transform: uppercase;
	margin-bottom: 20px;
}

.box-gray p, .box-red p, .box-purple p, .box-white p {
	font-size: 14px;
	line-height: 24px;
}

.box-gray p:last-child, .box-red p:last-child, .box-purple p:last-child, .box-white p:last-child {
	margin-bottom: 0px;
}

.box-red h2 a, .box-purple h2 a {
	color: #fff;
}

.box-red h2 a:hover, .box-purple h2 a:hover {
	color: #999;
}

/* ==========================================================================
   Login
   ========================================================================== */

.login-container {
	text-align: center;
	display: block;
	width: 400px;
	padding: 185px 20px 0;
	margin: 0 auto;
}

.login-container h2, .login-container p, .login-container a {
	color: #fff;
}

.login-container h2 {
	font-family: "Benton Sans", sans-serif;
	font-style: normal;
	font-weight: bold;
	font-size: 16px;
	text-align: left;
	margin-bottom: 20px;
}

.login-container hr {
	margin-top: 0px;
	margin-bottom: 50px;
	border-top: 1px solid #fff;
}

.login-container a {
	font-size: 18px;
	font-weight: normal;
}

.login-container a:hover {
	color: #ab1d41;
}

.login-container .instructions {
	font-family: BentonModernDispSmbld;
	font-style: normal;
	font-weight: normal;
	font-size: 26px;
	margin-bottom: 50px;
}

.login-container input[type="text"], .login-container input[type="password"] {
	text-align: center;
	font-size: 16px !important;
	background: #ebebeb;
	border: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */
   
.logos {
	background: #fff;
	text-align: center;
}

.logos ul {
	padding: 0;
	list-style: none;
	margin: 0 0 50px;
}

.logos ul li {
	display: inline-block;
	margin: 0;
	padding: 0 35px 25px !important;
}

.logos .row {
	max-width: 1320px;
}

.footer {
	width: 100%;
	padding-top: 50px;
	padding-bottom: 50px;
	color: #fff;
	font-size: 12px;
	line-height: 24px;
}

.footer a {
	color: #fff;
	text-decoration: none;
}

.footer a:hover {
	color: #ab1d41;
}

.footer ul li a {
	text-transform: uppercase;
	font-weight: normal;
}

.footer-nav, .util-nav {
	margin-bottom: 35px;
}

.footer-nav li, .util-nav li {
	margin: 0 25px;
}

.footer-nav ul li a {	
	font-size: 14px;
}

.footer-nav ul li.current a {	
	font-weight: bold;
}

.footer .address-container {
	margin-right: 25px;
	padding-right: 20px;
	border-right: 1px solid #7d7d7d;
}

.footer .credit {
	position: absolute;
	bottom: 0;
	right: 0;
	padding-right: 25px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
   
.btn, input[type='submit'] {
	font-family: "Benton Sans", sans-serif !important;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 20px;
	font-size: 16px;
	text-align: center;
	text-decoration: none;
	letter-spacing: 1px;
	color: #ab1d41;
	display: inline-block;
	cursor: pointer;
	position: relative;
	background: none;
	border-top: none;
	border-bottom: none;
	border-left: 1px solid #653a62;
	border-right: 1px solid #653a62;
	padding: 10px 35px 8px;
	max-width: 100%;
	-webkit-transition: 0.2s all linear;
			transition: 0.2s all linear;
}

.btn:hover, input[type='submit']:hover {
	color: #fff;
	background: #ab1d41;
	border-left: 1px solid #ab1d41;
	border-right: 1px solid #ab1d41;
}

.btn.white {
	color: #fff;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
}

.btn.white:hover {
	color: #653a62 !important;
	background: #fff;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
}

.btn span {
	font-weight: normal;
	font-style: italic;
	text-transform: capitalize;
}

/* ==========================================================================
   Tables
   ========================================================================== */

.history-table {
	display: table;
	table-layout: fixed;
	width: 100%;
	margin-bottom: 50px;
}

.history-table td {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	padding: 0;
	border-right: 1px solid #FFF;
}

.history-table thead {
	font-weight: 700;
}

.history-table tbody {
	display: table-row-group;
}

.history-table tbody td:before {
	display: none;
}

.history-table tbody tr {
	display: table-row;
}

.history-table tbody td {
	padding: 10px;
	display: table-cell;
	position: relative;
}

.history-table tbody tr:nth-child(odd){ 
	background: #F8F8F8;
}
	
.history-table tbody tr:nth-child(even){
	background: #F0F0F0;
}

/* ==========================================================================
   Toggles
   ========================================================================== */
 
.toggle {
	clear: both;
	position: relative;
	margin-bottom: 75px;
}

.toggle h3 {
	font-size: 22px;
	text-transform: uppercase;
	cursor: pointer;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid #999;
	
}

.toggle h3:after {
	content: '\f105';
	font-family: "FontAwesome";
	color: #ab1d41;
	font-size: 36px;
	position: absolute;
	right: 0;
	top: -8px;
	-webkit-transition: transform 0.3s linear;
			transition: transform 0.3s linear;
}

.toggle h3 span {
	margin-right: 25px;
}

.toggle h3.active:after {
	-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
			transform: rotate(90deg);
}

.toggle .toggle-content {
	display: none;
	margin-bottom: 50px;
	overflow: hidden;
}

/* ==========================================================================
   Forms
   ========================================================================== */

::-webkit-input-placeholder {
   color: #484848;
   font-size: 14px;
}

:-moz-placeholder { /* Firefox 18- */
   color: #484848;
   font-size: 14px; 
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #484848; 
   font-size: 14px;
}

:-ms-input-placeholder {  
   color: #484848;
   font-size: 14px;
}

label {
	display: block;
}

textarea:focus, input:focus, button:focus, select:focus {
    outline: 0 !important;
}

input[type="text"], input[type="password"], input[type="email"], textarea, select {
	font: 16px/24px 'Ubuntu', sans-serif;
	font-weight: normal;
	color: #484848;
	width: 100%;
    padding: 10px 20px;
    margin: 0;
	border: none;
	background: #fff;
	border: 1px solid #d4d4d4;
	
	-webkit-appearance: none;
	-webkit-border-radius: 0px;
    border-radius: 0;
}

input[type="text"], input[type="password"], input[type="email"], select {
	height: 55px;
}

textarea {
	height: 130px;
}

.select {
	position: relative;
}

.select:after {
	font-family: 'FontAwesome';
	font-size: 24px;
	content: "\f107";
	position: absolute;
	top: 12px;
	right: 15px;
}

input[type="submit"] {
	display: inline-block;
	-webkit-appearance: none;
	-webkit-border-radius: 0px;
	border-radius: 0;
	border-top: none;
	border-bottom: none;
}

#create-account-form .form-item, #update-account-form .form-item, #reset-password-form .form-item, #update-profile-form .form-item, #product-form .form-item, #forgot-username-form .form-item, #forgot-password-form .form-item {
	margin-bottom: 50px;
}

.form-item {
	margin-bottom: 15px;
	overflow: hidden;
}

.form-item.error input, .form-item.error textarea, .form-item.error select, .select.error select {
	border: 1px solid #ff0000 !important;
}

.form-item.error label {
	color: #ff0000;
}

.radio-group {
	display: block;
	margin-bottom: 20px;
}

input[type='radio'] {
    margin-right: 5px;
}

.alert {
	margin-bottom: 20px;
	display: block;
}

.alert label {
	font-size: 14px;
	line-height: 24px;
	color: #ff0000;
	display: block;
}

#mc-embedded-subscribe-form input[type="submit"] {
	margin-top: 8px;
	padding: 10px 0 8px;
	width: 100%;
}

#mc_embed_signup div.mce_inline_error {
    margin: 0 0 1em 0;
    padding: 5px 10px;
    background: none !important;
    font-size: 14px !important;
    line-height: 24px !important;
    font-weight: normal !important;
    z-index: 1;
    color: #ff0000 !important;
}

.mce_inline_error {
	border: 1px solid #ff0000 !important;
}

div.mce_inline_error {
	border: none !important;
}

.response {
	color: #ff0000;
}

.alert-processing {
	color: #ab1d41;
}

.alert-success {
	color: #653a62;
	padding: 25px;
	border: 1px solid #653a62;
}

.alert-warning {
	color: #ab1d41;
	padding: 25px;
	border: 1px solid #ab1d41;
}

.alert-success p:last-child, .alert-warning p:last-child {
	margin-bottom: 0px;
}

/* ==========================================================================
   Blockquotes
   ========================================================================== */

blockquote {
	position: relative;
	margin: 0px;
	padding-top: 20px;
	padding-bottom: 20px;
	height: 100%;
}

blockquote:before, blockquote:after {
	font-family: BentonModernDispSmbld;
	font-style: italic;
	font-weight: normal;
	font-size: 120px;
	color: rgba(255, 255, 255, .25);
	position: absolute;
}

blockquote:before {
	content: "“";
	top: 0;
	left: -10px;
}

blockquote:after {
	content: "”";
	bottom: -65px;
	right: 0px;
}

blockquote p {
	font-family: BentonModernDispSmbld;
	font-style: normal;
	font-weight: normal;
	font-size: 28px !important;
	line-height: 36px !important;
	color: #fff;
	margin-bottom: 0px;
}

.cite {
	font-size: 20px !important;
}

.box-gray blockquote p, .box-white blockquote p {
	color: #653a62;
}

.box-white blockquote:before, .box-white blockquote:after {
	color: #ebebeb;
}

/* ==========================================================================
   Grid
   ========================================================================== */

.row {
	max-width: 1200px;
	margin: 0 auto !important;
	position: relative;
	overflow: hidden;
}

.row .row {
    width: auto;
    margin: 0 -25px !important;
}

*[class*='col-'] {
	float: left;
	padding: 0 25px;
	position: relative;
	overflow: hidden;
}

.col-1-1 { width: 100%; float: none; }
.col-1-2 { width: 50%; }
.col-1-3 { width: 33.33333%; }
.col-2-3 { width: 66.66666%; }
.col-1-4 { width: 25%; }
.col-3-4 { width: 75%; }
.col-1-5 { width: 20%; }
.col-2-5 { width: 40%; }
.col-3-5 { width: 60%; }
.col-4-5 { width: 80%; }
.col-5-6 { width: 85%; }

.alpha { padding-left: 0; }
.omega { padding-right: 0; }

.cell {
	display: table;
	margin-bottom: 50px;
	width: 100%;
}

.cell-inner {
	padding: 75px;
	display: table-cell;
	vertical-align: middle;
}

.cell-inner p:last-child {
	margin-bottom: 0px;
}

.centered { margin: 0 auto; position: relative; float: none; }

/* ==========================================================================
   Sliders
   ========================================================================== */

.rev_slider_wrapper {
	height: 600px;
}

#tall-slider, #leader-slider {
	margin-bottom: 0px;
}

.home .forcefullwidth_wrapper_tp_banner {
	background-color: #000;
}

#home-slider {
	margin-bottom: 20px;
	height: 750px;
}

#home-slider .info-block {
	width: 100%;
	height: 100%;
	padding-top: 50px;
	padding-bottom: 50px;
	background: rgba(0, 0, 0, .50);
}

#home-slider .info-block p {
	color: #fff;
	font-size: 20px;
	line-height: 34px;
	font-style: italic;
	margin-bottom: 0px;
}

.slider-caption {
	font-family: BentonModernDispSmbld;
	font-style: italic;
	font-weight: normal;
	color: #fff;
	padding: 20px;
	text-shadow: 0px 0px 10px rgba(0, 0, 0, .75);
}

#community-slider {
	padding: 75px;
	position: relative;
}

#community-slider .slide {
	display: table !important;
}

#community-slider .slide-content {
	display: table-cell !important;
	vertical-align: middle;
}

.community-slider-container {
	background: #653a62;
}

.community-slider-container .title {
	position: absolute;
	top: 25px;
	left: 0;
	width: 100%;
	text-align: center;
}

.community-slider-container .title span {
	font-size: 16px;
	text-transform: uppercase;
	font-weight: bold;
	color: rgba(255, 255, 255, .30);
}

#quote-slider {
	padding: 75px;
	background: #ab1d41;
	position: relative;
}

#quote-slider:before, #quote-slider:after {
	font-family: BentonModernDispSmbld;
	font-style: italic;
	font-weight: normal;
	font-size: 120px;
	color: rgba(255, 255, 255, .25);
	position: absolute;
}

#quote-slider:before {
	content: "“";
	top: 50px;
	left: 45%;
}

#quote-slider:after {
	content: "”";
	bottom: -15px;
	left: 43%;
	width: 60px;
}

#quote-slider .slide {
	display: table !important;
}

#quote-slider blockquote:before, #quote-slider blockquote:after {
	content: "";
}

#quote-slider blockquote {
	display: table-cell !important;
	vertical-align: middle;
	padding: 0;
}

#quote-slider blockquote p {
	text-align: center;
}

#news-slider {
	display: inline-block;
	position: absolute;
	top: 55%;
	left: 50%;
	width: 90%;
	text-align: center;
	margin-bottom: 0px;
	-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
			transform: translate(-50%, -50%);
}

#news-slider h2 {
	font-size: 40px;
	color: #fff;
	max-width: 50%;
	margin: 0 auto 25px;
	text-shadow: 0px 0px 8px rgba(0, 0, 0, .50);
}

#news-slider .slick-prev {
    left: 0;
}

#news-slider .slick-next {
    right: 0;
}

#badge-slider {
	padding-top: 25px;
	padding-bottom: 15px;
}

#badge-slider .badge {
	padding-left: 50px;
	padding-right: 50px;
}

#badge-slider .slick-prev:before,
#badge-slider .slick-next:before {
    color: #6e6e6e;
}

#badge-slider .slick-prev {
    left: -20px;
    background: #fff;
}

#badge-slider .slick-next {
    right: -20px;
    background: #fff;
}

/* ==========================================================================
   Slick Slider
   ========================================================================== */

.slick-slide img {
	width: 100%;
	height: auto;
}
   
.slick-slider {
    position: relative;

    display: block;

    -moz-box-sizing: border-box;
         box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
    height: 100% !important;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;

    display: block;
    height: 100% !important;
}

.slick-track:before,
.slick-track:after {
    display: table;

    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;

    height: auto;

    border: 1px solid transparent;
}

/* ==========================================================================
   Slick Theme
   ========================================================================== */
   
/* Slider */
.slick-loading .slick-list {
    background: #fff url('../images/ui/ajax-loader.gif') center center no-repeat;
}

/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 32px;
    height: 32px;
    margin-top: -15px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: .25;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'FontAwesome';
    font-size: 32px;
    line-height: 1;
    opacity: .75;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
    left: 15px;
}

[dir='rtl'] .slick-prev {
    right: -25px;
    left: auto;
}

.slick-prev:before {
    content: '\f104';
}

[dir='rtl'] .slick-prev:before {
    content: '→';
}

.slick-next {
    right: 15px;
}

[dir='rtl'] .slick-next {
    right: auto;
    left: -25px;
}

.slick-next:before {
    content: '\f105';
}

[dir='rtl'] .slick-next:before {
    content: '←';
}

/* Dots */
.slick-slider {
    margin-bottom: 30px;
}

.slick-dots {
    position: absolute;
    bottom: -50px;
    display: block;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}

.slick-dots li button:before {
    font-family: 'FontAwesome';
    font-size: 14px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '\f10c';
    text-align: center;
    opacity: 1;
    color: #ccc;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
	content: '\f111';
    opacity: 1;
    color: #999;
}

.slick-holder {
	display: inline-block;
	position: absolute;
	text-align: left;
	bottom: 0;
	/*left: 0;*/
	padding: 50px;
	width: 15%;
}

.slick-holder h1, .slick-holder p {
	display: inline-block;
	color: #eee;
	padding: 10px;
	background: rgba(0, 0, 0, .75);
}

.slick-holder h1 {
	font-size: 30px;
	text-transform: uppercase;
}

.slick-holder p {
	font-size: 14px;
	line-height: 20px;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers:
 */

.hidden {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after,
.row:before,
.row:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after,
.row:after {
    clear: both;
}

.hide-on-desktop {
	display: none !important;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */


@media only screen and (max-width : 1140px) {

	.footer-nav li, .util-nav li {
		margin: 0 8px;
	}
	
}
@media only screen and (max-width : 992px) {

	.features *[class*='col-'] {
		float: none;
		width: 100%;	
	}
	
	.feature-box-1, .feature-box-2 {
		min-height: 400px;
	}
	
	.insights .col-1-3, .attorneys .col-1-3 {
		width: 50%;
	}
	
	.attorney-box {
		display: none;
	}
	
	.attorney-details {
		display: block;
	}
	
	.hide-on-desktop {
		display: none !important;
	}
	
}

@media only screen and (max-width : 850px) {

	.header {
		height: 100px;
		line-height: 100px;
	}
	
	.home .main-nav {
		border-bottom: none;
	}
	
	.site-title {
		display: block;
		float: left;
		position: static;
	}
	
	.site-title img {
		width: 127px;
		height: auto;
	}
	
	.hamburger {
		display: block;
	}

	.main-menu {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		height: 100%;
		width: 100%;
		background: rgba(0, 0, 0, .90);
		overflow: auto;
		z-index: 999999;
		line-height: normal;
	}
	
	.sf-menu {
		float: left;
		width: 100%;
		margin: 0;
		padding-right: 25px;
		padding-left: 25px;
	}
	
	.sf-menu ul {
		position: relative;
		margin-top: 15px;
	}
	
	.sf-menu > li {
		float: none;
		position: relative;
		margin-left: 0px;
		border-bottom: 1px solid #222;
	}
	
	.sf-menu > li:first-child {
		border-top: 1px solid #222;
	}
	
	.sf-menu a.sf-with-ul::after, .sf-menu > li.current > a.sf-with-ul::after {
		display: block;
		position: absolute;
		width: 25px;
		height: 25px;
		right: 0 !important;
		top: -5px !important;
		left: auto;
		content: '\f105';
		font-family: "FontAwesome";
		color: #fff;
		font-size: 18px;
		-webkit-transition: transform 0.3s linear;
				transition: transform 0.3s linear;
	}
	
	.sf-menu > li.current > a, .sf-menu li li.current a, .sf-menu > li.current > a.sf-with-ul::after {
		color: #ab1d41;
	}
	
	.sf-menu > li.current > a:after {
		border-bottom: none;
	}
	
	.sf-menu ul li, .sf-menu li li a:hover, .sf-menu li li.current a {
		background: none;
	}
	
	.sf-menu li li a {
		letter-spacing: normal;
		text-transform: none;
		font-weight: normal;
		padding: 10px 25px;
		-webkit-transition:0.2s background linear;
				transition:0.2s background linear;
	}
	
	.sf-menu li li a {
		-webkit-transition:0.2s color linear;
				transition:0.2s color linear;
	}
	
	.sf-menu li li a:hover {
		color: #ab1d41;
	}
	
	.header .row:first-child, .header .social-nav {
		display: none;
	}
	
	.main-nav .mobile-social {
		display: inline-block;
		width: 100%;
		padding: 25px;
	}
	
	table, .history-table thead, .history-table tbody, .history-table tbody th, .history-table tbody td, .history-table tbody tr {
		display: block;
	}
	
	.history-table thead {
		display: none;
		position: relative;
	}
	
	.history-table tbody td {
		padding: 0.5rem 1.25rem;
		text-align: right;
		border: none;
		border-top: 1px solid rgba(70,40,13,0.25);
		padding-left: 40%;
		position: relative;
	}
	
	.history-table tbody td:before {
		content: attr(data-title);
		display: block;
		padding-left: 1.25rem;
		position: absolute;
		left: 0;
		text-align: left;
		font-weight: 700;
	}
	
	.history-table td:first-child {
		font-weight: 700 !important;
		padding-left: 1.25rem;
		padding-top: 20px;
		padding-bottom: 20px;
		white-space: normal;
		margin: 0;
	}

}

@media only screen and (max-width : 768px) {

	body {
		font-size: 16px;
		line-height: 30px;
	}
	
	/*.row .row {
	    margin: 0 !important;
	}*/
	
	*[class*='col-'] {
		float: none;
		width: 100%;
	}
	
	/**[class*='col-'] *[class*='col-'] {
		padding: 0px;
	}*/
	
	.margin-bottom-mobile {
		margin-bottom: 25px;
	}
	
	.hide-on-mobile {
		display: none !important;
	}
	
	.hide-on-desktop {
		display: block !important;
	}
	
	h1, .h1 { font-size: 32px; }
	h2, .h2 { font-size: 28px; }
	h3, .h3 { font-size: 24px; }
	h4, .h4 { font-size: 20px; }
	h5, .h5 { font-size: 16px; }
	
	.features h2 {
		font-size: 28px;
	}
	
	.feature-box-1, .feature-box-2, .feature-box-3, .feature-box-4 {
		padding: 50px;
	}
	
	.box-gray, .box-red, .box-purple, .box-white {
		padding: 50px 30px;
	}
	
	#home-slider .info-block {
		display: none;
	}
	
	#quote-slider, #community-slider {
		padding: 50px;
	}
	
	#news-slider h2 {
		font-size: 30px;
		max-width: 80%;
	}
	
	#community-slider h2 {
		font-size: 24px;
	}
	
	.hero.static {
		height: 450px;
	}
	
	.insights .col-1-3, .attorneys .col-1-3 {
		float: none;
		width: 100%;
	}
	
	.insights .box-gray, .insights .box-red, .insights .box-purple, .insights .box-white {
		height: 350px;
	}
	
	.insights .box-gray p:last-child, .insights .box-red p:last-child, .insights .box-purple p:last-child, .insights .box-white p:last-child {
		padding: 50px 30px;
	}
	
	blockquote p {
		font-size: 24px !important;
		line-height: 32px !important;
	}
	
	#mc-embedded-subscribe-form *[class*='col-'] {
		padding: 0;
	}
	
	.text-left-center, .text-right-center {
		text-align: center;
	}
	
	.large { font-size: 32px; }
	
	small, .small {
		line-height: 16px;
	}
	
	.callout, .cell .cell-inner {
		padding: 40px;
	}
	
	.news-list p {
		font-size: 16px;
		line-height: 30px;
	}
	
	.login-container {
		width: 100%;
	}
	
	.footer-nav {
		margin-top: 50px;
	}
	
	.footer-nav li {
		display: block;
		margin: 0;
	}
	
	.footer .address-container {
		margin-right: 0px;
		padding-right: 0px;
		border-right: none;
	}
	
	.footer .credit {
		position: static;
		margin-top: 25px;
	}
	
	.dropdown-wrapper {
	    position: relative;
	    width: 100%;
	    margin: 0 auto;
	
	    background: #fff;
	    cursor: pointer;
	    outline: none;
	    -webkit-transition: all 0.3s ease-out;
	    -moz-transition: all 0.3s ease-out;
	    -ms-transition: all 0.3s ease-out;
	    -o-transition: all 0.3s ease-out;
	    transition: all 0.3s ease-out;
	}
	
	.dropdown-wrapper:after { /* Little arrow */
	    content: "";
	    width: 0;
	    height: 0;
	    position: absolute;
	    top: 50%;
	    right: 15px;
	    margin-top: -3px;
	    border-width: 6px 6px 0 6px;
	    border-style: solid;
	    border-color: #ab1d41 transparent;
	}
	
	.dropdown-wrapper span {
		display: block;
	}
	
	.dropdown-wrapper .dropdown {
	    position: absolute;
	    top: 100%;
	    left: 0;
	    right: 0;
	
	    background: #fff;
	    border: 1px solid rgba(0,0,0,0.2);
	    border-top: none;
	    border-bottom: none;
	    list-style: none;
	    -webkit-transition: all 0.3s ease-out;
	    -moz-transition: all 0.3s ease-out;
	    -ms-transition: all 0.3s ease-out;
	    -o-transition: all 0.3s ease-out;
	    transition: all 0.3s ease-out;
	
	    /* Hiding */
	    max-height: 0;
	    overflow: hidden;
	}
	
	.dropdown-wrapper .dropdown li {
	    padding: 0 10px;
	    display: block;
	}
	
	.dropdown-wrapper .dropdown li a {
	    display: block;
	    text-decoration: none;
	    color: #333;
	    transition: all 0.3s ease-out;
	}
	
	.dropdown-wrapper .dropdown li li a {
	    font-size: 13px;
	    color: #999;
	}
	
	.dropdown-wrapper .dropdown li i {
	    margin-right: 5px;
	    color: inherit;
	    vertical-align: middle;
	}
	
	.dropdown-wrapper .dropdown li a:hover {
	    color: #ab1d41;
	}
	
	.dropdown-wrapper.active {
	    background: #653a62;
	    box-shadow: none;
	    border-bottom: none;
	    color: white;
	}
	
	.dropdown-wrapper.active:after {
	    border-color: #fff transparent;
	}
	
	.dropdown-wrapper.active .dropdown {
	    border-bottom: 1px solid rgba(0,0,0,0.2);
	    max-height: 400px;
	}
	
	.services .dropdown-wrapper.active .dropdown {
	    height: 300px;
	    overflow: scroll;
	}
	
	.feature-box-1 {
		background-position: left center !important;
	}
	
	.feature-box-1 p {
		position: absolute;
		bottom: 25px;
		left: 50%;
		-webkit-transform: translate(-50%, 0);
			-ms-transform: translate(-50%, 0);
				transform: translate(-50%, 0);
	}
	
	.slider-caption {
		text-align: center;
	}
	
	.partners, .partners br {
		text-align: left;
		font-size: 14px !important;
		line-height: 22px !important;
	}
	
	.hero, .hero.static, .no-hero .sub-nav {
	 	margin-bottom: 40px;
	}
	
	.attorneys .col-1-3 {
		float: left;
		width: 50%;
	}
	
	.list-item .col-1-4 {
		float: left;
		width: 25%;
	}
	
	.list-item .col-3-4 {
		float: left;
		width: 75%;
	}
	
	.related .col-1-3 {
		float: left;
		width: 33.33333%;
	}
	
	#mc-embedded-subscribe-form input[type="submit"] {
		padding: 10px 35px 8px;
		width: auto;
	}

}

@media only screen and (max-width : 460px) {

	.attorneys .col-1-3, .list-item .col-1-4, .list-item .col-3-4, .related .col-1-3 {
		float: none;
		width: 100%;
	}
	
	.partners, .partners br {
		text-align: center;
	}
	
	.insights .box-gray, .insights .box-red, .insights .box-purple, .insights .box-white {
		height: 400px;
	}
	
	/*.avvo-badges li {
		width: 50%;
	}*/

}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {

	@page  { 
	    margin: 25mm 25mm 25mm 25mm;  
	} 

	.hidden-on-print, .header, .footer, .sub-nav, .related, .post-nav, a[href^="#"] {
		display: none !important;
	}
	
	.show-on-print {
		display: block !important;
	}
	
	.logo-print {
		display: block !important;
	}
	
	.forcefullwidth_wrapper_tp_banner {
		display: none !important;
	}
	
	body {
		font-size: 12px;
		line-height: 18px;
	}
	
	p { margin-bottom: 25px; }
	
	.large { font-size: 28px; }
	
	.date, .fake-heading { font-size: 12px; }
	
	*[class*='col-'] {
		float: none;
		width: 100%;
	}
	
	.toggle {
		margin-bottom: 0px !important;
	}
	
	.toggle .toggle-content {
		display: block !important;
		margin-bottom: 0px !important;
	}
	
	.bio-extended {
		display: block !important;
	}
	
	.team-thumb-print {
		display: block;
		width: 250px;
		float: left;
		margin-right: 50px;
	}
	
    *,
    *:before,
    *:after {
        background: transparent !important;
        /*color: #000 !important;*/ /* Black prints faster:
                                   http://www.sanbeiji.com/archives/953 */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: none;
    }

    /*a[href]:after {
        content: " (" attr(href) ")";
    }*/

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}