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

.custom #header { 
background: url("images/header.jpg") }

.custom.h1, h2, h3, h4 { font-size: 1em; font-weight: normal;}

.custom #header { height: 234px; }


body.custom {
    background: #000;
    color: #efefef;
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    border: 0.1em solid #fff;
}

.custom #page {
    background: #000;
	padding-top: 1em;

}
/*---:[ global elements ]:---*/

.custom a { color: #547ad0; text-decoration: none; }

.custom blockquote { border-left: 1px solid #ddd; color: #bbb; }

.custom #footer { color: #888; border-top: 3px double #fff; text-align: right; clear: both; }

.custom #footer a { color: #888; border-bottom: 1px dotted #ccc; }

.custom #footer a:hover { color: #547ad0; }

.custom #header { border-bottom: 1px #fff; clear: both; }

.custom #sidebars { border-style: solid; border-color: #547ad0; }

/*---:[ headlines and bylines ]:---*/


	.custom h2 a { color: #efefef; }

	.custom h2 a:hover { color: white; }
	
	.custom #content #archive_info h1 { font-size: 1.8em; line-height: 1em; font-weight: normal; }

/*---:[ #header styles ]:---*/

.custom #header #logo { font-weight: bold; }

	.custom #header #logo a { color: #efefef; }

	.custom #header #logo a:hover { color: white; }
	
.custom #header #tagline { font-weight: normal; color: #888; }


/*---:[ nav menu styles ]:---*/

.custom ul#tabs { list-style: none; border: 0 solid #547ad0; border-width: 0 0 0 0; }

	.custom ul#tabs li { margin-bottom: -0.1em; background: #333333; border: 0 solid #78458B; border-left: 0; float: left; }

	.custom ul#tabs li.current_page_item, ul#tabs li.current-cat { padding-bottom: 0.1em; background: #000; border-bottom: 0; }
	
		.custom ul#tabs li a { display: block; line-height: 1em; color: #ccc; text-transform: uppercase; letter-spacing: 2px; }

		.custom ul#tabs li a:hover { color: #ccc; text-decoration: underline; }
	
		.custom ul#tabs li.current_page_item a, ul#tabs li.current-cat a { cursor: default; }
		
		.custom ul#tabs li.current_page_item a:hover, ul#tabs li.current-cat a:hover { text-decoration: none; }
	
	.custom ul#tabs li.rss { padding-right: 0; background: none; border: none; float: right; }
		
		.custom ul#tabs li.rss a { padding-right: 16px; background: url('images/rss.png') 100% 50% no-repeat; }

/*---:[ h3 and h4 sizes are calculated relative to the base font size of the content or sidebar ]:---*/
	
.custom	.sidebar h3 { color: #efefef; }

/*---:[ sidebar styles ]:---*/

.custom .sidebar a:hover { border-bottom: 1px dotted; }
.custom .sidebar a:hover { text-decoration: none; }

/*---:[ after-post elements ]:---*/

.custom .format_text .to_comments { color: #666; clear: both; }

	.custom .format_text .to_comments span { color: #ccc; }

	.custom .format_text .to_comments span.bracket { color: #ccc; }

	.custom .format_text .to_comments a { color: #666; text-decoration: none; }

	.custom .format_text .to_comments a:hover { color: #ccc; text-decoration: underline; }
	
.custom .format_text .post_tags { color: #666; }

	.custom .format_text .post_tags a { text-decoration: none; }
	
	.custom .format_text .post_tags a:hover { text-decoration: underline; }

/*---:[ rotating image styles ]:---*/

.custom #multimedia_box { width: 100%; }

	.custom #image_box { padding: 1.1em; background: #343434; border-bottom: 1px solid #303030; }

		.custom #image_box img { display: block; padding: 0.1em; background: #fff; border: 0.1em solid #bbb; }

	/*---:[ video box styles ]:---*/

	.custom #video_box { padding: 1em; background: #000; }

	/*---:[ custom box styles ]:---*/

	.custom #custom_box { padding: 1.1em; background: #eee; border-bottom: 1px solid #ddd; }

	/*---:[ texzt justification ]:---*/
.custom .format_text { text-align: justify; }

	/*---:[ picture caprion]:---*/

.custom .wp-caption { background: transparent; border: 0; } 