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

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: #c0e0a2 url('images/sunflowers.gif'); background-position:bottom center; background-attachment:fixed; background-repeat:repeat-x; }

.custom a, .custom a:visited { color: #d66a22; }
.custom a:hover { color: #d66a22; }

.custom #page { padding: 2em 1.9em; background: #fff; border: 0.1em solid #e99002; border-top: 0; }
.custom #container { margin-top: 2em; margin-bottom: 2em; padding: 0.3em; background: #bba906; border: 0.2em solid #c5451b; }

.custom #header { border-bottom:none; height:150px; padding-top:0; padding-bottom:0; background:url('images/garden-head.jpg') center left no-repeat; }
.custom #header #logo { display:none; }
.custom #header #tagline { display:none; }

.custom li.widget .widget_box { background: #c9c19a; border-style: solid; border-color: #954b1b; }

.custom #multimedia_box {background-color:#FFFFFF; }
.custom #custom_box {background-color:#FFFFF; }
.custom #image_box {background-color:#FFFFFF; }
.custom #video_box {background-color: #fff;}

.custom #tabs { border-color: #475022; color: #475022; }
.custom #tabs li { border-color: #475022; background-color: #ffffff;}
.custom #tabs a:link, .custom #tabs a:visited { color: #475022; }
.custom #tabs a:hover, .custom #tabs a:active { background-color: #f7cd07; text-decoration: underline; }
.custom #tabs .home-item { border-left: 1px solid #475022; background-color: #475022; color: #f7cd07; }
.custom #tabs .home-item a:link, .custom #tabs .home-item a:visited { color: #f7cd07; }
.custom #tabs .home-item a:hover, .custom #tabs .home-item a:active { background-color:#475022; color: #f7cd07; text-decoration: underline; }

.custom #sidebars h3 { color: #475022; font-weight: bold; border-bottom: double #475022; }
.custom #sidebars .sidebar_list li li { color: #d66a22; list-style-type: disc; margin-left: 10px; }
