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

/* BOLD SIDEBAR HEADERS */
.custom h3 { font-weight:bold; color: #B37015; }

/* REMOVE MULTIMEDIA BOX*/
.custom #multimedia_box #image_box {display:none;}

/* REMOVE THE COMMENTS CLOSED TEXT */
.custom .comments_closed p {display: none ;}

/* ADD CUSTOM HEADER */
.custom #header { border-bottom:none;
center left no-repeat;
height:153px;
padding-top:0;
padding-bottom:0;
background:url(images/napoli-header.gif);}
.custom #header #logo { display:none; }
.custom #header #tagline { display:none; }

/* CUSTOM NAVIGATION MENU */
.custom ul#tabs { list-style: none; border: 1px solid #B27114; border-width: 0 0 1px 1px; }
	.custom ul#tabs li { margin-bottom: -0.1em; background: #D5AA74; border: 1px solid #B27114; border-left: 0; float: left; }
	.custom ul#tabs li.current_page_item, .custom ul#tabs li.current-cat { padding-bottom: 0.1em; background: #fff; border-bottom: 0; }
	/*.custom ul#tabs li.rss {}
		.custom ul#tabs li a {}
		.custom ul#tabs li a:hover {text-decoration:none;}
		.custom ul#tabs li.current_page_item a, .custom ul#tabs li.current-cat a {}*/

/* CSS FOR FLASH */
/*hide from ie on mac\*/
#flashcontent {	width: 523px; height: 348px; }

/* SIDEBAR STYLES */
/*.custom #sidebar_1 {border-style:none;}*/

/* FOR SLIDESHOW */
/*#photodiv { background-repeat: no-repeat; }*/

/* CUSTOM BACKGROUND */
body.custom {
    /*background: #B27114;*/
	background: #6F573D;
}
.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #593708;
    border: 0.1em solid #593708;
}
.custom #page {
    background: #fff;
}

/* HIDE PAGE NAMES FROM CONTENT AREA */
/*.custom .headline_area h2 { display: none; }*/

/* ADD SPACE BELOW SLIDESHOW AND TEXT */
#addspace {padding-top:25px;}
/*.custom .sidebar {background-color: #FFF3E5;}*/

/* REMOVE VERTICAL LINE BETWEEN RIGHT SIDEBAR AND CONTENT AREA */
.custom #content_box {background: url('images/bg.jpg'); background-repeat: no-repeat;}
.custom .sidebar {color:#FFFFFF; padding-top:0px;}
.custom .sidebar a { color: #FFFF00; text-decoration: underline; font-weight:bold; }
.custom .sidebar a:hover { text-decoration: none; }

.custom #content { color:#452C18; }

/* ADD CUSTOM BACKGROUND TO SIDEBARS */
.custom #content_box {background-color:#B37015; margin-top:6px;}
.custom #content {background-color:#fff; margin-top:0px;}
.custom .widget h3 {color:#FFFFFF; font-weight:bold; font-size:12px; text-transform: uppercase;}
/*.custom #sidebar_1 {background: #F5F5F5;}
.custom #sidebar_2 {background: url('images/right_column.jpg'); background-repeat: no-repeat;}*/

/* CUSTOM FOOTER - CENTER TEXT */
.custom #footer { color: #888; border-top: 3px double #ddd; text-align: center; clear: both; }

/* HIDE COMMENT Numbers*/
.custom .to_comments { visibility:hidden;}