/*
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/
*/

/* ************************************************************************************ */

/* ADDED 15/7/2010 BY BILL HELY */
/* Code to break threaded comments into separate boxes for each thread.*/

/* Add an outer border color to the entire comments box,
   and the padding will add space to all sides of this box. */
.custom #comment_list { background: #0000FF; padding: 1em; }

/* Add bottom spacing to every comment so they are broken up.
   Also, I recommend you keep the margin and padding values the same. */
.custom #comment_list dd { margin-bottom: 1em; }

/* Add a background color that should contrast with the outer box. */
.custom #comment_list .comment { background: #FFF; }

/* ************************************************************************************ */

/* ADDED 15/7/2010 BY BILL HELY */
/* Code to highlight author comments.*/
.custom dl#comment_list dt.bypostauthor, .custom dl#comment_list dd.bypostauthor>div 
    { background: #ebebe4; }

/* ************************************************************************************ */

/* ADDED 15/7/2010 BY BILL HELY */
/* Code to add a custom header graphic.*/
/* 
.custom #header { border-bottom:none;
height:128px; padding-top:0; padding-bottom:0;
background: #FFFFFF url(http://computerandonlinesecurity.com/blog/wp-content/uploads/2009/02/header-graphic.jpg) no-repeat center left; }
.custom #header #logo { display:none; }
.custom #header #tagline { display:none; }
*/ 

/* ************************************************************************************ */



