/*
Theme Name: Show Off
Theme URI: http://www.woothemes.com/
Version: 1.2.5
Description: Designed by <a href="http://www.woothemes.com">WooThemes</a>.
Author: WooThemes
Author URI: http://www.woothemes.com
Tags: woothemes

	Copyright: (c) 2009-2011 WooThemes.
	License: GNU General Public License v2.0
	License URI: http://www.gnu.org/licenses/gpl-2.0.html

*/
/*

WARNING! DO NOT EDIT THIS FILE!

To make it easy to update your theme, you should not edit the styles in this file. Instead use
the custom.css file to add your styles. You can copy a style from this file and paste it in
custom.css and it will override the style in this file. You have been warned! :)

LAYOUT
Layout styles for desktop orientations is included in css/layout.css.

*/
/*------------------------------------------------------------------------------------------*/
/* LESS MIXINS */
/*------------------------------------------------------------------------------------------*/
/**
 * Variables
 */
/**
 * Functions
 */
/**
 * Mixins
 */
/**
 * Animations
 */
@-webkit-keyframes spin-360 {
  from {
    -webkit-transform: rotate(0);
    /* Saf3.1+, Chrome */
    -moz-transform: rotate(0);
    /* FF3.5+ */
    -ms-transform: rotate(0);
    /* IE9 */
    -o-transform: rotate(0);
    /* Opera 10.5 */
    transform: rotate(0);
    zoom: 1;
  }
  50% {
    -webkit-transform: rotate(180deg);
    /* Saf3.1+, Chrome */
    -moz-transform: rotate(180deg);
    /* FF3.5+ */
    -ms-transform: rotate(180deg);
    /* IE9 */
    -o-transform: rotate(180deg);
    /* Opera 10.5 */
    transform: rotate(180deg);
    zoom: 1;
  }
  to {
    -webkit-transform: rotate(0);
    /* Saf3.1+, Chrome */
    -moz-transform: rotate(0);
    /* FF3.5+ */
    -ms-transform: rotate(0);
    /* IE9 */
    -o-transform: rotate(0);
    /* Opera 10.5 */
    transform: rotate(0);
    zoom: 1;
  }
}
/*------------------------------------------------------------------------------------------*/
/* 0. RESET */
/*------------------------------------------------------------------------------------------*/
/* RESET - http://meyerweb.com/eric/tools/css/reset/ | v2.0 | 20110126 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
  display: block;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* Hand cursor on clickable input elements */
label,
input[type="button"],
input[type="submit"],
input[type="image"],
button {
  cursor: pointer;
}
/* Bicubic resizing for non-native sized IMG: code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img {
  -ms-interpolation-mode: bicubic;
}
/* www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */
textarea {
  overflow: auto;
}
/* Webkit browsers add a 2px margin outside the chrome of form elements */
button,
input,
select,
textarea {
  margin: 0;
}
/* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
  background: #fafafa;
  border: 1px solid #f6f6f6;
  padding: 10px;
  margin-bottom: 20px;
}
/* Normalize monospace sizing: en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome */
pre,
code,
kbd,
samp {
  font-family: monospace, sans-serif;
}
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover,
a:active {
  outline: none;
}
/* Set sub, sup without affecting line-height: gist.github.com/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}
sup {
  font-size: 50%;
  vertical-align: super;
}
sub {
  font-size: 50%;
  vertical-align: sub;
}
/*------------------------------------------------------------------------------------------*/
/* 1. SETUP */
/*------------------------------------------------------------------------------------------*/
/* Defaults */
html {
  height: 100%;
  font-size: 62.5%;
}
body {
  font-size: 1.6em;
  line-height: 1.618;
  color: #222222;
  font-family: "Lato", sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  position: relative;
  background: #000000;
  word-wrap: break-word;
}
#wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
}
#inner-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */
  padding: 0 1.618em;
  -webkit-transition: left ease 0.5s 0s;
  -moz-transition: left ease 0.5s 0s;
  -ms-transition: left ease 0.5s 0s;
  -o-transition: left ease 0.5s 0s;
  transition: left ease 0.5s 0s;
  background: #fff;
}
::selection,
::-moz-selection {
  background: #ef4444;
  color: #fff;
}
img {
  vertical-align: bottom;
  max-width: 100%;
}
hr {
  background-color: #f6f6f6;
  border: 0;
  height: 1px;
  margin-bottom: 1.618em;
}
/* Hyperlinks */
a {
  color: #ef4444;
  text-decoration: none;
}
a:hover {
  color: #cd2222;
}
a img:hover {
  opacity: 0.75;
}
/* Typography */
/*
	All typography (and layout) based on a modular scale using 12 & 14 px values scaled in accordance the golden ratio (1.618)
	http://modularscale.com/scale/?px1=14&px2=12&ra1=1.618&ra2=0
	Remember to keep margins consistent and try to avoid margin-top. If everything has an appropriate margin-bottom we don't need one and vertical rhythm will be kept consistent
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lato", sans-serif;
  color: #000000;
  margin: 0 0 .618em;
  font-weight: 600;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  text-decoration: none;
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
  color: #ef4444 !important;
}
h1 {
  font-size: 3.631em;
  line-height: 1.2em;
}
h2 {
  font-size: 1.618em;
  line-height: 1.387em;
}
h3 {
  font-size: 1.387em;
}
h4 {
  font-size: 1em;
}
h5 {
  font-size: 1em;
}
h6 {
  font-size: 0.857em;
}
p {
  -webkit-hyphens: auto;
  -webkit-hyphenate-character: "\2010";
  -webkit-hyphenate-limit-after: 1;
  -webkit-hyphenate-limit-before: 3;
  -moz-hyphens: manual;
  orphans: 3;
  widows: 3;
}
ul,
ol,
dl,
p,
table,
form,
pre,
hr {
  margin: 0 0 1.618em 0;
}
li > ul,
li > ol {
  margin: 0 0 0 1.618em;
}
dl dt {
  font-weight: bold;
}
dl dd {
  margin-bottom: 1.618em;
}
/*
@font-face icons
- Used for the subscribe & connect social icons. If you would like to add more icons to the font, you can do so by rebuilding the font at http://keyamoon.com/icomoon/app/ and replace the existing font files in the theme with the new ones.
*/
@font-face {
  font-family: 'Social';
  font-weight: normal;
  font-style: normal;
  src: url('includes/fonts/social.eot');
  src: url('includes/fonts/social.eot#iefix') format('embedded-opentype'), url('includes/fonts/social.woff') format('woff'), url('includes/fonts/social.ttf') format('truetype'), url('includes/fonts/social.svg') format('svg');
}
@font-face {
  font-family: 'FontAwesome';
  src: url('includes/fonts/fontawesome-webfont.eot');
  src: url('includes/fonts/fontawesome-webfont.eot#iefix') format('embedded-opentype'), url('includes/fonts/fontawesome-webfont.woff') format('woff'), url('includes/fonts/fontawesome-webfont.ttf') format('truetype'), url('includes/fonts/fontawesome-webfont.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}
/*------------------------------------------------------------------------------------------*/
/* 2. STRUCTURE */
/*------------------------------------------------------------------------------------------*/
/* Header */
#header {
  padding: 5.874em 0 0 0;
  clear: both;
}
#header #sidebar-footer {
  display: none;
  visibility: hidden;
}
#header #logo {
  float: left;
  margin-bottom: 1.618em;
  max-width: 100%;
}
#header .site-title,
#header .site-description {
  color: #000;
  display: none;
  text-align: center;
}
#header .site-title a,
#header .site-description a {
  color: #000000;
  text-transform: none;
  font-weight: normal;
  text-decoration: none;
}
#header .site-title {
  margin-bottom: 0;
  word-wrap: break-word;
}
#header .site-description {
  margin-bottom: 1.618em;
}
#header .site-header {
  margin: 0 0 2.618em;
  width: 100%;
}
#header .site-header:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
#header .site-header img {
  float: left;
  margin: 0 1.387em 0 0;
  -webkit-border-radius: 300px;
  border-radius: 300px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#header .site-header .title-group {
  float: left;
}
#header .site-header .title-group .site-title {
  margin: 0 0 .09em;
  line-height: .5em;
}
#header #about {
  margin: 0 0 2.244em;
  font-size: 1.1em;
  clear: both;
}
#header #about p {
  margin: 0;
}
#header .nav-toggle {
  position: absolute;
  top: 1em;
  left: 1em;
  cursor: pointer;
}
#header .nav-toggle:after {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 100%;
  margin-left: .618em;
  font-weight: normal;
  line-height: 1em;
  width: 1em;
  text-align: right;
  content: "\f0c9";
  background: #ef4444;
  color: #ffffff;
  height: 1.5em;
  width: 1.5em;
  text-align: center;
  line-height: 1.5;
  font-size: 1.618em;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  margin-left: 0;
}
#header .nav-toggle a {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
}
#header .nav-toggle a:hover {
  text-decoration: none;
}
#header .nav-toggle span {
  display: none;
}
#header .site-description {
  color: #3c3c3c;
  font-family: "Droid Serif", sans-serif;
  font-style: italic;
}
#header #topad {
  float: right;
}
#main {
  margin: 0 0 5.874em;
}
/* Sidebar */
#sidebar {
  overflow: hidden;
}
#sidebar .secondary {
  float: left;
  margin-right: 20px;
}
#sidebar .secondary.last {
  margin: 0;
}
/* Footer */
#footer {
  padding: 1.618em 0 0;
  border-top: 2px solid #f6f6f6;
  color: #3c3c3c;
}
#footer p img {
  float: right;
  margin-top: -7px;
}
#footer-widgets {
  border-top: 1px solid #f6f6f6;
  padding: 2.618em 0;
}
.cloned-footer {
  margin: 0 0 3.631em;
}
/*------------------------------------------------------------------------------------------*/
/* 3. HOMEPAGE */
/*------------------------------------------------------------------------------------------*/
.home-section {
  margin: 0 0 4.236em;
  padding: 0 0 4.236em;
  border-bottom: 2px solid #f6f6f6;
}
.home-section h1 {
  margin: 0 0 1em;
  font-size: 2.618em;
}
.home-section#intro-message h1 {
  font-size: 1.387em;
}
.home-section#intro-message p {
  font-size: 1em;
}
.home-section#intro-message .button {
  padding: .857em 2.244em;
  font-size: 1em;
  font-weight: bold;
}
.home-section#hero-product {
  overflow: hidden;
  position: relative;
}
.home-section#hero-product .onsale {
  -webkit-transform: rotate(45deg);
  /* Saf3.1+, Chrome */
  -moz-transform: rotate(45deg);
  /* FF3.5+ */
  -ms-transform: rotate(45deg);
  /* IE9 */
  -o-transform: rotate(45deg);
  /* Opera 10.5 */
  transform: rotate(45deg);
  zoom: 1;
  box-shadow: 2px 0 5px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 2px 0 5px 0 rgba(0, 0, 0, 0.15);
}
.home-section#hero-product .hero-image {
  margin: 0 0 1.618em;
}
.home-section#hero-product .hero-image img {
  height: auto;
}
.home-section#hero-product .widget-title {
  float: left;
}
.home-section#hero-product .widget-title a {
  color: #222222;
}
.home-section#hero-product .price-wrap {
  float: right;
  clear: none!important;
}
.home-section#hero-product .hero-excerpt div {
  clear: both;
}
.home-section#hero-product .button {
  margin: 0 1em 1em 0;
  font-weight: bold;
  font-size: 1em;
}
.home-section#blog-posts {
  padding: 0;
}
.home-section#blog-posts:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
.home-section#blog-posts article {
  border: none;
  padding: 0;
}
.home-section#blog-posts article .image a {
  position: relative;
  display: block;
  margin: 0 0 1.618em;
}
.home-section#blog-posts article .image a img {
  border: none;
}
.home-section#blog-posts article:hover .image a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -10px;
  width: 0;
  height: 0;
  border: 10px solid #fff;
  border-color: transparent transparent #fff transparent;
}
.home-section#blog-posts article header h1 {
  font-size: 1em;
  max-width: 65%;
  float: left;
  clear: left;
}
.home-section#blog-posts article header .post-date {
  display: block;
  float: left;
  font-style: italic;
  max-width: 65%;
  color: #6f6f6f;
}
.home-section#blog-posts article header .comments {
  float: right;
}
.home-section#blog-posts article header .comments a {
  color: #222222;
}
.home-section#blog-posts article header .comments a:before {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 100%;
  margin-right: .618em;
  font-weight: normal;
  line-height: 1em;
  width: 1em;
  content: "\f075";
  font-size: 1.1em;
}
.home-section#blog-posts article header .comments a:hover {
  color: #ef4444;
}
#homepage-area .widget {
  margin: 0 0 4.236em;
  padding: 0 0 4.236em;
  border-bottom: 2px solid #f6f6f6;
}
#homepage-area .widget.widget_woo_component section.home-section {
  margin: 0;
  padding: 0;
  border-bottom: none;
}
#homepage-area .widget > h3 {
  margin: 0 0 1em;
  font-size: 2.618em;
}
.widget_woothemes_features:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
.widget_woothemes_features .feature {
  width: 100%;
  list-style: none;
  margin-bottom: 1.618em;
  float: left;
  clear: left;
}
.widget_woothemes_features .feature:nth-child(2n) {
  float: right;
  clear: none;
}
.widget_woothemes_features .feature h3 a {
  color: #080808;
}
.widget_woothemes_features .feature img {
  margin: 0 0 1.618em;
}
.widget_woothemes_testimonials .quote {
  width: 100%;
  list-style: none;
  margin-bottom: 1.618em;
  text-align: center;
  float: left;
  clear: left;
}
.widget_woothemes_testimonials .quote blockquote {
  text-align: left;
}
.widget_woothemes_testimonials .quote blockquote:before {
  content: '\201C';
  font-size: 3.2em;
  line-height: 0;
  vertical-align: bottom;
  margin: .202em .202em 0 0;
}
.widget_woothemes_testimonials .quote h3 a {
  color: #080808;
}
.widget_woothemes_testimonials .quote a.avatar-link {
  position: relative;
}
.widget_woothemes_testimonials .quote a.avatar-link img {
  margin: 2.244em 0 0 0;
  box-shadow: 0 0 0 3px #f6f6f6;
  -webkit-box-shadow: 0 0 0 3px #f6f6f6;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.widget_woothemes_testimonials .quote .author {
  display: block;
  margin: 1.618em 0 0 0;
  font-weight: 700;
  font-style: normal;
}
.widget_woothemes_testimonials .quote .author .excerpt {
  display: block;
  font-weight: normal;
  font-style: italic;
}
.widget_woothemes_testimonials .quote .author .url {
  display: block;
  font-weight: 400;
  font-size: .9em;
}
.widget_woothemes_testimonials .quote .author .url a {
  color: #555555;
}
/*------------------------------------------------------------------------------------------*/
/* 4. WORDPRESS */
/*------------------------------------------------------------------------------------------*/
#breadcrumbs {
  margin-bottom: 1.618em;
  color: #626262;
}
.home #breadcrumbs {
  display: none;
}
.post .video {
  margin-bottom: 1.618em;
}
.archive-header {
  display: block;
  float: left;
  width: 100%;
  margin: 0 0 3.631em;
  padding: 0 0 1em;
  font-weight: bold;
  border-bottom: 2px solid #f6f6f6;
  text-transform: uppercase;
}
.archive-header h1 {
  font-size: 1em;
}
.archive-description {
  clear: both;
  margin-bottom: 1.618em;
}
.woocommerce-page .entry {
  font-size: 1em!important;
}
body.page #main,
body.single-post #main {
  max-width: 60em;
}
.post,
.type-page {
  margin: 0 0 4.236em;
  padding: 0 0 3.631em;
  border-bottom: 2px solid #f6f6f6;
  /* Images */
}
.post header h1,
.type-page header h1 {
  margin: 0 0 .53em;
  font-weight: 900;
}
.post header h1 a:link,
.type-page header h1 a:link,
.post header h1 a:visited,
.type-page header h1 a:visited {
  color: #000000;
}
.post .post-meta,
.type-page .post-meta {
  margin: 0 0 1em 0;
  color: #626262;
}
.post .post-meta a:link,
.type-page .post-meta a:link,
.post .post-meta a:visited,
.type-page .post-meta a:visited {
  color: #2f2f2f;
}
.post .post-meta a:hover,
.type-page .post-meta a:hover {
  color: #ef4444;
}
.post .post-meta ul,
.type-page .post-meta ul {
  margin: 0;
}
.post .post-meta ul li,
.type-page .post-meta ul li {
  display: inline;
}
.post .post-more,
.type-page .post-more {
  clear: both;
}
.post .post-more a:link,
.type-page .post-more a:link,
.post .post-more a:visited,
.type-page .post-more a:visited {
  color: #2f2f2f;
}
.post .post-more a:hover,
.type-page .post-more a:hover {
  color: #ef4444;
}
.post .post-more .post-more-sep,
.type-page .post-more .post-more-sep {
  margin: 0 10px;
}
.post p.tags,
.type-page p.tags {
  width: 100%;
  clear: both;
}
.post p.tags:before,
.type-page p.tags:before {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 100%;
  margin-right: .618em;
  font-weight: normal;
  line-height: 1em;
  width: 1em;
  content: '\f02c';
}
.post .entry ul,
.type-page .entry ul,
.post .entry ol,
.type-page .entry ol {
  margin-left: 1.618em;
}
.post .entry blockquote,
.type-page .entry blockquote {
  position: relative;
  margin: 0 0 1.618em;
  padding: .53em 0 .53em 2.618em;
  quotes: "\201C" "\201D" "\2018" "\2019";
  font-style: italic;
  color: #555555;
  border-left: 5px solid #5d9d4a;
}
.post .entry blockquote p,
.type-page .entry blockquote p {
  margin: 0;
}
.post .entry blockquote p:before,
.type-page .entry blockquote p:before {
  content: open-quote;
  display: inline;
  font-family: Georgia, serif;
  margin: 0;
}
.post .entry blockquote p:after,
.type-page .entry blockquote p:after {
  content: close-quote;
  display: inline;
  font-family: Georgia, serif;
  margin: 0;
}
.post img,
.type-page img,
.post img.thumbnail,
.type-page img.thumbnail {
  border: 3px solid #f6f6f6;
  max-width: 100%;
  height: auto;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.post img:hover,
.type-page img:hover,
.post img.thumbnail:hover,
.type-page img.thumbnail:hover {
  border-color: #dddddd;
}
.post img.wp-smiley,
.type-page img.wp-smiley {
  padding: 0;
  border: 0;
}
.post .alignleft,
.type-page .alignleft {
  float: left;
  margin: 0 1.618em 1em 0;
}
.post .alignright,
.type-page .alignright {
  float: right;
  margin: 0 0 1em 1.618em;
}
.post .aligncenter,
.type-page .aligncenter {
  display: block;
  text-align: center;
  margin: 0 auto 1.618em;
}
.post .alignnone,
.type-page .alignnone {
  margin: 0 0 2.618em;
}
.post .wp-caption,
.type-page .wp-caption {
  padding: 0;
  font-size: .8em;
  text-align: center;
  max-width: 100%;
}
.post .wp-caption img,
.type-page .wp-caption img {
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
}
.post .wp-caption p,
.type-page .wp-caption p {
  margin: 0 5px;
  padding: .618em 1.618em;
  text-align: right;
  font-size: .857em;
  color: #fff;
  background: #5d9d4a;
}
.post .wp-caption p a,
.type-page .wp-caption p a {
  color: #fff;
  text-decoration: underline;
}
.post .wp-caption p a:hover,
.type-page .wp-caption p a:hover {
  text-decoration: none;
}
.post .wp-caption-text,
.type-page .wp-caption-text {
  margin: 0;
  padding: 0;
  text-align: center;
}
/* Single Post */
.single-post .post {
  margin: 0 0 1em;
  padding: 0 0 4.236em;
}
.single-post .post header h1 {
  margin: 0 0 1em;
  padding: 0 0 .618em;
  border-bottom: 2px solid #f6f6f6;
}
.single-post .entry .alignleft {
  margin-left: -1em;
}
.single-post .entry .alignright {
  margin-right: -1em;
}
/* Pagination */
.nav-entries,
.wp-pagenavi,
.woo-pagination {
  padding: 1em 1.618em;
}
#post-entries,
.nav-entries {
  margin: 0 0 3.631em;
  padding: 1.618em 1em;
  border-top: 2px solid #f6f6f6;
  border-bottom: 2px solid #f6f6f6;
}
#post-entries a,
.nav-entries a {
  display: block;
  color: #222222;
  text-decoration: none;
}
#post-entries a:hover,
.nav-entries a:hover {
  text-decoration: underline;
}
#post-entries .nav-prev a:before {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 100%;
  margin-right: .618em;
  font-weight: normal;
  line-height: 1em;
  width: 1em;
  content: "\f053";
}
#post-entries .nav-next a:after {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 100%;
  margin-left: .618em;
  font-weight: normal;
  line-height: 1em;
  width: 1em;
  text-align: right;
  content: "\f054";
}
#post-entries a:before,
#post-entries a:after {
  width: 30px!important;
  height: 22px;
  padding: 8px 0 0;
  color: #fff;
  background: #ef4444;
  text-align: center!important;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#post-entries a:hover:before,
#post-entries a:hover:after {
  background: #eb1515;
}
.nav-entries .nav-prev:before {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 100%;
  margin-right: .618em;
  font-weight: normal;
  line-height: 1em;
  width: 1em;
  content: "\f053";
}
.nav-entries .nav-next:after {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 100%;
  margin-left: .618em;
  font-weight: normal;
  line-height: 1em;
  width: 1em;
  text-align: right;
  content: "\f054";
}
.nav-entries .nav-prev:before,
.nav-entries .nav-next:after {
  width: 30px!important;
  height: 22px;
  padding: 8px 0 0;
  color: #fff;
  background: #ef4444;
  text-align: center!important;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.nav-entries a:hover .nav-prev:before,
.nav-entries a:hover .nav-next:after {
  background: #eb1515;
}
.woo-pagination {
  margin: 0 0.146em;
  text-align: center;
  text-transform: uppercase;
  font-size: .8em;
  border-top: 2px solid #f6f6f6;
  border-bottom: 2px solid #f6f6f6;
}
.woo-pagination .page-numbers {
  display: inline;
  text-decoration: none;
  color: #222222;
  margin: 0 .53em;
  padding: .327em .857em;
  font-weight: bold;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.woo-pagination .page-numbers.dots {
  background: none;
  border: 0;
}
.woo-pagination .page-numbers:hover {
  background: #fff;
  border-color: #b6b6b6;
}
.woo-pagination .page-numbers.current {
  background: #ef4444;
  border-color: #444444;
  color: #fff;
}
/* Post Author */
#post-author {
  margin: 0 0 2.618em;
  padding: 1.618em 0;
  clear: both;
  color: #6f6f6f;
}
#post-author h3 {
  font-size: 1em;
}
#post-author .profile-image {
  float: right;
  margin: 0 0 .382em 2.244em;
}
#post-author .profile-image img {
  border: 3px solid #f6f6f6;
  -webkit-border-radius: 300px;
  border-radius: 300px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#post-author .profile-link {
  margin: .857em 0 0;
}
#post-author .profile-link a {
  text-transform: uppercase;
  font-size: .78em;
  font-weight: 600;
}
/*------------------------------------------------------------------------------------------*/
/* 5. NAVIGATION */
/*------------------------------------------------------------------------------------------*/
/* Top Nav */
#top,
.top-navigation {
  display: none;
}
/* Navigation */
ul.nav li a {
  padding: .53em 1em;
  display: block;
  color: #222222;
}
ul.nav li a:hover {
  text-decoration: none;
}
ul.nav li.current-menu-item > a {
  background: #ffffff;
  color: #222222;
}
#navigation {
  clear: both;
  margin-bottom: 2.618em;
  width: 80%;
  left: -80%;
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 99999;
  background: #000000;
  padding-top: 4.236em;
  box-shadow: inset -1.618em 0 1.618em -1em #000000;
  -webkit-box-shadow: inset -1.618em 0 1.618em -1em #000000;
}
#navigation .widget_product_search {
  margin: 0;
  border-top: 1px solid #000000;
}
#navigation .widget_product_search #searchform {
  border-left: 0;
  border-right: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  padding: .618em 1em;
  margin: 0;
  border-bottom: 1px solid #000000;
  border-top: 1px solid #111111;
  background-color: #080808;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#080808), to(#000000));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #080808, #000000);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #080808, #000000);
  /* FF3.6+ */
  background-image: -ms-linear-gradient(top, #080808, #000000);
  /* IE10 */
  background-image: -o-linear-gradient(top, #080808, #000000);
  /* Opera 11.10+ */
  background-image: linear-gradient(to bottom, #080808, #000000);
}
#navigation .widget_product_search #searchform #s {
  padding: .202em .857em;
  -webkit-border-radius: 4em;
  border-radius: 4em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #111111;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#111111), to(#181818));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #111111, #181818);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #111111, #181818);
  /* FF3.6+ */
  background-image: -ms-linear-gradient(top, #111111, #181818);
  /* IE10 */
  background-image: -o-linear-gradient(top, #111111, #181818);
  /* Opera 11.10+ */
  background-image: linear-gradient(to bottom, #111111, #181818);
  border: 1px solid #000000;
  color: #666666;
  -webkit-box-shadow: inset 0 1px 3px #000000, 0 1px 1px #111111;
  box-shadow: inset 0 1px 3px #000000, 0 1px 1px #111111;
}
#navigation .widget_product_search #searchform #searchsubmit {
  display: none;
}
#navigation h3 {
  border-bottom: 1px solid #000000;
  border-top: 1px solid #2c2c2c;
  background-color: #222222;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#222222), to(#111111));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #222222, #111111);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #222222, #111111);
  /* FF3.6+ */
  background-image: -ms-linear-gradient(top, #222222, #111111);
  /* IE10 */
  background-image: -o-linear-gradient(top, #222222, #111111);
  /* Opera 11.10+ */
  background-image: linear-gradient(to bottom, #222222, #111111);
  padding: .382em 1em;
  font-size: .857em;
  margin: 0;
  font-family: sans-serif;
  text-transform: uppercase;
  color: #777777;
  text-shadow: 0 1px 0 #000000;
}
#navigation ul.nav {
  list-style: none;
  margin-bottom: 0;
}
#navigation ul.nav li {
  list-style: none;
}
#navigation ul.nav li a {
  border-bottom: 1px solid #000000;
  border-top: 1px solid #080808;
  color: #444444;
  -webkit-tap-highlight-color: #fff;
  text-shadow: 0 -1px 0 #000000;
}
#navigation ul.nav li.current-menu-item > a {
  background-color: #080808;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#080808), to(#000000));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #080808, #000000);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #080808, #000000);
  /* FF3.6+ */
  background-image: -ms-linear-gradient(top, #080808, #000000);
  /* IE10 */
  background-image: -o-linear-gradient(top, #080808, #000000);
  /* Opera 11.10+ */
  background-image: linear-gradient(to bottom, #080808, #000000);
  color: #fafafa;
  text-shadow: 0 1px #000000;
  border: 0;
  -webkit-box-shadow: inset 0 1px #111111, inset 0 -1px #000000;
  box-shadow: inset 0 1px #111111, inset 0 -1px #000000;
}
#navigation ul.nav li.current-menu-item > a:after {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 100%;
  margin-left: .618em;
  font-weight: normal;
  line-height: 1em;
  width: 1em;
  text-align: right;
  content: "\f054";
  font-size: .875em;
  float: right;
  line-height: 2;
}
#navigation ul.nav ul {
  margin: 0;
}
#navigation ul.nav ul li a {
  padding-left: 1.618em;
}
#navigation ul.nav ul li ul li a {
  padding-left: 2.618em;
}
#navigation .nav-close,
#navigation .nav-home {
  position: absolute;
  top: 1em;
  left: 1em;
  cursor: pointer;
}
#navigation .nav-close:after,
#navigation .nav-home:after {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 100%;
  margin-left: .618em;
  font-weight: normal;
  line-height: 1em;
  width: 1em;
  text-align: right;
  content: "\f00d";
  background-color: #000000;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#000000));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #000000, #000000);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #000000, #000000);
  /* FF3.6+ */
  background-image: -ms-linear-gradient(top, #000000, #000000);
  /* IE10 */
  background-image: -o-linear-gradient(top, #000000, #000000);
  /* Opera 11.10+ */
  background-image: linear-gradient(to bottom, #000000, #000000);
  height: 1.5em;
  width: 1.5em;
  text-align: center;
  line-height: 1.5;
  font-size: 1.618em;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  margin-left: 0;
  color: #444444;
  text-shadow: 0 -1px 0 #000000;
  -webkit-box-shadow: inset 0 0 1px 1px #000000, inset 0 2px #111111, 0 1px #111111;
  box-shadow: inset 0 0 1px 1px #000000, inset 0 2px #111111, 0 1px #111111;
}
#navigation .nav-close span,
#navigation .nav-home span {
  display: none;
}
#navigation .nav-home {
  left: auto;
  right: 1em;
}
#navigation .nav-home:after {
  content: "\f015";
}
#navigation ul.rss li {
  display: inline;
  padding: 0;
}
#navigation ul.rss li a:after {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 100%;
  margin-left: .618em;
  font-weight: normal;
  line-height: 1em;
  width: 1em;
  text-align: right;
  content: "\f09e";
  color: orange;
  float: right;
  line-height: 1.618;
}
#navigation ul.rss li.sub-email {
  color: #222222;
}
.show-nav #navigation .top-navigation {
  display: block;
}
.show-nav #inner-wrapper {
  left: 80%;
  -webkit-border-radius: 0.618em;
  border-radius: 0.618em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
@media only screen and (max-width: 767px) {
  .csstransforms3d.csstransitions #navigation {
    left: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    -moz-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    -o-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .csstransforms3d.csstransitions #inner-wrapper {
    left: 0 !important;
    -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 200ms ease;
    -moz-transition: -moz-transform 200ms ease;
    -o-transition: -o-transform 200ms ease;
    transition: transform 200ms ease;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .csstransforms3d.csstransitions .show-nav #navigation {
    -webkit-transform: translate3d(-100%, 0, 0);
    -moz-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    -o-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  .csstransforms3d.csstransitions .show-nav #inner-wrapper {
    -webkit-transform: translate3d(80%, 0, 0);
    -moz-transform: translate3d(80%, 0, 0);
    -ms-transform: translate3d(80%, 0, 0);
    -o-transform: translate3d(80%, 0, 0);
    transform: translate3d(80%, 0, 0);
    -webkit-transform-origin: 50% 0%;
    -moz-transform-origin: 50% 0%;
    -ms-transform-origin: 50% 0%;
    -o-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
  }
}
/*------------------------------------------------------------------------------------------*/
/* 6. WIDGETS */
/*------------------------------------------------------------------------------------------*/
/* General */
.widget {
  margin-bottom: 3.631em;
  font-size: .857em;
}
.widget h3 {
  font-size: 1em;
  color: #080808;
}
.widget a:link,
.widget a:visited {
  color: #222222;
}
.widget ul {
  clear: both;
  list-style-position: inside;
  list-style-type: disc;
}
.widget ul li {
  padding: .202em 0;
  list-style: none;
}
.widget ul li a {
  text-decoration: none;
}
.widget ul li a:hover {
  text-decoration: underline;
}
#homepage-area .widget {
  font-size: 1em;
}
/* Search Form */
#searchform {
  overflow: hidden;
  width: 100%;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */
  position: relative;
  border: 2px solid #dddddd;
  -webkit-border-radius: 0.236em;
  border-radius: 0.236em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#searchform .s,
#searchform #s {
  padding: .857em 2.618em .857em .857em;
  width: 100%;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */
  margin: 0;
  border: 0;
  background: none;
  color: #222222;
}
#searchform .search-submit,
#searchform #searchsubmit {
  position: absolute;
  top: 33%;
  right: .857em;
  border: none;
  overflow: hidden;
  margin: 0;
  padding: 20px 0 0;
  width: 20px;
  height: 0;
  background: url('images/ico-search.png') no-repeat left top;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}
#searchform .search-submit:active,
#searchform #searchsubmit:active {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}
#searchform .search-submit:hover,
#searchform #searchsubmit:hover {
  background: url('images/ico-search.png') no-repeat left top;
}
#searchform label {
  display: none;
}
/* Flickr */
.widget_woo_flickr h3 span {
  color: #0051d8;
}
.widget_woo_flickr h3 span span {
  color: #ff1183;
}
.widget_woo_flickr .wrap {
  margin: 1em 0 0;
  text-align: center;
}
.widget_woo_flickr .wrap .flickr_badge_image {
  display: inline-block;
  margin: 0 1em 1.387em;
}
.widget_woo_flickr .wrap .flickr_badge_image a img {
  display: block;
  -webkit-border-radius: 300px;
  border-radius: 300px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
/* Calendar */
#wp-calendar caption {
  padding: 1em;
}
#wp-calendar th,
#wp-calendar td {
  text-align: center;
  padding: .53em 0;
}
/* Author Info */
.widget_woo_blogauthorinfo .avatar {
  padding: .382em;
  border: 1px solid #f6f6f6;
}
.widget_woo_blogauthorinfo .left {
  float: left;
  margin: 0 1em .618em 0;
}
.widget_woo_blogauthorinfo .right {
  float: right;
  margin: 0 .618em 1em;
}
/* Tabs */
.widget_woodojo_tabs {
  clear: both;
}
.widget_woodojo_tabs ul.nav-tabs,
.widget_woodojo_tabs ul.tabs {
  margin-bottom: 1.618em;
  list-style: none;
  border-bottom: 1px solid #f6f6f6;
}
.widget_woodojo_tabs ul.nav-tabs:after,
.widget_woodojo_tabs ul.tabs:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
.widget_woodojo_tabs ul.nav-tabs li,
.widget_woodojo_tabs ul.tabs li {
  float: left;
  margin-bottom: 0;
  display: block;
}
.widget_woodojo_tabs ul.nav-tabs li a,
.widget_woodojo_tabs ul.tabs li a {
  border-bottom: 0;
  background: rgba(246, 246, 246, 0.5);
  border: 1px solid #f6f6f6;
  border-bottom-width: 0;
  border-right-width: 0;
  display: block;
  color: #222222;
  margin: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
  padding: .382em .53em !important;
}
.widget_woodojo_tabs ul.nav-tabs li a:hover,
.widget_woodojo_tabs ul.tabs li a:hover {
  color: #ef4444;
}
.widget_woodojo_tabs ul.nav-tabs li:last-child a,
.widget_woodojo_tabs ul.tabs li:last-child a {
  border-right-width: 1px;
}
.widget_woodojo_tabs ul.nav-tabs li.active,
.widget_woodojo_tabs ul.tabs li.active {
  position: relative;
}
.widget_woodojo_tabs ul.nav-tabs li.active a,
.widget_woodojo_tabs ul.tabs li.active a {
  position: relative;
  background: #fff;
  color: #ef4444;
}
.widget_woodojo_tabs ul.nav-tabs li.active a:after,
.widget_woodojo_tabs ul.tabs li.active a:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: #fff;
}
/*------------------------------------------------------------------------------------------*/
/* 7. COMMENTS */
/*------------------------------------------------------------------------------------------*/
/* Comments */
#comments {
  margin: 0 0 4.236em;
  position: relative;
}
#comments .comment {
  width: 100%;
  margin: 0 0 1.618em;
  padding: 1.618em 0;
  list-style: none;
  border-bottom: 2px solid #f6f6f6;
}
#comments .comment.bypostauthor .avatar img {
  border-color: #ef4444;
}
#comments .comment .comment-container {
  position: relative;
}
#comments .comment .comment-head {
  margin: 0 0 1em 0;
}
#comments .comment .comment-head .name {
  display: block;
  margin: 0;
  padding: 1em 0 0;
  font-weight: bold;
  line-height: 1;
}
#comments .comment .comment-head .date,
#comments .comment .comment-head .edit,
#comments .comment .comment-head .perma {
  font-size: .8em;
}
#comments .comment .avatar {
  float: left;
  margin: 0 1em 1em 0;
}
#comments .comment .avatar img {
  margin: 0 1em 0 0;
  vertical-align: middle;
  background: #fff;
  border: 3px solid #f6f6f6;
  -webkit-border-radius: 300px;
  border-radius: 300px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#comments .comment .comment-entry {
  clear: both;
  color: #6f6f6f;
}
#comments .comment .comment-entry ul,
#comments .comment .comment-entry ol {
  margin-left: 1.618em;
}
#comments .comment .reply {
  position: absolute;
  top: 0;
  right: 0;
  font-size: .8em;
}
#comments .comment .reply a {
  background: #bfbfbf;
  color: #222222 !important;
  text-shadow: none;
  margin: 0;
  padding: .382em 1.387em;
}
#comments .comment .reply a:after {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 100%;
  margin-left: .618em;
  font-weight: normal;
  line-height: 1em;
  width: 1em;
  text-align: right;
  content: "\f112";
}
#comments .comment .reply a:hover {
  background: #b8b8b8;
}
#comments ul.children {
  margin: 0 0 0 1.618em;
  padding: 0;
}
#comments ul.children li {
  margin: 0;
  padding: 1.618em 0 1em;
  border: none;
  border-top: 1px solid #f6f6f6;
}
#comments .navigation a {
  display: block;
  text-decoration: none;
}
#comments .pingbacks li.pingback {
  margin: 0 0 1.618em;
}
#comments .pingbacks li.pingback .reply {
  display: none;
}
#comments .nocomments {
  font-weight: bold;
}
#comments #cancel-comment-reply-link {
  display: block;
  font-size: .53em;
}
/* Comments Form */
#respond label {
  font-weight: 600;
  text-transform: uppercase;
  font-size: .78em;
  color: #6f6f6f;
}
#respond .logged-in-as {
  color: #6f6f6f;
}
#respond #reply-title small {
  margin: 0 0 1.618em;
}
#respond #commentform p {
  margin-bottom: .857em;
}
#respond #commentform .comment-form-author,
#respond #commentform .comment-form-email,
#respond #commentform .comment-form-url {
  width: 46.2%;
  float: left;
  margin-right: 3.8%;
}
#respond #commentform .comment-form-author input,
#respond #commentform .comment-form-email input,
#respond #commentform .comment-form-url input {
  width: 100%;
}
#respond #commentform .comment-form-email {
  margin-right: 0;
  width: 50%;
}
#respond #commentform .comment-form-rating,
#respond #commentform .comment-form-comment {
  float: left;
  width: 100%;
}
#respond #commentform .comment-form-url {
  margin-right: 0;
}
#respond #commentform label {
  display: block;
  margin: .327em 0;
}
#respond #commentform input.txt,
#respond #commentform textarea {
  width: 100%;
}
#respond #commentform .form-submit {
  text-align: right;
  float: right;
}
/* Pingbacks / Trackbacks */
.pinglist li {
  margin: 0 0 0 1.618em;
  list-style-type: decimal;
}
.pinglist li .author {
  font-weight: bold;
}
.pinglist li .pingcontent {
  display: block;
  margin: 0 0 1.618em;
}
/*------------------------------------------------------------------------------------------*/
/* 8. PAGE TEMPLATES */
/*------------------------------------------------------------------------------------------*/
/* Timeline Page Template */
#timeline {
  padding: 10px 0 0;
}
#timeline .archives_list {
  border-left: 1px solid #f6f6f6;
  list-style: none;
  margin: 0 0 0 25px;
  padding: 0 0 20px;
}
#timeline .archives_list:last-child:after {
  content: '';
  position: relative;
  top: 20px;
  left: -7px;
  display: block;
  width: 5px;
  height: 5px;
  border: 4px solid #f6f6f6;
  background: #d3d3d3;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#timeline .archives_list li {
  clear: left;
  padding: 10px 0 10px 10px;
  font-size: 0.9em;
  font-style: normal;
  list-style: none;
}
#timeline .archives_list .date {
  color: #3c3c3c;
  position: relative;
  width: 40%;
  font-style: italic;
  display: block;
  vertical-align: top;
}
#timeline .archives_list .date:before {
  content: '';
  position: absolute;
  top: 9px;
  left: -10px;
  display: block;
  width: 5px;
  height: 1px;
  border-top: 2px solid #f6f6f6;
}
#timeline .archives_list .linked {
  padding-top: 2px;
  padding-right: 80px;
  width: auto;
  display: inline-block;
  font-size: 1.2em;
  line-height: 1.2;
  vertical-align: top;
}
#timeline .archives_list .linked a {
  font-weight: bold;
}
#timeline .archives_list .comments {
  display: inline;
  margin-top: -15px;
  float: right;
  vertical-align: top;
}
#timeline .archives_list .comments a {
  display: block;
  position: relative;
  width: 30px;
  height: 27px;
  padding: 3px 0 0 0;
  text-align: center;
  background: #d3d3d3;
  color: #fff;
  font-weight: bold;
  font-size: 1.2em;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
}
#timeline .archives_list .comments a:after {
  content: '';
  display: block;
  position: absolute;
  top: 11px;
  left: -7px;
  border: 0.3em solid #ef4444;
  border-color: transparent #d3d3d3 transparent transparent;
}
h3.archive_year {
  font-weight: bold;
  font-size: 0.9em;
  text-shadow: 1px 1px 0 #fff;
  padding: 4px 15px;
  background: #fafafa;
  color: #222222;
  border: 1px solid #f6f6f6;
  display: inline;
  margin-top: 0;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
/* Contact Form */
#contact-page .screenReader {
  left: -9999px;
  position: absolute;
  top: -9999px;
  display: none;
}
#contact-page ol.forms {
  margin: 0 0 2.618em;
  list-style: none;
}
#contact-page ol.forms:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
#contact-page ol.forms li {
  clear: both;
  float: left;
  margin-bottom: 1.618em;
  position: relative;
  width: 48%;
}
#contact-page ol.forms li:first-child {
  margin-right: 3.8%;
}
#contact-page ol.forms li:nth-child(2n) {
  clear: none;
}
#contact-page ol.forms li.textarea,
#contact-page ol.forms li.screenReader,
#contact-page ol.forms li.inline,
#contact-page ol.forms li.buttons,
#contact-page ol.forms li input.txt,
#contact-page ol.forms li textarea {
  width: 100%;
}
#contact-page ol.forms li .error {
  display: block;
  color: red;
}
#contact-page ol.forms li.textarea .error {
  display: block;
}
#contact-page ol.forms li.screenReader {
  margin-bottom: 0;
}
#contact-page ol.forms li.inline {
  clear: none;
  float: left;
  width: 48%;
}
#contact-page ol.forms li.inline input {
  width: auto;
  margin-right: .53em;
  position: relative;
  top: -0.5px;
}
#contact-page ol.forms li.inline label {
  display: inline;
  float: none;
  width: auto;
  font-size: .857em;
  font-weight: normal;
  font-style: italic;
}
#contact-page ol.forms li.buttons {
  clear: none;
  float: right;
  width: 48%;
  text-align: right;
}
#contact-page ol.forms label {
  cursor: pointer;
  display: block;
  font-weight: 700;
  margin: 0 0 1em;
}
.page-template-template-contact-php #single_map_canvas img {
  max-width: inherit;
}
.page-template-template-contact-php #location-map {
  margin: 0 0 2.618em;
  border-bottom: 1px solid #f6f6f6;
}
.page-template-template-contact-php #location-map #location {
  margin: 0 0 2.618em;
}
.page-template-template-contact-php #location-map #location ul {
  margin: 0;
  padding: 0;
}
.page-template-template-contact-php #location-map #location ul li {
  list-style: none;
  padding: 0;
}
.page-template-template-contact-php #location-map #map {
  margin: 0 0 2.618em;
}
.page-template-template-contact-php #twitter-connect {
  margin: 0 0 2.618em;
  border-bottom: 1px solid #f6f6f6;
}
.page-template-template-contact-php #twitter-connect #twitter {
  margin: 0 0 2.618em;
}
.page-template-template-contact-php #twitter-connect #twitter ul {
  margin: 0 0 .857em;
  list-style: none;
}
.page-template-template-contact-php #twitter-connect #twitter a.time {
  color: #484848;
}
.page-template-template-contact-php #twitter-connect #twitter .follow-twitter {
  font-style: italic;
  font-size: .857em;
}
.page-template-template-contact-php #twitter-connect #contact-social {
  margin: 0 0 2.618em;
}
.page-template-template-contact-php #twitter-connect #contact-social #connect {
  background: none;
  border: none;
  padding: 0;
}
.page-template-template-contact-php #twitter-connect #contact-social #connect .social {
  float: none;
  clear: both;
}
.page-template-template-contact-php #twitter-connect #contact-social #connect .social a span {
  display: none;
}
@media only screen and (min-width: 768px) {
  .page-template-template-contact-php #location-map:after {
    content: "\0020";
    display: block;
    height: 0;
    overflow: hidden;
    clear: both;
  }
  .page-template-template-contact-php #location-map #location {
    float: left;
    width: 30%;
  }
  .page-template-template-contact-php #location-map #map.float {
    float: right;
    width: 65%;
  }
  .page-template-template-contact-php #twitter-connect:after {
    content: "\0020";
    display: block;
    height: 0;
    overflow: hidden;
    clear: both;
  }
  .page-template-template-contact-php #twitter-connect #twitter {
    float: left;
    width: 45%;
  }
  .page-template-template-contact-php #twitter-connect #contact-social.float {
    float: right;
    width: 45%;
  }
}
/* Sitemap */
.page-template-template-sitemap-php .entry ul,
.page-template-template-sitemap-php .entry ol {
  list-style: none;
  margin-left: 0;
}
.page-template-template-sitemap-php .entry ul ul,
.page-template-template-sitemap-php .entry ol ul,
.page-template-template-sitemap-php .entry ul ol,
.page-template-template-sitemap-php .entry ol ol {
  margin-left: 20px;
}
/*------------------------------------------------------------------------------------------*/
/* 9. FLEXSLIDER */
/*------------------------------------------------------------------------------------------*/
/* WooSlider */
body .wooslider {
  margin: 0 0 5.874em!important;
  background: none;
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
body .wooslider:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
body .wooslider .slides li.slide .slide-content {
  position: relative;
  margin: 0;
}
body .wooslider .slides li.slide .slide-content .slide-excerpt {
  position: absolute;
  padding: 2.618em;
  text-align: center;
  top: 30%;
  left: 15%;
  right: 15%;
  bottom: 30%;
  color: #fff;
  background: #000;
  background: rgba(0, 0, 0, 0.7);
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
body .wooslider .slides li.slide .slide-content .slide-excerpt p {
  height: 100%;
  overflow: hidden;
}
body .wooslider .wooslider-direction-nav a {
  position: absolute;
  display: block;
  margin: -20px 0 0;
  padding: 5px 0 0;
  line-height: 2.1;
  overflow: hidden;
  top: auto;
  bottom: 2em;
  z-index: 10;
  cursor: pointer;
  text-align: center;
  opacity: 1;
  filter: alpha(opacity=@opacity * 100);
  -webkit-transition: all ease-in-out 0.2s 0s;
  -moz-transition: all ease-in-out 0.2s 0s;
  -ms-transition: all ease-in-out 0.2s 0s;
  -o-transition: all ease-in-out 0.2s 0s;
  transition: all ease-in-out 0.2s 0s;
}
body .wooslider .wooslider-direction-nav a:before {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 100%;
  margin-right: .618em;
  font-weight: normal;
  line-height: 1em;
  width: 1em;
  margin: 0;
  padding: .4em 0 0;
  width: auto;
  height: auto;
  font-size: 1.387em;
  text-shadow: none;
  background: #ef4444;
  color: #fff;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */
}
body .wooslider .wooslider-direction-nav a:hover:before {
  background: #eb1515;
}
body .wooslider .wooslider-direction-nav .wooslider-next {
  right: 1.2em;
}
body .wooslider .wooslider-direction-nav .wooslider-next:before {
  content: '\f054';
}
body .wooslider .wooslider-direction-nav .wooslider-prev {
  left: 1.2em;
}
body .wooslider .wooslider-direction-nav .wooslider-prev:before {
  content: '\f053';
}
body .wooslider .wooslider-direction-nav.wooslider-disabled {
  opacity: 0.3;
  filter: alpha(opacity=@opacity * 100);
  cursor: default;
}
body .wooslider .wooslider-control-paging {
  margin-top: 0;
}
body .wooslider .wooslider-control-paging li a {
  background: rgba(0, 0, 0, 0.3);
}
body .wooslider .wooslider-control-paging li a.wooslider-active {
  background: #5d9d4a;
}
body .wooslider:hover .wooslider-direction-nav .wooslider-next,
body .wooslider:hover .wooslider-direction-nav .wooslider-prev {
  opacity: 1;
  filter: alpha(opacity=@opacity * 100);
}
/*------------------------------------------------------------------------------------------*/
/* 10. MISC */
/*------------------------------------------------------------------------------------------*/
/* Floating & Alignment  */
.fl {
  float: left;
}
.fr {
  float: right;
}
.ac {
  text-align: center;
}
.ar {
  text-align: right;
}
/* The Magnificent Clearfix: Updated to prevent margin-collapsing on child elements.
   j.mp/bestclearfix */
.fix:before,
.fix:after,
.col-full:before,
.col-full:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.fix:after,
.col-full:after {
  clear: both;
}
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.fix,
.col-full {
  zoom: 1;
}
/* Subscribe & Connect (& Related posts) */
#connect {
  clear: both;
  color: #6f6f6f;
}
#connect h3 {
  font-size: 1em;
}
#connect .newsletter-form {
  margin: 0 0 1.387em;
}
#connect .newsletter-form .email {
  margin: 0 1em 1em 0;
}
#connect .newsletter-form .submit {
  margin: 0 0 1em;
  position: relative;
  top: -3px;
}
#connect .social a {
  opacity: 0.8;
  filter: alpha(opacity=@opacity * 100);
  display: inline-block;
  padding-left: .1em;
}
#connect .social a:hover {
  opacity: 1;
  filter: alpha(opacity=@opacity * 100);
}
#connect .social a:hover {
  text-decoration: none;
}
#connect .social a:before {
  font-family: Social;
  font-size: 1.2em;
  line-height: 1.1;
  margin: 0 0.53em 0.53em 0;
  padding: .53em;
  display: inline-block;
  -webkit-border-radius: 300px;
  border-radius: 300px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  color: #fff;
  background: #ef4444;
}
#connect .social a.subscribe:before {
  content: '\e001';
  background-color: #FF6600;
}
#connect .social a.twitter:before {
  content: '\e002';
  background-color: #00aced;
}
#connect .social a.facebook:before {
  content: '\e003';
  background-color: #3b5998;
}
#connect .social a.youtube:before {
  content: '\e004';
  background-color: #af2b26;
}
#connect .social a.flickr:before {
  content: '\e005';
  background-color: #ff0084;
}
#connect .social a.linkedin:before {
  content: '\e006';
  background-color: #71c5ef;
}
#connect .social a.delicious:before {
  content: '\e007';
  background-color: #285da7;
}
#connect .social a.googleplus:before {
  content: '\e008';
  background-color: #2d2d2d;
  font-weight: bold;
}
#connect .social a.dribbble:before {
  content: '\e009';
  background-color: #ea4c89;
}
#connect .social a.instagram:before {
  content: '\e010';
  background-color: #517fa4;
}
#connect .social a.vimeo:before {
  content: '\e011';
  background-color: #33454E;
}
#connect .social a.pinterest:before {
  content: '\e012';
  background-color: #cb2027;
}
#main #connect {
  margin: 0 0 2.618em;
  padding: 2.244em 0;
  border-top: 2px solid #f6f6f6;
  border-bottom: 2px solid #f6f6f6;
}
#related-posts {
  margin: 0 0 2.618em;
}
#related-posts ul {
  list-style: none;
}
/* Tables */
table {
  border-spacing: 0;
  width: 100%;
  border: 1px solid #e9e9e9;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border-collapse: separate;
}
table td,
table th {
  padding: .857em 1.387em;
  text-align: left;
  border-right: 1px dotted #e9e9e9;
  vertical-align: top;
}
table td p:last-child,
table th p:last-child {
  margin-bottom: 0;
}
table thead th {
  background: #fff;
  border-right: 1px dotted #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
  text-transform: uppercase;
  padding: 1.387em;
  vertical-align: middle;
}
table thead th:first-child {
  -webkit-border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
table thead th:last-child {
  -webkit-border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
table tr th:last-child,
table tr td:last-child {
  border-right: 0;
}
table tbody th {
  background: #fff;
  border-bottom: 1px solid #e9e9e9;
}
table tbody tr:nth-child(2n) td {
  border-right: 1px dotted #e9e9e9;
  background: #fafafa;
}
table tbody tr:nth-child(2n) td:last-child {
  border-right: 0;
}
table tbody td {
  border-bottom: 1px solid #e9e9e9;
}
table tbody h2 {
  font-size: 1em;
  letter-spacing: normal;
  font-weight: normal;
}
table tbody h2 a {
  font-weight: normal;
}
table tbody tr:last-child td:first-child {
  -webkit-border-bottom-left-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
table tbody tr:last-child td:last-child {
  -webkit-border-bottom-left-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  -webkit-border-top-left-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
table tbody tr:last-child td {
  border-bottom: 0;
}
/* Forms */
input[type=text],
input.input-text,
textarea,
input.txt,
input[type=tel],
input[type=email],
input[type=password] {
  padding: .236em .5em;
  border: 2px solid #dddddd;
  -webkit-border-radius: 0.236em;
  border-radius: 0.236em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-size: 1em;
  /* Make inputs the same size as normal text */
  line-height: 1.618em;
  font-family: inherit;
  /* Make inputs use the correct typeface instead of the browser default */
  outline: none;
  font-weight: 300;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */
}
/* Buttons (Includes WF chortcode buttons) */
a.button,
a.comment-reply-link,
#commentform #submit,
.submit,
input[type=submit],
input.button,
button.button,
#wrapper .woo-sc-button {
  display: inline-block;
  padding: .327em 1em;
  color: white!important;
  text-align: center;
  border: none;
  text-decoration: none;
  font-size: .75em;
  /* Make inputs the same size as normal text */
  font-family: inherit;
  /* Make inputs use the correct typeface instead of the browser default */
  cursor: pointer;
  /* Inputs need pointers! */
  overflow: visible;
  /* IE fix */
  width: auto;
  /* IE fix */
  line-height: 1.618em;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */
  white-space: nowrap;
  background: #ef4444;
  font-weight: 200;
  text-transform: uppercase;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
a.button:hover,
a.comment-reply-link:hover,
#commentform #submit:hover,
.submit:hover,
input[type=submit]:hover,
input.button:hover,
button.button:hover,
#wrapper .woo-sc-button:hover {
  text-decoration: none;
  background: #bd1010;
}
a.button:active,
a.comment-reply-link:active,
#commentform #submit:active,
.submit:active,
input[type=submit]:active,
input.button:active,
button.button:active,
#wrapper .woo-sc-button:active {
  border-color: #9a0000;
  box-shadow: inset 0 0 7px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 0 7px 0 rgba(0, 0, 0, 0.3);
}
a.button.large,
a.comment-reply-link.large,
#commentform #submit.large,
.submit.large,
input[type=submit].large,
input.button.large,
button.button.large,
#wrapper .woo-sc-button.large {
  font-size: 1.387em;
}
a.button.small,
a.comment-reply-link.small,
#commentform #submit.small,
.submit.small,
input[type=submit].small,
input.button.small,
button.button.small,
#wrapper .woo-sc-button.small {
  font-size: .857em;
}
a.button.red,
a.comment-reply-link.red,
#commentform #submit.red,
.submit.red,
input[type=submit].red,
input.button.red,
button.button.red,
#wrapper .woo-sc-button.red {
  border-color: #af4040;
  background: #d72323;
}
a.button.red:hover,
a.comment-reply-link.red:hover,
#commentform #submit.red:hover,
.submit.red:hover,
input[type=submit].red:hover,
input.button.red:hover,
button.button.red:hover,
#wrapper .woo-sc-button.red:hover {
  background: #d20000;
}
a.button.orange,
a.comment-reply-link.orange,
#commentform #submit.orange,
.submit.orange,
input[type=submit].orange,
input.button.orange,
button.button.orange,
#wrapper .woo-sc-button.orange {
  border-color: #af7440;
  background: #d76b23;
}
a.button.orange:hover,
a.comment-reply-link.orange:hover,
#commentform #submit.orange:hover,
.submit.orange:hover,
input[type=submit].orange:hover,
input.button.orange:hover,
button.button.orange:hover,
#wrapper .woo-sc-button.orange:hover {
  background: #d25e00;
}
a.button.green,
a.comment-reply-link.green,
#commentform #submit.green,
.submit.green,
input[type=submit].green,
input.button.green,
button.button.green,
#wrapper .woo-sc-button.green {
  border-color: #87bf00;
  background: #8dc11e;
}
a.button.green:hover,
a.comment-reply-link.green:hover,
#commentform #submit.green:hover,
.submit.green:hover,
input[type=submit].green:hover,
input.button.green:hover,
button.button.green:hover,
#wrapper .woo-sc-button.green:hover {
  background: #87c000;
}
a.button.aqua,
a.comment-reply-link.aqua,
#commentform #submit.aqua,
.submit.aqua,
input[type=submit].aqua,
input.button.aqua,
button.button.aqua,
#wrapper .woo-sc-button.aqua {
  border-color: #40af96;
  background: #23d7af;
}
a.button.aqua:hover,
a.comment-reply-link.aqua:hover,
#commentform #submit.aqua:hover,
.submit.aqua:hover,
input[type=submit].aqua:hover,
input.button.aqua:hover,
button.button.aqua:hover,
#wrapper .woo-sc-button.aqua:hover {
  background: #00d2a8;
}
a.button.teal,
a.comment-reply-link.teal,
#commentform #submit.teal,
.submit.teal,
input[type=submit].teal,
input.button.teal,
button.button.teal,
#wrapper .woo-sc-button.teal {
  border-color: #23a6d6;
  background: #23abd7;
}
a.button.teal:hover,
a.comment-reply-link.teal:hover,
#commentform #submit.teal:hover,
.submit.teal:hover,
input[type=submit].teal:hover,
input.button.teal:hover,
button.button.teal:hover,
#wrapper .woo-sc-button.teal:hover {
  background: #009ed2;
}
a.button.purple,
a.comment-reply-link.purple,
#commentform #submit.purple,
.submit.purple,
input[type=submit].purple,
input.button.purple,
button.button.purple,
#wrapper .woo-sc-button.purple {
  border-color: #234dd6;
  background: #2356d7;
}
a.button.purple:hover,
a.comment-reply-link.purple:hover,
#commentform #submit.purple:hover,
.submit.purple:hover,
input[type=submit].purple:hover,
input.button.purple:hover,
button.button.purple:hover,
#wrapper .woo-sc-button.purple:hover {
  background: #0036d2;
}
a.button.pink,
a.comment-reply-link.pink,
#commentform #submit.pink,
.submit.pink,
input[type=submit].pink,
input.button.pink,
button.button.pink,
#wrapper .woo-sc-button.pink {
  border-color: #d623cb;
  background: #d723d5;
}
a.button.pink:hover,
a.comment-reply-link.pink:hover,
#commentform #submit.pink:hover,
.submit.pink:hover,
input[type=submit].pink:hover,
input.button.pink:hover,
button.button.pink:hover,
#wrapper .woo-sc-button.pink:hover {
  background: #bc00d2;
}
a.button.silver,
a.comment-reply-link.silver,
#commentform #submit.silver,
.submit.silver,
input[type=submit].silver,
input.button.silver,
button.button.silver,
#wrapper .woo-sc-button.silver {
  color: #444 !important;
  text-shadow: 0 1px #fff;
  border-color: #bbb;
  background: #d8d8d8;
}
a.button.silver:hover,
a.comment-reply-link.silver:hover,
#commentform #submit.silver:hover,
.submit.silver:hover,
input[type=submit].silver:hover,
input.button.silver:hover,
button.button.silver:hover,
#wrapper .woo-sc-button.silver:hover {
  background: #ccc;
}
/* Shortcode info boxes */
p.woo-sc-box,
div.woo-sc-box {
  margin: 1em 0 1.5em 0;
  padding: 9px 10px 9px 50px;
  border-width: 1px 0 1px 0;
  color: #000000;
  text-shadow: none;
}
p.woo-sc-box.rounded,
div.woo-sc-box.rounded {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
p.woo-sc-box.alert,
div.woo-sc-box.alert {
  border-color: #f0baa2;
  background-color: #ffd9c8;
}
p.woo-sc-box.download,
div.woo-sc-box.download {
  border-color: #d4ebaf;
  background-color: #edfcd5;
}
p.woo-sc-box.tick,
div.woo-sc-box.tick {
  border-color: #d4ebaf;
  background-color: #edfcd5;
}
p.woo-sc-box.info,
div.woo-sc-box.info {
  border-color: #f6f6f6;
  background-color: #fafafa;
}
p.woo-sc-box.note,
div.woo-sc-box.note {
  border-color: #efe3ae;
  background-color: #fef6d2;
}
p.woo-sc-box.normal,
div.woo-sc-box.normal {
  border-color: #f6f6f6;
  background-color: #fafafa;
}
/* Gravity forms */
ul.gform_fields li {
  list-style: none;
}
.gfield {
  margin-bottom: 1.618em;
}
.gfield_label {
  width: 100%;
  font-weight: bold;
  margin-bottom: .618em;
  display: block;
}
.gfield_required {
  color: red;
}
.ginput_container {
  margin-bottom: 1.618em;
}
.ginput_container:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
.ginput_container label {
  display: block;
}
.ginput_container input,
.ginput_container textarea {
  width: 100%;
}
.ginput_container .ginput_left,
.ginput_container .ginput_right,
.ginput_container .ginput_full {
  margin-bottom: 1em;
  display: block;
}
.ginput_container .ginput_left label,
.ginput_container .ginput_right label,
.ginput_container .ginput_full label {
  font-size: .875em;
}
.ginput_container .ginput_left,
.ginput_container .ginput_right {
  width: 48%;
  float: left;
  clear: left;
}
.ginput_container .ginput_right {
  float: right;
  clear: none;
}
.ginput_container .gfield_checkbox,
.ginput_container .gfield_radio {
  margin-left: 0;
}
.ginput_container .gfield_checkbox label,
.ginput_container .gfield_radio label {
  display: inline-block;
  margin-left: .618em;
}
.ginput_container .gfield_checkbox input,
.ginput_container .gfield_radio input {
  width: auto;
}
img.ui-datepicker-trigger {
  border: 0;
  padding: 0;
}
/* Thickbox z-index */
#TB_overlay {
  z-index: 9999!important;
}
#TB_window {
  z-index: 99999!important;
}
/* IE specific styling */
.ie8 .widget_woo_blogauthorinfo .avatar {
  width: auto;
}