/*
Theme Name: WICFG
Theme URI: 
Author: Stellar Blue Web Design
Author URI: http://www.stellarbluewebdesign.com/
Description: Custom theme developed for WICFG
Version: 1.0

*/

/* =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/
*/
@font-face {
    font-family: 'news_cycle';
    src: url('fonts/newscycle-regular-webfont.eot');
    src: url('fonts/newscycle-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/newscycle-regular-webfont.woff') format('woff'),
         url('fonts/newscycle-regular-webfont.ttf') format('truetype'),
         url('fonts/newscycle-regular-webfont.svg#news_cycleregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'bebas_neue';
    src: url('fonts/bebasneue-webfont.eot');
    src: url('fonts/bebasneue-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/bebasneue-webfont.woff') format('woff'),
         url('fonts/bebasneue-webfont.ttf') format('truetype'),
         url('fonts/bebasneue-webfont.svg#bebas_neueregular') format('svg');
    font-weight: normal;
    font-style: normal;

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

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;
}
body {
	color: #666;
	line-height: 18px;
	font-size: 13px;
	font-family: Arial, Helvetica, sans-serif;
}
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 {
	text-align: left;
}
h1, h2, h3, h4, h5, h6 {
	clear: both;
}
html {
	overflow-y: scroll;
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	background: #c2c9c1;
}
a {
	color: #4A9058;
}
a:focus {
	outline: thin dotted;
}
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
	display: block;
}
audio, canvas, video {
	display: inline-block;
}
audio:not([controls]) {
	display: none;
}
del {}

ins {
	text-decoration: none;
}
hr {
	border: 0;
	height: 1px;
}
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;
}

#issue-content {
	margin-left: 25px;
	margin-top: 35px;	
	width: 270px;
}

#issue-content a {
	text-decoration: none;	
}
/* 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: "";
}

.main-navigation ul li.page_item.page-item-282 {
	display: none;	
}

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

/* Small headers */
.archive-title, .page-title, .widget-title, .entry-content th, .comment-content th {}

/* Shared Post Format styling */
article.format-quote footer.entry-meta, article.format-link footer.entry-meta, article.format-status footer.entry-meta {}

/* Form fields, general styles first */
button, input, textarea {}

button, input {}

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], li.bypostauthor cite span {}

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

.menu-toggle:active, .menu-toggle.toggled-on, button:active, input[type="submit"]:active, input[type="button"]:active, input[type="reset"]:active {
	border: none;
}

li.bypostauthor cite span {
	padding: 0;
}

/* Responsive images */
.entry-content img, .comment-content img, .widget img {
	max-width: 100%;
}
img[class*="align"], img[class*="wp-image-"], img[class*="attachment-"] {
	height: auto;
}
img.size-full, img.size-large, img.header-image, img.wp-post-image {
	max-width: 100%;
	height: auto;
}

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

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

.wp-caption {
	max-width: 100%;
}
.wp-caption .wp-caption-text, .gallery-caption, .entry-caption {
	font-style: italic;
}
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;
	overflow: hidden;
}
#nav-above {}

#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 {}

/* Author profiles */
.author .archive-header {}

.author-info {
	overflow: hidden;
}
.author-description p {}

.author.archive .author-info {}

.author.archive .author-avatar {}


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

/* Body, links, basics */
html {background: url(images/background.jpg) repeat-x #c2c9c1;}

body {
	text-rendering: optimizeLegibility;
		
}
#prosperity {
	background: url(images/prosperity.png) top center no-repeat;
	height: 311px;
}

.site {
	margin-top: -311px;
	border-top: 6px solid #4A8F56;
	background: url(images/nav-background.png) repeat-x top;
	text-align: center;
}

.page-template-page-templatesfull-width-php #main, #home-page .single #main {
	margin-top: 120px;
}
#site-container {
	margin: 0 auto;
	width: 1014px;
	position: relative;
	display: block;
	text-align: left;
}

body.custom-font-enabled {}

a {
	outline: none;
}
.nav-single {
	margin: 20px 0;
}
a:hover {}
.home .entry-header {
	display: none;
}
#home-page #mid-container, .page-template-page-templatesfront2-page-php #mid-container {
	width: 1014px;
	margin-top: 100px;
	background: url(images/home-mid.png) no-repeat;
	height: 809px;
	overflow: hidden;
	position: relative;
}

#home-page #mid-container .page {
	position: absolute;
	top: 365px;
	left: 0px;
	overflow: visible;
}

#home-page #mid-container br {
	display: none;	
}
#contribute {
	display: block;
	width: 163px;
	height: 38px;
	float: right;
	margin-right: 25px;
	margin-top: 6px;
}

#interior-page #contribute-container {
	background: url(images/contribute.png) no-repeat;
	height: 45px;
	width: 1014px;
	margin-top: 120px;
}

#interior-page #contribute {
	display: block;
	width: 163px;
	height: 38px;
	float: right;
	margin-right: 25px;
	margin-top: 6px;
}
#interior-page #article-container {
	background: url(images/mid-background.png) repeat-y;
	width: 1014px;
	height: 100%;
}

#interior-page #bottom {
	background: url(images/mid-bottom.png) no-repeat;
	height: 7px;
	width: 1014px;
}
#interior-page #signup {
	background: url(images/form.png) no-repeat;
	width: 257px;
	float: right;
	min-height: 304px;
}
#interior-page #sidebar-text {
	font-size: 24px;
	line-height: 36px;
	font-family: 'bebas_neue';
	text-transform: uppercase;
	width: 250px;
	color: #4A8F56;
}
#secondary iframe {
	float: left;
	margin-top: 20px;
	margin-left: 8px;	
	border-bottom: 1px solid #aaa !important;
}
#interior-page #green-border {
	border-top: 9px solid #4A8F56;
	margin: 16px auto;
	width: 969px;
	clear: both;
	float: none;
	display: block;
	height: 16px;
	margin-bottom: 0px;
}
#home-page #signup {
	width: 230px;
	float: left;
	padding-top: 22px;
	padding-left: 27px;
	position: absolute;
	right: 22px;
	top: 42px;
}
#facebook-link {  }
#twitter-link {  }
#blog-link { }
#home-page #signup p:first-child {
	padding: 0px;	
}
#signup h2 {
	font-family: 'bebas_neue';
	font-size: 30px;
	line-height: 16px;
	text-transform: uppercase;
	padding-top: 20px;
	color: #FFF;
	font-weight: normal;
}
#sm {
	margin-top: 43px;
	margin-left: -3px;
}
.home #sm {
	margin-top: 3px;	
}
#interior-page #signup h2 {
	margin-left: 30px;
	padding-top: 26px;
}
#interior-page form#cformsform, #interior-page #sm, #interior-page form#join-the-club {
	margin-left: 30px;
}
#blog-sidebar {
	margin-top: 20px;
}
#blog-sidebar aside {
	margin-bottom: 20px;
}

#facebook, #twitter, #blogger {
	display: inline-block;
	height: 28px;
	width: 28px;
}
#facebook, #twitter {
	margin-right: 10px;
}

#slides-container {
	float: left;
	width: 712px;
	padding-top: 60px;
	margin-left: 22px;
}
.join-the-club {
	padding-top: 20px;
}
.join-the-club ol {
	list-style: none !important;
}
.join-the-club label {
	display: none;
}
.join-the-club input[type="text"], .join-the-club input[type="email"] {
	border: none;
	color: #B7B7B7;
	font-size: 12px;
	line-height: 16px;
	padding-left: 5px;
	width: 155px;
	height: 26px;
}
.join-the-club input[type="submit"] {
	font-size: 13px;
	line-height: 16px;
	color: #FFF;
	background: #4A8F56;
	border: none;
	width: 62px;
	height: 24px;
}
.join-the-club li {
	margin-top: 10px;
}
.join-the-club p {
	margin-top: 9px;
}
.cf_hidden {
	height: 1px;
}

.box {
	display: block;
	background: url(images/box-background.png);
	width: 317px;
	height: 246px;
	float: left;
	margin-top: 35px;
	overflow: hidden;
}
.box h2 {
    font-family: 'news_cycle';
	font-size: 24px;
	text-transform: uppercase;
	line-height: 16px;
	color: #FFF;
	padding-left: 25px;
	padding-top: 15px;
	font-weight: normal;
}
#blog-posts {
	margin-left: 30px;
}
#blog-posts li a {
	margin-top: 14px;	
}
#latest-news {}
#facebook-feed {}
#text {
	padding-top: 65px;
	margin-left: 50px;
	margin-right: 50px;
	color: #FFF;
	clear: both;
}
.tan {
	color: #C6B678;
	text-decoration: none;
}
#interior-page .entry-title, 
#interior-page .entry-title a, 
#interior-page .page-header, 
#interior-page .archive-title {
	font-family: 'bebas_neue';
	font-size: 34px;
	line-height: 34px;
	color: #4A8F56;
	margin-bottom: 10px;
	font-weight: normal;
}
.search article, .archive article, .category article, .blog article {
	margin-bottom: 40px;
}
.widget-title {
	color: #010101;
}
/* 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 */
.site {}

.home .site-content {
	margin-bottom: 27px;	
}

.site-content p {
	padding: 10px 0px;	
}

.site-content ul {
	margin-left: 30px;
	padding: 10px 0px;	
}

.site-content ul.lcp_catlist, .site-content .fbf_facebook_page_widget_container ul {
	padding: 35px 0px 0px 0px;	
	margin-left: 26px;
	width: 266px;
}

.site-content .box p {
	padding: 0px;	
}

.box#latest-news li {
	padding-bottom: 35px;	
}

.blog .site-content h2 {
	padding-top: 30px;
	margin-bottom: -5px;	
}

.site-content .posted {
	color: #888;
	font-size: 12px;	
	display: block;
	margin-top: -5px;
	font-family: "Times New Roman";
}

.widget-area {}

/* Header */
.site-header {
	width: 1000px;
	margin: 20px auto 0;
}

.site-header h1, .site-header h2 {
	text-align: center;
}
.site-header h1 a, .site-header h2 a {
	display: inline-block;
	text-decoration: none;
}
.site-header h1 a:hover, .site-header h2 a:hover {}

.site-header h1 {}

.site-header h2 {}

.header-image {}

/* Navigation Menu */
.main-navigation {
	font-family: 'news_cycle';
	text-align: center;
	font-size: 20px;
	line-height: 16px;
	float: right;
	margin-top: 25px;
	*position: absolute;
	*top: 15px;
	*right: 0px;
}
.main-navigation li {}

.main-navigation a {
	color: #353535;
}

.main-navigation a:hover {}

.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"] {}

/* Sidebar */
.widget-area .widget {
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
	word-wrap: break-word;
}
.widget-area .widget h3 {}

.widget-area .widget p, .widget-area .widget li, .widget-area .widget .textwidget {}

.widget-area .widget p {}

.widget-area .textwidget ul {
	list-style: disc outside;
}
.widget-area .textwidget li {}

.widget-area .widget a {}

.widget-area .widget a:hover {}

.widget-area #s {
	width: 53.66666666666%;
}

/* Footer */
footer[role="contentinfo"] {
	clear: both;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	font-size: 11px;
	color: #545454;
	text-align: center;
	padding-bottom: 50px;
	margin-top: 27px;
}
.home footer[role="contentinfo"] {
	margin-top: 0px;	
}
footer[role="contentinfo"] a {
	font-size: 11px;
	text-decoration: none;
	color: #545454;
}

footer[role="contentinfo"] a:hover {}


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

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

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

.entry-header .entry-title {}

.entry-header .entry-title a {
	text-decoration: none;
}
.entry-header .entry-format {}

.entry-header .comments-link {}

.comments-link a, .entry-meta a {}

.comments-link a:hover, .entry-meta a:hover {}

article.sticky .featured-post {}

.entry-content, .entry-summary, .mu_register {}

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

.entry-content h1, .comment-content h1 {}

.entry-content h2, .comment-content h2, .mu_register 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 {}

.entry-content p, .entry-summary p, .comment-content p, .mu_register p {}

.entry-content ol, .comment-content ol, .entry-content ul, .comment-content ul, .mu_register ul {}

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

.entry-content blockquote, .comment-content blockquote {
	font-style: italic;
}
.entry-content blockquote p:last-child, .comment-content blockquote p:last-child {
	margin-bottom: 0;
}
.entry-content code, .comment-content code {}

.entry-content pre, .comment-content pre {
	overflow: auto;
}
.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 {
	cursor: help;
}
.entry-content address, .comment-content address {
	display: block;
}
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: 12px 24px;
	margin-top: 0.857142857rem 1.714285714rem;
}
.entry-content embed, .entry-content iframe, .entry-content object, .entry-content video {}

.entry-content dl, .comment-content dl {}

.entry-content dt, .comment-content dt {}

.entry-content dd, .comment-content dd {
}
.entry-content table, .comment-content table {
	width: 100%;
}
.entry-content table caption, .comment-content table caption {}

.entry-content td, .comment-content td {}

.site-content article {
	word-wrap: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
}
.page-links {
	clear: both;
}
footer.entry-meta {}

.single-author .entry-meta .by-author {
	display: none;
}
.mu_register h2 {
	font-weight: normal;
}


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

.archive-header, .page-header {}

.archive-meta {}


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


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

article.format-aside h1 {}

article.format-aside h1 a {
	text-decoration: none;
}
article.format-aside h1 a:hover {}

article.format-aside .aside {}

article.format-aside p {}

article.format-aside blockquote:last-child, article.format-aside p:last-child {
	margin-bottom: 0;
}


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

/* Image posts */
article.format-image footer h1 {}

article.format-image footer h2 {}

article.format-image footer a h2 {}

/* Link posts */
article.format-link header {
	float: right;
}
article.format-link .entry-content {
	max-width: 80%;
	float: left;
}
article.format-link .entry-content a {}

/* Quote posts */
article.format-quote .entry-content p {}

article.format-quote .entry-content blockquote {
	display: block;
}

/* Status posts */
.format-status .entry-header {}

.format-status .entry-header header {
	display: inline-block;
}
.format-status .entry-header h1 {}

.format-status .entry-header h2 {}

.format-status .entry-header header a {}

.format-status .entry-header header a:hover {}

.format-status .entry-header img {
	float: left;
}


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

.comments-title {}

.comments-area article {}

.comments-area article header {
	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;
}
.comments-area article header cite {}

.comments-area article header time {
	text-decoration: none;
}
.comments-area article header a {
	text-decoration: none;
}
.comments-area article header a:hover {}

.comments-area article header cite a {}

.comments-area article header cite a:hover {}

.comments-area article header h4 {
	position: absolute;
	top: 0;
	right: 0;
}
.comments-area li.bypostauthor cite span {
	position: absolute;
}
a.comment-reply-link, a.comment-edit-link {}

a.comment-reply-link:hover, a.comment-edit-link:hover {}

.commentlist .pingback {}

/* Comment form */
#respond {}

#respond h3#reply-title {}

#respond h3#reply-title #cancel-comment-reply-link {}

#respond form {}

#respond form p {}

#respond form p.logged-in-as {}

#respond form label {
	display: block;
}
#respond form input[type="text"], #respond form textarea {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
}
#respond form p.form-allowed-tags {
	margin: 0;
}
.required {}


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

.entry-page-image {}

.template-front-page .site-content article {
	border: 0;
	margin-bottom: 0;
}
.template-front-page .widget-area {
	clear: both;
	float: none;
	width: auto;
}
.template-front-page .widget-area .widget li {
	list-style-type: square;
	list-style-position: inside;
}
.template-front-page .widget-area .widget li a {}

.template-front-page .widget-area .widget li a:hover {}

.template-front-page .widget-area .widget_text img {
	float: left;
}


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

.widget-area .widget ul ul {}

.widget_rss li {}

.widget_recent_entries .post-date, .widget_rss .rss-date {}

#wp-calendar {
	margin: 0;
	width: 100%;
}
#wp-calendar th, #wp-calendar td, #wp-calendar caption {
	text-align: left;
}
#wp-calendar #next {
	text-align: right;
}
.widget_search label {
	display: block;
}
.widget_twitter li {
	list-style-type: none;
}
.widget_twitter .timesince {
	display: block;
	text-align: right;
}




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

img#wpstats {
	display: block;
}


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

/* Minimum width of 600 pixels. */
@media screen and (min-width: 600px) {
	.author-avatar {
		float: left;
	}
	.author-description {
		float: right;
		width: 80%;
	}
	#site-container {
		margin: 0 auto;
		width: 1014px;
/*		overflow: hidden;	*/	
	}
	
	.site {
/*		margin: 0 auto;
		max-width: 1000px;
		overflow: hidden;
*/		
	}
	.site-content {
		float: left;
		width: 65.104166667%;
		margin: 40px 0 40px 40px;
	}
	.home .site-content {
		margin-left: 0px;
		margin-top: 0px;	
	}
	body.template-front-page .site-content, body.single-attachment .site-content, body.full-width .site-content {
		width: 100%;
	}
	.widget-area {
		float: right;
		width: 26.041666667%;
		margin: 15px 23px 15px 0;
	}
	.site-header h1, .site-header h2 {
		text-align: left;
	}
	.site-header h1 {}
	
	.main-navigation ul.nav-menu, .main-navigation div.nav-menu > ul {
		display: inline-block !important;
		width: 100%;
	}
	.main-navigation ul {
		margin: 0;
		text-indent: 0;
	}
	.main-navigation li a, .main-navigation li {
		display: inline-block;
		*display: block;
		*float: left;
		*line-height: 20px;
		*position: relative;
		text-decoration: none;
	}
	.main-navigation li a {
		white-space: nowrap;
	}
	.main-navigation li a:hover {}
	
	.main-navigation li {
		position: relative;
		margin-left: 23px;
	}
	.main-navigation li ul {
		display: none;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 100%;
		z-index: 1;
	}
	.main-navigation li ul ul {
		top: 0;
		left: 100%;
	}
	.main-navigation ul li:hover > ul {
		display: block;
	}
	.main-navigation li ul li a {
		display: block;
		white-space: nowrap;
	}
	.main-navigation li ul.children {
		margin-top: 20px;
		border: 1px solid #4A8F56;
		/*background: rgba(0,0,0,.70);*/
		background: url(images/dropdown-bck.png) repeat;
		*position: absolute;
		*margin-left: -10px;
		*margin-top: -21px;
		*border-bottom: 1px solid #4A8F56;
		*border-left: 0px;
		*border-right: 0px;
		*border-top: 0px;
		*background: none;
		*padding-top: 25px;
		*left: 0px;
		*width: 175px;
		*text-align: center;
	}
	
	.main-navigation li ul.children li {
		*background: url(images/dropdown-bck.png) repeat; 
		*border-left: 1px solid #4A8F56;	
		*border-right: 1px solid #4A8F56;
		*width: 100%;
		*text-align: center;
	}
	
	.main-navigation li ul.children:after {
		content: ' ';
		height: 0;
		position: absolute;
		width: 0;
		border: 10px solid transparent;
		margin-left: -10px;
		margin-top: -21px;
		border-bottom-color: #4A8F56;
		top: 0;
		left: 50%;
	}
	
	
	.main-navigation li ul.children li {
		margin: 0;
		padding: 0;
		text-align: center !important;
	}
	.main-navigation li ul.children li a {
		margin-left: auto;
		margin-right: auto;
		display: inline;
		color: #FFF;
		font-family: Arial, Helvetica, sans-serif;
		font-size: 14px;
		line-height: 23px;
		padding-left: 10px;
		padding-right: 10px;
		text-align: center !important;
	}
	.page-item-7 ul.children {
		margin-left: -50px;
	}
	.page-item-9 ul.children {
		margin-left: -15px;
	}
	
	.main-navigation li ul li a:hover {}
	.main-navigation .current-menu-item > a, .main-navigation .current-menu-ancestor > a, .main-navigation .current_page_item > a, .main-navigation .current_page_ancestor > a {}
	
	.current_page_item, .current_page_parent {
		border-bottom: 3px solid #4A8F56;
		padding-bottom: 5px;
	}
	.children .current_page_item {
		border-bottom: none;
	}
	.menu-toggle {
		display: none;
	}
	.entry-header .entry-title {}
	
	#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;
		width: 47.916666667%;
	}
	.template-front-page .widget-area .widget, .template-front-page.two-sidebars .widget-area .front-widgets {
		float: left;
		width: 51.875%;
	}
	.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%;
	}
	.template-front-page.two-sidebars .widget, .template-front-page.two-sidebars .widget:nth-child(even) {
		float: none;
		width: auto;
	}
	.commentlist .children {}
}

/* Minimum width of 960 pixels. */
@media screen and (min-width: 960px) {
	body {}
	
	body .site {}
	
	body.custom-background-empty {}
	
	body.custom-background-empty .site, body.custom-background-white .site {
		padding: 0;
		margin-top: 0;
		margin-bottom: 0;
		box-shadow: none;
	}
}


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

/* Plugins Used Often */

/* Cforms II */
.linklove {
	display: none;
}

/* Catlist */
.lcp_catlist, .fbf_facebook_page_widget {
	list-style: none !important;
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 30px;
}

.lcp_title a {
	font-size: 15px;
	line-height: 14px;
	font-weight: bold;
	text-decoration: none;
	color: #010101;
}
.lcp_date, .facebook_page-timestamp {
	font-family: "Times New Roman", Times, serif;
	font-size: 12px;
	line-height: 14px;
	color: #666;
	margin-bottom: 14px;
}
.lcp_date {
	color: #888;
	font-size: 12px;	
}
#facebook-feed .lcp_more {
	margin-left: 27px;
}
#latest-news .lcp_date {
	margin-bottom: 0;
	color: #888;
	font-size: 12px;
}
.lcp_date:before, .facebook_page-timestamp:before  {
	content: "Posted ";
}
.lcp_more {
	color: #4A9058;
	font-size: 13px;
	line-height: 18px;
	text-decoration: none;
	display: block;
}
#latest-news .lcp_more {
	margin-top: 0;
}
#facebook-feed p {
	padding-left: 30px;
	padding-right: 30px;
}
.fbf_facebook_page_widget_container {
	max-height: 200px;
	overflow: hidden;
}
.fbf_facebook_page_widget li {
	padding-bottom: 10px;
}
.fbf_facebook_page_widget a {
	font-size: 15px;
	line-height: 14px;
	font-weight: bold;
	text-decoration: none;
	color: #010101;
}
