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



.custom a, .custom a:visited { color: #00f; }	/*<--- This makes links green*/
.custom a:hover { color: #099; }				/*<--- This makes links blue when you mouse over them*/

.custom #content_box {background-color:#F5F5F5;}    /*changing the background color of your sidebar.*/
.custom #content {background-color:#fff;}

/*Insert Header Image

To replace the text on the default Thesis installation with a header image, simply paste all of the following code into your custom.css page.

This will make the header clickable, define the size, and place the background. Be sure to change the height, width, and url to match your site:

.custom #header #logo a { display: block; height: 140px; width: 985px; background:url(\'inwardboundbanner.png\') no-repeat; outline: none; }
*/

/*This code will cast the text title and tagline out of the way:

.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }*/

/*This will remove any whitespace after the header image:

.custom #header #tagline { height: 0; }*/

/*This will remove the padding around the header, so there is no whitespace in any other region:

.custom #header { padding: 0; border-bottom:none;}*/



.custom #header { border-bottom:none;
height:150px;
padding-top:0;
padding-bottom:0;
background:url(images/inwardboundbanner.png)
center left no-repeat; }

.custom #header #logo { display:none; }

.custom #header #tagline { display:none; }




/*Change Nav Hover Colors

Changing the hover colors for your nav menu is pretty straighforward. For the colors of the nav menu only, put this in your custom.css and change the colors as you see fit:*/

.custom ul#tabs li a:hover {color: #fff; text-decoration: underline; background-color: #1873a1; }

/*And to change the hover color of your Subscribe to RSS link, use this:*/

.custom ul#tabs li.rss a:hover { background-color: #fff; color: #111; }


/*You can style it all in any way you like, but here�s my CSS for the profile box to get you started:*/

.postauthor { background: #F5F5F5; border-top: 1px solid #e1e1e0; border-bottom: 1px solid #e1e1e0; overflow: hidden; padding: 1.5em; }
.postauthor img { border: 5px solid #e2dede; float: left; margin-right: 1.5em; }
.postauthor h4 { color: #666; font-size: 2em; margin-bottom: 5px; }
.postauthor p { color: #515151; font-size: 13px; margin-bottom: 12px; }

/*And the css for the Social Media Box:*/

.socialmedia { background: #FFFBCC; border-top: 1px solid #E6DB55; border-bottom: 1px solid #e1e1e0; overflow: hidden; padding: 1em; text-align: center;}
.socialmedia p { color: #515151; font-size: 1.3em;}


body.custom {
    background: #2B5280;
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #33332f;
    border: 0.4em solid #3e3e3a;
}

.custom #page {
    background: #fff;
}


