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

Stylesheet: IE Stylesheet

So instead of using the respond.js file to add media query support
to IE, we're going to use SASS to create an easily readable css file.
Here, we import all the styles the standard stylesheet gets, only
without the media queries. No need to worry about editing anything!

******************************************************************/
/*
Remember, all the BASE styles are called already since IE can
read those. Below, we need to import only the stuff IE can't 
understand (what's inside the media queries). We also need to
import the mixins file so SASS can understand the variables.
*/
/* import mixins */
/******************************************************************
Site Name: 
Author: 

Stylesheet: Mixins & Constants Stylesheet

This is where you can take advantage of Sass' great features: 
Mixins & Constants. 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 like box shadow and
border-radius.

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

******************************************************************/
/*********************
CLEARFIXIN'
*********************/
/* Contain floats: nicolasgallagher.com/micro-clearfix-hack/ */
/* line 24, ../scss/_mixins.scss */
.clearfix {
  zoom: 1;
}
/* line 26, ../scss/_mixins.scss */
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}
/* line 30, ../scss/_mixins.scss */
.clearfix:after {
  clear: both;
}

/*********************
TOOLS
*********************/
/* http://www.zeldman.com/2012/03/01/replacing-the-9999px-hack-new-image-replacement/ */
/* line 41, ../scss/_mixins.scss */
.image-replacement {
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden;
}

/* apply a natural box layout model to all elements: http://paulirish.com/2012/box-sizing-border-box-ftw/ */
/* line 49, ../scss/_mixins.scss */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*********************
TYPOGRAPHY
*********************/
/* 	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-family: 'MyFontFamily';
  src: url('myfont-webfont.eot?#iefix') format('embedded-opentype'), 
       url('myfont-webfont.woff') format('woff'), 
       url('myfont-webfont.ttf')  format('truetype'),
       url('myfont-webfont.svg#svgFontName') format('svg');

	
*/
@font-face {
  font-family: 'BebasNeueRegular';
  src: url("../fonts/BebasNeue-webfont.eot") format("eot");
  /* IE9 Compat Modes */
  src: url("../fonts/BebasNeue-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/BebasNeue-webfont.woff") format("woff"), url("../fonts/BebasNeue-webfont.ttf") format("truetype"), url("../fonts/BebasNeue-webfont.svg#BebasNeueRegular") format("svg");
  font-weight: normal;
  font-style: normal;
}

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

/* text alignment */
/* line 124, ../scss/_mixins.scss */
.text-left {
  text-align: left;
}

/* line 125, ../scss/_mixins.scss */
.text-center {
  text-align: center;
}

/* line 126, ../scss/_mixins.scss */
.text-right {
  text-align: right;
}

/* alerts & notices */
/* line 130, ../scss/_mixins.scss */
.alert {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
}

/* line 136, ../scss/_mixins.scss */
.help {
  border-color: #e8dc59;
  background: #ebe16f;
}

/* line 141, ../scss/_mixins.scss */
.info {
  border-color: #bfe4f4;
  background: #d5edf8;
}

/* line 146, ../scss/_mixins.scss */
.error {
  border-color: #f8cdce;
  background: #fbe3e4;
}

/* line 151, ../scss/_mixins.scss */
.success {
  border-color: #deeaae;
  background: #e6efc2;
}

/*********************
BORDER RADIUS
*********************/
/* 
NOTE: For older browser support (and some mobile), 
don't use the shorthand to define *different* corners. 

USAGE: @include rounded(4px); 

*/
/* 
Instead of having a seperate mixin for the different
borders, we're using the mixin from 320 & Up to make
things easier to use.

USAGE: @include border-radius(4px,4px,0,0);

*/
/*********************
TRANISTION
*********************/
/* @include transition(all,2s,ease-out); */
/*********************
BOX SHADOWS
*********************/
/* @include box-shadow(5px, 5px, 10px, #000); */
/*********************
CSS3 GRADIENTS
Be careful with these since they can 
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BUTTONS
*********************/
/* line 251, ../scss/_mixins.scss */
.button, .button:visited, .sellout {
  font-family: Helvetica, Arial, sans-serif;
  padding: 4px 12px;
  color: white;
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  text-decoration: none;
  text-shadow: 0 1px rgba(0, 0, 0, 0.75);
  margin-bottom: 20px;
  line-height: 21px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  background-color: #262626;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#333333), to(#262626));
  background-image: -webkit-linear-gradient(top, #333333, #262626);
  background-image: -moz-linear-gradient(top, #333333, #262626);
  background-image: -o-linear-gradient(top, #333333, #262626);
  background-image: linear-gradient(to bottom, #333333, #262626);
}

/* line 265, ../scss/_mixins.scss */
.sellout {
  color: #8f5105;
  background-color: #fac380;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fab767), to(#fac380));
  background-image: -webkit-linear-gradient(top, #fab767, #fac380);
  background-image: -moz-linear-gradient(top, #fab767, #fac380);
  background-image: -o-linear-gradient(top, #fab767, #fac380);
  background-image: linear-gradient(to bottom, #fab767, #fac380);
}

/* line 269, ../scss/_mixins.scss */
.button, .button:visited {
  cursor: pointer;
}
/* line 271, ../scss/_mixins.scss */
.button:hover, .button:focus, .button:visited:hover, .button:visited:focus {
  color: white;
  background-color: #1a1a1a;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#262626), to(#1a1a1a));
  background-image: -webkit-linear-gradient(top, #262626, #1a1a1a);
  background-image: -moz-linear-gradient(top, #262626, #1a1a1a);
  background-image: -o-linear-gradient(top, #262626, #1a1a1a);
  background-image: linear-gradient(to bottom, #262626, #1a1a1a);
}
/* line 276, ../scss/_mixins.scss */
.button:active, .button:visited:active {
  background-color: #f01d4f;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#e40f42), to(#f01d4f));
  background-image: -webkit-linear-gradient(top, #e40f42, #f01d4f);
  background-image: -moz-linear-gradient(top, #e40f42, #f01d4f);
  background-image: -o-linear-gradient(top, #e40f42, #f01d4f);
  background-image: linear-gradient(to bottom, #e40f42, #f01d4f);
}

/* line 281, ../scss/_mixins.scss */
.orange-button, .orange-button:visited {
  text-shadow: 0 1px 1px #a85e06;
  background-color: #f28809;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f7941d), to(#f28809));
  background-image: -webkit-linear-gradient(top, #f7941d, #f28809);
  background-image: -moz-linear-gradient(top, #f7941d, #f28809);
  background-image: -o-linear-gradient(top, #f7941d, #f28809);
  background-image: linear-gradient(to bottom, #f7941d, #f28809);
  -webkit-box-shadow: inset 0 0 3px #fab96c;
  -moz-box-shadow: inset 0 0 3px #fab96c;
  box-shadow: inset 0 0 3px #fab96c;
}
/* line 287, ../scss/_mixins.scss */
.orange-button:hover, .orange-button:focus, .orange-button:visited:hover, .orange-button:visited:focus {
  border-color: #006ba3;
  background-color: #d97a08;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f68b09), to(#d97a08));
  background-image: -webkit-linear-gradient(top, #f68b09, #d97a08);
  background-image: -moz-linear-gradient(top, #f68b09, #d97a08);
  background-image: -o-linear-gradient(top, #f68b09, #d97a08);
  background-image: linear-gradient(to bottom, #f68b09, #d97a08);
}
/* line 291, ../scss/_mixins.scss */
.orange-button:active, .orange-button:visited:active {
  background-color: #1990db;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#1681c4), to(#1990db));
  background-image: -webkit-linear-gradient(top, #1681c4, #1990db);
  background-image: -moz-linear-gradient(top, #1681c4, #1990db);
  background-image: -o-linear-gradient(top, #1681c4, #1990db);
  background-image: linear-gradient(to bottom, #1681c4, #1990db);
}

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

******************************************************************/
/*********************
NAVIGATION STYLES
*********************/
/* line 24, ../scss/_481up.scss */
.nav {
  margin-top: 10px;
  /* .menu is clearfixed inside mixins.scss */
  /* end .menu */
}
/* line 27, ../scss/_481up.scss */
.nav .menu {
  /* end .menu ul */
}
/* line 28, ../scss/_481up.scss */
.nav .menu ul {
  /* end .menu ul li */
  /* highlight current page */
  /* end current highlighters */
}
/* line 29, ../scss/_481up.scss */
.nav .menu ul li {
  float: left;
  position: relative;
  /*
  plan your menus and drop-downs wisely.
  */
}
/* line 32, ../scss/_481up.scss */
.nav .menu ul li a {
  /*
  you can use hover styles here even though this size
  has the possibility of being a mobile device.
  */
}

/* line 73, ../scss/_481up.scss */
nav ul.js {
  display: block;
}

/* line 76, ../scss/_481up.scss */
nav select#weenav.js {
  display: none;
}

/*********************
POSTS & CONTENT STYLES
*********************/
/* line 87, ../scss/_481up.scss */
.header #inner-header .desc {
  display: block;
}
/* line 91, ../scss/_481up.scss */
.header .social {
  text-align: right;
}
/* line 93, ../scss/_481up.scss */
.header .social h2.substrap {
  border-top: none;
  font-size: 22px;
  margin-top: -80px;
}
/* line 99, ../scss/_481up.scss */
.header .social a img {
  margin: 0 0 0 4px;
  width: 50px;
  height: 50px;
}

/* --------------------------- */
/* line 109, ../scss/_481up.scss */
body:before {
  content: "";
  position: fixed;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  z-index: 100;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
}

/* --------------------------- */
/* line 123, ../scss/_481up.scss */
.shad {
  position: relative;
}

/* line 127, ../scss/_481up.scss */
.shad:before,
.shad:after {
  z-index: -1;
  position: absolute;
  content: "";
  bottom: 15px;
  left: 10px;
  width: 50%;
  top: 80%;
  max-width: 300px;
  background: rgba(0, 0, 0, 0.7);
  -webkit-box-shadow: 0 15px 10px rgba(0, 0, 0, 0.7);
  -moz-box-shadow: 0 15px 10px rgba(0, 0, 0, 0.7);
  box-shadow: 0 15px 10px rgba(0, 0, 0, 0.7);
  -webkit-transform: rotate(-3deg);
  -moz-transform: rotate(-3deg);
  -o-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  transform: rotate(-3deg);
}

/* line 147, ../scss/_481up.scss */
.shad:after {
  -webkit-transform: rotate(3deg);
  -moz-transform: rotate(3deg);
  -o-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  transform: rotate(3deg);
  right: 10px;
  left: auto;
}

/* line 159, ../scss/_481up.scss */
.home article.page .post-content {
  display: block;
}
/* line 164, ../scss/_481up.scss */
.home article.event {
  padding: 1em 0;
}
/* line 166, ../scss/_481up.scss */
.home article.event .sep {
  display: none;
}
/* line 169, ../scss/_481up.scss */
.home article.event .thumbs {
  float: left;
  margin-right: 20px;
  min-width: 180px;
}
/* line 173, ../scss/_481up.scss */
.home article.event .thumbs img {
  width: 178px;
  height: 118px;
}
/* line 179, ../scss/_481up.scss */
.home .post-content {
  font-size: 1em;
}
/* line 182, ../scss/_481up.scss */
.home .responsive-slider {
  display: block;
}
/* line 184, ../scss/_481up.scss */
.home .responsive-slider h2.slide-title {
  font-family: "BebasNeueRegular", Helvetica, Arial, sans-serif;
  font-size: 28px;
}

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

/* end .post-content */
/* line 214, ../scss/_481up.scss */
aside.post-bio {
  font-size: 90%;
}

/*********************
FOOTER STYLES
*********************/
/*
check your menus here. do they look good?
do they need tweaking?
*/
/* end .footer-links */
/******************************************************************
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 28, ../scss/_768up.scss */
.wrap {
  max-width: 980px;
}

/* line 32, ../scss/_768up.scss */
.event-main-image {
  float: right;
  max-width: 600px;
}

/* line 34, ../scss/_768up.scss */
.entry-content {
  margin-bottom: 0;
}

/* line 40, ../scss/_768up.scss */
.home .entry-meta {
  min-width: 170px;
  width: 170px;
}
/* line 45, ../scss/_768up.scss */
.home article.event .date {
  line-height: 1;
  font-family: Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0px 1px 1px #222;
}
/* line 51, ../scss/_768up.scss */
.home article.event .date .day {
  display: block;
  font-size: 20px;
}
/* line 52, ../scss/_768up.scss */
.home article.event .date .num {
  display: block;
  font-size: 70px;
  font-family: "BebasNeueRegular", Helvetica, Arial, sans-serif;
  text-align: center;
}
/* line 57, ../scss/_768up.scss */
.home article.event .date .num span {
  display: none;
}
/* line 61, ../scss/_768up.scss */
.home article.event .date .doors {
  font-size: 0.7em;
  display: block;
  margin-top: 6px;
}
/* line 62, ../scss/_768up.scss */
.home article.event .date .month {
  display: block;
  text-align: center;
  font-size: 20px;
  margin-top: -10px;
  line-height: 20px;
}
/* line 64, ../scss/_768up.scss */
.home article.event footer.last {
  text-align: right;
}
/* line 67, ../scss/_768up.scss */
.home article.event #featured_slider {
  width: 600px;
}

/*********************
HEADER STYLES
*********************/
/* line 81, ../scss/_768up.scss */
.header .social {
  margin: 0;
  float: right;
}
/* line 84, ../scss/_768up.scss */
.header .social h2.substrap {
  background: url("../images/telno.png") no-repeat;
  height: 33px;
  width: 274px;
  margin: -88px 0 0;
  text-indent: 9999px;
  white-space: nowrap;
  overflow: hidden;
}
/* line 92, ../scss/_768up.scss */
.header .social a img {
  width: 50px;
  height: 50px;
}

/* line 102, ../scss/_768up.scss */
.event .article-header a {
  text-decoration: none;
  color: #565656;
}

/* line 103, ../scss/_768up.scss */
.event .article-header a.orange-button {
  color: white;
}

/* line 104, ../scss/_768up.scss */
h1.single-title {
  font-size: 4em;
}

/* line 106, ../scss/_768up.scss */
header form#searchform {
  display: none;
}

/*********************
NAVIGATION STYLES
*********************/
/* line 112, ../scss/_768up.scss */
.nav {
  background: #222;
  border: 0;
  margin-top: 20px;
  /* end .menu ul li */
  /* highlight current page */
  /* end current highlighters */
}
/* line 116, ../scss/_768up.scss */
.nav li {
  float: left;
  position: relative;
  /*
  plan your menus and drop-downs wisely.
  */
  /* showing sub-menus */
}
/* line 120, ../scss/_768up.scss */
.nav li a {
  border-bottom: 0;
}
/* line 123, ../scss/_768up.scss */
.nav li a:hover, .nav li a:focus {
  background: #f7941d;
  color: #333333;
}
/* line 136, ../scss/_768up.scss */
.nav li ul.sub-menu,
.nav li ul.children {
  width: 200px;
  border: 1px solid #ccc;
  border-top: 0;
  position: absolute;
  display: none;
  z-index: 8999;
  /* highlight sub-menu current page */
}
/* line 144, ../scss/_768up.scss */
.nav li ul.sub-menu li,
.nav li ul.children li {
  /*
  if you need to go deeper, go nuts
  just remember deeper menus suck
  for usability. k, bai.
  */
}
/* line 146, ../scss/_768up.scss */
.nav li ul.sub-menu li a,
.nav li ul.children li a {
  padding-left: 10px;
  border-right: 0;
  display: block;
  width: 180px;
  border-bottom: 1px solid #ccc;
}
/* line 163, ../scss/_768up.scss */
.nav li ul.sub-menu li:last-child a,
.nav li ul.children li:last-child a {
  border-bottom: 0;
}
/* line 185, ../scss/_768up.scss */
.nav li:hover ul {
  top: auto;
  display: block;
}

/* end .nav */
/*********************
SIDEBARS & ASIDES
*********************/
/* line 209, ../scss/_768up.scss */
.widgettitle {
  border-bottom: 2px solid #444;
  margin: 0 0 0.75em;
}

/* line 214, ../scss/_768up.scss */
.widget {
  padding: 0 10px;
  margin: 0 0 2.2em;
}
/* line 219, ../scss/_768up.scss */
.widget ul li {
  margin-bottom: 0.75em;
  /* deep nesting */
}
/* line 227, ../scss/_768up.scss */
.widget ul li ul {
  margin-top: 0.75em;
  padding-left: 1em;
}

/* links widget */
/* meta widget */
/* pages widget */
/* recent-posts widget */
/* archives widget */
/* tag-cloud widget */
/* calendar widget */
/* category widget */
/* recent-comments widget */
/* search widget */
/* text widget */
/*********************
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 333, ../scss/_768up.scss */
#inner-footer {
  font-size: 90%;
}
/* line 335, ../scss/_768up.scss */
#inner-footer p {
  margin-top: 0;
}

/* line 340, ../scss/_768up.scss */
ul.footer-nav {
  background: none;
  margin: 1em 0 0 0;
}
/* line 343, ../scss/_768up.scss */
ul.footer-nav li {
  /*
  be careful with the depth of your menus.
  it's very rare to have multi-depth menus in
  the footer.
  */
}
/* line 344, ../scss/_768up.scss */
ul.footer-nav li a {
  background: none;
  padding: 0 20px 0 0;
  color: #999999;
}
/* line 348, ../scss/_768up.scss */
ul.footer-nav li a:hover {
  background: none;
  color: white;
}

/* end .footer-links */
/******************************************************************
Site Name: 
Author: 

Stylesheet: Desktop Stylesheet

This is the desktop size. It's larger than an iPad so it will only
be seen on the Desktop. 

******************************************************************/
/* 
you can call the larger styles if you want, but there's really no need 
*/
/******************************************************************
ADDITIONAL IE FIXES
These fixes are now ONLY seen by IE, so you don't have to worry
about using prefixes, although it's best practice. For more info
on using Modernizr classes, check out this link:
http://www.modernizr.com/docs/
******************************************************************/
/*
For example, you can use something like:

.no-textshadow .class { ... }

You can also target specific versions by using the classes applied to
the html element. These can sometimes change, so take a look inside the
header.php file to see what they are:


.lt-ie8 .class { ... }

*/
