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

/*---:[ Set 1: solid background with slick borders around your "page" area ]:---*/

body.custom { padding-top: 0em; background-color: #3b1400; font: 62.5% Trebuchet MS, MyriadPro Regular, Microsoft San Serif, sans-serif; border-top: 0px solid #3b1400;
}

	.custom #container { margin-top: 0em; margin-bottom: 2em; background: #33332f; }

		.custom #page { background: #fff; }
		

#header {
	background-image:url(http://www.dripstick.com/blog/wp-content/themes/thesis/custom/images/dripstick_blog_header.jpg);
	background-repeat:no-repeat;
	height:55px;
}
#header #logo,#header #tagline {display:none;}

#footer {
	text-align:right;
}

.custom a, .custom a:visited { color: #7d9c3d; }
.custom a:hover {color: #3B1400;}
.custom a{-webkit-transition:color .5s ease-out}
.custom .format_text p { color: #3B1400; font-weight: normal; font-size: 1.07em;}


/*---:[ end Set 1 ]:---*/




/*---:[ headlines ]:---*/

.custom h1, .custom h2, .custom h3, .custom h4 { font-weight: bold; font-size: 1em; font-family: 'Trebuchet MS', 'MyriadPro Regular', 'Microsoft San Serif', sans-serif; }

.custom h1, .custom h2 { font-size: 2.2em; color: #3B1400;
}

.custom h2 a, .custom h2 a:visited { color: #3B1400; text-decoration: none; 
}

.custom h2 a:hover { color: #3B1400; }	
.custom h3 { font-weight: heavy; font-size: 1.286em; color: #3B1400;}
.custom .sidebar h3 { font-size: 1.286em; color: #3B1400; font-weight:heavy; font-variant:normal; }
.custom .sidebar { font-size: 9px; color: #7d9c3d; font-variant:normal; }



/*---:[ nav menu styles ]:---*/

.custom ul#tabs {
	background-image: none;
	list-style: none;
	border-left: 1px solid #CCCCCC;
	font-family: 'Trebuchet MS', 'MyriadPro Regular', 'Microsoft San Serif', sans-serif;
	font-weight: bold;
}

.custom ul#tabs li {
	font-size: 1.17em;
	line-height: 1em;
	padding: 0;
	background: #EFEFEF;
	border: 1px solid #CCCCCC;
	text-transform: uppercase;
	letter-spacing: 1px;
	float: left;
	border-left: none;
	font-weight: bold;
}

.custom ul#tabs li.current_page_item, .custom ul#tabs li.current-cat { 
	background: #fff; 
	border-bottom-color: #fff; }

.custom ul#tabs li a {
	display: block;
	line-height: 1em;
	color: #3B1400;
	text-transform: uppercase;
	letter-spacing: 2px;
}		
.custom ul#tabs li.rss {
	padding-right: 0;
	border: none;
	float: left;
	font-family: 'Trebuchet MS', 'MyriadPro Regular', 'Microsoft San Serif', sans-serif;
	text-transform: uppercase;
	background: none;
	font-size: 1.25em;
}




/*---:[ #header styles ]:---*/

.custom #header h1 {
	font-weight: bold;
	font-size: 4em;
	line-height: 1em;
	margin-bottom: 0.167em;
	text-align: center;
	letter-spacing: 2px;
}

.custom #header h1 a, .custom #header h1 a:visited { 
	color: #3B1400; 
	text-decoration: none; 
}

.custom #header h1 a:hover { 
	color: #3B1400; 
}
	
.custom #header #tagline {
	font-weight: bold;
	font-size: 2em;
	line-height: 1em;
	color: #3B1400;
	letter-spacing: 2px;
	text-align: center;
	margin-bottom: 1em;
}

