/*

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

body.custom {

	background: #848a73 none fixed center top;

	background-image:url(images/background_10.jpg);

	background-repeat:no-repeat; background-position:center; 

}



/* Removes comments closed on pages */

.custom .comments_closed p {

  display: none;

}



/* link styles */

.custom ul#tabs li a:hover {font-weight: bold; color: #dcdcda; text-decoration: underline; background-color: #d67310; }



/* Change Sidebar Headings*/	

.custom .sidebar h3 {color: #FFFFFF; padding: 0px 5px; background: #2f4410;}



/* remove unwanted nav and header style */	

.custom #header_area{display:none;}

.custom #nav_area ul {border-bottom:none; border-left:none;}

.custom #nav_area ul li {border-width:0; margin-bottom:0; padding-bottom:0; background:none;}

.custom #header {border-bottom:none;}


/* new nav and header styles */

.custom #header_area{display:none;}

.custom #nav_area {

	background:#a3a880;

	padding:0em 0;

	border-bottom:1px solid #d67310;

	text-align: left;

}

	.custom #nav_area ul {border-bottom:none; border-left:none;}

		.custom #nav_area ul li { 

	border-width:0;

	margin-bottom:0;

	padding-bottom:0;

	background:none; 
	
	font-weight:bold;

}


.custom #title_area {background:#de6a61; padding:1em 0; border-bottom:1px solid #c55;}

	.custom #header {

	border-bottom-style: none;

	border-bottom-width: 0px;

	border-bottom-color: #BFBFBF;

	border-top-width: 0px;

	border-right-width: 0px;

	border-left-width: 0px;

	border-top-color: #BFBFBF;

	border-right-color: #BFBFBF;

	border-left-color: #BFBFBF;

}


/* Header image and style */

.custom #title_area {

	background:#4f6324;

	padding:0em 0 0em;

	border-bottom:2px solid #000000;

	border-top: 1px solid #d67310;

}

	.custom #header {border-bottom:none; height:200px; padding-top:0; padding-bottom:0; background:url(images/header_10.jpg) center no-repeat;}

		.custom #header #logo {display:none;}

		.custom #header #tagline {display:none;}
		
/*   nav below header  

remove_action('thesis_hook_before_header', 'thesis_nav_menu');
add_action('thesis_hook_after_header', 'my_navmenu'); */


/* color sidebar area */

/*.custom #sidebar_1 {background-color:#b9be96;}*/

/* color content areas */

/*.custom #content_box {background-color:#b9be96;}*/
/*.custom #content_box {background: #ffffff url(images/content_filler_bkgrd.jpg) repeat-y top center;}*/
/*.custom #content {background-color:#b9be96;}*/


/* color sidebar line */

.custom #content_box {background:none; }

/*Remove Category Titles on Category Pages*/
#archive_info {display:none;}
		

/*Reduce the space between widgets in the sidebars*/

.custom li.widget { margin-bottom: 15px; }


/* remove all separator lines */

.custom #header, .custom .post, .custom .teasers_box, .custom #footer, .custom #footer a, .custom #footer a:active, .custom #archive_info, .custom .prev_next, .custom #comment_list, .custom #comment_list dd, .custom #commentform, .custom #sidebar_1, .custom #sidebar_2, .custom #comment_list dt.comment, .custom #comment_list dd.comment, .custom #comment_list dl .bypostauthor .format_text, .custom #trackback_list {
        border-bottom: 0px;
        border-top: 0px;
        border-right: 0px;
        border-left: 0px;
}
.custom #content_box, .custom #column_wrap {
        background: none;
}
		

		

/* footer */

.custom #footer_area {background:#848a73; padding:0.5em 0; border-top:1px solid #bbd;}

	.custom #footer {border-top:0;}

	

/* footer style*/

.custom #footer_1 {text-align:center; color:#333;}

	.custom #footer_1 ul.sidebar_list li.widget {width:23%; margin-right:2%; float:left;}

		.custom #footer_1 ul.sidebar_list li.widget h3 {color:#fff;}

		.custom #footer_1 ul.sidebar_list li.widget a {color:#444; border-bottom:0;}

		.custom #footer_1 ul.sidebar_list li.widget a:hover {color:#111;}

		

/*---:[ footer styles ]:---*/

.custom #footer p { color: #000; }

.custom #footer a { color: #000; border-bottom: none; }

.custom #footer a:hover { color: #111; }

