/*
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 BY ANGUS ADDED BY ANGUS ADDED BY ANGUS ADDED BY ANGUS  */

/* code suggested on forum for changing drop cap colors */
.custom .format_text .drop_cap { color: rgb(165,42,42); }



/* HEADER/MASTHEAD CODE FROM DIY This line sets up our clickable background image based on the site title's link */
/* DIY: Adjust the height & width attributes to reflect the actual size of your image */
/* DIY: Change the filename of your image to reflect the actual header's file name */
.custom #header #logo a { margin: 0 auto; display: block; height: 300px; width: 960px; background: url('images/OtherBS-mastheadFINAL-white.jpg') no-repeat; outline: none; }

/* This line gets rid of the site title & tagline by casting them out to far left field */
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }

/* This line collapses the vertical space of the tagline so that there isn't unnecessary white space after the header image */

/* This is a bit of a kludge, but it seems to work. */
.custom #header #tagline { height: 0; }

/* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header, and the sides of the content */
.custom #header { padding: 0; }

/* END HEADER/MASTHEAD CODE FROM DIY */


.custom span { font-family: courier new; font-weight: bold; font-size-adjust: 0.60; }

/* For the custom pull quotes */
.custom blockquote.left { width: 200px; margin: 5px 15px 5px 0; color: rgb(165,42,42); line-height: 90%; font-size: 1.4em; font-family: courier new; font-weight: bold; text-align: left; border: 3px double #aaa; border-width: 0px 0 !important; padding: 0 !important; float: left; }

.custom blockquote.right { width: 200px; margin: 5px 0 5px 15px; color: rgb(165,42,42); line-height: 90%; font-size: 1.4em; font-family: courier new; font-weight: bold; text-align: right; border: 3px double #aaa; border-width: 0px 0 !important; padding: 0 !important; float: right; } 



/*---:[ WordPress Image Captions ]:---   (from Thesis site) */
.format_text .alignleft { margin: 0 1.571em 1.571em 0; float: left; clear: left; }
.format_text .alignright { margin: 0 0 1.571em 1.571em; float: right; clear: right; }
.format_text .aligncenter { display: block; margin: 0 auto 1.571em auto; float: none; clear: both; }
.format_text .alignnone { display: block; margin: 0 auto 1.571em 0; clear: both; }
.format_text .wp-caption { background-color: #f3f3f3; border: 0.071em solid #ccc; text-align: center; padding: 0.714em; }
.format_text .wp-caption p { font-size: smaller; font-style: italic; margin-bottom: 0; }

/*---:[ Set 1: solid background with slick borders around your "page" area ]:---*/


.custom #sidebars { background-color: #a4a098; }

.custom .sidebar h3 { font-family: arial;  font-weight: bold; color: rgb(0,0,0); }

.custom .sidebar a, a:visited { color: rgb(165,42,42); }

body.custom { background-color: #EEEEE0; }

	
	.custom #container { margin-top: 2em; margin-bottom: 2em; padding: 0.3em; background: #EEEEE0; border: 0.4em solid #EEEEE0; }

		.custom #page { background: #FFFFFF; }

/* This is the frame for the rotator image box. */
.custom #image_box {background:#a4a098 }

/* This is code from diy forum for changing header tab colors */
.custom ul#tabs li {background: #EEEEE0;}
.custom ul#tabs li.current_page_item, ul#tabs li.current-cat { background: #a4a098; border-bottom-color: #a4a098; }
.custom ul#tabs li.rss { padding-right: 0; background: none; border: none; float: right; }
		

.custom H2 a { font-family: courier new;  font-weight: bold; font-size: 1.1em; }


/*  END ADDED BY ANGUS END ADDED BY ANGUS END ADDED BY ANGUS END ADDED BY ANGUS  */

		
/*---:[ end Set 1 ]:---*/