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

/* CLICKABLE HEADER IMAGE */
/* 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 #header #logo a { display: block; height: 2px; width: 266px; background: url('images/header.png') no-repeat; outline: none; }
/* This line gets rid of the site title & tagline by casting them out to far left field */
.custom #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 #header #tagline { height: 0; }
/* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header, and the sides of the content */
.custom #header { padding: 10; }

/* VARIOUS CUSTOM CSS CHANGES */
/* This line changes the background color */
body.custom { background: #68a799; color: #666 }

/* This line changes the background color of the post box */
.custom .post_box, .custom .post_box.top { background: #f7f5c5; border-top: 1px dotted #bbb; padding-left: 5em; padding-right: 5em; padding-top: 5em; padding-bottom: 3em; }

/* This line changes the background color of the custom multimedia box */
.custom #custom_box {background:#68a799 none repeat scroll 0 0;padding:1em;}

/* These lines change the background and line color of the nav */
.custom ul#tabs li{background: #586458; border: 1px solid #586458; }

.custom ul#tabs { background: #586458; list-style: none; border: 1px solid #586458; border-width: 0 10px 1px 1px; }

/* This line makes the nav links lowecase */
.custom ul#tabs li a { display: block; line-height: 1.5em; color: #f7f5c5; text-transform: lowercase; letter-spacing: 2px; }

/* This line makes the nav links italic when hovered */
.custom ul#tabs li a:hover { color: #f7f5c5; text-decoration: none; font-style: italic; }

/* This line removes the from the archives text on category pages */
#archive_info {display:none;}

/* This line removes the header bottom line border */
.custom #header { border-bottom: none; clear: both; }

/* This line removes the footer top line border */
.custom #footer { color: #fff; border-top: none; text-align: right; clear: both; }

/* This line removes the custom box bottom line border */
.custom #custom_box { border-bottom: none; }

/* These lines remove the vertical lines */
.custom #content { background-image: none; }
.custom #content_box { background-image: none; }

/* This line changes the sidebar headline color */
.custom .sidebar h3 { color: #4c4c4c; }

/* These lines change the post headline colors */
.custom h2 a { color: #666; }
.custom h2 a:hover { color: #111; }

/* This line changes the post headline spacing */
.custom h1, h2 { letter-spacing: -1px; }

/* This line changes the author comment background */
.custom .author_comment { background: #68a799; }

/* This line changes the text area input background */
.custom input, textarea { background: #f7f5c5; }

/* This line changes the comment area background */
.custom #comment_list { background: #f7f5c5; }
.custom .author_comment { background: #f7f5c5 !important; }

/* This line changes the comment tally text in the post */
.custom .format_text .to_comments { color: #111; clear: both; }
.custom .format_text .to_comments span { color: #111; }
.custom .format_text .to_comments span.bracket { color: #111; }
.custom .format_text .to_comments a { color: #111; text-decoration: none; }
.custom .format_text .to_comments a:hover { color: #111; text-decoration: underline; }

/* This line changes the comment notes background */
.custom #commentform p.allowed { background: #68a799; }

/* CHANGING THE ENTIRE WIDTH OF THE PAGES AND SIDEBARS */
/* These lines change the entire width */
.custom #container { width: 1000px; border: none; }
.custom #page { width: 1000px; border: none; }
.custom #container #page #content_box { position: relative; width: 100%; border: none; }
.custom #container #page #content_box #content { width: 585px; border: none; }
.custom #container #page #sidebars { width: 415px; border: none; }
.custom #sidebar_1 { width: 50%; border: none; }
.custom #sidebar_2 { width: 50%; border: none; }
.custom #custom_box { width: 100%; border: none; }
.custom #subfooter { width: 100%; border: none; }

/* PAGE NAVIGATION - PAGENAVI */
/* Use !important to override PageNavi CSS */
.custom .wp-pagenavi a, .wp-pagenavi a:link, .wp-pagenavi a:active { color: blue !important; background:transparent !important; }
.custom .wp-pagenavi a:hover { }
.custom .wp-pagenavi span.pages { background:transparent !important; }
.custom .wp-pagenavi span.current { background:transparent !important; }
.custom .wp-pagenavi span.extend { background:transparent !important; }

.custom #leaderboard_ad { float: right; }