/*
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 .menu li {padding-right:.5em; padding-left:.5em}


.custom #content_box {
background:#FFFFFF;
}


.custom .sidebar h3 {
font-variant:normal;
}

/* 

MAKE A BACKUP OF YOUR CUSTOM.CSS FILE BEFORE USING THIS CODE!

Copy and paste the ouput below into your custom.css file.

Refresh your site to behold the power of the Mule Herd.

*/



/* DoubleMule Clickable Header v. 1.0 */

.custom #header 
{
background: #ffffff;
padding-top: 0em;
padding-right: 0em;
padding-bottom: 0em;
padding-left: 0em;
border-top: 0em;
border-right: 0em;
border-bottom: 0em;
border-left: 0em;
margin-top: 0em;
margin-right: 0em;
margin-bottom: 0em;
margin-left: 0em;
}

.custom #header #logo a
{
display:block;
width:1000px;
height:176px;
background:url(http://crazygirlnation.com/wp-content/uploads/2010/05/crazygirlnationbanner4.png) center no-repeat;
outline:none;
color: #000000;
text-indent: -9999px;
padding-top: 0em;
padding-right: 0em;
padding-bottom: 0em;
padding-left: 0em;
border-top: 0em;
border-right: 0em;
border-bottom: 0em;
border-left: 0em;
margin-top: 0em;
margin-right: 0em;
margin-bottom: 0em;
margin-left: 0em;
}

.custom #header #tagline 
{
color:#000000;
text-indent: -9999px;
}



/* Re-style the thesis author and children comments */


.custom dl#comment_list .bypostauthor { background: transparent; } /* Reset Thesis default */
.custom dl#comment_list dd { padding-top: 0; } /* Reset Thesis default */
.custom dl#comment_list dd,
   .custom dl#trackback_list dd { padding-left: 0; } /* Reset Thesis default */
.custom dl#comment_list dl dd .format_text { margin-bottom: 0; } /* Reset Thesis default */
.custom dl#comment_list dd div,
   .custom dl#trackback_list dd div { padding-left: 0.9em; }
.custom dl#comment_list dl dd div { padding-left: 1.5em; }
/*.custom dl#comment_list dt.bypostauthor,
   .custom dl#comment_list dd.bypostauthor>div { background: #E7F8FB none repeat scroll 0 0; }*/
.custom dl#comment_list dl.children { background: #FFF; padding-left: 1em; padding-top: 1em; }
.custom dl#comment_list dl.children dt { padding-top: 1em; }
.custom dl#comment_list p.reply { margin-bottom: 1em; }

/*provides even/odd coloring of comments*/
.custom dt.odd, .custom dd. thread-odd  {background: #F5DAEE !important;}
.custom dt.even, .custom dd.even {background: #F5DAEE !important;}

/* removes separating border between theaded comments (no longer needed because of even/odd coloring) */
.custom dl#comment_list dd {
border-bottom:none;
}

/* darkens left border on threaded comments, to provide greater contrast and show that it is a threaded comment */
dl#comment_list dl dt, dl#comment_list dl dd .format_text {
border-width:0 0 0 0.1em;
padding-left:2.2em;
border-style: solid;
border-color: #333333;
}

/* does the same thing as code above, but for admin/user posts too (skip this if you want admin/user posts to be differentiated by a blue border) */
dl#comment_list dl dt.bypostauthor, dl#comment_list dl dd.bypostauthor > .format_text {
border-width:0 0 0 0.1em;
padding-left:2.2em;
border-style: solid;
border-color:#333333;
}

/* further offsets the left-hand spacing on threaded comments to further distinguish them from regular comments */
.custom dl#comment_list dl.children {
padding-left:2.5em;
padding-top:0em;
}


/* do not change these! */
#footer_setup .footer_items ul li { list-style: none; }
#footer_setup .footer_items ul { margin: 0px; padding: 0px; }






