/*
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 ]:---*/
a { color: #cc0077; text-decoration: none; }
a:hover { color: #884466; text-decoration: none; }

/*---:[ nav menu ]:---*/
ul#tabs li, ul#tabs li.current_page_item, ul#tabs li.current-cat 
	ul#tabs li a, ul#tabs li a:visited { color: #cc0077; text-decoration: none; }
	ul#tabs li a:hover { color: #884466; text-decoration: none; }
	ul#tabs li.current_page_item a, ul#tabs li.current-cat a { color: #442233; }
	ul#tabs li.rss a { color: #cc0077; }
	ul#tabs li.rss a:hover { color: #884466; text-decoration: none; }


/*---:[ headlines (content and sidebar) ]:---*/
.custom h1 { color: #cc0077; }
.custom h2 { color: #cc0077; }

/*---:[ headline meta data ]:---*/
.custom .headline_meta a, .custom .headline_meta a:visited { color: #cc0077; border-bottom: none; }
.custom .headline_meta a:hover { color: #884466; border-bottom: none; }
.headline_area img { margin: 0 1em 0 0; border: 0.4em solid #efe9d6; float: left; }
p.author_and_date a { color: #cc0077; text-decoration: none; }
p.author_and_date a:hover { color: #884466; text-decoration: none; }

	
/*---:[ post formatting and special case styles ]:---*/
.custom .format_text a { text-decoration: none; }
.custom .format_text img.left, .custom .format_text img.alignleft { margin-right: 0.667em; margin-bottom: 0.667em; }
.custom .format_text img.right, .custom .format_text img.alignright { margin-left: 0.667em; margin-bottom: 0.667em; }
.format_text .post_tags { color: #666; font-size: 1em; }
a.more-link { display: block; }
.intro_block { border-bottom: 3px solid #ddd !important; }

/*---:[ after post stuff ]:---*/
.custom .format_text .pimp_sub { padding: 0.533em 0.667em; background: #f0deaf; border: 0.067em solid #d7c491; }
.custom .post_ad { padding: 0.667em; background: #ddf5fc; border-top: 0.2em solid #86c0d1; clear: both; }
	.custom .post_ad h3 { margin: 0 0 0.533em 0; padding-bottom: 0.267em; border-bottom: 1px dotted #89c3d4; }
	.custom .post_ad img { display: block; margin-bottom: 0.667em; margin-left: 0.667em; border: 0.533em solid #cc0077; float: right; }
	.custom .post_ad ul.ad_links { margin-bottom: 0; }

/* comments */
dd.comment { clear: left; }
	dt.comment img { margin: 0 1em 0 0; /*border: 0.4em solid #efe9d6;*/ float: left; }
	dt.author_comment img { border: 0.4em solid #dddddd; }
		dt.comment a, dt.comment a:visited { color: #cc0077; }
		dl#comment_list dt.comment a:hover { color: #884466; text-decoration: none; }
		.custom dl#comment_list .comment_num a, .custom dl#comment_list .comment_num a:visited { color: #cc0077; }
		.custom dl#comment_list .comment_num a:hover { color: #fff; background: #884466; }
	.author_comment { background: #dddddd; }
	dl#comment_list dt.comment p.social_profiles { font-size: 1.5em; line-height: 1.6em; color: #888; }
.custom .call_to_register { margin-right: -0.667em; padding: 0.533em 0.667em; background: #f0deaf; border: 0.067em solid #d7c491; }
	.custom #commentform a { text-decoration: none; }



/* search */
.sidebar .text_input { }
input#searchsubmit { display: block; clear: left; border: 0; }
