/*
Theme Name: Minimal Maranatha
Theme URI: http://www.mbbc.edu
Author: Christopher Harper
Author URI: http://www.mbbc.edu
Description: A simple responsive theme for Maranatha Baptist Bible College, based on the Minimal Church theme by Jack Lamb.
Version: 1.0.1
License: GNU General Public License
License URI: license.txt

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.

Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
and Blueprint http://www.blueprintcss.org/
*/


/* =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, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
html {
	font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
	overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
	-webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
	-ms-text-size-adjust: 100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}
body {
	background: #fff;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}
ol, ul {
	list-style: none;
}
table { /* tables still need 'cellspacing="0"' in the markup */
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	font-weight: normal;
	text-align: left;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
a:focus {
	outline: thin dotted;
}
a:hover,
a:active { /* Improves readability when focused and also mouse hovered in all browsers people.opera.com/patrickl/experiments/keyboard/test */
	outline: 0;
}
a img {
	border: 0;
}


/* =Global
----------------------------------------------- */
body {
	background: url(images/bk-textile.png) repeat;
	background-color: #060606;
	font-family: "Source Sans Pro", sans-serif;
}

body,
button,
input,
select,
textarea {
	color: #666;
	font-family: "Source Sans Pro", sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.5;
}

/* Headings */
h1,h2,h3,h4,h5,h6 {
	clear: both;
	font-family: "Source Sans Pro", sans-serif;
}
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

/* Text elements */
p {
	margin-bottom: 1.5em;
}
ul, ol {
	margin: 0 0 1.5em 2em;
}
ul {
	list-style: disc;
}
ol {
	list-style: decimal;
}
ul ul, ol ol, ul ol, ol ul {
	margin-bottom: 0;
	margin-left: 1.5em;
}
dt {
	font-weight: bold;
}
dd {
	margin: 0 1.5em 1.5em;
}
b, strong {
	font-weight: bold;
}
dfn, cite, em, i {
	font-style: italic;
}
blockquote {
    margin: 0px 1.5em;
    border-left: 3px solid #3685b1;
    padding-left: 1em;
}

address {
	margin: 0 0 1.5em;
}
pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 1.5rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	padding: 1.6em;
	overflow: auto;
	max-width: 100%;
}
code, kbd, tt, var {
	font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}
abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}
mark, ins {
	background: #fff9c0;
	text-decoration: none;
}
sup,
sub {
	font-size: 75%;
	height: 0;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	bottom: 1ex;
}
sub {
	top: .5ex;
}
small {
	font-size: 75%;
}
big {
	font-size: 125%;
}
figure {
	margin: 0;
}
table {
	margin: 0 0 1.5em;
	width: 100%;
}
th {
	font-weight: bold;
}
button,
input,
select,
textarea {
	font-size: 100%; /* Corrects font size not being inherited in all browsers */
	margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
	vertical-align: baseline; /* Improves appearance and consistency in all browsers */
	*vertical-align: middle; /* Improves appearance and consistency in all browsers */
}
button,
input {
	line-height: normal; /* Addresses FF3/4 setting line-height using !important in the UA stylesheet */
	*overflow: visible;  /* Corrects inner spacing displayed oddly in IE6/7 */
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid #ccc;
	border-color: #ccc #ccc #bbb #ccc;
	border-radius: 3px;
	background: #fafafa; /* Old browsers */
	background: -moz-linear-gradient(top,  #fafafa 60%, #e6e6e6 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(60%,#fafafa), color-stop(100%,#e6e6e6)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #fafafa 60%,#e6e6e6 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #fafafa 60%,#e6e6e6 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #fafafa 60%,#e6e6e6 100%); /* IE10+ */
	background: linear-gradient(top,  #fafafa 60%,#e6e6e6 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fafafa', endColorstr='#e6e6e6',GradientType=0 ); /* IE6-9 */
	box-shadow: inset 0 2px 1px #fff;
	color: rgba(0,0,0,.8);
	cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
	-webkit-appearance: button; /* Corrects inability to style clickable 'input' types in iOS */
	font-size: 12px;
	font-size: 1.4rem;
	padding: 1.12em 1.5em .88em;
	text-shadow: 0 1px 0 rgba(255,255,255,.5);
}
button:hover,
html input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	background: #f5f5f5; /* Old browsers */
	background: -moz-linear-gradient(top,  #f5f5f5 60%, #dcdcdc 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(60%,#f5f5f5), color-stop(100%,#dcdcdc)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #f5f5f5 60%,#dcdcdc 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #f5f5f5 60%,#dcdcdc 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #f5f5f5 60%,#dcdcdc 100%); /* IE10+ */
	background: linear-gradient(top,  #f5f5f5 60%,#dcdcdc 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#dcdcdc',GradientType=0 ); /* IE6-9 */
	border-color: #bbb #bbb #aaa #bbb;
}
button:focus,
html input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
html input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: #aaa #bbb #bbb #bbb;
	box-shadow: inset 0 2px 3px rgba(0,0,0,.15);
	box-shadow: inset 0 2px 2px rgba(0,0,0,.15);
}
input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box; /* Addresses box sizing set to content-box in IE8/9 */
	padding: 0; /* Addresses excess padding in IE8/9 */
}
input[type="search"] {
	-webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
	box-sizing: content-box;
}
input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
	-webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
	border: 0;
	padding: 0;
}
input[type=text],
input[type=email],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
}
input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
	color: #111;
}
input[type=text],
input[type=email] {
	padding: 3px;
}
textarea {
	overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
	padding-left: 3px;
	vertical-align: top; /* Improves readability and alignment in all browsers */
	width: 98%;
}
/* Clearfix ----------- */

/* Some clearfix code from HTML5 Boilerplate */
.clearfix:before, .clearfix:after {
	content: "\0020";
	display: block;
	height: 0;
	visibility: hidden;
}

.clearfix:after {
	clear: both;
}

.clearfix {
	zoom: 1;
}

/* Links */
a, a:visited {color: #46add7;}
a:hover, a:focus {color: #3685b1;}

/* Alignment */
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}
.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}
.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto;
}

/* Text meant only for screen readers */
.assistive-text {
	clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
}
/* Header */
#masthead {
	border-top: solid #3685b1 5px;
}
hgroup {
	width: auto;
	float: left;
        padding: 2% 2%;
}
hgroup img {
	max-width: 100%;
	height: auto;
	margin-top: 2%;
}
.site-title a {
	font-size: 1.7em;
	text-decoration: none;
}
.site-description {
	font-size: 1em;
}
#header-image {
        margin: 0;
}
#header-image img {max-width: 100%; height: auto;}

searchgroup {
    float: right;
    margin: 5%;
}

/* =Menu
----------------------------------------------- */

.main-navigation {
    position: relative;
	z-index: 9999;
    padding: 0px 0 0 2%;
    margin: 0;
    float: left;
	width: 98%;
	background: url(images/bk-diagonal.png) repeat;
	background-color: #3685b1;
	border-top: 1px solid #9a9a99;
}

.main-navigation-data {
}

.main-navigation ul,
.main-navigation ul * {
	margin: 0;
	padding: 0;
	list-style: none;
}

.main-navigation ul {
	margin-bottom: 0;
	line-height: 1.0;
}

.main-navigation ul ul {
	position: absolute;
	top: -999em;
	width: 10em;
}

.main-navigation ul ul li {
	width:100%;
}

.main-navigation ul li:hover > ul {
	display: block;
}

.main-navigation ul li:hover {
	visibility: inherit;
	background: #ededed;
}

.main-navigation ul li {
	float: left;
	position: relative;
	word-wrap: break-word;
}

.main-navigation ul li li {
	background: none;
}

.main-navigation ul li:hover ul,
.main-navigation ul li.sfHover ul {
	left: 0px;
	top: 50px;
	z-index: 200;
}

.main-navigation ul li:hover li ul,
.main-navigation ul li.sfHover li ul {
	top: -999em;
}

.main-navigation ul li li:hover ul,
.main-navigation ul li li.sfHover ul {
	left: 10em;
	top: 0px;
}

.main-navigation ul li li:hover li ul,
.main-navigation ul li li.sfHover li ul {
	top: -999em;
}

.main-navigation ul li li li:hover ul,
.main-navigation ul li li li.sfHover ul {
	left: 10em;
	top: 0px;
}

.main-navigation ul a, .main-navigation ul a:visited {
	color: #ffffff;
}

.main-navigation ul li:hover,
.main-navigation ul li.sfHover,
.main-navigation ul a:focus,
.main-navigation ul a:hover,
.main-navigation ul a:active,
.main-navigation ul li.current a,
.main-navigation ul li.current-cat a,
.main-navigation ul li.current_page_item a,
.main-navigation ul li.current-menu-item a,
.main-navigation ul li.current-post-ancestor a,
.main-navigation ul li.current_page_parent a,
.main-navigation ul li.current-category-parent a,
.main-navigation ul li.current-category-ancestor a {
	color: #ededed!important;
}

/** Top Level Anchors */
.main-navigation ul a,
.main-navigation ul a:visited,
.main-navigation ul a:hover {
	display: block;
	font-size: 0.9em;
	position: relative;
	padding: 18px 17px;
	text-transform: uppercase;
	text-decoration: none;
}

.main-navigation ul ul.sub-menu li a,
.main-navigation ul ul.sub-menu li a:visited,
.main-navigation ul ul.sub-menu li a:hover {
	padding-left: 14px;
	color: #666!important;
}

/** Nested Anchors */
.main-navigation ul ul.sub-menu a,
.main-navigation ul ul.sub-menu a:visited,
.main-navigation ul ul.children a,
.main-navigation ul ul.children a:visited {
	padding: 12px 12px 12px 16px;
	border-top: solid #eee 1px;
	text-transform: none;
}

.main-navigation ul li li,
.main-navigation ul li.current ul li a,
.main-navigation ul li.current-cat ul li a,
.main-navigation ul li.current_page_item ul li a,
.main-navigation ul li.current-menu-item ul li a,
.main-navigation ul li.current-post-ancestor ul li a,
.main-navigation ul li.current_page_parent ul li a,
.main-navigation ul li.current-category-parent ul li a,
.main-navigation ul li.current-category-ancestor ul li a  {
	background: #fff;
}

/** Global Anchors Hover */
.main-navigation ul li:hover,
.main-navigation ul li.sfHover,
.main-navigation ul a:focus,
.main-navigation ul a:hover,
.main-navigation ul a:active,
.main-navigation ul li.current a,
.main-navigation ul li.current-cat a,
.main-navigation ul li.current_page_item a,
.main-navigation ul li.current-menu-item a,
.main-navigation ul li ul li.current-menu-item a,
.main-navigation ul li.current-post-ancestor a,
.main-navigation ul li.current_page_parent a,
.main-navigation ul li.current-category-parent a,
.main-navigation ul li.current-category-ancestor a {
	color: #3685b1;
	background: rgba(0,0,0,.1);
}
.main-navigation ul ul.sub-menu,
.main-navigation ul ul.children {
	-moz-box-shadow: 0 0px 6px rgba(0,0,0,0.1);
	-webkit-box-shadow: 0 0px 6px rgba(0,0,0,0.1);
	box-shadow: 0 0px 6px rgba(0,0,0,0.1);
}
/** Nested Anchors Hover */
.main-navigation ul ul.sub-menu li:hover,
.main-navigation ul ul.sub-menu li.sfHover,
.main-navigation ul ul.sub-menu a:focus,
.main-navigation ul ul.sub-menu a:hover,
.main-navigation ul ul.sub-menu a:active,
.main-navigation ul ul.children li:hover,
.main-navigation ul ul.children li.sfHover,
.main-navigation ul ul.children a:focus,
.main-navigation ul ul.children a:hover,
.main-navigation ul ul.children a:active {
	opacity: 1;
	background: #ededed;
}

/** Menu First Child */
.main-navigation ul ul.sub-menu li:first-child,
.main-navigation ul ul.children li:first-child {
	border-top: solid #3685b1 5px;
}

/** Menu Last Child */
.main-navigation ul ul.sub-menu li:last-child,
.main-navigation ul ul.children li:last-child {
	border-bottom: solid #eee 1px;
}

/* Small menu */
.menu-toggle {
	cursor: pointer;
	margin: 0;
    padding: 8px;
	text-align: center;
    font-weight: bold;
	color: #fff!important;
	background: #3685b1;
}
.main-small-navigation .menu {
	display: none;
}
.main-small-navigation ul,
.main-small-navigation ul * {
  display: block;
  text-decoration: none;
  background: transparent;
  margin: 0 0 3px 0;
  padding: 2px;
}
.main-small-navigation ul.sub-menu {
    display:none!important;
}
/* Social Menus Links */
.social-menu {float: right;}
.social-menu span {display:none;}
.social-menu li .icon-large[class^="icon-"], .social-menu li .icon-large[class*=" icon-"] {
    width: 1.875em;
    line-height: 0;
}
.main-navigation .social-menu ul a, .main-navigation .social-menu ul a:visited {
    padding: 18px 7px;
}

/*
 * Slideshow
 */
.slideshow {
	margin: 0 0;
	position: relative;
}

.home .slideshow {
	margin: 0 0 0 0;
}

#content .flexslider {
	margin: 0 0 15px 0 !important;
}

.slideshow li, #content .flexslider li, #content .flexslider ol {
	list-style: none !important;
	list-style-type: none !important;
}

#content .flexslider ol {
	padding-bottom: 5px !important;
	margin-bottom: 0 !important;
}

#content .flexslider .slides {
	margin: 0;
}

/* FlexSlider Theme------------------*/

.flexslider { min-height: 100px; border: 0 !important; margin: 0!important; background: transparent; border: none; position: relative; -webkit-border-radius: 0 !important; -moz-border-radius: 0 !important; -o-border-radius: 0!important; border-radius: 0!important; box-shadow: none !important; -webkit-box-shadow: none!important; -moz-box-shadow: none!important; -o-box-shadow: none!important; zoom: 1;}
.flexslider .slides {zoom: 1; margin: 0 !important; }
.flexslider .slides li p{ margin: 0 !important; }
.flexslider .slides > li {position: relative;}
/* Suggested container for "Slide" animation setups. Can replace this with your own, if you wish */
.flex-container {zoom: 1; position: relative;}
.flexslider .slides img { height: auto;}
.flex-direction-nav, .flex-control-nav, .flex-caption { margin-bottom:0 !important;}

/* Caption style */
/* IE rgba() hack */
.flex-caption {background:none; -ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4C000000,endColorstr=#4C000000);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4C000000,endColorstr=#4C000000); zoom: 1;}
.flex-caption {display: inline-block; width: 85%; padding: 2%; position: absolute; left: 15px; bottom: 15px; color: #fff; font-size: 1.2em !important; line-height: 1.3em;}
.flex-caption p {
	color: #fff;
	background: rgba(0,0,0,.5);
	font-size: 1em;
	margin-bottom: 3px !important;
	padding: 12px 15px 12px 15px;
	width: auto;
	display: inline-block;
}
.flex-caption a {
    color: #fff!important;
    text-decoration: none;
}


/* Direction Nav */
.flex-direction-nav li a {
	-webkit-transition: none; -moz-transition: none; transition: none;
	-webkit-transition: opacity .5s ease; -moz-transition: opacity .5s ease; transition: opacity .5s ease;
}
.flex-direction-nav li a { z-index: 100; width: 30px!important; height: 30px; margin: -15px 0 0; display: block; background: url(images/flexslider/direction_nav.png) no-repeat 0 0; position: absolute; top: 50%; cursor: pointer; text-indent: -9999px;}
.flex-direction-nav li a.flex-next {background-position: -30px 0; right: 20px !important;}
.single-product .flex-direction-nav li a.flex-next {right: -5px !important;}
.flex-direction-nav li a.flex-next:hover {background-position: -30px -30px;}
.flex-direction-nav li a.flex-prev {background-position: 0 0; left: 20px !important; }
.flex-direction-nav li a.flex-prev:hover {background-position: 0 -30px; }
.flex-direction-nav li a.disabled {opacity: .3; filter:alpha(opacity=30); cursor: default;}

/* Control Nav */
.flex-control-nav {position: absolute !important; bottom: 25px !important; right: 3% !important; width: auto !important; }
.flex-control-nav li {margin: 0 0 0 5px !important; display: inline-block !important; zoom: 1; *display: inline !important;}
.flex-control-nav li:first-child {margin: 0 !important;}
.flex-control-nav li a {width: 13px !important; height: 13px !important; display: block !important; background: rgba(255,255,255,0.5) !important; cursor: pointer; text-indent: -9999px;}
.flex-control-nav li a:hover {background: rgba(255,255,255,0.7) !important;}
.flex-control-nav li a.flex-active {background: rgba(255,255,255,0.7) !important; cursor: default !important;}

/* =Content
----------------------------------------------- */
#page {
    max-width: 60em;
    margin: 0 auto;
	background-color: #fff;
}

.site-content {
	float: left;
	margin: 0 -28% 0 0;
	padding-top: 3%;
	width: 100%;
}
#home-message {
	color: #696969;
	padding: 25px 5% 25px;
	text-align: center;
	background: #f7f7f7;
	border-bottom: 1px solid #ededed;
	border-top: 5px solid #e6e6e6;
}

#home-message p{
	font-size: 1.55em;
	line-height: 1.3em;
	margin-bottom: 0;
}

#content {
    margin: 0px 2% 0px 3%;
    width: 65%;
}

#content.full {
    margin: 0px 3% 0px;
    width: 94%;
}

#content .postThumb {
    margin: 0 1.5em 1.5em 0;
}

#secondary { /* Sidebar */
	float: right;
	overflow: hidden;
	width: 25%;
	margin: 3% 3% 0 0;
}
#secondary ul li a {
  display: block;
  text-decoration: none;
  background: transparent;
  border-bottom: dashed 1px #ddd;
  padding: 3px;
}
#secondary ul li a:hover {
 background-color: #eee;
}
#tertiary { /* Sidebar 2 */
	clear: right;
}

/* Posts */
.sticky {
}
.hentry {
	margin: 0 0 1.5em;
}
h1.entry-title {
    font-weight: bold;
    font-size: 1.7em;
}

h1.entry-title a{
    text-decoration: none;
}
h1 {
	font-size: 1.7em;
}
h2 {
	font-size: 1.5em;
}
h3 {
	font-size: 1.4em;
}
h4 {
	font-size: 1.1em;
	text-transform: uppercase;
}
h5 {
	font-size: 1.2em;
}
h6 {
	font-size: 1em;
	text-transform: uppercase;
}

.entry-meta {
	clear: both;
	font-size: 0.85em;
	color:#9f9f9f;
}
.byline {
	display: none;
}
.single .byline,
.group-blog .byline {
	display: inline;
}
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}
.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*
 * Home Page
 */
.home.page #content .entry-title {
	display:none;
}
.home .site-content {
	padding-top: 0;
	/*border-top: 1px solid #ededed;*/
}
.home-widgets {
	margin: 3% 0 0 3%;
    width: 97%;
}
.home-widgets aside {
    width: 30.3%;
    margin: 0 3% 2% 0;
    float: left;
}
#home-features {
	display: block;
    text-align: center;
    margin: 3% 0 0 3%;
    width: 97%;
}
#home-features h2 {
	line-height: 1.5em;
	font-size: 1.1em;
}

#home-features h2 a, #home-features h2 a:hover{
	color: #666;
	text-decoration: none;
}
/*
 * Grids
 */
ul.grid img{
	max-width: 100%;
	height: auto;
}
ul.grid {
	margin: 0 0 0 0;
	padding: 0px 0 0 0;
	line-height: 1em;
	background: none;
	position: relative;
	list-style: none;
}
ul.grid li.half {
	margin: 0 3% 2% 0;
	width: 46%;
}
ul.grid li.thirds  {
    width: 30.3%;
    margin: 0 3% 2% 0;
    float: left;
}
ul.grid li.fourths {
	width: 21.9%;
	margin: 0 3% 3% 0;
	float: left;
}
/* Sermon Manager */
#wpfc_sermon_series_image img {
	max-width: 100%;
	height: auto;
}
/* =Tables
-------------------------------------------------------------- */
th,
td,
table {
	border: none;
}

table {
	border-collapse:collapse;
	width:100%;
}

th, td {
	padding:.5em;
}

/*	Styles for People
-----------------------------------------------------------------------------------*/

h3.person-title{display:inline;}

.churchpack-title:after{
	content: ".";
	visibility: hidden;
	display: block;
	height: 0;
	clear: right;
}
.churchpack-title{display:inline;}


/* =Asides
----------------------------------------------- */

.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}


/* =Media
----------------------------------------------- */

.site-header img,
.entry-content img,
.comment-content img,
.widget img {
	max-width: 100%; /* Fluid images for posts, comments, and widgets */
}
.site-header img,
.entry-content img,
img[class*="align"],
img[class*="wp-image-"] {
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}
.site-header img,
.entry-content img,
img.size-full {
	max-width: 100%;
	width: auto; /* Prevent stretching of full-size images with height and width attributes in IE8 */
}
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
.wp-caption {
	border: 1px solid #ccc;
	max-width: 100%;
}
.wp-caption.aligncenter,
.wp-caption.alignleft,
.wp-caption.alignright {
	margin-bottom: 1.5em;
}
.wp-caption img {
	display: block;
	margin: 1.2% auto 0;
	max-width: 98%;
}
.wp-caption-text {
	text-align: center;
	font-size: 0.75em;
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}
#content .gallery {
	margin-bottom: 1.5em;
}
.gallery-caption {
}
#content .gallery a img {
	border: none;
	height: auto;
	max-width: 90%;
}
#content .gallery dd {
	margin: 0;
}
#content .gallery-columns-4 .gallery-item {
}
#content .gallery-columns-4 .gallery-item img {
}

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}


/* =Navigation
----------------------------------------------- */

#content .site-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}
#content .nav-previous {
	float: left;
	width: 50%;
}
#content .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/* =Comments
-------------------------------------------------------------- */
#commentform {
	margin:0;
}
.comment-meta a{
	text-decoration: none;
}
.commentlist {
	border-bottom:1px dotted #eee;
	list-style:none;
	margin:0;
	padding:0;
}

.commentlist ol {
	list-style:decimal;
}

.commentlist li {
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	background-color:#fff;
	border-radius:4px;
	margin:0;
}

.commentlist .bypostauthor {}

.commentlist li cite {
	color:#111;
	font-size:1em;
	font-style:normal;
}
.commentlist li cite a {
	text-decoration: none;
}
.commentlist li.alt {
	background:#f9f9f9;
}

.commentlist .children {
	list-style:none;
	margin-left:10px;
	padding:10px;
}

.commentlist .avatar {
	-webkit-border-radius:2px;
	-moz-border-radius:2px;
	border-radius:2px;
	float:left;
	margin:10px;
	padding:0;
	vertical-align:middle;
}

.comment-author .fn {
}

.comment-author .says {
}

.comment-body .comment-meta {
	display:inline-block;
	margin:0;
	padding:0;
	text-align:left;
}

.comment-body .comment-meta a {
	font-size:0.85em;
}

.comment-body {
	clear:both;
	padding:10px;
}

.comment-body p {
	clear:both;
}

.comment .reply {
    margin: 10px;
    text-align: right;
}

.pingback, .trackback {
	list-style:none;
	margin:20px 0;
}

.pingback cite,
.trackback cite {
	font-style:normal;
}

#comments, #pings {
	text-align:left;
}

#respond {}

#respond label {
	display:inline;
}

.reply {
	margin:10px 0;
}

.comment-form-url input,
.comment-form-email input,
.comment-form-author input,
.comment-form-comment textarea {
	display:block;
}

.nocomments {
	font-size:.85em;
	text-align:center;
}

/* Footer */
#colophon a, #colophon a:visited {
	display: block;
    text-decoration: none;
    background: transparent;
    padding: 3px;
    color: #375CA6;
}

#colophon a:hover {
	color: #525252;
}
.footer-widgets {
	width: 97%;
	margin: 0 0 2% 3%;
}
.footer-widgets aside {
    width: 30.2%;
    margin: 0 3% 2% 0;
    float: left;
}
.site-footer {
	clear: both;
	width: 100%;
	padding: 2% 0 2%;
	border-top: solid #3685b1 3px;
	background-color: #f7f7f7;
}
.site-info {
	font-size: 0.85em;
	margin: 0 3%;
	padding-top: 2%;
	border-top: 1px solid #ddd;
}
.site-info .left{
	float: left;
}
.site-info .right{
	float: right;
}

/* =Widgets
----------------------------------------------- */

.widget {
	margin: 0 0 1.5em;
	font-size: 0.85em;
}

/* Search widget */
#searchsubmit {
	display: none;
}

.widget-area ul, .widget-area ol {
	/*margin: 0 0 1em 1em;*/
}
.widget-area ul {
    margin: 0;
    padding: 0;
	list-style: none;
}

/*Recent Posts Widget------------------*/
.minimal_church_recent_posts .meta {
	margin: 0 0 0 0 !important;
	display: block;
	padding: 3px 0 0 0;
	font-size: 0.85em;
}

.minimal_church_recent_posts .title {
	font-size: 1em !important;
	margin-bottom: 2px;
	line-height: 1.1em;
	display: block;
	font-weight: bold;
}
.minimal_church_recent_posts .title a {
	text-decoration: none;
}
.minimal_church_recent_posts .thumb{
	float: left;
	margin: 0 12px 0 0;
	padding: 3px;
	background: #fff;
	border: 1px solid #e1e1e1;
	height: 50px;
}
.minimal_church_recent_posts ul {
	margin: 0!important;
	list-style: none!important;
}
.minimal_church_recent_posts li {
	margin-bottom: 10px;
	border: none;
	display: block;
}

/* Social Links */
div.minimal-church-social ul {
	list-style: none;
	margin: 0 0 0.933333333em 0;
	overflow: hidden;
}
div.minimal-church-social li {
	float: left;
	margin: 0 5.91397849% 0.933333333em 0;
}
div.minimal-church-social li:last-child {
	margin-right: 0;
}
div.minimal-church-social span {
	display: none;
	line-height: 0;
}
div.minimal-church-social li a {
	display: block;
	height: 32px;
	width: 32px;
}
div.minimal-church-social li a:hover {
	opacity: 0.8;
}
div.minimal-church-social li a.minimal-church-facebook {
	background: url(images/social-facebook.png) no-repeat 0 0;
}
div.minimal-church-social li a.minimal-church-twitter {
	background: url(images/social-twitter.png) no-repeat 0 0;
}
div.minimal-church-social li a.minimal-church-gplus {
	background: url(images/social-googleplus.png) no-repeat 0 0;
}
div.minimal-church-social li a.minimal-church-email {
	background: url(images/social-email.png) no-repeat 0 0;
}
div.minimal-church-social li a.minimal-church-vimeo {
	background: url(images/social-vimeo.png) no-repeat 0 0;
}
div.minimal-church-social li a.minimal-church-youtube {
	background: url(images/social-youtube.png) no-repeat 0 0;
}

/***
 * Media Queries
 */

/* iPad Portrait */
@media only screen and (max-width: 768px) {
	.social-menu {
		display: none;
	}
	.home-widgets aside, .footer-widgets aside {
		width: 45%;
		margin: 0 .7% 0 3%;
	}

}
/*layouts smaller than 600px, iPhone and mobiles*/
@media only screen and (max-width: 480px), screen and (max-device-width: 480px), screen and (max-width: 600px)  {

	html {
	    -webkit-text-size-adjust: none;
	}

	h1.entry-title {font-size: 1.3em;}

	h1 { font-size: 1.2em;}
	h2 { font-size: 1.1em;}
	h3 { font-size: 1.0em;}
	h3.widget-title { font-size: 1.1em; font-weight: bold; }
	h4 { font-size: .9em;}
	h5 { font-size: .8em;}
	.flex-direction-nav, .flex-control-nav, .flex-caption { display: none !important;}
	#home-message p { font-size: 1.1em;}
	ul.grid li.thirds  {
		width: 45%;
		margin: 0 .7% 2% 3%;
	}
	#content {
		margin: 0px 3% 0px;
		width: 94%;
	}

	#secondary { /* Sidebar 1 */
		float: left;
		overflow: hidden;
		width: 94%;
		margin: 0px 3% 0px;
	}
	.home-widgets aside, .footer-widgets aside {
		width: 94%;
	}

}
