/*
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 #header #logo {font-weight: bold;}
.custom #header #logo h1, .custom #header #logo h2 {font-size:18pt;}
.custom	#header #logo a { color: #111; font-size:20pt;}
.custom	#header #logo a:hover { color: #2361a1; }
.custom #header #tagline { font-weight: normal; color: #888; }


.custom #welcome_box {
width: 90%;
padding: 0.571em 0.786em;
margin-left: 1em;
margin-right: 1em;
margin-bottom: 1em;
margin-top: 1em;
margin-bottom: 0em;
padding-bottom: 0em;
}

.custom .format_text p.orangebox { padding: 0.571em 0.786em; background: #fffdcc; border: 1px solid #ccc; }

.custom .comments_closed p {display: none;}
.custom .to_comments {display:none;}

body.custom{background-color:#d8dfe5;}
.custom #container{background-color:#fff;}

.custom .welcome-box-title {font-size:18pt;
text-align:center;}

.custom .sidebar h3 { font-variant: small-caps; letter-spacing: 1px; color: #555; }

.custom table {align: center;
	border-collapse: collapse;
margin: 10px 0;	}
	
.custom table caption {
	background: #eeeeee;
border: #999999;
padding: 4px 8px;
color: #666666;	}
	
.custom table th {
	background: #888888;
color: #ffffff;
font-weight: bold;
font-size: 90%;
padding: 4px 8px;

border: solid 1px #ffffff;
	}
	
.custom table td {
	padding: 4px 8px;
background-color: #ffffff;
border: 1px solid #ccc;
}

.custom table tfoot td {text-align: left;	
		}
	
.custom table tr.alt td {
	background: #f4f4f4;	}

.custom table tr.over td {
	background: #ffffff;	}



.custom .format_text a { text-decoration: underline; font-weight:bold;}
.custom .format_text a:hover { text-decoration: none; font-weight:bold;}