/*
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!
*/

/*---:[ Set 5: image of gray rocks that slides into a dark gray background ]:---*/

/*body.custom { background: #33383a url('images/bg-rock.jpg') 50% 0 no-repeat; }

.custom #container { margin-top: 2em; margin-bottom: 2em; }

	.custom #page { background: #fff; }
	
		.custom #logo{margin-top:0px;}*/
	
/*---:[ end Set 5 ]:---*/

/*---:[ core design elements ]:---*/

.custom .post_box a, .custom .post_box a:visited { color: #a90000; text-decoration: none; }
.custom .post_box a:hover { color: #a90000; text-decoration: none; }
.custom .post_box blockquote { font-family: Georgia, "Times New Roman", Times, serif; color: #555; border-left: 3px solid #a90000; }

/*--image alignment with caption--*/
div.aligncenter{margin:auto;}
/*--image caption font size--*/
p.wp-caption-text{font-size:11px;}
/*--post header color--*/
.custom .post_box h1, .custom .post_box h2 { color:#a90000; text-align: center; }
	.custom .post_box h2 a, .custom .post_box h2 a:visited { color: #a90000; }
	.custom .post_box h2 a:hover { color: #2361a1; }
.custom .post_box p.headline_meta{text-align:center;}

/*--teaser color--*/
.custom .teasers_box h1, .custom .teasers_box h2 { color:#a90000;  }
	.custom .teasers_box h2 a, .custom .teasers_box h2 a:visited { color: #a90000; }
	.custom .teasers_box h2 a:hover { color: #2361a1; }


/*---:[ header elements ]:---*/
