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

#feature_box {border: none;}

.custom #header { border-bottom: none; height: 230px; padding-top: 0; padding-bottom: 0; background: url(http://30hourday.org/wp-content/uploads/2009/11/30hourday-banner.jpg) center left no-repeat; }
.custom #header #logo { display:none; }
.custom #header #tagline { display:none; }

.custom-home #header {display: none;}
.custom-home #home_header {padding: 10px; height: 320px; position: relative; background: url(images/bg_home_header.png) repeat-x;}
.custom-home #home_header #description {width: 508px; height: 182px; position: absolute; top: 25px; right: 48px; overflow: hidden; text-indent: -999em; background: url(images/bg_home_description_summer.png) no-repeat;}
.custom-home #custom-logo {display: block;}
.custom-home #movie {}

#counter {width: 281px; height: 26px; padding: 9px 11px; position: absolute; bottom: 28px; left: 428px; background: url(images/bg_counter_during.png);}
#counter.before {background: url(images/bg_counter_before.png)}
#counter .ticker {width: 19px; height: 26px; margin-right: 2px; display: block; float: left; background: url(images/counter.png) no-repeat;}
#counter .ticker1 {background-position: -19px 0;}
#counter .ticker2 {background-position: -38px 0;}
#counter .ticker3 {background-position: -57px 0;}
#counter .ticker4 {background-position: -76px 0;}
#counter .ticker5 {background-position: -95px 0;}
#counter .ticker6 {background-position: -114px 0;}
#counter .ticker7 {background-position: -133px 0;}
#counter .ticker8 {background-position: -152px 0;}
#counter .ticker9 {background-position: -171px 0;}
#counter .separator {margin-left: 6px;}

#donate {position: absolute; bottom: 26px; left: 739px;}
#donate img {display: block;}

#charities,
.linky_mclinks {padding: 20px 0 20px 20px;}
#charities h2,
#sponsors h2,
#other_charities h2,
#supporters h2 {height: 11px; margin: 0 0 15px; overflow: hidden; text-indent: -999em; background-repeat: no-repeat;}
#charities h2 {background-image: url(images/title_charities.png);}
#sponsors h2 {background-image: url(images/title_sponsors.png);}
#other_charities h2 {background-image: url(images/title_other_charities.png);}
#supporters h2 {background-image: url(images/title_supporters.png);}

#charities ul {list-style: none;}
#charities ul li {margin: 0; float: left;}
#charities ul li a {height: 65px; display: block; overflow: hidden; text-indent: -999em;}
#charities ul li#freegeek a {width: 148px; background-image: url(images/charity_free_geek.png);}
#charities ul li#ofb a {width: 123px; background-image: url(images/charity_ofb.png);}
#charities ul li#tft a {width: 156px; background-image: url(images/charity_tft.png);}
#charities ul li#pear a {width: 118px; background-image: url(images/charity_pear.png);}
#charities ul li#pcarc a {width: 166px; background-image: url(images/charity_pcarc.png);}

.linky_mclinks {border-top: 1px solid #CCC; font-size: 13px;}
.linky_mclinks ul {list-style: none;}
.linky_mclinks li {line-height: 20px;}

#charities ul:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
#charities ul {*zoom: 1;}