/*
Theme Name: CCCC News & Blogs Oct 1,2020
Theme URI: http://www.cccc.org
Author: BBi
Author URI: http://wordpress.org/
Description: Base on twentytwelve  for WordPress 
Version: 1.1
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: twentytwelve

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/



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

/* Small headers */
.archive-title,
.page-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;
	background-image:none;
	padding:0px;
}
h1.archive-title,h1.page-title{
	font-size:21px;
	color: #41829b;
	text-transform:none;
}

.monthlist{
	margin-top:10px;
	margin-bottom:10px;
}

/* 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;
}



button,
input {
    line-height: normal;
}
textarea {
	font-size: 100%;
	overflow: auto;
	vertical-align: top;
}

/* Buttons */
.menu-toggle,

input[type="button"],
input[type="reset"],
article.post-password-required input[type=submit],
li.bypostauthor cite span {
	padding: 5px 14px 5px 14px;
	
	font-size: 12px;

margin-top: 8px;
margin-bottom: 5px;
	font-weight: bold;
    text-transform: uppercase;

	color: #50545b;
	background-color: #f3ead7;
	
	outline: none;
	-moz-border-radius: 10px;
    -webkit-border-radius: 10px;
	border-radius: 10px;
	text-indent: 0;
	



}



.menu-toggle,
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	cursor: pointer;
}
button[disabled],
input[disabled] {
    cursor: default;
}
.menu-toggle:hover,

article.post-password-required input[type=submit]:hover {
	color: #5e5e5e;
	background-color: #ebebeb;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -ms-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -webkit-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -o-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: linear-gradient(top, #f9f9f9, #ebebeb);
}
.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: none;
}
li.bypostauthor cite span {
	color: #fff;
	background-color: #21759b;
	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%;
	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,
img.wp-post-image {
	/* Add fancy borders to all WordPress-added images but not things like badges and icons and the like */
	border-radius: 3px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
	max-width:100%;
}
.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;
	font-style:italic;
}
.site-content nav a{
	color:#65666a;
}
#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%;
}
.comments-area{
margin-top:10px;
	border-top-width: 1px;
	border-top-style:dotted;
	border-top-color: #cacdd1;
	float:left;
	width:99%;
}
	
.comment{
	float:left;
	width:100%;
}
.reply{
	float:left;
	width:100%;
	text-align:right;
}
/* Author profiles */
.author .archive-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.author-info {

	overflow: hidden;
}
.author-description p {
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	text-align:center;
}
.author.archive .author-info {
	border-top: 0;

}
.author.archive .author-avatar {
	margin-top: 0;
}


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

/* Body, links, basics */

/* Assistive text */
.assistive-text,
.site .screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
}
.main-navigation .assistive-text:hover,
.main-navigation .assistive-text:active,
.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 */












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



.entry-header img.wp-post-image {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}

.entry-header .entry-format {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-weight: normal;
}
.entry-header .comments-link {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.comments-link a,
.entry-meta a,.entry-meta a:visited{
	color: #757575;
}
.comments-link a:hover,
.entry-meta a:hover {
	color: #21759b;
}
article.sticky .featured-post {
	border-top: 4px double #ededed;
	border-bottom: 4px double #ededed;
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 3.692307692;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	text-align: center;
}

.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;
	margin: 1.714285714rem 0;
	line-height: 1.714285714;
}
.entry-content h1,
.comment-content h1 {
	font-size: 21px;
	font-size: 1.5rem;
	line-height: 1.5;
}
.entry-content h2,
.comment-content h2,
.mu_register h2 {
	font-size: 18px;
	font-size: 1.285714286rem;
	line-height: 1.6;
}
.entry-content h3,
.comment-content h3 {
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.846153846;
}
.entry-content h4,
.comment-content h4 {
	font-size: 14px;
	font-size: 1rem;
	line-height: 1.846153846;
}
.entry-content h5,
.comment-content h5 {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.entry-content h6,
.comment-content h6 {
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.846153846;
}
.entry-content p,
.entry-summary p,
.comment-content p,
.mu_register p {
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	line-height: 1.714285714;
}
.entry-content ol,
.comment-content ol,
.entry-content ul,
.comment-content ul,
.mu_register ul {
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	line-height: 1.714285714;
	padding-left:0px;
}
.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;
	margin: 0 0 0 2.571428571rem;
}
.entry-content blockquote,
.comment-content blockquote {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	padding: 24px;
	padding: 1.714285714rem;
	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-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
}
.entry-content pre,
.comment-content pre {
	border: 1px solid #1D78A1;
	color: #173a5a;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	overflow: auto;
	padding: 24px;
	padding: 1.714285714rem;
	white-space:normal;
	
}
.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;
	margin: 0 0 1.714285714rem;
}
img.alignleft {
	margin: 12px 24px 12px 0;
	margin: 0.857142857rem 1.714285714rem 0.857142857rem 0;
}
img.alignright {
	margin: 12px 0 12px 24px;
	margin: 0.857142857rem 0 0.857142857rem 1.714285714rem;
}
img.aligncenter {
	margin-top: 12px;
	margin-top: 0.857142857rem;
	margin-bottom: 12px;
	margin-bottom: 0.857142857rem;
}
.entry-content embed,
.entry-content iframe,
.entry-content object,
.entry-content video {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-content dl,
.comment-content dl {
	margin: 0 24px;
	margin: 0 1.714285714rem;
}
.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;
	margin-bottom: 1.714285714rem;
}
.entry-content table,
.comment-content table {
	border-bottom: 1px solid #ededed;
	color: #757575;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	width: 100%;
}
.entry-content table caption,
.comment-content table caption {
	font-size: 16px;
	font-size: 1.142857143rem;
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.entry-content td,
.comment-content td {
	border-top: 1px solid #ededed;
	padding: 6px 10px 6px 0;
    vertical-align: top;

    
}


.read_more{
	display:block;
	float:right;
}
	
.page-links {
	clear: both;
	line-height: 1.714285714;
}
footer.entry-meta {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 13px;
	font-size: 0.928571429rem;
	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 {

}

.archive-meta {
    color: #757575;
    font-size: 70%;
    line-height: 110%;

    margin-top: 0;
    font-style: italic;
    padding-bottom: 10px;
}

/* =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;
	margin-top: 0.571428571rem;
}


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

article.format-aside h1 {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
article.format-aside h1 a {
	text-decoration: none;
	color: #4d525a;
}
article.format-aside h1 a:hover {
	color: #2e3542;
}
article.format-aside .aside {
	padding: 24px 24px 0;
	padding: 1.714285714rem;
	background: #d2e0f9;
	border-left: 22px solid #a8bfe8;
}
article.format-aside p {
	font-size: 13px;
	font-size: 0.928571429rem;
	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;
	font-size: 0.928571429rem;
	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: #21759b;
}
.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 {

}
.edit-link{
	display:inline;
}
.comments-area article header {
	margin: 0 0 10px;
	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 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: #21759b;
}
.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 li.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;
}

ol.children li {
list-style:none;
}

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: #21759b;
}
.commentlist .pingback {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}

/* Comment form */
#respond {


	float:left;
	width:99%;
}
.comment-form-comment{
	display: block;
}
.comment-form-author,.comment-form-email{
	
	display: block;
    float: left;
    width: 48%;
}
.comment-form-email{
	
}

.comment-form-url{
	display: none;
}
#respond h3#reply-title {
	
	font-size: 1.4rem;
	line-height: 1.5;
	margin: 0.785714286rem 1%;
}
#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;
	display: block;
}
#respond form p {

	margin: 0.785714286rem 1%;
}
#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;
}


/* =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, .wp-calendar {
	margin: 0;
	width: 100%;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #686868;
}


#wp-calendar caption,.wp-calendar  caption{
	text-align: left;
	font-size:14px;
}
#wp-calendar th,
#wp-calendar td{
	text-align:center;
}
#wp-calendar #prev ,.wp-calendar #prev{
	text-align: left;
	
}
#wp-calendar a,.wp-calendar a{
	
	color:#4c4d4f;
	font-weight:bold;
	font-size:120%;
}
#wp-calendar #next,.wp-calendar  #next{
	padding-right: 0;
	
	text-align: right;
}

.widget-area .multiple_ajax_calendar_widget h3.widget-title
{
	color: #6d6e71;
font-size: 18px;
text-transform: uppercase;
padding-top: 14px;
font-weight: bold;
padding-bottom:0;
padding-top:5px;
}
.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:none;
	margin: 0 auto 24px;
	margin: 0 auto 1.714285714rem;
}




/*****************************************************************
 * Main Menu display
 *****************************************************************/
 


ul li.menu-item a {
float: left;
margin: 0px;
height: 29px;
width: 100%;
padding-top: 7px;
text-align: center;
border-right: 1px solid #346078;
background-color: transparent;
display: block;
text-decoration: none;
position: relative;
cursor: hand;
cursor: pointer;
}


ul li.menu-item a, ul li.menu-item a:visited {
color: #1D78A1;
text-decoration: none;
outline: none;
}

.main-navigation li{
	margin:0px;
}
ul li.menu-item a:hover
{	background-image:url(/layout/v2020/images/gradients/v_40_trans_to_63b8d0.png);
}


.main-navigation ul li a span.menu_top_title {
display: block !important;
color: white;
font-size: 9pt;
display: block;
text-align: center;
position: relative;
}

.author-avatar {
		float: left;
}

.author-description {
}
.author-links{
	clear:both;
	width:92%;
	border-top: 1px dashed #b9b49f;
	margin-left:4%;
	margin-right:4%;
	padding-top: 11px;
    padding-bottom: 5px;
    vertical-align:top;
	font-size:12px;
	
	
}
.author-subscribe{
	clear:both;
	color:#696666;

	padding-left:8%;
	padding-right:8%;

	padding-bottom:12px;

	border-radius: 8px;
    border: solid 1px #f0f3f5;
	margin-top: 20px;
	margin-bottom: 20px;
	
	padding-top:30px;
    background-color: #F0F7FB;
    


}
.author-subscribe h2{
	font-size: 18px;
	
}
.author-info .author-subscribe{
	border-top:none;
	

	clear:both;
	padding-top:0;
	width:92%;
	padding-left:4%;
	padding-right:4%;
	background-color: #e1dfd4;
	
}


.post_footer .linkbutton{
	background-color:#ffffff;
	padding: 8px 14px 8px 14px;
    margin-right: 25px;
	
}
.post_footer a.linkbutton{
	color:#777;
}

.sharebuttons  a.addthis_button_compact{
	padding-top:5px;
}
.addthis_default_style .at15t_compact {
  margin-right: 4px;
}


.sharebuttons .at16nc {
	background-image:url(images/share_icons.jpg);
	height:25px;
	width:25px;
}
.sharebuttons .at16nc.at16t_twitter{
  background-position: 0px 0px;
}

.sharebuttons .at16nc.at16t_facebook {
  background-position: -29px 0px;
}

.sharebuttons .at16nc.at16t_linkedin{
   background-position: -56px 0px;
}
.sharebuttons .at16nc.at16t_compact {
  background:none;
  width:0px;
}


.author-links a img{
	margin-top:-6px;
	}
.author-links a{

}


 /* New */	
#pg_title_main_container {
	 background-color:#3e89a1;
	 height:auto;
}

.wrapper{
	background-color:#fff;
	padding-left:0px;
	padding-right:0px;
	padding-top:14px;
	padding-bottom:14px;
	float: left;
	position:relative;
	width: 100%;
}
.site-content {
	margin:0px;

	width:63%;
	float:left;
	margin-left:1.4%;
}
.widget-area{
	/*width:32%;
	margin:0px;
	float:right;
	margin-right:1.4%;*/
	
}

.nb_home_col1{
	float:left;
	width:10.48%;
}
.nb_home_col1 img{
	width:100%;
}

.nb_home_col2{
	float:left;
	width:4.66%;
	background-image: url(images/nb_home_col2_bk.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height:300px;
}
.nb_home_col3{
	float:left;
	width:84%;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 0px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #e0e0e2;
	border-right-color: #e0e0e2;
	border-bottom-color: #e0e0e2;

}

.nb_home_c2{
	float:left;
	width:89%;
	position:relative;
	overflow:hidden;
	
}
.author .nb_home_c2,
.author-info .nb_home_c2{
	width:100%;
}
.nb_home_c21{
    position:absolute;
	left:0px;
	top:0px;
	width:4.68%;
}
.nb_home_c21 img{
	width:100%;
}
.nb_home_c22{
	margin-left:4.68%;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 0px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #e0e0e2;
	border-right-color: #e0e0e2;
	border-bottom-color: #e0e0e2;
	float:left;
	width:95%;
}

.author .post .nb_home_c22{
	border:#e0e0e2 solid 1px;
	width:98%;
	margin-left:1%;
	
}
.nb_home_c22_in{
	background-color:#e9eef3;

	margin-top:5px;
	margin-bottom:5px;
	margin-left:2%;
	margin-right:%2;
	float:left;
	width:96%;
}

.author-info .nb_home_c22_in{
	background-color:#e1dfd4;
	
}

.author-info .author-avatar img{
	margin-right:15px;
	
}

.ftitle{
text-transform:uppercase;
font-size:15px;
font-weight:bold;
padding-top:5px;

	

}
.entry-header .entry-title {
	font-size: 20px;
	line-height: 1.2;
	text-transform:none;
	font-weight: normal;
	background-image: none;
	margin-top: 0px;
	padding-top: 6px;
	padding-bottom: 2px;
	color:#41829b;
}

.nb_home_c22_in .entry-header .entry-title {
	font-size: 20px;
	line-height: 1.2;
	text-transform:none;
	font-weight: normal;
	background-image: none;
	margin-top: 0px;
	padding-top: 6px;
	margin-left: 3%;
	margin-right: 3%;
	padding-bottom: 2px;
}

.entry-header .entry-title a {
	text-decoration: none;
	color:#41829b;
}


.entry-meta {
	clear: both;
}
 .entry-meta{
	border-bottom-width: 1px;
	border-bottom-style:dotted;
	border-bottom-color: #cacdd1;
	padding-bottom:8px;
	color: #757575;
}
.entry-meta .sharebuttons {

margin: 0px;
padding: 7px 14px 1px 14px;
cursor: pointer;
background-color:#ffffff;
color: rgb(80, 84, 91);
outline: none;
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border: 1px solid white;

float:right;
text-align:left;

}

.post_footer{
	border-top-width: 1px;
	border-top-style:dotted;
	border-top-color: #cacdd1;
	text-align:right;
	width:100%;
	display:block;
	float:left;
	clear:both;


}
.nb_home_c22_in  .entry-meta{
	margin-left: 3%;
	margin-right: 3%;
}

.entry-content,
.entry-summary,
.mu_register {
	line-height: 1.714285714;
}
.nb_home_c22_in .entry-summary{
	margin-left: 3%;
	margin-right: 3%;
	

}
.entry-content{
	padding-top:10px;
}
.entry-content p,.entry-content ol,.entry-content ul,.entry-content h2,.entry-content h3{
	color:#173a5a;
	text-transform:none;
	
	word-wrap:break-word;
	word-break:break-word;
}
.entry-content div{
	color:#173a5a;
}
.entry-content .two_col_row{
	margin-top:0;
}

.entry-content .two_col_row p{
	margin-top:0;
	margin-bottom:5px;
}
.nb_home_c22_in .entry-summary p{
	font-style:italic;
	margin: 0px;
    margin-top: 8px;
	padding-bottom: 15px;
}
.entry-summary .linkbutton{
	
	bottom:5px;
	right:3%;
	background-color:#fff;
	color:#65666a;
	font-style:normal;
	padding: 1px 14px 1px 14px;
	float:right;
}

.author-description .linkbutton{
	background-color:#fff;
	padding: 1px 14px 1px 14px;
	color:#3c3d42;
}
.seriesbox img{
	display:none;
}
.seriesbox .center a{
	font-weight:normal;
	color: #2cafc8;
}
.site-content article {

	padding-bottom: 24px;
	padding-bottom: 1.714285714rem;
	word-wrap: break-word;
	/*-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto; */
	float:left;
	width:100%;
}

.single #content,.page #content,.one_post {
background-color: #e9eef3;
padding-left: 3%;
padding-right: 3%;
padding-top: 10px;
padding-bottom: 10px;
width: 94%;
float: left;

}
.one_post{
	margin-bottom:20px;
}

.widget-area #g2_block_4 {
float:none;
width: 100%;
padding-left: 0px;
height: 62px;
padding-top: 14px;
margin-right:0;
margin-top: 0px;
background-color: #e1dfd4;
margin-bottom:0px;
}


.widget-area  .ui-corner-all {
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
border-radius: 0px;
}
.widget-area .ui-widget-content {
border:none;
background-image:none;
background-color:#EFECF0;
color: #fff;
}




.widget-area .ui-tabs {
	padding: 10px 7% 10px 7%;
	

}
.widget-area .ui-tabs h2{
	text-transform:uppercase;
	margin: 0px;
padding: 0px;
padding-top: 0px;
padding-bottom: 10px;
font-weight: normal;
	}
	.widget-area .ui-tabs{
		margin-top:14px;
		
	}
#tabs_accordion{
	position: relative;
}
.widget-area #tabs_accordion .ui-accordion-content {
top: 32px;
border-top: 1px solid #d6b579;
padding-top: 0px;
padding-bottom: 10px;
width: 100%;
padding-left: 0;
padding-right: 0;
color: #35474f;
background-color: #EFECF0;
	position: absolute;
font-size: 14px;

}

.widget-area #tabs_accordion h3.ui-accordion-header {
position: relative;
float: left;
z-index: 100;
padding-left: 5px;
padding-top: 13px;
padding-bottom: 0px;
padding-right: 5px;
margin-left: 0px;
margin-right: 7px;
margin-bottom: 0px;
height: 33px;
border: 1px solid #cacaca;
-moz-border-radius: 10px 10px 0px 0px;
-webkit-border-radius: 10px 10px 0px 0px;
border-radius: 10px 10px 0px 0px;
color: #00507c;
cursor: pointer;
white-space: pre-wrap;
text-transform: uppercase;
font-size: 12px;
}


.widget-area .side_box{
	margin-top:21px;
	padding: 25px 7% 10px 7%;
	background-color: #EFECF0;
	position: relative;
	border-radius: 8px;
	margin-bottom: 21px;
	
}



.widget-area .side_box.bkcolor{
	background-color: #e1dfd4;
}
.widget-area h2{
	font-size: 18px;
	padding-bottom: 11px;
}
.side_box h2{
	/*color:#fff;*/
}
.widget-area #my_pages{
	margin-top:14px;
	background-color: #3e89a1;
	padding-top:10px;
	padding-left: 7%;
	padding-right: 7%;
	padding-bottom: 10px;
	color: #f6f2f6;
	margin-bottom: 20px;
	background-image:url(images/mypages_bk.jpg);
	background-repeat: no-repeat;
	background-position: right top;
		border-radius: 8px;
	
}
	
.widget-area #my_pages li {
  margin-top:5px;
  border-top:none;
  background-image:none;
  color:#fff;
  padding: 0;
  margin: 0;
  width:60%;
  padding-bottom: 2px;
 
  
}
.widget-area #my_pages li+li{
  border-top:1px dotted #fff;
}
.widget-area #my_pages .linkbutton{
	
	-moz-box-shadow:none;
	-webkit-box-shadow:none;
	box-shadow:none;
    color: #fff;
}

.widget-area .ui-widget-header {
	background-image:none;
	background-color:transparent;
	border:none;
}


.widget-area  .ui-state-default, .widget-area  .ui-widget-content .ui-state-default, .widget-area  .ui-widget-header .ui-state-default {
  	background-image:none;
	background-color:transparent;
    border: 1px solid #d6b579;
		-moz-border-radius:10px 10px 0px 0px;
    -webkit-border-radius: 10px 10px 0px 0px;
    border-radius: 10px 10px 0px 0px;
  
}




.widget-area .ui-state-active, .widget-area .ui-widget-content .ui-state-active,.widget-area .ui-widget-header .ui-state-active {
	background-image:none;
	background-color:transparent;
    border: 1px solid #fff;
	-moz-border-radius:10px 10px 0px 0px;
    -webkit-border-radius: 10px 10px 0px 0px;
    border-radius: 10px 10px 0px 0px;
    color: #fff;

}
.widget-area  .ui-tabs .ui-tabs-nav {
    margin: 0;
	padding:0px;

}


.widget-area .ui-state-default a, .widget-area .ui-state-default a:link, .widget-area .ui-state-default a:visited {
    color: #d6b579;
	padding-top:10px;
	padding-bottom:15px;
	font-size:12px;
	padding-left:7px;
	padding-right:7px;
	line-height:100%;
	text-align: center;
   
}




.widget-area .ui-state-active a,.widget-area .ui-state-active a:link, .widget-area .ui-state-active a:visited {
    color: #FFFFFF;
	padding-top:10px;
	padding-bottom:15px;
	line-height:100%;
	font-size:12px;
	padding-left:7px;
	padding-right:7px;
	text-align: center;

}



.widget-area .ui-widget-content .ui-tabs-nav .first_tab a{
	display:block;
	padding-left:0px;
    padding-right:7px;
	
}
.widget-area .ui-widget-content .ui-tabs-nav .first_tab{
	border-left:none;
	-moz-border-radius:0px 10px 0px 0px;
    -webkit-border-radius: 0px 10px 0px 0px;
    border-radius: 0px 10px 0px 0px;
	
}

.widget-area .ui-widget-content .ui-tabs-nav .first_tab a{
	display:block;
	padding-left:0px;
    padding-right:7px;
	
}



.widget-area  #tabs_accordion h3.first_tab{
	border-left:none;
	-moz-border-radius:0px 10px 0px 0px;
    -webkit-border-radius: 0px 10px 0px 0px;
    border-radius: 0px 10px 0px 0px;
}

.widget-area  #tabs_accordion h3.last_tab{
	border-right:none;
	-moz-border-radius:10px 0px 0px 0px;
    -webkit-border-radius: 10px 0px 0px 0px;
    border-radius: 10px 0px 0px 0px;
	float:right;
	margin-right:0;
}

.widget-area #tabs_accordion h3.ui-accordion-header-active,
.widget-area #tabs_accordion h3.ui-accordion-header-active:focus {
/*color: #fff;*/
border-top: 1px solid #fff;
border-right: 1px solid #fff;
border-left: 1px solid #fff;
outline: none !important;
font-weight: bold;
}



.widget-area #tabs_accordion h3.first_tab.ui-accordion-header-active,
.widget-area #tabs_accordion h3.first_tab.ui-accordion-header-active:focus {
	border-left:none;
}

.widget-area #tabs_accordion h3.last_tab.ui-accordion-header-active,
.widget-area #tabs_accordion h3.last_tab.ui-accordion-header-active:focus {
	border-right:none;
	
}

.widget-area .ui-widget-content .ui-tabs-nav .last_tab{
	border-right:none;
	-moz-border-radius:10px 0px 0px 0px;
    -webkit-border-radius: 10px 0px 0px 0px;
    border-radius: 10px 0px 0px 0px;
	float:right;
	margin-right:0;
	
}
.widget-area .ui-widget-content .ui-tabs-nav .last_tab a{
	padding-right:0px;
    padding-left:7px;
}


/* Sidebar */
.widget-area .widget {
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
	margin-bottom:0;

	word-wrap: break-word;
}
.widget-area .widget h3 {
	margin:0;
	padding-bottom:14px;
	padding-top:12px;
	color: #46484f;
	font-size: 18px;
	text-transform: uppercase;
	font-weight: bold;
}
.widget-area .widget p,
.widget-area .widget li,
.widget-area .widget .textwidget {
	
}
.widget-area .widget li{
	list-style:none;
	margin:0px;
	padding-top:5px;
	padding-bottom:5px;
	
/*	background-image:url(images/li_arrow.png);
    background-repeat: no-repeat;
    background-position: 2px 10px; */
    padding-left: 10px; 
}


.widget-area .widget li+li{
	border-top-width: 1px;
	border-top-style:dashed;
	border-top-color: #cacaca;
}



/*.widget-area .widget li:before
{
content:">  ";
}*/

.widget-area .widget ul{
	margin:0px;
	padding:0px;
}
.widget-area .ui-tabs .ui-tabs-panel {
	padding:0px;
	margin:0px;
}

.widget-area .widget p {
	margin-bottom: 0;

}
.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: #fff;*/
}




.widget-area .widget .monthlist li{
	display:inline;
	border:none;
	color:#fff;
	font-size:12px;
	background-image:none;
	padding-left:0;
	
}
.widget-area .widget .monthlist li:after {
	content:" / ";

}
.widget-area .widget .monthlist li:last-child:after {
	content:" ";

}
.widget-area .widget .monthlist li:before {
		content:"";
}
.widget-area .widget a:hover {
	
}


.widget-area #archives{
	background-color:#939536;

 	background-image: url(images/archive_bk.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	padding-top: 110px;
	padding-left: 7%;
	padding-right: 7%;
	padding-bottom: 10px;
	margin-top:14px;
	margin-bottom:0px;
}

.widget-area #about_blogs{
	background-image: url(images/about_blogs_bk.jpg);
	background-repeat: no-repeat;
	background-position: 7% 10px;
	background-color:#3e89a1;
	padding-top: 65px;
	padding-left: 7%;
	padding-right: 7%;
	padding-bottom: 14px;
	margin-top:14px;
	color:#d4dfe7;
	margin-bottom:0px;
	font-style:italic;
}

.main_title a{
	font-weight:bold;
	text-transform:uppercase;
	font-style:normal;
}
.sub_title{
	
}
.sub_title a{
	text-decoration:underline;
	text-transform:none;
	font-style:normal;
	
}

.more_lines{
	border-top-width: 1px;
border-top-style: dashed;
border-top-color: #7bafbf;
margin-top:10px;
padding-top:7px;
}

.widget-area .widget .subscribe_title{
	color:#696666;
	
	
}
.widget-area .widget .subscribe_title i{
	color:#46484f;
}
.widget-area #events{
	background-color:#3e89a1;

 	background-image: url(images/event_bk.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	padding-top: 110px;
	padding-left: 7%;
	padding-right: 7%;
	padding-bottom: 10px;
	margin-top:14px;
	color:#f6f2f6;
	margin-bottom:0px;
}

.widget-area #post_calendar{
	background-color:#e1dfd4;

 /*	background-image: url(images/event_bk.jpg); 
    padding-top: 110px;*/
	background-repeat: no-repeat;
	background-position: right top;
	
	padding-left: 7%;
	padding-right: 7%;
	padding-bottom: 10px;
	margin-top:14px;
	color:#f6f2f6;
	margin-bottom:0px;
}
.side_title{
	color:#6d6e71;
	font-size:18px;
	text-transform:uppercase;
	padding-top:14px;
	font-weight:bold;
	
}
.multiple_ajax_calendar_widget tr+tr,
#post_calendar tr+tr{
	border-top-width: 1px;
border-top-style:dashed;
border-top-color: #989a9c;
	
}
.ev_title{
	font-size:14px;
	text-transform:uppercase;
	color:#fff;
}
.ev_description{
	font-style:italic;
 
}
.widget-area .widget .ev_description p{
	margin:0px;
	padding:0px;
	font-style:normal;
}

.ev_more_links{
	text-align:right;
	
}
#events .linkbutton{

	background-color:#699aaf;
	padding: 2px 14px 2px 14px;
	margin-right:0px;
}
#events hr{

	margin:0px;
	padding:0px;
	margin-top:10px;
	padding-bottom:10px;
	height:0px;
	border-top-width: 1px;
	border-top-style: dashed;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #7bafbf;
}
.widget-area .widget ul.year_archive{
	border-top-width: 1px;
	border-top-style: dashed;
	border-top-color: #b4b571;
	padding-top:6px;

}
.archive_subtitle{
	font-weight:bold;
	font-size:110%;
}

.entry-content a{
	text-decoration:underline;
}
.seriesbox {
	float: right;
   
    color: #2cafc8;
    text-align: left;
    font-size: 16px;
    font-family: basic-sans, sans-serif;
    margin: 0px 22px;
    padding: 20px 20px;
    border: none;
    border-bottom: none;
    width: 40%;
  
    z-index: 1000;
    position: relative;
    background-color: #f0f7fb;
}

.entry-content .seriesbox ul li:before {
    content: "";
   
}
li.serieslist-li-current{
	color: #00507c;
	/*border-bottom: solid 1px #f0f3f5;
    padding-top: 1rem;
    padding-bottom: 1rem;*/
}

ul.serieslist-ul{
	    padding-left: 0px;
	    margin-bottom: 0px;
}
.entry-content ul.serieslist-ul li{
	margin-left:19px;
	padding-left:0;
	list-style: decimal;
	
	
}
.sidebar ul.serieslist-ul li a{
    color: #2cafc8;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
	padding-bottom: 1rem;
	padding-top: 14px;
	margin-bottom: 0px !important;
}

.seriesbox .center{
	
    text-align: left;
    padding-left: 0px;
    padding-bottom: 0px;
	
	
    font-size: 17px;
    color: #00507c;
    line-height: 1.13;
    margin-bottom: 24px;
    font-weight: normal;

}
 
.seriesbox .center::before { 
    content: "Series: ";
}

.seriesbox .center br{
	display:none;
}


.entry-content .wp-caption {
   width: auto !important;
}

.powerpress_player .mejs-audio{
	width:50% !important;
}
.widget-area .text_box{
	background-color:#3e89a1;
}
.user_bioinfo p{
	font-size:90%;
	
	}
.embed-youtube iframe{
	width:560px;
	height:315px;
	
}



/* =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;
	}
}

@media (max-width: 480px) {
	.accordion .accordion-item .accordion-title:before
	{
		content: "" !important;
	}
 .comment-form-author, .comment-form-email {
   
    width: 98%;
}
	  .smallerscreen_hide{
    display: none;
     }

	
}


.template-blog-post section.hero .content-container p.subtext a{
    font-size: 18px;
    color: #2cafc8;
}
.template-blog-post section.hero .content-container p.copy a {
    font-size: 16px;
    color: #00507c;
}
.hero .content-container p.tags a:first-of-type {
    margin-right: 0px;
}

.author-card .meta img {
    height: 48px;
    width: 48px;
    border-radius: 50px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-right: 12px;
}
.postmeta img{
     height: 48px;
    width: 48px;
    border-radius: 50px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-right: 12px;
}

.postmeta .date{
    font-size: 14px;
    color: #35474f;
    opacity: .5;
}

.tabs-content{
	display: flex;
 -ms-flex-wrap: wrap;
 flex-wrap: wrap;
}
 .author-card {
  padding: 30px;
  background-color: rgba(0, 80, 124, 0.05);
  margin-bottom: 24px;
  border-radius: 8px; }
   .author-card .meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
     .author-card .meta .author {
      height: 48px;
      width: 48px;
      border-radius: 50px;
      -o-object-fit: cover;
         object-fit: cover;
      margin-right: 12px; }
     .author-card .meta p {
      margin-bottom: 0;
      font-size: 16px;
      line-height: 1.13; }
     .author-card .meta span {
      opacity: 0.5;
      font-size: 14px;
      color: #00507c; }
   .author-card .contact {
    margin-top: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end; }
     .author-card .contact a {
      margin-right: 8px; }
       .author-card .contact a img {
        height: 26px;
        width: 26px; }
     .author-card .contact p {
      margin-bottom: 0; }
       .author-card .contact p a {
        font-size: 12px;
        color: #2cafc8; }



.pagination .page-numbers{
	 font-size: 14px;
    border: solid 1px #00507c;
    border-radius: 4px;
    height: 36px;
    width: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 7px;
    color: #00507c;
    font-weight: bold;
    cursor: pointer;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
	background: none;
	background-color: transparent;
	
}
.pagination .next.page-numbers{
	width:auto;
}
.pagination .prev.page-numbers{
	width:auto;
	
}
.error{
	color: coral;
	
}
.hero .image-container img {
overflow: hidden;
    border-radius: 18px;	
}

.ccccad_sidebox img {

    border-radius: 8px;	
}

.post .ccccad_box {
      margin-bottom: 1.8%;
}

.imagecaption{
    text-align: right;
    font-size: 12px;
    font-style: italic;
    
}
/*.post .entry-content img:first-child{
	display: none;
}*/
.alertmsg{
	font-size:15px;
    padding:7px;
	color:#000;
    background-color:#FFC;
	text-align:center;
	font-weight:bold;
}

#shares {
    display: none;
    position: fixed;
    left: 50%;
}
.share-list {
    font-size: 14px;
    line-height: 1.714285714286em;
    letter-spacing: .025em;
    color: #fff;
}
.share-list li{
   
    padding-bottom: 7px;
}