/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the <body> tag 
will be appended with the "custom" class, like so: <body class="custom">. You can use 
the "custom" class to override *any* CSS declarations contained in the style.css file.

For example, if you wish to change the default link color to green, you would add the 
following declarations to this file:

	.custom a, .custom a:visited { color: #090; }	<--- This makes links green
	.custom a:hover { color: #00f; }				<--- This makes links blue when you mouse over them

WHY THIS WORKS:

By using the "custom" class, you are creating more specific CSS declarations for HTML
elements. CSS styling is applied through rules of specificity, and because declarations
prepended with .custom are more specific, they get applied when the page is rendered!

More information about styling your Thesis installation using this file can be found
in the User's Guide:
	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/
*/

.custom h1 {
	line-height: 1.8em;
	}

.custom a {
	text-decoration: none;
	}

/* Main nav styling */

.custom #header_area{display:none;}

.custom #header {
	border-bottom: none;
	height:  100px;
	width: 770px;
	padding-top: 1em;
	padding-bottom: 2em;
	background: transparent url('images/header.jpg') center no-repeat ;
	}

.custom #nav_area {
	background:#222222; 
	padding:0em 0;
	}
	
	.custom #nav_area ul {
		border-bottom:none; 
		border-left:none;
		}
		
/*		.custom #nav_area ul li {
			border-width:0; 
			margin-bottom:0; 
			padding-bottom:0; 
			background:none;
			}
*/

.custom #title_area {
	background:none; 
	padding:1em 0 1em 0; 
	border-bottom:none;
	}
	
	.custom #header {
	border-bottom: 1px solid #DDDDDD;
	}

.custom .full_width > .page {
	background: transparent;
	}

.custom .menu a {
	color: #ffffff;
	padding: .8em 1em .8em 1em;
	}

.custom .menu .current {
		    border: none;
		    background: #0066AA;
		    }

// Link experiments

.custom div.format_text a {
	text-decoration: none;
	}
		    
/* Social links */

/*.custom ul#tabs li:nth-child(4) {
	margin-right: 8.7em;
	}
*/

/*.custom .menu li:nth-child(5) {
	background: #444444;
	padding-left: 0.5em;
	padding-right: 25px;
	border-left: 1px solid #666666;
	border-right:  1px solid #666666;
	}
	
	.custom .menu .rss a {
	color: #ec962b;
	}
*/
/*
.custom ul#tabs li:nth-child(6) {
	
	background: #444444 url(images/mail.png) no-repeat scroll 100% 50%;
	-moz-background-clip: border;
	-moz-background-inline-policy: continuous;
	-moz-background-origin: padding;
	padding-right: 7px;
	padding-left: .4em;
	border-left: 1px solid #666666;
	}
*/

/* Twitter Link */

.custom .menu li:nth-child(5) {
	margin-left: 22em;
	}

.custom .menu li:nth-child(5) a {
	color: #AFEFF1;
	font-weight: bold;
	}

.custom .menu li:nth-child(5) a:hover {
	text-decoration:underline;
	}

.custom .menu rss ul a {
	-moz-background-clip: border;
	-moz-background-inline-policy: continuous;
	-moz-background-origin: padding;
	background: transparent url(images/icon-rss.png) no-repeat scroll 95% 50%;
	padding-left: 1.2em;
	padding-right: 2em;
	color: #ec962b;
	border-left: 1px solid #666666;
	border-right: 1px solid #666666;
	}

.custom .menu rss ul {
	background: #444444;
	}

// Sidebar Twists

.custom .sidebar h3 {
	letter-spacing: -0.03em;
	}
	
/*.custom h2 {
	letter-spacing: -0.04em;
	font-variant: small-caps;
	}*/

//***** Typekit Headlines *****//


.custom .headline_area h1 {
	font-family: "le-havre-1", "le-havre-2", Arial, sans-serif;
	font-size: 5em;
	font-weight: light;
	letter-spacing: .08em;
	}

.custom li.widget {
	line-height: 1.2em;
	}

// Image size fix

.custom a img {
	max-width: 550px;
	height: auto;
	}

.custom img.aligncenter {
	max-width: 550px;
	height: auto;
	}

.custom .menu .rss a {
	color: #E89d12;
	font-weight: bold;
	background: url('../images/icon-rss.png') 100% 50% no-repeat;
	padding: 0.8em 1em 0.8em 1em;
	}

// Affiliate images

.digital_aff img {
	margin-top: -100px;
	}

/* div.vinyl_aff img, div.digital_aff img {
	display:inline; 
	position:relative; 
	margin-left:375px;
}
*/
/*
div.vinyl_aff img {
	margin-left: 375px;
	}
*/
.yarpp_box {
	margin-top: -100px;
	}
	
.format_text .post_tags {
	width:360px;
	}
	

// Roskilde Promo subscription box

.custom div.promobox { 
	width: 170px;
	float: right ;
	border: 1px 2px 2px 1px; 
	background-color: #ff8001; 
	color: black; 
	padding:1em; 
	margin-bottom: 0.5em;
	margin-left: 1em; }
.custom div.promobox H3 { 
	font-size: 18px;
	font-weight: bold;
	margin-top:0em;
	margin-bottom: 0.4em;
	}
	
.custom div.promobox {
	font-size: 12px;
	}

.custom div.promobox li {
	margin-left: 1.5em;
	}