/*
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/
*/

/* General customizations */
.custom #page { padding-top: 0em; }

/* Header customizations */		
.custom #header { height:97px; background: #336699 url(images/header.jpg) no-repeat scroll 100% 0; border-bottom: none; padding-top: 0em; padding-bottom: 0em; }
.custom #header #logo { font-weight: normal;}
.custom	#header #logo a { background: transparent url(images/logo.jpg) no-repeat scroll 0 0; display: block; outline-style: none; height: 2.2em; width: 12em; color: #FFFFFF; text-indent: -9999px; }
.custom	#header #logo a:hover { color: #FFFFFF; }

/* Footer customizations */
.custom #footer { border-top: 1px solid #ddd; }

/* Content customizations */
.custom .format_text li { margin-top: 1.571em; margin-left: 1.571em; }
.custom abbr, acronym { cursor: auto; }
p.credit { font-size: 0.9em; font-style: italic; }

/* Post tags customizations */
.custom .format_text .post_tags { margin-bottom: 0.692em; }

/* End of post styling */
#end { height: 10em; width: 100%; margin-bottom: 0.692em; font-size: 0.9em; border-top: 1px dotted #BBBBBB; padding-top: 1.1em; }
#end ul.actions { float: left; width: 50%; margin: 0em; list-style-type: none; }
#end ul.related { float: left; width: 50%; margin: 0em; list-style-type: none; }
#end li { margin: 0em; }
#end h4 { margin: 0em; }

/* Newsletter teaser styling */
#newsletter { background: #f5f5f5; border: 1px solid #ddd; margin-top: 0.692em; margin-bottom: 1.833em; padding: 0.571em 9em 1.404em 10em; font-size: 0.9em; line-height: 1.5em; }
#newsletter li { margin-top: 0.9em; }
#newsletter h3 { margin-top: 0.833em; }

/* Feedburner mail subscriptions styling */
form.feedmail { padding: 3px 3px 0px 3px; text-align: left; }
input.feedmail { border-color: #AAAAAA; }