/*
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: #000000; }
	
	.custom #container { margin-top: 2em; margin-bottom: 2em; padding: 0.3em; background: #999999; border: 0.6em solid #392248; }

		.custom #page { background: <?php thesis_nav_menu(); ?>; }	

.custom #page {
    background: #F6F0BC;
}


/*do not display Blog Title and Tagline Name*/
.custom #header #logo { display: none; }
.custom #header #tagline { display: none; }

/* This line removes white space around header*/
.custom #header { padding: 0; border-bottom:none;}*/

/* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header, and the sides of the content */
.custom #header { padding: 0; }
.custom #header {
margin-left:-2em;
}*/

/*extend menu color across page*/
.menu {background: #CA8967;}

/*This line put a border around mm_box*/
.custom #custom_box {border: 5px solid #000000; }



/*get rid of dotted line box around nav links*/
.custom a {
   outline: none;
}

/*extend menu color across page*/
.menu {background: #F4EEAB;}

/* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header, and the sides of the content */
.custom #header { padding: 0; }
.custom #header {
margin-left:-2em;
}

/* HEADER ZONE 
.custom #header_area #page {padding-top: 0em;}
.custom #page {padding: 0;}
.custom #page {margin: 0;}
.custom #page {border: 0;}*/

/* This line removes page title
.custom div.headline_area h1 { display:none; padding: 0; }
.index h1 {font-color:#fff;}*/

/* This line removes "Comments in this entry are closed on posts" text*/
.custom remove_action('thesis_hook_after_post', 'thesis_comments_link');

/*Remove "comments closed" text*/
.format_text .to_comments {visibility: hidden;}
.custom .comments_closed {display: none;}

/*change nav bar color*/
.custom ul#tabs li a { color: #Ffffff; background:#efefef; }
.custom a:hover { text-decoration:underline;}

/*Reduce the space between widgets in the sidebars*/
.custom li.widget { margin-bottom: 10px; }
