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

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

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

.custom h2 a:hover { color: #2361a1; }
	
	.post_box h1, .post_box h2 { padding-top: 1em; }
	
	.no_byline .post_box h1, .no_byline .post_box h2 { margin-bottom: 1em; }
	
	#archive_info h1 { font-weight: normal; font-size: 2.4em; line-height: 1em; padding-top: 0.458em; }


.custom div.adblock a:hover img {
          border:3px solid #BEBEBE;
          }

.custom div.adblock a img {
          border:3px solid #EEEEEE;
          }

.custom div.adblock img {
          padding:1px;
          }

.custom #custom_box {
          background:#FFFFFF none repeat scroll 0 0;
          padding:1.1em;
          }

.author_and_date {
          color:#888888;
          letter-spacing:1px;
          line-height:2.2em;
          margin-bottom:2.2em;
          text-transform:uppercase;
          border-top: thin solid #EEEEEE;
          border-bottom: thin solid #EEEEEE;
          }


.custom .format_text p.greenquote {
         background:#ccff99 none repeat scroll 0 0;
         border:1px solid #ccff99;
         padding:0.571em 0.786em;
         }