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

/* Ingredients Table Styles */
#ingredients-table {
        font-family: monospace;
	width: 100%;
	text-align: left;
	border:1px solid #fff;
}
#ingredients-table th {
	font-weight: bold;
	text-transform: uppercase;
	padding: 10px;
	background: #bbbf9b;
	border-top: 4px solid #acaf8e;
	border-bottom: 1px solid #acaf8e;
	color: #111;
}
#ingredients-table td {
	padding: 10px;
	background: #e8ecc9; 
	color: #333;

}


/* Custom Background Colors and Borders */
body.custom {
    background: #679500;
}
.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #436100;
    border: 0.4em solid #537800;
}
.custom #page {
    background: #fff;
}


/* Removes Smiley from WPStats Plugin */
img#wpstats{width:0px;height:0px;overflow:hidden}


/* Add Logo to Header */
.custom #header {background: url("http://healthygreendrink.com/hgd_logo_sml.png") no-repeat left center;}
.custom #logo {text-indent:90px;}
.custom #tagline {text-indent:90px;}


/* Background and Border to Teasers */
.custom .teaser { 
width:21.8em;
background: #E3F0F2;
border: 1px solid #ADDDE6;
padding: 1em;
}


/* Style Recipe Ingredients List on About Page */
#about-recipe li {
background: #E3F0F2;
border: 1px solid #ADDDE6;
padding: 5px;
margin: 2px 0 2px 0;
}


/* Style bookmark, related posts and promote box */
.promo {
background: #E3F0F2;
border: 1px solid #ADDDE6;
float: right;
margin: 0 0 1.538em 1.538em;
padding: 0.769em 0.769em 0;
width: 178px;
}

.promo h3, .promo-box h3 {margin-top:0;}


.promo-box {
background: #F9F9F9;
border: 1px dotted #CCCCCC;
padding:0.769em 0.769em 0;
/*min-height: 235px;*/
}



/* Style Twitter greendrinksFTW page */
div.tb_tweet {padding:6px 0 0 0 !important;}
div.tb_tools {display:none;}
a.tb_photo img {border:none !important;}



.tab-3 a {
font-weight:bold;
color:#436100;
background:#E4EBCA;
}

.tab-3 a:hover {
font-weight:bold;
color:#436100;
background:#D6DFB5;
}
