/*
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 {
    color: #4D4D4D;
}

.custom #page {
    padding-top: 1em;
}

.custom #content_box, .custom #column_wrap {
    background: none;
}

.custom #content, .custom #content div.post_box {
	overflow: hidden;
}

.custom h2 {
    color: #547363;
}

.custom h2 a {
    color: #547363;
}

.custom .menu {
    display: none;
}

/* -------------- Begin HEADER ------------------*/
.custom #header {
    border-bottom: none;
    height: 200px;
    padding: 0px;
}

.custom #header #logo, .custom #header #tagline {
    display: none;
}

/* -------------- End HEADER ------------------*/



/* -------------- Begin CONTENT ------------------*/
.custom #content_box {
    padding-bottom: 50px;
}

.custom .comments_closed {
    display: none;
}

.custom .more-link {
    font-family: Georgia;
    display: block;
    padding-top: 20px;
    padding-right: 20px;
    text-align: right;
}

.custom #archive_info p {
    display:none;
}

.custom #content h1 {
    color: #3E606F;
    font-size: 250%;
}
/* -------------- End CONTENT ------------------*/



/* -------------- Begin SIDEBAR 1 ------------------*/
.custom .headline_meta, .custom .sidebar_list h3 {
    color: #806046;
}

.custom .sidebar_list ul li a {
    color: #4D4D4D;
}

.custom .sidebar_list ul li a:hover {
    color: #547363;
    text-decoration: none;
}

.custom .widget_text {
    margin-bottom: 10px;
}

.custom li.widget_pages {
    margin-bottom: 0px;
}

.custom .widget_categories {
    margin-bottom: 35px;
}

.custom .sidebar_list #text-3 {
    margin-bottom: 35px;
}

.custom .widget_pages h3, .custom .widget_categories h3 {
    display:none;
}

.custom .widget_pages ul li a, .custom .widget_categories ul li a, .custom ul#home_link li a {
    color: #3E606F;
}

.custom .widget_pages ul li a:hover, .custom .widget_categories ul li a:hover, .custom ul#home_link li a:hover {
    color: #547363;
    text-decoration: underline;
}

.custom .widget_pages ul, .custom .widget_categories ul, .custom ul#home_link {
    list-style: disc inside url("images/nav_circle.gif");
}

.custom #subscribe img {
    vertical-align: middle;
    padding-bottom: 5px;
    padding-right: 3px;
}

.custom #subscribe a {
    height: 45px;
    font-size: 90%;
    color: #4D4D4D;
}

.custom #rss_feed_insert form {
    margin-top: 30px;
}
/* -------------- End SIDEBAR 1 ------------------*/



/* -------------- Begin SIDEBARS ------------------*/
.custom #sidebars {
    margin-top: 20px;
}

.custom #sidebars #ad_text {
    color: #6E9681;
    text-align: center;
    line-height: 5px;
}

.custom #sidebars #ad_text a {
    color: #6E9681;
}

.custom #sidebars #ad_text a:hover {
    text-decoration: underline;
}
/* -------------- End SIDEBARS ------------------*/



/* -------------- Begin FOOTER ------------------*/
.custom #footer {
    text-align: center;
}

/* -------------- End FOOTER------------------*/