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

*/

/*
Background image for style, non-clickable */
.custom #header { background: url(\'http://www.artsandcraftshomes.com/wp-content/uploads/2009/11/arts-and-crafts-homes-home1.jpg\') no-repeat top left; margin-bottom:10px; }

/*Floating ad position in the header */
.custom #leaderboard_ad { text-align:center; height: 90px; margin-bottom:20px; }

/* This line sets up our clickable background image based on the site title\'s link */
.custom #header #logo a { display: block; height: 204px; width: 248px; background: url(\'http://www.artsandcraftshomes.com/wp-content/uploads/2009/11/arts-and-crafts-homes-home2.jpg\') no-repeat; outline: none; }

/* This line gets rid of the site title & tagline by casting them out to far left field */
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }

/* This is a bit of a kludge, but it seems to work. */
.custom #header #tagline { height: 0; }

/* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header, and the sides of the content */
.custom #header { padding: 0; }

body.custom {
    background: #d1cebc;
}

.custom #container {
    margin-top: 1em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #d1cebc;
    border: 0.4em solid #fff9df;
}

.custom #page {
    background: #fff9df;
}

.custom ul#tabs li {background: #d1cebc;}
.custom ul#tabs li.current_page_item, .custom ul#tabs li.current-cat {background: #bede95;}
.custom ul#tabs li a:hover {background: #dea234;}
.custom ul#tabs li.rss {background: #fff9df;}

/* Feature HOMEPAGE Box*/
.custom #feature_box { background: #fff9df; padding: 10px; }
.custom #feature_box table { font-size: 12px; color: #6f574c; }

.custom .entry-title {color: #e68f1b;}
.custom .entry-title a{color: #e68f1b;} 
.custom .headline_meta {color: #4e78aa;}
.custom .teaser_date {color: #336699;}
.custom a.teaser_category {color: #336699;}

body { color: #6f574c; }

.custom .format_text a:hover { padding: 0.077em 0; color: #6f574c; background: #bede95; text-decoration: none; }
.custom .format_text .to_comments a:hover { color: #6f574c; background-color: #bede95; }
.custom .format_text .sociable a:hover { color: #6f574c; background-color: #bede95c; }
.custom .post_tags a:hover { padding: 0.077em 0; color: #6f574c; background: #bede95; text-decoration: none; }
.custom .sidebar a:hover { padding: 0.077em 0; color: #6f574c; background: #bede95; text-decoration: none; }
.custom .ec3_list { color: #6f574c; }
.custom .teaser a.teaser_link:hover { padding: 0.077em 0; color: #6f574c; background: #bede95; text-decoration: none; }
.custom div.ec3_iconlet { border: #fff9df; background: #fff9df; text-decoration: none; }
.custom .ec3_ec { display:none; }
.custom .ec3_eventday a { background: #bede95; color: #6f574c; }
#wp-calendar .ec3_eventday a { background: #bede95; color: #6f574c; }
.custom h2 a:hover { padding: 0.077em 0; color: #6f574c; background: #bede95; text-decoration: none; }

ul#cat_tabs { list-style: none; }
	ul#cat_tabs li { margin-bottom: -0.1em; background: #efefef; border-left: 0; float: left; }
	ul#cat_tabs li.current_page_item, ul#tabs li.current-cat { background: #fff; border-bottom: 0; }
		ul#cat_tabs li a { display: block; line-height: 1em; color: #111; text-transform: uppercase; letter-spacing: 2px; padding:0.545em 0.818em; }
		ul#cat_tabs li a:hover { color: #111; text-decoration: none; }
		
		ul#cat_tabs li ul {position:absolute; display:none; list-style:none;}
		ul#cat_tabs li:hover ul {display:block;}
			ul#cat_tabs li ul li {float:none;}

ul#cat_tabs:after { content: \".\"; display: block; height: 0; clear: both; visibility: hidden; }

.custom #image_box { padding: 1.1em; background: #d1cebc; border-bottom: 1px solid #d1cebc; }
.custom #image_box img { padding: 0.1em; background: #d1cebc; border: 0.1em solid #d1cebc; }
.custom .format_text img.frame { background: #d1cebc; border-color: #d0e1aa; }
.custom .post_image { background: #d1cebc; border-color: #d0e1aa; }
.custom .post_image_link img.frame { background: #d1cebc; border-color: #d0e1aa; }


/* Top Nav bar */
.custom ul#topnav {
border-style: none;
list-style-image: none;
list-style-position: outside;
list-style-type: none;
background:#fff9df none repeat scroll 0 0;
width: 100%;
float: left;
margin-bottom: 20px;
}
.custom ul#topnav li { float: right; padding: 0 0 0 20px; }
.custom ul#topnav li a { font-size: 1.5em; color: #6f574c; }
.custom ul#topnav li a:hover { color: #fff9df; background: #bede95; } 

/* Comments are closed text removed */
.custom .comments_closed p {display: none ;}