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

body.custom { background-image:url(images/fgoad_back.jpg); background-repeat:repeat-y; background-color:#acacac; }

.custom #page { width:960px; text-align:left; background-color:#FFF; margin-left:auto; margin-right:auto; -moz-box-shadow: 0px 0px 12px #000; -webkit-box-shadow: 0px 0px 12px #000; box-shadow: 0px 0px 12px #000;  filter: progid:DXImageTransform.Microsoft.Shadow(color=#000000,direction=135); float:left;}
.custom #header { background-image:url(images/fgoad_header.jpg); color:#FFF; height:98px; border-style:none; }

.custom #logo { background-image:url(images/FGOAD_Logo.png); width:900px; height:161px; background-repeat:no-repeat; margin-top:0px; position:relative; top:0px; float:left; margin-top:-32px; display:block; }
.custom #logo a {display:none;}
.custom #tagline { display:none; }
.custom ul.menu { margin-top:12px; background-color:#06F; color:#FFF; }
.custom .tab {background:none;}
.custom .rss { padding-right:1.1em; }

.custom #content {width:64em; }
.custom #sidebars { width:31.5em; }
.custom .sidebar_list { width:300px;}
.custom .sidebar_list h3 { font-family:"Trebuchet MS", Arial, Helvetica, sans-serif; font-size:1.2em; font-weight:bold; color:#FFF; text-transform:uppercase; background-color:#06F; font-variant:normal; border:10px; border-color:#000; padding:.5em 1.1em; }
.custom .widget {background-color:#CCC;  padding-bottom:1.1em; }
.custom .textwidget, .custom #xhanch_my_twitter, .custom .sidebar_list ul li { padding: 0em 1.1em; }
.custom #content_box { background:none; }
.custom .teasers_box {width:62em; }
.custom .teaser {width:30em;}

.custom abbr.published { font-weight:bold; cursor: default;}

.custom .recipe-about { margin-top:-40px;}

.custom .date { float:left; width:49px; height:53px; background:url(../images/date_text_bg.gif) no-repeat top left; }
.custom .date_month { font-size:10px; color:#ffffff; font-family:Verdana, Arial, Helvetica, sans-serif; padding-left:10px; padding-top:1px; }
.custom .date_day { font-size:18px; color:#000000; font-family:Verdana, Arial, Helvetica, sans-serif; padding-left:10px; padding-top:4px; }

.custom li.tweet_list div { padding:.5em 0em; }

.custom #footer {background-color:#333; color:#FFF; font-weight:700; }
.custom #footer p a {text-decoration:none; color:#FFF; border-bottom:none; }