/*
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/
*/

/*
BACKGROUND CHANGES
*/
body.custom {
    background: #330000;
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #330000;
    border: 0.4em solid #CCCCCC;
}

.custom #page {
    background: #FFF;
}
/*
HEADLINE COLOR CHANGE: CHANGING THE COLOR OF BLOG POST HEADLINES. (1) The first line will establish the color of your post titles before the current user has clicked/visited them. (2) The second line establishes the color of your post titles after they've been visited/clicked. (3) And the third line establishes the color of post titles when the user is hovering their mouse cursor over the title. You can make them all different or all the same -- it's up to you.
*/
.custom h2 a {color: #330000; }

.custom h2 a:visited {color: #330000; }

.custom h2 a:hover { color: #663300; }


/* TAB-FONT. CHANGES the FONT INSIDE the TAB */
.custom ul#tabs li a {color:#330000;}

/* LINKS. CHANGES the COLOR of ALL LINKS on SITE */
.custom a, a:visited { color: #660000 ; }

