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

/*--:[ Thesis CSS Reset ]:--*/
.custom a { outline:none; }
.custom .menu, .custom .menu a, .custom .menu li ul { border:none; }
.custom ul.menu li { background:none; border:none; }
.custom .full_width .page { background:none; }
.custom #feature_box { border-bottom:none; }
.custom #content_box { background:none; }
.custom #sidebar_1 { border:none; }
.custom .sidebar h3 { font-variant:normal; letter-spacing:0; }
.custom #column_wrap { background:none; }

.custom h2.entry-title {letter-spacing: 0!important;}

/*--:[ Header ]:--*/
.custom #header_area { background: #333333;}
.custom #title_area {background:#ffffff; padding:1em 0 0.5em; border-bottom:1px solid #A5B7D7;}
/* This line sets up our clickable background image based on the site title's link */
.custom #header #logo a {display: block; border-bottom:none; height:70px; padding-top:0; padding-bottom:0;  background:url(/wp-content/themes/thesis/custom/fourfridays.com/images/logorev1.gif) center left no-repeat;}
/* 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 line collapses the vertical space of the tagline so that there isn't unnecessary white space after the header image */
.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; border-bottom:0; }

/*--:[ Nav Bar ]:-- */
.custom #nav_area { background:#990033; height: 3.3em; }
.custom ul.menu li a { text-transform: lowercase; font-family: "American Typewriter"; font-size: larger; background:#990033; margin-bottom: 0.1em; }
.custom ul.menu li a:hover { background:black; color: white; }
.custom #nav_area #nav_page .menu { height: 3.3em; position: relative; }


/*--:[ Content ]:--*/
/* Page Headers */
.custom .headline_area h1, h2 { background-color: black; color: white; font-family: "American Typewriter"; text-indent: 0.5em; text-transform: lowercase; }
/*.custom #sidebars {display: none;}*/
.custom #content_area {background-color: white;}

/*--:[ Posts ]:--*/
.custom .headline_area .entry-title {background-color: white; color: black;}
.entry-content {margin-top: 70px;}

/*--:[ Comments ]:--*/
/* Removing comments are closed from home page using custom class */
.no_comments #idc-container-parent { display: none; }
/* Remove comments powered by Intense Debate */
#idc-container-parent .idc-foot { display: none; }
/* Comments Header */
#idc-container-parent #idc-container .idc-head h3 { background-color: black; color: white; font-family: "American Typewriter"; text-indent: 0.5em; text-transform: lowercase; }
/* Cool border around the avatar image */
#idc-container-parent #idc-container .idc-c-h .idc-a { border: 1px solid #990033 !important; }
/* Comment Header-contains avatar, avatar menu, name, reputation and voting functionality */ 
#idc-container-parent #idc-container .idc-c .idc-c-h { background: none; border: none; }
/* To organize comments inside border on left side */
#idc-container-parent #idc-container .idc-thread { border-left: 6px solid #333333; padding: 0 0 0 10px; }
/* Comments made by an admin */
#idc-container-parent #idc-container .idc-c.idc-admin { background-color: #333333; color: white; }
/* To remove comments are closed on this */
.custom .comments_closed p {display: none ;}

/*--:[ Footer ]:--*/
.custom #footer_area {background:#333333; padding:0.5em 0; border-top:1px solid #bbd;}
.custom #footer {border-top:0; color: white;}
.custom #footer a {color: #990033; font-weight: 600;}
.custom #footer a:hover {color: red;}


