/*

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 a media query at the bottom of this file.

*/
/*-------------------------------------------------------------------------------------------

INDEX:

0. RESET

1. SETUP
-1.1 Defaults
-1.2 Hyperlinks
-1.3 Typography
-1.4 Tables

2. SITE STRUCTURE & APPEARANCE
-2.1 Containers & Columns
-2.2 Navigation
  -2.2.1 Drop-down menus
  -2.2.2 Top Navigation (optional)
-2.3 Header
-2.4 Content
  -2.4.1 Slider
-2.5 Sidebar
-2.6 Footer
-2.7 Breadcrumbs

3. POSTS
-3.1 Images
-3.2 Pagination / WP-Pagenavi / Woo-Pagination
-3.3 Single Post Author
-3.4 Post Entry Nav
-3.5 Subscribe & Connect

4. WIDGETS
-4.1 Generic Widgets
-4.2 Specific Widgets

5. COMMENTS
-5.1 Comments
-5.2 Comments Form
-5.3 Pingbacks / Trackbacks

6. PAGE TEMPLATES
-6.1 Timeline Page Template
-6.2 Contact Form
-6.3 Image Gallery
-6.4 Archives & Sitemap
-6.5 Homepage

7. FEATURED SLIDER
-7.1 Core Styles
-7.2 Theme Styles
-7.3 Content Styles

8. MISC
-8.1 Forms
-8.2 Buttons (Includes WF chortcode buttons)
-8.3 Shortcode info boxes
-8.4 Gravity forms
-8.5 IE specific styling

-------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------*/
/* 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,
hgroup,
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,
hgroup,
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: #f8f8f8;
  border: 1px solid #e7e7e7;
  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, "Helvetica Neue", Helvetica, Arial, "Lucida Grande", 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 {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* Floating & Alignment  */
.fl {
  float: left;
}
.fr {
  float: right;
}
.ac {
  text-align: center;
}
.ar {
  text-align: right;
}
.clear {
  clear: both;
}
/* 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;
}
/*-------------------------------------------------------------------------------------------*/
/* IMPORTS */
/*-------------------------------------------------------------------------------------------*/
/**
 * Variables
 */
@-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;
  }
}
@-webkit-keyframes popin {
  from {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
  60% {
    -webkit-transform: scale(0.005);
    -moz-transform: scale(0.005);
    -ms-transform: scale(0.005);
    -o-transform: scale(0.005);
    transform: scale(0.005);
  }
  95% {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
  }
  to {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes salepulse {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  70% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  to {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes glowbutton {
  from {
    background-color: #2ab6d6;
  }
  50% {
    background-color: #4cd8f8;
  }
  to {
    background-color: #2ab6d6;
  }
}
@-webkit-keyframes slidedown {
  from {
    top: -500px;
  }
  95% {
    top: 1em;
  }
  to {
    top: 0;
  }
}
body {
  *zoom: 1;
}
body:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
body:before,
body:after {
  content: "";
  display: table;
}
body:after {
  clear: both;
}
/*-------------------------------------------------------------------------------------------*/
/* 1. SETUP */
/*-------------------------------------------------------------------------------------------*/
/* 1.1 Defaults */
html {
  font-size: 62.5%;
}
body {
  font-size: 1.4em;
  line-height: 1.618;
  color: #364245;
  font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 300;
  padding: 0 0.2em;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background: #f8f8f8;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
::selection {
  background: #364245;
  color: white;
}
::-moz-selection {
  background: #364245;
  color: white;
}
img::selection {
  background: transparent;
}
img::-moz-selection {
  background: transparent;
}
img {
  vertical-align: bottom;
  max-width: 100%;
}
hr {
  background-color: #e7e7e7;
  border: 0;
  height: 1px;
  margin-bottom: 1.618em;
}
/* 1.2 Hyperlinks */
a {
  color: #2ab6d6;
  text-decoration: none;
  font-weight: 700;
}
a:hover {
  color: #0894b4;
}
/* 1.3 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 {
  color: #090b0c;
  margin: 0 0 .618em;
  font-weight: 700;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  text-decoration: none;
  color: #090b0c;
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
  color: #2ab6d6;
}
h1 {
  font-size: 1.618em;
  line-height: 1.387em;
}
h2 {
  font-size: 1.387em;
  line-height: 1.387em;
}
h3 {
  font-size: 1em;
}
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;
}
small {
  font-size: .857em;
}
ul,
ol,
dl,
p,
table,
form,
pre,
hr,
address {
  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;
}
mark {
  color: inherit;
  background: none;
}
/*
@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#WebSymbolsRegular') 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#FontAwesome') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* 1.4 Tables */
table {
  border-spacing: 0;
  width: 100%;
  -webkit-border-radius: 0.382em;
  border-radius: 0.382em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: #f8f8f8;
  border-collapse: separate;
}
table td,
table th {
  padding: .857em 0.2em;
  text-align: left;
  vertical-align: top;
}
table td p:last-child,
table th p:last-child {
  margin-bottom: 0;
}
table thead th {
  background: #ffffff;
  border-bottom: 2px solid #e7e7e7;
  text-transform: uppercase;
  padding: ;
  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: #ffffff;
}
table tbody tr:nth-child(2n) td {
  background: #fafafa;
}
table tbody tr:nth-child(2n) td:last-child {
  border-right: 0;
}
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: 0.382em;
  -webkit-border-bottom-right-radius: 0.382em;
  border-bottom-left-radius: 0.382em;
  border-bottom-right-radius: 0.382em;
  -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: 0.382em;
  -webkit-border-bottom-right-radius: 0.382em;
  border-bottom-left-radius: 0.382em;
  border-bottom-right-radius: 0.382em;
  -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;
}
table .shipping ul {
  list-style: none;
  margin: 0 !important;
}
/*-------------------------------------------------------------------------------------------*/
/* 2. SITE STRUCTURE & APPEARANCE */
/*-------------------------------------------------------------------------------------------*/
/* 2.1 Containers & Columns */
/* 2.2 Navigation */
ul.nav li a {
  padding: .657em 0.987em;
  display: block;
}
#navigation {
  clear: both;
  margin-bottom: 2.618em;
  display: none;
  background: #364245;
  -webkit-border-bottom-left-radius: ;
  -webkit-border-bottom-right-radius: ;
  border-bottom-left-radius: ;
  border-bottom-right-radius: ;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#navigation ul.rss {
  margin: 0 1em 0 0;
  padding: 0 1em 0 0;
}
#navigation ul.rss li {
  display: inline;
  padding: 0;
}
#navigation ul.rss li a:before {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 100%;
  margin-right: .618em;
  font-weight: normal;
  line-height: 1em;
  width: 1em;
  content: "\f09e";
}
#navigation ul.rss li.sub-email {
  color: #364245;
}
#navigation ul {
  list-style: none;
}
#navigation .nav a {
  color: #d2dadb;
  font-weight: 400;
}
.header-top .account,
.header-top .cart {
  display: none;
}
.header-top .widget_product_search {
  background: #fff;
}
/* 2.2.2 Top Navigation (optional) */
#top ul.contact {
  *zoom: 1;
  margin: 0;
  list-style: none;
  display: none;
}
#top ul.contact:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
#top ul.contact:before,
#top ul.contact:after {
  content: "";
  display: table;
}
#top ul.contact:after {
  clear: both;
}
#top select {
  margin: 1.618em 0 0;
  width: 100%;
}
#mobileMenu_top-nav.mobileMenu {
  display: none !IMPORTANT;
}
#top #top-nav {
  display: none;
}
/* 2.3 Header */
#header {
  padding: 1.618em 0 1.618em;
  clear: both;
  position: relative;
}
#header #logo {
  float: left;
  margin-bottom: 1.618em;
}
#header .site-title,
#header .site-description {
  color: #000;
  display: none;
}
#header .site-title a,
#header .site-description a {
  color: #090b0c;
  text-transform: none;
  font-weight: normal;
  text-decoration: none;
}
#header .site-title a:hover,
#header .site-description a:hover {
  text-decoration: underline;
}
#header hgroup {
  *zoom: 1;
  margin-bottom: 1em;
}
#header hgroup:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
#header hgroup:before,
#header hgroup:after {
  content: "";
  display: table;
}
#header hgroup:after {
  clear: both;
}
#header hgroup h1,
#header hgroup h2,
#header hgroup h3 {
  float: left;
  clear: left;
  margin: 0;
}
#header .nav-toggle {
  float: right;
  cursor: pointer;
  color: #f37324;
}
#header .nav-toggle:after {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 100%;
  margin-left: .618em;
  font-weight: normal;
  line-height: 1em;
  width: 1em;
  content: "\f0c9";
  background: #e7e7e7;
  height: 1.5em;
  width: 1.5em;
  text-align: center;
  line-height: 1.75;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#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: #4d5e61;
  font-family: "Droid Serif", sans-serif;
  font-style: italic;
}
#header #topad {
  margin-bottom: 1em;
}
#header #topad img {
  height: auto;
}
#header .widget_product_search {
  margin-bottom: 1em;
}
#header .widget_product_search form {
  margin-bottom: 0;
}
#header .account {
  *zoom: 1;
  margin: 1em 0;
}
#header .account:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
#header .account:before,
#header .account:after {
  content: "";
  display: table;
}
#header .account:after {
  clear: both;
}
#header .account img {
  width: 2.618em;
  height: auto;
  float: left;
  -webkit-border-radius: 0.382em;
  border-radius: 0.382em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  display: block;
  margin-right: 1em;
}
#header .account p,
#header .account .account-links ul {
  margin: 0;
  font-size: .857em;
}
#header .account .account-links {
  position: relative;
  margin-left: 3.631em;
  display: none;
}
#header .account .account-links:before {
  content: "";
  display: block;
  border: 0.618em solid #2ab6d6;
  border-color: transparent #2ab6d6 transparent transparent;
  position: absolute;
  top: .618em;
  left: -1.1em;
}
#header .account .account-links ul {
  list-style: none;
  background-color: #2ab6d6;
  *zoom: 1;
  -webkit-border-radius: 0.382em;
  border-radius: 0.382em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#header .account .account-links ul:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
#header .account .account-links ul:before,
#header .account .account-links ul:after {
  content: "";
  display: table;
}
#header .account .account-links ul:after {
  clear: both;
}
#header .account .account-links ul li a {
  display: inline-block;
  padding: .7em 0;
  width: 25%;
  float: left;
  color: #ffffff;
  text-align: center;
  position: relative;
}
#header .account .account-links ul li a span {
  display: none;
}
#header .account .account-links ul li a:before {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 100%;
  margin-right: .618em;
  font-weight: normal;
  line-height: 1em;
  width: 1em;
  margin: 0;
}
#header .account .account-links ul li a:hover {
  background-color: #19a5c5;
}
#header .account .account-links ul li.my-account a:before {
  content: "\f007";
}
#header .account .account-links ul li.logout a:before {
  content: "\f08b";
}
#header .account .account-links ul li.edit-address a:before {
  content: "\f015";
}
#header .account .account-links ul li.edit-password a:before {
  content: "\f084";
}
#header .account .account-links ul li.register a:before {
  content: "\f007";
}
#header .account .account-links ul li.register a:after {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 100%;
  margin-left: .618em;
  font-weight: normal;
  line-height: 1em;
  width: 1em;
  content: "\f055";
  position: absolute;
  top: 1.387em;
  left: 45%;
  font-size: .618em;
}
#header .account .account-links ul li:last-child a {
  -webkit-border-top-right-radius: 0.382em;
  -webkit-border-bottom-right-radius: 0.382em;
  border-top-right-radius: 0.382em;
  border-bottom-right-radius: 0.382em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#header .account .account-links ul li:first-child a {
  -webkit-border-top-left-radius: 0.382em;
  -webkit-border-bottom-left-radius: 0.382em;
  border-top-left-radius: 0.382em;
  border-bottom-left-radius: 0.382em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#header .account.logged-out .account-links ul li.my-account {
  width: auto;
}
#header .account.logged-out .account-links ul li.my-account a:before {
  content: "\f090";
}
/* 2.4 Content */
/* 2.4.1 Slider */
/* 2.5 Sidebar */
#sidebar .secondary {
  float: left;
  margin-right: 20px;
}
#sidebar .secondary.last {
  margin: 0;
}
/* 2.6 Footer */
#content + .breadcrumbs-wrap {
  display: block;
  width: 100%;
  border: 0;
  float: none;
  margin: 0;
  margin: 0 -1.918em;
  padding: 1.918em;
}
.footer-wrap {
  background: #364245;
  color: #7d9398;
  padding: 1em 1.618em;
}
.footer-wrap a {
  color: #b5c2c5;
}
.footer-wrap a:hover {
  color: #d2dadb;
}
.footer-wrap.contact {
  background: #253134;
  border-top: 4px solid #2ab6d6;
}
.footer-wrap.contact ul {
  margin: 0;
  list-style: none;
}
.footer-wrap.contact ul li {
  width: 48%;
  float: left;
  margin-right: 3.8%;
  clear: both;
}
.footer-wrap.contact ul li:before {
  color: #f8f8f8;
}
.footer-wrap.contact ul li:nth-child(2n) {
  margin-right: 0;
  clear: none;
}
.footer-wrap.contact ul li.phone:before {
  content: "\f095";
}
.footer-wrap.contact ul li.twitter:before {
  content: "\f099";
}
.footer-wrap.contact ul li.facebook:before {
  content: "\f09a";
}
#footer {
  padding: 0 0 0.618em 0;
  margin-top: 0.618em;
}
#footer hr {
  display: inline;
  float: left;
  width: 97.22222222222221%;
  margin-left: 1.3888888888888888%;
  margin-right: 1.3888888888888888%;
  *width: 97.17013888888889%;
  *margin-left: 1.3368055555555556%;
  *margin-right: 1.3368055555555556%;
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
  margin-bottom: 2.618em;
}
#footer #credit img {
  vertical-align: middle;
}
#footer #credit span {
  display: none;
}
#footer-widgets .widget {
  margin-bottom: 2.618em;
}
#footer-widgets .widget h3:first-child {
  color: #f8f8f8;
  border: 0;
  font-weight: 700;
}
#footer-widgets .widget p:last-child {
  margin-bottom: 0;
}
#footer-widgets .star-rating:before {
  color: rgba(0, 0, 0, 0.6);
}
/* 2.7 Breadcrumbs */
.breadcrumbs-wrap {
  margin-bottom: 2.618em;
  padding-bottom: 1em;
  border-bottom: 0.236em solid #f0f0f0;
  display: none;
}
.breadcrumbs-wrap .breadcrumb {
  color: #697578;
}
.breadcrumbs-wrap .breadcrumb .breadcrumb-trail {
  font-size: .857em;
}
.breadcrumbs-wrap .breadcrumb a {
  color: #697578;
}
.breadcrumbs-wrap .breadcrumb .sep:after {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 100%;
  margin-left: .618em;
  font-weight: normal;
  line-height: 1em;
  width: 1em;
  content: "\f105";
  color: #8b979a;
}
/*-------------------------------------------------------------------------------------------*/
/* 3. POSTS */
/*-------------------------------------------------------------------------------------------*/
#breadcrumb,
.post .video {
  margin-bottom: 1.618em;
}
.archive-header {
  display: block;
  float: left;
  width: 100%;
  margin: 0 0 1.618em;
  padding: 0 0 1em;
  font-weight: bold;
  border-bottom: #e7e7e7 1px solid;
}
.archive-description {
  clear: both;
  margin-bottom: 1.618em;
}
.post,
.type-page {
  margin: 0 0 2.618em;
  *zoom: 1;
  /* 3.1 Images */

}
.post:after,
.type-page:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
.post:before,
.type-page:before,
.post:after,
.type-page:after {
  content: "";
  display: table;
}
.post:after,
.type-page:after {
  clear: both;
}
.post .post-meta,
.type-page .post-meta {
  display: none;
}
.post .post-more,
.type-page .post-more {
  clear: both;
}
.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 .post-content img.woo-image,
.type-page .post-content img.woo-image {
  margin-bottom: 0;
}
.post .post-content > a img.woo-image,
.type-page .post-content > a img.woo-image {
  -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;
}
.post .post-content > a + .entry,
.type-page .post-content > a + .entry {
  -webkit-border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.post .entry,
.type-page .entry,
.post #contactForm,
.type-page #contactForm {
  background: #ffffff;
  -webkit-border-radius: 0.382em;
  border-radius: 0.382em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  padding: 0.2em;
  *zoom: 1;
  clear: both;
}
.post .entry:after,
.type-page .entry:after,
.post #contactForm:after,
.type-page #contactForm:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
.post .entry:before,
.type-page .entry:before,
.post #contactForm:before,
.type-page #contactForm:before,
.post .entry:after,
.type-page .entry:after,
.post #contactForm:after,
.type-page #contactForm:after {
  content: "";
  display: table;
}
.post .entry:after,
.type-page .entry:after,
.post #contactForm:after,
.type-page #contactForm:after {
  clear: both;
}
.post .entry ul,
.type-page .entry ul,
.post #contactForm ul,
.type-page #contactForm ul,
.post .entry ol,
.type-page .entry ol,
.post #contactForm ol,
.type-page #contactForm ol {
  margin-left: 1.618em;
}
.post .entry ul.products,
.type-page .entry ul.products,
.post #contactForm ul.products,
.type-page #contactForm ul.products {
  margin-left: 0;
}
.post .entry ul.products img,
.type-page .entry ul.products img,
.post #contactForm ul.products img,
.type-page #contactForm ul.products img {
  background: none;
  border: 0;
  padding: 0;
}
.post .entry blockquote,
.type-page .entry blockquote,
.post #contactForm blockquote,
.type-page #contactForm blockquote {
  position: relative;
  margin: 0 0 1.618em;
  padding: 0 0 0 2.618em;
  quotes: "\201C" "\201D" "\2018" "\2019";
  font-style: italic;
}
.post .entry blockquote:before,
.type-page .entry blockquote:before,
.post #contactForm blockquote:before,
.type-page #contactForm blockquote:before {
  content: open-quote;
  position: absolute;
  top: 0;
  left: 0;
  font-family: Georgia, serif;
  font-size: 4em;
  line-height: 1;
  margin: 0;
  vertical-align: -0.4em;
}
.post .woo-image,
.type-page .woo-image {
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */

  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */

  box-sizing: border-box;
  /* Opera/IE 8+ */

  border: 0 !important;
  padding: 0 !important;
  -webkit-border-radius: 0.382em;
  border-radius: 0.382em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.post img,
.type-page img,
.post img.thumbnail,
.type-page img.thumbnail {
  padding: .327em;
  border: 1px solid #e7e7e7;
  background: #fff;
  max-width: 100%;
  height: auto;
}
.post img:hover,
.type-page img:hover,
.post img.thumbnail:hover,
.type-page img.thumbnail:hover {
  border-color: #cdcdcd;
}
.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 .wp-caption,
.type-page .wp-caption {
  padding: .077em;
  text-align: center;
  background: #f8f8f8;
  border: 1px solid #e7e7e7;
  max-width: 100%;
}
.post .wp-caption img,
.type-page .wp-caption img {
  margin: 0;
  padding: .327em 0;
  background: none;
  border: 0;
}
.post .wp-caption-text,
.type-page .wp-caption-text {
  margin: 0;
  padding: 0;
  text-align: center;
}
.single .woo-image {
  margin-bottom: 2.618em;
}
.page-template-template-contact-php .type-page .entry {
  -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;
}
.page-template-template-contact-php .type-page #contactForm {
  -webkit-border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
/* 3.2 Pagination / WP-Pagenavi / Woo-Pagination */
.nav-entries,
.wp-pagenavi {
  padding: 1em 1.618em;
}
.nav-entries a {
  display: block;
  color: #364245;
  text-decoration: none;
}
.nav-entries a:hover {
  text-decoration: underline;
}
.woo-pagination {
  margin: 0 0 1.618em;
  text-align: left;
  clear: both;
}
.woo-pagination a {
  padding: .327em .618em;
  -webkit-border-radius: 0.382em;
  border-radius: 0.382em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.woo-pagination a:hover {
  background: #e7e7e7;
}
.woo-pagination .page-numbers.current {
  background: #ffffff;
  color: #364245;
  padding: .327em .618em;
  -webkit-border-radius: 0.382em;
  border-radius: 0.382em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
/* 3.3 Single Post Author */
#post-author {
  display: none;
}
/* 3.4 Post Entry Nav */
#post-entries {
  margin-bottom: 2.618em;
  *zoom: 1;
}
#post-entries:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
#post-entries:before,
#post-entries:after {
  content: "";
  display: table;
}
#post-entries:after {
  clear: both;
}
#post-entries a {
  background: #f3f3f3;
  padding: .618em 1em;
  -webkit-border-radius: 0.382em;
  border-radius: 0.382em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  display: inline-block;
}
#post-entries a:hover {
  background: #f37324;
  color: #ffffff;
}
#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: "\f04a";
}
#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;
  content: "\f04e";
}
/* 3.5 Connect */
#connect {
  background: #f8f8f8;
  padding: 1.618em 0;
  border-top: 1px solid #e7e7e7;
  clear: both;
}
#connect .col-left,
#connect .col-right {
  margin-bottom: 1.618em;
}
#connect .newsletter-form .email {
  width: 60%;
}
#connect .social a {
  opacity: 0.8;
  filter: alpha(opacity=@opacity * 100);
  -webkit-transition: all ease-in-out 0.2s;
  -moz-transition: all ease-in-out 0.2s;
  -ms-transition: all ease-in-out 0.2s;
  -o-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
  font-weight: normal;
}
#connect .social a:hover {
  opacity: 1;
  filter: alpha(opacity=@opacity * 100);
}
#connect .related-posts {
  border: 0;
}
#connect .related-posts ul {
  list-style: none;
}
#connect .social a:hover {
  text-decoration: none;
}
#connect .social a:before {
  font-family: Social;
  font-size: 1.9em;
  line-height: 1;
  margin-right: 0.2em;
}
#connect .social a.subscribe:before {
  content: '\e002';
}
#connect .social a.twitter:before {
  content: '\e004';
}
#connect .social a.facebook:before {
  content: '\e005';
}
#connect .social a.youtube:before {
  content: '\e008';
}
#connect .social a.flickr:before {
  content: '\e006';
}
#connect .social a.linkedin:before {
  content: '\e000';
}
#connect .social a.delicious:before {
  content: '\e001';
}
#connect .social a.googleplus:before {
  content: '\e003';
}
.widget #connect .fl,
.widget #connect .fr {
  float: none;
}
/*-------------------------------------------------------------------------------------------*/
/* 4. WIDGETS */
/*-------------------------------------------------------------------------------------------*/
/* 4.1 Generic Widgets */
.widget {
  margin-bottom: 1.618em;
}
.widget h3,
.widget h1 {
  color: #364245;
  font-weight: 700;
}
.widget h1 {
  font-size: 1em;
  text-transform: uppercase;
}
.widget ul {
  clear: both;
  list-style-position: inside;
  list-style-type: disc;
}
.widget select {
  width: 100%;
}
.widget a {
  font-weight: 700;
}
/* 4.2 Specific Widgets */
/* SEARCH FORM */
#searchform {
  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 #e7e7e7;
  -webkit-border-radius: 0.382em;
  border-radius: 0.382em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#searchform .s,
#searchform #s {
  padding: .78em 2.618em .78em 1.387em;
  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: #364245;
}
#searchform .search-submit,
#searchform #searchsubmit {
  position: absolute;
  top: 5%;
  right: .618em;
  border: none;
  overflow: hidden;
  margin: 0;
  padding: 1.618em;
  width: 20px;
  height: 0;
  background: url('images/ico-search.png') no-repeat center;
  background-size: 16px 16px;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  opacity: 0.2;
  filter: alpha(opacity=@opacity * 100);
  text-indent: -99em;
}
#searchform .search-submit:hover,
#searchform #searchsubmit:hover {
  opacity: 1;
  filter: alpha(opacity=@opacity * 100);
  background-color: none;
  -webkit-animation: none;
}
#searchform:hover,
#searchform:focus,
#searchform:active {
  border-color: #2ab6d6;
}
#searchform label {
  display: none;
}
/* FLICKR */
.widget_woo_flickr h3 span {
  color: #0051d8;
}
.widget_woo_flickr h3 span span {
  color: #ff1183;
}
.widget_woo_flickr .flickr_badge_image {
  float: left;
  margin: 0.236em;
}
.widget_woo_flickr .wrap {
  position: relative;
  margin-bottom: 1.618em;
  padding: 0;
}
.widget_woo_flickr a img {
  float: left;
  margin: 0 0 0.618em 0.618em;
  display: block;
  border: 1px solid #e7e7e7;
  padding: .236em;
}
.widget_woo_flickr a:hover img {
  border-color: #cdcdcd;
}
/* CALENDAR */
#wp-calendar {
  width: 95%;
  margin-bottom: 1.618em;
  clear: both;
  padding: 0;
}
#wp-calendar caption {
  padding: 1em;
}
#wp-calendar th,
#wp-calendar td {
  text-align: center;
  background: #dedede;
  padding: .236em 0;
}
#wp-calendar td {
  background: transparent;
  color: #4d5e61;
}
/* BLOG AUTHOR */
.widget_woo_blogauthorinfo .avatar {
  padding: .382em;
  border: 1px solid #e7e7e7;
}
.widget_woo_blogauthorinfo .left {
  float: left;
  margin: 0 1em .618em 0;
}
.widget_woo_blogauthorinfo .right {
  float: right;
  margin: 0 .618em 1em;
}
/* WOOTABS */
.woocommerce_tabs,
.woocommerce-tabs {
  clear: both;
}
.woocommerce_tabs ul.nav-tabs,
.woocommerce-tabs ul.nav-tabs,
.woocommerce_tabs ul.tabs,
.woocommerce-tabs ul.tabs {
  margin-bottom: 0;
  list-style: none;
  *zoom: 1;
}
.woocommerce_tabs ul.nav-tabs:after,
.woocommerce-tabs ul.nav-tabs:after,
.woocommerce_tabs ul.tabs:after,
.woocommerce-tabs ul.tabs:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
.woocommerce_tabs ul.nav-tabs:before,
.woocommerce-tabs ul.nav-tabs:before,
.woocommerce_tabs ul.tabs:before,
.woocommerce-tabs ul.tabs:before,
.woocommerce_tabs ul.nav-tabs:after,
.woocommerce-tabs ul.nav-tabs:after,
.woocommerce_tabs ul.tabs:after,
.woocommerce-tabs ul.tabs:after {
  content: "";
  display: table;
}
.woocommerce_tabs ul.nav-tabs:after,
.woocommerce-tabs ul.nav-tabs:after,
.woocommerce_tabs ul.tabs:after,
.woocommerce-tabs ul.tabs:after {
  clear: both;
}
.woocommerce_tabs ul.nav-tabs li,
.woocommerce-tabs ul.nav-tabs li,
.woocommerce_tabs ul.tabs li,
.woocommerce-tabs ul.tabs li {
  float: left;
  margin-bottom: 0;
  display: block;
}
.woocommerce_tabs ul.nav-tabs li a,
.woocommerce-tabs ul.nav-tabs li a,
.woocommerce_tabs ul.tabs li a,
.woocommerce-tabs ul.tabs li a {
  border-bottom: 0;
  background: #f3f3f3;
  border-bottom-width: 0;
  border-right-width: 0;
  display: block;
  margin: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
  padding: .382em .618em !important;
  font-size: .857em;
}
.woocommerce_tabs ul.nav-tabs li a:hover,
.woocommerce-tabs ul.nav-tabs li a:hover,
.woocommerce_tabs ul.tabs li a:hover,
.woocommerce-tabs ul.tabs li a:hover {
  color: #2ab6d6;
}
.woocommerce_tabs ul.nav-tabs li:last-child a,
.woocommerce-tabs ul.nav-tabs li:last-child a,
.woocommerce_tabs ul.tabs li:last-child a,
.woocommerce-tabs ul.tabs li:last-child a {
  border-right-width: 1px;
}
.woocommerce_tabs ul.nav-tabs li.active,
.woocommerce-tabs ul.nav-tabs li.active,
.woocommerce_tabs ul.tabs li.active,
.woocommerce-tabs ul.tabs li.active {
  position: relative;
}
.woocommerce_tabs ul.nav-tabs li.active a,
.woocommerce-tabs ul.nav-tabs li.active a,
.woocommerce_tabs ul.tabs li.active a,
.woocommerce-tabs ul.tabs li.active a {
  position: relative;
  background: #ffffff;
  color: #364245;
  -webkit-border-top-left-radius: 0.382em;
  -webkit-border-top-right-radius: 0.382em;
  border-top-left-radius: 0.382em;
  border-top-right-radius: 0.382em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.woocommerce_tabs ul.nav-tabs li.active a:after,
.woocommerce-tabs ul.nav-tabs li.active a:after,
.woocommerce_tabs ul.tabs li.active a:after,
.woocommerce-tabs ul.tabs li.active a:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: #ffffff;
}
.woocommerce_tabs .panel,
.woocommerce-tabs .panel,
.woocommerce_tabs .tab,
.woocommerce-tabs .tab {
  background: #ffffff;
  padding: 1.618em;
  margin-bottom: 1.618em;
  -webkit-border-radius: 0.382em;
  border-radius: 0.382em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-border-top-left-radius: 0;
  border-top-left-radius: 0;
}
.woocommerce_tabs .panel .panel,
.woocommerce-tabs .panel .panel,
.woocommerce_tabs .tab .panel,
.woocommerce-tabs .tab .panel {
  padding: 0;
}
.woocommerce_tabs .panel ul,
.woocommerce-tabs .panel ul,
.woocommerce_tabs .tab ul,
.woocommerce-tabs .tab ul,
.woocommerce_tabs .panel ol,
.woocommerce-tabs .panel ol,
.woocommerce_tabs .tab ol,
.woocommerce-tabs .tab ol {
  margin-left: 1.387em;
}
.widget_woothemes_features .features .feature,
.widget_woothemes_testimonials .features .feature,
.widget_woothemes_features .testimonials .feature,
.widget_woothemes_testimonials .testimonials .feature,
.widget_woothemes_features .features .quote,
.widget_woothemes_testimonials .features .quote,
.widget_woothemes_features .testimonials .quote,
.widget_woothemes_testimonials .testimonials .quote {
  *zoom: 1;
  margin-bottom: 1.618em;
}
.widget_woothemes_features .features .feature:after,
.widget_woothemes_testimonials .features .feature:after,
.widget_woothemes_features .testimonials .feature:after,
.widget_woothemes_testimonials .testimonials .feature:after,
.widget_woothemes_features .features .quote:after,
.widget_woothemes_testimonials .features .quote:after,
.widget_woothemes_features .testimonials .quote:after,
.widget_woothemes_testimonials .testimonials .quote:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
.widget_woothemes_features .features .feature:before,
.widget_woothemes_testimonials .features .feature:before,
.widget_woothemes_features .testimonials .feature:before,
.widget_woothemes_testimonials .testimonials .feature:before,
.widget_woothemes_features .features .quote:before,
.widget_woothemes_testimonials .features .quote:before,
.widget_woothemes_features .testimonials .quote:before,
.widget_woothemes_testimonials .testimonials .quote:before,
.widget_woothemes_features .features .feature:after,
.widget_woothemes_testimonials .features .feature:after,
.widget_woothemes_features .testimonials .feature:after,
.widget_woothemes_testimonials .testimonials .feature:after,
.widget_woothemes_features .features .quote:after,
.widget_woothemes_testimonials .features .quote:after,
.widget_woothemes_features .testimonials .quote:after,
.widget_woothemes_testimonials .testimonials .quote:after {
  content: "";
  display: table;
}
.widget_woothemes_features .features .feature:after,
.widget_woothemes_testimonials .features .feature:after,
.widget_woothemes_features .testimonials .feature:after,
.widget_woothemes_testimonials .testimonials .feature:after,
.widget_woothemes_features .features .quote:after,
.widget_woothemes_testimonials .features .quote:after,
.widget_woothemes_features .testimonials .quote:after,
.widget_woothemes_testimonials .testimonials .quote:after {
  clear: both;
}
.widget_woothemes_features .features .feature img,
.widget_woothemes_testimonials .features .feature img,
.widget_woothemes_features .testimonials .feature img,
.widget_woothemes_testimonials .testimonials .feature img,
.widget_woothemes_features .features .quote img,
.widget_woothemes_testimonials .features .quote img,
.widget_woothemes_features .testimonials .quote img,
.widget_woothemes_testimonials .testimonials .quote img {
  width: 18.2%;
  height: auto;
  float: left;
}
.widget_woothemes_features .features .feature .feature-title,
.widget_woothemes_testimonials .features .feature .feature-title,
.widget_woothemes_features .testimonials .feature .feature-title,
.widget_woothemes_testimonials .testimonials .feature .feature-title,
.widget_woothemes_features .features .quote .feature-title,
.widget_woothemes_testimonials .features .quote .feature-title,
.widget_woothemes_features .testimonials .quote .feature-title,
.widget_woothemes_testimonials .testimonials .quote .feature-title,
.widget_woothemes_features .features .feature .feature-content,
.widget_woothemes_testimonials .features .feature .feature-content,
.widget_woothemes_features .testimonials .feature .feature-content,
.widget_woothemes_testimonials .testimonials .feature .feature-content,
.widget_woothemes_features .features .quote .feature-content,
.widget_woothemes_testimonials .features .quote .feature-content,
.widget_woothemes_features .testimonials .quote .feature-content,
.widget_woothemes_testimonials .testimonials .quote .feature-content,
.widget_woothemes_features .features .feature .author,
.widget_woothemes_testimonials .features .feature .author,
.widget_woothemes_features .testimonials .feature .author,
.widget_woothemes_testimonials .testimonials .feature .author,
.widget_woothemes_features .features .quote .author,
.widget_woothemes_testimonials .features .quote .author,
.widget_woothemes_features .testimonials .quote .author,
.widget_woothemes_testimonials .testimonials .quote .author {
  float: right;
  width: 72.7%;
}
.widget_woothemes_testimonials .testimonials .quote a.avatar-link {
  display: block;
  text-align: center;
}
.widget_woothemes_testimonials .testimonials .quote a.avatar-link img {
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  margin: 0 auto;
  float: none;
}
.widget_woothemes_testimonials .testimonials .quote .testimonials-text {
  -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: 1em;
  background: #ffffff;
  position: relative;
  -webkit-border-radius: 0.382em;
  border-radius: 0.382em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  margin-bottom: 1.618em;
}
.widget_woothemes_testimonials .testimonials .quote .testimonials-text:before {
  content: "";
  display: block;
  border: 1em solid #ffffff;
  border-color: #ffffff transparent transparent transparent;
  position: absolute;
  bottom: -2em;
  left: 45%;
}
.widget_woothemes_testimonials .testimonials .quote .testimonials-text cite.author {
  width: 100%;
  font-style: normal;
  font-weight: 700;
  padding-top: 1em;
  display: block;
  float: none;
}
.widget_woothemes_testimonials .testimonials .quote .testimonials-text cite.author .excerpt,
.widget_woothemes_testimonials .testimonials .quote .testimonials-text cite.author .url {
  display: block;
  font-weight: normal;
}
#sidebar #searchform,
#footer-widgets #searchform {
  background: #ffffff;
}
#sidebar #connect,
#footer-widgets #connect {
  padding: 0;
  border: 0;
  background: none;
}
#sidebar .widget_woo_recent_products ul.products li.product,
#footer-widgets .widget_woo_recent_products ul.products li.product,
#sidebar .widget_woo_product_categories ul.products li.product,
#footer-widgets .widget_woo_product_categories ul.products li.product,
#sidebar .widget_woo_featured_products ul.products li.product,
#footer-widgets .widget_woo_featured_products ul.products li.product,
#sidebar .widget_woo_best_selling_products ul.products li.product,
#footer-widgets .widget_woo_best_selling_products ul.products li.product {
  width: 100%;
  margin: 0 0 1.618em;
  float: none;
  display: block;
}
#sidebar .widget_woo_recent_products ul.products li.product:last-child,
#footer-widgets .widget_woo_recent_products ul.products li.product:last-child,
#sidebar .widget_woo_product_categories ul.products li.product:last-child,
#footer-widgets .widget_woo_product_categories ul.products li.product:last-child,
#sidebar .widget_woo_featured_products ul.products li.product:last-child,
#footer-widgets .widget_woo_featured_products ul.products li.product:last-child,
#sidebar .widget_woo_best_selling_products ul.products li.product:last-child,
#footer-widgets .widget_woo_best_selling_products ul.products li.product:last-child {
  margin-bottom: 0;
}
.home #content .widget h1,
.home #content .widget h2 {
  text-transform: none;
  font-size: 1.618em;
  margin-bottom: 0;
  border-bottom: 0.15em solid rgba(0, 0, 0, 0.025);
  padding: 1em 0 .382em;
  margin-bottom: 1.618em;
  text-align: center;
}
.home #footer-widgets .widget_woo_product_categories .description {
  display: none;
}
#sidebar {
  margin-bottom: 2.618em;
}
#sidebar .widget {
  padding: 0.618em;
  background: #f5f5f5;
  -webkit-border-radius: 0.382em;
  border-radius: 0.382em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  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+ */

}
#sidebar .widget:last-child {
  margin-bottom: 0;
}
#sidebar .widget ul:last-child {
  margin-bottom: 0;
}
#sidebar .widget_woo_featured_products ul.products li.product {
  background: #fff;
}
#sidebar .widget_woo_featured_products ul.products li.product .categories {
  border: 0;
}
#sidebar .widget_woo_featured_products ul.products li.product .excerpt {
  background: #fff;
  padding: 1em;
}
#sidebar .widget_woo_featured_products ul.products li.product .excerpt p {
  margin: 0;
}
#sidebar .widget_woo_featured_products ul.products li.product .rating-wrap {
  border: 0;
}
/*-------------------------------------------------------------------------------------------*/
/* 5. COMMENTS */
/*-------------------------------------------------------------------------------------------*/
/* 5.1 Comments */
#comments ol.commentlist,
#comments ul.children {
  margin-left: 0;
  clear: both;
  list-style: none;
  margin-bottom: 0;
}
#comments li.comment {
  overflow-x: hidden;
}
#comments li.comment .comment_container {
  display: block;
  width: 103.7037037037037%;
  margin-left: -1.8518518518518516%;
  margin-right: -1.8518518518518516%;
  *width: 103.65162037037037%;
  *margin-left: -1.903935185185185%;
  *margin-right: -1.903935185185185%;
  margin-bottom: 1.618em;
  *zoom: 1;
}
#comments li.comment .comment_container:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
#comments li.comment .comment_container:before,
#comments li.comment .comment_container:after {
  content: "";
  display: table;
}
#comments li.comment .comment_container:after {
  clear: both;
}
#comments li.comment .comment_container:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
#comments li.comment .comment_container:before,
#comments li.comment .comment_container:after {
  content: "";
  display: table;
}
#comments li.comment .comment_container:after {
  clear: both;
}
#comments li.comment .comment_container .avatar {
  -webkit-border-radius: 0.382em;
  border-radius: 0.382em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  display: inline;
  float: left;
  width: 7.4074074074074066%;
  margin-left: 1.8518518518518516%;
  margin-right: 1.8518518518518516%;
  *width: 7.3553240740740735%;
  *margin-left: 1.7997685185185184%;
  *margin-right: 1.7997685185185184%;
  height: auto;
}
#comments li.comment .comment_container .avatar img {
  width: 100%;
  height: auto;
  margin: 0;
  -webkit-border-radius: 0.382em;
  border-radius: 0.382em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#comments li.comment .comment_container .comment-text {
  display: inline;
  float: left;
  width: 74.07407407407408%;
  margin-left: 1.8518518518518516%;
  margin-right: 1.8518518518518516%;
  *width: 74.02199074074075%;
  *margin-left: 1.7997685185185184%;
  *margin-right: 1.7997685185185184%;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */

  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */

  box-sizing: border-box;
  /* Opera/IE 8+ */

  background: #ffffff;
  -webkit-border-radius: 0.382em;
  border-radius: 0.382em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  padding: 1em;
  position: relative;
}
#comments li.comment .comment_container .comment-text p:last-child {
  margin-bottom: 0;
}
#comments li.comment .comment_container .comment-text:after {
  content: "";
  display: block;
  border: 1em solid #ffffff;
  border-color: transparent transparent transparent #ffffff;
  position: absolute;
  top: 1em;
  right: -1.95em;
}
#comments li.comment .comment_container .comment-head {
  margin-bottom: 1em;
  color: #697578;
}
#comments li.comment .comment_container .comment-head .name:before {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 100%;
  margin-right: .618em;
  font-weight: normal;
  line-height: 1em;
  width: 1em;
  content: "\f007";
}
#comments li.comment ul.children li.comment .comment_container {
  margin-left: 9.722222222222221%;
}
#comments li.comment ul.children li.comment .comment_container .avatar {
  display: inline;
  float: left;
  width: 7.4074074074074066%;
  margin-left: 1.8518518518518516%;
  margin-right: 1.8518518518518516%;
  *width: 7.3553240740740735%;
  *margin-left: 1.7997685185185184%;
  *margin-right: 1.7997685185185184%;
}
#comments li.comment ul.children li.comment .comment_container .avatar img {
  width: 100%;
  height: auto;
  margin: 0;
}
#comments li.comment ul.children li.comment .comment_container .comment-text {
  display: inline;
  float: left;
  width: 62.96296296296296%;
  margin-left: 1.8518518518518516%;
  margin-right: 1.8518518518518516%;
  *width: 62.910879629629626%;
  *margin-left: 1.7997685185185184%;
  *margin-right: 1.7997685185185184%;
}
#comments li.comment ul.children li.comment ul.children li.comment .comment_container {
  margin-left: 21.055556%;
}
#comments li.comment ul.children li.comment ul.children li.comment .comment_container .comment-text {
  display: inline;
  float: left;
  width: 51.85185185185185%;
  margin-left: 1.8518518518518516%;
  margin-right: 1.8518518518518516%;
  *width: 51.79976851851851%;
  *margin-left: 1.7997685185185184%;
  *margin-right: 1.7997685185185184%;
}
#comments li.comment ul.children li.comment ul.children li.comment ul.children li.comment .comment_container {
  margin-left: 32.6%;
}
#comments li.comment ul.children li.comment ul.children li.comment ul.children li.comment .comment_container .comment-text {
  display: inline;
  float: left;
  width: 40.74074074074074%;
  margin-left: 1.8518518518518516%;
  margin-right: 1.8518518518518516%;
  *width: 40.688657407407405%;
  *margin-left: 1.7997685185185184%;
  *margin-right: 1.7997685185185184%;
}
.page #comments li.comment .comment_container {
  display: block;
  width: 103.7037037037037%;
  margin-left: -1.8518518518518516%;
  margin-right: -1.8518518518518516%;
  *width: 103.65162037037037%;
  *margin-left: -1.903935185185185%;
  *margin-right: -1.903935185185185%;
  *zoom: 1;
}
.page #comments li.comment .comment_container:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
.page #comments li.comment .comment_container:before,
.page #comments li.comment .comment_container:after {
  content: "";
  display: table;
}
.page #comments li.comment .comment_container:after {
  clear: both;
}
.page #comments li.comment .comment_container .avatar {
  display: inline;
  float: left;
  width: 7.4074074074074066%;
  margin-left: 1.8518518518518516%;
  margin-right: 1.8518518518518516%;
  *width: 7.3553240740740735%;
  *margin-left: 1.7997685185185184%;
  *margin-right: 1.7997685185185184%;
}
.page #comments li.comment .comment_container .avatar img {
  width: 100%;
  height: auto;
  margin: 0;
}
.page #comments li.comment .comment_container .comment-text {
  display: inline;
  float: left;
  width: 85.18518518518519%;
  margin-left: 1.8518518518518516%;
  margin-right: 1.8518518518518516%;
  *width: 85.13310185185186%;
  *margin-left: 1.7997685185185184%;
  *margin-right: 1.7997685185185184%;
}
.page #comments li.comment ul.children li.comment .comment_container {
  margin-left: 9.722222222222221%;
}
.page #comments li.comment ul.children li.comment .comment_container .avatar {
  display: inline;
  float: left;
  width: 7.4074074074074066%;
  margin-left: 1.8518518518518516%;
  margin-right: 1.8518518518518516%;
  *width: 7.3553240740740735%;
  *margin-left: 1.7997685185185184%;
  *margin-right: 1.7997685185185184%;
}
.page #comments li.comment ul.children li.comment .comment_container .avatar img {
  width: 100%;
  height: auto;
  margin: 0;
}
.page #comments li.comment ul.children li.comment .comment_container .comment-text {
  display: inline;
  float: left;
  width: 74.07407407407408%;
  margin-left: 1.8518518518518516%;
  margin-right: 1.8518518518518516%;
  *width: 74.02199074074075%;
  *margin-left: 1.7997685185185184%;
  *margin-right: 1.7997685185185184%;
}
.page #comments li.comment ul.children li.comment ul.children li.comment .comment_container {
  margin-left: 21.055556%;
}
.page #comments li.comment ul.children li.comment ul.children li.comment .comment_container .comment-text {
  display: inline;
  float: left;
  width: 62.96296296296296%;
  margin-left: 1.8518518518518516%;
  margin-right: 1.8518518518518516%;
  *width: 62.910879629629626%;
  *margin-left: 1.7997685185185184%;
  *margin-right: 1.7997685185185184%;
}
.page #comments li.comment ul.children li.comment ul.children li.comment ul.children li.comment .comment_container {
  margin-left: 44.055556%;
}
.page #comments li.comment ul.children li.comment ul.children li.comment ul.children li.comment .comment_container .comment-text {
  display: inline;
  float: left;
  width: 40.74074074074074%;
  margin-left: 1.8518518518518516%;
  margin-right: 1.8518518518518516%;
  *width: 40.688657407407405%;
  *margin-left: 1.7997685185185184%;
  *margin-right: 1.7997685185185184%;
}
#reviews #comments > h2 {
  width: auto;
  margin-left: 0;
  margin-right: 0;
}
#reviews #comments .star-rating {
  float: right;
  font-size: 1.618em;
}
#reviews #comments li.comment .star-rating {
  font-size: 1em;
}
#reviews #comments li.comment .comment_container .avatar {
  display: inline;
  float: left;
  width: 7.4074074074074066%;
  margin-left: 1.8518518518518516%;
  margin-right: 1.8518518518518516%;
  *width: 7.3553240740740735%;
  *margin-left: 1.7997685185185184%;
  *margin-right: 1.7997685185185184%;
}
#reviews #comments li.comment .comment_container .comment-text {
  display: inline;
  float: left;
  width: 85.18518518518519%;
  margin-left: 1.8518518518518516%;
  margin-right: 1.8518518518518516%;
  *width: 85.13310185185186%;
  *margin-left: 1.7997685185185184%;
  *margin-right: 1.7997685185185184%;
}
#reviews #comments li.comment .comment_container .comment-text:after {
  border-color: transparent #ffffff transparent transparent;
  left: -1.95em;
  right: auto;
}
#reviews #comments li.comment .comment_container .verified {
  font-style: normal;
}
#reviews #comments li.comment .comment_container .verified:before {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 100%;
  margin-right: .618em;
  font-weight: normal;
  line-height: 1em;
  width: 1em;
  content: "\f00c";
  color: #89b93f;
  margin-left: .382em;
}
#reviews #comments li.comment #respond {
  padding: 0;
}
#reviews p.add_review {
  padding-left: 11.6%;
}
/* 5.2 Comments Form */
#respond {
  padding: 1em;
  background: #ffffff;
  -webkit-border-radius: 0.382em;
  border-radius: 0.382em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  margin-bottom: 1.618em;
}
#respond h3 {
  font-size: 1.387em;
  line-height: 1.387;
}
#respond h3 #cancel-comment-reply-link {
  font-size: .75em;
  color: #2ab6d6;
}
#respond label {
  color: #4d5e61;
}
#respond #reply-title small {
  display: block;
}
#respond #commentform {
  margin-bottom: 0;
}
#respond #commentform .comment-form-author,
#respond #commentform .comment-form-email,
#respond #commentform .comment-form-url {
  width: 30.75%;
  float: left;
  margin-right: 3.8%;
}
#respond #commentform .comment-form-url {
  margin-right: 0;
}
#respond #commentform label {
  display: block;
}
#respond #commentform input.txt,
#respond #commentform textarea {
  width: 100%;
}
#respond #commentform p:last-child {
  margin-bottom: 0;
}
#respond #commentform .comment-form-comment {
  clear: both;
}
li.comment #respond {
  padding-top: 1.618em;
}
/* 5.3 Pingbacks / Trackbacks */
.pinglist {
  margin: 0;
  display: block;
  width: 103.7037037037037%;
  margin-left: -1.8518518518518516%;
  margin-right: -1.8518518518518516%;
  *width: 103.65162037037037%;
  *margin-left: -1.903935185185185%;
  *margin-right: -1.903935185185185%;
  *zoom: 1;
}
.pinglist:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
.pinglist:before,
.pinglist:after {
  content: "";
  display: table;
}
.pinglist:after {
  clear: both;
}
.pinglist li {
  margin: 0;
  list-style-type: decimal;
  display: inline;
  float: left;
  width: 74.07407407407408%;
  margin-left: 1.8518518518518516%;
  margin-right: 1.8518518518518516%;
  *width: 74.02199074074075%;
  *margin-left: 1.7997685185185184%;
  *margin-right: 1.7997685185185184%;
  opacity: 0.5;
  filter: alpha(opacity=@opacity * 100);
}
.pinglist li .author {
  font-weight: bold;
}
.pinglist li .pingcontent {
  display: block;
  margin: 0 0 1.618em;
}
.pinglist li:hover {
  opacity: 1;
  filter: alpha(opacity=@opacity * 100);
}
/*-------------------------------------------------------------------------------------------*/
/* 6. PAGE TEMPLATES */
/*-------------------------------------------------------------------------------------------*/
/* 6.1 Timeline Page Template */
#archives .archives_list {
  border-left: 1px solid #e7e7e7;
  list-style: none;
  margin: 0 0 1em 1em;
}
#archives .archives_list li {
  clear: left;
  padding-left: 2.327em;
  font-style: normal;
  list-style: none;
}
#archives .archives_list .date {
  color: #4d5e61;
  width: 22.5%;
  display: inline-block;
}
#archives .archives_list .linked {
  width: 48%;
  display: inline-block;
}
#archives .archives_list .comments {
  width: 22.5%;
  display: inline-block;
}
#archives .archives_list .comments a {
  color: #586b70;
  padding-left: 1.236em;
}
#archives .archives_list .comments a:hover {
  text-decoration: none;
}
h3.archive_year {
  font-weight: bold;
  color: #364245;
  margin-top: 0;
}
.archive-rss {
  line-height: 2.7;
}
.archive-rss a:before {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 100%;
  margin-right: .618em;
  font-weight: normal;
  line-height: 1em;
  width: 1em;
  content: "\f09e";
  color: orange;
}
/* 6.2 Contact Form */
ul.contact li.email:before,
ul.contact li.phone:before,
ul.contact li.fax:before,
ul.contact li.twitter:before,
ul.contact li.facebook:before {
  font-family: 'FontAwesome';
  display: inline-block;
  font-size: 100%;
  margin-right: .618em;
  font-weight: normal;
  line-height: 1em;
  width: 1em;
  content: "\f098";
}
ul.contact li.email:before {
  content: "\f003";
}
ul.contact li.fax:before {
  content: "\f02f";
}
ul.contact li.twitter:before {
  content: "\f081";
  color: #1daced;
}
ul.contact li.facebook:before {
  content: "\f082";
  color: #3b5a98;
}
#contact-page {
  *zoom: 1;
}
#contact-page:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
#contact-page:before,
#contact-page:after {
  content: "";
  display: table;
}
#contact-page:after {
  clear: both;
}
#contact-page .screenReader {
  left: -9999px;
  position: absolute;
  top: -9999px;
}
#contact-page ol.forms {
  list-style: none;
  margin-left: 0;
}
#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 {
  width: 100%;
}
#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 input {
  width: 1.387em;
}
#contact-page ol.forms li.inline label {
  display: inline;
  float: none;
  width: auto;
}
#contact-page ol.forms label {
  cursor: pointer;
  display: block;
  font-weight: 700;
  margin: 0 0 1em;
}
#contact-page ol.forms input#sendCopy {
  border: none;
  margin-right: 1em;
}
.entry #contact-page ol.forms li {
  list-style: none;
}
.page-template-template-contact-php #single_map_canvas img {
  max-width: inherit;
}
.page-template-template-contact-php .location-twitter .col-left {
  float: none;
}
.page-template-template-contact-php .location-twitter ul {
  margin: 0;
  padding: 0;
}
.page-template-template-contact-php .location-twitter ul li {
  list-style: none;
  padding: 0;
}
.page-template-template-contact-php .location-twitter #office-location {
  margin: 0 0 1.618em;
}
.page-template-template-contact-php .location-twitter #office-location a {
  text-decoration: underline;
}
.page-template-template-contact-php .location-twitter #office-location ul li {
  margin: 0 0 1em;
}
.page-template-template-contact-php .location-twitter .contact-social {
  float: none;
}
.page-template-template-contact-php .location-twitter .contact-social #twitter {
  margin: 0 0 1.618em;
}
.page-template-template-contact-php .location-twitter .contact-social #twitter ul li a.time {
  color: #586b70;
}
.page-template-template-contact-php .location-twitter .contact-social #connect {
  background: none;
  border: none;
  border-top: 1px solid #e7e7e7;
}
.page-template-template-contact-php .location-twitter .contact-social #connect h3 {
  display: none;
}
.page-template-template-contact-php .location-twitter .contact-social #connect .social {
  float: none;
}
/* 6.3 Image Gallery */
#main div.gallery {
  margin-left: -10px;
}
#main div.gallery dl.gallery-item dt.gallery-icon {
  margin: 7%;
}
#main div.gallery dl.gallery-item img {
  border: none;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}
.image-gallery-item img {
  max-width: 100%;
  padding: .236em;
  margin: 0 1em 1em 0;
  border: 1px solid #dedede;
  background: #f8f8f8;
  -webkit-border-radius: 0.236em;
  border-radius: 0.236em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.image-gallery-item img:hover {
  border: 1px solid #c5c5c5;
  box-shadow: 0 1px 0.327em 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px 0.327em 0px rgba(0, 0, 0, 0.2);
}
/* 6.4 Archives & Sitemap */
.page-template-template-archives-php #main .post h3,
.page-template-template-sitemap-php #main .post h3,
.page-template-template-archives-php #main .page h3,
.page-template-template-sitemap-php #main .page h3,
.page-template-template-archives-php #main .post h4,
.page-template-template-sitemap-php #main .post h4,
.page-template-template-archives-php #main .page h4,
.page-template-template-sitemap-php #main .page h4 {
  font-weight: bold;
}
.page-template-template-archives-php #main .post ul,
.page-template-template-sitemap-php #main .post ul,
.page-template-template-archives-php #main .page ul,
.page-template-template-sitemap-php #main .page ul,
.page-template-template-archives-php #main .post ol,
.page-template-template-sitemap-php #main .post ol,
.page-template-template-archives-php #main .page ol,
.page-template-template-sitemap-php #main .page ol {
  list-style: none;
  margin-left: 0;
}
.page-template-template-archives-php #main .post ul ul,
.page-template-template-sitemap-php #main .post ul ul,
.page-template-template-archives-php #main .page ul ul,
.page-template-template-sitemap-php #main .page ul ul,
.page-template-template-archives-php #main .post ol ul,
.page-template-template-sitemap-php #main .post ol ul,
.page-template-template-archives-php #main .page ol ul,
.page-template-template-sitemap-php #main .page ol ul,
.page-template-template-archives-php #main .post ul ol,
.page-template-template-sitemap-php #main .post ul ol,
.page-template-template-archives-php #main .page ul ol,
.page-template-template-sitemap-php #main .page ul ol,
.page-template-template-archives-php #main .post ol ol,
.page-template-template-sitemap-php #main .post ol ol,
.page-template-template-archives-php #main .page ol ol,
.page-template-template-sitemap-php #main .page ol ol {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .page-template-template-archives-php #main .fl,
  .page-template-template-sitemap-php #main .fl,
  .page-template-template-archives-php #main .fr,
  .page-template-template-sitemap-php #main .fr {
    float: none!important;
  }
}
/* 6.5 Homepage */
/*-------------------------------------------------------------------------------------------*/
/* 7. FEATURED SLIDER */
/*-------------------------------------------------------------------------------------------*/
/* 7.1 Core Styles */
/* Browser Resets */
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
  outline: none;
}
.slides,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
/* FlexSlider Necessary Styles */
.flexslider {
  margin: 0;
  padding: 0;
}
.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}
/* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {
  max-width: 100%;
  display: block;
  -webkit-border-radius: 0.382em;
  border-radius: 0.382em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.flex-pauseplay span {
  text-transform: capitalize;
}
/* Clearfix for the .slides element */
.flexslider .slides:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .flexslider .slides {
  display: block;
}
* html .flexslider .slides {
  height: 1%;
}
/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .flexslider .slides > li:first-child {
  display: block;
}
/* 7.2 Theme Styles */
.flexslider {
  margin: 0 0 4.236em;
  position: relative;
  -webkit-border-radius: 0.382em;
  border-radius: 0.382em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  zoom: 1;
}
.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
}
.loading .flex-viewport {
  max-height: 300px;
}
.flexslider .slides {
  zoom: 1;
}
.carousel li {
  margin-right: 5px;
}
/* Direction Nav */
/*.flex-direction-nav {*height: 0;}
.flex-direction-nav a {width: 30px; height: 30px; margin: -20px 0 0; display: block; background: url('@{imagepath}/bg_direction_nav.png') no-repeat 0 0; position: absolute; top: 50%; cursor: pointer; text-indent: -9999px; opacity: 0; -webkit-transition: all .3s ease;}
.flex-direction-nav .flex-next {background-position: 100% 0; right: -36px; }
.flex-direction-nav .flex-prev {left: -36px;}
.flexslider:hover .flex-next {opacity: 0.8; right: 5px;}
.flexslider:hover .flex-prev {opacity: 0.8; left: 5px;}
.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover {opacity: 1;}
.flex-direction-nav .flex-disabled {opacity: .3!important; filter:alpha(opacity=30); cursor: default;}*/
.flex-direction-nav a {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2.618em;
  display: inline-block;
  background: rgba(0, 0, 0, 0.8);
  text-indent: -999em;
  line-height: 2.618;
  -webkit-border-top-right-radius: 0.382em;
  -webkit-border-bottom-right-radius: 0.382em;
  border-top-right-radius: 0.382em;
  border-bottom-right-radius: 0.382em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  margin-top: -1em;
  color: #fff;
}
.flex-direction-nav a:before {
  font-family: 'FontAwesome';
  content: "\f053";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-indent: 0;
  text-align: center;
}
.flex-direction-nav a:hover {
  background: #000;
}
.flex-direction-nav .flex-prev {
  box-shadow: -0.618em 0 0 0 #2ab6d6;
  -webkit-box-shadow: -0.618em 0 0 0 #2ab6d6;
}
.flex-direction-nav .flex-next {
  left: auto;
  right: 0;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  -webkit-border-top-left-radius: 0.382em;
  -webkit-border-bottom-left-radius: 0.382em;
  border-top-left-radius: 0.382em;
  border-bottom-left-radius: 0.382em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  box-shadow: 0.618em 0 0 0 #2ab6d6;
  -webkit-box-shadow: 0.618em 0 0 0 #2ab6d6;
}
.flex-direction-nav .flex-next:before {
  content: "\f054";
}
/* Control Nav */
.flex-control-nav {
  width: 100%;
  text-align: center;
  padding-top: 1em;
}
.flex-control-nav li {
  margin: 0 .53em;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.flex-control-paging li a {
  width: 1.387em;
  height: 1.387em;
  display: block;
  background: #d6d6d6;
  cursor: pointer;
  text-indent: -9999px;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.flex-control-paging li a:hover {
  background: #333;
  background: rgba(0, 0, 0, 0.7);
}
.flex-control-paging li a.flex-active {
  background: #2ab6d6;
  cursor: default;
}
.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}
.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}
.flex-control-thumbs img {
  width: 100%;
  display: block;
  opacity: .7;
  cursor: pointer;
}
.flex-control-thumbs img:hover {
  opacity: 1;
}
.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}
@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 0;
  }
  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 0;
  }
}
/* 7.3 Content Styles */
.flexslider .slide-content {
  background-color: #ffffff;
  padding: 1.618em;
  -webkit-border-bottom-left-radius: 0.382em;
  -webkit-border-bottom-right-radius: 0.382em;
  border-bottom-left-radius: 0.382em;
  border-bottom-right-radius: 0.382em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.flexslider .slide-content .entry p:last-child {
  margin-bottom: 0;
}
.flexslider.full-width-slide .has-video .slide-media {
  float: none;
  width: 100%;
  height: auto;
}
/*-------------------------------------------------------------------------------------------*/
/* 8. MISC */
/*-------------------------------------------------------------------------------------------*/
/* 8.1 Forms */
input[type=text],
input.input-text,
textarea,
input.txt,
input[type=tel],
input[type=email] {
  padding: .382em .5em;
  border: 1px solid #e7e7e7;
  -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;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */

  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */

  box-sizing: border-box;
  /* Opera/IE 8+ */

  background-color: #ffffff;
  width: 100%;
}
input[type=text]:hover,
input.input-text:hover,
textarea:hover,
input.txt:hover,
input[type=tel]:hover,
input[type=email]:hover,
input[type=text]:active,
input.input-text:active,
textarea:active,
input.txt:active,
input[type=tel]:active,
input[type=email]:active {
  border-color: #d6d6d6;
}
[placeholder]:focus::-webkit-input-placeholder {
  -webkit-transition: opacity 0.5s 0.5s ease;
  -moz-transition: opacity 0.5s 0.5s ease;
  transition: opacity 0.5s 0.5s ease;
  opacity: 0;
}
input[type="checkbox"] {
  -webkit-appearance: none;
  /* Hides the default checkbox style */

  height: 1.618em;
  width: 1.618em;
  cursor: pointer;
  position: relative;
  -webkit-transition: .15s;
  -webkit-border-radius: 0.382em;
  border-radius: 0.382em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #c5c5c5;
  margin-right: 1em;
  margin-top: .382em;
  font-size: .857em;
}
input[type="checkbox"]:checked {
  background-color: #89b93f;
}
input[type="checkbox"]:before,
input[type="checkbox"]:checked:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  font-family: 'FontAwesome';
  line-height: 1.8;
}
input[type="checkbox"]:checked:before {
  content: "\f00c";
  color: #fff;
}
input[type="radio"] {
  -webkit-appearance: none;
  /* Hides the default checkbox style */

  height: 1.618em;
  width: 1.618em;
  font-size: .857em;
  border: 0.618em solid #364245;
  background: #364245;
  cursor: pointer;
  position: relative;
  -webkit-transition: .15s;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -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+ */

  margin-right: 1em;
  float: left;
  margin-top: .2em;
}
input[type="radio"]:checked {
  background: none;
}
/* 8.2 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,
.added_to_cart {
  display: inline-block;
  padding: .53em 1.1em;
  text-align: center;
  text-decoration: none;
  font-size: 1em;
  /* 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;
  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+ */

  background: #364245;
  color: #f8f8f8;
  -webkit-border-radius: 0.3em;
  border-radius: 0.3em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 0;
  font-weight: 700;
  white-space: nowrap;
  font-size: .857em;
  -webkit-appearance: none;
}
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,
.added_to_cart:hover {
  background-color: #f37324;
  text-decoration: none;
  color: #ffffff;
  -webkit-animation-name: glowbutton;
  -webkit-animation-duration: 1.618s;
  -webkit-animation-iteration-count: infinite;
}
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,
.added_to_cart:active {
  background-color: #0894b4;
}
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,
.added_to_cart.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,
.added_to_cart.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,
.added_to_cart.red {
  border-color: #af4040;
  border-bottom-color: #9a2020;
  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,
.added_to_cart.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,
.added_to_cart.orange {
  border-color: #af7440;
  border-bottom-color: #9a5420;
  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,
.added_to_cart.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,
.added_to_cart.green {
  border-color: #87bf00;
  border-bottom-color: #7ca122;
  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,
.added_to_cart.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,
.added_to_cart.aqua {
  border-color: #40af96;
  border-bottom-color: #209a82;
  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,
.added_to_cart.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,
.added_to_cart.teal {
  border-color: #23a6d6;
  border-bottom-color: #20799a;
  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,
.added_to_cart.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,
.added_to_cart.purple {
  border-color: #234dd6;
  border-bottom-color: #20489a;
  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,
.added_to_cart.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,
.added_to_cart.pink {
  border-color: #d623cb;
  border-bottom-color: #9a2096;
  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,
.added_to_cart.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,
.added_to_cart.silver {
  color: #444 !important;
  text-shadow: 0 1px #fff;
  border-color: #bbb;
  border-bottom-color: #999;
  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,
.added_to_cart.silver:hover {
  background: #ccc;
}
a.button.alt,
a.comment-reply-link.alt,
#commentform #submit.alt,
.submit.alt,
input[type=submit].alt,
input.button.alt,
button.button.alt,
#wrapper .woo-sc-button.alt,
.added_to_cart.alt {
  background: #f37324;
}
.added_to_cart,
.added_to_cart:hover {
  padding: .53em 1.387em;
  text-indent: -999em;
  position: relative;
}
.added_to_cart:after,
.added_to_cart:hover:after {
  content: "\f07a";
  font-family: "FontAwesome";
  display: block;
  text-indent: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  line-height: 2.7;
  text-align: center;
  font-weight: 400;
}
#footer-widgets .button {
  background: #2ab6d6;
}
/* 8.3 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: #15191a;
  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: #e7e7e7;
  background-color: #f8f8f8;
}
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: #e7e7e7;
  background-color: #f8f8f8;
}
/* 8.4 Gravity forms */
ul.gform_fields {
  margin-left: 0 !important;
}
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 {
  *zoom: 1;
  margin-bottom: 1.618em;
}
.ginput_container:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
.ginput_container:before,
.ginput_container:after {
  content: "";
  display: table;
}
.ginput_container:after {
  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: 1.387em;
}
img.ui-datepicker-trigger {
  border: 0;
  padding: 0;
}
/* 8.5 IE specific styling */
.ie8 .widget_woo_blogauthorinfo .avatar {
  width: auto;
}
/* TipTip CSS - Version 1.2 */
#tiptip_holder {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999999;
}
#tiptip_holder.tip_top {
  padding-bottom: 5px;
}
#tiptip_holder.tip_bottom {
  padding-top: 5px;
}
#tiptip_holder.tip_right {
  padding-left: 5px;
}
#tiptip_holder.tip_left {
  padding-right: 5px;
}
#tiptip_content {
  font-size: .857em;
  color: #fff;
  font-weight: 700;
  padding: .53em 1em;
  background: #364245;
  -webkit-border-radius: 0.382em;
  border-radius: 0.382em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  text-align: center;
}
#tiptip_arrow,
#tiptip_arrow_inner {
  position: absolute;
  border-color: transparent;
  border-style: solid;
  border-width: 6px;
  height: 0;
  width: 0;
}
#tiptip_holder.tip_top #tiptip_arrow {
  border-top-color: #fff;
  border-top-color: rgba(255, 255, 255, 0.35);
}
#tiptip_holder.tip_bottom #tiptip_arrow {
  border-bottom-color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.35);
}
#tiptip_holder.tip_right #tiptip_arrow {
  border-right-color: #fff;
  border-right-color: rgba(255, 255, 255, 0.35);
}
#tiptip_holder.tip_left #tiptip_arrow {
  border-left-color: #fff;
  border-left-color: rgba(255, 255, 255, 0.35);
}
#tiptip_holder.tip_top #tiptip_arrow_inner {
  margin-top: -7px;
  margin-left: -6px;
  border-top-color: #364245;
}
#tiptip_holder.tip_bottom #tiptip_arrow_inner {
  margin-top: -5px;
  margin-left: -6px;
  border-bottom-color: #364245;
}
#tiptip_holder.tip_right #tiptip_arrow_inner {
  margin-top: -6px;
  margin-left: -5px;
  border-right-color: #364245;
}
#tiptip_holder.tip_left #tiptip_arrow_inner {
  margin-top: -6px;
  margin-left: -7px;
  border-left-color: #364245;
}
/* Webkit Hacks  */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  #tiptip_content {
    background-color: #364245;
  }
  #tiptip_holder.tip_bottom #tiptip_arrow_inner {
    border-bottom-color: #364245;
  }
  #tiptip_holder.tip_top #tiptip_arrow_inner {
    border-top-color: #364245;
  }
}
.ie input[type=text],
.ie input.input-text,
.ie textarea,
.ie input.txt,
.ie input[type=tel],
.ie input[type=email] {
  height: 3em;
}
@media only screen and (min-width: 768px) {
}
.facebook-button-container{overflow:visible;width:100%;height:25px;clear:both;}
.facebook-button{width:auto;height:25px;}embed,iframe,object{max-width:635%!important;}

@-webkit-keyframes spin-360{from{-webkit-transform:rotate(0);-moz-transform:rotate(0);-ms-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0);zoom:1;}50%{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg);zoom:1;}to{-webkit-transform:rotate(0);-moz-transform:rotate(0);-ms-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0);zoom:1;}}@-webkit-keyframes popin{from{-webkit-transform:scale(0);-moz-transform:scale(0);-ms-transform:scale(0);-o-transform:scale(0);transform:scale(0);}60%{-webkit-transform:scale(0.005);-moz-transform:scale(0.005);-ms-transform:scale(0.005);-o-transform:scale(0.005);transform:scale(0.005);}95%{-webkit-transform:scale(1.05);-moz-transform:scale(1.05);-ms-transform:scale(1.05);-o-transform:scale(1.05);transform:scale(1.05);}to{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1);}}@-webkit-keyframes salepulse{from{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1);}70%{-webkit-transform:scale(1.1);-moz-transform:scale(1.1);-ms-transform:scale(1.1);-o-transform:scale(1.1);transform:scale(1.1);}to{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1);}}@-webkit-keyframes glowbutton{from{background-color:#2ab6d6;}50%{background-color:#4cd8f8;}to{background-color:#2ab6d6;}}@-webkit-keyframes slidedown{from{top:-500px;}95%{top:1em;}to{top:0;}}body{*zoom:1;}body:after{content:"\0020";display:block;height:0;overflow:hidden;clear:both;}body:before,body:after{content:"";display:table;}body:after{clear:both;}@media only screen and (min-width: 769px) {body{padding:0;}ul.nav{position:relative;margin-bottom:0;}ul.nav li{position:relative;float:left;zoom:1;list-style:none;}ul.nav li a{display:block;}ul.nav ul.sub-menu{width:13.456em;visibility:hidden;display:none;position:absolute;top:100%;left:0;z-index:9999;margin:0;}ul.nav ul.sub-menu li{float:none;}ul.nav ul.sub-menu li a{width:100%;display:inline-block;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}ul.nav ul.sub-menu ul{left:100%;top:0;}ul.nav li:hover>ul.sub-menu{visibility:visible;display:block;}#top{background:rgba(0,0,0,0.035);color:#9ca8ab;font-weight:700;}#top a{color:#253134;}#top a:hover{color:#364245;}#top ul.contact{display:inline;float:left;width:30.555555555555557%;margin-left:1.3888888888888888%;margin-right:1.3888888888888888%;*width:30.503472222222225%;*margin-left:1.3368055555555556%;*margin-right:1.3368055555555556%;font-size:.857em;width:auto;display:block;}#top ul.contact li{width:auto;float:left;padding:.618em 1.387em;}#top #top-nav{display:block;}#top .top-nav{display:inline;float:left;width:63.888888888888886%;margin-left:1.3888888888888888%;margin-right:1.3888888888888888%;*width:63.83680555555555%;*margin-left:1.3368055555555556%;*margin-right:1.3368055555555556%;width:auto;float:right;font-size:.857em;}#top .top-nav ul>li a{padding:.618em 1.387em;}#top .top-nav ul.sub-menu{background:#ffffff;border:0.382em solid rgba(0,0,0,0.1);border-top:0;}.header-top .widget_product_search,.header-top .account,.header-top .cart{display:block!important;}#navigation{display:block!important;margin-bottom:0;display:inline;float:left;width:97.22222222222221%;margin-left:1.3888888888888888%;margin-right:1.3888888888888888%;*width:97.17013888888889%;*margin-left:1.3368055555555556%;*margin-right:1.3368055555555556%;}#navigation ul.nav{}#navigation ul.nav>li:hover a{color:#ffffff;}#navigation ul.nav>li a{font-weight:700;}#navigation ul.nav>li a:hover{color:#ffffff;}#navigation ul.nav>li:first-child a{-webkit-border-top-left-radius:0.382em;-webkit-border-bottom-left-radius:0.382em;border-top-left-radius:0.382em;border-bottom-left-radius:0.382em;-webkit-border-top-left-radius:0;-webkit-border-top-right-radius:0;border-top-left-radius:0;border-top-right-radius:0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;}#navigation ul.nav>li.current_page_item a,#navigation ul.nav li.current_page_parent a,#navigation ul.nav li.current-menu-ancestor a,#navigation ul.nav li.current-cat a,#navigation ul.nav li.li.current-menu-item a{color:#ffffff;background:#2ab6d6;}#navigation ul.nav>li.parent{position:relative;margin-left:-10px;margin-right:-10px;}#navigation ul.nav>li.parent>a:hover{background:#253134;-webkit-border-bottom-left-radius:0;border-radius-bottom-left:0;}#navigation ul.nav>li.parent>a:after{font-family:'FontAwesome';display:inline-block;font-size:100%;margin-left:.618em;font-weight:normal;line-height:1em;width:1em;content:"\f107";}#navigation ul.nav>li.parent:after{bottom:0;z-index:999;}#navigation ul.nav>li.parent:hover{background:#ffffff;}#navigation ul.nav>li.parent:hover a{background:#253134;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;}#navigation ul.nav>li.parent:hover:after{bottom:-2px;z-index:999;}#navigation ul.nav ul.sub-menu{z-index:99;}#navigation ul.nav ul.sub-menu li a{-webkit-box-shadow:none!important;box-shadow:none!important;}#navigation ul.nav ul.sub-menu li:last-child>a{-webkit-border-bottom-left-radius:0.382em;-webkit-border-bottom-right-radius:0.382em;border-bottom-left-radius:0.382em;border-bottom-right-radius:0.382em;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;}#navigation ul.nav ul.sub-menu li:first-child ul.sub-menu>li:first-child a{-webkit-border-top-left-radius:0;-webkit-border-top-right-radius:0;border-top-left-radius:0;border-top-right-radius:0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;}#navigation ul.nav ul.sub-menu>li.parent>a:after{font-family:'FontAwesome';display:inline-block;font-size:100%;margin-left:.618em;font-weight:normal;line-height:1em;width:0em;content:"\f105";float:right;line-height:1.618em;text-align:right;}#navigation ul.nav ul.sub-menu ul.sub-menu{left:100%;}#navigation ul.nav ul.sub-menu ul.sub-menu li:first-child a{-webkit-border-top-left-radius:0.382em;-webkit-border-top-right-radius:0.382em;border-top-left-radius:0.382em;border-top-right-radius:0.382em;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;}#navigation.fixed{z-index:999;top:0;-webkit-transition:top ease-in-out 0.2s;-moz-transition:top ease-in-out 0.2s;-ms-transition:top ease-in-out 0.2s;-o-transition:top ease-in-out 0.2s;transition:top ease-in-out 0.2s;margin-left:15px;}.admin-bar #navigation.fixed{top:28px;}.nav-toggle{display:none;}#header{padding-top:0;position:relative;}#header .header-top{display:inline;float:left;width:97.22222222222221%;margin-left:1.3888888888888888%;margin-right:1.3888888888888888%;*width:97.17013888888889%;*margin-left:1.3368055555555556%;*margin-right:1.3368055555555556%;padding-top:2.327em;padding-bottom:2.327em;background:#ffffff;}#header .header-top .row{display:block;width:102.77777777777777%;margin-left:-1.3888888888888888%;margin-right:-1.3888888888888888%;*width:102.72569444444444%;*margin-left:-1.440972222222222%;*margin-right:-1.440972222222222%;*zoom:1;}#header .header-top .row:after{content:"\0020";display:block;height:0;overflow:hidden;clear:both;}#header .header-top .row:before,#header .header-top .row:after{content:"";display:table;}#header .header-top .row:after{clear:both;}#header .header-top .row hgroup{display:inline;float:left;width:22.22222222222222%;margin-left:1.3888888888888888%;margin-right:1.3888888888888888%;*width:22.17013888888889%;*margin-left:1.3368055555555556%;*margin-right:1.3368055555555556%;padding-left:2.387em;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin-bottom:0;}#header .header-top .row hgroup h1,#header .header-top .row hgroup h2,#header .header-top .row hgroup h3{float:none;margin:0;}#header .header-top .row #logo{display:inline;float:left;width:22.22222222222222%;margin-left:1.3888888888888888%;margin-right:1.3888888888888888%;*width:22.17013888888889%;*margin-left:1.3368055555555556%;*margin-right:1.3368055555555556%;margin-bottom:0;}#header .header-top .row #logo img{padding-left:2.387em;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}#header .header-top .row .widget_product_search{display:inline;float:left;width:47.22222222222222%;margin-left:1.3888888888888888%;margin-right:1.3888888888888888%;*width:47.170138888888886%;*margin-left:1.3368055555555556%;*margin-right:1.3368055555555556%;margin-bottom:0;clear:none;}#header .header-top .row .widget_product_search form{margin-bottom:0;}#header .header-top .row .widget_product_search #searchform .s,#header .header-top .row .widget_product_search #searchform #s{background:rgba(0,0,0,0.025);}#header .header-top .row .account{display:inline;float:left;width:22.22222222222222%;margin-left:1.3888888888888888%;margin-right:1.3888888888888888%;*width:22.17013888888889%;*margin-left:1.3368055555555556%;*margin-right:1.3368055555555556%;float:right;margin-top:0;margin-bottom:0;}#header .header-top .row .account img{width:3.3em;margin:0;-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;}#header .header-top .row .account .account-links{margin-left:3.3em;position:relative;}#header .header-top .row .account .account-links:after{content:"";display:block;border-width:.45em .45em 0 0;border-color:#0894b4 transparent transparent transparent;border-style:solid;position:absolute;right:-0.5em;bottom:-0.4em;}#header .header-top .row .account .account-links:before{top:1em;}#header .header-top .row .account .account-links ul{-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px;-webkit-border-top-left-radius:0;border-top-left-radius:0;-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;box-shadow:0.618em 0 0 0 #2ab6d6;-webkit-box-shadow:0.618em 0 0 0 #2ab6d6;}#header .header-top .row .account .account-links ul li a{width:24.8%;padding:1.1em 0;}#header .header-top .row .account .account-links ul li:last-child a{-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;}#header .header-top .row .account .account-links ul li:first-child a{-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;}#header .header-top.banner .row hgroup,#header .header-top.banner .row #topad{display:inline;float:left;width:47.22222222222222%;margin-left:1.3888888888888888%;margin-right:1.3888888888888888%;*width:47.170138888888886%;*margin-left:1.3368055555555556%;*margin-right:1.3368055555555556%;margin-bottom:0.618em;}#header .header-top.banner .row #topad{text-align:right;padding-right:2.387em;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin-bottom:.618em;}#header .header-top.banner .row #topad img{height:auto;}#header .header-top.banner .row .account{display:inline;float:left;width:22.22222222222222%;margin-left:1.3888888888888888%;margin-right:1.3888888888888888%;*width:22.17013888888889%;*margin-left:1.3368055555555556%;*margin-right:1.3368055555555556%;}#header .header-top.banner .row .widget_product_search{display:inline;float:left;width:72.22222222222221%;margin-left:1.3888888888888888%;margin-right:1.3888888888888888%;*width:72.17013888888889%;*margin-left:1.3368055555555556%;*margin-right:1.3368055555555556%;padding-left:2.387em;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;clear:both;}#header ul.rss{margin-right:0;padding-right:0;}#header ul.rss li{border-right:0;}#main.fullwidth,.layout-full #main,.col-full{max-width:75.998em;margin:0 auto;width:100%;}#main{display:inline;float:left;width:72.22222222222221%;margin-left:1.3888888888888888%;margin-right:1.3888888888888888%;*width:72.17013888888889%;*margin-left:1.3368055555555556%;*margin-right:1.3368055555555556%;}.breadcrumbs-wrap{display:block;}#sidebar{margin-top:0;display:inline;float:left;width:22.22222222222222%;margin-left:1.3888888888888888%;margin-right:1.3888888888888888%;*width:22.17013888888889%;*margin-left:1.3368055555555556%;*margin-right:1.3368055555555556%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-border-radius:0.382em;border-radius:0.382em;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;color:#7a8689;}#sidebar h1,#sidebar h2,#sidebar h3,#sidebar h4,#sidebar h5,#sidebar h6{color:#586467;}#sidebar .widget{font-size:.857em;}#sidebar .widget h3{font-size:1em;text-transform:uppercase;color:#364245;}#sidebar .widget a{color:#586467;}#sidebar .widget a:hover{color:#2ab6d6;}#sidebar .widget a.button{color:#ffffff;}.entry img{max-width:100%;}.layout-full .entry img{max-width:100%;}.layout-right-content #main{float:right;}.layout-right-content #sidebar{float:left;}.layout-full #main,.page-template-template-fullwidth-php #main,.page-template-template-tags-php #main{display:inline;float:left;width:97.22222222222221%;margin-left:1.3888888888888888%;margin-right:1.3888888888888888%;*width:97.17013888888889%;*margin-left:1.3368055555555556%;*margin-right:1.3368055555555556%;}.col-left{float:left;}.col-right{float:right;}.page-template-template-contact-php .location-twitter .col-left{float:left;}.page-template-template-contact-php .location-twitter #office-location{width:48%;margin:0;}.page-template-template-contact-php .location-twitter .contact-social{float:right;width:48%;}.page-template-template-contact-php .location-twitter .contact-social #twitter{margin:0;}.breadcrumbs-wrap{display:inline;float:left;width:97.22222222222221%;margin-left:1.3888888888888888%;margin-right:1.3888888888888888%;*width:97.17013888888889%;*margin-left:1.3368055555555556%;*margin-right:1.3368055555555556%;}.home div.woocommerce-wrap,.business div.woocommerce-wrap{display:inline;float:left;width:97.22222222222221%;margin-left:1.3888888888888888%;margin-right:1.3888888888888888%;*width:97.17013888888889%;*margin-left:1.3368055555555556%;*margin-right:1.3368055555555556%;}.home .flexslider,.business .flexslider{display:inline;float:left;width:97.22222222222221%;margin-left:1.3888888888888888%;margin-right:1.3888888888888888%;*width:97.17013888888889%;*margin-left:1.3368055555555556%;*margin-right:1.3368055555555556%;}.home .flexslider li.slide,.business .flexslider li.slide{position:relative;}.home .flexslider li.slide .slide-content,.business .flexslider li.slide .slide-content{background:none;position:absolute;bottom:0;left:4.236em;padding:0;width:100%;}.home .flexslider li.slide .slide-content header,.business .flexslider li.slide .slide-content header,.home .flexslider li.slide .slide-content .entry,.business .flexslider li.slide .slide-content .entry{background:rgba(0,0,0,0.8);color:#fff;padding:1em 2.244em;}.home .flexslider li.slide .slide-content header,.business .flexslider li.slide .slide-content header{width:auto;float:left;-webkit-border-top-left-radius:0.382em;-webkit-border-top-right-radius:0.382em;border-top-left-radius:0.382em;border-top-right-radius:0.382em;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;padding-bottom:0;max-width:50.829%;}.home .flexslider li.slide .slide-content header h1,.business .flexslider li.slide .slide-content header h1{color:#fff;margin:0;}.home .flexslider li.slide .slide-content header h1 a,.business .flexslider li.slide .slide-content header h1 a{color:#fff;}.home .flexslider li.slide .slide-content header:last-child,.business .flexslider li.slide .slide-content header:last-child{padding-bottom:1em;}.home .flexslider li.slide .slide-content .entry,.business .flexslider li.slide .slide-content .entry{width:59.301%;clear:left;padding-top:1.618em;padding-bottom:1.618em;-webkit-border-top-right-radius:0.382em;-webkit-border-bottom-right-radius:0.382em;border-top-right-radius:0.382em;border-bottom-right-radius:0.382em;-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;}.home .woocommerce,.business .woocommerce{margin-bottom:1.618em;}.home .woocommerce-wrap .widget_woothemes_features,.business .woocommerce-wrap .widget_woothemes_features,.home .woocommerce-wrap .widget_woothemes_testimonials,.business .woocommerce-wrap .widget_woothemes_testimonials{display:block;width:102.77777777777777%;margin-left:-1.3888888888888888%;margin-right:-1.3888888888888888%;*width:102.72569444444444%;*margin-left:-1.440972222222222%;*margin-right:-1.440972222222222%;*zoom:1;}.home .woocommerce-wrap .widget_woothemes_features:after,.business .woocommerce-wrap .widget_woothemes_features:after,.home .woocommerce-wrap .widget_woothemes_testimonials:after,.business .woocommerce-wrap .widget_woothemes_testimonials:after{content:"\0020";display:block;height:0;overflow:hidden;clear:both;}.home .woocommerce-wrap .widget_woothemes_features:before,.business .woocommerce-wrap .widget_woothemes_features:before,.home .woocommerce-wrap .widget_woothemes_testimonials:before,.business .woocommerce-wrap .widget_woothemes_testimonials:before,.home .woocommerce-wrap .widget_woothemes_features:after,.business .woocommerce-wrap .widget_woothemes_features:after,.home .woocommerce-wrap .widget_woothemes_testimonials:after,.business .woocommerce-wrap .widget_woothemes_testimonials:after{content:"";display:table;}.home .woocommerce-wrap .widget_woothemes_features:after,.business .woocommerce-wrap .widget_woothemes_features:after,.home .woocommerce-wrap .widget_woothemes_testimonials:after,.business .woocommerce-wrap .widget_woothemes_testimonials:after{clear:both;}.home .woocommerce-wrap .widget_woothemes_features:after,.business .woocommerce-wrap .widget_woothemes_features:after,.home .woocommerce-wrap .widget_woothemes_testimonials:after,.business .woocommerce-wrap .widget_woothemes_testimonials:after{content:"\0020";display:block;height:0;overflow:hidden;clear:both;}.home .woocommerce-wrap .widget_woothemes_features:before,.business .woocommerce-wrap .widget_woothemes_features:before,.home .woocommerce-wrap .widget_woothemes_testimonials:before,.business .woocommerce-wrap .widget_woothemes_testimonials:before,.home .woocommerce-wrap .widget_woothemes_features:after,.business .woocommerce-wrap .widget_woothemes_features:after,.home .woocommerce-wrap .widget_woothemes_testimonials:after,.business .woocommerce-wrap .widget_woothemes_testimonials:after{content:"";display:table;}.home .woocommerce-wrap .widget_woothemes_features:after,.business .woocommerce-wrap .widget_woothemes_features:after,.home .woocommerce-wrap .widget_woothemes_testimonials:after,.business .woocommerce-wrap .widget_woothemes_testimonials:after{clear:both;}.home .woocommerce-wrap .widget_woothemes_features .features h2,.business .woocommerce-wrap .widget_woothemes_features .features h2,.home .woocommerce-wrap .widget_woothemes_testimonials .features h2,.business .woocommerce-wrap .widget_woothemes_testimonials .features h2,.home .woocommerce-wrap .widget_woothemes_features .testimonials h2,.business .woocommerce-wrap .widget_woothemes_features .testimonials h2,.home .woocommerce-wrap .widget_woothemes_testimonials .testimonials h2,.business .woocommerce-wrap .widget_woothemes_testimonials .testimonials h2{display:inline;float:left;width:97.22222222222221%;margin-left:1.3888888888888888%;margin-right:1.3888888888888888%;*width:97.17013888888889%;*margin-left:1.3368055555555556%;*margin-right:1.3368055555555556%;}.home .woocommerce-wrap .widget_woothemes_features .features .feature,.business .woocommerce-wrap .widget_woothemes_features .features .feature,.home .woocommerce-wrap .widget_woothemes_testimonials .features .feature,.business .woocommerce-wrap .widget_woothemes_testimonials .features .feature,.home .woocommerce-wrap .widget_woothemes_features .testimonials .feature,.business .woocommerce-wrap .widget_woothemes_features .testimonials .feature,.home .woocommerce-wrap .widget_woothemes_testimonials .testimonials .feature,.business .woocommerce-wrap .widget_woothemes_testimonials .testimonials .feature,.home .woocommerce-wrap .widget_woothemes_features .features .quote,.business .woocommerce-wrap .widget_woothemes_features .features .quote,.home .woocommerce-wrap .widget_woothemes_testimonials .features .quote,.business .woocommerce-wrap .widget_woothemes_testimonials .features .quote,.home .woocommerce-wrap .widget_woothemes_features .testimonials .quote,.business .woocommerce-wrap .widget_woothemes_features .testimonials .quote,.home .woocommerce-wrap .widget_woothemes_testimonials .testimonials .quote,.business .woocommerce-wrap .widget_woothemes_testimonials .testimonials .quote{display:inline;float:left;width:30.555555555555557%;margin-left:1.3888888888888888%;margin-right:1.3888888888888888%;*width:30.503472222222225%;*margin-left:1.3368055555555556%;*margin-right:1.3368055555555556%;}.home .woocommerce-wrap .widget_woothemes_features .features .feature:nth-child(4n),.business .woocommerce-wrap .widget_woothemes_features .features .feature:nth-child(4n),.home .woocommerce-wrap .widget_woothemes_testimonials .features .feature:nth-child(4n),.business .woocommerce-wrap .widget_woothemes_testimonials .features .feature:nth-child(4n),.home .woocommerce-wrap .widget_woothemes_features .testimonials .feature:nth-child(4n),.business .woocommerce-wrap .widget_woothemes_features .testimonials .feature:nth-child(4n),.home .woocommerce-wrap .widget_woothemes_testimonials .testimonials .feature:nth-child(4n),.business .woocommerce-wrap .widget_woothemes_testimonials .testimonials .feature:nth-child(4n),.home .woocommerce-wrap .widget_woothemes_features .features .quote:nth-child(4n),.business .woocommerce-wrap .widget_woothemes_features .features .quote:nth-child(4n),.home .woocommerce-wrap .widget_woothemes_testimonials .features .quote:nth-child(4n),.business .woocommerce-wrap .widget_woothemes_testimonials .features .quote:nth-child(4n),.home .woocommerce-wrap .widget_woothemes_features .testimonials .quote:nth-child(4n),.business .woocommerce-wrap .widget_woothemes_features .testimonials .quote:nth-child(4n),.home .woocommerce-wrap .widget_woothemes_testimonials .testimonials .quote:nth-child(4n),.business .woocommerce-wrap .widget_woothemes_testimonials .testimonials .quote:nth-child(4n){clear:both;}.home .woocommerce-wrap .widget_woothemes_features .features .feature:nth-child(4n),.business .woocommerce-wrap .widget_woothemes_features .features .feature:nth-child(4n),.home .woocommerce-wrap .widget_woothemes_testimonials .features .feature:nth-child(4n),.business .woocommerce-wrap .widget_woothemes_testimonials .features .feature:nth-child(4n),.home .woocommerce-wrap .widget_woothemes_features .testimonials .feature:nth-child(4n),.business .woocommerce-wrap .widget_woothemes_features .testimonials .feature:nth-child(4n),.home .woocommerce-wrap .widget_woothemes_testimonials .testimonials .feature:nth-child(4n),.business .woocommerce-wrap .widget_woothemes_testimonials .testimonials .feature:nth-child(4n){clear:none;}.home .woocommerce-wrap .widget_woothemes_features .features .feature:nth-child(5n),.business .woocommerce-wrap .widget_woothemes_features .features .feature:nth-child(5n),.home .woocommerce-wrap .widget_woothemes_testimonials .features .feature:nth-child(5n),.business .woocommerce-wrap .widget_woothemes_testimonials .features .feature:nth-child(5n),.home .woocommerce-wrap .widget_woothemes_features .testimonials .feature:nth-child(5n),.business .woocommerce-wrap .widget_woothemes_features .testimonials .feature:nth-child(5n),.home .woocommerce-wrap .widget_woothemes_testimonials .testimonials .feature:nth-child(5n),.business .woocommerce-wrap .widget_woothemes_testimonials .testimonials .feature:nth-child(5n){clear:both;}.home .woocommerce-wrap .widget_woothemes_testimonials .testimonials .quote .testimonials-text,.business .woocommerce-wrap .widget_woothemes_testimonials .testimonials .quote .testimonials-text{padding:1.618em;}.home .widget_woo_product_categories .woocommerce,.business .widget_woo_product_categories .woocommerce,.home .widget_woo_recent_products .woocommerce,.business .widget_woo_recent_products .woocommerce{width:100%;margin-left:0;margin-right:0;}.home #main.full-width,.business #main.full-width{float:none;display:inline;float:left;width:97.22222222222221%;margin-left:1.3888888888888888%;margin-right:1.3888888888888888%;*width:97.17013888888889%;*margin-left:1.3368055555555556%;*margin-right:1.3368055555555556%;}.business{display:inline;float:left;width:97.22222222222221%;margin-left:1.3888888888888888%;margin-right:1.3888888888888888%;*width:97.17013888888889%;*margin-left:1.3368055555555556%;*margin-right:1.3368055555555556%;}.business .widget_woothemes_features,.business .widget_woothemes_testimonials{padding:2.618em 0;}#sidebar .widget_woothemes_features .features .feature,#footer-widgets .widget_woothemes_features .features .feature,#sidebar .widget_woothemes_testimonials .features .feature,#footer-widgets .widget_woothemes_testimonials .features .feature,#sidebar .widget_woothemes_features .testimonials .feature,#footer-widgets .widget_woothemes_features .testimonials .feature,#sidebar .widget_woothemes_testimonials .testimonials .feature,#footer-widgets .widget_woothemes_testimonials .testimonials .feature,#sidebar .widget_woothemes_features .features .quote,#footer-widgets .widget_woothemes_features .features .quote,#sidebar .widget_woothemes_testimonials .features .quote,#footer-widgets .widget_woothemes_testimonials .features .quote,#sidebar .widget_woothemes_features .testimonials .quote,#footer-widgets .widget_woothemes_features .testimonials .quote,#sidebar .widget_woothemes_testimonials .testimonials .quote,#footer-widgets .widget_woothemes_testimonials .testimonials .quote{display:block;width:100%;margin-left:0;margin-right:0;}article.post .post-meta ul{list-style:none;margin:0;font-size:.857em;color:#c5c5c5;}article.post .post-meta ul li{margin-bottom:.236em;padding-bottom:.236em;}article.post .post-meta ul li a{color:#586467;white-space:nowrap;}article.post .post-meta ul li:before{font-family:'FontAwesome';display:inline-block;font-size:100%;margin-right:.618em;font-weight:normal;line-height:1em;width:1em;color:#d6d6d6;}article.post .post-meta ul li.post-comments:before{content:"\f075";}article.post .post-meta ul li.post-date:before{content:"\f017";}article.post .post-meta ul li.post-tags:before{content:"\f02b";}article.post .post-meta ul li.post-category:before{content:"\f07b";}article.post .post-meta ul li.post-author:before{content:"\f007";}.blog-grid article.post{width:48%;float:left;margin-left:0;margin-right:0;}.blog-grid article.post .post-content{margin:0;width:100%;}.blog-grid article.post .post-content .entry{padding:1.618em;-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;}.blog-grid article.post .post-meta{display:block;padding:1em 1.618em;background:rgba(0,0,0,0.0085);*zoom:1;clear:both;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:none;margin:0;-webkit-border-bottom-left-radius:0.382em;-webkit-border-bottom-right-radius:0.382em;border-bottom-left-radius:0.382em;border-bottom-right-radius:0.382em;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;}.blog-grid article.post .post-meta:after{content:"\0020";display:block;height:0;overflow:hidden;clear:both;}.blog-grid article.post .post-meta:before,.blog-grid article.post .post-meta:after{content:"";display:table;}.blog-grid article.post .post-meta:after{clear:both;}.blog-grid article.post .post-meta ul li{width:50%;float:left;}article.post{display:block;width:103.7037037037037%;margin-left:-1.8518518518518516%;margin-right:-1.8518518518518516%;*width:103.65162037037037%;*margin-left:-1.903935185185185%;*margin-right:-1.903935185185185%;*zoom:1;}article.post:after{content:"\0020";display:block;height:0;overflow:hidden;clear:both;}article.post:before,article.post:after{content:"";display:table;}article.post:after{clear:both;}article.post:after{content:"\0020";display:block;height:0;overflow:hidden;clear:both;}article.post:before,article.post:after{content:"";display:table;}article.post:after{clear:both;}article.post .post-header{*zoom:1;clear:both;}article.post .post-header:after{content:"\0020";display:block;height:0;overflow:hidden;clear:both;}article.post .post-header:before,article.post .post-header:after{content:"";display:table;}article.post .post-header:after{clear:both;}article.post .woo-image{display:inline;float:left;width:96.29629629629629%;margin-left:1.8518518518518516%;margin-right:1.8518518518518516%;*width:96.24421296296296%;*margin-left:1.7997685185185184%;*margin-right:1.7997685185185184%;}article.post .post-meta{display:inline;float:left;width:18.51851851851852%;margin-left:1.8518518518518516%;margin-right:1.8518518518518516%;*width:18.466435185185187%;*margin-left:1.7997685185185184%;*margin-right:1.7997685185185184%;}article.post .post-content{display:inline;float:left;width:74.07407407407408%;margin-left:1.8518518518518516%;margin-right:1.8518518518518516%;*width:74.02199074074075%;*margin-left:1.7997685185185184%;*margin-right:1.7997685185185184%;}article.post .post-content .woo-image{width:auto;margin:0;}article.post .entry .alignleft,article.page .entry .alignleft,article.post .entry .alignright,article.page .entry .alignright{padding:0;border:0;}article.post .entry .alignleft,article.page .entry .alignleft{margin-left:-2.618em;margin-right:1.618em;}article.post .entry .alignright,article.page .entry .alignright{float:right;margin-right:-2.618em;margin-left:1.618em;}article.post .entry .wp-caption,article.page .entry .wp-caption{background:#ffffff;padding:0;font-style:italic;color:#697578;border:0;}article.post .entry .wp-caption img,article.page .entry .wp-caption img{width:100%;}article.post .entry .wp-caption .wp-caption-text,article.page .entry .wp-caption .wp-caption-text{font-size:.857em;}article.post .entry .wp-caption.alignright .wp-caption-text,article.page .entry .wp-caption.alignright .wp-caption-text{text-align:left;}article.post .entry .wp-caption.alignleft .wp-caption-text,article.page .entry .wp-caption.alignleft .wp-caption-text{text-align:right;}#main #connect{padding:1.618em 2.618em;background:rgba(0,0,0,0.025);border:0;-webkit-border-radius:0.382em;border-radius:0.382em;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;margin-bottom:1.618em;width:77.07407407407408%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}#main #connect .col-left,#main #connect .col-right{width:48%;margin-bottom:0;}.comment #respond{padding:0;}.post .entry,.type-page .entry,#comments li.comment .comment_container .comment-text,.page .entry,.page #contactForm,#respond{padding:2.618em;}#post-author{display:block;width:103.7037037037037%;margin-left:-1.8518518518518516%;margin-right:-1.8518518518518516%;*width:103.65162037037037%;*margin-left:-1.903935185185185%;*margin-right:-1.903935185185185%;*zoom:1;margin-bottom:1.618em;}#post-author:after{content:"\0020";display:block;height:0;overflow:hidden;clear:both;}#post-author:before,#post-author:after{content:"";display:table;}#post-author:after{clear:both;}#post-author:after{content:"\0020";display:block;height:0;overflow:hidden;clear:both;}#post-author:before,#post-author:after{content:"";display:table;}#post-author:after{clear:both;}#post-author .profile-image{display:inline;float:left;width:7.4074074074074066%;margin-left:1.8518518518518516%;margin-right:1.8518518518518516%;*width:7.3553240740740735%;*margin-left:1.7997685185185184%;*margin-right:1.7997685185185184%;margin-right:9.722222222222221%;}#post-author .profile-image img{width:100%;height:auto;margin:0;-webkit-border-radius:0.382em;border-radius:0.382em;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;}#post-author .profile-content{display:inline;float:left;width:74.07407407407408%;margin-left:1.8518518518518516%;margin-right:1.8518518518518516%;*width:74.02199074074075%;*margin-left:1.7997685185185184%;*margin-right:1.7997685185185184%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:2.618em;background:#f0f0f0;-webkit-border-radius:0.382em;border-radius:0.382em;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;}#content+.breadcrumbs-wrap{margin:0;padding:1em 0;background:#f5f5f5;}#content+.breadcrumbs-wrap .woo-breadcrumbs{max-width:75.998em;margin:0 auto;}#content+.breadcrumbs-wrap .woo-breadcrumbs .breadcrumb-trail{display:inline;float:left;width:97.22222222222221%;margin-left:1.3888888888888888%;margin-right:1.3888888888888888%;*width:97.17013888888889%;*margin-left:1.3368055555555556%;*margin-right:1.3368055555555556%;display:block;float:none;-webkit-border-top-left-radius:0.382em;-webkit-border-top-right-radius:0.382em;border-top-left-radius:0.382em;border-top-right-radius:0.382em;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;padding:1em 0;}.footer-wrap{margin-left:0;margin-right:0;padding-left:0;padding-right:0;}.footer-wrap.contact{padding-top:1.618em;padding-bottom:1.618em;}.footer-wrap.contact ul li{display:inline;float:left;width:22.22222222222222%;margin-left:1.3888888888888888%;margin-right:1.3888888888888888%;*width:22.17013888888889%;*margin-left:1.3368055555555556%;*margin-right:1.3368055555555556%;clear:none;font-size:1.387em;}.footer-wrap.contact ul li:before{background:#142023;color:#f8f8f8;-webkit-border-radius:100%;border-radius:100%;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;padding:.53em;text-align:center;}.footer-wrap.contact ul li:nth-child(2n){display:inline;float:left;width:22.22222222222222%;margin-left:1.3888888888888888%;margin-right:1.3888888888888888%;*width:22.17013888888889%;*margin-left:1.3368055555555556%;*margin-right:1.3368055555555556%;}.footer-wrap.contact+.footer-wrap{padding-top:3.631em;}#footer-widgets .block{margin-right:3.8%;float:left;}#footer-widgets.col-1 .block{width:100%;float:none;}#footer-widgets.col-1 .footer-widget-1{margin-right:0;}#footer-widgets.col-2 .block{display:inline;float:left;width:47.22222222222222%;margin-left:1.3888888888888888%;margin-right:1.3888888888888888%;*width:47.170138888888886%;*margin-left:1.3368055555555556%;*margin-right:1.3368055555555556%;}#footer-widgets.col-2 .footer-widget-2{margin-right:0;}#footer-widgets.col-3 .block{display:inline;float:left;width:22.22222222222222%;margin-left:1.3888888888888888%;margin-right:1.3888888888888888%;*width:22.17013888888889%;*margin-left:1.3368055555555556%;*margin-right:1.3368055555555556%;}#footer-widgets.col-3 .block:first-child{display:inline;float:left;width:47.22222222222222%;margin-left:1.3888888888888888%;margin-right:1.3888888888888888%;*width:47.170138888888886%;*margin-left:1.3368055555555556%;*margin-right:1.3368055555555556%;}#footer-widgets.col-3 .footer-widget-3{margin-right:0;}#footer-widgets.col-4 .block{display:inline;float:left;width:22.22222222222222%;margin-left:1.3888888888888888%;margin-right:1.3888888888888888%;*width:22.17013888888889%;*margin-left:1.3368055555555556%;*margin-right:1.3368055555555556%;}#footer-widgets.col-4 .footer-widget-4{margin-right:0;}#footer .col-left,#footer .col-right{display:inline;float:left;width:47.22222222222222%;margin-left:1.3888888888888888%;margin-right:1.3888888888888888%;*width:47.170138888888886%;*margin-left:1.3368055555555556%;*margin-right:1.3368055555555556%;}#footer .col-right{text-align:right;}.ie7 #top-nav{position:relative;z-index:9999999;}.ie7 #header{position:relative;z-index:9999999;}}@media only screen and (min-width: 768px) and (max-width: 1024px) {#navigation.fixed{margin-left:1.38888888%;}}@media only screen and (min-width: 1600px) {body{font-size:1.6em;}}