/*
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/
*/

.custom .comments_closed p {display: none ;}

.custom .prev_next  {display: none;}

div #header {display: none;}


/* 
Below is the custom design code of the table of contents
*/



div.toc {
	border: 1px solid #ccc;
	font-size: .95em;
        width: 90%; 
        margin-bottom: 20px;


}
div.toc.toc-left {
	max-width: 22em;
	float: left;
	margin: 5px 5px 5px 0;
        

}
div.toc.toc-right {
	max-width: 22em;
	float: right;
	margin: 5px 0 5px 5px;
}

div.toc a.toc-header {
	display: block;
	background-color: #f8f8ec;
	border-top: 1px solid #fcfcfc;
	border-left: 1px solid #fcfcfc;
	border-bottom: 1px solid #f0f0e0;
	border-right: 1px solid #f0f0e0;
	color: #777;
/** Styling regarding TOC title: **/
	padding: 1px 2px;
	text-align: left;
	font-size: 1.25em;
	font-weight: bold;
}

div.toc a.toc-header: hover {
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	border-bottom: 1px solid #fcfcfc;
	border-right: 1px solid #fcfcfc;
}
div.toc ul {
	list-style-type: ;
	margin: 0;
        margin-left: 15px;
	padding: 5px;
	background-color: #fcfcfc;
	text-wrap: normal;
           
}

div.toc.auto-collapse ul {
	display: none;
}

div.toc li a {
	text-decoration: none;
	border: 0 none;
	color: #777;
}
div.toc li.toc-level-1 {
	font-weight: bold;
}
div.toc li.toc-level-2 {
	font-weight: bold;
	padding-left: .25em;
}
div.toc li.toc-level-3 {
	padding-left: .5em;
}
div.toc li.toc-level-4 {
	padding-left: .75em;
}

/* END TABLE OF CONTENTS CODE */

/* Here is the Custom Background Code */

body.custom {
    background: #e5e5e5;
}

.custom #container {
    margin-top: 4em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #395588;
    border: 0.4em solid #e5e5e5;
}

.custom #page {
    background: #395588;
}

/* End of Custom Background Code */

/* Front Page Custom Columns */
.front_page #content_box { background: none; }
.front_page #left_col {float: left; width: 27.45em; }
.front_page #right_col {float: right; width: 27.45em; }

/* Remove Headlines */
div#content div.headline_area h1 {display:none;}