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


/* INSERT HEADER IMAGE IN PLACE OF TEXT */
.custom #header #logo a { display: block; height: 135px; width: *; background: url('images/cityscape-night.jpg') no-repeat; outline: none; }
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }
.custom #header #tagline { height: 0; }
.custom #header { padding: 0; border-bottom: none;}

/* TEASER BOX STYLES */
/* single column teasers instead of two */
.custom .teaser {
   width: 100%;
   margin-top: 2em;
   padding-top: 2em;
   border-top: 1px dotted #bbb;
   text-align: justify;
}
.custom .teasers_box {
   padding-top: 0;
   padding-bottom:0;
   border-top: 0;}

/* Adjust teaser headlines */
.custom .teasers_box h2 a {color:white;}

/* SIDEBARS */
/* change sidebar background color */
.custom #content_box {background-color:#F0F0F0;}
.custom #content {background-color:#fff;}


/* SINGLE POSTS AND PAGES */
/* remove closed comments message */
.custom .comments_closed p {
  display: none;
}
/* Adjust entry title */
.custom h2.entry-title a {color:white;}


/* CATEGORY PAGES */

/* Remove Category Titles on Category Pages */
 #archive_info {display:none;}

/* Remove Uppercase from Headlines */
.custom .headline_meta span,
 .custom .headline_meta abbr {
   text-transform: none;
}

/* Change entry title */
.custom h1.entry-title, .custom h2.entry-title {background-color:#2c4063; color:white; font-weight:bold; padding:3px;}
.custom .headline_area h1 {background-color:#2c4063; color:white; font-weight:bold; padding:3px;}

/* indent paragraph first line */
.custom div.format_text p { text-indent:1em; }

/* Nav Bar background color */
.custom #nav_area { background: #bbbbbb; padding:1px 3px 1px 3px; }
.custom #nav_area .page { background: transparent;}

/* Set content box to right-align with header graphic */
.post_box, .teasers_box, .full_width #content_box .page { margin: 0px 0em 0px 2.2em; width: auto;}

/* Mark my comments in a different color */
dl#comment_list .bypostauthor{
background-color: #C7C7C7;
}
