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

/*Studio Manager Wordpress Site Custom CSS*/

.custom .comments_closed p {
  display: none;
}

.custom .format_text a {
	text-decoration: none;
	border-bottom: 1px dotted #192f73;
	}
	
.custom a.post_image_link {
	border-bottom: none;	
}

/*change color of blockquote*/
.custom blockquote { 
	color: #222 ; 
	font-size: 14px;
	line-height: 130%;
}

/*change color of blockquote*/
.custom blockquote.boxed { 
	color: #222 ; 
	font-size: 14px;
	line-height: 140%;
	border: 1px dashed #7e320b; 
}

/*change post headline meta data from all caps */
.custom .headline_meta abbr, .headline_meta span {
	text-transform: none;
}

/*Dropcap class*/
.custom .dropcap {
	color: red;
	float: left;
	font-size: 4.8em;
	margin: .3em .2em .1em 0;
}

/*Custom h3 styling*/
.custom h3.bigborder {
	color: #111;
	font-size: 22px;
	border-top: 1px dashed #8f836d;
	margin-top: 0px;
	padding-top: 18px;		
	}

/*Custom li.bullet styling*/
.custom.ul.bullet{
	list-style-type: circle;
	list-style-position: inside;			
	}


/*Custom h3 styling*/
.custom h3.bigger {
	color: #111;
	font-size: 24px;
	margin-top: 0px;	
	}
	
	
/*Custom h3 styling*/
.custom h3.big {
	color: #111;
	font-size: 22px;
	margin-top: 0px;	
	}

/*Custom h3 styling*/
.custom h3.red {
	padding-top: 13px;
	border-top: 2px dotted #96c032;
	color: #D11931;
	font-size: 23px;
	margin-top: 0px;	
	}
	

/*Custom h4 styling*/
.custom h4.border {
	color: #111;
	font-size: 21px;
	font-weight: normal;
	border-top: 1px dashed #8f836d;
	margin-top: 0px;
	padding-top: 18px;
        padding-bottom: 9px;		
	}


/*Tab Anchor Hover -- use blue*/
.custom	#tabs a:hover {
	color: #2f5a95; text-decoration: none; 
	}
	
/*Custom On-sale box I stole from DIY page*/
.custom .on_sale { 
	margin-left: 20px;
	margin-right: 40px;
        padding: 0.571em 0.786em; 
	background-color: #efefef; 
	font-size: 14px;
	line-height: 140%;
	border: 1px dashed #7e320b; 
	}
	