/*! Made with Bones: http://themble.com/bones :) */
/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block; }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent; }

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0; }

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong,
.strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn,
em,
.em {
  font-style: italic; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
/*
p {
  -webkit-hyphens: auto;
  -epub-hyphens:   auto;
  -moz-hyphens:    auto;
  hyphens:         auto;

}
*/
/*
 * Addresses margins set differently in IE6/7.
 */
pre {
  margin: 0; }

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em; }

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap; }

/**
 * Set consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
q:before,
q:after {
  content: '';
  content: none; }

small, .small {
  font-size: 75%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* ==========================================================================
  Lists
========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
dl,
menu,
ol,
ul {
  margin: 1em 0; }

dd {
  margin: 0; }

/*
 * Addresses paddings set differently in IE6/7.
 */
menu {
  padding: 0 0 0 40px; }

ol,
ul {
  padding: 0;
  list-style-type: none; }

/*
 * Corrects list images handled incorrectly in IE7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none; }

/* ==========================================================================
  Embedded content
========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0; }

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden; }

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0; }

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */ }

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

.clearfix, .cf {
  zoom: 1; }
  .clearfix:before, .clearfix:after, .cf:before, .cf:after {
    content: "";
    display: table; }
  .clearfix:after, .cf:after {
    clear: both; }

/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  font-style: italic; }

/******************************************************************
Site Name: Yogaville	
Author: Convoy

Stylesheet: Variables
******************************************************************/
/******************************************************************
Site Name: Yogaville  
Author: Convoy

Stylesheet: Typography
******************************************************************/
/******************************************************************
Site Name:
Author:

Stylesheet: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/******************************************************************
Site Name:
Author:

Stylesheet: Grid Stylesheet

I've seperated the grid so you can swap it out easily. It's
called at the top the style.scss stylesheet.

There are a ton of grid solutions out there. You should definitely
experiment with your own. Here are some recommendations:

http://gridsetapp.com - Love this site. Responsive Grids made easy.
http://susy.oddbird.net/ - Grids using Compass. Very elegant.
http://gridpak.com/ - Create your own responsive grid.
https://github.com/dope/lemonade - Neat lightweight grid.


The grid below is a custom built thingy I modeled a bit after
Gridset. It's VERY basic and probably shouldn't be used on
your client projects. The idea is you learn how to roll your
own grids. It's better in the long run and allows you full control
over your project's layout.

******************************************************************/
.last-col {
  float: right;
  padding-right: 0 !important; }

/*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*/
@media (max-width: 767px) {
  .m-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }

  .m-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }

  .m-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }

  .m-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }

  .m-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }

  .m-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%; } }
/* Portrait tablet to landscape */
@media (min-width: 768px) and (max-width: 1029px) {
  .t-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }

  .t-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }

  .t-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }

  .t-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }

  .t-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }

  .t-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }

  .t-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }

  .t-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%; }

  .t-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%; }

  .t-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%; } }
/* Landscape to small desktop */
@media (min-width: 1030px) {
  .d-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }

  .d-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }

  .d-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }

  .d-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }

  .d-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }

  .d-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }

  .d-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }

  .d-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%; }

  .d-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%; }

  .d-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%; }

  .d-1of6 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%; }

  .d-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%; }

  .d-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%; }

  .d-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%; }

  .d-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%; }

  .d-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%; }

  .d-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%; }

  .d-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%; }

  .d-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%; }

  .d-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%; }

  .d-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.09090909091%; }

  .d-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%; } }
/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Button Styles

Buttons are a pretty important part of your site's style, so it's
important to have a consistent baseline for them. Use this stylesheet
to create all kinds of buttons.

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

******************************************************************/
/*********************
BUTTON DEFAULTS
We're gonna use a placeholder selector here
so we can use common styles. We then use this
to load up the defaults in all our buttons.

Here's a quick video to show how it works:
http://www.youtube.com/watch?v=hwdVpKiJzac

*********************/
.blue-btn {
  display: inline-block;
  position: relative;
  font-family: "brevia", "Arial Rounded", "Century Gothic", Helvetica, Verdana, Arial, Geneva, sans-serif;
  text-decoration: none;
  color: #fff;
  font-size: 0.9em;
  font-size: 34px;
  line-height: 34px;
  font-weight: normal;
  padding: 0 24px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  -webkit-transition: background-color 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out; }
  .blue-btn:hover, .blue-btn:focus {
    color: #fff;
    text-decoration: none; }
  .blue-btn:active {
    top: 1px; }

/*
An example button.
You can use this example if you want. Just replace all the variables
and it will create a button dependant on those variables.
*/
.blue-btn {
  background-color: #e7eaf9;
  color: #2E579E; }
  .blue-btn:hover, .blue-btn:focus {
    background-color: #d7dcf5; }
  .blue-btn:active {
    background-color: #d3d8f4; }

/*********************
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/
/******************************************************************
Site Name: Yogaville	
Author: Convoy

Stylesheet: Base
******************************************************************/
/*********************
GENERAL STYLES
*********************/
body {
  font-family: "brevia", "Arial Rounded", "Century Gothic", Helvetica, Verdana, Arial, Geneva, sans-serif;
  font-size: 100%;
  line-height: 1.5;
  color: #666666;
  background-color: #fff;
  background: #e2e6f2 url(../images/bg_fade.jpg) bottom repeat-x; }

#container {
  font-size: .75em;
  background: #FFF; }

.wrapper {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 0 22px; }

strong {
  font-weight: bold; }

cite, em, i {
  font-style: italic; }

.desktop {
  display: none; }

.nav-button {
  width: 40px;
  height: 40px;
  -moz-box-shadow: -3px 3px 5px rgba(102, 102, 102, 0.2);
  -webkit-box-shadow: -3px 3px 5px rgba(102, 102, 102, 0.2);
  box-shadow: -3px 3px 5px rgba(102, 102, 102, 0.2);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 11px 10px;
  float: right;
  background-color: #F6F6F6;
  border: 1px solid #e9e9e9; }
  .nav-button .bar {
    width: 100%;
    height: 3px;
    margin-bottom: 4px;
    background-color: #6f84be; }

.nav-button-on {
  background-color: #d0d0d0; }

.top-nav li.open a,
body.search .top-nav li.menu-item-371 a {
  background: #f5f5f5; }

body.search .top-nav li.open a {
  background: none; }

.searchsubmit {
  margin-left: 10px; }

#search-now {
  width: 230px;
  z-index: 1 !important;
  background-color: #f5f5f5;
  padding: 8px 9px;
  -moz-box-shadow: -3px 3px 5px rgba(102, 102, 102, 0.2);
  -webkit-box-shadow: -3px 3px 5px rgba(102, 102, 102, 0.2);
  box-shadow: -3px 3px 5px rgba(102, 102, 102, 0.2);
  -webkit-border-bottom-left-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
  -webkit-border-top-right-radius: 10px;
  -moz-border-radius-bottomleft: 10px;
  -moz-border-radius-bottomright: 10px;
  -moz-border-radius-topright: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  clear: both;
  float: right;
  display: none;
  position: absolute;
  top: 36px;
  left: -30px;
  height: auto; }

#search-now.active {
  display: block; }

.mobile-search {
  width: 100%;
  background: #F6F6F6;
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
  padding: 12px 22px; }
  .mobile-search input[type="text"] {
    width: 90%;
    height: 40px;
    margin-right: 10px; }

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  text-rendering: optimizelegibility;
  margin: 0; }
  h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
    text-decoration: none; }

h1, .h1 {
  font-size: 2.5em;
  line-height: 1.333em; }

h2, .h2 {
  font-size: 2.05em;
  line-height: 1.4em;
  margin-bottom: 0.375em; }

h3, .h3 {
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.125em;
  margin: 0; }

h4, .h4 {
  font-size: 1.2em;
  font-weight: 700;
  color: #6f84be;
  margin: 0; }

h5, .h5 {
  font-size: 1em;
  line-height: 2.6em;
  text-transform: uppercase; }

a, a:visited {
  color: #f4802b;
  text-decoration: none; }

a:hover, a:active {
  color: #6f84be; }

p {
  font-weight: 400; }

/*********************
HEADER STYLES
*********************/
header {
  width: 100%;
  overflow: hidden;
  padding: 22px 0; }

#logo {
  width: 225px;
  float: left; }
  #logo #desktop-logo {
    display: none; }
    #logo #desktop-logo img {
      width: 100%; }
  #logo #mobile-logo {
    display: inline-block; }
    #logo #mobile-logo img {
      width: 200px;
      height: auto; }

/*********************
NAVIGATION STYLES
*********************/
/* Top Nav */
.social-menu .social-media {
  overflow: hidden; }
  .social-menu .social-media li a, .social-menu .social-media li a:visited {
    padding: 10px 9px 0; }
.social-menu .social-media,
.social-menu .top-nav {
  list-style: none;
  line-height: 1.0;
  padding: 0;
  font-size: .9em;
  z-index: 2;
  position: relative;
  margin: 0; }
  .social-menu .social-media a, .social-menu .social-media a:visited,
  .social-menu .top-nav a,
  .social-menu .top-nav a:visited {
    display: block;
    padding: 13px 22px;
    color: #666;
    font-weight: 600;
    text-decoration: none; }
.social-menu .top-nav {
  background-color: #dddddd; }
  .social-menu .top-nav li {
    position: relative;
    list-style: none;
    border-bottom: 1px solid #c3c3c3; }
    .social-menu .top-nav li:first-child {
      background: none; }
    .social-menu .top-nav li a:active {
      color: #f4802b; }
  .social-menu .top-nav li.current-menu-item a,
  .social-menu .top-nav li.current-menu-item a:visited,
  .social-menu .top-nav li.current-menu-parent a,
  .social-menu .top-nav li.current-menu-parent a:visited,
  .social-menu .top-nav li.current-menu-ancestor a,
  .social-menu .top-nav li.current-menu-ancestor a:visited,
  .social-menu .top-nav li.current-page-item a,
  .social-menu .top-nav li.current-page-item a:visited,
  .social-menu .top-nav li.current-page-parent a,
  .social-menu .top-nav li.current-page-parent a:visited,
  .social-menu .top-nav li.current-page-ancestor a,
  .social-menu .top-nav li.current-page-ancestor a:visited,
  .social-menu .top-nav li.current_page_parent a,
  .social-menu .top-nav li.current_page_parent a:visited {
    color: #f4802b; }

/* Main Nav */
#menu-main-menu {
  list-style: none;
  line-height: 1.0;
  background-color: #F6F6F6;
  margin: 0 auto;
  max-width: 960px; }
  #menu-main-menu li {
    position: relative;
    list-style: none;
    border-bottom: 1px solid #dddddd; }
    #menu-main-menu li a {
      display: block;
      color: #666666;
      font-weight: 800;
      font-size: 1.2em;
      line-height: 16px;
      padding: 12px 22px;
      text-decoration: none; }
      #menu-main-menu li a:hover, #menu-main-menu li a:active {
        color: #f4802b; }
    #menu-main-menu li ul {
      display: none; }
    #menu-main-menu li:hover {
      visibility: inherit;
      /* fixes IE7 'sticky bug' */ }
  #menu-main-menu li.current-menu-item a,
  #menu-main-menu li.current-menu-parent a,
  #menu-main-menu li.current-menu-ancestor a,
  #menu-main-menu li.current-page-item a,
  #menu-main-menu li.current-page-parent a,
  #menu-main-menu li.current-page-ancestor a,
  #menu-main-menu li.current_page_parent a {
    color: #f4802b; }

.navmenu,
#nav {
  z-index: 20;
  position: relative;
  font-size: 1em; }

/*********************
POSTS & CONTENT STYLES
*********************/
.mapp-layout {
  width: 100% !important; }

#main .sidebar .swami {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  padding: 10px; }

p {
  margin-bottom: 1.3em;
  line-height: 160%; }

.flex-slides {
  max-width: 710px;
  width: 100%;
  height: auto;
  border-radius: 10px; }

.inspiration-cycle {
  /*border-bottom: 1px solid #ccc;*/
  padding-bottom: 3px; }
  .inspiration-cycle #daily-inspiration {
    display: none; }
    .inspiration-cycle #daily-inspiration li {
      border: none;
      padding: 0;
      width: 230px;
      border-bottom: none;
      border-top: 1px solid #CCC; }
  .inspiration-cycle .slides {
    margin: 0; }
    .inspiration-cycle .slides li a, .inspiration-cycle .slides li a:visited {
      color: #666666 !important;
      font-weight: 400;
      font-size: 12px;
      line-height: 12px; }
  .inspiration-cycle .flex-direction-nav {
    overflow: hidden;
    float: right;
    display: inline-block;
    position: relative;
    top: -70px;
    left: 0;
    z-index: 5000;
    margin: 0; }
    .inspiration-cycle .flex-direction-nav li {
      float: left; }
    .inspiration-cycle .flex-direction-nav .flex-prev,
    .inspiration-cycle .flex-direction-nav .flex-next {
      display: inline-block;
      float: left;
      height: 10px;
      width: 8px;
      text-indent: -999em;
      margin-right: 3px;
      cursor: pointer;
      background: url(../images/arrows_cycle.png) no-repeat; }
    .inspiration-cycle .flex-direction-nav .flex-prev {
      background-position: -14px 0; }
    .inspiration-cycle .flex-direction-nav .flex-next {
      background-position: -14px -14px; }

.inspiration-header {
  margin-top: 15px; }

a.cycle-prev.disabled {
  background-position: 0 0;
  cursor: default; }

a.cycle-next.disabled {
  background-position: 0 -14px;
  cursor: default; }

.homepage-slideshow .flexslider {
  position: relative; }
  .homepage-slideshow .flexslider .slides {
    margin-top: 0;
    padding-left: 0 !important; }
  .homepage-slideshow .flexslider img {
    width: 100%;
    height: auto;
    max-width: 676px;
    border: none !important; }
  .homepage-slideshow .flexslider .controls-container {
    position: absolute;
    right: 0;
    top: 0;
    text-align: right;
    z-index: 2; }
    .homepage-slideshow .flexslider .controls-container ul {
      margin-right: 15px; }
    .homepage-slideshow .flexslider .controls-container a {
      display: block;
      text-indent: 100%;
      white-space: nowrap;
      overflow: hidden;
      width: 26px;
      height: 25px;
      background-image: url(../images/slideshow_nav.png);
      cursor: pointer; }
    .homepage-slideshow .flexslider .controls-container .flex-pauseplay {
      width: 26px;
      height: 25px;
      position: absolute;
      z-index: 3;
      right: 48px; }
      .homepage-slideshow .flexslider .controls-container .flex-pauseplay .flex-pause {
        background-position: -31px 0; }
      .homepage-slideshow .flexslider .controls-container .flex-pauseplay .flex-play {
        background-position: -93px 0; }
    .homepage-slideshow .flexslider .controls-container li {
      float: left;
      margin-left: 40px; }
      .homepage-slideshow .flexslider .controls-container li .flex-prev {
        padding-right: 25px; }
      .homepage-slideshow .flexslider .controls-container li .flex-next {
        background-position: -62px 0; }

.page-slideshow {
  margin-bottom: 30px; }
  .page-slideshow ul {
    padding: none; }
  .page-slideshow img {
    width: 100%;
    max-width: 676px;
    height: auto;
    border-radius: 10px;
    position: relative;
    margin-bottom: 0 !important; }
  .page-slideshow p {
    position: absolute;
    bottom: 0;
    padding: 10px;
    color: #323944;
    background: rgba(255, 255, 255, 0.7);
    margin: 0 !important;
    font-size: 14px;
    line-height: 16px; }
  .page-slideshow.small {
    margin: 0 auto 30px auto;
    display: block;
    max-width: 500px; }

#content {
  /* want to style individual post classes? Booya! */
  /* post by id (i.e. post-3) */
  /* general post style */
  /* general article on a page style */
  /* general style on an attatchment */
  /* sticky post style */
  /* hentry class */
  /* style by category (i.e. category-videos) */
  /* style by tag (i.e. tag-news) */ }
  #content .page-header {
    padding: 0 0 12px 0;
    border-bottom: 1px solid #E5E5E5;
    margin-bottom: 16px; }
    #content .page-header .social-share {
      margin-top: -30px !important; }
  #content .header-image-wrapper {
    border-radius: 10px;
    border: 1px solid #E5E5E5;
    background: #F6F6F6;
    padding: 10px 10px 15px 10px;
    margin-bottom: 30px; }
    #content .header-image-wrapper .entry-share {
      margin: 20px 0 5px 15px; }
    #content .header-image-wrapper .social-share {
      margin-top: -17px; }
    #content .header-image-wrapper .header-image {
      max-width: 654px;
      width: 100%;
      height: auto; }
    #content .header-image-wrapper .full-header-image {
      max-width: 960px;
      width: 100%;
      height: auto; }
    #content .header-image-wrapper h1 {
      font: 100 1.7em 'HelveticaNeue-UltraLight', 'Helvetica Neue UltraLight', 'Helvetica Neue', brevia, "Trebuchet MS", Helvetica, Verdana, Arial, Geneva, sans-serif;
      color: #fff;
      padding-left: 15px;
      height: 70px;
      letter-spacing: 1px;
      text-transform: lowercase;
      margin-top: -33px;
      margin-bottom: -16px; }
  #content .page-title {
    margin: 0;
    color: #6f84be;
    font-weight: 400;
    font-size: 2.2em;
    padding-right: 50px; }
  #content .entry-share {
    clear: both;
    overflow: hidden;
    margin-top: 22px;
    min-height: 24px; }
  #content .social-share {
    width: 100%;
    float: right; }
  #content .social-share .share-item {
    float: right; }
  #content .social-share .share-twitter {
    margin-top: 2px; }
  #content .social-share .share-pinterest {
    margin-left: 7px; }
  #content .social-share .st_sharethis_custom {
    background: url(../images/btn-share.png) no-repeat;
    padding: 0 68px 0 0;
    display: inline-block;
    min-height: 24px; }
  #content .stButton .stBubble {
    height: 40px !important;
    margin-top: 2px !important;
    background: url(http://w.sharethis.com/share4x/images/bubble_arrow_below.png) no-repeat 10px 36px !important;
    line-height: 14px !important; }
  #content .stButton .stBubble_count {
    font-size: 16px !important;
    height: 25px !important;
    background: none !important; }
  #content .postmetadata {
    margin: 0 0 5px 0;
    font-weight: bold;
    font-style: italic; }
  #content .entry-content .posttitle {
    font-size: 2.2em;
    line-height: 1.2em;
    margin: 0;
    color: #f4802b;
    font-weight: 300; }
  #content .entry-content h2 {
    margin-top: 15px; }
  #content .entry-content h3 {
    font-size: 1.8em;
    font-weight: 400;
    line-height: 1.4em; }
  #content .entry-content h4 {
    margin-top: 5px; }
  #content .entry-content p {
    margin: 0 0 1.5em; }
  #content .entry-content a, #content .entry-content a:visited {
    color: #f4802b;
    text-decoration: none; }
    #content .entry-content a:hover, #content .entry-content a:focus, #content .entry-content a:active, #content .entry-content a:visited:hover, #content .entry-content a:visited:focus, #content .entry-content a:visited:active {
      color: #6f84be;
      -webkit-tap-highlight-color: #6f84be; }
  #content .entry-content img {
        margin-bottom: 15px;
		border-radius: 4px; }
  #content .entry-content .size-auto,
  #content .entry-content .size-full,
  #content .entry-content .size-large,
  #content .entry-content .size-medium,
  #content .entry-content .size-thumbnail {
    max-width: 100%;
    height: auto; }
  #content .entry-content .size-full,
  #content .entry-content .size-large {
    width: auto;
    height: auto; }
  #content .entry-content .size-medium,
  #content .entry-content .size-auto,
  #content .entry-content .size-thumbnail {
    width: auto;
    height: auto; }
  #content .entry-content .slides {
    padding-left: 0 !important; }
  #content .entry-content ul {
    padding-left: 32px; }
    #content .entry-content ul li {
      list-style-type: disc; }
  #content .entry-content ol {
    padding-left: 32px; }
    #content .entry-content ol li {
      list-style-type: decimal; }
  #content .half-col {
    width: 100%; }
    #content .half-col ul {
      padding: 0; }
      #content .half-col ul li {
        list-style-type: none; }
    #content .half-col .yogaville-programs h2 {
      color: #f4802b; }
    #content .half-col .yogaville-teachings h2 {
      color: #6f84be; }
    #content .half-col .view-all {
      text-align: right;
      font-weight: 600; }
    #content .half-col img {
      width: 60px;
      height: auto;
      float: right; }
    #content .half-col .excerpt {
      width: 80%;
      padding-right: 15px; }
    #content .half-col .widget-content {
      padding-top: 15px; }
  #content .widgettitle {
    border-bottom: 1px solid #E5E5E5;
    padding-bottom: 0.5em;
    font-weight: 400;
    color: #f4802b;
    padding: 15px 0 15px 0; }
  #content .widget ul li {
    margin-bottom: 0.75em; }
    #content .widget ul li a {
      font-weight: bold !important; }
    #content .widget ul li ul {
      margin-top: 0.75em;
      padding-left: 1em; }
  #content .widget .social-connect img {
    vertical-align: middle;
    margin-left: 3px; }
  #content .widget #daily-inspiration {
    margin: 0; }
    #content .widget #daily-inspiration li {
      border-bottom: none;
      margin: 0; }
    #content .widget #daily-inspiration a, #content .widget #daily-inspiration a:visited {
      color: #666666;
      font-weight: 400 !important; }
  #content .inspiration-cycle {
    /*border-bottom: 1px solid #ccc;*/
    padding-bottom: 3px; }
  #content #site-map-menu li {
    width: 44%;
    float: left;
    font-weight: bold;
    padding: 15px;
    background: #F6F6F6;
    border-radius: 10px;
    margin: 0 15px 20px 0; }
    #content #site-map-menu li a {
      text-decoration: none; }
    #content #site-map-menu li ul {
      margin: 0; }
      #content #site-map-menu li ul li {
        width: 100%;
        font-weight: 400;
        margin-bottom: 0px;
        padding: 0; }
        #content #site-map-menu li ul li a {
          color: #666666; }
        #content #site-map-menu li ul li ul {
          display: none; }

.yarc-date,
.yarc-month,
.yarc-day {
  display: block; }

.yarc-date {
  width: 64px;
  float: right;
  background: #f2f2f2;
  line-height: 14px;
  text-align: center;
  overflow: hidden;
  margin: 0 0 15px 0px; }

.two-month-date {
  width: 70px; }

.yarc-date .two-months {
  overflow: hidden;
  display: block; }

.yarc-date .two-months .day {
  float: left;
  width: 30px; }

.yarc-date .two-months .day2 {
  float: right; }

.yarc-date .two-months .dash {
  display: block;
  float: left;
  padding-top: 8px; }

.yarc-month {
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 500;
  padding: 5px 0 0; }

.yarc-date .two-months .dash,
.yarc-day {
  font-style: italic;
  font-size: 1.4em; }

.yarc-details {
  clear: both;
  margin: 0 !important;
  line-height: normal; }

.yarc-date .yarc-details a {
  display: block;
  background: #f4802b;
  color: #fff !important;
  font-size: 9.5px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 2px;
  margin-top: 5px; }

.empty-date .yarc-details a {
  margin-top: 0; }

.yarc-date {
  margin-top: 15px; }

#hp-accordion {
  margin-top: 20px;
  margin-bottom: 20px; }
  #hp-accordion h3 {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    padding: 15px 10px !important;
    margin: 5px 0;
    cursor: pointer; }
  #hp-accordion img {
    border-top-left-radius: 10px; }

#hp-accordion .widget-content {
  width: 100%;
  overflow: auto;
  margin-bottom: 0px;
  max-height: 264px;
  padding: 0 10px;
  border-bottom: none; }

.widget-content {
  margin-bottom: 15px;
  border-bottom: 1px solid #E5E5E5; }
  .widget-content ul {
    margin-top: 0; }
    .widget-content ul li {
      border-bottom: 1px solid #E5E5E5; }
      .widget-content ul li:last-child {
        border: none; }

.read-more-text {
  cursor: pointer; }
  .read-more-text:hover {
    color: #f4802b; }

.down-arrow {
  background: url(../images/down-arrow.png) right no-repeat;
  background-position: 97%; }

.up-arrow {
  background: url(../images/up-arrow.png) right no-repeat;
  background-position: 97%; }

/* Featured Products */
.yarc-featured-products li {
  height: 138px;
  overflow: hidden;
  margin-bottom: 15px;
  position: relative;
  padding: 0;
  float: left; }

.yarc-featured-products li a.yarc_thumbnail_link {
  z-index: 1;
  position: relative;
  height: 138px;
  display: block;
  background: #f0f0f0 no-repeat;
  -webkit-border-top-left-radius: 10px;
  -moz-border-radius-topleft: 10px;
  border-top-left-radius: 10px; }

.yarc-featured-products li span {
  position: absolute;
  z-index: 2; }

.yarc-featured-products li span span {
  position: static; }

.yarc-featured-products li span,
.yarc-featured-products li span a, .yarc-featured-products li span a:visited {
  color: #fff;
  display: block; }

.yarc-featured-products li span.yarc-featured-date,
.yarc-featured-products li span.yarc-featured-title {
  background: #a1acd6 url(../images/bg_caption.jpg) bottom repeat-x; }

.yarc-featured-products li span.yarc-featured-date {
  width: 40px;
  padding: 5px 0;
  top: 0;
  right: 0;
  text-align: center;
  line-height: 14px; }

.yarc-featured-products li span.yarc-featured-title {
  bottom: 0;
  width: 100%;
  padding: 13px;
  font-size: 14px;
  font-weight: 500; }

.yarc-featured-products li.even span.yarc-featured-date,
.yarc-featured-products li.even span.yarc-featured-title {
  background: #fac197 url(../images/bg_caption-alt.jpg) bottom repeat-x; }

.yarc-featured-products .yarc-month {
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 500; }

.yarc-featured-products .yarc-day {
  font-style: italic;
  font-size: 18px; }

.ui-tabs-hide {
  display: none !important; }

.show-hide aside.widget {
  margin-bottom: 0;
  clear: both; }

.ui-accordion-header {
  cursor: pointer;
  margin: 0 !important;
  border-bottom: 1px solid #ccc;
  clear: both; }

.ui-accordion-content-active {
  border-bottom: 1px solid #ccc;
  margin: 15px 0 0; }

.widget.ui-accordion-content-active li {
  border-bottom: none; }

strong {
  font-weight: bold; }

cite, em, i {
  font-style: italic; }

hr {
  display: block;
  height: 1px;
  background: #CCC;
  border: 0;
  color: #CCC; }

table {
  border-collapse: collapse;
  margin: 1.2em 0; }

th, td {
  padding: 5px 6px;
  border: 1px solid #ccc;
  vertical-align: top; }

th {
  font-size: .9em;
  text-align: left;
  text-transform: uppercase;
  background: #F0F0F0;
  letter-spacing: 0.15em;
  color: #3d3d3d; }

table caption {
  background: #f5f3ee;
  padding: 2px 0; }

dl {
  margin: 0 1.625em; }

dt {
  font-weight: bold; }

dd {
  margin-bottom: 1.625em; }

blockquote {
  color: #666666;
  padding: 20px 0 0 0;
  font-style: italic;
  letter-spacing: .03em;
  margin: 0; }
  blockquote em, blockquote i, blockquote cite {
    font-style: normal;
    color: #666666;
    font-weight: 300;
    font-size: .8em;
    line-height: .7em;
    letter-spacing: 0.05em;
    text-transform: uppercase; }
  blockquote p {
    margin-bottom: 1em; }

.multi-page a {
  width: 50%;
  float: left;
  padding-right: 5px;
  margin-bottom: 20px; }
  .multi-page a li {
    background: #F6F6F6;
    border: 1px solid #E5E5E5;
    padding: 10px;
    border-radius: 10px; }
    .multi-page a li img {
      max-width: 210px;
      width: 100%;
      height: 100%; }
  .multi-page a:nth-child(2n+0) {
    clear: both; }

.product-info {
  max-width: 300px;
  margin: 0 auto;
  float: none; }

.product-info,
.product-info a, .product-info a:visited {
  color: #fff !important; }

.product-info a, .product-info a:visited {
  font-weight: bold; }

.product-info ul {
  margin: 0;
  background: #a5b1d7 url(../images/bg_product-info.jpg) repeat-x;
  padding: 20px 0 10px !important; }

.product-info li {
  list-style-type: none !important;
  margin: 0 10px 10px;
  padding: 0 0 10px; }

.product-info li.date-range {
  font-size: 1.3em;
  line-height: 1.2em;
  color: #ffedd0;
  padding: 10px 0;
  border-bottom: 1px solid #c4ccec;
  font-weight: 700; }

.product-info li.tuition, .product-info li.rate {
  font-weight: 700; }

.product-info .yarc-tuition-price, .product-info .yarc-package-rate-price {
  font-size: 1.4em;
  font-weight: 700; }

.product-info .booking {
  margin: 0;
  text-align: center; }

.product-info .booking a,
.product-info .booking a:visited {
  display: block;
  background-color: #788BC2;
  height: 56px;
  color: #ffedd0 !important;
  font: 26px brevia, "Arial Rounded", "Century Gothic", Helvetica, Verdana, Arial, Geneva, sans-serif;
  line-height: 48px;
  width: 100%; }

.product-info .booking a:hover, .product-info .booking a:active {
  color: #fff; }

.post-title a,
.post-title a:visited {
  color: #f4802b !important;
  font-size: 20px;
  font-weight: 400; }
  .post-title a:hover,
  .post-title a:visited:hover {
    color: #6f84be !important; }

.postsubtitle {
  font-weight: 500;
  font-style: italic;
  font-size: 1.35em !important; }

.entry-header {
  margin-bottom: 15px; }

.entry {
  margin-bottom: 30px; }

.widget_yogavillecategorywidget .widgettitle {
  padding: 0 !important;
  border: none !important; }
.widget_yogavillecategorywidget li {
  border: none !important; }
  .widget_yogavillecategorywidget li a {
    color: #666666; }
.widget_yogavillecategorywidget .widget-content {
  border-bottom: none;
  margin-top: 20px; }

.archive-page {
  border-bottom: 1px solid #E5E5E5;
  padding-bottom: 30px; }
  .archive-page .product-description {
    width: 75%;
    float: left; }
  .archive-page .yarc-date {
    float: right; }
  .archive-page .post-title {
    line-height: 2em; }

.wp-caption {
  background: #f2f2f2;
  text-align: center;
  padding: 10px; }
  .wp-caption .wp-caption-text {
    margin: 0 !important; }

/*********************
FORM
*********************/
input[type="submit"], input[type="button"], .button, .cform input.sendbutton {
  padding: 5px 12px;
  background: #e7eaf9;
  color: #2E579E !important;
  border: none;
  font-size: 1.6em !important;
  cursor: pointer; }

input[type="submit"]:hover, input[type="button"]:hover, .button:hover, .cform input.sendbutton:hover, input[type="submit"]:active, input[type="button"]:active, .button:active, .cform input.sendbutton:active {
  background: #F4802B;
  color: #fff !important; }

.gform_wrapper ul {
  padding-left: 0 !important; }

/*********************
PAGINATION
*********************/
.pagination {
  margin-bottom: 30px; }
  .pagination li {
    float: left;
    padding: 0 5px;
    font-size: 14px; }
    .pagination li a {
      background: #F6F6F6;
      border-radius: 5px;
      width: 25px;
      height: 25px;
      display: block;
      text-align: center;
      padding-top: 2px; }
      .pagination li a:hover {
        background: #E5E5E5; }

/*********************
SIDEBARS & ASIDES
*********************/
.sidebar {
  margin-top: 2.2em; }
  .sidebar .sidebar-child-pages a, .sidebar .sidebar-child-pages a:visited {
    color: #666666; }
  .sidebar .sidebar-child-pages li {
    margin-bottom: 0 !important;
    padding: 5px 10px; }
  .sidebar .sidebar-child-pages .current_page_item {
    background: #f9fafd url(../images/bg_subnav-on.png) bottom repeat-x; }

/*********************
FOOTER STYLES
*********************/
footer {
  font-size: 12px;
  line-height: 20px;
  overflow: hidden;
  padding: 40px 0;
  color: #2E579E; }
  footer a, footer a:visited {
    color: #284c8a; }
  footer a:hover, footer a:active {
    color: #f4802b; }
  footer img {
    vertical-align: middle; }
  footer img.logo-mini {
    margin-right: 10px;
    margin-bottom: 5px; }
  footer .attribution {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #a4afd7; }

.footer-links {
  display: none; }

/*********************
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*********************/
@media only screen and (max-width: 480px) {
  .entry-content img {
    width: 100% !important;
    height: auto; } }
@media only screen and (min-width: 481px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: 481px and Up Stylesheet
  
  This stylesheet is loaded for larger devices. It's set to
  481px because at 480px it would load on a landscaped iPhone.
  This isn't ideal because then you would be loading all those
  extra styles on that same mobile connection.
  
  A word of warning. This size COULD be a larger mobile device,
  so you still want to keep it pretty light and simply expand
  upon your base.scss styles.
  
  ******************************************************************/
  #logo #desktop-logo {
    display: inline-block; }
  #logo #mobile-logo {
    display: none; }

  /*********************
  POSTS & CONTENT STYLES
  *********************/
  .multi-page a {
    width: 33%; }
    .multi-page a:nth-child(2n+0) {
      clear: none; }

  /* entry content */
  .entry-content {
    /* at this larger size, we can start to align images */ }
    .entry-content .alignleft, .entry-content img.alignleft {
      margin-right: 1.5em;
      display: inline;
      float: left; }
    .entry-content .alignright, .entry-content img.alignright {
      margin-left: 1.5em;
      display: inline;
      float: right; }
    .entry-content .aligncenter, .entry-content img.aligncenter {
      margin-right: auto;
      margin-left: auto;
      display: block;
      clear: both; }

  /* end .entry-content */
  .header-image-wrapper h1 {
    margin-top: -80px !important;
    margin-bottom: 30px !important;
    font-size: 4em !important; }

  /*********************
  FOOTER STYLES
  *********************/
  /*
  check your menus here. do they look good?
  do they need tweaking?
  */
  /* end .footer-links */ }
/*********************
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (max-width: 767px) {
  .swami {
    text-align: center; }
    .swami .inspiration-slider .flex-direction-nav {
      float: none;
      position: static; } }
@media only screen and (min-width: 768px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Tablet & Small Desktop Stylesheet
  
  Here's where you can start getting into the good stuff.
  This size will work on iPads, other tablets, and desktops.
  So you can start working with more styles, background images,
  and other resources. You'll also notice the grid starts to
  come into play. Have fun!
  
  ******************************************************************/
  .nav-button {
    margin-top: 12px; }

  #logo {
    width: 447px; }

  .wrapper {
    padding-left: 40px;
    padding-right: 40px; }

  #menu-main-menu li a {
    padding-left: 40px;
    padding-right: 40px; }

  .social-menu .top-nav li {
    padding: 0 20px; }

  .mobile-search {
    padding: 22px 40px; }

  #content .half-col {
    width: 50%;
    float: left;
    padding-right: 20px; }
    #content .half-col .yogaville-programs a, #content .half-col .yogaville-programs a:visited {
      color: #f4802b; }
    #content .half-col .yogaville-teachings a, #content .half-col .yogaville-teachings a:visited {
      color: #6f84be; }
  #content #site-map-menu li {
    width: 30%;
    float: left; }

  .multi-page a {
    width: 25%; }
    .multi-page a:nth-child(5n+1) {
      clear: both; }

  /*********************
  SIDEBARS & ASIDES
  *********************/
  .sidebar {
    margin-top: 0;
    padding-left: 30px; }

  #content .widget-content {
    /*height: 350px;
    overflow-y: scroll;
    overflow: auto;*/ }
  #content .yarc-featured-products li img {
    width: 100% !important; }

  /*********************
  FOOTER STYLES
  *********************/
  .footer-links {
    display: block; }
    .footer-links li {
      width: 20%;
      float: left;
      font-weight: bold;
      padding-right: 10px;
      margin-bottom: 30px; }
      .footer-links li a {
        text-decoration: none; }
      .footer-links li:nth-child(5n+1) {
        clear: both; }
      .footer-links li ul {
        margin: 0; }
        .footer-links li ul li {
          width: 100%;
          font-weight: 400;
          margin-bottom: 0px; }
          .footer-links li ul li ul {
            display: none; } }
/*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (max-width: 959px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: 959down
  
  ******************************************************************/
  .show-when-clicked {
    display: none; } }
@media only screen and (max-width: 980px) {
  .swami .size-full {
    max-width: 200px !important;
    height: auto; } }
@media only screen and (min-width: 960px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Desktop Stylsheet
  
  This is the desktop size. It's larger than an iPad so it will only
  be seen on the Desktop.
  
  ******************************************************************/
  .desktop {
    display: block; }

  .mobile {
    display: none; }

  .nav-button {
    display: none; }

  #logo {
    margin-top: 10px; }

  header {
    padding: 10px; }

  /*********************
  NAVIGATION STYLES
  *********************/
  /* Top Nav */
  .social-menu {
    float: right; }
    .social-menu .social-media {
      float: right;
      overflow: hidden; }
      .social-menu .social-media li {
        float: left;
        padding: 0 0 0 5px; }
        .social-menu .social-media li a, .social-menu .social-media li a:visited {
          padding: 10px 9px 0; }
    .social-menu .menu {
      float: right; }
      .social-menu .menu .menu {
        float: none; }
    .social-menu .social-media,
    .social-menu .top-nav {
      list-style: none;
      line-height: 1.0;
      padding: 0;
      font-size: .9em;
      z-index: 2;
      position: relative;
      margin: 0;
      background: none; }
      .social-menu .social-media a, .social-menu .social-media a:visited,
      .social-menu .top-nav a,
      .social-menu .top-nav a:visited {
        display: block;
        padding: 13px 9px;
        color: #666;
        font-weight: 600;
        text-decoration: none; }
    .social-menu .top-nav li {
      float: left;
      position: relative;
      list-style: none;
      padding: 0 5px 0 9px;
      background: url(../images/bg_topnav-item.png) left center no-repeat;
      border: none; }
      .social-menu .top-nav li:first-child {
        background: none;
        padding-left: 0; }
      .social-menu .top-nav li a:hover {
        color: #f4802b; }
    .social-menu .top-nav li.current-menu-item a,
    .social-menu .top-nav li.current-menu-item a:visited,
    .social-menu .top-nav li.current-menu-parent a,
    .social-menu .top-nav li.current-menu-parent a:visited,
    .social-menu .top-nav li.current-menu-ancestor a,
    .social-menu .top-nav li.current-menu-ancestor a:visited,
    .social-menu .top-nav li.current-page-item a,
    .social-menu .top-nav li.current-page-item a:visited,
    .social-menu .top-nav li.current-page-parent a,
    .social-menu .top-nav li.current-page-parent a:visited,
    .social-menu .top-nav li.current-page-ancestor a,
    .social-menu .top-nav li.current-page-ancestor a:visited,
    .social-menu .top-nav li.current_page_parent a,
    .social-menu .top-nav li.current_page_parent a:visited {
      color: #f4802b; }

  /* Main Nav */
  #menu-main-menu {
    list-style: none;
    line-height: 1.0;
    background-color: #fff;
    padding-top: 8px;
    border-top: 1px solid #ccc;
    position: relative; }
    #menu-main-menu .mega {
      position: static; }
      #menu-main-menu .mega ul.sub-menu {
        width: 100%;
        margin-top: 0;
        border-top: 0;
        left: 0;
        position: absolute;
        visibility: hidden;
        z-index: 8999;
        background: rgba(246, 246, 246, 0.9);
        padding: 8px 0;
        -webkit-border-bottom-left-radius: 10px;
        -webkit-border-bottom-right-radius: 10px;
        -webkit-border-top-right-radius: 0px;
        -webkit-border-top-left-radius: 0px;
        -moz-border-radius-bottomleft: 10px;
        -moz-border-radius-bottomright: 10px;
        -moz-border-radius-topright: 0px;
        -moz-border-radius-topleft: 0px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        border-top-right-radius: 0px;
        border-top-left-radius: 0px; }
        #menu-main-menu .mega ul.sub-menu li {
          float: left;
          width: 16.666666667%;
          border-right: 1px solid #cccccc !important; }
          #menu-main-menu .mega ul.sub-menu li a {
            background: none !important;
            padding: 0;
            border-bottom: none;
            text-align: center; }
            #menu-main-menu .mega ul.sub-menu li a img {
              max-width: 120px;
              height: auto;
              display: block;
              margin: 0 auto 10px auto; }
          #menu-main-menu .mega ul.sub-menu li:last-child {
            border-right: none !important; }
    #menu-main-menu li {
      float: left;
      position: relative;
      list-style: none;
      margin-left: 16px !important;
      display: inline-block;
      border: none !important;
      /* showing sub-menus */ }
      #menu-main-menu li:first-child {
        margin-left: 10px; }
      #menu-main-menu li a {
        display: block;
        color: #666666;
        font-weight: 800;
        font-size: 1.2em;
        line-height: 16px;
        padding: 12px 12px 22px;
        -webkit-border-top-left-radius: 10px;
        -webkit-border-top-right-radius: 10px;
        -moz-border-radius-topleft: 10px;
        -moz-border-radius-topright: 10px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        text-decoration: none; }
        #menu-main-menu li a:hover, #menu-main-menu li a:active {
          color: #f4802b;
          background: url(images/bg_nav-on.png) repeat-x;
          -moz-box-shadow: -3px 0 5px rgba(102, 102, 102, 0.2);
          -webkit-box-shadow: -3px 0 5px rgba(102, 102, 102, 0.2);
          box-shadow: -3px 0 5px rgba(102, 102, 102, 0.2); }
      #menu-main-menu li:hover {
        visibility: inherit;
        /* fixes IE7 'sticky bug' */ }
        #menu-main-menu li:hover a {
          background: #F6F6F6;
          -moz-box-shadow: -3px 0 5px rgba(102, 102, 102, 0.2);
          -webkit-box-shadow: -3px 0 5px rgba(102, 102, 102, 0.2);
          box-shadow: -3px 0 5px rgba(102, 102, 102, 0.2); }
      #menu-main-menu li ul.sub-menu,
      #menu-main-menu li ul.children {
        width: 185px;
        margin-top: 0;
        border-top: 0;
        position: absolute;
        visibility: hidden;
        z-index: 8999;
        background: rgba(246, 246, 246, 0.9);
        padding: 8px 0;
        -webkit-border-bottom-left-radius: 10px;
        -webkit-border-bottom-right-radius: 10px;
        -webkit-border-top-right-radius: 0px;
        -webkit-border-top-left-radius: 0px;
        -moz-border-radius-bottomleft: 10px;
        -moz-border-radius-bottomright: 10px;
        -moz-border-radius-topright: 0px;
        -moz-border-radius-topleft: 0px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        border-top-right-radius: 0px;
        border-top-left-radius: 0px;
        -moz-box-shadow: -3px 0 5px rgba(102, 102, 102, 0.2);
        -webkit-box-shadow: -3px 0 5px rgba(102, 102, 102, 0.2);
        box-shadow: -3px 0 5px rgba(102, 102, 102, 0.2);
        /* highlight sub-menu current page */ }
        #menu-main-menu li ul.sub-menu li,
        #menu-main-menu li ul.children li {
          padding: 0 10px;
          margin: 0 !important;
          width: 100%;
          /*
          if you need to go deeper, go nuts
          just remember deeper menus suck
          for usability. k, bai.
          */ }
          #menu-main-menu li ul.sub-menu li a,
          #menu-main-menu li ul.children li a {
            background: url(../images/bg_dropdown-item.png) 5px 10px no-repeat !important;
            padding: 6px 10px 8px 20px;
            border-right: 0;
            display: block;
            width: 100%;
            border-bottom: 1px solid #ccc;
            background: none;
            -webkit-border-top-left-radius: 0px;
            -webkit-border-top-right-radius: 0px;
            -moz-border-radius-topleft: 0px;
            -moz-border-radius-topright: 0px;
            border-top-left-radius: 0px;
            border-top-right-radius: 0px;
            text-decoration: none;
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            box-shadow: none;
            font-weight: 400;
            font-size: 1em; }
          #menu-main-menu li ul.sub-menu li:last-child a,
          #menu-main-menu li ul.children li:last-child a {
            border-bottom: 0; }
          #menu-main-menu li ul.sub-menu li ul,
          #menu-main-menu li ul.children li ul {
            top: 0;
            left: 100%; }
      #menu-main-menu li:hover > ul {
        top: auto;
        visibility: visible !important;
        display: block; }
    #menu-main-menu li.current-menu-item a,
    #menu-main-menu li.current-menu-parent a,
    #menu-main-menu li.current-menu-ancestor a,
    #menu-main-menu li.current-page-item a,
    #menu-main-menu li.current-page-parent a,
    #menu-main-menu li.current-page-ancestor a,
    #menu-main-menu li.current_page_parent a {
      color: #f4802b; }

  .navmenu,
  #nav {
    z-index: 20;
    position: relative;
    font-size: 1em; }

  #main {
    padding-top: 0; }

  .yarc-featured-products li {
    float: none; }

  #site-map-menu li {
    width: 17.5% !important; }
    #site-map-menu li li {
      width: 100% !important; }
    #site-map-menu li:nth-child(5n+1) {
      clear: both; } }
/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1030px) {
  /******************************************************************
  Site Name: 
  Author: 
  
  ******************************************************************/
  .wrapper {
    padding: 0; }

  .product-info {
    float: right;
    padding-left: 45px; }

  .product-info .booking a,
  .product-info .booking a:visited {
    background: url(../images/tab.png) bottom center no-repeat;
    background-color: transparent;
    width: auto; } }
/*********************
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*********************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /******************************************************************
  Site Name: 
  Author: 
  
  Stylesheet: Retina Screens & Devices Stylesheet
  
  When handling retina screens you need to make adjustments, especially
  if you're not using font icons. Here you can add them in one neat
  place.
  
  ******************************************************************/
  /* 
  
  EXAMPLE 
  Let's say you have an image and you need to make sure it looks ok
  on retina screens. Let's say we have an icon which dimension are
  24px x 24px. In your regular stylesheets, it would look something
  like this:
  
  .icon {
  	width: 24px;
  	height: 24px;
  	background: url(img/test.png) no-repeat;
  }
  
  For retina screens, we have to make some adjustments, so that image
  doesn't look blurry. So, taking into account the image above and the
  dimensions, this is what we would put in our retina stylesheet:
  
  .icon {
  	background: url(img/test@2x.png) no-repeat;
  	background-size: 24px 24px;
  }
  
  So, you would create the same icon, but at double the resolution, meaning 
  it would be 48px x 48px. You'd name it the same, but with a @2x at the end
  (this is pretty standard practice). Set the background image so it matches
  the original dimensions and you are good to go. 
  
  */ }
/*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/
@media print {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Print Stylesheet
  
  This is the print stylesheet. There's probably not a lot
  of reasons to edit this stylesheet. If you want to
  though, go for it.
  
  ******************************************************************/
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important; }

  a, a:visited {
    color: #444 !important;
    text-decoration: underline; }
    a:after, a:visited:after {
      content: " (" attr(href) ")"; }
    a abbr[title]:after, a:visited abbr[title]:after {
      content: " (" attr(title) ")"; }

  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""; }

  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }

  thead {
    display: table-header-group; }

  tr, img {
    page-break-inside: avoid; }

  img {
    max-width: 100% !important; }

  @page {
    margin: 0.5cm; }
  p, h2, h3 {
    orphans: 3;
    widows: 3; }

  h2,
  h3 {
    page-break-after: avoid; }

  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none; } }
