/*
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/
*/

/* === LINKS === */
/* new link colour */
.custom a {color: #333;}
.custom a:hover {color: #999;}


/* restore link colours on other elements */
.custom .comment_time a, .custom .edit_comment a {color: #888;}
.custom .comment_time a:hover, .custom .edit_comment a:hover {color: #888;}
.custom dl#comment_list .comment_num a {color: #aaa;}
.custom dl#comment_list .comment_num a:hover {color: #fff; background: #aaa;}
.custom a.comment_link {color: #111;}
.custom a.comment_link:hover {color: #111;}
.custom dl#trackback_list dt a {color: #111;}
.custom dl#trackback_list dt a:hover {color: #111;}

.custom h2 a { color: #111; }
.custom h2 a:hover { color: #999; }

.custom .headline_meta a { color: #888;}
.custom .headline_meta a:hover { color: #111; }

/* === BODY === */
.custom {background:#444 /*url(images/body_bg.gif) repeat*/;}

/* === HEADER === */
.custom #header_area .page {background:url(images/city.gif) right bottom no-repeat; height:170px; padding-top:0;}

.custom ul#tabs {border:none; float:left; margin-top:20px;}
	.custom ul#tabs li {border:none; margin:0 0.5em; background:none;}
		.custom ul#tabs li a {background:#fff;}
		.custom ul#tabs li a:hover {background:#ddd; text-decoration:none;}
	.custom ul#tabs li.current_page_item, ul#tabs li.current-cat {padding-bottom:0; margin-bottom:0;}
		.custom ul#tabs li.current_page_item a, ul#tabs li.current-cat a {background:#eee;}
		.custom ul#tabs li.current_page_item a:hover, ul#tabs li.current-cat a:hover {background:#eee;}

.custom #header {padding-bottom:0; border:none;}
	.custom #header #logo {font-size:6em; line-height:0.8em; margin-top:102px;}
		.custom #header #logo a {color:#fff; background:url(images/boston.png) right top no-repeat; padding-top:10px; padding-right:40px;}
		.custom #header #logo a:hover {color:#fff; border-color:#fff;}

/* === CONTENT === */
.custom #content_area .page {background:#fff; position:relative; border-style:solid; border-color:#222; border-width:0 0 0.2em 0.2em;}

/* breadcrumbs */
.custom div#breadcrumbs {height:35px; background-color:#222; position:relative; left:-2em; top:1em; width:100%; padding-right:2em;}
	.custom div#breadcrumbs p {font-size:1.6em; padding:0 1em; line-height:35px; color:#666;}
	.custom div#breadcrumbs p a {display:block; float:left; padding:0 1.5em 0 0; background:url(images/breadcrumb.png) center right no-repeat; color:#fff;}
	.custom div#breadcrumbs p a:hover {color:#bbb;}

/* post date */
.custom .post_date {position:absolute; left:-6em; width:5em; height:5em; background-color:#ccc; padding:0.5em; text-align:center; /*border:0.3em solid #3B8686; color:#fff;*/}
	.custom .post_date span.day {display:block; font-size:3em; line-height:1em; font-weight:bold;}
	.custom .post_date span.month {display:block; font-size:1.75em; line-height:1em; text-transform:uppercase;}

.custom .headline_meta {display:inline;}

.pagerbox a:hover {text-decoration:none;}
.sociable_tagline {font-size:0.9em; font-style:italic; margin-bottom:0.25em;}

ul#not_found li {margin-bottom:1em;}

.custom.contact .headline_area {display:none;}

/* === COMMENTS === */
.custom .author_comment {background-color:#f5f5f5;}

/* === SIDEBAR === */
.custom .sidebar h3 {font-size:1.1em; text-align:center; background-color:#eee;}

#sidebar_feature {text-align:center; padding:0; margin:0; height:95px;}
	#sidebar_feature img {padding:0; margin:0;}


.custom .thesis_widget_subscriptions .sub_rss a {background:url(images/rss.png) no-repeat 50% 50%; padding-left:0; display:block; line-height:50px;}
.custom .thesis_widget_subscriptions .sub_email a {background:url(images/email.png) no-repeat 0 50%; padding-left:50px; display:block; line-height:50px;}

/* === FOOTER === */
.custom #footer {border-top:none;}
	.custom #footer p {text-align:center; color:#fff;}
		.custom #footer p a {color:#fff; text-decoration:none; border-bottom-width:0;}
		.custom #footer p a:hover {border-bottom-width:1px;}