/* @override 
	http://henrystrange.com/wp-content/themes/strange/style.css
	http://henrystrange.com/wp-content/themes/strange_minimal/style.css
*/

/*
Theme Name: Henry Strange Minimal 2013
Theme URI: http://henrystrange.com
Description: Exclusive theme for Henry Strange designed and coded by Terrence Scoville.
Version: 1.0
Author: Terrence Scoville
Author URI: http://terrencescoville.com/
Tags: white, two-columns
License: GNU General Public License v2.0
License URI: http://www.gnu.org/licenses/gpl-2.0.html

*/

/*
HTML Boilerplate styles can be found in the html5-boilerplate/css directory.
*/

/* WordPress Required Styles */
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.alignleft {
	float: left;
}

.alignright {
	float: right;
}

.wp-caption {
	border: 1px solid #ddd;
	text-align: center;
	background-color: #f3f3f3;
	padding-top: 4px;
	margin: 10px;
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}

.wp-caption img {
	margin: 0;
	padding: 0;
	border: 0 none;
}

.wp-caption-dd {
	font-size: 11px;
	line-height: 17px;
	padding: 0 4px 5px;
	margin: 0;
}

.sticky {
	background: #f7f7f7;
	padding: 0 10px 10px;
}
	
.sticky h2 {
	padding-top: 10px;
}

/* 
  style.css contains a reset, font normalization and some base styles.
  
  credit is left where credit is due.
  additionally, much inspiration was taken from these projects:
    yui.yahooapis.com/2.8.1/build/base/base.css
    camendesign.com/design/
    praegnanz.de/weblog/htmlcssjs-kickstart
*/

/* 
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, figure, footer, header, 
hgroup, menu, nav, section, menu,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}                  

article, aside, figure, footer, header, 
hgroup, nav, section { display:block; }

nav ul { list-style:none; }

blockquote, q { quotes:none; }

blockquote:before, blockquote:after,
q:before, q:after { content:''; content:none; }

a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; }

ins { background-color:#ff9; color:#000; text-decoration:none; }

mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom:1px dotted #000; cursor:help; }

/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0; }

hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }

input, select { vertical-align:middle; }
/* END RESET CSS */


/*
fonts.css from the YUI Library: developer.yahoo.com/yui/
          Please refer to developer.yahoo.com/yui/fonts/ for font sizing percentages

There are three custom edits:
 * remove arial, helvetica from explicit font stack
 * make the line-height relative and unit-less
 * remove the pre, code styles
*/
body { font:13px sans-serif; *font-size:small; *font:x-small; line-height:1.22; }

table { font-size:inherit; font:100%; }

select, input, textarea { font:99% sans-serif; }


/* normalize monospace sizing 
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp { font-family: monospace, sans-serif; }
 


/* 
 * minimal base styles 
 */


/* #000 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ 
body, select, input, textarea { color:#000; }

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */ 
 
/* www.aestheticallyloyal.com/public/optimize-legibility/ */ 
h1,h2,h3,h4,h5,h6 { font-weight: bold; text-rendering: optimizeLegibility; }

/* maxvoltar.com/archive/-webkit-font-smoothing */
html { -webkit-font-smoothing: antialiased; }

 
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a { -webkit-transition: color .5s linear; -moz-transition: color .5s linear; }
a:hover, a:active { outline: none; }

a, a:active, a:visited { color:#607890; }
a:hover { color:#036; }


ul { margin-left:30px; }
ol { margin-left:30px; list-style-type: decimal; }

small { font-size:85%; }
strong, th { font-weight: bold; }

td, td img { vertical-align:top; } 

sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; }

pre { 
  padding: 15px; 
  
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}

/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; *vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button { cursor: pointer; }


/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301 
   Also: hot pink. */
::-moz-selection{ background: #f00; color:#fff; text-shadow: none; }
::selection { background:#f00; color:#fff; text-shadow: none; } 

/*  j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #FF5E99; } 


/* always force a scrollbar in non-IE */
html { overflow-y: scroll; }

/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }
 
/* bicubic resizing for non-native sized IMG: 
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }



/* 
 * Non-semantic helper classes 
 */

/* for image replacement */
.ir { display:block; text-indent:-999em; overflow:hidden; background-repeat: no-repeat; }

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display:none; visibility:hidden; } 

/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/ 
   Solution from: j.mp/visuallyhidden - Thanks Jonathan Neal! */
.visuallyhidden { position:absolute !important;    
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* >> The Magnificent CLEARFIX << */
.clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.clearfix { display: inline-block; }
* html .clearfix { height: 1%; } /* Hides from IE-mac \*/
.clearfix { display: block; }




/* 
	@group  Primary Styles
	Author: Terrence Scoville
*/

body { 	background: #000 url(images/bg.jpg) repeat-x top center; color: #eee;
	min-width: 960px; text-rendering: optimizeLegibility; }

#banner-wrapper {
}

a, a:active, a:visited {color: #c00; }
a:hover { color: #f00; }
#main a:hover { color: #f00 !important; }
#main a:hover { -webkit-transition: color .5s linear; -moz-transition: color .5s linear; }


#container {
		background: none;
		width: 960px;
		margin: 0 auto;
}

#banner {	
	display: block;
	width: 100%;
	min-width: 960px;
	z-index: 10;
	position: relative;
}

#banner-content {
	width: 960px;
	margin: 0 auto;
}

#banner-content h1 {
	padding: 25px 0 20px;
}

#banner-content h1 a {
	background: url(images/hs_logo.png) no-repeat;
	color: transparent;
	display: block;
	font-size: 0.1em;
	height: 175px;
	text-indent: -1000em;
	width: 960px;
}
/* @media only screen and (-webkit-min-device-pixel-ratio: 2) {
     #banner-content h1 a {
          background: url(images/hs@2x.png) no-repeat;
          background-size: 960px 160px;
     }
} */

.latest-tweet {
	color: #ccc;
	font-size: 1.3em;
	line-height: 1.75em;
	text-shadow: 1px 1px 2px #000000;
	width: 640px;
	margin: 0 auto;
	padding: 40px 0;
	text-align: center;
}
.isplaying {
	color: #ccc;
	font-size: 1.3em;
	line-height: 1.75em;
	text-shadow: 1px 1px 2px #000000;
	width: 640px;
	margin: 0 auto;
	padding: 54px 0;
	text-align: center;
}
.isplaying strong {
	 color: #fff;
 	 font-size: 1.2em;
 	 line-height: 1.4em;
}
.isplaying a {
	 color: #ccc !important;
	 display: block;
	 text-decoration: none;
}
#nav {
	margin: 0;
	width: 680px;
}
#social-nav {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	padding-top: 15px;
	width: 260px;
	text-align: right;
}
.twitter-follow-button {
	margin-left: 18px;
}
#navigation {
	border: 2px solid #600;
	border-width: 2px 0;
	width: 940px;
	margin: 0 auto;
	text-align: left;
	position: relative;
}
#nav li { display: inline-block; }
#nav li a,
#nav li a .hover,
#nav li.current {
	color: #bbb;
	display: inline-block;
	font-size: 1.4em;
	font-weight: bold;
	margin: 0 30px 0 0;
	padding-left: 0;
	padding-right: 0;
	padding-bottom: 15px;
	padding-top: 15px;
	position: relative;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	text-shadow: 0px -1px 1px #000000;
	filter: dropshadow(color=#000000, offx=0, offy=-1);
	-webkit-transition-property: color, text-shadow;
    -webkit-transition-duration: 0.5s;
    -webkit-transition-timing-function: linear;
	-moz-transition-property: color, text-shadow;
    -moz-transition-duration: 0.5s;
    -moz-transition-timing-function: linear;
	-o-transition-property: color, text-shadow;
    -o-transition-duration: 0.5s;
    -o-transition-timing-function: linear;
	transition-property: color, text-shadow;
    transition-duration: 0.5s;
    transition-timing-function: linear;
}

#nav li a:hover,
#nav li.current { color: #f00; text-shadow: 0px 0px 10px #f00; filter: dropshadow(color=#3f00cc, offx=0, offy=0); }

#hero {
	background-color: #eee !important;
	background-position: center 90px !important;
	background-repeat: repeat-y !important;
	height: 480px;
	width: 100%;
	min-width: 980px;
	-webkit-box-shadow: inset 0px 0px 15px 0px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: inset 0px 0px 15px 0px rgba(0, 0, 0, 0.75);
	box-shadow: inset 0px 0px 15px 0px rgba(0, 0, 0, 0.75);
}
.page-id-4 #hero { background-position: center 90px !important; }
.hero-small {
	height: 360px !important;
}
.hero-small #social {
	margin: 0 auto 0 auto !important;
}
.hero-wrap {
	background: url(images/slider_bars.png) center 0px no-repeat;
	height: 401px;
	margin-top: -40px;
	padding-top: 40px;
	overflow: hidden;
	position: relative;
	z-index: -10;
}
.hero-wrap a { margin: 0; }
.hero-side {
	position: absolute;
	right: 0;
	bottom: 0;
	top: 90px;
	width: 344px;
	height: 240px;
	padding: 15px;
}
.hero-banner {
	background: url(images/wander-slow.jpg);
	width: 980px;
	height: 90px;
}
.hero-banner .track_box_container {
	border: 0px solid !important;
	padding: 10px 20px 0 10px;
	height: 80px;
	width: 320px !important;
	margin: 0 0 0 0 !important;
	background: none !important;
}
.hero-banner .sc-player {
	background-color: #ccc;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	width: 320px !important;
	margin: 0 !important;
}
.hero-banner .sc-info { width: 320px !important; margin-left: 0 !important; }
.hero-banner .sc-player .sc-artwork-list {
	display: none;
}
.slideshow {
	width: 640px;
	height: 310px;
	margin: -40px auto 0;
	overflow: hidden;
	z-index: -10;
	position: relative;
}
.acafool {
	font-family: 'Just Another Hand', cursive;
	font-size: 3.6em;
	padding-top: 75px;
	text-transform: uppercase;
}
.video {
	text-align: center;
	margin-bottom: 25px;
}
.slideshow a {
	margin: 0 auto;
	width: 640px;
	height: 310px;
}
.nextshow {
	background: url(images/nextshow_bg.png) top center;
	width: 100%;
	height: 215px;
	margin-top: -44px;
}

#main {
	background-color: transparent;
	width: 940px;
	margin: 0 auto 30px;
	padding: 15px 0 0 0;	
	text-align: left;
}
#col1,
#col2,
#col3 {
	float: left;
	width: 31%;
	margin-right: 3.61%;
}
#col1 {
	width: 566px;
	margin: 0 30px 30px 0;
}
#col2 {
	margin-right: 0;
	width: 344px;
}
#hero-player {
	padding-top: 165px;
	height: 225px;
	width: 600px;
	margin: 0 auto;
}
#hero-player object {
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.75);
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.75);	
}

#social { position: absolute; bottom: 15px; margin: 20px auto 0; display: none; }
#social li { float: left; list-style-type: none; }
#social li a {
	width: 48px; height: 48px;
	display: block;
	float: left;
	font-size: 0.1em;
	line-height: 0.1em;
	text-indent: -9999em;
	margin-right: 15px;
	overflow: hidden;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.75);
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.75);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
#facebook {
	background: url("images/social.png") left top;
}
#soundcloud {
	background: url("images/social.png") -48px top;
}
#soundcloud-widget {
	margin-bottom: 18px;
}
.rotatingtweets {
	background-color: #333;
	color: #ccc;
	font-size: 1.4em !important;
	line-height: 1.35em;
	-webkit-border-radius: 5px;
	border-radius: 4px;
	position: relative;
	height: 150px;
}
.rtw_main {
	padding: 10px;
}
.rotatingtweet {
	position: absolute;
	height: 150px;
	bottom: 0;
	left: 0;
	right: 0;
}
.rtw_meta a {
	color: #555 !important;
	font-size: 0.8em;
	position: absolute;
	bottom: 10px;
	right: 10px;
}
.follow-button {
	text-align: right;
}
.instagram-image {
	background-color: #333 !important;
	margin: 0 0 20px 0 !important;
	padding: 5px !important;
}
.instagram-image a {
	display: block;
	width: 152px;
	height: 152px;
}
#instagram-image-1,
#instagram-image-3,
#instagram-image-5,
#instagram-image-7,
#instagram-image-9 {
	margin-right: 20px !important;
}
#book {
	background: #ccc;
	color: #c00 !important;
	width: 155px !important;
	text-indent: 0 !important;
	font-weight: bold;
	font-size: 1.4em !important;
	line-height: 48px !important;
	text-align: center;
	text-decoration: none;
}
.wpcf7 {
	margin: 0 auto;
	padding: 0 5px !important;
}
.wpcf7 p {
	line-height: 2.1em;
	margin-bottom: 0 !important;
}
h2 {
	font-size: 1.6em;
	padding: 0 0 15px 0;
}
h2.page-title,
div.page-title {
	font-weight: normal;
	border-bottom: 3px solid #555;
	color: #888;
	font-size: 1.4em;
	line-height: 1.2em;
	padding: 0 0 15px 0;
	text-transform: uppercase;
	letter-spacing: -1px;
	text-align: left;
}
h2.page-title a,
div.page-title a {
	border-bottom: 1px solid #f00;
	text-decoration: none;
}

#content {
	max-width: 566px;
	width: 100%;
	padding: 0 30px 20px 0;
	float: left;
}

.featured-image {
	float: left;
	width: 160px;
	height: 160px;
	margin: 0 20px 20px 0 !important;
}
.article a img {
	border: 1px solid #333;
	display: block;
	line-height: 0;
	padding: 3px;
	-webkit-transition: border-color .5s linear;
	-moz-transition: border-color .5s linear;
	-o-transition: border-color .5s linear;
	transition: border-color .5s linear;
}
.article .topspin-store a img {
	border-width: 0px !important;
}
.article a:hover img { border-color: #f00; }
.article {
	padding-top: 20px;
	position: relative;
}
.home article,
.blog article {
	border-bottom: 1px solid #333;	
}
article p {
	line-height: 1.5em;
	margin-bottom: 1.5em;
}
.article img.alignleft {
	margin: 0 20px 20px 0;
}
.article hr {
	border-top: 1px solid #ccc;
	height: 0px;
	clear: left;
}
.article blockquote p {
	color: #666;
	line-height: 1.5em;
	margin-bottom: 1.5em;
	padding-left: 20px;
	border-left: 1px solid #ccc;
}
article h3 { color: #eee; font-size: 1.7em; margin-bottom: 0.5em; }
article h3 a,
article h3 a:visited {
	color: #eee !important;
	text-decoration: none;
	letter-spacing: -1px;
}
article h4 {
	color: #eee !important;
	font-family: "Iceland", Helvetica, sans-serif;
	font-size: 1.4em;
	text-decoration: none;
	letter-spacing: -1px;
	margin-bottom: 20px;
	padding-top: 10px;
}
article p.readmore { text-align: right; }
article p.readmore a {
	color: #666;
	font-size: 1.4em;
	text-transform: lowercase;
	text-decoration: none;
}
.article p {
	line-height: 1.5em;
	margin-bottom: 1.5em;
}
article footer p {
	clear: both;
	color: #666;
	line-height: 1.5em;
	margin-bottom: 0em !important;
	border-top: 1px solid #555;
	padding: 20px 0;
}
article .navigation {
	border-top: 1px solid #555;
	padding-top: 20px;
	font-size: 1em;
	line-height: 1.35em;
	margin-bottom: 1.5em;
}
article .navigation div { float: left; width: 50%; }
article .navigation div.next-post { text-align: right; }

#full-content {
	padding: 0 20px 0 20px;
}

.gallery {
	padding-bottom: 20px;
}
.gallery-item {
	margin: 0 0 30px 0 !important;
}
.gallery-item img {
	border-color: #eee !important;
}
p.attachment {
	text-align: center;
	border-top: 3px solid #c00;
	border-bottom: 1px solid #ccc;
	padding: 20px 0;
}
#image-nav div {
	width: 440px;
	float: left;
	padding: 0 20px 0 0;
	margin: 20px 0;
}
#image-nav img {
	float: left;
	margin-right: 20px;
}
.nav-right {
	border-left: 1px solid #ccc;
	width: 439px !important;
	padding: 0 0 0 20px !important;
}
.nav-right img {
	float: right !important;
	margin: 0 0 0 20px !important;
}

#sidebar {
	width: 344px;
	float: left;
}
#sidebar ul {
	list-style-type: none;
	margin: 0;
}

#sidebar li {
	padding-bottom: 15px;
}

#sidebar h2 {
	border-bottom: 3px solid #555;
	color: #888;
	font-size: 1.4em;
	font-weight: normal;
	line-height: 1.2em;
	margin-bottom: 20px;
	padding-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: -1px;
	text-align: left;
}
#sidebar h2 a { text-decoration: none; display: block; }
#sidebar section {
	margin-bottom: 20px;	
}
section#newsletter,
section#massive { margin-bottom: 0px; }

#massive h2 {
	font-size: 2.1em;
	margin: -15px 0 0;
	text-transform: uppercase;
	letter-spacing: -1px;
	border-bottom: 0;
}

#massive h2 a {
	background: url(images/patches.gif) no-repeat right center;
	line-height: 1.2em;
	border-bottom: 3px solid #c00;
	color: #c00;
	display: block;
	text-decoration: none;
	padding: 15px 0 15px 0;
}
#massive h2 a:hover { color: #f00; }

section#newsletter {
	 border-bottom: 1px solid #c00;
	 padding-bottom: 15px;
	 margin-bottom: 15px;
}

#topspin-store-1 ul.topspin-item-listings li.topspin-item.buy_button.first.row-start div.topspin-item-canvas {
	
}

/* START BLACK FRIDAY */

.page-id-219 #main {
	background: #000;
}
.page-id-219 footer {
	background-color: #eee !important;
	color: #ccc !important;
}

.page-id-219 h2.page-title {
	color: #ff1e01;
	border-color: #ff1e01;
}
table.topspin-simplified-item-listings, table.topspin-simplified-item-listings td {
	color: #aaa !important;
}
.page-id-219 a,
.page-id-219 a:link,
.page-id-219 a:active,
.page-id-219 a:visited {
	color: #ff1e01;	
}
.page-id-219 table.topspin-simplified-item-listings a:hover,
table.topspin-simplified-item-listings tr.topspin-item-buy a.topspin-buy:hover {
	color: #ff0000 !important;
}
table.topspin-simplified-item-listings tr.topspin-item-buy {
	border-bottom: 1px solid #333 !important;
}
#footer-content {
	border-color: #333 !important;
}
table.topspin-simplified-item-listings tr.topspin-item-buy a.topspin-buy {
	background-color:#ff0000;
	color:#000;
	text-decoration:none;
	padding:5px 10px;
	display:block;
	width:25%;
	margin:15px auto 30px auto;
	-webkit-border-radius: 999px;
	-moz-border-radius: 999px;
	border-radius: 999px;
	background: #ff0000; /* Old browsers */
	background: -moz-linear-gradient(top, #ff0000 0%, #cc0000 100%) !important; /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff0000), color-stop(100%,#cc0000)) !important; /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #ff0000 0%,#cc0000 100%) !important; /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #ff0000 0%,#cc0000 100%) !important; /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #ff0000 0%,#cc0000 100%) !important; /* IE10+ */
	background: linear-gradient(top, #ff0000 0%,#cc0000 100%) !important; /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff0000', endColorstr='#cc0000',GradientType=0 ) !important; /* IE6-9 */
	-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
	-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
	text-shadow: 0 0 1px #ff1e01 !important;
}

/* END BLACK FRIDAY */

.download-modal {
	background: url(http://stephanjacobs.net/blog/wp-content/themes/sj/images/thank-you.jpg);
	color: #eee !important;
	display: none;
	width: 460px;
	height: 359px;
	padding: 10px 20px;
	text-align: center;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.75);
	-webkit-box-shadow: 0 0 5px rgba(0,0,0,0.75);
	-moz-box-shadow: 0 0px 5px rgba(0,0,0,0.75);
}
#lean_overlay {
	position: fixed;
	z-index:100;
	top: 0px;
	left: 0px;
	height:100%;
	width:100%;
	background: #000;
	display: none;
}
.download-modal h5 {
	color: #eee !important;
	font-size: 1.4em;
	margin-bottom: 20px;
}
.download-modal .pricing-ui {
	display: table;
	margin: 0 auto 20px;
}
.download-modal .nyp {
	font-size: 1.2em;
}
.download-modal .pricing-ui {
    display: table;
    vertical-align: middle; /* align nyp label with input box baseline */
}
.download-modal .name-price {
    display: table-row;
}
.download-modal .name-price > * {
    display: table-cell;
    vertical-align: middle;
}
.currency-symbol {
	font-size: 200%;
	padding: 0 5px 0 10px;
}
.download-modal .donate_amount {
	width: 3em;
	margin-right: 0.25em;
	text-align: right;
	font-size: 200%;
}
.currency { color: #777; }
.donate-button {
	width: 100px;
	height: 30px;
	line-height: 30px;
	font-size: 1.6em;
}
.icon_warning { display: block; color: red; margin: -10px 0 10px; } 

ul.shows { margin: 10px 0 15px 0 !important; }
.shows li { list-style-type: none; border-bottom: 1px solid #ccc; }
.shows a {
	display: block;
	color: #eee;
	text-decoration: none;
	line-height: 1em;	
	padding: 10px 0;
}

.date {
	color: #666;
	display: block;
	font-size: 1.1em;
	text-transform: uppercase;
}
.place {
	color: #c00;
	display: block;
	font-size: 1.6em;
}
.shows a:hover .place { -webkit-transition: color .5s linear; -moz-transition: color .5s linear; }
.shows a:hover .place { color: #f00; }
#all {
	display: block;
	border-bottom: 4px solid #c00;
	font-size: 1.4em;
	font-weight: bold;
	margin-bottom: 15px;
	padding-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: -1px;
	text-decoration: none;
}

#shows-table {
	width: 100%;
	margin-bottom: 60px;
}
#shows-table a {
	display: block;
	padding: 10px 0;
	text-decoration: none;
}
#shows-table tr {
	border-bottom: 1px solid #ccc;
}
#shows-table td {
	vertical-align: middle;
}
.page .shows li,
#sidebar .shows li {
	position: relative;
}
.page .shows li a:hover {
	color: #eee !important;
}
.page .shows .showicons,
#sidebar .shows .showicons {
	position: absolute;
	padding: 0px;
	right: 0;
	top: 0;
	width: 25%;
}
#sidebar .shows .showicons { width: 120px; }
.show .showicons {
	background-color: #ddd;
	float: left;
	width: 530px;
	padding: 0 10px;
	margin-bottom: 20px;
}
.page .shows li a.showitem {
	width: 75%;
}
.page .shows li a.showicon,
#sidebar .shows li a.showicon,
.show a.showicon {
	color: #777;
	float: right;
	font-size: 0.9em;
	font-weight: bold;
	padding: 0px;
	margin: 14px 0 0 20px;
	text-align: center;
	text-decoration: none;
}
#sidebar .shows li a.showicon { width: 100px; line-height: 24px; margin-top: 11px; text-align: left; text-indent: 10px; }
.show a.showicon { float: left;	margin: 20px; }
.page .showicon span,
.show .showicon span,
#sidebar .showicon span {
	display: block;
	width: 48px;
	height: 48px;
	margin: 0 auto 5px auto;
	text-indent: -999px;
}
#sidebar .showicon span { width: 24px; height: 24px; float: left; }
.page .shows li .skurl {
	background: url(images/shows.png) no-repeat 0px -48px;
}
.page .shows li .fburl,
#sidebar .shows li .fburl,
.show .fburl {
	background: url(images/shows.png) no-repeat -48px -48px;
}
#sidebar .shows li .fburl { background-position: -24px -120px; }
.page .shows li .tixurl,
#sidebar .shows li .tixurl,
.show .tixurl {
	background: url(images/shows.png) no-repeat -96px -48px;
}
#sidebar .shows li .tixurl { background-position: -48px -120px; }
.page .shows li .skurl:hover,
.show .skurl:hover {
	background: url(images/shows.png) no-repeat 0px 0px;
}
.page .shows li .fburl:hover,
.show .fburl:hover {
	background: url(images/shows.png) no-repeat -48px 0px;
}
#sidebar .shows li .fburl:hover { background-position: -24px -96px; }
.page .shows li .tixurl:hover,
.show .tixurl:hover {
	background: url(images/shows.png) no-repeat -96px 0px;
}
#sidebar .shows li .tixurl:hover { background-position: -48px -96px; }
.show img { float: left; margin: 0 !important; padding: 0 !important; }
.show .show-detail {
	color: #fff;
	position: absolute;
	padding: 20px 210px 0 20px;
	margin-bottom: 20px;
	text-align: left;
	left: 0;
	right: 0;
}
.show .date {
	color: #ddd;
	font-size: 1.4em;
	font-weight: bold;
}
.show .place {
	color: #fff;
	font-size: 2.4em;
	font-weight: bold;
}
.show .info {
	font-size: 1.4em;
}

.info {
	font-size: 1.1em;
	line-height: 1.35em;
}

#sidebar .shows a {
	margin-right: 120px;
}

#video {
	text-align: center;
}

.front-photo {
	margin: 0 4px 4px 0 !important;	
}

ul#media-wrapper {
	padding: 10px 0 20px 0;
	margin: 0px 20px;
	list-style-type: none;
	display: table;
	width: 920px
}

#media-wrapper li {
	display: table-cell;
	width: 25%;
}

#media-wrapper a {
	display: block;
	text-align: center;
	text-decoration: none;
}
#media-wrapper img {
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}
#media-wrapper span {
	display: block;
	font-weight: bold;
	text-align: center;
	margin-top: 10px;
	text-transform: uppercase;
}
#massive-patches {
	background: url(images/massive_box.jpg) 40px 20px no-repeat;
	padding: 40px 0 40px 350px;
}

#top-bar-wrapper {
	height: 32px;
	position: absolute;
	top: -32px;
	left: 0px;
	right: 0px;
}
#top-bar {
	width: 920px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
}
#top-bar .fb-like,
#top-bar .twitter-follow-button { float: left; margin-top: 6px; margin-right: 5px; }
.soundcloud,
.spotify,
.paypal { margin: 5px 0 0 5px; }
#translate {
	 position: absolute;
	 right: 20px;
	 top: 5px;
}
.goog-te-gadget-simple { border: 1px solid #444 !important; font-size: 1em !important; height: 20px; padding: 0 !important; }
#footer {
	color: #777;
	padding: 0 0 10px 0;
	width: 980px;
	margin: 0 auto;
}
#footer-content {
	border-top: 3px solid #ccc;
	padding: 20px 0;
	max-width: 940px;
	margin: 0 auto;
}
#copyright {
	float: left;
}
#afterglow {
	float: right;
}
#music-cats {
	background: url(images/rec_shelf.jpg);
	width: 920px;
	margin: 0;
}
li.music-cat-item {
	list-style-type: none;
	width: 460px;
	height: 280px;
	float: left;
	margin: 0 0 0 0;
	position: relative;
}
li.music-cat-item a { text-decoration: none; display: block; height: 280px; }
span.album-title {
	color: #fff;
	font-size: 1.7em;
	font-weight: bold;
	position: absolute;
	bottom: 0;
	width: 460px;
	line-height: 42px;
	text-align: center;
	text-shadow: 0 -1px 2px #000000;
}
.cover-1,.cover-2,.cover-3 {
	background-color: #eee;
	box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.5);
	box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.5);
}
.cover-1 {
	position: absolute;
	left: 130px;
	top: 33px;
	z-index: 100;
	width: 200px;
	height: 200px;
}
.cover-2 {
	position: absolute;
	left: 35px;
	top: 83px;
	z-index: 50;
}
.cover-3 {
	position: absolute;
	left: 275px;
	top: 83px;
	z-index: 50;
}
.t-1,.t-2,.t-3 {

}
.t-1 {
	position: absolute;
	left: 130px;
	top: 33px;
	z-index: 100;
	width: 200px;
	height: 200px;
}
.t-2 {
	position: absolute;
	left: 35px;
	top: 83px;
	z-index: 50;
}
.t-3 {
	position: absolute;
	left: 275px;
	top: 83px;
	z-index: 50;
}

.album {
	border-top: 0px;
	float: left;
	width: 306px;
	margin-bottom: 20px;
}
.album .featured-image {
	margin: 0 auto !important;
	float: none !important;
}
.album h3 {
	text-align: center;
	font-size: 0.6em;
	margin-top: 10px;
}
.music-player {
	clear: left;
	padding: 10px 0 10px 0;
	height: 160px;
	border: 0px;
}
.track_box_container {
	border: 1px solid #555 !important;
	padding: 0 20px 0 0;
	height: 160px;
	background: #333;
}
.track_box_container #share-track {
	z-index: 999;
	position: relative;
	float: left;
	margin-left: 160px;
}
.track_box_container .the_facebook_button {
	height: 20px;
	width: 114px;
	float: left;
	margin-left: 20px;
}
.track_box_container h4 {
	color: #eee !important;
	font-size: 1.7em;
	text-decoration: none;
	letter-spacing: -1px;
	margin-left: 180px;
	margin-bottom: 10px;
}
.track_box_container h4 a {
	color: #eee;
	text-decoration: none;
}
.hero-banner .sc-player .sc-artwork-list {
	display: none;
}
.sc-player .sc-artwork-list li.active {
	margin-top: 1px;
}

/* @end */

/* @group Enter Site */

.enter {
	display: block;
	font-size: 1.8em;
	font-weight: bold;
	margin: 0 auto 30px auto;
	text-align: center;
}

/* @end */

/* @group Debut Album */

.page-id-1545 {
	background: #011229;
	color: #9ff;
}

.page-id-1545 #banner {
	display: none;
	visibility: hidden;
	height: 0;
	width: 0;
}

.page-id-1545 a {
	color: #39f;
}

.page-id-1545 #top-bar-wrapper {
	background-color: rgba(0,0,0,0.5);
}

.page-id-1545 #banner-wrapper,
.page-id-1545 #container {
	background: none;
}

#debut-hero {
	background: url(images/debut_web.jpg) no-repeat;
	width: 960px !important;
	height: 500px !important;
	margin: 0 auto;
	overflow: hidden;
}

#debut-hero a {
	display: block;
	height: 500px;
	margin: 0 -36px;
	min-width: 1024px;
	text-indent: -1000pt;
	font-size: 0.1pt;
}

#debut-wrapper {
	width: 976px;
	margin: 0 auto;
}
#debut-wrapper .cols {
	width: 944px;
	margin: 0 auto 48px;
}

#debut-wrapper ul#debut-stores {
	list-style-type: none;
	margin: 0 0 48px;
}

#debut-wrapper ul#debut-stores li {
	float: left;
	margin-left: 16px;
}
#debut-wrapper ul#debut-stores li a {
	background: -moz-linear-gradient(top,  rgba(0,102,255,0.15) 0%, rgba(0,102,255,0.5) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,102,255,0.15)), color-stop(100%,rgba(0,102,255,0.5)));
	background: -webkit-linear-gradient(top,  rgba(0,102,255,0.15) 0%,rgba(0,102,255,0.5) 100%);
	background: -o-linear-gradient(top,  rgba(0,102,255,0.15) 0%,rgba(0,102,255,0.5) 100%);
	background: -ms-linear-gradient(top,  rgba(0,102,255,0.15) 0%,rgba(0,102,255,0.5) 100%);
	background: linear-gradient(to bottom,  rgba(0,102,255,0.15) 0%,rgba(0,102,255,0.5) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#260c00ff', endColorstr='#800c00ff',GradientType=0 );
	border: 1px solid #06f;
	font-size: 1.2em;
	font-weight: bold;
	color: #9ff;
	width: 142px;
	padding: 16px;
	display: block;
	border-radius: 8px;
	text-decoration: none;
	-webkit-border-radius: 8px;
	text-align: center;
}
#debut-wrapper .left {
	float: left;
	width: 50%;
}
#debut-wrapper .left p {
	font-size: 1.2em;
	line-height: 1.6em;
	margin-bottom: 0.5em;
	padding-right: 32px;
}
#debut-wrapper .left:first-line {
	font-size: 1.6em;
	font-weight: bold;
	line-height: 1.7em;
}
#debut-wrapper .right {
	background-color: #eee;
	float: left;
	width: 50%;
	line-height: 15px;
	padding: 0;
	text-align: center;
	line-height: 15px;
}

.page-id-1545 #cob {
	background: #000 url(images/cob.jpg) no-repeat;
	width: 884px;
	padding: 0 32px 32px;
	margin: 0 auto 48px;
	box-shadow: #000 0 0 10px 0;
	-webkit-box-shadow: #000 0 0 10px 0;
	-moz-box-shadow: #000 0 0 10px 0;
}
.page-id-1545 #cob h2 {
	background: url(images/cob-logos.png) center bottom no-repeat;
	height: 128px;
	color: #fff;
	font-size: 0.1em;
	text-align: center;
	line-height: 0.1em;
	margin-bottom: 10px;
	padding: 0;
	letter-spacing: -1000em;
}
.page-id-1545 #cob .sub-title {
	color: #ccc;
	font-family: "Iceland", Helvetica, sans-serif;
	font-size: 2.8em;
	margin-bottom: 60px;
	text-align: center;
}
.page-id-1545 .shows li a:hover,
.page-id-1545 .shows li a:hover .place {
	color: #aff !important;
}
.page-id-1545 .shows {
	margin: 0 auto !important;
}
.page-id-1545 .shows li {
	border-color: #032;
}
.page-id-1545 .shows .date,
.page-id-1545 a.show-icon {
	color: #c04 !important;
	font-weight: bold;
}
.page-id-1545 .shows .place {
	color: #fff;
}
.page-id-1545 .shows .info {
	color: #698;
}
.page-id-1545 #enter-site {
	font-size: 2.4em;
	text-align: center;
	margin-bottom: 48px;
}
.page-id-1545 #enter-site a {
	text-decoration: none;
	border-bottom: 2px solid #39f;
	font-weight: bold;
	letter-spacing: -1px;
}
.page-id-1545 #footer { background: none; color: #aff; }
.page-id-1545 #footer-content { border-color: #049; max-width: 940px; }

/* @end */




/* 
 * print styles
 * inlined to avoid required HTTP connection www.phpied.com/delay-loading-your-print-css/ 
 */
@media print {
  * { background: transparent !important; color: #eee !important; text-shadow: none; }

  a, a:visited { color: #eee !important; text-decoration: underline; }

  a:after { content: " (" attr(href) ")"; } 

  abbr:after { content: " (" attr(title) ")"; }
  
  .ir a:after { content: ""; }  /* Don't show links for images */
  
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  
  img { page-break-inside: avoid; }

  @page { margin: 0.5cm; }

  p, h2, h3 { orphans: 3; widows: 3; }

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



/*
 * Media queries for responsive design
 */

@media all and (orientation:portrait) { 
  /* Style adjustments for portrait mode goes here */
  
}

@media all and (orientation:landscape) { 
  /* Style adjustments for landscape mode goes here */
  
}

/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)  
   Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
  
  
  /* Prevent iOS, WinMobile from adjusting font size */
  html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } 
}