/*
File:			custom.css
Description:	Custom styles for the Thesis Theme that you define

Use:

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


body.custom {
    background: #333;
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;

}



.custom #page {
    background: #fff;
}



.custom .format_text { font-size: 1.3em; line-height: 1.55em; }



.custom h1, h2 { font-size: 2.2em; font-weight: bold; line-height: 1.455em; }

	.custom h1 a, h2 a:visited { color: #111; text-decoration: none; }

	.custom h1 a:hover { color: #2361a1; text-decoration: none; }




/*    Gravatar styling */
.custom #comment_list dt .avatar { margin: 0 1.571em 1.571em 0; float: left; clear: left; }



.custom #adblock img {margin:0px;}
.custom div.adblock a:hover img {border:3px solid #bebebe;}
.custom div.adblock a img {border:3px solid #eee; margin:2px;}
.custom div.adblock img { padding:0px; }



.custom .sidebar h3 { font-size: 1.0em; font-weight: bold; line-height: 1.385em; margin-bottom: 0.615em; font-variant: small-caps; letter-spacing: 2px; color: #555; }


.custom #page {padding: 0 2em 2em}

.custom ul#tabs li.rss_email a { padding-right: 16px; background: url('../images/icon-envelope-blue.gif') 100% 50% no-repeat; }

.custom li.widget .callout { padding: 0.846em; line-height: 1.385em; background: #e3f0f2; border: 0.077em solid #addde6; }

.custom .rss-box { background: #eee; border: 1px solid #ccc; padding: 10px; margin: 10px; }

.custom .text-ads { background: #e3f0f2; border: 0.077em solid #addde6; padding: 10px; margin: 20px; }
