/*
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!
*/
/* 47092E/CC2A43/BDB396/6E604F/362B23 */

body.custom {
    background: #8db6b6 url('custom_images/bg-ornate.gif') 50% 0 repeat;
}

.custom h2.entry-title a:link, .custom h2.entry-title a:visited { color: #47092E; font-size: 1.4em; text-weight: bold; }

.custom .post_box h2.subhead { font-size: 1.3em; padding-top: 0; font-weight: bold; color: #CC2A43 }

.custom .crawl { color: #BDB396; font-weight: bold }

.custom #about_box {  background-color: #efefef; padding: 15px; font-size: 9pt; line-height: 11pt }

.custom #about_box p { padding: 3px }
.custom .newsletter { color: white; font-weight: bold; background: url('images/newsletter-bg.gif') no-repeat top left; padding:3px; font-size: 11pt }	

.custom .inline-image { display:block; border: solid black 1px }	
.custom .photo-credits { font-size: .6em }

.custom .lead-img { border: solid 1px #000000 }

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

.custom .ss-h { font:bold 10pt arial; padding:5px;background-color:black;color:orange }

/* .custom #header {
	background: url('images/hackinghumans-logo.gif') no-repeat top left; text-indent: -999px; background-color: blue;
} */

.custom #header #logo { background: url('images/hh-logo-mast.gif') no-repeat top left; height: 112px; width: 940px; text-indent: -999px;  margin-bottom: 0.11111em; }
.custom #header #tagline { text-indent: -999px; height: 0 }
 
.custom #page {
    background: #fff;
}

.sidebar h2 { font-size: 0.84615em; line-height: 1.45455em; margin-bottom: 1em; padding: 0.63636em 0.45455em 0.54545em 0.45455em; text-transform: uppercase; letter-spacing: 2px; border-top: 1px solid #ddd; border-bottom: 1px dotted #ddd; }

/* li.widget ul li, li.linkcat ul li { margin-bottom: 0.61538em; padding-left: 0.84615em; background: url('../images/bullet.gif') 0 0.46154em no-repeat; } */

/* .custom .post_box h3 { color: red; padding-top: 0; font-weight: bold; font-size: 1.5em; margin-bottom: 0; margin-top: .5em; line-height: 1em; color: #8db6b6 } */

.custom .post_box h3 { font-weight: bold }
.custom hr { color: #666; margin-bottom: 1.2em; }