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


.custom #header { height: 113px; background: #482917 url('images/header.png') no-repeat; padding: 0; } 
.custom #header p#logo { text-indent:-9999px;  height:118px; width:1069px; }
.custom #header p#logo a { display: block;  outline: none; }
.custom #header #tagline { display:none; }
.custom #header { border-bottom: none; clear: both; }

/* link color */
.custom h2 a:hover { color: #a2426c; }
.sidebar a { color: #a2426c; }
.custom .sidebar a:hover { background-color: #a2426c; color: #fff; text-decoration:none; }



/* Style the First (or Only) Post */
.custom .post.top {
   background:#ffffff none repeat scroll 0 0;
   border:none !important;
   margin:1em;
   padding:2em;
}

/* Style Remaining Posts (in a Multi-Post Listing) */
.custom .post.post_box {
   background:#FFFFFF none repeat scroll 0 0;
   border: none;
   margin:1em;
   padding:2em;
}


/* Footer */

	.custom #footer {color: #f9cce0; background:#482917; border-top:0; height: 67px; background: url('images/footer.png') no-repeat; padding: 0;}
.custom #footer a { color: #f9cce0; }

/* These lines remove the vertical lines */
.custom #content { background-image: none; }
.custom #content_box { background-image: none; }

.custom .comments_closed p { display: none; } 

/* VARIOUS CUSTOM CSS CHANGES */
/* This line changes the background color */
.custom body { background: #ffffff; color: #666 }


/* Style the page */
.custom .top .post_box {
background:#fdf5f2 none repeat scroll 0 0;
border:5px double #eedce1 !important;
margin:1em;
padding:2em;
}




/* This line changes the background color of the post box */

.custom .post_box { background: #fcf3f4; border-top: 1px dotted #bbb; padding-left: 7em; padding-right: 7em; padding-top: 5em; padding-bottom: 3em; }

.custom .post.top { background: #fcf3f4; border-top: 1px dotted #bbb; padding-left: 7em; padding-right: 7em; padding-top: 5em; padding-bottom: 3em; }





/* These lines change the background and line color of the nav */
.custom ul#tabs li{background: #f9cce0; border: 1px solid #f9cce0; }

.custom ul#tabs { background: #f9cce0; list-style: none; border: 1px solid #f9cce0; border-width: 0 0 1px 0px; }

.custom #tabs a:hover { background: #a2426c; color: #fff; text-decoration: none; }



/* This line makes the nav links */
.custom ul#tabs li a { display: block; line-height: 1.5em; color: #482917; letter-spacing: 2px; }


/* This line makes ad section above header */
.custom #leaderboard_ad { float: right; position: absolute; width: 468px; height: 13px; top: 0px; left: 360px; }



/* image background */

body.custom { background: #eedcdc url('images/bg-ornate.gif') 50% 0 repeat; }

.custom #container { margin-top: 2em; margin-bottom: 2em; }

	.custom #page { background: #fff; }
	
/* end image background */

/*---:[ global elements ]:---*/
a { color: #a2426c; text-decoration: none; }


