/* ============================================================================ *
	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 {
	margin-top: 25px;
}

a {
	color: #00E;
}

p {
	padding:10px;
}


/* ======================================== *
	Headers
 * ======================================== */
h1#page-title,
.editor-content h1 {
	font-size: 2em;
	line-height: 1.1em;
	font-weight: 700;
	margin-bottom: 50px;
	color: #000;
}

.tmf-post > h2,
.editor-content h2 {
	font-size: 1.6em;
	line-height: 1.1em;
	font-weight: 700;
	margin-bottom: 0;
}

.tmf-post > h2 a,
.editor-content h2 a {
	color: #000;
}

.tmf-post > h3,
h3.tmf-module-title {
	font-size: 1.4em;
	font-weight: 700;
	margin-bottom: 15px;
	color: #000;
}

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

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



/* ======================================== *
	Secondary Navigation Section
 * ======================================== */
#secondary-nav .menu {}
#secondary-nav .menu > .menu-item {}
#secondary-nav .menu > .menu-item.first {}
#secondary-nav .menu > .menu-item.last {}
#secondary-nav .menu > .menu-item > a {}
#secondary-nav .menu > .menu-item:hover > a {}



/* ======================================== *
	Header Section
 * ======================================== */
#header-wrapper {}

#header-container {
	padding: 0;
}

#header {}



/* ======================================== *
	Primary Navigation Section
 * ======================================== */
#primary-nav-wrapper {}
#primary-nav-container {}
#primary-nav {}

#primary-nav .menu {}
#primary-nav .menu > .menu-item {}
#primary-nav .menu > .menu-item.first {}
#primary-nav .menu > .menu-item.last {}
#primary-nav .menu > .menu-item > a {}
#primary-nav .menu > .menu-item:hover {}
#primary-nav .menu > .menu-item:hover > a {}

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

#primary-nav .menu-bar {}

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

html.mobile-nav #primary-nav .menu {}
html.mobile-nav #primary-nav .menu > .menu-item {}
html.mobile-nav #primary-nav .menu > .menu-item > a{}



/* ======================================== *
	Body Section
 * ======================================== */
#body-wrapper {}

#body-container {
	padding: 0;
}

#body {}



/* ======================================== *
	Footer Section
 * ======================================== */
#footer-wrapper {}

#footer-container {
	padding: 0;
}

#footer {}



/* ======================================== *
	Copyright Section
 * ======================================== */
#copyright-wrapper {}

#copyright-container {
	padding: 0;
}

#copyright {}



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

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



/* ======================================== *
	Inputs & Buttons
 * ======================================== */
input[type=text],
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 {
	font-size: .95em;
	padding: 5px;
	background-color: #eee;
	background-image: url(../ie-gradient.php?from=eee&to=ccc);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#eee), to(#ccc));
	background-image: -webkit-linear-gradient(#eee, #ccc);
	background-image: -moz-linear-gradient(#eee, #ccc);
	background-image: -ms-linear-gradient(#eee, #ccc);
	background-image: -o-linear-gradient(#eee, #ccc);
	background-image: linear-gradient(#eee, #ccc);
	cursor: pointer;
	border: 1px solid #ddd;
	border-bottom-color: #bbb;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	cursor: pointer;
	text-decoration: none;
	color: #333;
}

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

.tmf-button:active,
.page-numbers:active {
	background-color: #ccc;
	background-image: url(../ie-gradient.php?from=ccc&to=eee);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ccc), to(#eee));
	background-image: -webkit-linear-gradient(#ccc, #eee);
	background-image: -moz-linear-gradient(#ccc, #eee);
	background-image: -ms-linear-gradient(#ccc, #eee);
	background-image: -o-linear-gradient(#ccc, #eee);
	background-image: linear-gradient(#ccc, #eee);
	border: 1px solid #ddd;
	border-top-color: #bbb;
	text-decoration: none;
}

.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;
	color: #333;
}



/* ======================================== *
	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: 500px) {
	.not-mobile {
		display: none;
	}

	.mobile {
		display: inherit;
	}
}