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

Stylesheet: Mixins & Constants Stylesheet

This is where you can take advantage of LESS' 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/ */.clearfix {
  /* for IE */

  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
/*********************
TOOLS
*********************/
/* http://www.zeldman.com/2012/03/01/replacing-the-9999px-hack-new-image-replacement/ */
.image-replacement {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
/*********************
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-face {
    	font-family: 'Font Name';
    	src: url('../fonts/font-name.eot');
    	src: url('../fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('../fonts/font-name.woff') format('woff'),
             url('../fonts/font-name.ttf') format('truetype'),
             url('../fonts/font-name.svg#font-name') format('svg');
    	font-weight: normal;
    	font-style: normal;
	}
*/
/* 
use the best ampersand 
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville, 'Goudy Old Style', Palatino, 'Book Antiqua', serif;
  font-style: italic;
}
/* text alignment */
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
/* alerts & notices */
.alert {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
}
.help {
  border-color: #e8dc59;
  background: #ebe16f;
}
.info {
  border-color: #bfe4f4;
  background: #d5edf8;
}
.error {
  border-color: #f8cdce;
  background: #fbe3e4;
}
.success {
  border-color: #deeaae;
  background: #e6efc2;
}
/*********************
BORDER RADIUS
*********************/
/* .rounded(4px); */
/* NOTE: For older browser support (and some mobile), don't use the shorthand to define *different* corners. */
/* .rounded-left(4px); */
/* .rounded-right(4px); */
/* .rounded-bottom(4px); */
/* .rounded-top(4px); */
/*********************
TRANISTION
*********************/
/* .transition(all,2s); */
/*********************
CSS3 GRADIENTS
Be careful with these since they can 
really slow down your CSS. Don't overdue it.
*********************/
/* .css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* .boxSizing(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? */
/*********************
BOX SHADOW
*********************/
/* .boxShadow(0 0 4px #444); */
/*********************
BUTTONS
*********************/
.button,
.button:visited {
  border: 1px solid #be0d37;
  border-top-color: #db0f3f;
  border-left-color: #db0f3f;
  padding: 4px 12px;
  color: #ffffff;
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  text-decoration: none;
  text-shadow: 0 1px rgba(0, 0, 0, 0.75);
  cursor: pointer;
  margin-bottom: 20px;
  line-height: 21px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: #e40f42;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f01d4f), to(#e40f42));
  background-image: -webkit-linear-gradient(top, #f01d4f, #e40f42);
  background-image: -moz-linear-gradient(top, #f01d4f, #e40f42);
  background-image: -o-linear-gradient(top, #f01d4f, #e40f42);
  background-image: linear-gradient(to bottom, #f01d4f, #e40f42);
}
.button:hover,
.button:visited:hover,
.button:focus,
.button:visited:focus {
  color: #ffffff;
  border: 1px solid #be0d37;
  border-top-color: #9d0a2d;
  border-left-color: #9d0a2d;
  background-color: #cc0e3b;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#e40f42), to(#cc0e3b));
  background-image: -webkit-linear-gradient(top, #e40f42, #cc0e3b);
  background-image: -moz-linear-gradient(top, #e40f42, #cc0e3b);
  background-image: -o-linear-gradient(top, #e40f42, #cc0e3b);
  background-image: linear-gradient(to bottom, #e40f42, #cc0e3b);
}
.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);
}
.blue-button,
.blue-button:visited {
  border-color: #1472ad;
  text-shadow: 0 1px 1px #1472ad;
  background-color: #1681c4;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#1990db), to(#1681c4));
  background-image: -webkit-linear-gradient(top, #1990db, #1681c4);
  background-image: -moz-linear-gradient(top, #1990db, #1681c4);
  background-image: -o-linear-gradient(top, #1990db, #1681c4);
  background-image: linear-gradient(to bottom, #1990db, #1681c4);
  -webkit-box-shadow: inset 0 0 3px #59b3ec;
  -moz-box-shadow: inset 0 0 3px #59b3ec;
  box-shadow: inset 0 0 3px #59b3ec;
}
.blue-button:hover,
.blue-button:visited:hover,
.blue-button:focus,
.blue-button:visited:focus {
  border-color: #116396;
  background-color: #1472ad;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#1784c9), to(#1472ad));
  background-image: -webkit-linear-gradient(top, #1784c9, #1472ad);
  background-image: -moz-linear-gradient(top, #1784c9, #1472ad);
  background-image: -o-linear-gradient(top, #1784c9, #1472ad);
  background-image: linear-gradient(to bottom, #1784c9, #1472ad);
}
.blue-button:active,
.blue-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);
}
/* Thanks Victor. */
.inline-block {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
/*Rounded Corners*/
/* =============================================================================
   Gradient Functions
   ========================================================================== */
.alpha30 {
  /* Fallback for web browsers that doesn't support RGBa */

  background: #000000 transparent;
  /* RGBa with 0.6 opacity */

  background: rgba(0, 0, 0, 0.3);
  /* For IE 5.5 - 7*/

  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#55000000, endColorstr=#55000000);
  /* For IE 8*/

  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#55000000, endColorstr=#5000000);
}
.alpha60 {
  /* Fallback for web browsers that doesn't support RGBa */

  background: #000000 transparent;
  /* RGBa with 0.6 opacity */

  background: rgba(0, 0, 0, 0.6);
  /* For IE 5.5 - 7*/

  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);
  /* For IE 8*/

  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);
}
.alpha80 {
  /* Fallback for web browsers that doesn't support RGBa */

  background: #000000 transparent;
  /* RGBa with 0.8 opacity */

  background: rgba(0, 0, 0, 0.8);
  /* For IE 5.5 - 7*/

  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#CC000000, endColorstr=#CC000000);
  /* For IE 8*/

  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#CC000000, endColorstr=#CC000000);
}
/*
This is the default stylesheet.  DO NOT MAKE CHNAGES HERE!
To customize any of these styles, copy the rules you which to change
into a file called 'gigpress.css' in your current theme directory.
Any style changes make there will override styles in this document.
*/
/* By default this is an h3 that appears above each artist's list of shows */
/* This span contains the RSS and iCal links for the artist */
span.gigpress-artist-subscriptions {
  margin-left: 5px;
  float: right;
}
/* Default wrapper for the year/month menu */
.gigpress-menu-container {
  padding: 5px 0;
  text-align: right;
}
/* Meet the table that displays our shows */
.gigpress-table {
  width: 100%;
  border: none;
  border-collapse: collapse;
  border-top: 1px solid #CCC;
  margin: 0.5em 0 1em 0;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.3846153846153846em;
}
/* This is for the main header cells containing the column labels */
tr.gigpress-header th {
  font-weight: bold;
}
/* Generic class for the table header cells */
.gigpress-table th {
  padding: 6px 8px;
  vertical-align: middle;
  text-align: left;
  border-bottom: 1px solid #CCC;
}
/* This is for the tour name header cells */
th.gigpress-heading {
  background-color: #EEE;
  border-bottom: 1px solid #CCC;
}
/* This is for the tour name headings, whichever one you're using */
th.gigpress-heading h1,
th.gigpress-heading h2,
th.gigpress-heading h3,
th.gigpress-heading h4,
th.gigpress-heading h5 {
  margin: 0;
}
/* Applies to all cells in the table */
.gigpress-table td {
  padding: 6px 8px;
  vertical-align: middle;
  text-align: left;
}
/* Applies to the first row of each show listing */
.gigpress-row td {
  border-bottom: 1px solid #EEE;
}
/* To set an alternating row style */
/* Individual classes for the label header cells that start the table */
th.gigpress-date {
  min-width: 100px;
  width: auto !important;
  width: 100px;
}
/* Likewise, individual classes for the content cells */
/* Style for rows within a tour */
tr.gigpress-tour td {
  background-color: #F6F6F6;
}
/* Style for the first row after a tour ends in the list */
tr.gigpress-divider.gigpress-row td {
  border-top: 2px solid #CCC;
}
/* The secondary row for each show, contains time, admission, etc */
tr.gigpress-info td {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.5em;
  color: white;
  border-bottom: 1px solid #CCC;
}
/* Fix for themes that hide .description */
tr.gigpress-info td.description {
  visibility: visible !important;
  padding-bottom: 36px;
}
/* Greys-out cancelled shows */
tr.gigpress-row.cancelled,
tr.gigpress-info.cancelled,
tr.cancelled span.gigpress-info-label,
tr.cancelled span.gigpress-info-item {
  color: #999;
}
/* This wraps each of the bits of info in the "info" cell */
/* For the labels for address, admission, etc in the "info" cell */
span.gigpress-info-label {
  color: white;
  font-weight: bold;
}
/* In case you want to style the "Buy Tickets" link */
a.gigpress-tickets-link {
  font-weight: bold;
  text-transform: uppercase;
}
/* Notices for Cancelled or Sold Out shows */
strong.gigpress-cancelled,
strong.gigpress-soldout {
  text-transform: uppercase;
  font-weight: bold;
  padding: 1px;
  color: #111;
  background: #fffdeb;
  border: 1px solid #EEE;
  background: #111;
  color: #FFF;
  border: none;
}
/* In case you want to style the Googlefied address link */
/* These styles control the peek-a-boo "add" links to iCal and Google Calendar. Behaviour dictated by a separate jQuery script. */
td.gigpress-links-cell {
  vertical-align: top;
}
.gigpress-calendar-add {
  position: relative;
}
a.gigpress-links-toggle {
  display: block;
  text-indent: -9999px;
  width: 11px;
  height: 11px;
  background: transparent url(../images/calendar-toggle.png) no-repeat left top;
  cursor: pointer;
}
a.gigpress-links-toggle:hover {
  background-position: -11px 0px;
}
a.gigpress-link-active {
  background-position: -33px;
}
a.gigpress-link-active:hover {
  background-position: -22px;
}
div.gigpress-calendar-links {
  display: none;
  position: absolute;
  left: 20px;
  top: -1.2em;
  width: 15em;
  padding-left: 7px;
  background: transparent url(../images/calendar-links-bg.png) no-repeat left center;
}
.gigpress-calendar-links-inner {
  background-color: #F3F3F3;
  padding: 6px 8px;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1.6363636363636365em;
  line-height: 16px;
  border: 1px solid #CCC;
  border-width: 1px 1px 1px 0;
}
div.gigpress-calendar-links span {
  display: block;
}
/* These are for the RSS/iCal subscribe links */
p.gigpress-subscribe {
  text-align: left;
  color: #999;
}
p.gigpress-subscribe a {
  display: inline-block;
  text-indent: -9999px;
  width: 12px;
  margin: 0 3px;
}
/* These styles are for the sidebar listing */
/* This is the unordered list that holds the dates */
/* Generic styles for the list items within */
/* For artist headings in the sidebar */
/* For tour headings in the sidebar */
span.gigpress-list-tour-heading {
  font-weight: bold;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.3846153846153846em;
}
/* So if you like you can style each alternating list item differently */
/* So if you like you can style the date differently */
span.gigpress-sidebar-date {
  font-weight: bold;
  display: block;
}
/* Sold Out shows in the sidebar */
ul.gigpress-listing strong.gigpress-soldout {
  display: block;
}
/* These styles control the Related Show list that appears in the body of Related Posts */
ul.gigpress-related-show {
  margin-bottom: 2em;
}
.gigpress-related-label {
  font-weight: bold;
}
/* This is just to include data for hcalendar support, but hide it from view */
.hide {
  display: none;
}
/* Stop Firefox from underlining our abbreviated dates */
abbr {
  border: none;
  text-decoration: none;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.3846153846153846em;
}
