/*
Theme Name: natscider
Theme URI: http://underscores.me/
Author: CodeGeek.net
Author URI: http://underscores.me/
Description: Custom theme for Reverend Nat's Hard Cider, Portland, OR
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: natscider
Domain Path: /languages/
Tags:

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.

 natscider is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.

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

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 - Reset
2.0 - Typography
3.0 - Elements
4.0 - Forms
5.0 - Navigation
	5.1 - Links
	5.2 - Menus
6.0 - Accessibility
7.0 - Alignments
8.0 - Clearings
9.0 - Widgets
10.0 - Content
	10.1 - Posts and pages
	10.2 - Asides
	10.3 - Comments
11.0 - Infinite scroll
12.0 - Media
	12.1 - Captions
	12.2 - Galleries
13.0 - Media Queries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 - 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/ */
}
*,
*:before,
*:after { /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
	-webkit-box-sizing: border-box; /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
	-moz-box-sizing:    border-box; /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
	box-sizing:         border-box;
}
body {
	background: #fff;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
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 {
	outline: 0;
}
a img {
	border: 0;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body {
	background: #000 url('img/rn-background.jpg');
	font-family: "Iowan Old Style", Georgia, Times, "Times New Roman", serif;
	font-size: 20px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
button,
input,
select,
textarea {
	color: #404040;
	font-family: sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.5;
}
h1, h2, h3, h4, h5, h6 {
	clear: both;
}
h1 {
  margin: 21px 0 5px 0;
  text-align: center;
  font-family: "Matchwood WF", Georgia, Times, "Times New Roman", serif;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
}
h1.site-title {
  position: absolute;
  left: -5000px;
}
h2 {
  margin-bottom: 5px;
  text-align: center;
  font-family: "Matchwood WF", Georgia, Times, "Times New Roman", serif;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
}
h3 {
  margin-top: 24px;
  margin-bottom: 5px;
  font-family: "Matchwood WF", Georgia, Times, "Times New Roman", serif;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
p {
  margin: 14px 0 12px 0;
  text-align: justify;
}
b, strong {
	font-weight: bold;
}
dfn, cite, em, i {
	font-style: italic;
}
blockquote {
	margin: 0 1.5em;
}
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;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}
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%;
}
.flip {
  display: inline-block;
  position: relative;
  top: -8px;
  -webkit-transform: rotateX(180deg);
  -moz-transform:    rotateX(180deg);
  -ms-transform:     rotateX(180deg);
  -o-transform:      rotateX(180deg);
  transform:         rotateX(180deg); /* Flip text updside down */
}
/*.at-symbol-alternate { /* Use for @ symbols, since Matchwood doesn't have one */
  /*font-family: "IM FELL Double Pica PRO", Georgia, Times, "Times New Roman", serif;
  font-weight: normal;
}*/

/* Fonts */
/*Gatlin replaced by Muleshoe WF*/
/*@font-face { */
    /*font-family: 'Gatlin WF';*/
    /*src: url('fnt/gatlinboldwf.eot'); /* IE9 Compat Modes */
    /*src: url('fnt/gatlinboldwf.eot') format('embedded-opentype'), /* IE6-IE8 */
         /*url('fnt/gatlinboldwf.woff') format('woff'), /* Modern Browsers */
         /*url('fnt/gatlinboldwf.ttf') format('truetype'), /* Safari, Android, iOS */
         /*url('fnt/gatlinboldwf.svg#GatlinBoldWFRegular') format('svg'); /* Legacy iOS */

    /*font-style: normal;*/
    /*font-weight: 700;*/
/*}*/
@font-face {
  font-family: 'IM FELL Double Pica PRO';
  src: url('fnt/FeDPrm27C.eot'); /* IE9 Compat Modes */
  src: url('fnt/FeDPrm27C.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fnt/FeDPrm27C.woff') format('woff'), /* Modern Browsers */
       url('fnt/FeDPrm27C.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('fnt/FeDPrm27C.svg#45fbbe9df6243a3a6366c9b99b21782c') format('svg'); /* Legacy iOS */

  font-style:   normal;
  font-weight:  400;
}
@font-face {
  font-family: 'IM FELL Double Pica PRO';
  src: url('fnt/FeDPit27C.eot'); /* IE9 Compat Modes */
  src: url('fnt/FeDPit27C.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fnt/FeDPit27C.woff') format('woff'), /* Modern Browsers */
       url('fnt/FeDPit27C.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('FeDPit27C.svg#d4033294555996d76cb8f3b758bd7487') format('svg'); /* Legacy iOS */

  font-style:   italic;
  font-weight:  400;
}
@font-face {
  font-family: 'Matchwood WF';
  src: url('fnt/MatchwoodWF.eot'); /* IE9 Compat Modes */
  src: url('fnt/MatchwoodWF.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fnt/MatchwoodWF.woff') format('woff'), /* Modern Browsers */
       url('fnt/MatchwoodWF.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('fnt/MatchwoodWF.svg#7cba7aa7fa71de86cfa90b889d28fb3c') format('svg'); /* Legacy iOS */

  font-style:   normal;
  font-weight:  400;
}
@font-face {
  font-family: 'Matchwood WF';
  src: url('fnt/MatchwoodBoldWF.eot'); /* IE9 Compat Modes */
  src: url('fnt/MatchwoodBoldWF.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fnt/MatchwoodBoldWF.woff') format('woff'), /* Modern Browsers */
       url('fnt/MatchwoodBoldWF.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('fnt/MatchwoodBoldWF.svg#67526665e9a775dcb789f1f90f9bc1b5') format('svg'); /* Legacy iOS */

  font-style:   normal;
  font-weight:  700;
}
@font-face {
  font-family: 'Matchwood WF';
  src: url('fnt/MatchwoodBoldItalicWF.eot'); /* IE9 Compat Modes */
  src: url('fnt/MatchwoodBoldItalicWF.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fnt/MatchwoodBoldItalicWF.woff') format('woff'), /* Modern Browsers */
       url('fnt/MatchwoodBoldItalicWF.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('fnt/MatchwoodBoldItalicWF.svg#3a1b86d700e073f0b8acf7166346036a') format('svg'); /* Legacy iOS */

  font-style:   italic;
  font-weight:  700;
}
@font-face {
  font-family: 'Type No. 2 WF';
  src: url('fnt/TypeTwoWF.eot'); /* IE9 Compat Modes */
  src: url('fnt/TypeTwoWF.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fnt/TypeTwoWF.woff') format('woff'), /* Modern Browsers */
       url('fnt/TypeTwoWF.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('fnt/TypeTwoWF.svg#5c159bd38dbe4c73c0b74af0795ebe6e') format('svg'); /* Legacy iOS */

  font-style:   normal;
  font-weight:  400;
}
@font-face {
  font-family: 'Type No. 3 WF';
  src: url('fnt/TypeThreeWF.eot'); /* IE9 Compat Modes */
  src: url('fnt/TypeThreeWF.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fnt/TypeThreeWF.woff') format('woff'), /* Modern Browsers */
       url('fnt/TypeThreeWF.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('fnt/TypeThreeWF.svg#61750d10457d51ed91d26c417bc45d83') format('svg'); /* Legacy iOS */

  font-style:   normal;
  font-weight:  400;
}
@font-face {
  font-family: 'Type No. 4 WF';
  src: url('fnt/TypeFourWF.eot'); /* IE9 Compat Modes */
  src: url('fnt/TypeFourWF.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fnt/TypeFourWF.woff') format('woff'), /* Modern Browsers */
       url('fnt/TypeFourWF.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('fnt/TypeFourWF.svg#13561e14deaa2571e018f9f02abbe5a4') format('svg'); /* Legacy iOS */

  font-style:   normal;
  font-weight:  400;
}
@font-face {
  font-family: 'Type No. 8 WF';
  src: url('fnt/TypeEightWF.eot'); /* IE9 Compat Modes */
  src: url('fnt/TypeEightWF.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fnt/TypeEightWF.woff') format('woff'), /* Modern Browsers */
       url('fnt/TypeEightWF.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('fnt/TypeEightWF.svg#8f96f4b3dae4cc04a36510f0f32dfdb8') format('svg'); /* Legacy iOS */

  font-style:   normal;
  font-weight:  400;
}
@font-face {
	font-family: 'Muleshoe WF';
	src: url('fnt/MuleshoeWF.eot');
	src: url('fnt/MuleshoeWF.eot?#iefix') format('embedded-opentype'),
		url('fnt/MuleshoeWF.woff2') format('woff2'),
		url('fnt/MuleshoeWF.woff') format('woff'),
		url('fnt/MuleshoeWF.ttf') format('truetype'),
		url('fnt/MuleshoeWF.svg#MuleshoeWF') format('svg');
	font-weight: normal;
	font-style: normal;
}

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

/*--------------------------------------------------------------
4.0 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 */
	*vertical-align: middle; /* Improves appearance and consistency in IE6/IE7 */
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 2px solid #000;
	border-radius: 3px;
	background: #fff;
	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-family: "Iowan Old Style", Georgia, Times, "Times New Roman", serif;
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1;
	padding: .6em 1em .4em;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa #bbb;
	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 #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: 98%;
}
.gform_wrapper input[type=text], .gform_wrapper input[type=url], .gform_wrapper input[type=email], .gform_wrapper input[type=tel],
.gform_wrapper input[type=number], .gform_wrapper input[type=password], .gform_wrapper textarea {
  font-size: inherit !important;
}
.gform_wrapper {
	font-family: "Iowan Old Style", Georgia, Times, "Times New Roman", serif;
}

.delivery-time-date {
	font-size: 16px;	
}

.gfield_price {
	font-size: 16px;
}

/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a {
  color: #000;
  font-family: "Iowan Old Style", Georgia, Times, "Times New Roman", serif;
  font-weight: bold;
  font-style: italic;
  letter-spacing: 0.06em;
  text-decoration: underline;
}
a:visited {
	color: #000;
}
a:hover,
a:focus,
a:active {
	color: ;
}

/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
/* Extra nav at very top of page */
#menu-extra {
  width: 1024px;
  margin: 0 auto;
  padding: 9px 9px 10px 11px;
  list-style: none;
  text-align: center;
}
#menu-extra li {
  display: inline-block;
  margin-right: 45px;
}
#menu-extra .current-menu-item {
  border-top: 0px solid #000;
  border-right: 0px solid #000;
  border-bottom: 2px solid #000;
  border-left: 0px solid #000;
  border-image: url('img/border-horiz-sm-reverse.png') 2 4 3 5 repeat;
  -moz-border-image: url('img/border-horiz-sm-reverse.png') 2 4 3 5 repeat;
  -webkit-border-image: url('img/border-horiz-sm-reverse.png') 2 4 3 5 repeat;
  -o-border-image: url('img/border-horiz-sm-reverse.png') 2 4 3 5 repeat;
}
#menu-extra li a {
  color: #fff;
  font-family: "Type No. 4 WF", "Franklin Gothic Medium", "Franklin Gothic", "ITC Franklin Gothic", Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  text-transform: uppercase;
  text-decoration: none;
}
#menu-extra li:last-child {
  margin-right: 0;
}

/* Main nav */
.main-navigation {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 16px;
  padding: 0;
}
#menu-main {
  display: inline-block;
  margin: 0;
  padding: 0;
}
#menu-main li {
  display: inline-block;
  margin-right: 24px;
}
#menu-main .current-menu-item {
  border-top: 0px solid #000;
  border-right: 0px solid #000;
  border-bottom: 2px solid #000;
  border-left: 0px solid #000;
  border-image: url('img/border-horiz-sm.png') 2 4 3 5 repeat;
  -moz-border-image: url('img/border-horiz-sm.png') 2 4 3 5 repeat;
  -webkit-border-image: url('img/border-horiz-sm.png') 2 4 3 5 repeat;
  -o-border-image: url('img/border-horiz-sm.png') 2 4 3 5 repeat;
}
#menu-main li a {
  font-family: "Muleshoe WF", /*"Gatlin WF",*/ Rockwell, "Courier Bold", Courier, Georgia, Times, "Times New Roman", serif;
  font-weight: bold;
  font-style: normal;
  font-size: 20px;
  text-transform: uppercase;
  text-decoration: none;
}
#menu-main li:last-child {
  margin-right: 0;
}

/* Main nav on homepage (full width) */
.home #site-navigation {
  width: 100%;
  margin: 0;
}
.home #menu-main {
  display: block;
  margin: 0;
  padding: 14px 0 6px 0;
  list-style: none;
  text-align: center;
}
.home #menu-main li {
  margin-right: 45px;
}
.home #menu-main li:last-child {
  margin-right: 0;
}

/* Additional WP nav */
.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%;
}

/* Mobile nav */
#mobile-nav-button {
  display: none;
  margin: 15px 0 5px 0;
  font-family: "Muleshoe WF", /*"Gatlin WF",*/ Rockwell, "Courier Bold", Courier, Georgia, Times, "Times New Roman", serif;
  font-weight: bold;
  font-style: normal;
  font-size: 20px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
}
#mobile-nav-close {
  display: none;
  position: absolute;
  top: 5px;
  left: -260px;
  font-family: "Muleshoe WF", /*"Gatlin WF",*/ Rockwell, "Courier Bold", Courier, Georgia, Times, "Times New Roman", serif;
  font-weight: bold;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
}

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

/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/
.alignleft {
	display: block;
	float: left;
	margin: 5px 21px 16px 0;
}
.alignright {
	display: block;
	float: right;
	margin: 5px 0 16px 21px;
}
.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto;
}

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

/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0;
  padding: 12px 0 9px 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 3px solid #000;
  border-left: 0;
  -moz-border-image: url('img/border-horiz.png') 30 30 repeat;
  -webkit-border-image: url('img/border-horiz.png') 30 30 repeat;
  -o-border-image: url('img/border-horiz.png') 30 30 repeat;
  border-image: url('img/border-horiz.png') 30 30 repeat;
}

.widget:last-child {
  border: 0;
}

.widget-title {
  margin: 0 0 5px 0;
  font-family: "Muleshoe WF", /*"Gatlin WF",*/ Rockwell, "Courier Bold", Courier, Georgia, Times, "Times New Roman", serif;
  font-size: 21px;
}

/* Make sure select elements fit in widgets */
.widget select {
	max-width: 100%;
}

/* Search widget */
.widget_search .search-submit {
	display: none;
}

/* Text widget */
.widget_text {
  text-align: center;
  font-family: "Type No. 3 WF", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
  font-size: 20px;
  line-height: 1.05;
}

.widget_text h1 {
  display: block;
  position: relative;
  left: auto;
  margin: 0 0 2px 0;
  text-align: center;
  font-family: "Type No. 2 WF", Rockwell, "Courier Bold", Courier, Georgia, Times, "Times New Roman", serif;
  font-size: 16px;
  font-weight: normal;
}

.widget_text em {
  font-family: "Matchwood WF", Georgia, Times, "Times New Roman", serif;
  font-weight: bold;
  font-style: italic;
}

#text-3 .textwidget {
  margin-left: 8px;
}

/* Twitter and blog widgets */
.really_simple_twitter_widget, .srp-widget-container {
  margin: 0;
  padding: 0 0 0 8px;
  list-style: none;
  text-align: center;
  font-family: "Type No. 3 WF", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
  font-size: 14px;
  line-height: 1.22;
}

.really_simple_twitter_widget li {
  margin-bottom: 11px;
}

.really_simple_twitter_widget li a {
  text-transform: uppercase;
}

.rstw_comma {
  display: none;
}

.really_simple_twitter_widget .twitter-timestamp {
  display: block;
  margin: 3px 0 0 0;
  text-align: center;
}

.twitter-timestamp a {
  text-transform: uppercase;
}

div.srp-widget-singlepost {
  margin: 0 0 8px 0;
  padding: 0;
  border: 0;
}

.widget-area .widget .srp-post-title {
  margin-bottom: 6px;
}

.srp-post-title a {
  display: inline;
  font-family: "Type No. 3 WF", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
  font-weight: bold;
  font-style: normal;
  text-transform: uppercase;
  text-decoration: none;
}

.srp-widget-container p {
   text-align: center;
}

.widget-area .widget .srp-post-content {
  margin-bottom: 10px;
}

/* Cider widget */
.widget_cider_widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.widget_cider_widget li {
  line-height: 1;
}

.widget_cider_widget ul li a {
  font-size: 18px;
  letter-spacing: normal;
  text-transform: uppercase;
}

.widget_cider_widget .cider-widget-cider-list {
  margin: 0;
}

.widget_cider_widget .cider-widget-cider-list li a {
  text-transform: none;
  text-decoration: none;
}

/* Archive widget */
.widget_archive {
  padding: 12px 0 11px 0;
}

.widget_archive .widget-title {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-style: italic;
}

.widget_archive ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.widget_archive li {
  line-height: 1;
}

.widget_archive ul li a {
  font-size: 18px;
  letter-spacing: normal;
}

/* Good Press widget */
#text-4 {
  padding: 12px 0 9px 12px;
}

#text-4, #text-4 p {
  margin: 0;
  text-align: center;
  font-family: "Matchwood WF", Georgia, Times, "Times New Roman", serif;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.25;
  color: #951624;
}

#text-4 h1 {
  margin: 0;
  font-family: "Muleshoe WF", /*"Gatlin WF",*/ Rockwell, "Courier Bold", Courier, Georgia, Times, "Times New Roman", serif;
  font-size: 24px;
  color: #000;

}

#text-4 a {
  font-size: 18px;
  letter-spacing: auto;
}

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
/* Header */
.site-header-top-border {
	margin-bottom: -6px;
	border-top: 5px solid #000;
	border-bottom: 0 solid #000;
	-moz-border-image: url('img/border-horiz-double.png') 5 2 7 1 repeat;
	-webkit-border-image: url('img/border-horiz-double.png') 5 2 7 1 repeat;
	-o-border-image: url('img/border-horiz-double.png') 5 2 7 1 repeat;
	border-image: url('img/border-horiz-double.png') 5 2 7 1 repeat;
}
.site-header-logo-container {
	display: inline-block;
	vertical-align: middle;
	border-right: 3px solid #000;
	border-left: 0 solid #000;
	-moz-border-image: url('img/border-vert-sm.png') 30 30 repeat;
	-webkit-border-image: url('img/border-vert-sm.png') 30 30 repeat;
	-o-border-image: url('img/border-vert-sm.png') 30 30 repeat;
	border-image: url('img/border-vert-sm.png') 30 30 repeat;
}
.site-header-logo-container img {
	display: block;
	margin: 12px 18px 10px 11px;
}
.site-header-bottom-border {
	margin-top: -5px;
	border-top: 5px solid #000;
	border-bottom: 0 solid #000;
	-moz-border-image: url('img/border-horiz-double-alt.png') 5 2 7 1 repeat;
	-webkit-border-image: url('img/border-horiz-double-alt.png') 5 2 7 1 repeat;
	-o-border-image: url('img/border-horiz-double-alt.png') 5 2 7 1 repeat;
	border-image: url('img/border-horiz-double-alt.png') 5 2 7 1 repeat;
}

/* Footer */
.footer-top-border {
  width: 957px;
  margin: 23px auto -17px auto;
  border-top: 0 solid #fff;
  border-bottom: 6px solid #fff;
  -moz-border-image: url('img/border-horiz-double-reverse-alt.png') 6 3 8 3 repeat;
  -webkit-border-image: url('img/border-horiz-double-reverse-alt.png') 6 3 8 3 repeat;
  -o-border-image: url('img/border-horiz-double-reverse-alt.png') 6 3 8 3 repeat;
  border-image: url('img/border-horiz-double-reverse-alt.png') 6 3 8 3 repeat;
}

.footer {
  display: block;
  width: 959px;
  margin: 0 auto 33px auto;
  padding: 9px 0 0 0;
  list-style: none;
  text-align: center;
  border-top: 0 solid #fff;
  border-bottom: 6px solid #fff;
  -moz-border-image: url('img/border-horiz-double-reverse.png') 6 3 8 3 repeat;
  -webkit-border-image: url('img/border-horiz-double-reverse.png') 6 3 8 3 repeat;
  -o-border-image: url('img/border-horiz-double-reverse.png') 6 3 8 3 repeat;
  border-image: url('img/border-horiz-double-reverse.png') 6 3 8 3 repeat;
}

.footer li {
  display: inline-block;
  vertical-align: top;
  padding: 13px 0 0 0;
  color: #fff;
}

.footer .footer-first {
  margin-right: 16px;
  padding: 16px 22px 3px 0;
  border-right: 3px solid #fff;
  border-left: 0 solid #fff;
  -moz-border-image: url('img/border-vert-reverse.png') 8 4 5 5 repeat;
  -webkit-border-image: url('img/border-vert-reverse.png') 8 4 5 5 repeat;
  -o-border-image: url('img/border-vert-reverse.png') 8 4 5 5 repeat;
  border-image: url('img/border-vert-reverse.png') 8 4 5 5 repeat;
}

.footer-social {
  position: relative;
  margin: 4px 40px 0 0;
}

.footer-social:after {
  display: inline-block;
  position: absolute;
  top: 9px;
  right: -23px;
  content: "-";
  font-size: 24px;
}

.footer-social:last-child {
  margin-right: 0;
}

.footer-social:last-child:after {
  content: "";
}

.footer-social a {
  font-family: "Matchwood WF", Georgia, Times, "Times New Roman", serif;
  font-size: 18px;
  font-weight: bold;
  font-style: italic;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
}

.footer-social-followers {
  display: inline-block;
  vertical-align: top;
  font-family: "IM FELL Double Pica PRO", Georgia, Times, "Times New Roman", serif;
  font-size: 14px;
}

.footer-roger-sm {
  display: none;
}

/* Sidebar */
#secondary {
	display: table-cell;
	vertical-align: top;
  position: relative;
  left: -1px; /* Force horizontal and vertical borders to connect */
	width: 237px;
}

.bottle-list {
	margin: 13px 0 9px 0;
	padding-left: 0;
	list-style: none;
	font-family: "Matchwood WF", Georgia, Times, "Times New Roman", serif;
	text-align: center;
	font-size: 18px;
}

.bottle-list > li > a {
	line-height: 1.22;
	letter-spacing: 0.01em;
}

.bottle-list li > ul {
	padding-left: 0;
	list-style: none;
}

.bottle-list li > ul > li > a {
	text-decoration: none;
	letter-spacing: normal;
}

.sidebar-archives h3 {
	margin: 14px 0 3px 0;
	text-align: center;
	font-size: 18px;
	font-style: italic;
}

.sidebar-archives ul {
	list-style: none;
	margin: 0 0 9px 0;
	padding: 0;
}

.sidebar-archives ul li a {
	display: block;
	padding: 1px 0;
	text-align: center;
	font-size: 18px;
	letter-spacing: normal;
}

.sidebar-visit, .sidebar-hours {
	display: inline-block;
	vertical-align: top;
	padding: 7px 8px 5px 4px;
	border-top: 3px solid #000;
	border-bottom: 0 solid #000;
	-moz-border-image: url('img/border-horiz.png') 30 30 repeat;
	-webkit-border-image: url('img/border-horiz.png') 30 30 repeat;
	-o-border-image: url('img/border-horiz.png') 30 30 repeat;
	border-image: url('img/border-horiz.png') 30 30 repeat;
	text-align: center;
	font-family: "Type No. 3 WF", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
	font-size: 20px;
	line-height: 1.05;
}

.sidebar-visit h3, .sidebar-hours h3 {
	margin: 0 0 2px 0;
	font-family: "Type No. 2 WF", Rockwell, "Courier Bold", Courier, Georgia, Times, "Times New Roman", serif;
	font-size: 16px;
	font-weight: normal;
}

.sidebar-visit em, .sidebar-hours em {
	font-family: "Matchwood WF", Georgia, Times, "Times New Roman", serif;
	font-weight: bold;
	font-style: italic;
}

.sidebar-visit a {
	font-family: "Type No. 3 WF", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
	font-weight: bold;
	font-style: normal;
	text-decoration: none;
}

.sidebar-hours {
	padding: 8px 4px 4px 6px;
}

.sidebar-social-blog, .sidebar-social-twitter {
	padding: 10px 0 0 8px;
	border-top: 3px solid #000;
	border-right: 0;
	border-bottom: 0 solid #000;
	border-left: 0;
	-moz-border-image: url('img/border-horiz.png') 30 30 repeat;
	-webkit-border-image: url('img/border-horiz.png') 30 30 repeat;
	-o-border-image: url('img/border-horiz.png') 30 30 repeat;
	border-image: url('img/border-horiz.png') 30 30 repeat;
	text-align: center;
	font-family: "Type No. 3 WF", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
	font-size: 14px;
	line-height: 1.22;
}

.sidebar-social-blog-entry, .sidebar-social-tweet {
	margin-bottom: 11px;
}

.sidebar-social-twitter-time {
	margin: 3px 0 0 0;
	text-align: center;
}

.sidebar-social-blog-date {
	display: block;
	margin-bottom: 3px;
	font-family: "Matchwood WF", Georgia, Times, "Times New Roman", serif;
	font-weight: bold;
	font-style: italic;
}

.sidebar-social-blog h3 {
	display: inline;
	font-family: "Type No. 4 WF", "Franklin Gothic Medium", "Franklin Gothic", "ITC Franklin Gothic", Arial, sans-serif;
	font-size: 14px;
	font-weight: normal;
}

.sidebar-press {
	padding: 9px 0 11px 12px;
	border-top: 3px solid #000;
	border-right: 0;
	border-bottom: 0 solid #000;
	border-left: 0;
	-moz-border-image: url('img/border-horiz.png') 30 30 repeat;
	-webkit-border-image: url('img/border-horiz.png') 30 30 repeat;
	-o-border-image: url('img/border-horiz.png') 30 30 repeat;
	border-image: url('img/border-horiz.png') 30 30 repeat;
	text-align: center;
}

.sidebar-press h3 {
	margin: 6px 0 4px 0;
	font-family: "Muleshoe WF", /*"Gatlin WF",*/ Rockwell, "Courier Bold", Courier, Georgia, Times, "Times New Roman", serif;
	font-weight: bold;
	font-style: normal;
	font-size: 24px;
	letter-spacing: normal;
}

.sidebar-press p {
	margin: 0 0 1px 0;
	text-align: center;
	font-family: "Matchwood WF", Georgia, Times, "Times New Roman", serif;
	font-weight: bold;
	font-style: normal;
	font-size: 24px;
	line-height: 1.2;
	color: #951624;
}

.sidebar-press a {
	font-size: 18px;
}

/* Containers */
.outer-container {
	min-width: 1036px;
}

.inner-container {
	width: 1036px;
	margin: 0 auto;
	padding: 26px 34px 30px 34px;
	border: 12px solid #000;
	-moz-border-image: url('img/border-main.png') 12 12;
	-webkit-border-image: url('img/border-main.png') 12 12;
	-o-border-image: url('img/border-main.png') 12 12;
	border-image: url('img/border-main.png') 12 12;
	background: #fff;
}

.inner-container-bottom-border {
	margin-top: -1px;
	border-top: 0 solid #000;
	border-bottom: 3px solid #000;
	-moz-border-image: url('img/border-horiz.png') 30 30 repeat;
	-webkit-border-image: url('img/border-horiz.png') 30 30 repeat;
	-o-border-image: url('img/border-horiz.png') 30 30 repeat;
	border-image: url('img/border-horiz.png') 30 30 repeat;
}

.content {
  display: table;
}

#primary {
	display: table-cell;
	vertical-align: top;
	width: 707px;
	padding-right: 19px;
	border-right: 7px solid #000;
	border-left: 0 solid #000;
	-moz-border-image: url('img/border-vert-double.png') 30 30 repeat;
	-webkit-border-image: url('img/border-vert-double.png') 30 30 repeat;
	-o-border-image: url('img/border-vert-double.png') 30 30 repeat;
	border-image: url('img/border-vert-double.png') 30 30 repeat;
}

/* Homepage */
.home #primary {
  width: 944px;
  margin: 0;
  padding: 0;
  border: 0;
}

.home h1 {
  display: none;
}

.home .logo-home {
  width: 100%;
}

.home .site-header-bottom-border {
  display: none;
}

.home-announcement {
	border-top: 0 solid #000;
	border-bottom: 3px solid #000;
	-moz-border-image: url('img/border-horiz.png') 30 30 repeat;
	-webkit-border-image: url('img/border-horiz.png') 30 30 repeat;
	-o-border-image: url('img/border-horiz.png') 30 30 repeat;
	border-image: url('img/border-horiz.png') 30 30 repeat;
	text-align: center;
	font-family: "Matchwood WF", Georgia, Times, "Times New Roman", serif;
	font-size: 32px;
	font-weight: bold;
	line-height: 1.1em;
	letter-spacing: 0.03em;
}

.home-announcement > p {
  margin: 0;
  padding: 6px 2px 8px 3px;
  text-align: center;
}

.home-explore-sm {
  display: none;
}

.home-sub-container {
	display: table-cell;
	vertical-align: top;
	width: 739px;
  height: 480px;
	border-right: 3px solid #000;
	border-left: 0 solid #000;
	-moz-border-image: url('img/border-vert.png') 30 30 repeat;
	-webkit-border-image: url('img/border-vert.png') 30 30 repeat;
	-o-border-image: url('img/border-vert.png') 30 30 repeat;
	border-image: url('img/border-vert.png') 30 30 repeat;
}

.home-mission {
	margin-bottom: 10px;
	border-top: 0 solid #000;
	border-bottom: 3px solid #000;
	border-image: url('img/border-horiz.png') 2 4 3 5 repeat;
	-moz-border-image: url('img/border-horiz.png') 2 4 3 5 repeat;
	-webkit-border-image: url('img/border-horiz.png') 2 4 3 5 repeat;
	-o-border-image: url('img/border-horiz.png') 2 4 3 5 repeat;
	text-align: justify;
	font-family: "IM FELL Double Pica PRO", Georgia, Times, "Times New Roman", serif;
	font-size: 20px;
	letter-spacing: 0.04em;
}

.home-mission > p {
  margin: 0;
  padding: 9px 12px 10px 3px;
  text-align: justify;
}

.home-visit, .home-hours {
	display: inline-block;
	vertical-align: top;
	width: 308px;
	padding: 4px 8px 2px 4px;
	text-align: center;
	font-family: "Type No. 3 WF", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
	font-size: 24px;
	line-height: 1;
}

.home-visit > p, .home-hours > p {
  margin: 0;
  text-align: center;
}

.home-visit h3, .home-hours h3 {
	margin: 0 0 6px 0;
	font-family: "Type No. 2 WF", Rockwell, "Courier Bold", Courier, Georgia, Times, "Times New Roman", serif;
	font-size: 16px;
	font-weight: normal;
}

.home-visit em, .home-hours em {
	font-family: "Matchwood WF", Georgia, Times, "Times New Roman", serif;
	font-weight: bold;
	font-style: italic;
}

.home-visit a {
	font-family: "Type No. 3 WF", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
	font-weight: bold;
	font-style: normal;
	text-decoration: none;
}

.home-hours {
	width: 423px;
	padding: 5px 4px 0 6px;
	border-top: 0 solid #000;
	border-right: 0 solid #000;
	border-bottom: 0 solid #000;
	border-left: 3px solid #000;
	-moz-border-image: url('img/border-vert.png') 30 30 repeat;
	-webkit-border-image: url('img/border-vert.png') 30 30 repeat;
	-o-border-image: url('img/border-vert.png') 30 30 repeat;
	border-image: url('img/border-vert.png') 30 30 repeat;
}

.home-quote {
	margin-top: 8px;
	padding: 12px 10px 8px 1px;
	border-top: 3px solid #000;
	border-bottom: 0 solid #000;
	-moz-border-image: url('img/border-horiz.png') 30 30 repeat;
	-webkit-border-image: url('img/border-horiz.png') 30 30 repeat;
	-o-border-image: url('img/border-horiz.png') 30 30 repeat;
	border-image: url('img/border-horiz.png') 30 30 repeat;
	text-align: center;
	font-family: "Matchwood WF", Georgia, Times, "Times New Roman", serif;
	font-size: 53px;
	font-weight: bold;
}

.home-quote-slides {
  display: table; /* Necessary to vertically center the child element */
  margin: 0;
  padding: 0;
  height: 236px; /* Allow space for child element to adjust */
  list-style: none;
}

.home-quote-slides li {
  display: table-cell; /* Necessary for vertical-align to work */
  vertical-align: middle;
}

.home-quote-slides li p {
  margin: 0;
  text-align: center;
}

.home-quote-slides li p em {
  display: block;
	margin: 0;
	text-align: center;
	font-family: "Matchwood WF", Georgia, Times, "Times New Roman", serif;
	font-size: 24px;
	font-weight: normal;
  font-style: normal;
}

.home-bottle {
	display: table-cell;
	position: relative;
	width: 200px;
}

.home-bottle-slides {
  margin: 0;
  list-style: none;
}

.home-bottle-slides img {
	display: block;
	width: 54.2%;
	margin: 12px auto;
}

.home-bottle-arrow {
	display: block;
	position: absolute;
	top: 40px;
	padding: 10px;
}

.home-bottle-prev {
	left: 10px;
}

.home-bottle-next {
	right: 4px;
}

.home-social-top-border {
	margin-top: -3px; /* Overlap with vertical border */
	border-top: 5px solid #000;
	border-bottom: 0 solid #000;
	-moz-border-image: url('img/border-horiz-double.png') 6 3 8 3 repeat;
	-webkit-border-image: url('img/border-horiz-double.png') 6 3 8 3 repeat;
	-o-border-image: url('img/border-horiz-double.png') 6 3 8 3 repeat;
	border-image: url('img/border-horiz-double.png') 6 3 8 3 repeat;
}

.home-social {
  display: table;
	border-top: 0 solid #000;
	border-bottom: 3px solid #000;
	-moz-border-image: url('img/border-horiz.png') 5 4 3 3 repeat;
	-webkit-border-image: url('img/border-horiz.png') 5 4 3 3 repeat;
	-o-border-image: url('img/border-horiz.png') 5 4 3 3 repeat;
	border-image: url('img/border-horiz.png') 5 4 3 3 repeat;
}

.home-social .widget {
  margin: 0;
  padding: 0;
}

.home-social .widget-title {
  display: none;
}

.home-social .srp-widget-container, .home-social .really_simple_twitter_widget {
  border: 0;
  margin: 0;
  padding: 0;
}

.home-social-blog, .home-social-twitter {
	display: table-cell;
	vertical-align: top;
	width: 49%;
	padding: 9px 8px 5px 7px;
	text-align: center;
	font-family: "Type No. 3 WF", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
	font-size: 14px;
	line-height: 1.1;
}

.home-social-twitter {
	border-top: 0;
	border-right: 0 solid #000;
	border-bottom: 0;
	border-left: 3px solid #000;
	-moz-border-image: url('img/border-vert.png') 30 30 repeat;
	-webkit-border-image: url('img/border-vert.png') 30 30 repeat;
	-o-border-image: url('img/border-vert.png') 30 30 repeat;
	border-image: url('img/border-vert.png') 30 30 repeat;
}

.home-social-blog h4 {
  display: inline;
}

.home-social-blog .srp-widget-date:after {
  content: ". ";
}

.home-social p {
  display: inline;
}

.home .inner-container-bottom-border {
  display: none;
}

/* Detail page */
.detail-top-container {
  display: table;
}

.detail-sub-container {
	display: table-cell;
	vertical-align: top;
	width: 500px;
	border-right: 3px solid #000;
	border-left: 0 solid #000;
	-moz-border-image: url('img/border-vert.png') 30 30 repeat;
	-webkit-border-image: url('img/border-vert.png') 30 30 repeat;
	-o-border-image: url('img/border-vert.png') 30 30 repeat;
	border-image: url('img/border-vert.png') 30 30 repeat;
}

.detail-bottle-nav {
  display: none; /* Hidden per Nat's request, 8/20/2014 */
	padding: 3px 4px 1px 5px;
	text-align: center;
	border-top: 0 solid #000;
	border-bottom: 3px solid #000;
	-moz-border-image: url('img/border-horiz.png') 30 30 repeat;
	-webkit-border-image: url('img/border-horiz.png') 30 30 repeat;
	-o-border-image: url('img/border-horiz.png') 30 30 repeat;
	border-image: url('img/border-horiz.png') 30 30 repeat;
}

.detail-bottle-nav-text {
	position: relative;
	top: -3px;
	font-size: 16px;
}

.detail-bottle-arrow-prev {
	float: left;
}

.detail-bottle-arrow-next {
	float: right;
}

.detail-cider-logo-container {
	padding: 11px 12px 10px 0;
	border-top: 0 solid #000;
	border-bottom: 3px solid #000;
	-moz-border-image: url('img/border-horiz.png') 30 30 repeat;
	-webkit-border-image: url('img/border-horiz.png') 30 30 repeat;
	-o-border-image: url('img/border-horiz.png') 30 30 repeat;
	border-image: url('img/border-horiz.png') 30 30 repeat;
}

.detail-cider-logo-container img {
  display: block;
  margin: 0 auto;
}

.detail-cider-stats, .detail-cider-availability {
	display: table-cell;
	vertical-align: top;
	padding: 8px 0 3px 1px;
	text-align: center;
	font-family: "Type No. 2 WF", Rockwell, "Courier Bold", Courier, Georgia, Times, "Times New Roman", serif;
	font-size: 16px;
	line-height: 1;
	color: #77a451;
}

.detail-cider-stats p, .detail-cider-availability p {
	margin: 0 0 2px 0;
	text-align: center;
	line-height: 1;
	color: #77a451;
}

.detail-cider-stats strong, .detail-cider-availability strong {
	display: block;
	margin: 0;
	font-family: "Muleshoe WF", /*"Gatlin WF",*/ Rockwell, "Courier Bold", Courier, Georgia, Times, "Times New Roman", serif;
	font-weight: bold;
	font-size: 20px;
}

.detail-cider-stats-heading {
  display: block;
  margin-top: 2px;
  font-family: "Type No. 2 WF", Rockwell, "Courier Bold", Courier, Georgia, Times, "Times New Roman", serif;
  font-size: 16px;
  font-weight: normal;
}

.detail-cider-stats {
	width: 275px;
}

.detail-cider-availability {
	width: 217px;
	padding: 7px 0;
	border-top: 0 solid #000;
	border-right: 0 solid #000;
	border-bottom: 0 solid #000;
	border-left: 3px solid #000;
	-moz-border-image: url('img/border-vert.png') 30 30 repeat;
	-webkit-border-image: url('img/border-vert.png') 30 30 repeat;
	-o-border-image: url('img/border-vert.png') 30 30 repeat;
	border-image: url('img/border-vert.png') 30 30 repeat;
}

.detail-cider-description {
	padding: 9px 17px 7px 0;
	border-top: 3px solid #000;
	border-bottom: 0 solid #000;
	-moz-border-image: url('img/border-horiz.png') 30 30 repeat;
	-webkit-border-image: url('img/border-horiz.png') 30 30 repeat;
	-o-border-image: url('img/border-horiz.png') 30 30 repeat;
	border-image: url('img/border-horiz.png') 30 30 repeat;
	text-align: justify;
	font-family: "IM FELL Double Pica PRO", Georgia, Times, "Times New Roman", serif;
	font-size: 20px;
	line-height: 1.2;
	letter-spacing: normal;
}

.detail-cider-pairing {
	margin-top: -1px;
	padding: 8px 3px 7px 6px;
	border-top: 3px solid #000;
	border-bottom: 0 solid #000;
	-moz-border-image: url('img/border-horiz.png') 30 30 repeat;
	-webkit-border-image: url('img/border-horiz.png') 30 30 repeat;
	-o-border-image: url('img/border-horiz.png') 30 30 repeat;
	border-image: url('img/border-horiz.png') 30 30 repeat;
	text-align: justify;
	font-family: "IM FELL Double Pica PRO", Georgia, Times, "Times New Roman", serif;
	font-size: 20px;
	line-height: 1.2;
	letter-spacing: normal;
}

.detail-cider-pairing p {
  display: inline;
}

.detail-bottle {
	display: table-cell;
	width: 176px;
	padding: 10px;
}

.detail-bottle img {
	display: block;
	margin: 0 auto;
}

/* Cider List Page */
.list-series-description {
	padding: 13px 0 0 0;
	text-align: justify;
	font-family: "IM FELL Double Pica PRO", Georgia, Times, "Times New Roman", serif;
	font-size: 20px;
}

.list-series-description h2 {
	margin: 0;
	text-align: left;
	font-family: "Type No. 8 WF", "Bodoni MT", Didot, "Didot LT STD", "Hoefler Text", Garamond, "Times New Roman", serif;
	font-size: 52px;
  font-weight: normal;
	text-transform: uppercase;
	letter-spacing: normal;
  -webkit-transform: translate3d(0px, 0px, 0px); /* Force iOS Safari put this and transformed child in same z-index */
  transform: translate3d(0px, 0px, 0px);
}

.list-series-description h2 + p {
	margin: -3px 0 23px 0;
}

.list-series-description img {
	padding-left: 6px;
}

.list-series-description p {
	margin-top: 5px;
}

.list-cider-list {
	margin: 0 0 17px 0;
	padding-left: 0;
	list-style: none;
}

.list-cider-list .entry-content,
.list-cider-list .hentry {
  margin: 0;
}

.list-cider-list h1 {
  display: none;
}

.list-cider-list li {
	padding-top: 15px;
	border-top: 3px solid #000;
	border-bottom: 0 solid #000;
	-moz-border-image: url('img/border-horiz.png') 30 30 repeat;
	-webkit-border-image: url('img/border-horiz.png') 30 30 repeat;
	-o-border-image: url('img/border-horiz.png') 30 30 repeat;
	border-image: url('img/border-horiz.png') 30 30 repeat;
}

.list-cider-list .detail-cider-top {
  display: table;
  width: 100%;
  text-align: center;
}

.list-cider-list .detail-cider-top > a {
  display: table-cell;
}

.list-cider-list li img {
	display: block;
	width: 392px;
	padding: 0 15px 0 0;
	border-right: 2px solid #000;
	border-left: 0 solid #000;
	-moz-border-image: url('img/border-vert.png') 30 30 repeat;
	-webkit-border-image: url('img/border-vert.png') 30 30 repeat;
	-o-border-image: url('img/border-vert.png') 30 30 repeat;
	border-image: url('img/border-vert.png') 30 30 repeat;
}

.list-cider-list li .detail-cider-sub-container {
	display: table-cell;
	vertical-align: middle;
	width: 275px;
	text-align: center;
	padding-right: 3px;
}

.list-cider-list li .detail-cider-sub-container .detail-cider-stats,
.list-cider-list li .detail-cider-sub-container .detail-cider-availability {
	width: auto;
	margin: 0;
	padding: 0;
	border: 0;
}

.list-cider-list li .detail-cider-sub-container .detail-cider-stats {
	margin-bottom: 5px;
}

.list-cider-list li .list-cider-list-description {
	margin-top: 7px;
	text-align: justify;
	font-family: "IM FELL Double Pica PRO", Georgia, Times, "Times New Roman", serif;
	font-size: 20px;
}

/* Cider Landing page */
.cider-landing-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.cider-landing-list .hentry,
.cider-landing-list .entry-content {
  margin: 0;
}

.cider-landing-list h1 {
  display: none;
}

.cider-landing-list li {
	border-top: 3px solid #000;
	border-right: 0;
	border-bottom: 0 solid #000;
	border-left: 0;
	-moz-border-image: url('img/border-horiz.png') 30 30 repeat;
	-webkit-border-image: url('img/border-horiz.png') 30 30 repeat;
	-o-border-image: url('img/border-horiz.png') 30 30 repeat;
	border-image: url('img/border-horiz.png') 30 30 repeat;
}

.cider-landing-list li:first-child {
	border-top: 0;
}

.cider-landing-list li h3,
.cider-landing-list li h3 a {
	margin: 0 0 -5px 0;
	padding: 14px 0 0 0;
	text-align: left;
	font-family: "Type No. 8 WF", "Bodoni MT", Didot, "Didot LT STD", "Hoefler Text", Garamond, "Times New Roman", serif;
	font-size: 49px;
	font-weight: normal;
  font-style: normal;
	text-transform: uppercase;
  text-decoration: none;
	letter-spacing: normal;
  -webkit-transform: translate3d(0px, 0px, 0px); /* Force iOS Safari put this and transformed child in same z-index */
  transform: translate3d(0px, 0px, 0px);
}

.cider-landing-list p {
	margin: 0 0 16px 0;
	text-align: justify;
	font-family: "IM FELL Double Pica PRO", Georgia, Times, "Times New Roman", serif;
	font-size: 20px;
}

.cider-landing-list-img {
	display: block;
	margin: -8px auto -1px auto;
}

/* Blog page */
.blog-nav {
	margin: 0 4px 0 1px;
	padding: 0 0 2px 0;
	border-top: 0;
	border-right: 0;
	border-bottom: 3px solid #000;
	border-left: 0;
	-moz-border-image: url('img/border-horiz.png') 30 30 repeat;
	-webkit-border-image: url('img/border-horiz.png') 30 30 repeat;
	-o-border-image: url('img/border-horiz.png') 30 30 repeat;
	border-image: url('img/border-horiz.png') 30 30 repeat;
}

.blog-nav img {
	padding: 3px 6px;
	vertical-align: top;
}

.blog-nav-prev a, .blog-nav-next a {
	font-family: "IM FELL Double Pica PRO", Georgia, Times, "Times New Roman", serif;
	font-size: 16px;
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
}

.blog-nav-prev {
	float: left;
}

.blog-nav-next {
	float: right;
}

.blog .entry-content, .single .entry-content {
  width: 680px;
  overflow: auto;
}

.entry-meta {
	text-align: center;
	font-size: 16px;
	font-style: italic;
}

.share-container {
	margin: 22px 0 8px 0;
	text-align: center;
}

.share-text {
	margin-right: 12px;
	display: inline-block;
	font-size: 18px;
	font-weight: bold;
	font-style: italic;
}

.share-list {
	display: inline-block;
	list-style: none;
	margin: 0;
	padding: 0;
}

.share-list li {
	display: inline-block;
	padding: 0;
}

.share-list li:after {
	content: "-";
	margin: 0 5px 0 7px;
}

.share-list li:last-child:after {
	display: none;
}

.share-list li a {
	font-size: 18px;
	font-weight: bold;
	font-style: italic;
	text-transform: uppercase;
	letter-spacing: normal;
	text-decoration: none;
}

.share-list li iframe {
  height: 21px !important;
  vertical-align: middle;
  overflow: hidden;
}

/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/
.sticky {
}
.hentry {
	margin: 0 0 1.5em;
}
.byline,
.updated {
	display: none;
}
.single .byline,
.group-blog .byline {
	display: inline;
}
.page-content,
.entry-content,
.entry-summary {
	margin: 0;
}
.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}
.bypostauthor {
}

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

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

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

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

/*--------------------------------------------------------------
12.2 Media Queries
--------------------------------------------------------------*/
@media only screen and (max-width: 420px) {
  /* Containers */
  .outer-container {
    min-width: 312px;
  }
  .middle-container {
    position: relative;
  }
  .inner-container {
    width: 312px;
    margin: 7px auto 1px auto;
    padding: 11px 12px 16px 12px;
  }
  #primary,
  .home #primary {
    width: auto;
    padding: 0;
    border: 0;
		display: block; /*to correct text-wrapping issues on some pages. */
  }

  #secondary {
    display: none;
  }

  /* Nav */
  #menu-main, .home #menu-main {
    display: block;
    position: absolute;
    top: 30px;
    left: -270px;
    width: 270px;
    padding: 0;
    text-align: center;
  }
  .csstransforms3d.csstransitions .middle-container {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 500ms ease;
    -moz-transition: -moz-transform 500ms ease;
    -o-transition: -o-transform 500ms ease;
    transition: transform 500ms ease;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .csstransforms3d.csstransitions .middle-container.nav-visible {
    -webkit-transform: translate3d(270px, 0, 0) scale3d(1, 1, 1);
    -moz-transform: translate3d(270px, 0, 0) scale3d(1, 1, 1);
    -ms-transform: translate3d(270px, 0, 0) scale3d(1, 1, 1);
    -o-transform: translate3d(270px, 0, 0) scale3d(1, 1, 1);
    transform: translate3d(270px, 0, 0) scale3d(1, 1, 1);
  }
  .home #menu-main li,
  #menu-main li {
    display: block;
    margin: 0;
  }
  #menu-main li:after {
    display: none;
  }
  #menu-main li a {
    color: #fff;
  }
  #menu-main li ul {
    position: relative;
    top: 0;
    width: 100%;
    margin: 5px 0 10px 0;
    border: none;
    background: none;
  }
  #menu-main li:hover ul {
    display: none;
  }
  #menu-main li ul li a {
    padding: 0 0 0 15px;
    color: #ffc701;
  }
  #menu-main li ul li:hover {
    background: none;
  }
  .home #menu-extra,
  #menu-extra { /* secondary nav */
    display: block;
    position: absolute;
    top: 191px;
    left: -270px;
    width: 185px;
    margin: 0 0 0 40px;
    padding: 13px 9px 10px 11px;
    border-top: 6px solid #fff;
    border-bottom: 0;
    -moz-border-image: url('img/border-horiz-double-reverse.png') 6 3 8 3 repeat;
    -webkit-border-image: url('img/border-horiz-double-reverse.png') 6 3 8 3 repeat;
    -o-border-image: url('img/border-horiz-double-reverse.png') 6 3 8 3 repeat;
    border-image: url('img/border-horiz-double-reverse.png') 6 3 8 3 repeat;
  }
  #menu-extra li {
    display: block;
    margin: 0;
  }
  #menu-extra li a {
    display: block;
    padding: 3px 0;
    color: #fff;
  }
  #menu-extra .current-menu-item {
    border: none;
  }
  #mobile-nav-button {
    display: block;
    cursor: pointer;
  }
  #mobile-nav-button.subpage {
    display: inline-block;
    position: relative;
    top: 4px;
    left: 16px;
    margin: 0;
    font-size: 22px;
  }
  #mobile-nav-close {
    display: block;
  }
  #site-navigation {
    display: block; /* inline-block causes blank space, so use block by default */
  }
  #site-navigation.subpage {
    display: inline-block; /* this is used on subpages to correctly position the menu button */
  }

  /* Homepage content */
  .home-mission,
  .home-quote,
  .home-bottle,
  .home-social {
    display: none;
  }
  .home-announcement {
    margin: 1px 0 0 0;
    padding: 0 0 6px 0;
    font-family: "IM FELL Double Pica PRO", Georgia, Times, "Times New Roman", serif;
    font-size: 20px;
    font-weight: normal;
    line-height: 1.2em;
  }
  .home-announcement p,
  .home-announcement p a {
    padding: 0;
    color: #000 !important;
  }
  .home-explore-sm {
    margin: 7px 0 10px 0;
    display: block;
    text-align: center;
  }
  .home-explore-sm a {
    font-family: "Type No. 8 WF", "Bodoni MT", Didot, "Didot LT STD", "Hoefler Text", Garamond, "Times New Roman", serif;
    font-size: 30px;
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    text-transform: uppercase;
    text-decoration: none;
  }
  .home-explore-sm-inner {
    font-size: 56px;
    font-style: normal;
    line-height: 0.85em;
  }
  .home-explore-sm-underline {
    margin: -6px 10px 0 10px;
    border-bottom: 1px solid black;
  }
  .home-sub-container {
    width: auto;
    height: auto;
    border-right: 0;
    border-left: 0;
  }
  .home-visit, .home-hours {
    width: 100%;
    padding: 8px 0px 9px 0px;
    border-right: 0;
    border-left: 0;
    font-size: 20px;
  }
  .home-visit h3, .home-hours h3 {
    margin-bottom: 3px;
    font-size: 15px;
  }
  .home-visit {
    padding-bottom: 7px;
    border-top: 3px solid #000;
    border-bottom: 3px solid #000;
    border-image: url('img/border-horiz.png') 30 30 repeat;
  }

  /* Ciders landing page content */
  .cider-landing-list li {
    padding: 12px 0 0 0;
  }
  .cider-landing-list li:first-child {
    padding: 0;
  }
  .cider-landing-list li h3 {
    margin: 16px 0 15px 0;
    padding: 8px 0 5px 0;
    font-size: 18px !important;
    text-align: center;
    border-top: 5px solid #000;
    border-bottom: 5px solid #000;
    -moz-border-image: url('img/border-horiz-double-alt.png') 5 2 7 1 repeat;
    -webkit-border-image: url('img/border-horiz-double-alt.png') 5 2 7 1 repeat;
    -o-border-image: url('img/border-horiz-double-alt.png') 5 2 7 1 repeat;
    border-image: url('img/border-horiz-double-alt.png') 5 2 7 1 repeat;
  }
  .cider-landing-list li h3 a {
    padding: 0;
    font-size: 18px !important;
  }
  .cider-landing-list .flip {
    top: -3px;
    font-size: 18px !important;
  }

  /* Cider series page content */
  .list-series-description {
    padding: 0;
  }
  .list-series-description h2 {
    margin: 16px 0 15px 0;
    padding: 8px 0 5px 0;
    font-size: 18px !important;
    text-align: center;
    border-top: 5px solid #000;
    border-bottom: 5px solid #000;
    -moz-border-image: url('img/border-horiz-double-alt.png') 5 2 7 1 repeat;
    -webkit-border-image: url('img/border-horiz-double-alt.png') 5 2 7 1 repeat;
    -o-border-image: url('img/border-horiz-double-alt.png') 5 2 7 1 repeat;
    border-image: url('img/border-horiz-double-alt.png') 5 2 7 1 repeat;
  }
  .list-series-description h2 .flip {
    top: -3px;
    font-size: 18px !important;
  }
  .list-series-description p {
    display: none;
  }
  .list-cider-list li {
    margin: 10px 0 0 0;
    padding: 8px 0 0 0;
  }
  .list-cider-list li:first-child {
    padding: 0;
    border: 0;
  }
  .list-cider-list .detail-cider-top {
    display: block;
  }
   .list-cider-list .detail-cider-top > a {
    display: block;
  }
  .list-cider-list li img {
    margin: 0 0 10px 0;
    padding: 0;
    border-right: 0;
    border-bottom: 2px solid #000;
  }

  /* Cider detail page content */
  .detail-bottle {
    display: none;
  }
  .detail-sub-container {
    display: block;
    width: auto;
    border-right: 0;
  }
  .detail-cider-logo-container {
    width: 100%;
    padding: 10px 0 0 2px;
    border-bottom: 0;
  }
  .detail-cider-stats {
    width: 100%;
  }
  .detail-cider-availability {
    width: 100%;
    border-left: 0;
  }
  .detail-cider-description {
    padding: 10px 0;
    border-top: 0;
  }
  .detail-cider-pairing {
    padding: 10px 0;
  }

  /* Blog page content */
  .blog .entry-content, .single .entry-content {
    width: 260px;
    overflow: auto;
  }

  /* Footer */
  .footer {
    width: 270px;
    margin: -4px auto 19px auto;
    padding: 0;
    border: none;
  }
  .footer-top-border,
  .footer .footer-first,
  .footer .footer-social-followers {
    display: none;
  }
  .footer-roger-sm {
    display: block;
    margin: 0 auto;
  }
  .footer .footer-social {
    padding: 0;
    margin: 0 20px 0 0;
  }
  .footer .footer-social:after {
    top: -1px;
    right: -18px;
    content: "\b7\a0";
    font-size: 26px;
  }
  .footer .footer-mobile-break {
    margin-right: 0;
  }
  .footer .footer-mobile-break:after {
    display: none;
  }
   .footer .footer-social-service a {
    font-family: "IM FELL Double Pica PRO", Georgia, Times, "Times New Roman", serif;
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
    letter-spacing: 0.01em;
    text-transform: none;
  }
}
