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

body.custom { background: #151929; }

.custom #container { width 850px; margin-top: 1em; margin-bottom: 1em;
padding: 0.3em;
background: #33332f;
border: 0.1em solid #3e3e3a; }

.custom #page { background: #fff; }	
/*---:[ end Set 1 ]:

/*---:[ START Custom Header Logo In Background ]:---*/

.custom #header { width: 800px; height: 113px; padding: 0em; } 
	.custom #header h1#logo a,
	.custom #header p#logo a { background: #000000 url('http://www.insider-fitness.com/wp-content/themes/thesis_151/custom/images/header.jpg') 0 0; center left no-repeat; display: block; height: 113px; text-indent: -9999px; width: 800px; }
}
/*---:[ START Comments closed line goes away ]:---*/

.custom div.comments_closed p {display:none;}

/*---:[ nav menu styles ]:---*/
.custom #tabs { list-style: none; border: 1px solid #ddd; border-width: 0 0 0px 0px; }
.custom	#tabs li { margin-bottom: 0em; background: #C1CEFE; border: 0px solid #ddd; border-left: 0; float: right; }
.custom	#tabs .current_page_item, #tabs .current-cat { padding-bottom: 0.1em; background: #ffff; border-bottom: 0; }
.custom ul#tabs { padding-top: 0em; }
.custom ul#tabs {background:#C1CEFE;}

	.custom #tabs a { display: block; line-height: 1em; color: #0000; text-transform: uppercase; letter-spacing: 2px; }
	.custom #tabs a:hover { color: #fff; text-decoration: underline; }
	.custom	#tabs .current_page_item a, #tabs .current-cat a { cursor: text; }
	.custom	#tabs .current_page_item a:hover, #tabs .current-cat a:hover { text-decoration: none; }
	.custom #tabs .rss { padding-right: 1px; background: none; border: none; float: right; }
	.custom #tabs .rss a { padding-right: 16px; background: url('http://insider-fitness.com/wp-content/themes/thesis_151/custom/images/icon-rss.gif') 100% 50% no-repeat; }

/*---:[ side bar topic background ]:---*/
#text-4 h3 {color: #000000; background: #C1CEFE; padding:0.3em 0em 0.3em 0.3em;}
#widget_killer_recent_entries-2 h3 {color: #000000; background: #C1CEFE; padding:0.3em 0em 0.3em 0.3em;}
#text-5 h3 {color: #000000; background: #C1CEFE; padding:0.3em 0em 0.3em 0.3em;}



