/*
Theme Name: Ministry of Commerce
Author: the WordPress team
Author URI: http://wordpress.org/
Description: The 2012 theme for WordPress is a fully responsive theme that looks great on any device. Features include a front page template with its own widgets, an optional display font, styling for post formats on both index and single views, and an optional no-sidebar page template. Make it yours with a custom menu, header image, and background.
Version: 1.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: light, gray, white, one-column, two-columns, right-sidebar, flexible-width, custom-background, custom-header, custom-menu, editor-style, featured-images, flexible-header, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready
Text Domain: moc

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* =Notes
--------------------------------------------------------------
This stylesheet uses rem values with a pixel fallback. The rem
values (and line heights) are calculated using two variables:

$rembase:     14;
$line-height: 24;

---------- Examples

* Use a pixel value with a rem fallback for font-size, padding, margins, etc.
	padding: 5px 0;
	padding: 0.357142857rem 0; (5 / $rembase)

* Set a font-size and then set a line-height based on the font-size
	font-size: 16px
	font-size: 1.142857143rem; (16 / $rembase)
	line-height: 1.5; ($line-height / 16)

---------- Vertical spacing

Vertical spacing between most elements should use 24px or 48px
to maintain vertical rhythm:

.my-new-div {
	margin: 24px 0;
	margin: 1.714285714rem 0; ( 24 / $rembase )
}

---------- Further reading

http://snook.ca/archives/html_and_css/font-size-with-rem
http://blog.typekit.com/2011/11/09/type-study-sizing-the-legible-letter/


/* =Reset
-------------------------------------------------------------- */

@font-face {
	font-family:FuturaPTBold;
	src: url(font/FuturaPTBold.otf);
}

@font-face {
	font-family:FuturaPTBook;
	src: url(font/FuturaPTBook.otf);
}

@font-face {
	font-family:FuturaPTDemi;
	src: url(font/FuturaPTDemi.otf);
}

@font-face {
	font-family:FuturaPTExtraBold;
	src: url(font/FuturaPTExtraBold.otf);
}

@font-face {
	font-family:FuturaPTHeavy;
	src: url(font/FuturaPTHeavy.otf);
}

@font-face {
	font-family:FuturaPTLight;
	src: url(font/FuturaPTLight.otf);
}

@font-face {
	font-family:FuturaPTMedium;
	src: url(font/FuturaPTMedium.otf);
}




html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}

ol,
ul {
	list-style: none;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption,
th,
td {
	font-weight: normal;
	text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	font-family: futuraptbook;
	-webkit-font-smoothing: antialiased;
}
html {
	overflow-y: scroll;
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
a:focus {
	outline: none;
	text-decoration: none;
	color: inherit;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}
audio,
canvas,
video {
	display: inline-block;
}
audio:not([controls]) {
	display: none;
}
del {
	color: #333;
}
ins {
	background: #fff9c0;
	text-decoration: none;
}
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin: 24px;
	margin-bottom: 1.714285714rem;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
small {
	font-size: smaller;
}
img {
	border: 0;
	-ms-interpolation-mode: bicubic;
	max-width: 100%;
	display: block;
}

/* Clearing floats */
.clear:after,
.wrapper:after,
.format-status .entry-header:after {
	clear: both;
}
.clear:before,
.clear:after,
.wrapper:before,
.wrapper:after,
.format-status .entry-header:before,
.format-status .entry-header:after {
	display: table;
	content: "";
}


/* =Repeatable patterns
-------------------------------------------------------------- */

/* Small headers */
.archive-title,
.page-title,
.widget-title,
.entry-content th,
.comment-content th {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
	font-weight: bold;
	text-transform: uppercase;
	color: #636363;
}

/* Shared Post Format styling */
article.format-quote footer.entry-meta,
article.format-link footer.entry-meta,
article.format-status footer.entry-meta {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}

/* Form fields, general styles first */
button,
input,
textarea {
	border: 1px solid #ccc;
	border-radius: 3px;
	font-family: inherit;
	padding: 6px;
	padding: 0.428571429rem;
}
button,
input {
	line-height: normal;
}
textarea {
	font-size: 100%;
	overflow: auto;
	vertical-align: top;
}

/* Reset non-text input types */
input[type="checkbox"],
input[type="radio"],
input[type="file"],
input[type="hidden"],
input[type="image"],
input[type="color"] {
	border: 0;
	border-radius: 0;
	padding: 0;
}

/* Buttons */
.menu-toggle,
input[type="submit"],
input[type="button"],
input[type="reset"],
article.post-password-required input[type=submit],
.bypostauthor cite span {
	padding: 6px 10px;
	padding: 0.428571429rem 0.714285714rem;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 1.428571429;
	font-weight: normal;
	color: #7c7c7c;
	background-color: #e6e6e6;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -ms-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -webkit-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -o-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: linear-gradient(top, #f4f4f4, #e6e6e6);
	border: 1px solid #d2d2d2;
	border-radius: 3px;
	box-shadow: 0 1px 2px rgba(64, 64, 64, 0.1);
}
.menu-toggle,
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	cursor: pointer;
}
button[disabled],
input[disabled] {
	cursor: default;
}
.menu-toggle:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
article.post-password-required input[type=submit]:hover {
	color: #fff;
}
.menu-toggle:active,
.menu-toggle.toggled-on,
button:active,
input[type="submit"]:active,
input[type="button"]:active,
input[type="reset"]:active {
	color: #757575;
	background-color: #e1e1e1;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -ms-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -webkit-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -o-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: linear-gradient(top, #ebebeb, #e1e1e1);
	box-shadow: inset 0 0 8px 2px #c6c6c6, 0 1px 0 0 #f4f4f4;
	border-color: transparent;
}
.bypostauthor cite span {
	color: #fff;
	background-color: #325729;
	background-image: none;
	border: 1px solid #1f6f93;
	border-radius: 2px;
	box-shadow: none;
	padding: 0;
}

/* Responsive images */
.entry-content img,
.comment-content img,
.widget img {
	max-width: 100%; /* Fluid images for posts, comments, and widgets */
}
img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"] {
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}
img.size-full,
img.size-large,
img.header-image,
img.wp-post-image {
	max-width: 100%;
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}

/* Make sure videos and embeds fit their containers */
embed,
iframe,
object,
video {
	max-width: 100%;
}
.entry-content .twitter-tweet-rendered {
	max-width: 100% !important; /* Override the Twitter embed fixed width */
}

/* Images */
.alignleft {
	float: left;
}
.alignright {
	float: right;
}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.entry-content img,
.comment-content img,
.widget img,
img.header-image,
.author-avatar img,
img.wp-post-image {
	/* Add fancy borders to all WordPress-added images but not things like badges and icons and the like */

}
.wp-caption {
	max-width: 100%; /* Keep wide captions from overflowing their container. */
	padding: 4px;
}
.wp-caption .wp-caption-text,
.gallery-caption,
.entry-caption {
	font-style: italic;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #757575;
}
img.wp-smiley,
.rsswidget img {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
.entry-content dl.gallery-item {
	margin: 0;
}
.gallery-item a,
.gallery-caption {
	width: 90%;
}
.gallery-item a {
	display: block;
}
.gallery-caption a {
	display: inline;
}
.gallery-columns-1 .gallery-item a {
	max-width: 100%;
	width: auto;
}
.gallery .gallery-icon img {
	height: auto;
	max-width: 90%;
	padding: 5%;
}
.gallery-columns-1 .gallery-icon img {
	padding: 3%;
}

/* Navigation */
.site-content nav {
	clear: both;
	line-height: 2;
	overflow: hidden;
}
#nav-above {
	padding: 24px 0;
	padding: 1.714285714rem 0;
}
#nav-above {
	display: none;
}
.paged #nav-above {
	display: block;
}
.nav-previous,
.previous-image {
	float: left;
	width: 50%;
}
.nav-next,
.next-image {
	float: right;
	text-align: right;
	width: 50%;
}
.nav-single + .comments-area,
#comment-nav-above {
	margin: 48px 0;
	margin: 3.428571429rem 0;
}

/* Author profiles */
.author .archive-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.author-info {
	border-top: 1px solid #ededed;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	overflow: hidden;
}
.author-description p {
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.author.archive .author-info {
	border-top: 0;
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
}
.author.archive .author-avatar {
	margin-top: 0;
}


/* =Basic structure
-------------------------------------------------------------- */

/* Body, links, basics */
html {
	font-size: 87.5%;
}
body {
	background: #ffffff;
	color: #1a1a1a;
	font-family: 'Open Sans', sans-serif;;
	font-size: 1rem;
	text-rendering: optimizelegibility;
	transition: all 0.3s ease;
}

a {
	outline: none;
	color: #325729;
}
a:hover {
	color: #0f3647;
}

/* Assistive text */
.assistive-text,
.site .screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
}
.main-navigation .assistive-text:focus {
	background: #fff;
	border: 2px solid #333;
	border-radius: 3px;
	clip: auto !important;
	color: #000;
	display: block;
	font-size: 12px;
	padding: 12px;
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 100000; /* Above WP toolbar */
}

/* Page structure */
.site {
	
}

.widget-area {

}

/* Header */
.site-header {

}
.site-header h1,
.site-header h2 {
	text-align: center;
}
.site-header h1 a,
.site-header h2 a {
	color: #515151;
	display: inline-block;
	text-decoration: none;
}
.site-header h1 a:hover,
.site-header h2 a:hover {
	color: #325729;
	transition: all 0.3s ease;
}
.site-header h1 {
	font-size: 24px;
	font-size: 1.714285714rem;
	line-height: 1.285714286;
	margin-bottom: 14px;
	margin-bottom: 1rem;
}
.site-header h2 {
	font-weight: normal;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.header-image {
	margin-top: 24px;
	margin-top: 1.714285714rem;
}

/* Navigation Menu */
.main-navigation {
	padding-top: 0;
}
.main-navigation li {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.42857143;
}

.main-navigation .nav-menu >  li:hover {
	background: #5fa416;
}

.main-navigation li a img {
    margin: 0 auto;
        height: 25px;
}

.main-navigation li a img.hover {
	display: none;
}

/*.main-navigation li.current-menu-parent a img.normal {*/
	/*display: none;*/
/*}*/

/*.main-navigation li.current-menu-parent a img.hover {*/
	/*display: block;*/
/*}*/

.main-navigation a {
	color: #5e5e5e;
}
.main-navigation a:hover {
	color: #325729;
	transition: all 0.3s ease;
	cursor: pointer;
}
.main-navigation ul.nav-menu,
.main-navigation div.nav-menu > ul {
	display: none;
}
.main-navigation ul.nav-menu.toggled-on,
.menu-toggle {
	display: inline-block;
}

/* Banner */
section[role="banner"] {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
}

/* Sidebar */
.widget-area .widget {
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	word-wrap: break-word;
}
.widget-area .widget h3 {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.widget-area .widget p,
.widget-area .widget li,
.widget-area .widget .textwidget {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.widget-area .widget p {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.widget-area .textwidget ul {
	list-style: disc outside;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
.widget-area .textwidget li {
	margin-left: 36px;
	margin-left: 2.571428571rem;
}
.widget-area .widget a {
	color: #757575;
}
.widget-area .widget a:hover {
	color: #325729;
	transition: all 0.3s ease;
}
.widget-area .widget a:visited {
	color: #9f9f9f;
}
.widget-area #s {
	width: 53.66666666666%; /* define a width to avoid dropping a wider submit button */
}

/* Footer */
footer[role="contentinfo"] {
	clear: both;
    margin: 0 auto;
    width: 1060px;
}
footer[role="contentinfo"] a {
	color: #686868;
}
footer[role="contentinfo"] a:hover {
	color: #325729;
	transition: all 0.3s ease;
}


/* =Main content and comment content
-------------------------------------------------------------- */

.entry-meta {
	clear: both;
}
.entry-header {

}
.entry-header img.wp-post-image {

}
.entry-header .entry-title {
	font-size: 20px;
	line-height: 1.2;
	font-weight: normal;
}
.entry-header .entry-title a {
	text-decoration: none;
}
.entry-header .entry-format {
	margin-top: 24px;
	font-weight: normal;
}
.entry-header .comments-link {
	margin-top: 24px;
	font-size: 13px;
	line-height: 1.846153846;
	color: #757575;
}
.comments-link a,
.entry-meta a {
	color: #757575;
}
.comments-link a:hover,
.entry-meta a:hover {
	color: #325729;
	transition: all 0.3s ease;
}
article.sticky .featured-post {
	border-top: 4px double #ededed;
	border-bottom: 4px double #ededed;
	color: #757575;
	font-size: 13px;
	line-height: 3.692307692;
	margin-bottom: 24px;
	text-align: center;
}
.entry-content,
.entry-summary,
.mu_register {
	line-height: 1.714285714;
}
.entry-content h1,
.comment-content h1,
.entry-content h2,
.comment-content h2,
.entry-content h3,
.comment-content h3,
.entry-content h4,
.comment-content h4,
.entry-content h5,
.comment-content h5,
.entry-content h6,
.comment-content h6 {
	margin: 24px 0;
	line-height: 1.714285714;
}
.entry-content h1,
.comment-content h1 {
	font-size: 21px;
	line-height: 1.5;
}
.entry-content h2,
.comment-content h2,
.mu_register h2 {
	font-size: 18px;
	line-height: 1.6;
}
.entry-content h3,
.comment-content h3 {
	font-size: 16px;
	line-height: 1.846153846;
}
.entry-content h4,
.comment-content h4 {
	font-size: 14px;
	line-height: 1.846153846;
}
.entry-content h5,
.comment-content h5 {
	font-size: 13px;
	line-height: 1.846153846;
}
.entry-content h6,
.comment-content h6 {
	font-size: 12px;
	line-height: 1.846153846;
}
.entry-content p,
.entry-summary p,
.comment-content p,
.mu_register p {

}
.entry-content a:visited,
.comment-content a:visited {
	color: #9f9f9f;
}
.entry-content ol,
.comment-content ol,
.entry-content ul,
.comment-content ul,
.mu_register ul {
	margin: 0 0 24px;
	line-height: 1.714285714;
}
.entry-content ul ul,
.comment-content ul ul,
.entry-content ol ol,
.comment-content ol ol,
.entry-content ul ol,
.comment-content ul ol,
.entry-content ol ul,
.comment-content ol ul {
	margin-bottom: 0;
}
.entry-content ul,
.comment-content ul,
.mu_register ul {
	list-style: disc outside;
}
.entry-content ol,
.comment-content ol {
	list-style: decimal outside;
}
.entry-content li,
.comment-content li,
.mu_register li {
	margin: 0 0 0 36px;
}
.entry-content blockquote,
.comment-content blockquote {
	margin-bottom: 24px;
	padding: 24px;
	font-style: italic;
}
.entry-content blockquote p:last-child,
.comment-content blockquote p:last-child {
	margin-bottom: 0;
}
.entry-content code,
.comment-content code {
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	line-height: 2;
}
.entry-content pre,
.comment-content pre {
	border: 1px solid #ededed;
	color: #666;
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	line-height: 1.714285714;
	margin: 24px 0;
	overflow: auto;
	padding: 24px;
}
.entry-content pre code,
.comment-content pre code {
	display: block;
}
.entry-content abbr,
.comment-content abbr,
.entry-content dfn,
.comment-content dfn,
.entry-content acronym,
.comment-content acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}
.entry-content address,
.comment-content address {
	display: block;
	line-height: 1.714285714;
	margin: 0 0 24px;
}
img.alignleft,
.wp-caption.alignleft {
	margin: 12px 24px 12px 0;
}
img.alignright,
.wp-caption.alignright {
	margin: 12px 0 12px 24px;
}
img.aligncenter,
.wp-caption.aligncenter {
	clear: both;
	margin-top: 12px;
	margin-bottom: 12px;
}
.entry-content embed,
.entry-content iframe,
.entry-content object,
.entry-content video {
	margin-bottom: 24px;
}
.entry-content dl,
.comment-content dl {
	margin: 0 24px;
}
.entry-content dt,
.comment-content dt {
	font-weight: bold;
	line-height: 1.714285714;
}
.entry-content dd,
.comment-content dd {
	line-height: 1.714285714;
	margin-bottom: 24px;
}
.entry-content table,
.comment-content table {
	border-bottom: 1px solid #ededed;
	color: #757575;
	font-size: 14px;
	line-height: 2;
	margin: 0 0 24px;
	width: 100%;
	font-family: futuraptbook;
	-webkit-font-smoothing: antialiased;
}
.entry-content table caption,
.comment-content table caption {
	font-size: 16px;
	margin: 24px 0;
}
.entry-content td,
.comment-content td {
	border-top: 1px solid #ededed;
	padding: 6px 10px 6px 0;
}
.site-content article {

}
.page-links {
	clear: both;
	line-height: 1.714285714;
}
footer.entry-meta {
	margin-top: 24px;
	font-size: 13px;
	line-height: 1.846153846;
	color: #757575;
}
.single-author .entry-meta .by-author {
	display: none;
}
.mu_register h2 {
	color: #757575;
	font-weight: normal;
}


/* =Archives
-------------------------------------------------------------- */

.archive-header,
.page-header {
	margin-bottom: 48px;
	padding-bottom: 22px;
	border-bottom: 1px solid #ededed;
}
.archive-meta {
	color: #757575;
	font-size: 12px;
	line-height: 2;
	margin-top: 22px;
}


/* =Single image attachment view
-------------------------------------------------------------- */

.article.attachment {
	overflow: hidden;
}
.image-attachment div.attachment {
	text-align: center;
}
.image-attachment div.attachment p {
	text-align: center;
}
.image-attachment div.attachment img {
	display: block;
	height: auto;
	margin: 0 auto;
	max-width: 100%;
}
.image-attachment .entry-caption {
	margin-top: 8px;
}


/* =Aside post format
-------------------------------------------------------------- */

article.format-aside h1 {
	margin-bottom: 24px;
}
article.format-aside h1 a {
	text-decoration: none;
	color: #4d525a;
}
article.format-aside h1 a:hover {
	color: #2e3542;
	transition: all 0.3s ease;
}
article.format-aside .aside {
	padding: 24px 24px 0;
	background: #d2e0f9;
	border-left: 22px solid #a8bfe8;
}
article.format-aside p {
	font-size: 13px;
	line-height: 1.846153846;
	color: #4a5466;
}
article.format-aside blockquote:last-child,
article.format-aside p:last-child {
	margin-bottom: 0;
}


/* =Post formats
-------------------------------------------------------------- */

/* Image posts */
article.format-image footer h1 {
	font-size: 13px;
	line-height: 1.846153846;
	font-weight: normal;
}
article.format-image footer h2 {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}
article.format-image footer a h2 {
	font-weight: normal;
}

/* Link posts */
article.format-link header {
	padding: 0 10px;
	padding: 0 0.714285714rem;
	float: right;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
	font-weight: bold;
	font-style: italic;
	text-transform: uppercase;
	color: #848484;
	background-color: #ebebeb;
	border-radius: 3px;
}
article.format-link .entry-content {
	max-width: 80%;
	float: left;
}
article.format-link .entry-content a {
	font-size: 22px;
	font-size: 1.571428571rem;
	line-height: 1.090909091;
	text-decoration: none;
}

/* Quote posts */
article.format-quote .entry-content p {
	margin: 0;
	padding-bottom: 24px;
	padding-bottom: 1.714285714rem;
}
article.format-quote .entry-content blockquote {
	display: block;
	padding: 24px 24px 0;
	padding: 1.714285714rem 1.714285714rem 0;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.6;
	font-style: normal;
	color: #6a6a6a;
	background: #efefef;
}

/* Status posts */
.format-status .entry-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.format-status .entry-header header {
	display: inline-block;
}
.format-status .entry-header h1 {
	font-size: 15px;
	font-size: 1.071428571rem;
	font-weight: normal;
	line-height: 1.6;
	margin: 0;
}
.format-status .entry-header h2 {
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	line-height: 2;
	margin: 0;
}
.format-status .entry-header header a {
	color: #757575;
}
.format-status .entry-header header a:hover {
	color: #325729;
}
.format-status .entry-header img {
	float: left;
	margin-right: 21px;
	margin-right: 1.5rem;
}


/* =Comments
-------------------------------------------------------------- */

.comments-title {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
	font-weight: normal;
}
.comments-area article {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.comments-area article header {
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
	overflow: hidden;
	position: relative;
}
.comments-area article header img {
	float: left;
	padding: 0;
	line-height: 0;
}
.comments-area article header cite,
.comments-area article header time {
	display: block;
	margin-left: 85px;
	margin-left: 6.071428571rem;
}
.comments-area article header cite {
	font-style: normal;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.42857143;
}
.comments-area cite b {
	font-weight: normal;
}
.comments-area article header time {
	line-height: 1.714285714;
	text-decoration: none;
	font-size: 12px;
	font-size: 0.857142857rem;
	color: #5e5e5e;
}
.comments-area article header a {
	text-decoration: none;
	color: #5e5e5e;
}
.comments-area article header a:hover {
	color: #325729;
}
.comments-area article header cite a {
	color: #444;
}
.comments-area article header cite a:hover {
	text-decoration: underline;
}
.comments-area article header h4 {
	position: absolute;
	top: 0;
	right: 0;
	padding: 6px 12px;
	padding: 0.428571429rem 0.857142857rem;
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	color: #fff;
	background-color: #0088d0;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #009cee, #0088d0);
	background-image: -ms-linear-gradient(top, #009cee, #0088d0);
	background-image: -webkit-linear-gradient(top, #009cee, #0088d0);
	background-image: -o-linear-gradient(top, #009cee, #0088d0);
	background-image: linear-gradient(top, #009cee, #0088d0);
	border-radius: 3px;
	border: 1px solid #007cbd;
}
.comments-area .bypostauthor cite span {
	position: absolute;
	margin-left: 5px;
	margin-left: 0.357142857rem;
	padding: 2px 5px;
	padding: 0.142857143rem 0.357142857rem;
	font-size: 10px;
	font-size: 0.714285714rem;
}
.comments-area .bypostauthor cite b {
	font-weight: bold;
}
a.comment-reply-link,
a.comment-edit-link {
	color: #686868;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
a.comment-reply-link:hover,
a.comment-edit-link:hover {
	color: #325729;
}
.commentlist .pingback {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}

/* Comment form */
#respond {
	margin-top: 48px;
	margin-top: 3.428571429rem;
}
#respond h3#reply-title {
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
}
#respond h3#reply-title #cancel-comment-reply-link {
	margin-left: 10px;
	margin-left: 0.714285714rem;
	font-weight: normal;
	font-size: 12px;
	font-size: 0.857142857rem;
}
#respond form {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
#respond form p {
	margin: 11px 0;
	margin: 0.785714286rem 0;
}
#respond form p.logged-in-as {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
#respond form label {
	display: block;
	line-height: 1.714285714;
}
#respond form input[type="text"],
#respond form textarea {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	padding: 10px;
	padding: 0.714285714rem;
	width: 100%;
}
#respond form p.form-allowed-tags {
	margin: 0;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #5e5e5e;
}
.required {
	color: red;
}


/* =Front page template
-------------------------------------------------------------- */

.entry-page-image {
	margin-bottom: 14px;
	margin-bottom: 1rem;
}
.template-front-page .site-content article {
	border: 0;
	margin-bottom: 0;
}
.template-front-page .widget-area {
	clear: both;
	float: none;
	width: auto;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	border-top: 1px solid #ededed;
}
.template-front-page .widget-area .widget li {
	margin: 8px 0 0;
	margin: 0.571428571rem 0 0;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.714285714;
	list-style-type: square;
	list-style-position: inside;
}
.template-front-page .widget-area .widget li a {
	color: #757575;
}
.template-front-page .widget-area .widget li a:hover {
	color: #325729;
}
.template-front-page .widget-area .widget_text img {
	float: left;
	margin: 8px 24px 8px 0;
	margin: 0.571428571rem 1.714285714rem 0.571428571rem 0;
}


/* =Widgets
-------------------------------------------------------------- */

.widget-area .widget ul ul {
	margin-left: 12px;
	margin-left: 0.857142857rem;
}
.widget_rss li {
	margin: 12px 0;
	margin: 0.857142857rem 0;
}
.widget_recent_entries .post-date,
.widget_rss .rss-date {
	color: #aaa;
	font-size: 11px;
	font-size: 0.785714286rem;
	margin-left: 12px;
	margin-left: 0.857142857rem;
}
#wp-calendar {
	margin: 0;
	width: 100%;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #686868;
}
#wp-calendar th,
#wp-calendar td,
#wp-calendar caption {
	text-align: left;
}
#wp-calendar #next {
	padding-right: 24px;
	padding-right: 1.714285714rem;
	text-align: right;
}
.widget_search label {
	display: block;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.widget_twitter li {
	list-style-type: none;
}
.widget_twitter .timesince {
	display: block;
	text-align: right;
}


/* =Plugins
----------------------------------------------- */

img#wpstats {
	display: block;
	margin: 0 auto 24px;
	margin: 0 auto 1.714285714rem;
}

/* =Media queries
-------------------------------------------------------------- */

/* Minimum width of 600 pixels. */
@media screen and (min-width: 600px) {
	.author-avatar {
		float: left;
		margin-top: 8px;
		margin-top: 0.571428571rem;
	}
	.author-description {

	}

	.site-content {
		
	}
	.site-content.one-column {
		width: 100%;
	}
	.site-content.two-col-left {

	}
	.site-content.two-col-right {

	}
	.sidebar {

	}
	.left-sidebar {

	}
	
	.right-sidebar {

	}
	body.template-front-page .site-content,
	body.attachment .site-content,
	body.full-width .site-content {
		width: 100%;
	}
	.widget-area {
		
	}
	.site-header h1,
	.site-header h2 {
		text-align: left;
	}
	.site-header h1 {
		font-size: 26px;
		font-size: 1.857142857rem;
		line-height: 1.846153846;
		margin-bottom: 0;
	}
	.main-navigation ul.nav-menu,
	.main-navigation div.nav-menu > ul {
		text-align: left;
		display: table !important;
    	float: none;
    	margin: 0 auto;

	}
	.main-navigation ul {
		margin: 0;
		text-indent: 0;
	}
	.main-navigation li a,
	.main-navigation li {
		display: inline-block;
		text-decoration: none;
	}
	.main-navigation li a {
		border-bottom: 0;
		color: #ffffff;
		text-transform: unset;
		white-space: nowrap;
		padding: 5px 0 10px;
		display: block;
		font-size: 12px;
		line-height: 35px;
		font-family: FuturaPTBook;
		text-transform: uppercase;
		font-weight: normal;
		-webkit-font-smoothing: antialiased;
	}
	.main-navigation li:hover > a {
		color: #fff;
		transition: all 0.3s ease;
	}

	.main-navigation li a span {
		display: block;
		line-height: normal;
		font-size: 12px;
		font-style: italic;
		color: #c9d1c7;
		/*width: 100px;*/
		white-space: initial;
		font-weight: 100;
	}

	.main-navigation li {
		margin: 0 3px 0 0;
		position: relative;
		padding-right: 12px;
		float: left;
		padding-left: 12px;
		text-align: center;
		padding-top: 15px;
		padding-bottom: 6px;
	}
.main-navigation li.current-menu-parent {
	transition: all 0.3s ease;
	background: #5fa416;
}

	.main-navigation li.current-menu-parent:hover .hover { display: none; }
	.main-navigation li.current-menu-parent:hover .normal { display: block; }
	.main-navigation li.current-menu-parent:hover a { color: #ffffff }

	.main-navigation li.current-menu-parent > a {
		color: #ffffff;
	}

	/*.main-navigation li:first-child {
		display: inline-block;
		float: left;
		padding-left: 0;
	}

	.main-navigation li:first-child > a {
		padding: 0;
		display: block;
		color: #ffffff;
		font-size: 14px;
		line-height: 58px;
		padding: 15px 0;
	}

	.main-navigation li:first-child a:hover {
		color: #888;
	}

	.main-navigation li:first-child a i {
		display: inline-block;
	}

	.main-navigation li:first-child .sub {
		display: none;
	}*/

	.main-navigation li ul {
		display: none;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 100%;
		z-index: 10;
		background: #03553b;
		left: 0;
		width: 200px;
	}
ul#menu-main-menu >li:nth-child(4) ul.sub-menu {
    width: 445px;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
	}

	.main-navigation li ul li {
		margin: 0;
		padding: 0;
		border: none;
		float: none !important;
		display: block !important;
		border-bottom: 1px solid #0a5940;
	}

	.main-navigation li ul li:last-child {
		border-bottom: 0 !important;
	}

	.main-navigation li ul li a {

	}

	.main-navigation li ul li a:hover {

	}

	.main-navigation li ul ul {
		top: 0;
		left: 100%;
	}
	.main-navigation ul li:hover > ul {
		border-left: 0;
		display: block;
		transition: all 0.3s ease;
	}
	.main-navigation li ul li a {
		font-size: 12px !important;
		line-height: normal !important;
		padding: 10px 15px !important;
		width: auto;
		white-space: normal;
		display: block;
		height: auto;
		min-height: auto;
		float: none !important;
		text-align: left;
	}

.main-navigation li ul li a:before {
    content: "\f054";
    display: inline-block;
    width: 1px;
    position: relative;
    left: -9px;
    font-family: FontAwesome;
    font-size: 8px;
    top: -1px;
    margin-right: 0px;
}
	.main-navigation li:hover{
		transition: all 0.3s ease;
	}
	.main-navigation li ul li a:hover {
		background: #5fa416 !important;
		color: #ffffff !important;
		transition: all 0.3s ease;
	}
	.main-navigation .current-menu-item > a,
	.main-navigation .current-menu-ancestor > a,
	.main-navigation .current_page_item > a,
	.main-navigation .current_page_ancestor > a {
		color: #fff;
	}
	.menu-toggle {
		display: none;
	}
	.entry-header .entry-title {
		font-size: 22px;
		font-size: 1.571428571rem;
	}
	#respond form input[type="text"] {
		width: 46.333333333%;
	}
	#respond form textarea.blog-textarea {
		width: 79.666666667%;
	}
	.template-front-page .site-content,
	.template-front-page article {
		overflow: hidden;
	}
	.template-front-page.has-post-thumbnail article {
		float: left;
		width: 47.916666667%;
	}
	.entry-page-image {
		float: right;
		margin-bottom: 0;
		width: 47.916666667%;
	}
	.template-front-page .widget-area .widget,
	.template-front-page.two-sidebars .widget-area .front-widgets {
		float: left;
		width: 51.875%;
		margin-bottom: 24px;
		margin-bottom: 1.714285714rem;
	}
	.template-front-page .widget-area .widget:nth-child(odd) {
		clear: right;
	}
	.template-front-page .widget-area .widget:nth-child(even),
	.template-front-page.two-sidebars .widget-area .front-widgets + .front-widgets {
		float: right;
		width: 39.0625%;
		margin: 0 0 24px;
		margin: 0 0 1.714285714rem;
	}
	.template-front-page.two-sidebars .widget,
	.template-front-page.two-sidebars .widget:nth-child(even) {
		float: none;
		width: auto;
	}
	.commentlist .children {
		margin-left: 48px;
		margin-left: 3.428571429rem;
	}

}




/* =Print
----------------------------------------------- */

@media print {
	body {
		background: none !important;
		color: #000;
		font-size: 10pt;
	}
	footer a[rel=bookmark]:link:after,
	footer a[rel=bookmark]:visited:after {
		content: " [" attr(href) "] "; /* Show URLs */
	}
	a {
		text-decoration: none;
	}
	.entry-content img,
	.comment-content img,
	.author-avatar img,
	img.wp-post-image {
		border-radius: 0;
		box-shadow: none;
	}
	.site {
		clear: both !important;
		display: block !important;
		float: none !important;
		max-width: 100%;
		position: relative !important;
	}
	.site-header {
		margin-bottom: 72px;
		margin-bottom: 5.142857143rem;
		text-align: left;
	}
	.site-header h1 {
		font-size: 21pt;
		line-height: 1;
		text-align: left;
	}
	.site-header h2 {
		color: #000;
		font-size: 10pt;
		text-align: left;
	}
	.site-header h1 a,
	.site-header h2 a {
		color: #000;
	}
	.author-avatar,
	#colophon,
	#respond,
	.commentlist .comment-edit-link,
	.commentlist .reply,
	.entry-header .comments-link,
	.entry-meta .edit-link a,
	.page-link,
	.site-content nav,
	.widget-area,
	img.header-image,
	.main-navigation {
		display: none;
	}
	.wrapper {
		border-top: none;
		box-shadow: none;
	}
	.site-content {
		margin: 0;
		width: auto;
	}
	.singular .entry-header .entry-meta {
		position: static;
	}
	.singular .site-content,
	.singular .entry-header,
	.singular .entry-content,
	.singular footer.entry-meta,
	.singular .comments-title {
		margin: 0;
		width: 100%;
	}
	.entry-header .entry-title,
	.entry-title,
	.singular .entry-title {
		font-size: 21pt;
	}
	footer.entry-meta,
	footer.entry-meta a {
		color: #444;
		font-size: 10pt;
	}
	.author-description {
		float: none;
		width: auto;
	}

	/* Comments */
	.commentlist > li.comment {
		background: none;
		position: relative;
		width: auto;
	}
	.commentlist .avatar {
		height: 39px;
		left: 2.2em;
		top: 2.2em;
		width: 39px;
	}
	.comments-area article header cite,
	.comments-area article header time {
		margin-left: 50px;
		margin-left: 3.57142857rem;
	}
}

.header-container {
	background: url(images/bg-green.png) repeat-x;
	background-size: auto 100%;
	border-top: 8px solid #5fa416;
	padding: 0;
	z-index: 10;
	position: fixed;
	top: 0;
	width: 100%;
}
/*.ep-header {
    background: #085b2f url(images/header-logo-bg.gif) no-repeat right;
    background: #085b2f;
    padding: 0 0;
}*/

/*.header-container .container {
    width: 96%;
}*/
.ep_logo {
	width: 112px;
	padding: 12px 10px;
	position: absolute;
	top: -15px;
	right: 0;
	background: #fff;
	border-bottom: 3px solid #659f58;
	-webkit-box-shadow: 0 4px 7px 0 rgba(0,0,0,0.28);
	-moz-box-shadow: 0 4px 7px 0 rgba(0,0,0,0.28);
	box-shadow: 0 4px 7px 0 rgba(0,0,0,0.28);
}

.header {

}

.logo {
padding: 6px 0 7px;
}

.logo a {

}

.logo img {

}

.header-right {

}

.head-links {
	margin-bottom: 20px;
}

.head-links ul {

}

.head-links ul li {
	display: inline-block;
	border-right: 1px solid #ffffff;
	padding-right: 10px;
	margin-right: 10px;
}

.head-links ul li:last-child {
	border: none;
	margin: 0;
	padding: 0;
}

.head-links ul li a {
	color: #ffffff;
	text-transform: uppercase;
	font-size: 11px;
	text-decoration: none;
	display: block;
	line-height: 10px;
}

.head-links ul li a:hover {
	color: #325729;
	transition: all 0.3s ease;
}

.head-search {
	width: 100%;
    float: right;
    margin-top: 15px;
}

.head-search #s {
	background: #ffffff;
	border: 1px solid #b5c6cd;
	border-radius: 0;
	font-size: 12px;
	width: 85%;
	float: left;
	border-right: 0;
}

.head-search .btn {
	background: #002a3a;
	border: none;
	color: #ffffff;
	border-radius: 0;
	width: 15%;
	float: left;
	padding: 5px 3px;

	-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}

.head-search .btn i {
	font-size: 16px;
}

.head-search .btn:hover {
	background: #325729;
	transition: all 0.3s ease;
}

/*.nav-container {
	background: #75a06b;
}*/

.blue-notification {
	background: #003a54;
	padding: 20px 0;
}

.blue-notification p {
	color: #ffffff;
	margin: 0;
	font-size: 24px;
	font-weight: 100;
	text-align: center;
}

.blue-box {

}

.blue-box ul {

}

.blue-box ul li {
	background: #003a54;
	padding: 15px;
	margin-bottom: 10px;
}

.blue-box ul li:last-child {
	margin-bottom: 0;
}

.blue-box ul li a {
	display: block;
	color: #ffffff;
	font-size: 16px;
	position: relative;
	padding-right: 40px;
	text-decoration: none;
	line-height: 20px;
}

.blue-box ul li a:after {
	content: '\f105';
	font-family: FontAwesome;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	font-size: 26px;
}

.blue-box ul li a:hover {

}

.slider-section {
	padding:0;
    margin-top: -100px;
}

.slider-img:after {
    content: '';
    height: 300px;
    width: 100%;
    position: absolute;
    bottom: 0;
    -webkit-box-shadow: inset -2px -187px 128px -39px rgba(0,0,0,0.85);
-moz-box-shadow: inset -2px -187px 128px -39px rgba(0,0,0,0.85);
box-shadow: inset -2px -187px 128px -39px rgba(0,0,0,0.85);
}

.home-posts-section {
}
.news-section .container{
	margin-top: -80px;
    position: relative;
    z-index: 9;}

.news-section .row {    
	margin-bottom:20px !important;
    background: #fff;
    padding: 30px 10px 10px;
    -webkit-box-shadow: -2px 3px 12px -7px rgba(0,0,0,0.50);
    -moz-box-shadow: -2px 3px 12px -7px rgba(0,0,0,0.50);
    box-shadow: -2px 3px 12px -7px rgba(0,0,0,0.50);
}

.home-four-block .row {
	margin-bottom: 20px !important;
	background: #fff;
	padding: 15px 10px;

	webkit-box-shadow: -2px 3px 12px -7px rgba(0,0,0,0.50);
	-moz-box-shadow: -2px 3px 12px -7px rgba(0,0,0,0.50);
	box-shadow: -2px 3px 12px -7px rgba(0,0,0,0.50);
}

.business-oppor .row {
	background: #fff;
	margin-bottom: 15px;    
    -webkit-box-shadow: -2px 3px 12px -7px rgba(0,0,0,0.50);
    -moz-box-shadow: -2px 3px 12px -7px rgba(0,0,0,0.50);
    box-shadow: -2px 3px 12px -7px rgba(0,0,0,0.50);
}
.bo-content{
	background: #107050;
	padding: 30px;
	text-align: center;
	color: #fff;
	margin: 0;
}

.bo-content h2 {
    font-size: 30px;
    margin: 0 0 15px;
    padding-top: 15px;
}

.bo-content p{font-size: 18px;
	font-family: futuraptbook;
	-webkit-font-smoothing: antialiased;}

.bo-images{display:-webkit-box;}
.bo-images ul li {
    display: table-cell;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 25%;
    float: left;}

/*Home bottom Slider*/
.bo_slides {
    display: block;
    margin: 0;
    padding: 0;
    height: 380px;
    overflow: hidden;
}

.bo_slides .bo-left{
	width:35%;
	float:left;
	background:#0c2e43;
	padding:30px;
	height:380px;
	color:#fff;}
.bo_slides .bo-left h2{
	font-size:36px;
	margin-bottom:25px;
	text-transform:uppercase;
}
.bo_slides .bo-left p{
	font-size: 17px;
	margin-bottom: 15px;
	font-family: futuraptbook;
	-webkit-font-smoothing: antialiased;
}	

.bo_slides .bo-right{
	width: 65%;
    float: right;
    height: 380px;
    background-size: cover;
    text-align: center;
    color: #fff;
    padding: 50px;
}
.bo_slides .bo-right h3 {
    font-size: 32px;
    margin: 15px;
}
.bo_slides .bo-right p {
	font-size: 20px;
	margin: 15px;
	font-family: futuraptbook;
	-webkit-font-smoothing: antialiased;
}
.bo-right a.link-box {
	font-size: 20px;
	border: 1px solid #fff;
	color: #fff;
	padding: 10px;
	text-decoration: none;
	margin-top: 15px;
	display: inline-block;
	transition: all 0.3s ease;
	font-family: futuraptbook;
	-webkit-font-smoothing: antialiased;
	letter-spacing: 1px;
}
.bo-right a.link-box:hover{
	background: #5fa416;
	border: 1px solid #5fa416;
    color: #ffffff;}

.bo_slides .owl-prev {left: 0 !important;}
.bo_slides .owl-next{left: 40px !important;}

.post-carousel {
	margin-top: -5px;
}
.row.home-post-area {
    margin-left: 10px;
    margin-right:10px;
}
.home-carousel-posts {
    margin-bottom: 20px;
    padding: 4px 0;
}

.post-item {
	margin: 5px 10px;
	background: #ffffff;
	box-shadow: 0 0 5px #999;
	padding: 0;
}

.home-post-area .post-item {box-shadow:none;}

.carousel-item {

}

#slider-caption {
	background: #ffffff;
    padding: 10px 20px 10px 20px;
    font-size: 26px;
    position: absolute;
    bottom: 120px;
    font-weight: bold;
    width: 50%;
    left: 119px;
}
/*
.slider-caption p {
	color: #005d85;
	font-size: 16px;
	line-height: 22px;
}*/



.carousel-img-box {
}
.carousel-img-box img {width: 100% !important;}
.home-carousel-posts .carousel-img-box {max-height: 180px;overflow:hidden; }

.carousel-post-name {
	margin: 10px 0;
}

.carousel-post-name a {
	display: block;
	color: #000;
	font-size: 16px;
/ font-weight: bold; /
text-decoration: none;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-family: futuraptmedium;
}

.carousel-post-name a:hover {
color: #6fb91a;
transition: all 0.3s ease;
}

.carousel-post-description {
	padding: 3px 0;
    height: 110px;
    overflow: hidden;
    margin-bottom: 5px;
}

.carousel-post-description p {
	color: #000;
	font-family: futuraptbook;
	font-size: 15px;
}

.post_rm a{background: #6fb91a;
	color: #fff;
	padding: 6px 20px 10px;
	font-family: futuraptbook;
	-webkit-font-smoothing: antialiased;
	font-size: 15px;}

.post_rm a:hover {text-decoration:none; background:#1a1a1a;transition: all 0.3s ease;}
.featured-posts {
	background: #ffffff;
	padding: 15px 25px;
	-webkit-box-shadow: -2px 3px 18px -6px rgba(0,0,0,0.50);
    -moz-box-shadow: -2px 3px 18px -6px rgba(0,0,0,0.50);
    box-shadow: -2px 3px 18px -6px rgba(0,0,0,0.50);
    margin-bottom: 20px;
}

.featured-posts > div > div.odd {
	border-right: 1px solid #e3e3e3;
}

.featured-posts > div > div.even {
	border-left: 1px solid #e3e3e3;
}

.featured-full {
	padding-bottom: 15px;
	border-bottom: 2px solid #e3e3e3;
}

.featured-item {
	margin-bottom: 15px;
}

.featured-item h2 {

}

.featured-item h2 a {
	display: block;
	color: #171717;
	font-size: 22px;
	font-weight: 600;
	text-decoration: none;
	font-family: Open sans;
}

.featured-item p {
	font-size: 14px;
}

.feature-post-img {

}

.feature-post-img img {

}

.feature-post-cont {

}

.post-desc {

}

.post-desc p {

}

.featured-item .post-name {

}

.featured-item .post-name a {
	display: block;
	color: #171717;
	font-size: 22px;
	font-weight: 600;
	text-decoration: none;
	font-family: Open sans;
}

.featured-item .post-name a:hover {

}

.featured-full.featured-item .post-date {
	margin-bottom: 15px;
}

.featured-item .post-date {
	font-size: 14px;
}

.featured-image {
	margin-top: 10px;
	margin-bottom: 5px;
}

.featured-image img {
	max-width: 100%;
	display: block;
}

.post-description {

}

.post-description p {

}

.news-events .block-content ul li{display: inline-block;width: 24%;margin-right: 10px;}



.pressrel-img-box {
    width: 34%;
    float: left;
}

.pressrel-img-box img{    
	width: 100%;
    height: auto;
}

.pressrel-img-box img:hover {
	opacity: 0.9;
}

.pressrel-desc { 
	float: right;
    padding: 0 5px;
    width: 65%;
    height: 80px;
    overflow: hidden;
    vertical-align: middle;} 
       
.pressrel-desc a {font-weight: bold !important;}
.block {
	margin-bottom: 15px;
}

.block.banner-block {
	background: none;
	padding: 0;
	border: none;
}

.block.banner-block img{width: 100%;}

.block-title {
	    border-left: 3px solid #6fb919;
    padding: 7px 10px;
    background-size: 100%;
    margin-bottom: 10px;
}

.block-title h4 {
	color: #000;
    font-size: 22px;
	text-transform: uppercase;
}
.home-post-area .block-title h4 {
    display: inline-table;
    margin-right: 75%;
}

.block-content {

}

.block-content ul {

}

.block-content ul li {
	margin-bottom: 0;
	padding: 5px 0;
}

.block-content ul li:last-child {
	margin: 0;
	border: none;
}

.block-content ul li a {
	color: #fff;
	text-transform: uppercase;
	font-size: 13px;
	font-family: FuturaPTLight;
	font-weight: normal;
	letter-spacing: 1px;
	display: block;
	/*-webkit-font-smoothing: antialiased;*/
}

.block-content ul li a:hover {
	 text-decoration:none;
}

.block-content ul li p {
    font-size: 13px;
}

.footer-container {
	background: url(images/footer-bg.png) no-repeat right top #02121c;
	padding-top: 20px;
	border-top: 5px solid #588a4c;
}

.footer {

}

.footer-col {

}

.footer-col h3 {
	color: #ffffff;
	font-weight: bold;
	font-size: 14px;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.footer-col h3 .svg-inline--fa {
	display: none;
}

.footer-col img {
	max-width: 60px;
	margin-bottom: 15px;
}

.footer-col p {
	color: #ffffff;
	font-size: 12px;
	text-decoration: none;
	display: block;
	margin-bottom: 10px;
	-webkit-font-smoothing: antialiased;
}

.footer-col ul {
	margin-bottom: 20px;
}

.footer-col ul li {
	background: url(images/icon-list-arrow.right.light.png) no-repeat left center;
	padding-left: 10px;
	transition: all 0.3s ease;
	line-height: 20px;
}

.footer-col ul li a {
	color: #cad6e6;
	font-size: 12px;
	text-decoration: none;
	display: block;
	text-transform: capitalize;
	-webkit-font-smoothing: antialiased;
}

.footer-col ul li a:hover {
	color: #5fa416;
	transition: all 0.3s ease;
}

.footer-col ul.follow-us {
	margin: 0;
}

.footer-col ul.follow-us li {
	background: none;
	padding: 0;
	display: inline-block;
	margin-right: 5px;
}

.footer-col ul.follow-us li a {
	font-size: 24px;
}

.footer-col ul.follow-us li a:hover {
	color: #6fb91a;
	transition: all 0.3s ease;
}

.bottom-footer {
	border-top: 1px solid #3f515f;
	padding-top: 10px;
	display: inline-block;
	width: 100%;
	padding-bottom: 10px;
}

.site-links {

}

.site-links li {
	display: inline-block;
	margin-right: 10px;
	padding-right: 10px;
	border-right: 1px solid #cad6e6;
}

.site-links li:last-child {
	border: none;
	margin: 0;
	padding: 0;
	font-family: futuraptlight;
	letter-spacing: 0.5px;
}

.site-links li a {
	color: #cad6e6;
	font-size: 12px;
	text-decoration: none;
	display: block;
	line-height: 10px;
}

.site-links li a:hover {
	color: #6fb91a;
	transition: all 0.3s ease;
}

.cover-title {

}

.cover-title h1 {
	font-size: 22px;
	margin: 0 0 10px;
	border-left: 3px solid #6fb919;
	padding-left: 15px;
	font-weight: normal;
	padding-top: 7px;
	padding-bottom: 7px;
	text-transform: uppercase;
	font-family: futuraptbook;
	letter-spacing: 0.4px;
	-webkit-font-smoothing: antialiased;
	color: #000000;
}

.cover-title img {
	max-width: 100%;
}

.cover-title p {
	margin-bottom: 10px;
	text-transform: uppercase;
	font-size: 16px;
}

.main-container {
	padding-top: 15px;
	background: #ffffff;
	padding-bottom: 15px;
}
.sidebar-links {
 background:#03553b;
}

.sidebar-links .block-content ul li {
	 border-bottom: 1px solid #0a5940;
	 padding:8px 10px 8px 25px;
}

.sidebar-links .block-content ul li:last-child {
	border: none;
}

.sidebar-links .block-content ul li:hover{
	background: #5fa638 !important;
		color: #ffffff !important;
		transition: all 0.3s ease;
}

.sidebar-links .block-content ul li.active {
	background: #5fa416 !important;
		color: #ffffff !important;
		transition: all 0.3s ease;
}

.contact-form {
}

.input-field {
	margin-bottom: 15px;
}

.input-field input, .input-field textarea {
	border-bottom: 1px solid #409942;
	border-radius: 0;
	width: 100%;
	line-height: 30px;
	background: #fafafa;
	border-left: 0;
	border-right: 0;
	border-top: 0;
	padding: 6px 10px;
}

.input-field textarea {
	max-height: 160px;
}

.input-field.button {
	text-align: right;
}

.contact-form .wpcf7-submit {
	background: #409942;
	color: #ffffff;
	width: auto;
	padding: 10px 20px;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: normal;
	border: none;
	-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	border: 1px solid #409942 !important;
}

.contact-form .wpcf7-submit:hover {
	background: #086d44;
}

div.wpcf7 .ajax-loader {
	float: left;
}

.cms-page {

}

h3.sub-head {
	margin: 0;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 22px;
	color: #588a4c;
	-webkit-font-smoothing: antialiased;
	font-weight: normal;
	font-family: futuraptbook;
	margin-top: 10px;
}
h3.subheading{color: white;background: #588a4c;padding: 0 10px; margin:0;}

tr.gray {
    background: #f9f9f9;
}

.cms-page p {
	margin: 0 0 10px 0;
	line-height: normal;
	-webkit-font-smoothing: antialiased;
	line-height: 24px;
	font-family: futuraptbook;
	font-size: 15px;
}

.cms-page p b {
	text-transform: uppercase;
}

.cms-page ul {
	margin: 0 0 10px 0;
}

.cms-page ul li:before {
	content: "\f069";
	font-family: FontAwesome;
	font-size: 8px;
	padding-right: 0;
	line-height: 10px;
	position: absolute;
	top: 7px;
	left: 0;
	color: #325729;
}

.cms-page ul li {
	margin: 0;
	list-style: none;
	position: relative;
	padding-left: 15px;
	font-family: futuraptbook;
	font-size: 15px;
	-webkit-font-smoothing: antialiased;
}

.cms-page a {

}

.cms-page a:hover {

}

.cover-image {

}

.cover-image img {
	max-width: 100%;
}

.mob-header {
	border-top: 4px solid #5fa415;
    background: url(images/bg-green.png) repeat-x;
    background-size: auto;
    padding: 6px 10px;
    z-index: 10;
    position: relative;
}

.mob-logo {

}

.mob-logo img {
	max-width: 160px;
}

.m-menu-trigger {
	text-align: right;
	color:#fff;
	font-size: 20px;
	cursor: pointer;
}

.m-menu-trigger i {

}
.m-menu::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

.m-menu::-webkit-scrollbar
{
    width: 5px;
    background-color: #F5F5F5;
}
.m-menu::-webkit-scrollbar-thumb
{
    background-color: #94cf4f;
    /*border: 1px solid #555555;*/
}


.m-menu {
	position: fixed;
	left: -100%;
	top: 0;
	width: 75%;
	overflow-y: scroll;
	background: #fff;
	z-index: 100;
	height: 100%;
	-transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
}

.m-menu.active {
	left: 0;
}

.overlay {
	background: rgba(0, 0, 0, 0.8);
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	height: 100%;
}

.overlay.show {

}


.inner-page-wrap {

}

.ip-box {
	margin-bottom: 20px;
	border-bottom: 2px dashed #75a06b;
	padding-bottom: 20px;
}

.ip-box h2 {
	display: block;
	color: #171717;
	font-size: 18px;
	font-weight: 600;
	text-decoration: none;
	font-family: Open sans;
	margin: 0 0 5px 0;
}

.ip-box p {
	font-size: 14px;
}

/*.page-id-62 td {
    padding: 6px 10px 6px 10px;
}*/


#wpcf7-f155-p60-o1 input.wpcf7-text, textarea {
	width: 100%;
}

#wpcf7-f155-p60-o1 {
	margin: 20px 0;
}

#wpcf7-f155-p60-o1 .wpcf7-submit {
	margin: 10px 0;
	padding: 7px 50px;
	font-size: 15px;
	text-transform: uppercase;
	background: #588a4c;
	color: white;
	font-weight: bold;
}

/*slider pionts*/
.sa_owl_theme .owl-dots {
	display: block;
}

.emerging-section{
	background-image: url(images/EP_about-EP-bg.jpg);
    padding: 45px 0;
    text-align: center;
    color: #fff;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.emerging-section h2 {
	font-size: 34px;
text-transform: uppercase;
}
.emerging-section p {
	font-size: 20px;
	margin: 15px 0;
	font-family: futuraptlight;
	-webkit-font-smoothing: antialiased;
}
.emerging-section span{
	font-size: 21px;
	color: #fff;
	padding: 0;
	display: table;
	font-weight: bold;
	text-shadow: 1px 1px 10px rgba(150, 150, 177, 1);
	position: absolute;
	top: 43%;
	width: 93%;
	cursor: pointer;
	font-family: futuraptlight;
	letter-spacing: 0.5px;
	-webkit-font-smoothing: antialiased;
}
.emerging-section a {text-decoration:none;}
.emerging-section a:hover {text-decoration:none;}

.bo-left .owl-carousel .owl-nav{    
	position: relative;
    bottom: -30px;}

.home-carousel-posts.owl-carousel .owl-nav .owl-prev{    
	position: absolute;
    right: 38px;
    top: -8%;
    transform: translateY(-50%);
    padding: 0;
    font-size: 30px;
    font-weight: bold;
}
.home-carousel-posts.owl-carousel .owl-nav .owl-prev:hover{color:#6fb919;transition: all 0.3s ease;}
.home-carousel-posts.owl-carousel .owl-nav .owl-next{
	position: absolute;
    right: 9px;
    top: -8%;
    transform: translateY(-50%);
    font-size: 30px;
}
.home-carousel-posts.owl-carousel .owl-nav .owl-next:hover{color:#6fb919;transition: all 0.3s ease;}

.ep-box .bg-img{
	width: 100%;
    overflow: hidden;
    max-height: 157px;
}

.ep-box .bg-img img{
width: 100%;
    display: block;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;}

.ep-box .bg-img a:hover>img{transform:scale(1.05);
    -ms-transform:scale(1.05); /* IE 9 */
    -moz-transform:scale(1.05); /* Firefox */
    -webkit-transform:scale(1.05); /* Safari and Chrome */
    -o-transform:scale(1.05); /* Opera */}

.breadcrumb-container {
    font-size: 13px;
    margin-bottom: 15px;
    display: block !important;
}
.ftr-col i {display:none;}

.ftr-col i.fa.fa-facebook-square {display: block;}
.ftr-col i.fa.fa-twitter-square {display: block;}
.ftr-col i.fa.fa-linkedin-square {display: block;}

.mobile-more-link {display: none;}

/** 768 **/
@media screen and (max-width: 768px) {
.emerging-section .ep-box{margin-bottom: 10px;}
.blue-notification p{font-size: 16px !important;}
.carousel-post-description p {font-size: 14px;}

.ftr-col i {display:block;float: right;}
.ftr-col {padding: 5px;}
.mobile-more-link {display: block;}
.footer-col.first.logo-box img {margin: 0 auto 10px;}
.emerging-section {background-image: url(images/EP_about-EP-bg.jpg);padding: 45px 5px;}

/*Bottom AT Slider*/
.bo_slides {height: auto;} 
.bo_slides .bo-left {
    width: auto;
    float: none;
    height: auto;}
.bo_slides .bo-right {
    width: auto;
    float: none;
    height: auto;
	padding:40px 15px;}
.bo_slides .bo-right h3 {
    font-size: 26px;
    margin: 0;}	
.bo_slides .bo-right p {
	font-size: 20px;
	margin: 15px;
	font-family: futuraptbook;
	-webkit-font-smoothing: antialiased;
}
.bo-right a.link-box {
	font-size: 20px;
	border: 1px solid #fff;
	color: #fff;
	padding: 10px;
	text-decoration: none;
	margin-top: 15px;
	display: inline-block;
	transition: all 0.3s ease;
	font-family: futuraptbook;
	-webkit-font-smoothing: antialiased;
	letter-spacing: 1px;
}
.bo-left .owl-carousel .owl-nav {
    position: relative;
    bottom: -30px;}     
.carousel-post-description{height: auto;}

/*Main Home Slider*/
.slider-section {margin: -30px 0 0 0;}    

.news-section .row{padding: 15px 10px;}
.news-section .container{margin: 0;}
.slider-img:after {
-webkit-box-shadow: inset -1px -34px 44px -5px rgba(0,0,0,0.59);
-moz-box-shadow: inset -1px -34px 44px -5px rgba(0,0,0,0.59);
box-shadow: inset -1px -34px 44px -5px rgba(0,0,0,0.59);}

.vt-tab-menu .vt-group>a {width: 48%;display: inline-table !important;}
.vt-post-item {
    width: 47%;
    margin: 4px;
    display: inline-block;}
.vt-tab-content {padding: 0 10px;}    

/*Court Cases*/
.page-template-court_cases .dataTables_wrapper{
    width: 100%;
    overflow-x: scroll;
}
.home-posts-section .block-list.news-events {
    margin-bottom: 5px;
}
.news-events .block-content ul li{
	    display: inline-block;
    width: 100%;
    padding: 0;
}

} /** /768 **/

/*  vertical tab */
.vt-tab-container{
  background-color: #ffffff;
  padding: 0 3px 0 0 !important;
  margin-bottom: 20px;
  -webkit-box-shadow: -2px 3px 12px -7px rgba(0,0,0,0.50);
    -moz-box-shadow: -2px 3px 12px -7px rgba(0,0,0,0.50);
    box-shadow: -2px 3px 12px -7px rgba(0,0,0,0.50);
}
.vt-tab-menu{
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 0;
}
.vt-tab-menu .vt-group{
  margin-bottom: 0;
}
.vt-tab-menu .vt-group>a{
    margin-bottom: 0;
    position: relative;
    display: block;
    padding: 10px 15px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    color: #191919;
}
.vt-tab-menu .vt-group>a:hover{color:#6fb91a;transition: all 0.3s ease;}
.vt-tab-menu .vt-group>a:first-child{
  border-top-right-radius: 0;
  -moz-border-top-right-radius: 0;
}
.vt-tab-menu .vt-group>a:last-child{
  border-bottom-right-radius: 0;
  -moz-border-bottom-right-radius: 0;
}
.vt-tab-menu .vt-group>a.active{
    color: #6eb919;
    border-left: 3px solid #6eb919;
    transition: all 0.3s ease;
}

.vt-tab-menu .vt-group>a:after{
  	content: '\f068';
    font-family: FontAwesome;
    top: 15px;
    right: 10px;
    float: right;
    position: absolute;
    font-weight: normal;
    color: #191919;
    font-size: 13px;
}

.vt-tab-menu .vt-group>a.active:after{
  	content: '\f067';
    font-family: FontAwesome;
    top: 12px;
    right: 10px;
    float: right;
    position: absolute;
    font-weight: normal;
    color: #191919;
}

.vt-tab-content{
    transition: all 0.3s ease;
}

.vt-tab .vt-tab-content:not(.active){
  display: none;
}

.vt-tab-container .vt-tab{
	padding: 10px 0 !important;
    border-left: 1px solid #ddd;
    max-height: 550px;
    overflow-y: scroll;
    display: table-caption;
    -webkit-box-shadow: inset 0 -63px 110px -21px rgba(255,255,255,1);
-moz-box-shadow: inset 0 -63px 110px -21px rgba(255,255,255,1);
box-shadow: inset 0 -63px 110px -21px rgba(255,255,255,1);
transition: all 0.3s ease;
}

.vt-tab::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

.vt-tab::-webkit-scrollbar
{
    width: 5px;
    background-color: #F5F5F5;
}
.vt-tab::-webkit-scrollbar-thumb
{
    background-color: #94cf4f;
    /*border: 1px solid #555555;*/
}
.vt-post-item {
    display: inline-table;
    width: 31%;
    margin: 0 0 25px 14px;
}
.vt-post-item span{
	display:block;
	font-weight:bold;
	color: #1a1a1a;
}
.vt-post-item .vt-post-name {
    margin: 5px 0;
}
.vt-post-item .vt-post-name a {
    font-size: 16px;
    font-weight: bold;
    color: #6fb91a;
}
.vt-post-description {
    /*font-size: 13px;
    line-height: 16px;*/
}

@media screen and (max-width: 480px) {
.vt-post-item {    
	width: 92%;
    margin: 0 auto 20px;
    display: block;}
.vt-tab-menu .vt-group>a {font-size: 14px;}    

}/*480*/

@media only screen and (min-width : 480px) and (max-width : 1024px) {
.vt-post-item {    
	width: 45%;
    margin: 0 5px 20px;
    display: inline-block;}

}

@media only screen and (min-width : 1024px) and (max-width : 1024px) {
.news-section .container {margin-top: -30px;}
.slider-img:after {
    content: '';
    position: absolute;
    -webkit-box-shadow: inset -1px -55px 44px -8px rgba(0,0,0,0.59);
    -moz-box-shadow: inset -1px -55px 44px -8px rgba(0,0,0,0.59);
    box-shadow: inset -1px -55px 44px -8px rgba(0,0,0,0.59);}


}/*769-1024*/

@media screen and (max-width: 1024px) {
	/**Main Slider**/
.slider-box{display: none !important;}
.slider-Mobile{display: block !important;}
.slider-Mobile .owl-carousel .owl-item img {width: 100%;}

.bo-images ul li {width: 33.30%;}
.bo-images ul li:nth-child(4){display: none;}

}

.slider-box{display: block ;}
.slider-Mobile{display:none ;}

/*Slider text animation*/
.slider-box  {
}

.home-posts-section .block-content ul li a {
	display: block;
	color: #000;
	font-size: 14px;
	font-weight: normal !important;
	text-decoration: none;
	overflow: hidden;
	text-overflow: ellipsis;
	/*white-space: nowrap;*/
	font-family: futuraptmedium;
	letter-spacing: 0;
	-webkit-font-smoothing: antialiased;
}


/*li#menu-item-514>a:before {
    content: no-open-quote;
    background: url(images/about_icon.png);
    position: absolute;
    font-weight: normal;
    color: #191919;
    width: 30px;
    height: 30px;
}*/
}

@media screen and (min-width: 1620px) {
.container {width: 1410px;}

}

body.home .slider-section {
	margin-top: 104px;
}

.main-container {
	margin-top: 104px;
}

body.home .main-container {
	 margin-top: 0;
 }


/*breadcrumbs*/
#breadcrumbs{
	list-style:none;
	font-size: 13px;
	margin-bottom: 15px;
	overflow:hidden;
	display: inline-block;
}

#breadcrumbs li{
	display:inline-block;
	vertical-align:middle;
	margin-right: 10px;
	font-size: 11px;
}
#breadcrumbs li strong {
	font-weight: normal;
}

#breadcrumbs .separator{
	font-size:13px;
	font-weight:100;
	color:#ccc;
}
.content_head ul.breadcrumbs { display: inline;}/*
.content_head {padding-top: 15px;}*/
.content_head button.print_btn span {
    font-size: 13px;
}

.content_head button.print_btn {
    display: inline-table;
    margin-top:15px;
    padding: 0;
    background: none;
    color: #03553b;
    border: none;
    font-size: 16px;
    float: right;
}


.pressrel-desc p {
	font-size: 14px !important;
	font-family: futuraptbook;
	font-weight: normal;
	-webkit-font-smoothing: antialiased;
}

.home-four-block {

}

.home-block-img {
	position: relative;
	overflow: hidden;
}

.home-block-img:hover img {
	transform: scale(1.05);
	-ms-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-o-transform: scale(1.05);
}

.home-block-img img {
	width: 100%;
	-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}

.home-block-img h3 {
	position: absolute;
	top: 50%;
	width: 100%;
	text-align: center;
	color: #ffffff;
	font-family: FuturaPTBook;
	text-transform: uppercase;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.8);
	padding: 5px 10px;
	font-weight: normal;
	letter-spacing: 1px;
	font-size: 18px;
	-webkit-font-smoothing: antialiased;
}

.home-block-label {

}

.home-block-label h3 {

}


.home-posts-section .block-list.news-events {
	margin-bottom: 15px;
}

table.table.table-striped {
	margin-top: 15px;
}

table.table.table-striped tr:first-child td {
	/*font-size: 17px;*/
	/*font-family: futuraptmedium;*/
}

.no-display {
	display: none;
}

.cat_post {
    margin-bottom: 50px;
}
.ftr-col ul.toggle_content.follow-us i{
	display: inline-block;
}

     #telephone_directoryLower .table tbody tr > td,
     #telephone_directoryLower .table tbody tr > th, 
     .table.table-bordered.table-striped tr > td,
     .table.table-bordered.table-striped tr > th
                                    {
    background-color: #F2F7FC;
    color:#1a1a1a;
    font-size: 15px;
    font-family: futuraptbook;
    -webkit-font-smoothing: antialiased;
                                    }

#telephone_directoryLower .table tbody tr > th,
.table.table-bordered.table-striped tr > th
									{
	font-weight: bold;
                                    }



.page-id-46 .entry-content table, .page-id-46 .comment-content table{
	    color: #1a1a1a;
}

.a-center {
	text-align: center;
}

.pnf-search {
	margin-top: 15px;
}

.pnf-search #searchsubmit {
	background: url(images/bg-green.png) repeat-x;
	color: #ffffff;
	border: none;
	text-transform: uppercase;
	padding: 8px;
}

.pnf-search #searchsubmit:hover {

}

.no-results {
	margin-top: 50px;
}

.pnf-head {
	border-right: 1px solid #eaeaea;
}

.pnf-head h3 {
	color: #5fa638;
	font-size: 150px;
	text-align: center;
}

.pnf-cont {
	padding: 20px 0;
}

.pnf-cont h2 {
	color: #5fa638;
	font-size: 20px;
	font-family: FuturaPTHeavy;
	margin-bottom: 10px;
}

.pnf-cont p {
	margin-bottom: 10px;
}

.pnf-cont a {
	display: inline-block;
	font-family: FuturaPTHeavy;
	text-transform: uppercase;
	margin-right: 20px;
	border-right: 1px solid #666;
	padding-right: 20px;
	line-height: 12px;
}

.pnf-cont a:hover {
	color: #333333;
	text-decoration: none;
}

.pnf-cont a:last-child {
	border: none;
}


/*----*/
/*----*/

.msg-above-footer{padding:10px;background: #6fb91a;color:#fff;margin-top:13px;text-align: center;font-size: 16px;}

/*Court Cases*/
.page-template-court_cases .dataTables_wrapper{
	margin-top: 30px;
}

.master-slider .ms-slide-info .ms-info p {
     background-color: #0000007d;
     color: #fff;
}

.master-slider .ms-slide-info.ms-dir-h {
 	width:82%;
 	position: absolute !important;
 	bottom: 20% !important;
  	left: 9%;
}

@media only screen and (max-width: 768px){
	.master-slider .ms-slide-info.ms-dir-h {
    	bottom: 5%!important;
    	left: auto !important;
    	width: auto !important;
	}
}