/*
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/
*/

.photo_left, .photo_right {margin-bottom: 1.571em; background: #eee; border: 0.071em solid #ccc;
	color: #888; padding-top: 0.714em; padding-right: 0.714em; padding-bottom: 0.514em; padding-left: 0.714em;}

.photo_left {margin-right: 1.571em; float: left; clear: left; text-align: left; }

.photo_right {margin-left: 1.571em; float: right; clear: right; text-align: right; }

.photo_center {clear: both;	color: #888; float: none; margin-bottom: 1.571em; text-align: center;
}

.photo_center img {background: #eee; border: 0.071em solid #ccc; padding: 0.714em;
}

.format_text entry-content H2 {
display:block;
font-size:1.4em;
margin:0.83em 0;}


.photo_left a, .photo_right a { color: #888; text-decoration: none; }

.credit {font-size: small; font-style: italic;}

.left {float:left;}

.custom .comments_closed p {display: none;}
.custom .comments_intro p {display: none;}
.custom #trackback_list dl, dd, dt {display: none;}
.custom dl#trackback_list {border-top:none;}


/*Change Text at top of page (called logo) to be blue, and when hovered over to be black*/

.custom #header #logo a {color: #2361A1; text-decoration: none;}
.custom #header #logo a:hover {color: #111111;}

/*I put sidebar links into widget using the custom css   class=xoxo blogroll
add this to get blue underline links and then take away underline on hover*/

.custom .widgetlinks a {color: #2361A1;text-decoration: underline;}
.custom .widgetlinks a:hover {text-decoration: none;}
.custom .widgetlinks li {font-size:1.2em;}

/* Change Post Heading color */

.headline_area h1 {color:#2361A1;}
.custom h2 a {color: #2361A1; text-decoration: none;}


.custom .format_text a {font-size:1.15em;color: #2361A1;text-decoration: underline;}
.custom .format_text a:hover {text-decoration: none;}



/*HEADER IMAGE*/
/* 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: 172px; width: 856px; background: url('/wp-content/image/header.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; }
