/*
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 styles ]:---*/
.custom	#header #logo a, #header #logo a:visited { color: #006; text-decoration: none; }
.custom	#header #logo a:hover { color: #111; }

/*--- body colors ----*/
body { background: #fff; color: #006; font-size: 62.5%; }

/*--- Header Colors ---*/
h1, h2, h3, h4 { color: #ff7d00; font-size: 1em; font-weight: normal; }

	h2 a, h2 a:visited { color: #ff7d00; text-decoration: none; }

	h2 a:hover { color: #006; }
	
	#content #archive_info h1 { font-size: 1.8em; line-height: 1em; font-weight: normal; }

/*---:[ h3 and h4 sizes are calculated relative to the base font size of the content or sidebar ]:---*/
	
	.sidebar h3 { color: #ff7d00; }

h4 { font-size: 1em; font-weight: bold; }


/*---:[ Set 1: solid background with slick borders around your "page" area ]:---*/
body.custom { background: #f0f0f0; }
.custom #container { margin-top: 2em; margin-bottom: 2em; padding: 0.3em; 
	      background: #f60; border: 0.2em solid #006; }
.custom #page { background: #fff; }
/*---:[ end Set 1 ]:---*/

/*---new Update Block ---*/
.custom  .update { border: 3px solid #f2ec49; background: #fffdcb; padding: 1.0em 15px; margin: 0 0 1.46667em 0; clear: both; }
.custom .updorng { border: 3px solid #e87b2d; background: #f7d861; padding: 1.0em 15px; margin: 0 0 1.46667em 0; clear: both; }

/* For the 125x125 Ad boxes - adblock and cenx */
.custom div.adblock img {
padding: 4px;
background-color: #FFFFFF;
}
.custom .cenx {text-align: center;}

/*--- remove bottom space for widgets ---*/
.custom li.widget {margin-bottom: 1.2em;}

/*--- add a line above and below the sidebar category text ---*/
.custom .sidebar h3 { font-size: 0.846em; font-weight: bold; line-height: 1.455em; margin-bottom: 1em; padding: 0.636em 0.455em 0.545em 0.455em; text-transform: uppercase; font-variant: normal; letter-spacing: 2px; color: #f60; border-top: 1px solid #006; border-bottom: 1px dotted #006; }

/* 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 { display: block; height: 166px; width: 960px; background: url('images/header.png') 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; }

