/*
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/
*/



/*---:[Remove all borders in Thesis 1.5]:---*/
.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 {
        border-bottom: 0px;
        border-top: 0px;
        border-right: 0px;
        border-left: 0px;
}
.custom #content_box, .custom #column_wrap {
        background: none;
} 
/*---:[END:Remove all borders in Thesis 1.5]:---*/


/*---:[Hide closed comment notice on single post pages]:---*/
.custom .comments_closed { display: none; } 
/*---:[END: Hide closed comment notice on single post pages]:---*/


/*---:[Hide link to comments/closed comment notice on excerpts]:---*/
.custom .format_text .to_comments {display: none; } 
/*---:[END: Hide link to comments/closed comment notice on excerpts]:---*/


/*HIDING PAGE TITLE HEADLINE ON INDIVIDUAL PAGES USING A CUSTOM CLASS*/
.custom.noheadingherekthxbye .headline_area {display:none;}
/*END: HIDING PAGE TITLE HEADLINE ON INDIVIDUAL PAGES USING A CUSTOM CLASS*/


/* Header Background */
.custom #header {
    background: #fff;
}
/* END: Header Background */


/* Custom Background */
body.custom {
    background: #ffffff;
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #CBCBCB;
    border: 0.4em solid #DDDDDD;
}

.custom #page {
    background: #fff;
}
/* END: Custom Background */


/*custom class: "contentbackground" color and border*/
.custom.contentbackground #content  { background: #F3F3F8;
	border: 5px solid #5599EE;
	line-height: 1.6em;
	padding: 0.3em;
 }
/*END: custom class: "contentbackground" color and border*/


/*custom class: "contentbackground2" color and border*/
.custom.contentbackground2 #content  { background: #FFFFFF;
	border: 5px solid #B1DAF0;
	line-height: 1.6em;
	padding: 0.3em;
 }
/*END: custom class: "contentbackground2" color and border*/

/*narrow width of content box from original 67.7em*/
.custom #content {
float:left;
width:64em;
}
/*END: narrow width of content box from original 67.7em*/


/*---:[ Custom Navigation Colors, Padding Etc.]:---*/
.custom ul#tabs {border-bottom:none; border-left:none;background:#FFFFFF;
padding-bottom:0px;
padding-top:0px;
padding-left:0px}
	.custom ul#tabs li {margin-bottom:0; border:none; background:none;}
	.custom ul#tabs li.current_page_item, .custom ul#tabs li.current-cat {padding-bottom:0; background:#B1DAF0;}
	.custom ul#tabs li.rss {}
		.custom ul#tabs li a {}
		.custom ul#tabs li a:hover {text-decoration:underline;}
		.custom ul#tabs li.current_page_item a, .custom ul#tabs li.current-cat a {}

/*---:[ END: Custom Navigation Colors, Padding Etc.]:---*/ 


/*---:[ Content width for "No Sidebars" Template ]:---*/ 
.custom .no_sidebars #content {
width:100%;
} 
/*---:[END:Content width for "No Sidebars" Template ]:---*/ 


/* Custom Sidebar List Padding */
.custom .sidebar ul.sidebar_list {
padding-left:1.4em;
padding-right:1.1em;
}
/* END: Custom Sidebar List Padding */

/* Custom Sidebar Headline Font */
.custom .sidebar h3 {
font-size:1.1em;
}
/* END: Custom Sidebar Headline Font */

/* Custom Body Text */
body {
color:#444444;
font-size:62.5%;
}
/* END: Custom Body Text */