/*
Theme Name:		Post-Haste Reed Duo, via Starkers
Description:		WordPress theme created for Post-Haste Reed Duo's 2012 site redesign, using Starkers by Elliot Jay Stocks & Keir Whitaker (http://viewportindustries.com/products/starkers) as a starting template.
Version:			1.1
Author:				Nina Kin
Author URI:		  http://www.ninakin.com
*/

/*
===========================
CONTENTS:

01 Sensible defaults
02 Typography
03 Media queries
04 Layout
04 1 Nav Column
04 2 Events Column
04 3 Current Events Column
04 4 Past Events Column
05 Media Page
06 Contact Page
07 Bio Page
08 Press Page
09 Soundcloud Structure
10 Soundcloud Colors
===========================
*/

/* ---------------------------------------------------------------------------------------------------------- 
01 Sensible defaults ----------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */

@import "css/reset.css";

div,
article,
section,
header,
footer,
nav,
li					{ position:relative; /* For absolutely positioning elements within containers (add more to the list if need be) */ }

.group:after 		{ display:block; height:0; clear:both; content:"."; visibility:hidden; /* For clearing */ }
body 				{ background:#000000; /* Don't forget to style your body to avoid user overrides */ }
::-moz-selection 	{ background:#ff0; color:#333; }
::selection 		{ background:#ff0; color:#333; }

input[type="text"],
textarea {
	background: #f9f9f9;
	border: 1px solid #ccc;
	box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
	-moz-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
	-webkit-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
	padding: 2px;
}

/* ---------------------------------------------------------------------------------------------------------- 
02 Typography -----------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */
/*

14 / 16	= 		0.875em 		(14px equivalent)
16 / 16	= 		1em 			(16px equivalent)
18 / 16 = 		1.125em 		(18px equivalent)
21 / 16 = 		1.3125em 		(21px equivalent)
24 / 16 = 		1.5em 			(24px equivalent)
30 / 16 = 		1.875em 		(30px equivalent)

*/

@font-face {
    font-family: 'criticizedregular';
    src: url('fonts/criticized-webfont.eot');
    src: url('fonts/criticized-webfont.eot?#iefix') format('embedded-opentype'),
    	url('fonts/criticized-webfont.svg#criticizedregular') format('svg'),
		url('fonts/criticized-webfont.woff') format('woff'),
          url('fonts/criticized-webfont.ttf') format('truetype');
          
    font-weight: normal;
    font-style: normal;
}

footer {
	display: none;
  }
  
body,
input,
textarea 			{ font-family: Myriad, Arial, sans-serif;
  						  font-size: 12px;
}

h1, 
h2, 
h3, 
h4, 
h5, 
h6 					{ font-weight: bold; /* This helps to identify headings at the initial build stage, but you should write something more precise later on */ }

a {
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

/* ---------------------------------------------------------------------------------------------------------- 
03 Media queries (using a mobile-first approach) ------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */

/* 400 and up */
@media screen and (min-width:400px) {

					{ /* Place your styles here for all widths greater than 400px */ }

}

/* Retina Display */
@media screen and (-webkit-min-device-pixel-ratio:2) {

					{ /* Place your styles here for all 'Retina' screens */ }

}


/* ---------------------------------------------------------------------------------------------------------- 
04 Layout --------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */

html, body {
	height: 100%;
	overflow: auto;
	text-align: center;
}

#container {
	/*height: 100%;*/
	margin: 0 auto;
    padding-top: 10px;
	width: 960px;
	text-align: left;
}

#left-column {
	float: left;
	/*margin-right: 20px;*/
	width: 470px;
	
}

#left-column.events-page {
  background: url('img/menu-eventsx470w.png') top center no-repeat;
}

#left-column.contact-page {
  background: url('img/menu-contactx470w.png') top center no-repeat;
}

#left-column.media-page {
  background: url('img/menu-mediax470w.png') top center no-repeat;
}

#right-column {
	float: right;
	width: 470px;
}

#current-events-column {
	float: left;
	width: 250px;
	/*margin-right: 20px;*/
}

#past-events-column {
	float: right;
	width: 200px;
}

/* ---------------------------------------------------------------------------------------------------------- 
04 1 Nav Column --------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */

#caption {
	width: 213px; /* 243px width - 15px padding - 15px padding*/
	margin-top: 330px;
	margin-left: 100px;
	padding: 0 15px;
	color: #ffffff;
  	line-height: 2em;
	font-family: 'criticizedregular';
  	font-size: 1.1em;
}

#nav {
	font-family: 'criticizedregular';
	text-align: right;
	width: 243px;
	height: 195px;
	margin-top: 15px;
	margin-left: 100px;
}

#nav ul {
	margin-right: 15px;
}

#nav a {
	color: #000000;
	font-size: 1.7em;
	line-height: 1.7;
}

#social-media {
	width: 243px;
	margin-left: 100px;
}

#social-media-icons {
	text-align: center;
}

#twitter {
}

/* ---------------------------------------------------------------------------------------------------------- 
04 2 Events Column --------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */

.events-month-name {
	font-family: Myriad, Arial, san-serif;
	font-size: 2em;
	font-weight: bold;
	color: #58813f;
	text-align: center;
	margin-bottom: 10px;
}

.events-month {
	font-family: Myriad, Arial, san-serif;
	color: #58813f;
	background: #1A1A1A;
	padding: 10px 10px 5px 10px;
	margin-bottom: 10px;
}

.event-day {
	background: url('img/black-dotted-border.png') left bottom repeat-x;
	padding-bottom: 20px;
	margin-bottom: 10px;
}

.event-full-date {
	color: #fff;
}

.event-title {
	color: #ffffff;
	margin: 5px 0 10px 0;
}

.event-title a {
	color: #476435;
}

.event-details {
	color: #989898;
	margin: 0 10px;
}

.event-details p {
	text-indent: -15px;
	padding-left: 15px;
}

.event-details a {
	color: #889a82;
}

/* ---------------------------------------------------------------------------------------------------------- 
04 3 Current Events Column --------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */

#current-events-header {
	width: 250px;
	margin-top: 70px;
	color: #fff;
}

#header-upcoming {
	font-family: 'criticizedregular';
	font-size: 3.45em;
	line-height: 1.3em
}

#header-events {
	font-family: 'criticizedregular';
	font-size: 5.6em;
	line-height: 1.2em;
}


/* ---------------------------------------------------------------------------------------------------------- 
04 4 Past Events Column --------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */

#past-events-header {
	font-family: Myriad, Arial, san-serif;
	font-size: 1.8em;
	font-weight: bold;
	color: #58813f;
	margin-top: 243px;
	margin-bottom: 10px;
}

#past-events {
	height: 400px;
}


/* ---------------------------------------------------------------------------------------------------------- 
05 Media Page --------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */

#media-column {
  margin-top: 65px;
}

#media-soundcloud {
  margin: 20px 0px;
}

#media-video {
  color: #ffffff;
}

#media-video p {
  text-align: center;
  position: relative;
  width: 480px;
  height: 40px;
  top: 35px;
}

#media-video a {
  color: #ffffff;
  font-weight: bold;
}

.vimeo_video {
	position: relative; 
	top: 30px; 
	width: 480px; 
	height: 274px;
  }

#media-video img {
	position: absolute; 
	top: 0px; 
	left: 0px; 
	z-index: 10; 
	pointer-events: none;
  }

#media-video iframe {
	position: absolute; 
	top: 3px; 
	left: 3px; 
	z-index: 1;
  }

.youtube_video {
	position: relative; 
	top: 30px; 
	width: 480px; 
	height: 362px;
  }


/* ---------------------------------------------------------------------------------------------------------- 
06 Contact Page -------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */

#contact-column {
  margin-top: 65px;
}

#contact-info {
  width: 350px;
  margin-top: 20px;
  color: #ffffff;
  font-size: 2em;
}

#contact-info a {
  display: inline-block;
  color: #339a99;
  margin: 20px 0;
  font-weight: bold;
}

#contact-social-media {
  margin-top: 20px;
  font-size: 0.8em;
}

#contact-form {
  color: #ffffff;
}

#contact-form label {
  cursor: default;
  line-height: 24px;
}


/* ---------------------------------------------------------------------------------------------------------- 
07 Bio Page -------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */

#bio-intro {
  text-align: center;
  background: url('img/bio-menu.png') top center no-repeat;
  padding-top: 310px;
}

#bio-intro img {
  padding-right: 25px;
}

#bio-intro p {
  color: #dcb043;
  text-align: left;
  font-style: italic;
  font-family: Times New Roman;
  line-height: 2em;
  text-indent: 50px;
}

#bio-bottom {
  padding-top: 10px;
}

#bio-bottom-left{
  float: left;
  width: 346px;
  color: #ffffff;
  text-align: right;
  line-height: 2em;
}

#bio-bottom-right {
  float: left;
  width: 346px;
  color: #ffffff;
  text-align: left;
  line-height: 2em;
}

#bio-nav-column {
  float: left;
  width: 227px;
	margin: 0 20px;
  background: url('img/bio-menu-2.png') top center no-repeat;
}

#bio-nav {
  
  font-family: 'criticizedregular';
	text-align: right;
	width: 227px;
	height: 195px;
}

#bio-nav ul {
	margin-right: 15px;
  padding-top: 10px;
}

#bio-nav a {
	color: #000000;
	font-size: 1.6em;
	line-height: 1.7;
}

#bio-social-media {
  width: 230px;
  overflow: visible;
}

.bio_name {
  font-size: 2em;
  }

/* ---------------------------------------------------------------------------------------------------------- 
08 Press Page -------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */

#press-left-column {
  width: 470px;
  background: url('img/press-photo.jpg') top right no-repeat;
  float: left;
}

#press-kit-column {
  margin-top: 502px;
  width: 259px;
  float: right;
  background: #9c2112;
  color: #000000;
}

.press_kit_section {
  margin: 0 10px 20px 10px;;
  padding-bottom: 30px;
	background: url('img/orange-border.png') bottom left repeat-x;
  }

.press_kit_section h1 {
  font-size: 3em;
  color: #fff;
  margin: 20px 0;
  
}

.press_kit_section a {
  color: #000;
	font-weight: bold;
  }

.press_kit_section p {
  margin: 1em 0;
  }

div.press-image {
  margin: 9px;  
  display: inline-block;
	}

div.press-image img {
  display: block;
}

div.press-image span {
  display: span;
}

#press-right-column {
  width: 470px;
  float: right;
}

#press-caption {
  color: #97642f;
  font-family: 'criticizedregular';
  font-size: 1.4em;
  line-height: 1.5em;
  margin: 15px 0;
  width: 284px;
}

#press-nav {
  font-family: 'criticizedregular';
  margin-top: 20px;
}

#press-nav a {
  color: #ffffff;
  font-size: 1.8em;
  line-height: 1.8em;
}

#press-social-media-icons {
  margin-top: 10px;
  text-align: left;
}

/* ---------------------------------------------------------------------------------------------------------- 
09 Soundcloud Player Structure -------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */

.sc-player{
  width: 100%;
  height: 36px;
  position: relative;
  margin: 0;
}

.sc-player ol, .sc-player li{
  margin: 0;
  padding: 0;
  list-style-position: inside;
}

/* Artworks */

.sc-player .sc-artwork-list{
  display: none;
}

.sc-player .sc-artwork-list li{
  list-style-type: none;
  display: none;
}

.sc-player .sc-artwork-list li.active{
  list-style-type: none;
  display: block;
}

.sc-player .sc-artwork-list li img, .sc-player .sc-artwork-list li div{
  list-style-type: none;
  width: 100%;
  height: 100%;
}

/* controls */

.sc-player .sc-controls{
  position: absolute;
  width: 26px;
  height: 36px;
}

.sc-player .sc-controls a{
  display: block;
  width: 40px;
  height: 40px;
}

.sc-player .sc-controls a.sc-play, .sc-player .sc-controls a.sc-pause{
  text-indent: -3000px;
}

.sc-player .sc-controls a.sc-pause{
  display: none;
}

.sc-player.playing .sc-controls a.sc-play{
  display: none;
}

.sc-player.playing .sc-controls a.sc-pause{
  display: block;
}

/* scrubber */

.sc-scrubber {
  display: none;
  position: absolute;
  left: -5000px;
  bottom: 10px;
  height: 40px;
  width: 95.5%;
}

.sc-player:hover .sc-scrubber, .sc-player.playing .sc-scrubber {
  display: none;
  left: 45px;
}

.sc-scrubber .sc-time-span{
  height: 30px;
  margin: 5px;
  position: relative;
}

.sc-scrubber .sc-buffer, .sc-scrubber .sc-played{
  height: 30px;
  position: absolute;
  top: 0;
  width: 0;
  -webkit-transition: width 0.1s linear;
}

.sc-scrubber .sc-time-indicators{
  position: absolute;
  right: 0;
  top: -20px;
}

/* tracks */

/* Track listings*/

.sc-player ol.sc-trackslist{
  position: absolute;
  float: left;
  width: 92%;
  height: 100%;
  left: 36px;
  overflow: none;
  background: url('img/orange-border.png') left top repeat-x;
}

.sc-player ol.sc-trackslist li{
  float: left;
  width: 79%;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  margin-top: 15px;
  margin-left: 5px;
  list-style: none;
}

/* Track info*/

.sc-player .sc-info{
  position: absolute;
  top: 10px;
  left: -5000px;
  width : 300px;
  padding: 20px;
  height: auto;
  z-index: 500;
  margin-left: -40px;
}

.sc-player .sc-info a {
  color: #9d5445;
}

.sc-info h3 {
  width: 80%;
  font-size: 1.2em;
}

.sc-info p {
  margin: 1em 0;
}

.sc-player .sc-info.active{
  left: 25%;
  top: 5%;
}


.sc-player .sc-info-toggle{
  position: absolute;
  top: 10px;
  right: 50px;
}

.sc-player .sc-info-toggle.active{
  /*left: -5000px;*/
}

.sc-player .sc-info-close{
  position: absolute;
  top: 10px;
  right: 20px;
}

/* Track embed*/

.sc-player .sc-embed{
  position: absolute;
  top: 10px;
  left: -5000px;
  width : 300px;
  padding: 20px;
  height: auto;
  z-index: 500;
  margin-left: -40px;
}

.sc-player .sc-embed a {
  color: #9d5445;
}

.sc-embed h3 {
  width: 80%;
  font-size: 1.2em;
}

.sc-embed p {
  margin: 1em 0;
}

.sc-player .sc-embed.active{
  left: 25%;
  top: 5%;
}


.sc-player .sc-embed-toggle{
  position: absolute;
  top: 10px;
  right: 10px;
}

.sc-player .sc-embed-toggle.active{
  /*left: -5000px;*/
}

.sc-player .sc-embed-close{
  position: absolute;
  top: 10px;
  right: 20px;
}


/* utilities */

.sc-player .hidden {
  display: none;
}

.sc-player-engine-container{
  width: 1px;
  height: 1px;
  position: fixed;
  top: 2px;
  left: 2px;
}


/* ---------------------------------------------------------------------------------------------------------- 
10 Soundcloud Player Colors -------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */

.sc-player {
  color: #fff;
}

.sc-player.special {
  border: 2px solid #ff3300;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  padding: 5px;
}

.sc-player a {
  text-decoration: none;
  color: #fff;
}

/* scrubber */

.sc-scrubber {
  background-color: #e5e5e5;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
}

.sc-scrubber .sc-time-span {
  background-color: #fff;
}

.sc-scrubber .sc-time-span img {
  height: 30px;
  width: 100%;
  background-color: #000;
}

.sc-scrubber .sc-buffer, .sc-scrubber .sc-played {
  background-color: #000;
  opacity: 0.4;
}

.sc-scrubber .sc-played {
  background-color: #000;
  opacity: 0.4;
}

/* controls */

.sc-player .sc-controls a {
  color: transparent;
  background: url('img/play.png') 0px 10px no-repeat;
}

.sc-player .sc-controls a:hover {
  background: url('img/play-hover.png') 0px 10px no-repeat;
}

.sc-player .sc-controls a.sc-pause {
  background: url('img/play.png') 0px 10px no-repeat;
}

.sc-player .sc-controls a.sc-pause:hover{
  background: url('img/play-hover.png') 0px 10px no-repeat;
}

.sc-player.playing .sc-controls a.sc-pause{
  background: url('img/pause.png') 0px 10px no-repeat;
}

.sc-player.playing .sc-controls a.sc-pause:hover{
  background: url('img/pause-hover.png') 0px 10px no-repeat;
}  

.sc-scrubber .sc-time-indicators{
  background: #000;
  color: #fff;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  padding: 2px;
  font-size: 0.4em;
  font-weight: normal;
  line-height: 1em;
}

/* Track listings*/

.sc-player.playing ol.sc-tracklist li.active, .sc-player.playing ol.sc-tracklist li:hover {
background-color: brown;
color: #fff;
}

.sc-player ol.sc-trackslist li.active, .sc-player ol.sc-trackslist li:hover {
  background-color: #000;
  color: #fff;
}

.sc-player ol.sc-trackslist li.active a {
  color: #fff;
}

.sc-track-duration {
  
}

/* Track info*/

.sc-player .sc-info{
  background: #000;
  opacity: 0.9;
}

.sc-player .sc-info-toggle{
  background: url('img/info.jpg') no-repeat 0px 3px;
  width: 25px;
  height: 25px;
}

.sc-player .sc-info-toggle:hover{
  
}

.sc-player .sc-info-close{
  background: #000;
  color: #e8e8e8;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  padding: 2px 4px;
  font-weight: bold;
}

/* Track info*/

.sc-player .sc-embed{
  background: #000;
  opacity: 0.9;
}

.sc-player .sc-embed-toggle{
  background: url('img/code.jpg') no-repeat 0px 3px;
  width: 25px;
  height: 25px;
}

.sc-player .sc-embed-toggle:hover{
  
}

.sc-player .sc-embed-close{
  background: #000;
  color: #e8e8e8;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  padding: 2px 4px;
  font-weight: bold;
}


/* ADDITIONAL SCPLAYER STYLES*/
.last_player .sc-controls, 
.last_player .sc-info-toggle,
.last_player .sc-embed-toggle {
  display: none;
}

.sc-player.playing .sc-trackslist .track-num, .sc-player.playing .sc-trackslist a {
  background: #9d5445;
}
  
.sc-player textarea {
  margin-top: 1em;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
		width: 100%;
	height: 100px;
	  }

/*
 * CSS Styles that are needed by jScrollPane for it to operate correctly.
 *
 * Include this stylesheet in your site or copy and paste the styles below into your stylesheet - jScrollPane
 * may not operate correctly without them.
 */

.jspContainer
{
	overflow: hidden;
	position: relative;
}

.jspPane
{
  	position: absolute;
}

.jspVerticalBar
{
	position: absolute;
	top: 0;
	right: 0;
	width: 10px;
	height: 100%;
  	
  	background: #5a5a5a;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}

.jspHorizontalBar
{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 16px;
	
}

.jspVerticalBar *,
.jspHorizontalBar *
{
	margin: 0;
	padding: 0;
}

.jspCap
{
	display: none;
}

.jspHorizontalBar .jspCap
{
	float: left;
}

.jspTrack
{
	padding: 0 3px;
	position: relative;

}

.jspDrag
{
	background: #889A82;
	position: relative;
	top: 0;
	left: 0;
	cursor: pointer;
  
  	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
  	
}

.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag
{
	float: left;
	height: 100%;
}

.jspArrow
{
	/*background: #50506d;*/
	text-indent: -20000px;
	display: block;
	cursor: pointer;
}

.jspArrow.jspDisabled
{
	cursor: default;
	/*background: #80808d;*/
}

.jspVerticalBar .jspArrow
{
	height: 3px;
}

.jspHorizontalBar .jspArrow
{
	width: 3px;
	float: left;
	height: 100%;
}

.jspVerticalBar .jspArrow:focus
{
	outline: none;
}

.jspCorner
{
	background: #eeeef4;
	float: left;
	height: 100%;
}

/* Yuk! CSS Hack for IE6 3 pixel bug :( */
* html .jspCorner
{
	margin: 0 -3px 0 0;
}

/* TWITTER FEED Styles */
#twitter div {
  	color: #ffffff;
    padding: 20px 0;
}

#twitter ul li {
    margin-bottom:5px;
  clear: both;
}

#twitter span.in-reply-to-meta {
  display: none;
}

#twitter span.intent-meta {
  margin-bottom: 20px;
}

#twitter span.entry-content a, #twitter span.entry-meta a {
  color: #eeeeee;
}

#twitter .follow-button,
#twitter .xavisys-link {
    margin:0 10px 10px 25px;
}

#twitter .entry-content {
  display: block;
  line-height: 1.5em;
  font-family: TimesNewRoman, serif;
  font-style: italic;
  font-size: 1.2em;
  margin: 1em;
}

#twitter .entry-meta {
    display: block;
  	float: left;
    font-size:80%;
}

#twitter .intent-meta {
  display: block;
  float: right;
}

#twitter .intent-meta a {
    background: url(img/everything-spritev2.png); /** from Twitter resources */
    display: inline-block;
    height: 16px;
    text-indent: -9999px;
    width: 16px;
  margin-right: 30px;
}
#twitter .intent-meta a.in-reply-to {
    background-position: 0 center;
}
#twitter .intent-meta a:hover.in-reply-to {
    background-position: -16px center;
}
#twitter .intent-meta a.favorite {
    background-position: -32px center;
}
#twitter .intent-meta a:hover.favorite {
    background-position: -48px center;
}
#twitter .intent-meta a.retweet {
    background-position: -80px center;
}
#twitter .intent-meta a:hover.retweet {
    background-position: -96px center;
}

span.twitterwidget-title {
  display: block;
  width: 100%;
  padding-left: 20px;
  font-family: TimesNewRoman, serif;
  font-size: 1.5em;
}

#twitter.events span.twitterwidget-title {
  background: url('img/twitter-small-green.png') center left no-repeat;
}

#twitter.events span.twitterwidget-title a {
  color: #58813f;
}

#twitter.bio span.twitterwidget-title {

  background: url('img/twitter-small-yellow.png') center left no-repeat;
}

#twitter.bio span.twitterwidget-title a {
  color: #ead08e;
}

#twitter.contact span.twitterwidget-title {
  background: url('img/twitter-small-blue.png') center left no-repeat;
}

#twitter.contact span.twitterwidget-title a {
  color: #99cccc;
}

#twitter.contact div {
  padding: 10px 0;
}