/*
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/
*/

/*---:[ Background mod ]:---*/

body.custom {
    background: #6aa1bf url('images/paperbg.jpg') 50% 0 no-repeat;
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
}

.custom #page {
    background: #fff;
}


/*---:[ end background ]:---*/

/* Graphics for widget title */

.custom li.widget_recent_entries h3 { height: 35px; background: url('images/recent.jpg') no-repeat; text-indent: -9999px; }

.custom li.widget_calendar h3 { height: 27px; background: url('images/past.jpg') no-repeat; text-indent: -9999px; }

.custom li.brians_latest_comments_widget h3 { height: 35px; background: url('images/comments.jpg') no-repeat; text-indent: -9999px; }

.custom li.widget_archive h3 { height: 48px; background: url('images/arch.jpg') no-repeat; text-indent: -9999px; }

.custom li.widget_links h3 { height: 41px; background: url('images/bleuroll.jpg') no-repeat; text-indent: -9999px; }

.custom li.widget_NowPlaying h3 { height: 29px; background: url('images/listening.jpg') no-repeat; text-indent: -9999px; }

.custom li.widget_LyricWikiSearch h3 { height: 43px; background: url('images/LyricWiki.jpg') no-repeat; text-indent: -9999px; }

.custom li.widget_categories h3 { height: 36px; background: url('images/Cat.jpg') no-repeat; text-indent: -9999px; }

.custom li.AxSidebar_widget_axSidebar h3 { height: 48px; background: url('images/Lyricstuck.jpg') no-repeat; text-indent: -9999px; }

/* End widget graphics for title */

/* Link Colors */

.custom a:hover { color: #ff0000; }

/* End Link Colors */			

s */

/* Nav Padding */

.custom .menu { padding: 0 0.4em; font-weight: bold }

/* End Nav Padding */

/*---:[ WordPress Image Captions ]:---*/

.format_text .alignleft { margin: 1.571em 1.571em auto auto; float: left; clear: left; }
.format_text .alignright { margin: 0 0 1.571em 1.571em; float: right; clear: right; }
.format_text .aligncenter { display: block; margin: 0 auto 1.571em auto; float: none; clear: both; }
.format_text .wp-caption { text-align: Left; padding: 0.2em; }
.format_text .wp-caption p { font-size: 0.786em; margin-bottom: 0;  font-style: italic; }

/* End Image Caption */
