/*
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/
*/

/* Header - Image Banner */
.custom #header {border:0; padding:0; margin:0; height:221px; background:url(images/HeaderImg3_2.jpg) center left no-repeat;}
/*.custom #header #logo {}
.custom #header #tagline {}*/

/* Body Background Image */
body.custom { background:url(images/Background9.jpg) center repeat;} /* this is the outside image*/
/*.custom #page { background:url(images/Background5.jpg) repeat;}*/  /*This is the middle image*/
/*.custom #page { background: FCF8F8;} */

/*.custom h3 {letter-spacing:0px; font-variant: verdana;} */

.custom li.widget {margin-bottom: 1.5em;}   /*this adjusts the space between widgets*/

.custom .comments_closed p {display: none;} /* this should disable the comments closed display*/

.custom .menu {border:none;}


.widget_twitter a.twitterwidget-title { color:#000000;}

.widget_twitter .entry-meta .from-meta {display:none;}
/* Browns
.custom #tabs a {background: #dbbf74; }
.custom #tabs .current_page_item a, #tabs .current-cat a {background: #995611;}
*/


/* Navigation Tabs - Dynamic 
.custom ul#tabs {border:none; margin:0; padding: 0.75em; background:#000; letter-spacing:0; width:98em;}
	.custom ul#tabs li {margin:0; border:none; background:#000; letter-spacing:0; padding: 0;}
	.custom ul#tabs li.current_page_item {padding-bottom:0; background:#FF9600; letter-spacing:0; }
    .custom ul#tabs li.current-cat {padding-bottom:0; background:#FF9600; letter-spacing:0; }
	.custom ul#tabs li.rss { letter-spacing:0;}
	.custom ul#tabs li a {margin:0; color:#fff; background:#000; text-transform: none; letter-spacing:0; }
	.custom ul#tabs li a:hover {margin:0;  color:#000; background:#FF9600; text-decoration:none; letter-spacing:0; }
	.custom ul#tabs li.current_page_item a { color:#000; background:#FF9600; text-decoration:none; letter-spacing:0; } 
    .custom ul#tabs li.current-cat a { color:#000; background:#FF9600; text-decoration:none; letter-spacing:0; }
	.custom ul#tabs li.current_page_item a:hover { color:#000; background:#FF9600; text-decoration:none; letter-spacing:0; }
    .custom ul#tabs li.current-cat a:hover { color:#000; background:#FF9600; text-decoration:none; letter-spacing:0; }


*/

/*reds
.custom #tabs a {background: #887660; } /*black = 050505*/
.custom #tabs .current_page_item a, #tabs .current-cat a {background: #050505;}  /*Gray = 75706F; br from photo = 887660*/
.custom #tabs li a {color:#FDFCFC;} /*text color in tabs*/
*/
/*.custom #ul.catlist li{ color: #050505; margin: 5px;}*/

/*
.custom h3 {
font-family : verdana;
color : #424242;
text-align : left;
}

.custom h2 {
font-family : verdana;
color : #424242;
text-align : left;
}

.custom h1 {
font-family : verdana;
color : #424242;
text-align : left;
} 
.custom p {
color : #424242;
} 

a:hover {
color : #000000;
background : #424242 bold;
text-decoration : ;
}

a:visited, a:link, a:active {
color : #424242;
text-decoration : ;
} 

<?php do_action('showmicroblog'); ?>

*/
/* Make all widget headings red */
.custom .widget h3 {
   color: red;
}
.custom h3 {
font-family : georgia;
font-weight:bold;
font-size:24px;
}

