/*
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/
*/

/***Menu***/
.custom .menu { padding: 0 1.1em; font-weight: bold; }
.menu {background: #0D0D0D;} 


/***Header***/
.custom #header {
padding: 0;
overflow:hidden;
background: url(http://project-spirit.com/wp-content/uploads/2009/11/practical-spiritual-growth6.png) no-repeat top left;
width:925px;
height:198px;
}

/***Footer***/
.custom #footer { padding-top: 0;}
.custom #footer {text-align:left;}
.custom #footer {background:#0D0D0D; color:#fff;}

/***RSS Feed***/
.custom #tabs .rss a {
   color: #111111;
   text-transform: uppercase;
   padding-right: 16px;
   background: url('images/icon-rss.gif') 100% 50% no-repeat;
}
.custom #tabs .rss a:hover {
   color: #111111;
   text-decoration: underline;
}


/***Blockquote***/
blockquote {
	background: #F2FAED;
        margin: 0px 25px 15px 25px;
	padding: 0px 25px 0px 10px;
	border: 0px solid #E6E6E6;
	}
	
#content blockquote p {
	margin: 0px;
	padding: 10px 0px 10px 0px;
	}
/***Format***/

/* Comment  Color */
.custom .format_text .to_comments span {color: #2361A1;}
/* Number before Comment  Color */
.custom .format_text .to_comments a {color: #2361A1;}
/* Comment Bracket Color */
.custom .format_text .to_comments span.bracket {color: #2361A1;}

/* Add Custom List Bullet Image */
#content ul{
list-style-type:none;
padding:0px;
margin:0px;
}
#content li{
list-style-type:none;
background-image:url(http://project-spirit.com/wp-content/uploads/2009/10/List-Grey-ArrowBox.gif);
background-repeat:no-repeat;
background-position:0px 0px; 
padding-left:18px; 
}
/* Unlinked author name */
.custom span.author {
   color: #2361A1;
}
/***Headline***/
/* Remove Italics */
.custom .headline_meta {
   font-style: normal;
}
/* Remove Uppercase */
.custom .headline_meta span,
 .custom .headline_meta abbr {
   text-transform: none;
}

/* make all comments by the author have the same blue background: */
.custom dl#comment_list dt.bypostauthor, .custom dl#comment_list dd.bypostauthor>div {background: #E7F8FB none repeat scroll 0 0; padding-top:20px;}

/* Reply text in your Thesis Threaded Comments to be more prominent,  */
.custom dl#comment_list dd p.reply { margin: 1em 0 1.5em 0; }
.custom dl#comment_list dd p.reply a {background: #2361a1; color: #FFF;font-size: 11px;font-weight: normal;padding: 4px 6px;text-transform: uppercase;}
.custom dl#comment_list dd p.reply a:hover {background:#46382d; border: 0;}

/* Modify Color of Article Sub-Headings  */
.custom h3 {color:#897E7C;}




