/*



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/



original dark mauve: #8A4F68; #a65e7c;



red of title on book color: #D6463C;



*/







/* adds 'frame' of color around whole page */



body.custom {



    background:  #3a3870; 

}











.custom #container {



    margin-top: 2em;



    margin-bottom: 2em;



    padding: 0.3em;



    background: #33332f;



    border: 0.4em solid #282A47;



}







.custom #page {



    background: #fff;



}











/* mz add line height */



p {



line-height: 1.6em;



}







/* make quotes italic and stand out with different font family */



q {



font-family: sans-serif;



font-style: italic;



}







/* make pullquotes italic,and stand out */



.custom .format_text blockquote.right {



font-family: sans-serif;



font-style: italic;



font-size: 1.6em;



line-height: 2em;



color: gray;



display: block;



padding: 1em;



border-top: 1px solid silver;



border-right: 3px solid silver;



border-bottom: 3px solid silver;



border-left: 1px solid silver;



} 











/* pullquote widths ~ 250px */



.custom .format_text blockquote.w45 {



width: 45%;



}







.custom .format_text blockquote.w33 {



width: 33%;



}







.custom .format_text blockquote.w25 {



width: 25%;



}







/* float right or left with word wrap */



.right {



float: right;



margin-left: 1em;



}







.left {



float: left;



margin-right: 1em;



}







/* uppercases and bolds text */



.caps {



text-transform: uppercase;



font-weight: bold;



}







/* makes tagline in header red */



.custom #header #tagline  {

color: #D6463C;

font-weight: bold;

}







/* sitewide heading and post headings dark color, same as 'frame' around page */







.custom #header #logo a {



color: #282A47;



}







h2 {



color: #282A47;



}







/* make up for missing image frame on home page - should be fixed in Thesis 1.6 */



.custom img.post_image {



background: #eee; border-style: solid; border-color: #ddd; border-bottom: 1px;



}





/* make the checkout and paypal images the right size */



.custom .post_box .format_text input { width: auto; }



/* Adds a red line above the header and below the page navigation */



.custom #header {

border-top: solid 1px #D6463C;

}

