/*
File:			custom.css
Description:	Thesis Theme Custom styles for PrintQuote

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 #container { margin-top: 2em; margin-bottom: 2em; padding: 0; border: 0; }

/*---:[ core layout elements ]:---*/
.custom #header { margin-bottom: 1em; clear: both; }
	.custom .post_box { background: #e3ebac url('images/bg_postbox.gif') repeat-y; border-top: 6px solid #fff; padding: 2em; margin: 0; clear: none;}
	.custom .teasers_box { background: #d3da96; width: 55.4em; border-top: 6px solid #fff; border-right: 6px solid #fff; padding: 2em; margin: 0; clear: none;}
	.custom .teaser { }
		.custom #sidebars { border-left: 6px solid #fff; margin-top: -86px; }
			.custom #sidebar_1 { background: #c3ddea; border: none; }
.custom #content_box { width: 896px; }
.custom #content { background: none; border-right: 6px solid #fff;}
.custom #footer { color: #aaa; border: none; text-align: left; clear: both; }

/*---:[ #header styles ]:---*/
.custom #header #logo { font-weight: bold; }
	.custom #header #logo a { display: block; height: 138px; width: 592px; background: url('images/print-quote.gif') no-repeat; outline: none;
margin-left: 0px; margin-bottom: 6px}
	.custom #header #logo a:hover { color: #2361a1; text-decoration: none; border: 0; }
.custom #header #tagline { font-weight: normal; color: #888; }
.custom #header #logo {text-indent:-99999em ;}
.custom #header #tagline {text-indent:-99999em;}
.custom #header #tagline { height: 0; }
.custom #header { padding: 0; border-bottom: none; width: 592px; clear: left; }

/*---:[ global elements ]:---*/
/*
.custom a { text-decoration: none; }
.custom a:hover { text-decoration: none; border-bottom: 1px dashed #8e4702; }

.custom a:hover img { border: 0 none; }
*/
.custom a.external {
	padding-right: 12px;
	background: transparent scroll url(images/external.gif) no-repeat right center;
	}

/*---:[ headlines and bylines ]:---*/
.custom h1, .custom h2, .custom h3, .custom h6 { font-weight: normal; }
.custom h4, .custom h5 { font-weight: bold; }
.custom h5, .custom h6 { text-transform: uppercase; letter-spacing: 1px; }
.custom .format_text h2.top, .custom .format_text h3.top { margin-top: 0 !important; }
.custom .sidebar h3 { text-align: center; text-transform: uppercase; font-weight: bold; letter-spacing: 2px; color: #31557e; padding: 6px 0; border-top: 1px #5e98b7 dotted; border-bottom: 1px #5e98b7 dotted; }
	.custom h2 a { color: #40567c; }
	.custom h2 a:hover { color: #8e4702; border-bottom: none; }
.custom #custom_attribution {
	text-align: center;
	margin: 6px 0;
}
.custom #custom_attribution p { color: #aaa; padding-top: 6px; }
.custom #custom_attribution p a { color: #aaa; text-decoration: underline; }
.custom #custom_attribution p a:hover { color: #888; border-bottom: none; }

.custom #sidebar_image {
	margin: 0;
	padding: 0;
	border: 0;
	height: 220px;
	background: #fff;
	}
.custom #sidebar_link {
	margin: 0;
	padding: 0;
	border: 0;
	height: 70px;
	background: #fff;
	}

/*---:[ sidebar styles ]:---*/
/*
.custom .sidebar a:hover { text-decoration: none; border-bottom: 1px dashed; }
*/
		.custom li.widget p a { text-decoration: underline; }
		.custom li.widget p a:hover { text-decoration: none; }
			.custom li.widget ul li .num_comments { color: #111; }
		/*---:[ widget box styles ]:---*/
		.custom li.widget .widget_box { background: #e3f0f2; border-style: solid; border-color: #addde6; }
		/*---:[ subscriptions widget ]:---*/
		.custom .thesis_widget_subscriptions .sub_rss a { padding-left: 20px; background: url('images/icon-rss.gif') 0 50% no-repeat; }
		.custom .thesis_widget_subscriptions .sub_email a { padding-left: 20px; background: url('images/icon-email.gif') 0 50% no-repeat; }
		/*---:[ calendar widget ]:---*/
		.custom #calendar_wrap { width: 98%; padding: 0 1%; }
			.custom #calendar_wrap a { font-weight: bold; }
			.custom #calendar_wrap a:hover { background: #ddd; text-decoration: none; }
			.custom table#wp-calendar { width: 98%; border-collapse: collapse; }
				.custom table#wp-calendar caption { font-weight: normal; text-transform: uppercase; letter-spacing: 2px; background: #e5e5e5; }
				.custom table#wp-calendar th { width: 14%; background: #f2f2f2; border-bottom: 1px solid #ddd; text-align: center; }
				.custom table#wp-calendar td { width: 14%; color: #888; text-align: center; }
				.custom table#wp-calendar td#next, table#wp-calendar td#prev { width: 45%; text-transform: uppercase; letter-spacing: 1px; }
				.custom table#wp-calendar td#next { text-align: right; }
				.custom table#wp-calendar td#prev { text-align: left; }