/* ============================================================================ *
	Structural Styles
    ---------------------------------------------------------------------------
	These are the styles which build the main site layout
	(headers, footers, body, etc.).

	If you are attempting to add styling for any elements placed inside of a 
	Wordpress Editor, use 'editor-content.css' stylesheet.
*/
html {
	height: auto;
}

body {
	color: #000;
	font-family: 'Lato', serIf;
	font-size: 18px;
	background: #a7a7a7; /* For browsers that do not support gradients */
  	background: -webkit-linear-gradient(#a7a7a7, #9e9e9e); /* For Safari 5.1 to 6.0 */
  	background: -o-linear-gradient(#a7a7a7, #9e9e9e); /* For Opera 11.1 to 12.0 */
  	background: -moz-linear-gradient(#a7a7a7, #9e9e9e); /* For Firefox 3.6 to 15 */
  	background: linear-gradient(#a7a7a7, #9e9e9e); /* Standard syntax */
}

a {
	color: #9e2525;
}

.sidebar-image {
	margin-bottom: 25px;
	max-width: 100%;
}

/* ======================================== *
	Responsive Layout
 * ======================================== */
@media screen and (max-width: 700px) {
	#breadcrumbs {
		display: none;
	}
}

@media screen and (max-width: 500px) {
	#secondary-nav-wrapper {
		display: none;
	}
}

@media screen and (max-width: 450px) {
	.row > div > .inner {
		padding-left: 12px;
		padding-right: 12px;
	}
}

/* ======================================== *
	Miscellaneous
 * ======================================== */
.editor-content img {
	max-width: 100% !important; 
	height: auto !important;
}

.mobile {
	display: none;
}

@media screen and (max-width: 450px) {
	.not-mobile {
		display: none;
	}

	.mobile {
		display: inherit;
	}
}



/* ======================================== *
	Header 1
 * ======================================== */
h1#page-title,
.editor-content h1 {
	font-size: 28px;
	line-height: 1.1em;
	font-weight: 400;
	margin-bottom: 25px;
	color: #000000;
	text-transform: uppercase;
}

.home h1#page-title,
.home .editor-content h1 {
	font-size: 28px;
	line-height: 1.1em;
	font-weight: 700;
	margin-bottom: 25px;
	color: #000000;
	font-family: "Merriweather", serif;
}

/* ======================================== *
	Header 2
 * ======================================== */
.tmf-post > h2 {
	font-size: 18px;
	line-height: 1.1em;
	font-weight: 400;
	margin-bottom: 0;
	color: #000000;
}


/* ======================================== *
	Header 3
 * ======================================== */
.tmf-post > h3,
h3.tmf-module-title,
.single-attorney h3, {
	font-size: 20px;
	font-weight: 700;
	font-style: italic;
	margin-bottom: 15px;
	color: #9e2525;
}

.tmf-post > h3 a,
h3.tmf-module-title a {
	color: #9e2525;
}

.tmf-post > h3 a:hover,
h3.tmf-module-title a:hover {}


/* ======================================== *
	Header 4
 * ======================================== */
.tmf-post > h4 {
	font-weight: 700;
	font-size: 18px;
	line-height: 1.2em;
	color: #343434;
}

.tmf-post > h4 a {
	color: #343434;
	text-decoration: none;
}

.tmf-post > h4 a:hover {
	text-decoration: underline;
}


/* ======================================== *
	Header Section
 * ======================================== */
#header-wrapper:before {
	content: "";
	height: 28px;
	display: block;
	background-color: #050608;
	background: linear-gradient(#050608, #1c1e20);
	border-bottom: 1px solid #434343;
}

#header-wrapper {
	background: -webkit-gradient(#011c3b, #003561);
	background: -webkit-linear-gradient(#011c3b, #003561);
	background: -moz-linear-gradient(#011c3b, #003561);
	background: -o-linear-gradient(#011c3b, #003561);
	background: linear-gradient(#011c3b, #003561);
	background-color: #011c3b;
	z-index: 10;
	border-bottom: 1px solid #434343;
}

#header {
	padding: 20px 0;
}

#header-cell-1 {
	vertical-align: middle;
}

#header-cell-1 .logo {
	max-width: 530px;
	margin-top: 10px;
	width: 100%;
}

#header-cell-2 {
	text-align: right;
	color: #fff;
	font-size: 1.1em;
	line-height: 1.4em;
	vertical-align: middle;
	font-weight: 700;
}

#header-cell-2 a {
	color: #fff;
	text-decoration: none;
}

#header-cell-2 p:last-child {
	font-family: "Merriweather", serif;
}

#header-cell-2 .phone-1:before {
	display: inline-block;
	padding-left: 22px;
	background: url(../images/icon_sprite.png) no-repeat -55px -8px;
	content: "";
	height: 20px;
	vertical-align: middle;
	margin-right: 10px;
}

#header-cell-2 .fax:before {
	display: inline-block;
	padding-left: 22px;
	background: url(../images/icon_sprite.png) no-repeat -82px -8px;
	content: "";
	height: 20px;
	vertical-align: middle;
	margin-right: 10px;
}


#header-cell-2 .email:before {
	display: inline-block;
	padding-left: 22px;
	background: url(../images/icon_sprite.png) no-repeat -20px -12px;
	content: "";
	height: 13px;
	vertical-align: middle;
	margin-right: 10px;
}


#header-cell-2 .inner {
	padding-left: 0;
}

@media screen and (max-width: 1000px) {
	#header-cell-2 {
		font-size: 1.1em;
	}
}

@media screen and (max-width: 950px) {
	#header {
		padding: 25px 0;
	}

	#header-cell-1 {
		text-align: center;
	}

	#header-cell-2 {
		padding-top: 15px;
		text-align: center;
	}

	#header-cell-2 .inner {
		padding-left: 25px;
	}

	#header-cell-2 p {
		text-align: center !important;
	}
}

@media screen and (max-width: 500px) {
	#header {
		padding: 15px 0;
	}
}

@media screen and (max-width: 400px) {
	#header-cell-2 {
		font-size: .9em;
	}
}

@media screen and (max-width: 350px) {
	#header-cell-2 {
		font-size: .8em;
	}
}

/* ======================================== *
	Primary Navigation Section
 * ======================================== */
#primary-nav-wrapper {
	background-color: #313131;
	background-image: -webkit-linear-gradient(#313131, #060606);
	background-image: -moz-linear-gradient(#313131, #060606);
	background-image: -o-linear-gradient(#313131, #060606);
	background-image: linear-gradient(#313131, #060606);
	-webkit-box-shadow: 0 5px 10px -4px rgba(0,0,0, 0.5);
	-moz-box-shadow: 0 5px 10px -4px rgba(0,0,0, 0.5);
	box-shadow: 0 5px 10px -4px rgba(0,0,0, 0.5);
	text-transform: uppercase;
}

#primary-nav .menu > .menu-item.first {
	background: none;
}

#primary-nav .menu > .menu-item.first a {
	border-left: 0;
}

#primary-nav .menu > .menu-item.last a {
	border-right: 0;
}

#primary-nav .menu > .menu-item  {
	padding: 18px 0;
}

#primary-nav .menu > .menu-item > a {
	padding: 0 20px;
	font-size: 18px;
	color: #fff;
	border-right: 1px solid #a7a7a7;
}

#primary-nav .menu > .menu-item:hover > a {
	text-decoration: underline;
}

#primary-nav .menu > li > div > ul {
	top: 18px;
}

#primary-nav-wrapper .sub-menu {
	background-color: #000;
	-webkit-box-shadow: 0 0 10px rgba(0,0,0, 0.5);
	-moz-box-shadow: 0 0 10px rgba(0,0,0, 0.5);
	box-shadow: 0 0 10px rgba(0,0,0, 0.5);
}

#primary-nav .sub-menu > .menu-item > a {
	color: #fff;
	font-size: 16px;
}

#primary-nav .sub-menu > .menu-item:hover > a {
	background-color: #e5ad3a;
}

#primary-nav .menu-bar {
	color: #fff;
}

/* White Icon */
#primary-nav .menu-bar:before {
	background-position: -558px 0;
}

html.mobile-nav #primary-nav .menu > .menu-item {
	background: none;
	border-top: 1px solid #fff;
	padding: 10px 0;
}

html.mobile-nav #primary-nav .menu > .menu-item.first {
	border-top: 0;
}

html.mobile-nav #primary-nav .menu > .menu-item.last {
	border-bottom: 0;
}

html.mobile-nav #primary-nav .menu > li > div > ul {
    top: 10px;
}

html.mobile-nav #primary-nav .menu > .menu-item > a {
	border: none;
}

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

	#primary-nav .menu-bar {
		display: block;
	}

	#primary-nav .menu {
		display: none;
	}

	#primary-nav .menu > .menu-item {
		background: none;
		border-top: 1px solid #fff;
		padding: 10px 0;
		display: block;
	}

	#primary-nav .menu > .menu-item.first {
		border-top: 0;
	}

	#primary-nav .menu > .menu-item.last {
		border-bottom: 0;
	}

	#primary-nav .menu > li > div > ul {
	    top: 10px;
	}

	#primary-nav .menu > .menu-item > a {
		border: none;
	}

	#primary-nav .menu > li > div > ul {
		width: 100%;
		text-align: center;
	}

}

/* ======================================== *
	Billboard
 * ======================================== */
#billboard-container {
	background: #fff;
}

#billboard {
	margin-top: 25px;
	position: relative;
	border: 2px solid #f0f0f0;
	border-bottom: none;
	padding: 5px;
}

#billboard .tmf-post {
	position: absolute;
	top: 5px;
	left: 5px;
	/* width: 480px; */
	width: 400px;
	padding: 25px;
	height: 477px;
	background: rgba(255,255,255,0.55);
}

#billboard .tmf-post .editor-content p {
	line-height: inherit;
}

.slideshow { 
	position: relative; 
	padding: 5px 5px 5px 0;
	height: 517px;
}

.slideshow > div { 
	position: absolute; 
	top: 0; 
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-background-size: cover !important;
	background-size: cover !important;
	background-position: center center !important;
}

@media screen and (max-width: 1200px) {
	#billboard {
		margin-top: 0;
		border: none;
	}
}

@media screen and (max-width: 1050px) {
	.slideshow {
		height: 450px;
	}

	#billboard .tmf-post {
		height: 450px;
		font-size: 15px;
	}
}

@media screen and (max-width: 950px) {
	.slideshow {
		margin-left: 0;
		height: 300px;
	}

	#billboard .tmf-post {
		position: relative;
		top: 0;
		left: 0;
		margin-top: 5px;
		width: auto;
		padding: 25px;
		height: auto;
	}
}

@media screen and (max-width: 600px) {
	.slideshow {
		height: 200px;
	}
}


/* ======================================== *
	Body Section
 * ======================================== */

#body-wrapper {
	overflow-y: hidden;
	z-index: 9;
}

#body-container {
	padding-top: 25px;
}

#body {
	padding: 50px 25px;
	background-color: #fff;
	border: 2px solid #f0f0f0;
	border-bottom: none;
	-webkit-box-shadow: 0 0 25px rgba(0,0,0, 0.1);
	-moz-box-shadow: 0 0 25px rgba(0,0,0, 0.1);
	box-shadow: 0 0 25px rgba(0,0,0, 0.1);
}

body.home #body-container {
	padding-top: 0;
}

.single-attorney #body-cell-2 h3 {
	margin-top: 25px;
}

.single-attorney #body-cell-2 h3:first-child {
	margin-top: 0;
}

.single-attorney #body-cell-2 ul {
	padding-left: 30px;
}

@media screen and (max-width: 1200px) {
	#body-container {
		padding-top: 0;
	}

	#body {
		border: none;
		padding: 25px 0;
	}
}


/* ======================================== *
	Tagline
 * ======================================== */
#tagline-wrapper {
	overflow-y: hidden;
	z-index: 9;
}

#tagline {
	padding: 0 5px;
	background-color: #fff;
	border: 2px solid #f0f0f0;
	border-top: none;
	border-bottom: none;
	-webkit-box-shadow: 0 0 25px rgba(0,0,0, 0.1);
	-moz-box-shadow: 0 0 25px rgba(0,0,0, 0.1);
	box-shadow: 0 0 25px rgba(0,0,0, 0.1);
}

#tagline #tagline-text {
	text-align: center;
	background-color: #032957;
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#032957), color-stop(0.49, #032957), color-stop(0.51, #011a38), to(#011a38));
	background-image: -webkit-linear-gradient(#032957, #032957 49%, #011a38 51%, #011a38 100%);
	background-image: -moz-linear-gradient(#032957, #032957 49%, #011a38 51%, #011a38 100%);
	background-image: -o-linear-gradient(#032957, #032957 49%, #011a38 51%, #011a38 100%);
	background-image: linear-gradient(#032957, #032957 49%, #011a38 51%, #011a38 100%);
	padding: 25px;
	color: #fff;
	font-size: 1.500em;
	font-weight: 700;
	line-height: 1.5em;
	text-shadow: 0 1px 2px #000;
	font-family: "Merriweather", serif;
}

@media screen and (max-width: 1200px) {
	#tagline {
		border: none;
	}
}

@media screen and (max-width: 750px) {
	#tagline #tagline-text {
		font-size: 1.2em;
	}
}

/* ======================================== *
	Footer Section
 * ======================================== */
#footer {
	padding: 30px 25px 50px;
	background-color: #fff;
	background: linear-gradient(#fff, #e4e4e4);
	border-top: none;
	-webkit-box-shadow: 0 0 25px rgba(0,0,0, 0.1);
	-moz-box-shadow: 0 0 25px rgba(0,0,0, 0.1);
	box-shadow: 0 0 25px rgba(0,0,0, 0.1);
}

#footer-cell-2 h3.tmf-module-title,
#footer-cell-3 h3.tmf-module-title {
	margin-top: 27px;
}

#footer-cell-3 .tmf-button {
    font-weight: 700;
    display: block;
    text-align: center;
    max-width: 200px;
    padding: 15px;
    margin: auto;
    margin-top: 30px;
    font-size: 24px;
    text-decoration: none;
    border-radius: 15px;
    border: 6px solid #fff;
}

#footer-cell-3 .tmf-button span {
	display: block;
	font-weight: 900;
}

@media screen and (max-width: 1200px) {
	#footer {
		border-left: none;
		border-right: none;
		padding: 25px 0;
	}
}

@media screen and (max-width: 850px) {
	#footer-cell-2 h3.tmf-module-title,
	#footer-cell-3 h3.tmf-module-title {
		margin-top: 0;
	}	
}


/* ======================================== *
	Interior Footer Section
 * ======================================== */

#int-footer {
	padding: 30px 25px;
	background-color: #273664;
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#273664), color-stop(0.49, #273664), color-stop(0.51, #20305d), to(#20305d));
	background-image: -webkit-linear-gradient(#273664, #273664 49%, #20305d 51%, #20305d 100%);
	background-image: -moz-linear-gradient(#273664, #273664 49%, #20305d 51%, #20305d 100%);
	background-image: -o-linear-gradient(#273664, #273664 49%, #20305d 51%, #20305d 100%);
	background-image: linear-gradient(#273664, #273664 49%, #20305d 51%, #20305d 100%);
	border: 5px solid #f0f0f0;
	border-top: none;
	-webkit-box-shadow: 0 0 25px rgba(0,0,0, 0.1);
	-moz-box-shadow: 0 0 25px rgba(0,0,0, 0.1);
	box-shadow: 0 0 25px rgba(0,0,0, 0.1);
	color: #fff;
	text-align: center;
	font-size: 16px;
}

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

@media screen and (max-width: 1200px) {
	#int-footer {
		border-left: none;
		border-right: none;
		padding: 25px 0;
	}
}


/* ======================================== *
	Copyright Section
 * ======================================== */
#copyright {
	padding: 25px 0 75px;
	color: #011835;
	font-size: .8em;
}

#copyright a {
	color: #011835;
}


/* ======================================== *
	Modules
 * ======================================== */
.tmf-multi-module-area .tmf-module {
	margin-bottom: 50px;
}

.single-attorney h3,
h3.tmf-module-title {
	border-bottom: 2px solid #d6d7d9;
	padding-bottom: 10px;
	margin-bottom: 25px;
	font-size: 20px;
	font-style: italic;
	font-weight: 700;
	color: #9e2525;
	font-family: "Merriweather", serif;
}

/* ======================================== *
	Inputs & Buttons
 * ======================================== */

.gform_wrapper.tmf-form_wrapper {
	background: #d9d9d9;
    padding: 15px;
}

.gform_wrapper.tmf-form_wrapper input[type=text] {
	padding: 2px 0;
}

.gform_wrapper.tmf-form_wrapper ul.gfield_radio li {
 	display: inline-block;
 	vertical-align: middle;
 	margin-right: 20px !important;
 }

.gform_wrapper.tmf-form_wrapper .gform_footer {
	margin: 0;
	text-align: center;
}

.gform_wrapper.tmf-form_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container input[type=text],
.gform_wrapper.tmf-form_wrapper .top_label .gfield_label {
	margin-bottom: 0;
	font-weight: 400;
	font-family: "Lato", serif;
}

body .gform_wrapper.tmf-form_wrapper label.gfield_label+div.ginput_container {
	margin: 0;
}

.gform_wrapper.tmf-form_wrapper input[type=text],
.gform_wrapper.tmf-form_wrapper input[type=tel],
.gform_wrapper.tmf-form_wrapper input[type=email],
.gform_wrapper.tmf-form_wrapper textarea {
	padding: 5px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	max-width: 100%;
	border: 1px solid #ccc;
	-webkit-box-shadow: inset 0 1px 1px #e2e2e2;
	-moz-box-shadow: inset 0 1px 1px #e2e2e2;
	box-shadow: inset 0 1px 1px #e2e2e2;
}

input[type=text]:focus,
textarea:focus {
	border: 1px solid #888;
}

.gform_wrapper.tmf-form_wrapper .gform_footer input.button {
	border: none;
	cursor: pointer;
	font-family: "Lato", serif;
	padding: 10px 25px !important;
}

.gform_wrapper.tmf-form_wrapper .gform_footer input.button,
.tmf-button,
.page-numbers {
	font-size: .95em;
	padding: 5px;
	background-color: #9e2525;
	background-image: url(../ie-gradient.php?from=9e2525&to=8b2121);
	background-image: -webkit-linear-gradient(#9e2525, #8b2121);
	background-image: -moz-linear-gradient(#9e2525, #8b2121);
	background-image: -ms-linear-gradient(#9e2525, #8b2121);
	background-image: -o-linear-gradient(#9e2525, #8b2121);
	background-image: linear-gradient(#9e2525, #8b2121);
	cursor: pointer;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	cursor: pointer;
	text-decoration: none;
	color: #fff;
}

.gform_wrapper.tmf-form_wrapper .gform_footer input.button:hover,
.tmf-button:hover,
.page-numbers:hover {
	background-color: #8b2121;
	background-image: url(../ie-gradient.php?from=8b2121&to=9e2525);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#8b2121), to(#9e2525));
	background-image: -webkit-linear-gradient(#8b2121, #9e2525);
	background-image: -moz-linear-gradient(#8b2121, #9e2525);
	background-image: -ms-linear-gradient(#8b2121, #9e2525);
	background-image: -o-linear-gradient(#8b2121, #9e2525);
	background-image: linear-gradient(#8b2121, #9e2525);
	text-decoration: none;
	color: #fff;
}

.gform_wrapper.tmf-form_wrapper .gform_footer input.button {
	display: block;
	text-transform: uppercase;
	width: 90%;
	margin: auto;
	border-radius: 10px;
	font-weight: 700;
	font-size: 24px;
}

.tmf-button.large {
	font-size: 1.1em;
	padding: 7px 25px;
}

.tmf-button.medium {
	font-size: .95em;
	padding: 5px 25px;
}

.tmf-button.small {
	font-size: .85em;
	padding: 3px 15px;
}

.tmf-button.tiny {
	font-size: .75em;
	padding: 2px 7px;
}

.page-numbers.current {
	background: none;
	border: 1px solid #ddd;
}

.attorney-sidebar {
	margin-bottom: 25px;
}

.attorney-sidebar .primary {
	max-width: 100%;
}

.attorney-sidebar .contact-information {
	margin-top: 10px;
}

@media screen and (max-width: 850px) {
	.attorney-sidebar {
		display: none;
	}
}

.attorney-sidebar .icon-container {
	margin-top: 15px;
}