/*
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/
*/

/* remove header bottom line */
.custom #header { border:none; }


/* get rid of the horizontal double line over the footer */
.custom #footer 
{   
border-top-style:dotted;
border-right-style:none;
border-bottom-style:none; 
border-width: 1px;
border-color: #ffffff;
border-left-style:none; 
}

/* get rid of the light grey dotted vertical line separating sidebars */
.custom #sidebar_1 { border-style: none; }

/* COMMENT box background colors */

.custom dt.comment-author-admin,
.custom dd.comment-author-admin,
.custom dt.comment-author-admin span,
.custom dd.comment-author-admin span
{
color: #fff !important;
background: #666 !important;
}

.custom dt.comment-author-admin a,
.custom dt.comment-author-admin a:active,
.custom dt.comment-author-admin a:visited,
.custom dd.comment-author-admin a,
.custom dd.comment-author-admin a:active,
.custom dd.comment-author-admin a:visited
{
color: #fff !important;
background: #A1A1A1 !important;
}

/* General plays-with-dark stuff for NON home page comment area */

.custom .comments_intro span {color: #fff;}
.custom .comments_intro p {color: #fff;}
.custom .comments_intro a {color: #fff;}
.custom .comments_intro {color: #fff !important;}
.custom .comments_intro span.bracket {color: #fff;}

/* The date below trackback, then way down below, the "Leave a Comment" text */

.custom dl#trackback_list dd span {color: #fff;}
.custom div#respond_intro p {color:#fff;}
/* styling home comments*/
.custom p.to_comments a span {color:#fff !important;}
.custom p.to_comments a {color:#fff !important;}
div.teasers_box a.teaser_comments {color:#dd0; border-bottom:none; text-transform:capitalize; letter-spacing:0px; font-size:12px;}
.custom dl#trackback_list dt a {color: #ccc;}
.custom dl#trackback_list dd span {color: #fff; padding-left: 11px;}


