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

/*---:[ core layout elements ]:---*/
#header { border-bottom: 3px double #ddd; clear: both; }


	
	.custom #container { margin-top: 1em; margin-bottom: 1em; padding: 0.3em; background: #840909; border: 0.4em solid #3e3e3a; }

		.custom #page { background: #000; }
		
		body { background: #000; color: #fff; font-size: 62.5%; }
		
			input.form_submit { font-weight: bold; color: #fff; background: url('images/submit-bg.gif'); border: 3px double #999; border-top-color: #ccc; border-left-color: #ccc; cursor: pointer; width: auto !important; overflow: visible; }

	h2 a { color: #fff; }
	
		.headline_meta a:hover { color: #fff; }
		
		
		/*---:[ #header styles ]:---*/
#logo { font-weight: bold; }
	#header #logo a { color: #fff; }
	#header #logo a:hover { color: #2361a1; }
#header #tagline { font-weight: normal; color: #888; }

/*---:[ after-post elements ]:---*/
.format_text .to_comments { color: #666; clear: both; }
	.format_text .to_comments span { color: #fff; line-height: 1em; }
	.format_text .to_comments span.bracket { color: #ccc; }
	.format_text .to_comments a { color: #666; text-decoration: none; }
	.format_text .to_comments a:hover { color: #fff; text-decoration: underline; }
	
	
/*---:[ home page teasers ]:---*/
.teaser .teaser_author a:hover, .teaser a.teaser_comments:hover, .teaser a.teaser_category:hover, .teaser .edit_post a:hover { color: #fff; }

/*---:[ sidebar styles ]:---*/
li.widget ul li .num_comments { color: #fff; }
li.widget .widget_box { background: #000; border-style: solid; border-color: #addde6; }

		/*---:[ google custom search ]:---*/	
		li.thesis_widget_google_cse form input[type="submit"] { font-weight: bold; color: #fff; background: url('images/submit-bg.gif'); border: 3px double #999; border-top-color: #ccc; border-left-color: #ccc; cursor: pointer; }

/*---:[ comment styles ]:---*/
		.comments_intro span { color: #fff; line-height: 1em; }
		a.comment_link { color: #fff; text-decoration: none; font-variant: small-caps; border-bottom: 1px solid #bbb; }
		a.comment_link:hover { color: #fff; border-bottom-color: #fff; }
		dl#trackback_list dt a { color: #fff; }
		dl#trackback_list dt a:hover { color: #fff; text-decoration: underline; }
		#footer a:hover { color: #fff; }
		
		
		/*---:[ multimedia box ]:---*/
#multimedia_box { width: 100%; }
	#image_box { background: #3e3e3a; border-bottom: 1px solid #ddd; }
		#image_box img { display: block; background: #fff; border-style: solid; border-color: #000; }
	/*---:[ video box styles ]:---*/
	#video_box { background: #000; }
	/*---:[ custom box styles ]:---*/
	#custom_box { background: #2a2a2a; border-bottom: 1px solid #ddd; }
		

body.custom {
    background: #1b1b1b url('images/concrete_grain2.jpg') 50% 0 no-repeat;
}

			/*---:[ nav menu styles ]:---*/
ul#tabs { list-style: none; border: 1px solid #ddd; border-width: 0 0 1px 1px; }
	ul#tabs li { margin-bottom: -0.1em; background: #666; border: 1px solid #ddd; border-left: 0; float: left; }
	ul#tabs li.current_page_item, ul#tabs li.current-cat { padding-bottom: 0.1em; background: #4d4d4d; border: 2px solid #ddd; border-width: 1px 1px 5px 1px; }
		ul#tabs li a { display: block; line-height: 1em; color: #000; text-transform: uppercase; letter-spacing: 2px; }
		ul#tabs li a:hover { color: #fff; text-decoration: underline; }
		ul#tabs li.current_page_item a, ul#tabs li.current-cat a { cursor: default; }
		ul#tabs li.current_page_item a:hover, ul#tabs li.current-cat a:hover { text-decoration: none; background: #4d4d4d; }
	ul#tabs li.rss { padding-right: 0; background: none; border: none; float: right; }
		ul#tabs li.rss a { display: none; }	
		/*---:[ Drop down menu ]:---*/
			.custom ul#tabs {margin-bottom:1em;}
	.custom ul#tabs li ul {display:none; position:absolute; list-style:none;}
		.custom ul#tabs li ul li {background:#666; border: 1px solid #ddd;}
			.custom ul#tabs li ul li a:hover {text-decoration:underline;}
			.custom ul#tabs li ul li.current_page_item a:hover {text-decoration:none; }
			
			
		/*---:[ No comment anything ]:---*/			
.comments_closed * { display: none; width: 0; }	
.to_comments * { display: none; width: 0; }


		/*---:[ # CUSTOM header styles ]:---*/
#header_address { font-size: 2.3em; color: #ff0000;line-height: 8px}

	/*---:[ # CUSTOM LINK styles ]:---*/
.custom a { color: #5598dd; text-decoration: underline; }
.custom a:hover { color: 2c73bd; text-decoration: none; }
