/*
Theme Name: spicysouthern
Author: Underscores.me/MOOSH Creative
Description: Theme developed for Spicy Southern Kitchen using the Underscores starter theme.
Version: 1.0-wpcom
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: spicysouthern
Domain Path: /languages/

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.

 spicysouthern is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 - Imports
2.0 - Layout
3.0 - Basic Styles
	3.1 - Typography
	3.2 - Elements
	3.3 - Forms
	3.4 - Menus
	3.5 - Accessibility
	3.6 - Alignments and Clearings
4.0 - Widgets
5.0 - Content
	5.1 - Posts and pages
	5.2 - Asides
	5.3 - Comments
6.0 - Infinite scroll
7.0 - Media
	7.1 - Captions
	7.2 - Galleries
8.0 - Unique Elements
	8.1 - Social Buttons
	8.2 - Subscribe Via Email Widget
	8.3 - Index Pages
	8.4 - Popular Posts Widget
9.0 - Responsive
10.0 - IE
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 - Imports
--------------------------------------------------------------*/
@import url(css/normalize.css);
@import url(http://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic);
@import url(http://fonts.googleapis.com/css?family=Josefin+Slab);

/*--------------------------------------------------------------
2.0 - Layout
--------------------------------------------------------------*/
#page,
#masthead .inner {
	width: 90%;
	max-width: 1024px;
	margin: auto;
	padding: 0 10px;
}
.content-area {
	float: left;
	margin: 0 -340px 0 0;
	width: 100%;
}
.site-main {
	margin: 0 340px 0 0;
}
#secondary {
	width: 300px;
	float: right;
}
footer {
	clear: both;
}

/*--------------------------------------------------------------
3.0 - Basic Styles
--------------------------------------------------------------*/
body {
	background: url('images/dotted_background.png');
}
#masthead {
	background-color: #FFFFFF;
	border-bottom: 5px solid #4dc2c7;
	-moz-box-shadow: 0 3px 3px #999999;
	-webkit-box-shadow: 0 3px 3px #999999;
	box-shadow: 0 3px 3px #999999;
	position: relative;
	z-index: 100;
}
#banner,
#banner .widget {
	text-align: center;
	border: 0;
	padding: .5em 0;
	margin: 0;
}
.site-branding,
h1.site-title {
	float: left;
	margin-bottom: 0;
}
#page {
	background-color: #FFFFFF;
}
footer#colophon {
	background-color: #4dc2c7;
	color: #FFFFFF;
	text-align: center;
	padding: 40px;
}
footer#colophon a {
	color: #FFFFFF;
}


/*--------------------------------------------------------------
3.1 - Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #333333;
	font-family: 'Lato', sans-serif;
	font-size: 14px;
	line-height: 1.5;
}
a,
a:visited {
	color: #c22127;
}
a:hover,
a:focus,
a:active {
	color: #931b24;
}
h1.page-title,
h1.entry-title {
	font-size: 2.6em;
	margin-bottom: 0;
	font-family: 'Josefin Slab', serif;
	font-weight: normal;
	line-height: 1em;
}
h1.page-title {
	padding-bottom: 10px;
}
h1.entry-title a {
	text-decoration: none;
}
h1.widget-title,
h2 {
	font-size: 1.4em;
	color: #c22127;
	font-weight: normal;
}

/*--------------------------------------------------------------
3.2 Elements
--------------------------------------------------------------*/
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}
ul, ol {
	margin: 0 0 1.5em 3em;
}
ul {
	list-style: disc;
}
.widget ul {
	margin: 0;
}
ol {
	list-style: decimal;
}
li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}
dt {
	font-weight: bold;
}
dd {
	margin: 0 1.5em 1.5em;
}
img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}
figure {
	margin: 0;
}
table {
	margin: 0 0 1.5em;
	width: 100%;
}
th {
	font-weight: bold;
}

/*--------------------------------------------------------------
3.3 Forms
--------------------------------------------------------------*/
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 */
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb; 
	border-radius: 3px;
	background: #e6e6e6;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
	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 */
	line-height: 1;
	padding: .6em 1em .4em;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
}
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: #aaa #bbb #bbb;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}
input[type="checkbox"],
input[type="radio"] {
	padding: 0; /* Addresses excess padding in IE8/9 */
}
input[type="search"] {
	-webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
	-webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
	-moz-box-sizing:    content-box;
	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"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	color: #111;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
	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: 100%;
}

/*--------------------------------------------------------------
3.4 - Menus
--------------------------------------------------------------*/
.main-navigation {
	display: block;
	float: right;
	padding-top: 40px;
        clear: right;
}
.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}
.main-navigation li {
	float: left;
	position: relative;
	padding-left: 20px;
}
.main-navigation a {
	display: block;
	text-decoration: none;
	font-family: 'Josefin Slab', serif;
	font-size: 16px;
	text-transform: uppercase;
	color: #333333;
}
.main-navigation li.current-menu-item a,
.main-navigation a:hover,
.main-navigation li.current-menu-item ul li a:hover {
	color: #c22127;
	border-bottom: 2px solid #c22127;
}
.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 1.9em;
	left: -999em;
	z-index: 99999;
        background-color: #FFFFFF;
}
.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}
.main-navigation ul ul a {
}
.main-navigation ul ul li {
	width: 200px;
	padding: 10px 20px 5px;
}
.main-navigation li.current-menu-item ul li a {
	border-bottom: none;
	color: #333333;
}
.main-navigation li:hover > a {
}
.main-navigation ul ul :hover > a {
}
.main-navigation ul ul a:hover {
}
.main-navigation ul li:hover > ul {
	left: auto;
}
.main-navigation ul ul li:hover > ul {
	left: 100%;
}
.main-navigation .current_page_item a,
.main-navigation .current-menu-item a {
}
/* Small menu */
.menu-toggle {
	display: none;
}
/*@media screen and (max-width: 735px) {
	.menu-toggle,
	.main-navigation.toggled .nav-menu {
		display: block;
	}

	.main-navigation ul {
		display: none;
	}
}*/
.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}
.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}
.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
3.5 - Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}

/*--------------------------------------------------------------
3.6 - Alignments and Clearings
--------------------------------------------------------------*/
.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;
}
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: '';
	display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
4.0 - Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
	border-bottom: 1px solid #4dc2c7;
	padding: 0 0 1.5em;
}

/* Make sure select elements fit in widgets */
.widget select {
	max-width: 100%;
}

/* Search widget */
.widget_search .search-submit {
	display: none;
}

/*--------------------------------------------------------------
5.0 - Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 - Posts and pages
--------------------------------------------------------------*/
.sticky {
}
.hentry {
	margin: 0 0 3em;
}
.byline,
.updated {
	display: none;
}
.single .byline,
.group-blog .byline {
	display: inline;
}
.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}
.page-links {
	clear: both;
	margin: 0 0 1.5em;
}
.archive .post {
	padding-bottom: 20px;
}
.post .entry-footer {
	border-top: 1px solid #4dc2c7;
	border-bottom: 1px solid #4dc2c7;
	margin: 5px 0;
}
.entry-footer span {
	padding: 5px 10px 5px 0;
}

/*--------------------------------------------------------------
5.2 - Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
5.3 - Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}
.bypostauthor {
}

/*--------------------------------------------------------------
6.0 - Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}
/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
7.0 - Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
7.1 - Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0 auto;
}
.wp-caption-text {
	text-align: center;
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

/*--------------------------------------------------------------
7.2 - Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}
.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}
.gallery-columns-2 .gallery-item {
	max-width: 50%;
}
.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
	max-width: 25%;
}
.gallery-columns-5 .gallery-item {
	max-width: 20%;
}
.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}
.gallery-caption {}

/*--------------------------------------------------------------
8.0 - Unique Elements
--------------------------------------------------------------*/
/*--------------------------------------------------------------
8.1 - Social Buttons
--------------------------------------------------------------*/
.social-buttons {
	float: right;
	padding-top: 20px;
}
.social-buttons a {
	width: 45px;
	height: 50px;
	display: block;
	background-size: 45px 45px;
	float: left;
	margin-left: -8px;
	background-repeat: no-repeat;
	background-position: bottom;
}
.social-buttons a:hover {
	background-position: top;
}
.social-buttons a#facebook {
	background-image: url(images/facebook.png);
}
.social-buttons a#twitter {
	background-image: url(images/twitter.png);
}
.social-buttons a#instagram {
	background-image: url(images/instagram.png);
}
.social-buttons a#pinterest {
	background-image: url(images/pinterest.png);
}
.social-buttons a#gplus {
	background-image: url(images/gplus.png);
}
.social-buttons a#rss {
	background-image: url(images/rss.png);
}

/*--------------------------------------------------------------
8.2 - Subscribe Via Email Widget
--------------------------------------------------------------*/
.mbt-email {
	background: none !important;
	width: auto !important;
	padding: 0 !important;
	float: none !important;
	font-weight: normal !important;
	margin: 0 !important;
	color: #c22127 !important;
}
.mbt-emailsubmit:hover {
	background: #e6e6e6 !important;
}

/*--------------------------------------------------------------
8.3 - Index Pages
--------------------------------------------------------------*/
.archive h1.page-title {
	text-transform: capitalize;
}
.cat_icon,
.tag_icon,
.post_icon {
	float: left;
	width: 28%;
	text-align: center;
	font-family: 'Josefin Slab', serif;
	padding: 0 2% 20px;
}
.tag_icon {
	text-transform: capitalize;
}
.tag_icon img,
.cat_icon img,
.post_icon img {
	width: 100%;
}
.post-num-4,
.post-num-7 {
	clear: left;
}
.paging-navigation {
	clear: both;
}
#post-5180 h2 {
	display: none;
}
#post-5180 ul {
	margin: 0 0 1.5em 0;
	padding: 0;
	list-style: none;
}
#post-5180 ul strong {
	font-weight: normal;
}

/*--------------------------------------------------------------
8.4 - Popular Posts Widget
--------------------------------------------------------------*/
ul.wpp-list {
	-webkit-margin-before: 0;
	-webkit-margin-after: 0;
	-webkit-padding-start: 0;
}
.wpp-list li {
	display: inline-block !important;
}
ul.wpp-list a.wpp-post-title {
	display: none;
}
.wpp-thumbnail {
	float: none;
}

/*--------------------------------------------------------------
8.5 - Favorite Products Page
--------------------------------------------------------------*/
.favorite-product {
	padding-bottom: 10px;
	border-bottom: 1px solid #4dc2c7;
	margin-bottom: 3em;
}
.product-image {
	float: left;
	width: 30%;
}
.product-description {
	float: right;
	width: 60%;
}
.product-description .wp-post-image,
.product-description .ssba,
.product-description .keep-reading {
	display: none;
}
.product-description .button {
	color: #FFFFFF;
	text-decoration: none;
	background-color: #c22127;
	float: right;
	padding: 10px 20px;
	margin: 20px 0;
}
.product-description .button:hover {
	background-color: #931b24;
}
.clear {
	clear: both;
}
.hiddenpinimage { opacity: 0; position: absolute; top: 0; left: 0; height: 0px; width: 0px; }

/*--------------------------------------------------------------
9.0 - Responsive
--------------------------------------------------------------*/
@media (min-width: 831px) {
	.inner-ad {
		display: none;
	}
	.menu-item-8444 {
		display: none;
	}
}
@media (max-width: 830px) {
	.main-navigation,
	#banner {
		display: none;
	}
	.content-area {
		float: none;
		margin: 0;
	}
	.site-main {
		margin: 0;
	}
	.inner-ad {
		text-align: center;
		clear: both;
	}
	#secondary {
		float: none;
		width: 100%;
		text-align: center;
	}
	#search-2,
	#mks_author_widget-2,
	#text-17 {
		display: none;	
	}
@media (max-width: 500px) {
	.site-branding,
	h1.site-title{
		width: 50%;
	}
	.social-buttons {
		padding-top: 10px;
	}
	.social-buttons a {
		width: 25px;
		height: 30px;
		background-size: 25px 25px;
		margin-left: -3px;
	}
	.home .post p,
	.home .post .ssba,
	.home .post .entry-footer {
		display: none;
	}
	.home .post img {
		width: 100%;
	}
	.product-image,
	.product-description {
		float: none;
		width: 100%;
	}
}


/*--------------------------------------------------------------
10.0 - IE
--------------------------------------------------------------*/
.inner {
	width: 90%\9;
	max-width: 1024px\9;
	margin: auto\9;
	padding: 10px\9;
	background: #FFFFFF\9;
}
.social-buttons {
	background-position: center center\9;
}
.site-info {
	background-color: #4dc2c7\9;
	color: #FFFFFF\9;
	text-align: center\9;
	padding: 40px\9;
}

