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

body.custom {
	background: #fff url(images/burstbg.gif) repeat fixed left top;
}

.custom a,
.custom a:hover {
	color: #49709C;
}

.custom #container {
	background-color: #fff;
	text-align: center;
	padding: 0 30px;
}

.custom #page {
	padding: 0;
}

.custom #tabs {
	text-align: right;
	padding: 10px 0;
	border: none;
	margin: 0 auto;
}

	.custom #tabs li,
	.custom #tabs li.rss {
		float: none;
		background-color: transparent;
		display: inline;
		border: none;
		margin-right: 8px;
	}
	
	.custom #tabs li:after {
		content: "/";
		color: #adb5c7;
		padding-left: 10px;
	}
	
	.custom #tabs li.rss:after {
		content: "";
	}
	
		.custom #tabs li a {
			display: inline;
			padding: 0;
		}

.custom #header {
	height: 147px;
	padding-bottom: 20px;
	border-bottom: 2px solid #D1DBE6;
	margin-bottom: 30px;
}

	.custom #header #logo {
		margin: 0 auto;
	}

		.custom #header #logo a {
			display: block;
			position: relative;
			left: -62px;
			height: 147px;
			background: transparent url('images/logo.gif') no-repeat left top;
			text-indent: -5000px;
		}
		
		.custom #header #logo > a {
			background-image: url('images/logo.png');
		}
		
	.custom #header #tagline {
		display: none;
	}

.custom #sidebars {
	text-align: center;
}

.custom #sidebar_1 {
	border-right: none;
}

.custom #sidebar_2 {
	border-left: 1px dotted #ccc;
}

.custom #image_box {
	background-color: transparent;
	padding-top: 0;
	border-bottom: none;
}

	.custom #image_box img {
		padding: 4px;
		border: 1px dotted #ccc;
	}

.custom #sidebars h3 {
	padding-bottom: 5px;
	border-bottom: 1px dotted #ccc;
}

.custom #sidebars #subscribe-feed a {
	display: block;
	height: 75px;
	background: transparent url("images/subscribe_feed.gif") no-repeat center top;
	text-indent: -5000px;
}

.custom #sidebars #subscribe-email a {
	display: block;
	height: 46px;
	background: transparent url("images/subscribe_email.gif") no-repeat center top;
	text-indent: -5000px;
}

.custom #sidebars #twitter_div {
	text-align: left;
	margin-top: 80px;
}

.custom #sidebars #twitter_div h3 a {
	display: block;
	height: 38px;
	background: transparent url("images/all_a-twitter.gif") no-repeat center top;
	text-indent: -5000px;
}

.custom #sidebars #twitter_div a {
	color: #888;
	display: block;
	font-variant: small-caps;
}

.custom #sidebars #twitter_div span a {
	color: #374D7F;
	display: inline;
	font-variant: normal;
}

.custom .widget_categories ul,
.custom .widget_recent_entries ul {
}

	.custom .widget_categories li,
	.custom .widget_recent_entries li {
		padding: 0;
		margin: 0;
	}
	
	.custom .widget_categories li a {
		display: block;
		background: transparent none no-repeat center center;
		text-indent: -5000px;
		padding: 10px 0;
	}
	
	.custom .widget_categories li.cat-item-7 a {
		height: 77px /* 82px */;
		background-image: url("images/topics/being_the_baloney.gif");
	}

	.custom .widget_categories li.cat-item-3 a {
		height: 80px /* 86px */;
		background-image: url("images/topics/body_and_soul.gif");
	}

	.custom .widget_categories li.cat-item-5 a {
		height: 89px /* 95px */;
		background-image: url("images/topics/hall_of_heroines.gif");
	}

	.custom .widget_categories li.cat-item-4 a {
		height: 52px /* 55px */;
		background-image: url("images/topics/homework.gif");
	}

	.custom .widget_categories li.cat-item-6 a {
		height: 110px /* 118px */;
		background-image: url("images/topics/skin_deep.gif");
	}

	.custom .widget_categories li.cat-item-8 a {
		height: 79px /* 85px */;
		background-image: url("images/topics/wrinklereader.gif");
	}

.custom #content_box {
	background-image: none;
	text-align: left;
	margin: 0 auto;
}

.custom #content {
}

.custom .post_box {
	padding-top: 0;
	margin-left: 0;
	margin-bottom: 2em;
	border-top: none;
	border-bottom: 1px dotted #ccc;
}

.custom #footer {
	margin: 0 auto;
	padding-bottom: 3em;
	border: none;
}

	.custom #footer #copyright {
		float: left;
		width: 300px;
		text-align: left;
	}

	.custom #footer a {
	}