/* ============================================================================ *
	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.
*/

body {
	font-family: 'Lato', 'Arial', 'Helvetica', serif;
	background: #e3e0df;
	color: #515151;
}

a {
	color: #0e2457;
}

/* ======================================== *
	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: 1.5em;
	line-height: 1.1em;
	margin-bottom: 25px;
	font-weight: 400;
	color: #0e2457;
	font-family: 'Lato', 'Helvetica', serif;
}


/* ======================================== *
	Header 2
 * ======================================== */
.tmf-post > h2 {
	font-size: 1.5em;
	line-height: 1.1em;
	font-weight: 700;
	color: #700808;
	font-family: 'Lato', 'Helvetica', serif;
}

.tmf-post > h2 a {
	color: #700808;
}

/* ======================================== *
	Header 3
 * ======================================== */
.tmf-post > h3,
h3.tmf-module-title {
	font-weight: normal;
	color: #0e2457;
	font-family: 'Lato', 'Helvetica', serif;
	margin-bottom: 15px;
}

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

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


/* ======================================== *
	Header 4
 * ======================================== */
.tmf-post > h4 {
	font-weight: 700;
	font-size: 1em;
	line-height: 1.2em;
}

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

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


/* ======================================== *
	Header 5
 * ======================================== */
.tmf-post > h5 {
	font-weight: 700;
	font-size: 1em;
	line-height: 1.2em;
}

.tmf-post > h5 a {
	color: #000;
	text-decoration: none;
}

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

/* ======================================== *
	Secondary Navigation Section
 * ======================================== */
#secondary-nav-wrapper {
	padding-top: 5px;
	padding-bottom: 0;
	background-color: #974024;
}

#secondary-nav .menu > .menu-item > a {
	font-size: 13px;
	color: #fff;
}

/* ======================================== *
	Header Section
 * ======================================== */
#header-wrapper {
	background-color: #0e2457;
	background-image: -moz-radial-gradient(center, ellipse cover,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 100%);
	background-image: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.2)));
	background-image: -webkit-radial-gradient(center, ellipse cover,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.2) 100%);
	background-image: -o-radial-gradient(center, ellipse cover,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.2) 100%);
	background-image: -ms-radial-gradient(center, ellipse cover,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.2) 100%);
	background-image: radial-gradient(ellipse at center,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.2) 100%);
	border-bottom: 1px solid #0e2457;
}

#header {
	padding: 20px 0 20px;
	border-bottom: 8px solid #700808;
}

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

#header-cell-1 .logo {
	max-width: 100%;
}

#header-cell-2 {
	text-align: right;
	color: #fff;
	font-family: 'Lato', 'Helvetica', sans-serif;
	font-size: 1.5em;
	line-height: 1.2em;
}

#header-cell-2 p {
	line-height: 1.2em;
}

#header-cell-2 .phone-1 {
	font-size: 1.1em;
}

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

#header-cell-2 .header-text {
	color: #c8c8c8;
	margin-bottom: 10px;
	line-height: 1.2em;
}

@media screen and (max-width: 1100px) {
	#header-cell-1 .logo {
		max-width: 75%;
	}
}

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

@media screen and (max-width: 750px) {
	#header-cell-1 {
		text-align: center;
	}

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

	#header {
		padding-top: 15px;
		padding-bottom: 15px;
	}

	#header-cell-1 .logo {
		width: 70%;
		max-width: 298px;
	}
}

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


/* ======================================== *
	Primary Navigation Section
 * ======================================== */
#primary-nav-wrapper {
	border-bottom: 1px solid #000000;
	margin-bottom: 25px;
	background-color: #403e3e;
	background-image: -webkit-linear-gradient(#403e3e, #737170 15px);
	background-image: -moz-linear-gradient(#403e3e, #737170 15px);
	background-image: -o-linear-gradient(#403e3e, #737170 15px);
	background-image: linear-gradient(#403e3e, #737170 15px);
	padding: 10px 0;
}

#primary-nav .menu {}

#primary-nav .menu > .menu-item {
	border-left: 1px solid #434242;
}

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

#primary-nav .menu > .menu-item > a {
	color: #fff;
	font-size: 17px;
	padding: 8px 15px;
	height: 100%;
	text-transform: uppercase;
	font-weight: normal;
	text-decoration: none;
	font-family: 'Lato', 'Helvetica', serif;
}

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

#primary-nav .menu .sub-menu {
	border: none;
	padding-top: 10px;
}

#primary-nav .menu .sub-menu .menu-item > a {
	color: #fff;
	font-size: 14px;
	padding-top: 5px;
	padding-bottom: 5px;
	font-weight: normal;
	text-decoration: none;
	background-color: #0e2457;
}

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

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

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

html.mobile-nav #primary-nav-wrapper {
	padding: 0;
}

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

html.mobile-nav #primary-nav .menu > .menu-item > a {
	border-top: 1px solid rgba(0,0,0, 0.1);
	padding: 10px;
	font-size: 15px;
}

@media screen and (max-width: 1200px) {
	#primary-nav-wrapper {
		margin-bottom: 0;
	}
}

/* ======================================== *
	Billboard
 * ======================================== */
#billboard {
	-webkit-box-shadow: 0 10px 10px rgba(0,0,0, 0.3);
	-moz-box-shadow: 0 10px 10px rgba(0,0,0, 0.3);
	box-shadow: 0 10px 10px rgba(0,0,0, 0.3);
	background-color: #0e2355;
}

#billboard .slideshow > div {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	background-color: #0e2355;
}

#billboard .slideshow > div.spacer {
	position: relative;
	visibility: hidden;
}

#billboard .slideshow > div > img {
	display: block;
	max-width: 38%;
}


#billboard .slideshow > div > .text {
	position: absolute;
	bottom: 90px;
	left: 0;
	padding-left: 40%;
	padding-right: 25px;
	font-size: 2.1em;
	color: #fff;
	line-height: 1.3em;
	font-family: 'Lato', 'Helvetica', sans-serif;
}

#billboard .slideshow > div > .text > span {
	font-weight: 700;
	display: block;
}

@media screen and (max-width: 1100px) {
	#billboard .slideshow > div > .text {
		bottom: 70px;
		font-size: 1.9em;
	}
}

@media screen and (max-width: 900px) {
	#billboard .slideshow > div > .text {
		bottom: 60px;
		font-size: 1.5em;
	}
}

@media screen and (max-width: 750px) {
	#billboard-wrapper {
		display: none;
	}
}

/* ======================================== *
	Divider Bar
 * ======================================== */

#divider-bar {
	background-color: #ab0b0b;
	background-image: -webkit-linear-gradient(#ab0b0b, #ab0b0b 15px, #700808 35px, #700808);
	background-image: -moz-linear-gradient(#ab0b0b, #ab0b0b 15px, #700808 35px, #700808);
	background-image: -o-linear-gradient(#ab0b0b, #ab0b0b 15px, #700808 35px, #700808);
	background-image: linear-gradient(#ab0b0b, #ab0b0b 15px, #700808 35px, #700808);
	height: 50px;
	padding: 0 50px;
	left: -50px;
	top: -25px;
	position: relative;
	width: 100%;
	z-index: 10;
	-webkit-box-shadow: 0 4px 8px -4px rgba(0,0,0, 0.8);
	-moz-box-shadow: 0 4px 8px -4px rgba(0,0,0, 0.8);
	box-shadow: 0 4px 8px -4px rgba(0,0,0, 0.8);
}

body.home #divider-bar {
	padding: 0 25px;
	left: -25px;
	top: 0;
}

#divider-bar .tab-left {
	position: absolute;
	top: 50px;
	left: 0;
	width: 25px;
	height: 14px;
	background: url(../images/tab-left.png) no-repeat;
}

#divider-bar .tab-right {
	position: absolute;
	top: 50px;
	right: 0;
	width: 25px;
	height: 14px;
	background: url(../images/tab-right.png) no-repeat;
}

@media screen and (max-width: 1250px) {
	#divider-bar {
		display: none;
	}	

	body.home #divider-bar {
		left: 0;
		width: auto;
		display: block;
	}

	#divider-bar .tab-left,
	#divider-bar .tab-right {
		display: none;
	}
}

@media screen and (max-width: 1100px) {
	#divider-bar {
		height: 25px;
	}
}

@media screen and (max-width: 750px) {
	#divider-bar {
		height: 10px;
	}
}



/* ======================================== *
	Breadcrumb Area
 * ======================================== */
#breadcrumb-area {
	padding: 10px 0 10px 0;
	color: #fff;
	-webkit-box-shadow: 0 10px 10px rgba(0,0,0, 0.3);
	-moz-box-shadow: 0 10px 10px rgba(0,0,0, 0.3);
	box-shadow: 0 10px 10px rgba(0,0,0, 0.3);
	background-color: #554736;
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#554736), to(#645543));
	background-image: -webkit-linear-gradient(#554736, #645543);
	background-image: -moz-linear-gradient(#554736, #645543);
	background-image: -o-linear-gradient(#554736, #645543);
	background-image: linear-gradient(#554736, #645543);
}

#breadcrumb-area a {
	color: #fff;
}

#breadcrumb-area #breadcrumbs {
	margin-bottom: 0;
}

@media screen and (max-width: 750px) {
	#breadcrumb-area-container {
		border-top: 2px solid #554736;
	}

	#breadcrumb-area {
		display: none;
	}
}


/* ======================================== *
	Body Section
 * ======================================== */
#body {
	padding: 50px 25px;
	background-color: #ffffff;
	-webkit-box-shadow: 0 10px 10px rgba(0,0,0, 0.3);
	-moz-box-shadow: 0 10px 10px rgba(0,0,0, 0.3);
	box-shadow: 0 10px 10px rgba(0,0,0, 0.3);
}

body.home #body {
	padding-bottom: 0;
}

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

@media screen and (max-width: 750px) {
	body.home #body {
		padding-bottom: 25px;
	}
}


/* ======================================== *
	Footer Section
 * ======================================== */
#footer {
	border-top: 5px solid #0e2457;
	padding: 50px 25px;
}

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


/* ======================================== *
	Copyright Section
 * ======================================== */
#copyright {
	padding: 25px 0 75px;
	border-top: 12px solid #0e2457;
	font-size: .9em;
}


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

.tmf-multi-module-area .tmf-module:last-child {
	margin-bottom: 0;
}

#body .tmf-module h3 {
	background: #fff;
	display: inline-block;
	padding-right: 10px;
	font-size: 1.5em;
	position: relative;
	z-index: 5;
}

#body .tmf-module-content {
	position: relative;
	margin-top: -20px;
	padding-top: 20px;
	border-top: 1px solid #9fa7bc;
}

#footer .tmf-module h3 {
	background: #e3e0df;
	color: #0e2457;
	display: inline-block;
	padding-right: 10px;
	font-size: 1.5em;
	position: relative;
	z-index: 5;
}

#footer .tmf-module-content {
	position: relative;
	margin-top: -20px;
	padding-top: 20px;
	border-top: 1px solid #0e2457;
}

.tmf-module-81 .tmf-module-content {
	text-align: center;
}

.tmf-module-81 img {
	display: inline-block;
	margin-right: 11px;
	margin-bottom: 11px;
	vertical-align: middle;
}
.tmf-post-list.large-thumbnail {
    max-width: 1100px;
    margin: auto;
}

.tmf-post-list.large-thumbnail {
    max-width: 990px;
    margin: auto;
}


/* ======================================== *
	Inputs & Buttons
 * ======================================== */
.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;
}

.tmf-button,
.page-numbers,
input[type=submit] {
	font-size: .95em;
	padding: 5px;
	background-color: #ab0b0b;
	background-image: url(../ie-gradient.php?from=ab0b0b&to=700808);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ab0b0b), to(#700808));
	background-image: -webkit-linear-gradient(#ab0b0b, #700808);
	background-image: -moz-linear-gradient(#ab0b0b, #700808);
	background-image: -ms-linear-gradient(#ab0b0b, #700808);
	background-image: -o-linear-gradient(#ab0b0b, #700808);
	background-image: linear-gradient(#ab0b0b, #700808);
	cursor: pointer;
	border: 1px solid #8c0909;
	border-bottom-color: #730707;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	cursor: pointer;
	text-decoration: none;
	color: #fff;
}

.tmf-button:hover,
.page-numbers:hover,
input[type=submit]:hover {
	background-color: #c40d0d;
	background-image: url(../ie-gradient.php?from=c40d0d&to=8a0a0a);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#c40d0d), to(#8a0a0a));
	background-image: -webkit-linear-gradient(#c40d0d, #8a0a0a);
	background-image: -moz-linear-gradient(#c40d0d, #8a0a0a);
	background-image: -ms-linear-gradient(#c40d0d, #8a0a0a);
	background-image: -o-linear-gradient(#c40d0d, #8a0a0a);
	background-image: linear-gradient(#c40d0d, #8a0a0a);
	text-decoration: none;
	color: #fff;
}

.tmf-button:active,
.page-numbers:active,
input[type=submit]:active {
	background-color: #700808;
	background-image: url(../ie-gradient.php?from=700808&to=ab0b0b);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#700808), to(#ab0b0b));
	background-image: -webkit-linear-gradient(#700808, #ab0b0b);
	background-image: -moz-linear-gradient(#700808, #ab0b0b);
	background-image: -ms-linear-gradient(#700808, #ab0b0b);
	background-image: -o-linear-gradient(#700808, #ab0b0b);
	background-image: linear-gradient(#700808, #ab0b0b);
	border: 1px solid #8c0909;
	border-top-color: #730707;
	text-decoration: none;
	color: #fff;
}

.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;
}