@charset "UTF-8";
/*! 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.
*********************/
/* line 26, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/style.scss */
:root {
  --fullwidth: 100vh; }

/* 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.
 */
/* line 12, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
/* line 31, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
audio,
canvas,
video {
  display: inline-block; }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
/* line 42, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
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.
 */
/* line 52, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
[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.
 */
/* line 67, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
/* line 77, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
body {
  margin: 0; }

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
/* line 89, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
a {
  background: transparent; }

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
/* line 97, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
a:focus {
  outline: thin dotted; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
/* line 105, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
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.
 */
/* line 119, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
/* line 128, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
/* line 136, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
b,
strong,
.strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari 5 and Chrome.
 */
/* line 146, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
dfn,
em,
.em {
  font-style: italic; }

/**
 * Address differences between Firefox and other browsers.
 */
/* line 156, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
hr {
  box-sizing: content-box;
  height: 0; }

/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
/* line 166, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
p {
  -webkit-hyphens: auto;
  -epub-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
      hyphens: auto; }

/*
 * Addresses margins set differently in IE6/7.
 */
/* line 177, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
pre {
  margin: 0; }

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
/* line 185, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em; }

/**
 * Improve readability of pre-formatted text in all browsers.
 */
/* line 197, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
pre {
  white-space: pre-wrap; }

/**
 * Set consistent quote types.
 */
/* line 205, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
/* line 212, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
q:before,
q:after {
  content: '';
  content: none; }

/* line 218, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
small, .small {
  font-size: 75%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
/* line 226, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

/* line 234, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
sup {
  top: -0.5em; }

/* line 238, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
sub {
  bottom: -0.25em; }

/* ==========================================================================
  Lists
========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
/* line 250, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
dl,
menu,
ol,
ul {
  margin: 1em 0; }

/* line 257, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
dd {
  margin: 0; }

/*
 * Addresses paddings set differently in IE6/7.
 */
/* line 265, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
menu {
  padding: 0 0 0 40px; }

/* line 269, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
ol,
ul {
  padding: 0;
  list-style-type: none; }

/*
 * Corrects list images handled incorrectly in IE7.
 */
/* line 279, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none; }

/* ==========================================================================
  Embedded content
========================================================================== */
/* line 289, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
img,
iframe {
  max-width: 100%; }
  /* line 293, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
  .sidebar img, .sidebar
  iframe {
    height: auto; }

/**
 * Remove border when inside `a` element in IE 8/9.
 */
/* line 302, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
img {
  border: 0; }

/**
 * Correct overflow displayed oddly in IE 9.
 */
/* line 310, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
svg:not(:root) {
  overflow: hidden; }

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
/* line 322, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
figure {
  margin: 0; }

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
/* line 334, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
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.
 */
/* line 345, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
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.
 */
/* line 356, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
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.
 */
/* line 370, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
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.
 */
/* line 382, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
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.
 */
/* line 395, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
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.
 */
/* line 407, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
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.
 */
/* line 417, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
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).
 */
/* line 429, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  /* 2 */
  box-sizing: content-box; }

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
/* line 441, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
/* line 450, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
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.
 */
/* line 461, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */ }

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
/* line 474, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0; }

/* line 481, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
* {
  box-sizing: border-box; }

/* line 488, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

/* line 496, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
.clearfix, .cf, .comment-respond {
  zoom: 1; }
  /* line 498, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
  .clearfix:before, .clearfix:after, .cf:before, .comment-respond:before, .cf:after, .comment-respond:after {
    content: "";
    display: table; }
  /* line 499, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
  .clearfix:after, .cf:after, .comment-respond:after {
    clear: both; }

/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
/* line 506, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_normalize.scss */
span.amp {
  font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  font-style: italic; }

/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
/*  @font-face {
      font-family: 'Font Name';
      src: url('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
/*
 i imported this one in the functions file so bones would look sweet.
 don't forget to remove it for your site.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
/* line 66, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_typography.scss */
h3 {
  color: #cdb333; }

/* line 70, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_typography.scss */
p {
  -ms-word-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
      hyphens: auto;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
  -webkit-font-feature-settings: "liga", "dlig";
  -ms-font-feature-settings: "liga", "dlig";
  -o-font-feature-settings: "liga", "dlig";
  font-feature-settings: "liga", "dlig"; }

/******************************************************************
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); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/******************************************************************
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.

******************************************************************/
/* line 35, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
.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) {
  /* line 49, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .m-all {
    float: left;
    padding-right: 1.5em;
    width: 100%;
    padding-right: 0; }
  /* line 55, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .m-1of2 {
    float: left;
    padding-right: 1.5em;
    width: 50%; }
  /* line 60, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .m-1of3 {
    float: left;
    padding-right: 1.5em;
    width: 33.33%; }
  /* line 65, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .m-2of3 {
    float: left;
    padding-right: 1.5em;
    width: 66.66%; }
  /* line 70, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .m-1of4 {
    float: left;
    padding-right: 1.5em;
    width: 25%; }
  /* line 75, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .m-3of4 {
    float: left;
    padding-right: 1.5em;
    width: 75%; } }

/* Portrait tablet to landscape */
@media (min-width: 768px) and (max-width: 1029px) {
  /* line 86, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .t-all {
    float: left;
    padding-right: 1.5em;
    width: 100%;
    padding-right: 0; }
  /* line 92, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .t-1of2 {
    float: left;
    padding-right: 1.5em;
    width: 50%; }
  /* line 97, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .t-1of3 {
    float: left;
    padding-right: 1.5em;
    width: 33.33%; }
  /* line 102, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .t-2of3 {
    float: left;
    padding-right: 1.5em;
    width: 66.66%; }
  /* line 107, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .t-1of4 {
    float: left;
    padding-right: 1.5em;
    width: 25%; }
  /* line 112, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .t-3of4 {
    float: left;
    padding-right: 1.5em;
    width: 75%; }
  /* line 117, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .t-1of5 {
    float: left;
    padding-right: 1.5em;
    width: 20%; }
  /* line 122, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .t-2of5 {
    float: left;
    padding-right: 1.5em;
    width: 40%; }
  /* line 127, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .t-3of5 {
    float: left;
    padding-right: 1.5em;
    width: 60%; }
  /* line 132, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .t-4of5 {
    float: left;
    padding-right: 1.5em;
    width: 80%; } }

/* Landscape to small desktop */
@media (min-width: 1030px) {
  /* line 141, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .d-all {
    float: left;
    padding-right: 1.5em;
    width: 100%;
    padding-right: 0; }
  /* line 147, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .d-1of2 {
    float: left;
    padding-right: 1.5em;
    width: 50%; }
  /* line 152, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .d-1of3 {
    float: left;
    padding-right: 1.5em;
    width: 33.33%; }
  /* line 157, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .d-2of3 {
    float: left;
    padding-right: 1.5em;
    width: 66.66%; }
  /* line 162, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .d-1of4 {
    float: left;
    padding-right: 1.5em;
    width: 25%; }
  /* line 167, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .d-3of4 {
    float: left;
    padding-right: 1.5em;
    width: 75%; }
  /* line 172, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .d-1of5 {
    float: left;
    padding-right: 1.5em;
    width: 20%; }
  /* line 177, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .d-2of5 {
    float: left;
    padding-right: 1.5em;
    width: 40%; }
  /* line 182, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .d-3of5 {
    float: left;
    padding-right: 1.5em;
    width: 60%; }
  /* line 187, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .d-4of5 {
    float: left;
    padding-right: 1.5em;
    width: 80%; }
  /* line 192, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .d-1of6 {
    float: left;
    padding-right: 1.5em;
    width: 16.6666666667%; }
  /* line 197, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .d-1of7 {
    float: left;
    padding-right: 1.5em;
    width: 14.2857142857%; }
  /* line 202, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .d-2of7 {
    float: left;
    padding-right: 1.5em;
    width: 28.5714286%; }
  /* line 207, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .d-3of7 {
    float: left;
    padding-right: 1.5em;
    width: 42.8571429%; }
  /* line 212, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .d-4of7 {
    float: left;
    padding-right: 1.5em;
    width: 57.1428572%; }
  /* line 217, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .d-5of7 {
    float: left;
    padding-right: 1.5em;
    width: 71.4285715%; }
  /* line 222, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .d-6of7 {
    float: left;
    padding-right: 1.5em;
    width: 85.7142857%; }
  /* line 227, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .d-1of8 {
    float: left;
    padding-right: 1.5em;
    width: 12.5%; }
  /* line 232, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .d-3of8 {
    float: left;
    padding-right: 1.5em;
    width: 37.5%; }
  /* line 237, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .d-5of8 {
    float: left;
    padding-right: 1.5em;
    width: 62.5%; }
  /* line 242, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .d-7of8 {
    float: left;
    padding-right: 1.5em;
    width: 87.5%; }
  /* line 247, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .d-1of9 {
    float: left;
    padding-right: 1.5em;
    width: 11.1111111111%; }
  /* line 252, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .d-2of9 {
    float: left;
    padding-right: 1.5em;
    width: 22.2222222222%; }
  /* line 257, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .d-4of9 {
    float: left;
    padding-right: 1.5em;
    width: 44.4444444444%; }
  /* line 262, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .d-5of9 {
    float: left;
    padding-right: 1.5em;
    width: 55.5555555555%; }
  /* line 267, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .d-7of9 {
    float: left;
    padding-right: 1.5em;
    width: 77.7777777777%; }
  /* line 272, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .d-8of9 {
    float: left;
    padding-right: 1.5em;
    width: 88.8888888888%; }
  /* line 277, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .d-1of10 {
    float: left;
    padding-right: 1.5em;
    width: 10%; }
  /* line 282, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .d-3of10 {
    float: left;
    padding-right: 1.5em;
    width: 30%; }
  /* line 287, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .d-7of10 {
    float: left;
    padding-right: 1.5em;
    width: 70%; }
  /* line 292, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .d-9of10 {
    float: left;
    padding-right: 1.5em;
    width: 90%; }
  /* line 297, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .d-1of11 {
    float: left;
    padding-right: 1.5em;
    width: 9.09090909091%; }
  /* line 302, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .d-1of12 {
    float: left;
    padding-right: 1.5em;
    width: 8.33%; }
  /* line 307, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .d-5of12 {
    float: left;
    padding-right: 1.5em;
    width: 41.6666666667%; }
  /* line 312, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .d-7of12 {
    float: left;
    padding-right: 1.5em;
    width: 58.3333333333%; }
  /* line 317, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_grid.scss */
  .d-11of12 {
    float: left;
    padding-right: 1.5em;
    width: 91.6666666667%; } }

/*********************
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: Alert Styles

If you want to use these alerts in your design, you can. If not,
you can just remove this stylesheet.

******************************************************************/
/* line 15, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/modules/_alerts.scss */
.alert-help, .alert-info, .alert-error, .alert-success {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid; }

/* line 21, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/modules/_alerts.scss */
.alert-help {
  border-color: #e8dc59;
  background: #ebe16f; }

/* line 27, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/modules/_alerts.scss */
.alert-info {
  border-color: #bfe4f4;
  background: #d5edf8; }

/* line 33, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/modules/_alerts.scss */
.alert-error {
  border-color: #f8cdce;
  background: #fbe3e4; }

/* line 39, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/modules/_alerts.scss */
.alert-success {
  border-color: #deeaae;
  background: #e6efc2; }

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

*********************/
/* line 27, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/modules/_buttons.scss */
.blue-btn, .comment-reply-link, #submit, .default-btn, .gray-btn, .link-btn {
  display: inline-block;
  position: relative;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-decoration: none;
  color: #fff !important;
  font-size: 0.9em;
  font-weight: normal;
  padding: 4px 12px;
  border-radius: 0px;
  border: 0;
  cursor: pointer;
  -webkit-transition: background-color 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out; }
  /* line 43, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/modules/_buttons.scss */
  .blue-btn:hover, .comment-reply-link:hover, #submit:hover, .default-btn:hover, .gray-btn:hover, .link-btn:hover, .blue-btn:focus, .comment-reply-link:focus, #submit:focus, .default-btn:focus, .gray-btn:focus, .link-btn:focus {
    color: #fff;
    text-decoration: none;
    outline: none; }
  /* line 50, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/modules/_buttons.scss */
  .blue-btn:active, .comment-reply-link:active, #submit:active, .default-btn:active, .gray-btn:active, .link-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.
*/
/* line 61, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/modules/_buttons.scss */
.blue-btn, .comment-reply-link, #submit {
  background-color: #2980b9; }
  /* line 65, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/modules/_buttons.scss */
  .blue-btn:hover, .comment-reply-link:hover, #submit:hover, .blue-btn:focus, .comment-reply-link:focus, #submit:focus {
    background-color: #2574a8; }
  /* line 70, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/modules/_buttons.scss */
  .blue-btn:active, .comment-reply-link:active, #submit:active {
    background-color: #2472a4; }

/* line 76, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/modules/_buttons.scss */
.default-btn {
  background-color: #CC3333; }
  /* line 80, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/modules/_buttons.scss */
  .default-btn:hover, .default-btn:focus {
    background-color: #bc2f2f; }
  /* line 85, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/modules/_buttons.scss */
  .default-btn:active {
    background-color: #b82e2e; }

/* line 91, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/modules/_buttons.scss */
.gray-btn {
  background-color: #9fa6b4; }
  /* line 95, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/modules/_buttons.scss */
  .gray-btn:hover, .gray-btn:focus {
    background-color: #949bab; }
  /* line 100, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/modules/_buttons.scss */
  .gray-btn:active {
    background-color: #9199a9; }

/* line 106, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/modules/_buttons.scss */
.link-btn {
  background-color: transparent;
  color: #CC3333 !important; }
  /* line 111, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/modules/_buttons.scss */
  .link-btn:hover, .link-btn:focus {
    background-color: transparent;
    color: #a72a2a !important; }
  /* line 117, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/modules/_buttons.scss */
  .link-btn:active {
    background-color: transparent;
    color: #a72a2a !important; }

/* line 124, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/modules/_buttons.scss */
.block-btn {
  display: block;
  text-align: center;
  margin-bottom: 8px; }

/******************************************************************
Site Name:
Author:

Stylesheet: Form Styles

We put all the form and button styles in here to setup a consistent
look. If we need to customize them, we can do this in the main
stylesheets and just override them. Easy Peasy.

You're gonna see a few data-uri thingies down there. If you're not
sure what they are, check this link out:
http://css-tricks.com/data-uris/
If you want to create your own, use this helpful link:
http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/

******************************************************************/
/*********************
INPUTS
*********************/
/* line 24, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/modules/_forms.scss */
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea,
.field {
  display: block;
  height: 40px;
  line-height: 1em;
  padding: 0 12px;
  margin-bottom: 14px;
  font-size: 1em;
  color: #5c6b80;
  border-radius: 3px;
  vertical-align: middle;
  box-shadow: none;
  border: 0;
  width: 100%;
  max-width: 400px;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #eaedf2;
  -webkit-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out; }
  /* line 59, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/modules/_forms.scss */
  input[type="text"]:focus, input[type="text"]:active,
  input[type="password"]:focus,
  input[type="password"]:active,
  input[type="datetime"]:focus,
  input[type="datetime"]:active,
  input[type="datetime-local"]:focus,
  input[type="datetime-local"]:active,
  input[type="date"]:focus,
  input[type="date"]:active,
  input[type="month"]:focus,
  input[type="month"]:active,
  input[type="time"]:focus,
  input[type="time"]:active,
  input[type="week"]:focus,
  input[type="week"]:active,
  input[type="number"]:focus,
  input[type="number"]:active,
  input[type="email"]:focus,
  input[type="email"]:active,
  input[type="url"]:focus,
  input[type="url"]:active,
  input[type="search"]:focus,
  input[type="search"]:active,
  input[type="tel"]:focus,
  input[type="tel"]:active,
  input[type="color"]:focus,
  input[type="color"]:active,
  select:focus,
  select:active,
  textarea:focus,
  textarea:active,
  .field:focus,
  .field:active {
    background-color: #f7f8fa;
    outline: none; }
  /* line 66, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/modules/_forms.scss */
  input[type="text"].error, input[type="text"].is-invalid,
  input[type="password"].error,
  input[type="password"].is-invalid,
  input[type="datetime"].error,
  input[type="datetime"].is-invalid,
  input[type="datetime-local"].error,
  input[type="datetime-local"].is-invalid,
  input[type="date"].error,
  input[type="date"].is-invalid,
  input[type="month"].error,
  input[type="month"].is-invalid,
  input[type="time"].error,
  input[type="time"].is-invalid,
  input[type="week"].error,
  input[type="week"].is-invalid,
  input[type="number"].error,
  input[type="number"].is-invalid,
  input[type="email"].error,
  input[type="email"].is-invalid,
  input[type="url"].error,
  input[type="url"].is-invalid,
  input[type="search"].error,
  input[type="search"].is-invalid,
  input[type="tel"].error,
  input[type="tel"].is-invalid,
  input[type="color"].error,
  input[type="color"].is-invalid,
  select.error,
  select.is-invalid,
  textarea.error,
  textarea.is-invalid,
  .field.error,
  .field.is-invalid {
    color: #fbe3e4;
    border-color: #fbe3e4;
    background-color: #fff;
    background-position: 99% center;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
    outline-color: #fbe3e4; }
  /* line 78, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/modules/_forms.scss */
  input[type="text"].success, input[type="text"].is-valid,
  input[type="password"].success,
  input[type="password"].is-valid,
  input[type="datetime"].success,
  input[type="datetime"].is-valid,
  input[type="datetime-local"].success,
  input[type="datetime-local"].is-valid,
  input[type="date"].success,
  input[type="date"].is-valid,
  input[type="month"].success,
  input[type="month"].is-valid,
  input[type="time"].success,
  input[type="time"].is-valid,
  input[type="week"].success,
  input[type="week"].is-valid,
  input[type="number"].success,
  input[type="number"].is-valid,
  input[type="email"].success,
  input[type="email"].is-valid,
  input[type="url"].success,
  input[type="url"].is-valid,
  input[type="search"].success,
  input[type="search"].is-valid,
  input[type="tel"].success,
  input[type="tel"].is-valid,
  input[type="color"].success,
  input[type="color"].is-valid,
  select.success,
  select.is-valid,
  textarea.success,
  textarea.is-valid,
  .field.success,
  .field.is-valid {
    color: #e6efc2;
    border-color: #e6efc2;
    background-color: #fff;
    background-position: 99% center;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
    outline-color: #e6efc2; }
  /* line 90, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/modules/_forms.scss */
  input[type="text"][disabled], input[type="text"].is-disabled,
  input[type="password"][disabled],
  input[type="password"].is-disabled,
  input[type="datetime"][disabled],
  input[type="datetime"].is-disabled,
  input[type="datetime-local"][disabled],
  input[type="datetime-local"].is-disabled,
  input[type="date"][disabled],
  input[type="date"].is-disabled,
  input[type="month"][disabled],
  input[type="month"].is-disabled,
  input[type="time"][disabled],
  input[type="time"].is-disabled,
  input[type="week"][disabled],
  input[type="week"].is-disabled,
  input[type="number"][disabled],
  input[type="number"].is-disabled,
  input[type="email"][disabled],
  input[type="email"].is-disabled,
  input[type="url"][disabled],
  input[type="url"].is-disabled,
  input[type="search"][disabled],
  input[type="search"].is-disabled,
  input[type="tel"][disabled],
  input[type="tel"].is-disabled,
  input[type="color"][disabled],
  input[type="color"].is-disabled,
  select[disabled],
  select.is-disabled,
  textarea[disabled],
  textarea.is-disabled,
  .field[disabled],
  .field.is-disabled {
    cursor: not-allowed;
    border-color: #cfcfcf;
    opacity: 0.6; }
    /* line 96, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/modules/_forms.scss */
    input[type="text"][disabled]:focus, input[type="text"][disabled]:active, input[type="text"].is-disabled:focus, input[type="text"].is-disabled:active,
    input[type="password"][disabled]:focus,
    input[type="password"][disabled]:active,
    input[type="password"].is-disabled:focus,
    input[type="password"].is-disabled:active,
    input[type="datetime"][disabled]:focus,
    input[type="datetime"][disabled]:active,
    input[type="datetime"].is-disabled:focus,
    input[type="datetime"].is-disabled:active,
    input[type="datetime-local"][disabled]:focus,
    input[type="datetime-local"][disabled]:active,
    input[type="datetime-local"].is-disabled:focus,
    input[type="datetime-local"].is-disabled:active,
    input[type="date"][disabled]:focus,
    input[type="date"][disabled]:active,
    input[type="date"].is-disabled:focus,
    input[type="date"].is-disabled:active,
    input[type="month"][disabled]:focus,
    input[type="month"][disabled]:active,
    input[type="month"].is-disabled:focus,
    input[type="month"].is-disabled:active,
    input[type="time"][disabled]:focus,
    input[type="time"][disabled]:active,
    input[type="time"].is-disabled:focus,
    input[type="time"].is-disabled:active,
    input[type="week"][disabled]:focus,
    input[type="week"][disabled]:active,
    input[type="week"].is-disabled:focus,
    input[type="week"].is-disabled:active,
    input[type="number"][disabled]:focus,
    input[type="number"][disabled]:active,
    input[type="number"].is-disabled:focus,
    input[type="number"].is-disabled:active,
    input[type="email"][disabled]:focus,
    input[type="email"][disabled]:active,
    input[type="email"].is-disabled:focus,
    input[type="email"].is-disabled:active,
    input[type="url"][disabled]:focus,
    input[type="url"][disabled]:active,
    input[type="url"].is-disabled:focus,
    input[type="url"].is-disabled:active,
    input[type="search"][disabled]:focus,
    input[type="search"][disabled]:active,
    input[type="search"].is-disabled:focus,
    input[type="search"].is-disabled:active,
    input[type="tel"][disabled]:focus,
    input[type="tel"][disabled]:active,
    input[type="tel"].is-disabled:focus,
    input[type="tel"].is-disabled:active,
    input[type="color"][disabled]:focus,
    input[type="color"][disabled]:active,
    input[type="color"].is-disabled:focus,
    input[type="color"].is-disabled:active,
    select[disabled]:focus,
    select[disabled]:active,
    select.is-disabled:focus,
    select.is-disabled:active,
    textarea[disabled]:focus,
    textarea[disabled]:active,
    textarea.is-disabled:focus,
    textarea.is-disabled:active,
    .field[disabled]:focus,
    .field[disabled]:active,
    .field.is-disabled:focus,
    .field.is-disabled:active {
      background-color: #d5edf8; }

/* line 106, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/modules/_forms.scss */
input[type="password"] {
  letter-spacing: 0.3em; }

/* line 111, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/modules/_forms.scss */
textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em; }

/* line 118, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/modules/_forms.scss */
select {
  -webkit-appearance: none;
  /* 1 */
  -moz-appearance: none;
  appearance: none;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAHCAYAAADXhRcnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOEZCMjYxMEYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOEZCMjYxMUYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4RkIyNjBFRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4RkIyNjBGRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Vxkp9gAAAI9JREFUeNpidHFxucHAwKAOxE+AmJmBMPgLxDJAfJMFSKwD4kqoAClgA+P///8ZXF1dPaCGcBKh6QcQB+3evXs7WDMIAA2QB1I7gFgDj0aQFz2BGh+AOEwwUaDAQyBlCMR7cGjcC5KHaQQBuM3IAOiKTiBVhiTUDdRUhq4Oq2aoAelAahIQ5wM1zsCmBiDAADhYMJXVZ9u9AAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: calc(100% - 8px) center; }

/* line 1, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/modules/_elements.scss */
.show-hide {
  font-weight: normal;
  font-size: .8em;
  text-transform: uppercase; }
  /* line 5, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/modules/_elements.scss */
  .show-hide-target {
    display: none;
    height: 0; }

/* line 12, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/modules/_elements.scss */
.thml-archive .wc-memberships-restriction-message {
  opacity: 0 !important; }

/* line 16, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/modules/_elements.scss */
.thml-archive:hover .wc-memberships-restriction-message {
  opacity: 1 !important; }

/* line 22, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/modules/_elements.scss */
.header-actions {
  float: right;
  margin: 6px 48px 0 0;
  font-size: .75em;
  text-transform: uppercase;
  letter-spacing: .08em; }
  /* line 29, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/modules/_elements.scss */
  .header-actions .default-btn {
    font-weight: bold; }

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

Stylesheet: Base Mobile Stylesheet

Be light and don't over style since everything here will be
loaded by mobile devices. You want to keep it as minimal as
possible. This is called at the top of the main stylsheet
and will be used across all viewports.

******************************************************************/
/*********************
GENERAL STYLES
*********************/
/* line 18, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
body {
  font-family: "Raleway", "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 100%;
  line-height: 1.5;
  color: #5c6b80;
  background-color: #eaedf2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/* for sites that are read right to left (i.e. hebrew) */
/* home page */
/* blog template page */
/* archive page */
/* date archive page */
/* replace the number to the corresponding page number */
/* search page */
/* search result page */
/* no results search page */
/* individual paged search (i.e. body.search-paged-3) */
/* 404 page */
/* single post page */
/* individual post page by id (i.e. body.postid-73) */
/* individual paged single (i.e. body.single-paged-3) */
/* attatchment page */
/* individual attatchment page (i.e. body.attachmentid-763) */
/* style mime type pages */
/* author page */
/* user nicename (i.e. body.author-samueladams) */
/* paged author archives (i.e. body.author-paged-4) for page 4 */
/* category page */
/* individual category page (i.e. body.category-6) */
/* replace the number to the corresponding page number */
/* tag page */
/* individual tag page (i.e. body.tag-news) */
/* replace the number to the corresponding page number */
/* custom page template page */
/* individual page template (i.e. body.page-template-contact-php */
/* replace the number to the corresponding page number */
/* parent page template */
/* child page template */
/* replace the number to the corresponding page number */
/* if user is logged in */
/* paged items like search results or archives */
/* individual paged (i.e. body.paged-3) */
/*********************
LAYOUT & GRID STYLES
*********************/
/* line 73, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
.wrap {
  width: 96%;
  margin: 0 auto; }

/*********************
LINK STYLES
*********************/
/* line 82, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
a, a:visited {
  color: #CC3333;
  font-weight: 500;
  /* on hover */
  /* on click */
  /* mobile tap color */ }
  /* line 87, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  a:hover, a:focus, a:visited:hover, a:visited:focus {
    color: #a72a2a; }
  /* line 97, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  a:link, a:visited:link {
    /*
		this highlights links on iPhones/iPads.
		so it basically works like the :hover selector
		for mobile devices.
		*/
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3); }

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
/* line 111, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  text-rendering: optimizelegibility;
  font-weight: 500;
  /*
	if you're going to use webfonts, be sure to check your weights
	http://css-tricks.com/watch-your-font-weight/
	*/
  /* removing text decoration from all headline links */ }
  /* line 120, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
    text-decoration: none; }

/* line 125, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
h1, .h1 {
  font-size: 2.5em;
  line-height: 1.333em; }

/* line 130, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
h2, .h2 {
  margin: 3.5em 0 1em;
  text-transform: uppercase;
  font-size: 1.2em;
  color: #561E2C; }

/* line 137, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
h3, .h3 {
  font-size: 1.125em;
  font-weight: bold; }

/* line 142, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
h4, .h4 {
  font-size: 1.1em;
  font-weight: 700; }

/* line 147, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
h5, .h5 {
  font-size: 0.846em;
  line-height: 2.09em;
  text-transform: uppercase;
  letter-spacing: 2px; }

/*********************
HEADER STYLES
*********************/
/* line 158, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
.header {
  /*background-color: $black;*/
  width: 100%; }

/* line 163, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
#logo {
  margin: 0.75em 0; }
  /* line 166, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  #logo img {
    margin-top: 0.5em;
    width: 108px; }
  /* line 171, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  #logo a {
    color: #fff; }

/*********************
NAVIGATION STYLES
*********************/
/*
all navs have a .nav class applied via
the wp_menu function; this is so we can
easily write one group of styles for
the navs on the site so our css is cleaner
and more scalable.
*/
/* line 188, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
#nav-and-tagline {
    width: 100%;
    position: absolute;
    top: 2em; }

/* line 192, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
.main-nav {
  display: none; }

/* line 196, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
#tagline {
  color: #d3cfb6;
  font-family: LibreBaskerville;
  font-size: 18px;
  font-weight: 400;
  text-align: right;
  margin: 0;
  text-align: center; }

/* line 207, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
ul.top-nav > li {
  position: initial; }
  /* line 210, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  ul.top-nav > li > a {
    text-transform: uppercase; }

/* line 216, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
.nav {
  border-bottom: 0;
  margin: 0;
  font: 500 12px / 24px 'Raleway', sans-serif;
  color: #000000;
  /* end .menu li */
  /* highlight current page */
  /* end current highlighters */ }
  /* line 222, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  .nav li {
    float: left;
    position: relative;
    /*
		so you really have to rethink your dropdowns for mobile.
		you don't want to have it expand too much because the
		screen is so small. How you manage your menu should
		depend on the project. Here's some great info on it:
		http://www.alistapart.com/articles/organizing-mobile/
		*/ }
    /* line 226, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
    .nav li a {
      display: block;
      color: #333333;
      text-decoration: none;
      padding: 0.75em;
      /*
			remember this is for mobile ONLY, so there's no need
			to even declare hover styles here, you can do it in
			the style.scss file where it's relevant. We want to
			keep this file as small as possible!
			*/ }
      /* line 238, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
      .nav li a:hover, .nav li a:focus {
        color: #CC3333; }
    /* line 247, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
    .nav li ul.level-0 {
      right: 0;
      width: 100%; }
      /* line 251, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
      .nav li ul.level-0 > li {
        float: right; }
        /* line 253, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
        .nav li ul.level-0 > li a {
          color: black; }
        /* line 256, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
        .nav li ul.level-0 > li a:hover {
          color: #CC3333;
          text-decoration: underline; }
    /* line 263, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
    .nav li ul.level-1 li {
      clear: both; }
      /* line 265, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
      .nav li ul.level-1 li a {
        font-weight: normal; }
    /* line 277, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
    .nav li ul.level-0 {
      margin-top: 5px !important; }
      /* line 282, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
      .nav li ul.level-0 li a {
        padding-left: 7px;
        color: black;
        font-weight: bold; }
    /* line 302, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
    .nav li ul.level-1 li {
      clear: both; }
      /* line 304, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
      .nav li ul.level-1 li a {
        font-weight: normal; }

/* end .nav */
/* line 323, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
.home.page .top-nav > li > a {
  color: white; }
  /* line 325, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  .home.page .top-nav > li > a:hover {
    color: #CC3333; }

/*********************
POSTS & CONTENT STYLES
*********************/
/* line 340, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
.hentry {
  /*background-color: $white;
			border-radius: 3px;
			border: 1px solid $border-color;*/
  margin-bottom: 1.5em; }
  /* line 351, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  .hentry footer {
    padding: 1.5em; }
    /* line 355, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
    .hentry footer p {
      margin: 0; }

/* end .hentry */
/* line 362, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
.single-title,
.page-title,
.entry-title {
  margin: 0; }

/* 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) */
/* post meta */
/* line 387, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
.byline {
  color: #9fa6b4;
  font-style: italic;
  margin: 0; }

/* entry content */
/* line 396, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
.entry-content {
  padding: 1.5em 1.5em 0;
  /*
			image alignment on a screen this size may be
			a bit difficult. It's set to start aligning
			and floating images at the next breakpoint,
			but it's up to you. Feel free to change it up.
			*/ }
  /* line 399, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  .entry-content p {
    margin: 0 0 1.5em; }
  /* line 424, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  .entry-content table {
    width: 100%;
    border: 1px solid #eaedf2;
    margin-bottom: 1.5em; }
    /* line 429, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
    .entry-content table caption {
      margin: 0 0 7px;
      font-size: 0.75em;
      color: #9fa6b4;
      text-transform: uppercase;
      letter-spacing: 1px; }
  /* line 438, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  .entry-content tr {
    border-bottom: 1px solid #eaedf2; }
    /* line 441, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
    .entry-content tr:nth-child(even) {
      background-color: #f8f9fa; }
  /* line 446, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  .entry-content td {
    padding: 7px;
    border-right: 1px solid #eaedf2; }
    /* line 450, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
    .entry-content td:last-child {
      border-right: 0; }
  /* line 455, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  .entry-content th {
    background-color: #f8f9fa;
    border-bottom: 1px solid #eaedf2;
    border-right: 1px solid #eaedf2; }
    /* line 460, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
    .entry-content th:last-child {
      border-right: 0; }
  /* line 465, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  .entry-content blockquote {
    font: 400 18px / 36px 'Libre Baskerville', serif;
    margin-left: 2.5em; }
    /* line 469, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
    .entry-content blockquote:before {
      content: '“';
      color: #e5e5e5;
      float: left;
      font-size: 5em;
      line-height: 1em;
      margin-left: -0.6em; }
    /* line 478, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
    .entry-content blockquote:after {
      content: '”';
      color: #e5e5e5;
      float: right;
      font-size: 5em;
      line-height: -1em; }
  /* line 492, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  .entry-content dd {
    margin-left: 0;
    font-size: 0.9em;
    color: #787878;
    margin-bottom: 1.5em; }
  /* line 499, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  .entry-content img {
    margin: 0 0 1.5em 0;
    max-width: 100%;
    height: auto; }
  /* line 515, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  .entry-content .size-auto,
  .entry-content .size-full,
  .entry-content .size-large,
  .entry-content .size-medium,
  .entry-content .size-thumbnail {
    max-width: 100%;
    height: auto; }
  /* line 524, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  .entry-content pre {
    background: #323944;
    color: #f8f9fa;
    font-size: 0.9em;
    padding: 1.5em;
    margin: 0 0 1.5em;
    border-radius: 3px; }

/* end .entry-content */
/* line 535, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px;
  /* images inside wp-caption */ }
  /* line 541, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  .wp-caption img {
    max-width: 100%;
    margin-bottom: 0;
    width: 100%; }
  /* line 547, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  .wp-caption p.wp-caption-text {
    font-size: 0.85em;
    margin: 4px 0 7px;
    text-align: center; }

/* end .wp-caption */
/* image gallery styles */
/* end .gallery */
/* gallery caption styles */
/* line 581, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
.tags {
  margin: 0; }

/* line 585, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
#carousel {
  padding: 0 55px; }
  /* line 587, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  #carousel li {
    padding: 0 0.75em;
    position: relative;
    display: inline-table;
    padding: 0 0.75em;
    text-align: left; }
  /* line 594, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  #carousel div,
  #carousel img,
  #carousel li {
    max-width: 62vw;
    white-space: normal; }

/* end #carousel */
/* line 603, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
figure {
  background-color: rgba(244, 244, 244, 0.15);
  width: 700px;
  height: 390px;
  border: 1px solid #FFF;
  margin: auto;
  vertical-align: middle;
  display: -ms-flex;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  /* line 614, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  figure button[name="play"] {
    width: 50px;
    height: 50px;
    background: #E5E5E5;
    border: none;
    border-radius: 100%;
    margin: auto;
    cursor: pointer; }
    /* line 623, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
    figure button[name="play"]:focus {
      outline: 0;
      border: 1px solid #82b0de;
      box-shadow: 0 0 0 3px rgba(62, 145, 229, 0.5); }
    /* line 629, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
    figure button[name="play"]::after {
      content: '';
      display: inline-block;
      position: relative;
      top: 1px;
      left: 3px;
      border-style: solid;
      border-width: 10px 0 10px 20px;
      border-color: transparent transparent transparent #000; }

/* end figure */
/******************************************************************
PAGE NAVI STYLES
******************************************************************/
/* line 646, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
.pagination,
.wp-prev-next {
  margin: 1.5em 0; }

/* line 650, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
.pagination {
  text-align: center; }
  /* line 653, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  .pagination ul {
    display: inline-block;
    background-color: #fff;
    white-space: nowrap;
    padding: 0;
    clear: both;
    border-radius: 3px; }
  /* line 662, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  .pagination li {
    padding: 0;
    margin: 0;
    float: left;
    display: inline;
    overflow: hidden;
    border-right: 1px solid #eaedf2; }
  /* line 671, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  .pagination a, .pagination span {
    margin: 0;
    text-decoration: none;
    padding: 0;
    line-height: 1em;
    font-size: 1em;
    font-weight: normal;
    padding: 0.75em;
    min-width: 1em;
    display: block;
    color: #2980b9; }
    /* line 683, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
    .pagination a:hover, .pagination a:focus, .pagination span:hover, .pagination span:focus {
      background-color: #2980b9;
      color: #fff; }
  /* line 689, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  .pagination .current {
    cursor: default;
    color: #5c6b80; }
    /* line 693, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
    .pagination .current:hover, .pagination .current:focus {
      background-color: #fff;
      color: #5c6b80; }

/* end .bones_page_navi */
/* fallback previous & next links */
/* line 706, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
.wp-prev-next .prev-link {
  float: left; }

/* line 710, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
.wp-prev-next .next-link {
  float: right; }

/* end .wp-prev-next */
/******************************************************************
COMMENT STYLES
******************************************************************/
/* h3 comment title */
/* line 721, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
#comments-title {
  padding: 0.75em;
  margin: 0;
  border-top: 1px solid #f8f9fa;
  /* number of comments span */ }

/* line 741, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
.commentlist {
  margin: 0;
  list-style-type: none; }

/* line 746, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
.comment {
  position: relative;
  clear: both;
  overflow: hidden;
  padding: 1.5em;
  border-bottom: 1px solid #f8f9fa;
  /* vcard */
  /* end .commentlist .vcard */
  /* end children */
  /* general comment classes */ }
  /* line 753, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  .comment .comment-author {
    padding: 7px;
    border: 0; }
  /* line 759, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  .comment .vcard {
    margin-left: 50px; }
    /* line 762, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
    .comment .vcard cite.fn {
      font-weight: 700;
      font-style: normal; }
    /* line 770, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
    .comment .vcard time {
      display: block;
      font-size: 0.9em;
      font-style: italic; }
      /* line 775, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
      .comment .vcard time a {
        color: #9fa6b4;
        text-decoration: none; }
        /* line 779, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
        .comment .vcard time a:hover {
          text-decoration: underline; }
    /* line 789, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
    .comment .vcard .avatar {
      position: absolute;
      left: 16px;
      border-radius: 50%; }
  /* line 797, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  .comment:last-child {
    margin-bottom: 0; }
  /* line 801, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  .comment .children {
    margin: 0;
    /* variations */
    /* change number for different depth */ }
  /* line 819, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  .comment[class*=depth-] {
    margin-top: 1.1em; }
  /* line 823, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  .comment.depth-1 {
    margin-left: 0;
    margin-top: 0; }
  /* line 828, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  .comment:not(.depth-1) {
    margin-top: 0;
    margin-left: 7px;
    padding: 7px; }
  /* line 841, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  .comment.odd {
    background-color: #fff; }
  /* line 844, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  .comment.even {
    background: #f8f9fa; }

/* comment meta */
/* comment content */
/* line 878, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
.comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em; }

/* end .commentlist .comment_content */
/* comment reply link */
/* line 887, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
.comment-reply-link {
  font-size: 0.9em;
  float: right; }

/* end .commentlist .comment-reply-link */
/* edit comment link */
/* line 899, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
.comment-edit-link {
  font-style: italic;
  margin: 0 7px;
  text-decoration: none;
  font-size: 0.9em; }

/******************************************************************
COMMENT FORM STYLES
******************************************************************/
/* line 912, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
.comment-respond {
  padding: 1.5em;
  border-top: 1px solid #f8f9fa; }

/* line 918, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
#reply-title {
  margin: 0; }

/* line 922, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
.logged-in-as {
  color: #9fa6b4;
  font-style: italic;
  margin: 0; }
  /* line 927, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  .logged-in-as a {
    color: #5c6b80; }

/* line 932, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
.comment-form-comment {
  margin: 1.5em 0 0.75em; }

/* line 936, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
.form-allowed-tags {
  padding: 1.5em;
  background-color: #f8f9fa;
  font-size: 0.9em; }

/* comment submit button */
/* line 943, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
#submit {
  float: right;
  font-size: 1em; }

/* comment form title */
/* line 950, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
#comment-form-title {
  margin: 0 0 1.1em; }

/* cancel comment reply link */
/* logged in comments */
/* allowed tags */
/* line 963, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
#allowed_tags {
  margin: 1.5em 10px 0.7335em 0; }

/* no comments */
/* line 968, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
.nocomments {
  margin: 0 20px 1.1em; }

/*********************
SIDEBARS & ASIDES
*********************/
/* line 984, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
.widget ul li {
  /* deep nesting */ }

/* line 1001, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
.no-widgets {
  background-color: #fff;
  padding: 1.5em;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-bottom: 1.5em; }

/* line 1010, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
.gtlt {
  display: block;
  color: #999999;
  font: 100 72px / 36px Interstate;
  line-height: 417px;
  padding: 0 0.2em;
  position: absolute;
  z-index: 1;
  background-color: white; }
  /* line 1020, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  .gtlt:hover {
    background-color: #efefef;
    cursor: pointer;
    color: #cc3333; }

/**********************
SPECIFIC
**********************/
/* line 1031, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
li.tribe-events-list-widget-events {
  width: 100%;
  min-height: 126px; }
  /* line 1035, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  li.tribe-events-list-widget-events h4 {
    width: 80%; }

/* line 1040, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
p.HomeEventDetails {
  right: 18px; }

/* line 1044, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
div.HomeEventDate {
  top: 13px; }

/*********************
FOOTER STYLES
*********************/
/* line 1052, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
.footer {
  clear: both;
  background-color: #E5E5E5;
  color: #333333;
  border-top: 3px solid #cc3333;
  padding: 1em; }
  /* line 1059, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  .footer h4 {
    font-weight: normal;
    color: #cc3333;
    margin: 0; }
  /* line 1064, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  .footer p {
    margin: 0.25em; }
  /* line 1068, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  .footer a {
    color: #000; }
  /* line 1072, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  .footer .footer-social {
    max-width: 224px;
    margin: 0.5em auto; }
    /* line 1076, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
    .footer .footer-social a {
      color: #b2b2b2;
      font-size: 1.25em;
      padding: 0; }
    /* line 1082, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
    .footer .footer-social i {
      padding: 0.5em; }
    /* line 1086, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
    .footer .footer-social .footer-social li {
      float: left; }

/* line 1094, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
#footer-table > li {
  display: inline-table;
  vertical-align: top;
  padding: 1em 3%; }

/* line 1102, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
li#footer-logo-container {
  padding-left: calc(50% - 45px); }

/*
	if you checked out the link above:
	http://www.alistapart.com/articles/organizing-mobile/
	you'll want to style the footer nav
	a bit more in-depth. Remember to keep
	it simple because you'll have to
	override these styles for the desktop
	view.
	*/
/* line 1115, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
.footer-links {
  margin: 0 auto;
  max-width: 469px;
  font-size: 14px; }
  /* line 1120, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  .footer-links li {
    float: none; }
  /* line 1124, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_base.scss */
  .footer-links a {
    padding: 0;
    color: #000; }

/* end .footer-links */
/*********************
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 (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.

******************************************************************/
  /*
IMPORTANT NOTE ABOUT SASS 3.3 & UP
You can't use @extend within media queries
anymore, so just be aware that if you drop
them in here, they won't work.
*/
  /*********************
NAVIGATION STYLES
*********************/
  /* .menu is clearfixed inside mixins.scss */
  /* line 33, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_481up.scss */
  .menu {
    /* end .menu ul */ }
    /* line 34, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_481up.scss */
    .menu ul {
      /* end .menu ul li */
      /* highlight current page */
      /* end current highlighters */ }
      /* line 35, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_481up.scss */
      .menu ul li {
        /*
				plan your menus and drop-downs wisely.
				*/ }
        /* line 36, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_481up.scss */
        .menu ul li a {
          /*
					you can use hover styles here even though this size
					has the possibility of being a mobile device.
					*/ }
  /* end .menu */
  /*********************
POSTS & CONTENT STYLES
*********************/
  /* entry content */
  /* line 81, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_481up.scss */
  .entry-content {
    /* at this larger size, we can start to align images */ }
    /* line 85, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_481up.scss */
    .entry-content .alignleft, .entry-content img.alignleft {
      margin-right: 1.5em;
      display: inline;
      float: left; }
    /* line 90, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_481up.scss */
    .entry-content .alignright, .entry-content img.alignright {
      margin-left: 1.5em;
      display: inline;
      float: right; }
    /* line 95, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_481up.scss */
    .entry-content .aligncenter, .entry-content img.aligncenter {
      margin-right: auto;
      margin-left: auto;
      display: block;
      clear: both; }
  /* end .entry-content */
  /*********************
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 (min-width: 870px) {
  /******************************************************************
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!

******************************************************************/
  /*********************
GENERAL STYLES
*********************/
  /*********************
LAYOUT & GRID STYLES
*********************/
  /* line 26, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
  .wrap {
    width: 850px; }
  /* line 30, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
  #content {
    margin-top: 141px;
    min-height: calc(100vh - 431px); }
  /* line 34, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
  #heroText,
  #tagline {
    display: block; }
  /*********************
HEADER STYLES
*********************/
  /*********************
NAVIGATION STYLES
*********************/
  /* line 51, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
  #nav-and-tagline {
    top: 6em; }
  /* line 57, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
  .nav {
    border: 0;
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */ }
    /* line 59, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
    .nav ul {
      background: #cccccc;
      margin-top: 0; }
      /* line 63, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
      .home.page .nav ul {
        background: rgba(204, 204, 204, 0.9);
        margin-top: 0; }
      /* line 68, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
      .nav ul.level-0 {
        padding: 2em 3em 3em 0;
        min-height: 175px;
        margin-top: 5px; }
    /* line 74, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
    .nav li {
      /*float: left;
		position: relative;*/
      /*
		plan your menus and drop-downs wisely.
		*/
      /* showing sub-menus */ }
      /* line 78, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
      .nav li a {
        border-bottom: 0;
        /*
			you can use hover styles here even though this size
			has the possibility of being a mobile device.
			*/ }
        /* line 85, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
        .nav li a:hover, .nav li a:focus {
          /*color: $white;
				text-decoration: underline;*/ }
      /* line 97, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
      .nav li ul.level-0 {
        position: absolute;
        visibility: hidden;
        z-index: 8999;
        /* highlight sub-menu current page */ }
        /* line 102, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
        .nav li ul.level-0 li {
          /*
				if you need to go deeper, go nuts
				just remember deeper menus suck
				for usability. k, bai.
				*/ }
          /* line 116, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
          .nav li ul.level-0 li:last-child a {
            border-bottom: 0; }
          /* line 126, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
          .nav li ul.level-0 li ul {
            top: 0;
            left: 100%; }
      /* line 141, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
      .nav li:hover > ul {
        top: auto;
        visibility: visible; }
    /* line 152, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
    .nav li.current-menu-item > a,
    .nav li.current_page_item > a,
    .nav li.current_page_ancestor > a {
      color: #cc3333; }
  /* end .nav */
  /* line 159, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
  .friendsList > li.current_page_item > a {
    text-decoration: underline;
    font-weight: bold; }
  /* line 164, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
  #footer-table > li {
    padding: 1em 3em; }
  /* line 167, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
  li#footer-logo-container {
    padding: 1em 3em; }
  /* line 170, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
  #tagline {
    font-size: 26px;
    margin: inherit;
    text-align: right;
    clear: right; }
  /* line 178, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
  .main-nav {
    display: block;
    float: right;
    margin-right: 10px;
    max-width:80%; }
  /* line 184, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
  .top-nav > li:hover {
    border-bottom: 5px solid #cc3333; }
  /* line 188, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
  .header {
    /*background-color: #9a9da2;*/
    position: absolute;
    top: 0;
    z-index: 2; }
  /* line 195, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
  #logo {
    margin: 0.75em 0;
    display: inline;
    margin-left: 10px; 
    width:100px;}
  /*********************
SPECIFIC
**********************/
  /* line 205, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
  .quicklinksContainer {
    width: 775px; }
  /*********************
SIDEBARS & ASIDES
*********************/
  /* line 214, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
  .sidebar {
    margin-top: 2.2em; }
  /* line 218, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
  .widgettitle {
    color: #561E2C;
    font: 500 24px 'Raleway', sans-serif;
    margin-bottom: 1em;
    text-align: center;
    text-transform: uppercase; }
  /* line 226, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
  .widget {
    padding: 0;
    margin: 2.2em 0; }
    /* line 231, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
    .widget ul li {
      /*margin-bottom: 0.75em;*/
      /* deep nesting */ }
      /* line 239, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
      .widget ul li ul {
        /*margin-top: 0.75em;
					padding-left: 1em;*/ }
  /* line 246, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
  div.navFromEvent {
    margin-top: 11em; }
  /* links widget */
  /* meta widget */
  /* pages widget */
  /* recent-posts widget */
  /* archives widget */
  /* tag-cloud widget */
  /* calendar widget */
  /* category widget */
  /* recent-comments widget */
  /* search widget */
  /* line 330, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
  .screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden; }
    /* line 336, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
    .screen-reader-text:focus {
      background-color: #f1f1f1;
      border-radius: 3px;
      box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
      clip: auto !important;
      color: #21759b;
      display: block;
      font-size: 14px;
      font-size: 0.875rem;
      font-weight: bold;
      height: auto;
      left: 5px;
      line-height: normal;
      padding: 15px 23px 14px;
      text-decoration: none;
      top: 5px;
      width: auto;
      z-index: 100000;
      /* Above WP toolbar. */ }
  /* text widget */
  /**********************
SPECIFIC
**********************/
  /* line 367, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
  li.tribe-events-list-widget-events {
    width: 210px;
    height: 210px; }
    /* line 371, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
    li.tribe-events-list-widget-events h4 {
      width: auto; }
  /* line 376, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
  div.HomeEventDate {
    top: auto; }
  /* line 379, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
  p.HomeEventDetails {
    right: auto; }
  /*********************
FOOTER STYLES
*********************/
  /*
you'll probably need to do quite a bit
of overriding here if you styled them for
mobile. Make sure to double check these!
*/
  /* line 392, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
  .footer {
    padding: 2em; }
  /* line 397, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_768up.scss */
  .footer-links ul li {
    /*
			be careful with the depth of your menus.
			it's very rare to have multi-depth menus in
			the footer.
			*/ }
  /* end .footer-links */ }

/*********************
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 (min-width: 1080px) {
  /******************************************************************
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.

******************************************************************/
  /* line 12, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_1030up.scss */
  .wrap {
    width: 1080px; }
  /* line 15, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_1030up.scss */
  .nav {
    font-size: 14px; }
  /* line 18, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_1030up.scss */
  #logo {
    margin-left: 3.4%; }
    /* line 21, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_1030up.scss */
    #logo img {
      width: 150px; }
  /* line 25, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_1030up.scss */
  #nav-and-tagline {
    margin-right: 3.4%; }
  /* line 39, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_1030up.scss */
  .nav li ul.level-0 li a {
    padding-left: 30px; }
  /* line 48, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/breakpoints/_1030up.scss */
  #carousel {
    padding: 0; } }

/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1240px) {
  /******************************************************************
Site Name: 
Author: 

Stylesheet: Super Large Monitor Stylesheet

You can add some advanced styles here if you like. This kicks in
on larger screens.

******************************************************************/ }

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

******************************************************************/
  /* line 13, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_print.scss */
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    -webkit-filter: none !important;
            filter: none !important;
    -ms-filter: none !important; }
  /* line 21, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_print.scss */
  body {
    background: white; }
  /* line 25, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_print.scss */
  a, a:visited {
    color: #444 !important;
    text-decoration: underline; }
    /* line 30, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_print.scss */
    a:after, a:visited:after {
      content: " (" attr(href) ")"; }
    /* line 35, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_print.scss */
    a abbr[title]:after, a:visited abbr[title]:after {
      content: " (" attr(title) ")"; }
  /* line 40, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_print.scss */
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""; }
  /* line 46, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_print.scss */
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  /* line 51, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_print.scss */
  thead {
    display: table-header-group; }
  /* line 55, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_print.scss */
  tr, img {
    page-break-inside: avoid; }
  /* line 59, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_print.scss */
  img {
    max-width: 100% !important; }
  @page {
    margin: 0.5cm; }
  /* line 67, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_print.scss */
  p, h2, h3 {
    orphans: 3;
    widows: 3; }
  /* line 72, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_print.scss */
  h2,
  h3 {
    page-break-after: avoid; }
  /* line 78, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_print.scss */
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none; }
  /* line 86, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/partials/_print.scss */
  .hide-print {
    display: none !important; } }

/* line 2, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_mediaelement.scss */
.wp-playlist.wp-audio-playlist {
  padding: 0;
  border: 0; }
  /* line 7, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_mediaelement.scss */
  .wp-playlist.wp-audio-playlist .wp-playlist-current-item img {
    display: none; }

/* line 15, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_mediaelement.scss */
.wp-audio-shortcode {
  margin: 12px 0 18px; }

/* line 1, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_tribe-events.scss */
.tribe-events-button {
  color: white !important;
  padding: 6px 12px;
  line-height: 1.0em;
  text-decoration: none;
  margin-right: 12px; }

/* line 10, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_tribe-events.scss */
.tribe-events-calendar td h3 {
  line-height: 1.5;
  font-size: 91.7%; }

/* line 14, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_tribe-events.scss */
.tribe-events-calendar td a {
  font-size: 100%; }

/* line 20, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_tribe-events.scss */
.tribe-events-tickets tr {
  border-top: 1px solid #DDD; }

/* line 23, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_tribe-events.scss */
.tribe-events-tickets .tribe-tickets-remaining {
  display: none; }

/* line 27, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_tribe-events.scss */
.tribe-event-tickets-plus-meta input[type="text"],
.tribe-event-tickets-plus-meta input[type="email"],
.tribe-event-tickets-plus-meta input[type="url"],
.tribe-event-tickets-plus-meta input[type="password"],
.tribe-event-tickets-plus-meta textarea {
  background: white;
  margin-top: .5em;
  width: 50%;
  border: 1px solid #DDD;
  width: 100%; }

/* line 40, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_tribe-events.scss */
.tribe-events-tickets .tickets_price {
  white-space: nowrap; }
  /* line 42, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_tribe-events.scss */
  .tribe-events-tickets .tickets_price del {
    opacity: .5;
    font-weight: normal; }

/* line 49, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_tribe-events.scss */
.tribe-events-meta-group-organizer .presenterHead {
  margin-bottom: 1.5em; }
  /* line 52, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_tribe-events.scss */
  .tribe-events-meta-group-organizer .presenterHead img {
    height: 150px;
    width: auto;
    margin: 0 1.5em 0 0; }
  /* line 58, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_tribe-events.scss */
  .tribe-events-meta-group-organizer .presenterHead h2 {
    color: #663333;
    font: 600 16px / 24px 'Raleway', sans-serif;
    margin: 0;
    -webkit-align-self: flex-end;
        -ms-flex-item-align: end;
            align-self: flex-end; }

/* line 66, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_tribe-events.scss */
.tribe-events-meta-group-organizer .presenterInfo {
  text-align: justify;
  margin-bottom: 1.5em; }
  /* line 69, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_tribe-events.scss */
  .tribe-events-meta-group-organizer .presenterInfo h2 {
    -webkit-align-self: flex-end;
        -ms-flex-item-align: end;
            align-self: flex-end; }

/* line 74, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_tribe-events.scss */
.tribe-events-meta-group-organizer .presenterAbout.t-all .presenterHead {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

/* line 78, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_tribe-events.scss */
.tribe-events-meta-group-organizer .presenterAbout.t-all .presenterInfo {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 1.5em;
     -moz-column-gap: 1.5em;
          column-gap: 1.5em; }

/* line 4, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_woocommerce.scss */
.woocommerce .cart .actions .coupon {
  float: left; }
  /* line 6, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_woocommerce.scss */
  .woocommerce .cart .actions .coupon label[for="coupon_code"] {
    display: none; }
  /* line 9, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_woocommerce.scss */
  .woocommerce .cart .actions .coupon .input-text {
    width: auto; }

/* line 13, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_woocommerce.scss */
.woocommerce .cart .actions input[name="update_cart"] {
  float: right; }

/* line 19, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_woocommerce.scss */
.woocommerce .cart td.product-name dl.variation dd {
  margin: 0; }

/* line 25, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_woocommerce.scss */
.woocommerce input {
  max-width: 100%; }

/* line 31, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_woocommerce.scss */
.marketing_fields label:not(.radio) {
  display: block; }

/* line 34, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_woocommerce.scss */
.marketing_fields label {
  margin-right: 16px; }

/* line 37, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_woocommerce.scss */
.marketing_fields .input-radio {
  margin-right: 8px; }

/* line 42, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_woocommerce.scss */
.woocommerce-tabs {
  clear: both; }

/* line 47, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_woocommerce.scss */
.nyp-steps {
  margin-top: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  /* line 54, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_woocommerce.scss */
  .nyp-steps label {
    font-weight: normal;
    line-height: 1em;
    margin-bottom: 12px;
    margin-right: 12px;
    padding: 0 !important;
    white-space: nowrap;
    min-width: calc(15% - 12px); }
    /* line 63, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_woocommerce.scss */
    .nyp-steps label[for="val-other"] {
      width: 100%; }
      /* line 66, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_woocommerce.scss */
      .nyp-steps label[for="val-other"] input[type="text"] {
        height: auto;
        display: inline-block;
        padding: 4px 8px;
        margin: 0 0 0 8px;
        background-color: white;
        border: 1px solid #eaedf2;
        width: auto;
        -webkit-box-flex: 0;
        -webkit-flex: 0 1 auto;
            -ms-flex: 0 1 auto;
                flex: 0 1 auto; }
  /* line 79, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_woocommerce.scss */
  .nyp-steps input[type="radio"] {
    margin: 0 4px; }

/* line 83, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_woocommerce.scss */
.nyp-billing-period {
  display: none; }

/* line 87, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_woocommerce.scss */
.nyp-period-check {
  margin-top: 12px; }
  /* line 90, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_woocommerce.scss */
  .nyp-period-check .nyp-period-total {
    float: right;
    margin-right: 32px;
    margin-top: -.25em; }

/* line 97, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_woocommerce.scss */
.nyp-period-total {
  font-weight: bold;
  font-size: 1.5em; }

/* line 102, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_woocommerce.scss */
.nyp-donations {
  /*
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
*/ }
  /* line 110, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_woocommerce.scss */
  .nyp-donations .nyp-input {
    margin: 12px 12px 0 0; }
  /* line 114, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_woocommerce.scss */
  .nyp-donations .subscription-details {
    white-space: nowrap;
    /*
		flex: 1 0 auto;
		margin-top: 12px;
*/ }

/* line 122, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_woocommerce.scss */
.member-benefits h2 {
  margin-top: 16px; }

/* line 125, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_woocommerce.scss */
.modal-popup {
  display: none; }

/* line 131, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_woocommerce.scss */
.woocommerce-account .woocommerce-MyAccount-content {
  width: 73%;
  overflow: hidden; }
  /* line 135, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_woocommerce.scss */
  .woocommerce-account .woocommerce-MyAccount-content h2:first-child {
    margin-top: 0; }

/* line 139, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_woocommerce.scss */
.woocommerce-account .woocommerce-MyAccount-navigation {
  width: 25%; }
  /* line 141, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_woocommerce.scss */
  .woocommerce-account .woocommerce-MyAccount-navigation-link {
    border-top: 1px solid #DDD;
    text-transform: uppercase;
    letter-spacing: .08em; }
    /* line 146, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_woocommerce.scss */
    .woocommerce-account .woocommerce-MyAccount-navigation-link a {
      color: #5c6b80;
      display: block;
      padding: 12px 0;
      text-decoration: none; }
    /* line 153, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_woocommerce.scss */
    .woocommerce-account .woocommerce-MyAccount-navigation-link.is-active a, .woocommerce-account .woocommerce-MyAccount-navigation-link a:hover {
      color: #CC3333; }

/* line 163, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_woocommerce.scss */
.product_cat-donations .variations .reset_variations {
  display: none !important; }

/* line 169, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_woocommerce.scss */
.product_cat-donations .nyp label {
  /*
			float: left;
			line-height: 40px;
*/ }

/* line 175, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_woocommerce.scss */
.product_cat-donations .nyp > div:not(.woocommerce-nyp-message) {
  /*
			float: right;
			width: 30%;
			text-align: center;
			
			input {
				margin: 0;
			}
*/ }

/* line 186, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_woocommerce.scss */
.product_cat-donations .nyp .subscription-details {
  font-weight: bold;
  letter-spacing: .04em;
  margin-left: .5em;
  opacity: .75;
  text-transform: uppercase; }

/* line 196, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_woocommerce.scss */
.product_cat-donations .woocommerce-variation {
  display: none !important; }

/* line 1, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_membership.scss */
section.membership-card {
  width: 700px;
  height: 400px;
  margin: 0 auto;
  position: relative;
  border: 6px solid #7C0F16; }
  /* line 8, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_membership.scss */
  section.membership-card:after, section.membership-card:before {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20; }
  /* line 16, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_membership.scss */
  section.membership-card:before {
    border: 6px solid #7C0F16; }
  /* line 20, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_membership.scss */
  section.membership-card:after {
    border: 2px solid #FDE1BE;
    z-index: 21; }
  /* line 25, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_membership.scss */
  section.membership-card .member-data {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 0;
    z-index: 8; }
    /* line 32, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_membership.scss */
    section.membership-card .member-data h2 {
      font-family: LibreBaskerville, Georgia, serif;
      font-size: 18pt;
      font-weight: bold;
      color: #7C0F16; }
    /* line 38, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_membership.scss */
    section.membership-card .member-data h3 {
      font-size: 14pt;
      font-weight: normal;
      color: #666;
      margin: 0; }
      /* line 44, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_membership.scss */
      section.membership-card .member-data h3 strong {
        font-size: .67em;
        line-height: 1.25em;
        text-transform: uppercase;
        display: inline-block;
        margin-right: .33em; }
      /* line 52, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_membership.scss */
      section.membership-card .member-data h3 span {
        color: #000; }
    /* line 56, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_membership.scss */
    section.membership-card .member-data h4 {
      color: #7C0F16;
      font-family: LibreBaskerville, Georgia, serif;
      font-size: 10pt;
      font-style: italic;
      font-weight: normal;
      margin: 0;
      margin-top: 12px;
      text-align: left;
      z-index: 10; }
  /* line 69, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_membership.scss */
  section.membership-card img {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    z-index: 9; }
    /* line 75, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_membership.scss */
    section.membership-card img.card-img {
      top: 6px;
      right: 6px;
      bottom: 6px;
      left: auto;
      width: auto;
      height: calc(100% - 12px); }
    /* line 84, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_membership.scss */
    section.membership-card img.card-logo {
      position: absolute;
      top: 18px;
      left: 18px;
      width: 200px; }
  @media print {
    /* line 1, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_membership.scss */
    section.membership-card {
      width: 3.5in;
      height: 2in;
      border: 4px solid #7C0F16; }
      /* line 97, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_membership.scss */
      section.membership-card:before {
        border: 3px solid #7C0F16; }
      /* line 101, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_membership.scss */
      section.membership-card:after {
        border: 1px solid #FDE1BE; }
      /* line 105, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_membership.scss */
      section.membership-card .member-data {
        left: .125in;
        bottom: .125in; }
        /* line 108, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_membership.scss */
        section.membership-card .member-data h2 {
          font-size: 10pt;
          color: #7C0F16 !important; }
        /* line 112, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_membership.scss */
        section.membership-card .member-data h3 {
          color: #666 !important;
          font-size: 7pt; }
        /* line 118, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_membership.scss */
        section.membership-card .member-data h4 {
          color: #7C0F16 !important;
          font-size: 4.5pt;
          margin-top: .5em; }
      /* line 125, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_membership.scss */
      section.membership-card img.card-img {
        top: 0;
        right: 0;
        bottom: 0;
        height: 100%; }
      /* line 132, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_membership.scss */
      section.membership-card img.card-logo {
        top: .125in;
        left: .125in;
        width: .8in; } }

/* line 144, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_membership.scss */
.membership-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap; }

/* line 149, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_membership.scss */
.membership-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  margin-bottom: 3em; }

/* line 155, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_membership.scss */
.membership-image img {
  margin-bottom: 0; }

/* line 159, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_membership.scss */
.membership-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: column nowrap;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  padding: 1em 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center; }
  /* line 165, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_membership.scss */
  .membership-info > * {
    margin: .25em 0 !important; }
  /* line 169, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_membership.scss */
  .membership-info p:first-of-type {
    -webkit-box-flex: 1;
    -webkit-flex: 1 2 auto;
        -ms-flex: 1 2 auto;
            flex: 1 2 auto; }
  /* line 173, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_membership.scss */
  .membership-info p:empty {
    display: none; }

/* line 2, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_ninja-forms.scss */
.ninja-forms-form-wrap input,
.ninja-forms-form-wrap select,
.ninja-forms-form-wrap textarea {
  min-height: 40px; }

/* line 9, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_ninja-forms.scss */
.nf-product-addon-totals {
  display: none !important; }

/* line 1, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
ul.vcalendar {
  margin-left: 5px; }

/* line 5, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
li.tribe-events-list-widget-events {
  float: left;
  position: relative;
  padding: 22px 25px 20px 22px;
  background-color: #E5E5E5;
  border: 1px solid #E5E5E5;
  border-radius: 0;
  margin: 0 5px 5px 0;
  text-align: left; }

/* line 16, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
li.tribe-events-list-widget-events:hover {
  border-color: #000000; }

/* line 20, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
li.tribe-events-list-widget-events h4 {
  font-weight: normal;
  font-size: 0.95em; }

/* line 25, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
li.tribe-events-list-widget-events a {
  color: #000000;
  text-decoration: none; }

/* line 30, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
li.tribe-events-list-widget-events a:hover {
  color: #000000; }

/* line 34, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
p.HomeEventDetails {
  position: absolute;
  bottom: 7px;
  text-transform: uppercase;
  font-size: 0.6em;
  font-weight: bold; }

/* line 42, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
p.HomeEventDetails:hover {
  color: rgba(204, 51, 51, 0.8); }

/* line 46, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
div.HomeEventDate {
  position: absolute;
  bottom: 13px;
  right: 18px; }

/* line 54, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
span.HomeEventDay,
.eventDay {
  font: 700 30px / 30px 'Libre Baskerville', serif;
  border-bottom: 5px solid rgba(204, 51, 51, 0.8); }

/* line 60, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
span.eventMonth {
  text-transform: uppercase;
  font: 700 15px / 36px 'Raleway', sans-serif;
  line-height: 15px; }

/* line 66, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
div.eventDate {
  background-color: #f0f0f0;
  width: 80px;
  height: 80px;
  padding: 6px 0 0 22px;
  margin: 0 21px 21px 0;
  display: inline-table; }

/* line 75, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
.eventMeta p {
  margin: 0;
  margin-top: 0.5em;
  color: #663333;
  font: 500 18px / 30px 'Raleway', sans-serif; }

/* line 82, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
p.tribe-events-widget-link {
  padding: 3.5em 0 4.5em;
  clear: left; }

/* line 87, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
p.tribe-events-widget-link a {
  color: #660000;
  text-transform: uppercase;
  text-decoration: none; }

/* line 93, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
p.tribe-events-widget-link a:hover {
  text-decoration: underline; }

/* line 97, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
ul#HomeCalendar li {
  display: inline-block;
  background-color: #fff;
  color: #cc3333;
  border: 1px solid #cc3333;
  height: 40px;
  width: 230px;
  font-size: 18px;
  line-height: 40px;
  margin-right: -1px; }

/* line 109, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
ul#HomeCalendar li.CalActive {
  background-color: #cc3333;
  color: #fff; }

/* line 114, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
ul#HomeCalendar {
  margin-bottom: -1px; }

/* line 118, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
div.quicklinkContainer {
  background-repeat: no-repeat;
  max-width: 400px;
  max-height: 400px;
  position: relative; }

/* line 125, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
a div.quicklinkContainer {
  color: #fff;
  text-decoration: none; }

/* line 130, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
div.quicklinkContainer h5 {
  text-transform: none;
  position: absolute;
  margin: 0;
  font-size: 1em; }

/* line 137, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
ul.quicklinks {
  display: inline-block;
  vertical-align: top; }

/* line 142, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
.quicklinks li {
  vertical-align: top;
  margin: 2px; }

/* line 147, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
.quicklinksLeft li {
  float: right; }

/* line 151, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
button.whiteredButton {
  background-color: #FFF;
  border: 2px solid #cc3333;
  color: #cc3333;
  height: 50px;
  width: 240px;
  margin-top: 2em; }

/* line 160, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
.roundBlackBut {
  border-radius: 50%;
  width: 2.25em !important;
  line-height: 2.25em !important;
  background-color: #000;
  color: #fff;
  border: none; }

/* line 169, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
p.carouselPretext {
  color: #000000;
  font: 400 14px 'Raleway', sans-serif;
  text-transform: uppercase;
  margin: 0;
  margin-top: 1.5em; }

/* line 177, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
.carouselTitle {
  color: #cc3333;
  font: 400 22px 'Libre Baskerville', 'serif';
  margin: 0; }

/* line 183, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
p.carouselSubtext,
p.carouselDateLoc {
  color: #000000;
  font: 400 14px / 24px 'Raleway', sans-serif;
  margin: 0; }

/* line 190, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
p.carouselDateLoc {
  text-transform: uppercase; }

/* line 194, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
#carousel a {
  text-decoration: none; }

/* line 198, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
#carouselContainer {
  overflow: hidden;
  height: 417px;
  max-width: 984px;
  width: 100%;
  margin: 0 auto; }

/* line 206, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
#carouselInset {
  overflow-x: scroll;
  overflow-y: hidden;
  max-width: 984px;
  width: 100%;
  height: 434px;
  position: relative; }

/* line 215, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
.kgvid_video_meta {
  background-color: transparent;
  text-align: center;
  margin-top: 3em;
  overflow: inherit; }

/* line 222, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
.kgvid_title {
  font-size: 26pt;
  height: inherit;
  font-family: serif; }

/* line 228, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
.curtains li.white {
  background-color: white; }

/* line 232, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
.curtains li.grey {
  background-color: #E5E5E5; }

/* line 236, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
h1.tribe-events-single-event-title,
h1.single-books-title {
  font: 400 40px 'Raleway', sans-serif;
  color: #cc3333;
  margin: 0.75em 0; }

/* line 243, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
h1.single-books-title {
  margin-bottom: 0.25em; }

/* line 247, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
p.single-books-subtitle {
  font: 300 30px 'Raleway', sans-serif;
  margin-top: 0;
  margin-bottom: 0.5em; }

/* line 253, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
p.presenterName {
  color: #212629;
  font: 600 22.35px 'Raleway', sans-serif;
  margin: 0; }

/* line 259, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
p.single-books-contributors {
  color: #333333;
  font: 500 22.35px / 29.799px 'Raleway', sans-serif;
  margin: 0; }

/* line 265, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
p.organizerName {
  font: 400 22.35px / 32.282px 'Raleway', sans-serif;
  margin: 0;
  margin-top: 0.25em; }

/* line 271, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
.single-tribe_events .tribe-events-event-image {
  text-align: right; }

/* line 275, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
.single-tribe_events .tribe-events-event-image img {
  width: 650px;
  height: auto; }

/* line 280, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
div.eventMeta {
  display: inline-table; }

/* line 284, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
div.navFromEvent {
  float: right;
  padding: 20px 50px; }

/* line 289, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
div.navFromEvent a {
  color: #333333;
  font: 600 14px / 14px 'Raleway', sans-serif;
  color: #333333;
  text-decoration: none;
  margin: 0 1em; }

/* line 297, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
div.navFromEvent .fa {
  font-size: 30px;
  vertical-align: bottom; }

/* line 302, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
div.navFromEvent .fa-twitter,
div.navFromEvent .fa-facebook {
  color: #b2b2b2; }

/* line 307, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
.fa-twitter:hover,
div.navFromEvent .fa-twitter:hover {
  color: #00aced; }

/* line 312, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
.fa-facebook:hover,
div.navFromEvent .fa-facebook:hover {
  color: #3b5998; }

/* line 317, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
.fa-youtube:hover {
  color: #bb0000; }

/* line 321, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
.fa-pinterest:hover {
  color: #cb2027; }

/* line 325, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
.fa-yelp:hover {
  color: #c41200; }

/* line 329, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
.fa-foursquare:hover {
  color: #0072b1; }

/* line 333, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
div.tribe-events-schedule {
  margin-top: 2em; }

/* line 339, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
ul.books-nav {
  padding-bottom: 36px;
  border-bottom: 1px solid #333333; }

/* line 344, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
.books-nav li.current-menu-item a {
  color: #cc3333; }

/* line 348, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
div.books-description {
  padding: 1.5em 0; }

/* line 352, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
.books-nav li a {
  color: #333333;
  font: 400 14px / 24px 'Raleway', sans-serif;
  padding: 0;
  margin-right: 1.5em; }

/* line 359, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
div.slideImage {
  width: 699px;
  height: 400px;
  position: relative; }

/* line 365, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
li.slideTop,
li.slideBottom {
  display: inline-table;
  margin: 0; }

/* line 371, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
li.slideBottom {
  width: 700px;
  white-space: normal; }

/* line 376, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
p.slide-caption {
  text-align: center;
  margin: 0;
  color: white; }

/* line 382, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
div.slide-caption-container {
  position: absolute;
  bottom: 0;
  height: 40px;
  width: 100%; }

/* line 389, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
#slidesContainer {
  overflow: hidden;
  /*height:417px;*/
  width: 100%;
  margin: 0 auto;
  position: relative; }

/* line 398, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
#slidesInset {
  overflow-x: scroll;
  overflow-y: hidden;
  width: 100%;
  /*height:434px;*/
  position: relative; }

/* line 407, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
div.slideLower {
  white-space: normal;
  width: 700px;
  padding: 0 2em;
  padding-bottom: 3em; }

/* line 414, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
div#slideLeft {
  width: calc(50% - 355px);
  height: 400px;
  position: absolute;
  left: 0;
  text-align: right;
  background-color: rgba(0, 0, 0, 0.5); }

/* line 423, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
div#slideRight {
  width: calc(50% - 355px);
  height: 400px;
  position: absolute;
  right: 0;
  text-align: left;
  background-color: rgba(0, 0, 0, 0.5); }

/* line 432, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
li.firstSlide {
  margin-left: calc(50% - 1054px); }

/* line 439, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
div.veil {
  position: absolute;
  background-color: white;
  height: calc(100% - 400px);
  width: calc(50% - 355px);
  bottom: 0; }

/* line 447, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
#veilRight {
  right: 0; }

/* line 451, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
#veilLeft {
  left: 0; }

/* line 455, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
.bigRedButt {
  width: 99px;
  height: 35px;
  border: 1px solid #cc3333;
  color: #cc3333;
  background-color: white; }

/* line 463, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
.bigRedButt:hover {
  color: white;
  background-color: #cc3333; }

/* line 468, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
.bigRedButt:active,
.bigRedButt:focus {
  outline: none; }

/* line 473, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
div.doubleCols {
  -webkit-column-count: 2;
  /* Chrome, Safari, Opera */
  -moz-column-count: 2;
  /* Firefox */
  column-count: 2; }

/* line 483, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
ul.footThumbLinksList {
  margin-top: 3em; }

/* line 487, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
.footThumbLinksList li {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex; }

/* line 491, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
div.footLinkThumb {
  width: 250px;
  height: 150px; }

/* line 496, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
div.footLinkTitle {
  color: white !important;
  background-color: rgba(0, 0, 0, 0.6);
  width: 110px;
  line-height: 31px;
  float: right;
  text-align: center; }

/* line 505, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
p.bookMeta {
  color: #000000;
  font: 600 14px / 24px 'Raleway', sans-serif;
  margin: 1.75em 0; }

/* line 511, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
.books-archive h3.h2,
.books-archive .article-header {
  margin: 0;
  padding: 0; }

/* line 517, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
.books-archive article {
  border-bottom: 1px dashed #999999;
  padding-bottom: 0.25em; }

/* line 522, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
ul.thumbsGrid {
  margin: 0;
  margin-bottom: 1em; }

/* line 527, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
.thumbsGrid li {
  display: inline-table;
  margin: 15px; }

/* line 532, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
.thumbsGrid div {
  position: relative;
  width: 250px;
  height: 150px; }

/* line 538, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
p.thumbGridCap {
  position: absolute;
  bottom: 0;
  margin: 0;
  line-height: 30px;
  padding-right: 1em;
  width: 100%;
  text-align: right;
  background-color: rgba(0, 0, 0, 0.3); }

/* line 549, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
a p.thumbGridCap,
.thumbsGrid a {
  color: white;
  font-weight: 400; }

/* line 555, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
a:hover p.thumbGridCap,
.thumbsGrid a:hover {
  text-decoration: underline; }

/* line 560, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
.widget_thus_carousel_widget {
  margin: 0;
  padding: 0; }

/* line 565, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
#heroImage {
  background-size: cover;
  background-position: bottom center;
  width: 100%;
  background-repeat: no-repeat;
  position: relative;
  padding-bottom: 50.69230769230769%; }

/* line 574, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
#heroText {
  position: absolute;
  bottom: 0;
  right: 8%;
  max-width: 325px;
  max-height: 301px;
  width: 18%;
  height: 34%;
  min-width: 200px;
  min-height: 200px; }

/* line 586, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
h2.friend {
  margin-top: 0; }

/* line 590, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
#tribe-events-list-widget-8 {
  padding: 0;
  margin: 2.2em 6px; }

/* line 595, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
li.tribe-events-nav-next {
  float: right; }

/* line 599, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
li.tribe-events-nav-previous {
  float: left; }

/* line 603, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
.widget_thus_ticker_widget {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 9999999;
  background-color: #d65c5c;
  color: white;
  text-align: center;
  padding: 1em;
  margin: 0; }

/* line 617, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
.partners-wrap .d-1of3:nth-of-type(3n+1) {
  clear: left; }

/* line 622, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
hr {
  clear: both;
  margin: 24px 0; }

/* line 627, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
.menu_search {
  float: right;
  margin-left: 12px; }
  /* line 632, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
  .menu_search .fa-times {
    display: none; }
  /* line 637, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
  .menu_search.active .fa-times {
    display: inline-block; }
  /* line 640, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
  .menu_search.active .fa-search {
    display: none; }
  /* line 643, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
  .menu_search.active .nav-search-form {
    width: 320px;
    margin-right: 12px; }
  /* line 649, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
  .menu_search .nav-search-form {
    width: 320px;
    width: 0;
    height: 24px;
    overflow: hidden;
    float: left;
    -webkit-transition: width .2s ease-out;
    transition: width .2s ease-out; }
    /* line 657, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
    .menu_search .nav-search-form label {
      display: block;
      height: 0;
      margin: 0;
      visibility: hidden; }
    /* line 664, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
    .menu_search .nav-search-form input {
      line-height: 1.2rem;
      border: none;
      float: left;
      margin: 0 12px 0 0;
      outline: 0;
      padding: 0 8px;
      height: 24px;
      text-transform: uppercase;
      max-width: 238px;
      box-sizing: border-box; }
    /* line 676, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
    .menu_search .nav-search-form button {
      float: left;
      background: white;
      border: 1px solid #eaedf2;
      color: #561E2C !important;
      font-weight: bold;
      text-transform: uppercase;
      width: 70px;
      text-align: center;
      height: 24px; }
    /* line 687, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
    .menu_search .nav-search-form .btn-search {
      display: none; }

/* line 693, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden; }
  /* line 699, /Users/quentincole/Dropbox/Current/TibetHouse/Web/code/THUS2016/library/scss/_thus2015.scss */
  .screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */ }
/*# sourceMappingURL=style.css.map */