/*
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
/----------------------------------------------------------*/
.custom a,
.custom a:link,
.custom a:visited{
	color:#ffa800;
	text-decoration:underline;
}
.custom a:hover{
	text-decoration:none;
}
/* ---------------------------------------------------------|
// Remove Firefox Borders
/----------------------------------------------------------*/
:focus, a:active, a:focus, object{
	outline: none; /* Removes Firefox Ridiculously Lame Borders */
	}

/* ---------------------------------------------------------|
// Page Width
/----------------------------------------------------------*/
.custom .page{
	padding:0 25px;
	width:910px;
	}
	
.custom #container{
	width:100%
	}
	
.custom #page{
	padding:10px 0 0;
	width:100%;
	}
.custom #content_box{
	padding:0 25px;
	width:910px;
	margin:0 auto;
}
	
.custom .post_box,
.custom .teasers_box,
.custom .full_width{
	margin:0 0 0 0;
	}

/* ---------------------------------------------------------|
// Header + Logo
/----------------------------------------------------------*/

/* This line sets up our clickable background image based on the site title's link */
/* DIY: Adjust the height & width attributes to reflect the actual size of your image */
/* DIY: Change the filename of your image to reflect the actual header's file name */
.custom #custom_header #header #logo a { display: block; height: 78px; width: 176px; background: url('images/thechedda_logo.jpg') no-repeat; outline: none; }
/* This line gets rid of the site title & tagline by casting them out to far left field */
.custom #custom_header #header #logo, .custom #header #tagline { text-indent: -9999px; }
/* This line collapses the vertical space of the tagline so that there isn't unnecessary white space after the header image */
/* This is a bit of a kludge, but it seems to work. */
.custom #custom_header #header #tagline { height: 0; margin-top: -6px; }
/* This removes the headers default padding */
.custom #custom_header .page { 
	padding:0;
	width:100%;
	background: url('images/header_bg.gif') repeat-x 0 0; 
}
/* This removes the headers default padding */
.custom #custom_header #header{
	padding:0 25px;
	margin:0 auto;
	width:910px;
	height:78px; 
	display:block;
	border:none;
	background: url('images/header_tagline.gif') no-repeat 714px 0;
}
/* Hide Thesis Default Header */
.custom #header{display:none;}

/* ---------------------------------------------------------|
// Sidebar
/----------------------------------------------------------*/
.custom #sidebars{
	padding-left:0;
	padding-right:0;
	width:300px;
}

.custom .sidebar{
	padding-left:0;
	padding-right:0;
	width:300px;
}

.custom .sidebar ul.sidebar_list{
	padding-left:0;
	padding-right:0;
	width:300px;
}

/*__ Saelstrom CTA __*/
#saelstrom_cta a{
	width:300px;
	height:69px;
	display:block;
	text-indent:-9999px;
	background:url('images/sidebar_saelstrom-cta.gif') no-repeat 0 0;
	margin-bottom:20px;
}

/*__ RSS Link __*/
#rss_link a{
	width:300px;
	height:62px;
	display:block;
	text-indent:-9999px;
	background:url('images/sidebar_rss-link.jpg') no-repeat 0 0;
	margin-bottom:20px;
}

/*__ Twitter Link __*/
#twitter_follow a{
	width:300px;
	height:66px;
	display:block;
	text-indent:-9999px;
	background:url('images/sidebar_twitter-follow.jpg') no-repeat 0 0;
	margin-bottom:20px;
}

/* ---------------------------------------------------------|
// Search
/----------------------------------------------------------*/
.custom li#search{
	height:29px;
	width:290px;
	padding:10px 0 30px 10px;
	background:url('images/search_bg.gif');
	margin-bottom:20px;
}
	.custom li#search input{
		height:21px;
		width:206px;
		padding:6px 0 0 8px;
		background:url('images/search_input-bg.jpg') no-repeat 0 0;
		border:0 none;
		color:#88888;
	}

/* ---------------------------------------------------------|
// Content Area
/----------------------------------------------------------*/
.custom #content{
	width:580px;
	padding-right:0px;
	margin:0;
}

/* ---------------------------------------------------------|
// Headings
/----------------------------------------------------------*/
.custom #content .headline_area h1,
.custom #content .headline_area h2{
	font-size:2.7em;
	color:#9f9f9f;
	line-height:.8em;
	}
.custom #content .headline_area h2 a{
	color:#9f9f9f;
	text-decoration:none;
	}
.custom #content .headline_area h2 a:hover{
	color:#c2c2c2;
	text-decoration:none;
	}

/* ---------------------------------------------------------|
// Below Post
/----------------------------------------------------------*/
.after_post{
	width:580px;
	font-size:11px;
	padding:10px 0 43px 0;
	margin:0 0 15px 0;
	height:70px;
	background:url('images/post_bottom-border.gif') no-repeat 0 100%;
}
.after_post_single{
	width:580px;
	height:58px;
	background:url('images/post_bottom-border.gif') no-repeat 0 100%;
}
.custom .after_post .post_categories{
	float:left;
}

.custom .after_post .full_post{
	float:left;
}
	.custom .after_post .full_post a{
		display:block;
		width:164px;
		height:28px;
		background:url('images/btn_fullpost.gif') no-repeat 0 0;
		text-indent:-9999px;
	}
.custom .after_post .post_comments{
	float:right;
}
	.custom .after_post .post_comments a{
		display:block;
		width:164px;
		height:28px;
		background:url('images/btn_comment.gif') no-repeat 0 0;
		text-indent:-9999px;
	}

/* ---------------------------------------------------------|
// Share Buttons
/----------------------------------------------------------*/	
.share_the_chedda{
	width:415px;
	margin:42px 0 0 0;
	padding: 6px 10px 0 155px;
	height:22px;
	background:url('images/share_bg.gif') no-repeat 0 0;
}
	.share_the_chedda a{
		margin: 0 10px 0 0;
	}

/* ---------------------------------------------------------|
// Byline
/----------------------------------------------------------*/
.chedda_byline{
	width:580px;
	padding:0;
	height:25px;
	}
.custom .chedda_byline .post_date{
	float:left;
	font-size:20px;
	color:#ffa800;
}
.custom .chedda_byline .post_comments{
	float:right;
	font-size:12px;
	padding:6px 0 0 0;
}	
/* ---------------------------------------------------------|
// Headline Area
/----------------------------------------------------------*/
.custom .headline_area{
	margin:0 0 17px 0;
	}
	
/* ---------------------------------------------------------|
// Pagination
/----------------------------------------------------------*/
.custom .post_pagination{
	width:580px;
	height:36px;
	background:url('images/pagination_bg.gif') no-repeat;
	}
.custom .wp-paginate{
	padding:7px 8px 0 8px;
	font-size:12px;
	}
.custom .wp-paginate li a{
	text-decoration:none;
	}
.custom .wp-paginate li a:hover{
	text-decoration:none;
	border:1px solid #ffa800;
	}
.custom .wp-paginate li .page,
.custom .wp-paginate li .prev,
.custom .wp-paginate li .next{
	padding:2px 4px;
	margin:0 5px 0 0;
	display:block;
	float:left;
	background:#fff;
	border:1px solid #e9e9e9;
	}
.custom .wp-paginate li .next{
	margin:0;
	}
.custom .wp-paginate .page{
	width:auto;
	padding:0 0 0 0;
	}
.custom .wp-paginate span.current{
	background:#ffa800;
	border:1px solid #ffa800;
	color:#fff;
	}
	
/* ---------------------------------------------------------|
// Footer
/----------------------------------------------------------*/
.custom #footer{
	margin-top:50px;
	min-height:195px;
	background:#f5f5f8 url('images/footer_bg.gif') repeat-x 0 0;
	clear:both;
	font-size:1.2em;
}
.custom #footer ul{
	list-style-type:none;
}
.custom #footer a{
	text-decoration:none;
	border:0 none;
	color:#FFA800;
}
	#footer_box{
		width:910px;
		padding:0 25px;
		margin:0 auto;
	}
		.footer_categories{
			padding-top:20px;
			width:580px;
			float:left;
		}
			.footer_categories li{
				width:580px;
				height:32px;
				display:block;
				padding:0 0 0 50px;
			}
			.footer_categories .tech{
				background:url(images/cat_tech.png) no-repeat 0 0;
			}
			.footer_categories .art{
				background:url(images/cat_art.png) no-repeat 0 0;
			}
			.footer_categories .geek{
				background:url(images/cat_geek.png) no-repeat 0 0;
			}
			.footer_categories .cool{
				background:url(images/cat_cool.png) no-repeat 0 0;
			}
			.footer_categories .funny{
				background:url(images/cat_funny.png) no-repeat 0 0;
			}
				.footer_categories li ul{
					padding:8px 0 0 0;
				}
				.footer_categories li li.cat-item{
					font-size:11px;
					padding:0 11px 0 0;
					margin:0 10px 0 0;
					float:left;
					width:auto;
					height:auto;
					background:url(images/footer_cat_separator.gif) no-repeat 100% 2px;
				}
		#footer .appendix{
			float:right;
			width:300px;
		}
			.custom  #footer .footer_logo{
				float:right;
			}
			.custom  #footer .footer_logo a{
				display:block;
				width:209px;
				height:54px;
				background:url(images/footer_logo.png) no-repeat 0 0;
			}
				
				
				
				