/*
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/
*/

/*AUTHOR REPLIES REMAIN BLUE IN COMMENTS*/
.custom dl#comment_list dt.bypostauthor, .custom dl#comment_list dd.bypostauthor>div {background: #E7F8FB none repeat scroll 0 0; padding-top:20px;}

/*HEADER IMAGE - ADDS CLICKABLE HEADER IMAGE*/
.custom #header #logo a { display: block; height: 95px; width: #px; background: url('http://www.heroicblogger.com/images/logo.jpg') no-repeat; outline: none; }

/*HEADER IMAGE - REMOVES TEXT TITLE AND TAGLINE*/
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }

/*HEADER IMAGE - REMOVES WHITESPACE AFTER HEADER IMAGE*/
.custom #header #tagline { height: 0; }

/*HEADER IMAGE - REMOVES PADDING AROUND HEADER*/
.custom #header { padding: 1; border-bottom:none;}

/*REMOVES BORDER LINES ON TAB IN NAV MENU
.custom #tabs, .custom #tabs li {
  border-style: none;
}
*/

/*REMOVES ALL BORDERS IN THESIS 1.5
custom #header, .custom .post, .custom .teasers_box, .custom #footer, .custom #footer a, .custom #footer a:active, .custom #archive_info, .custom .prev_next, .custom #comment_list, .custom #comment_list dd, .custom #commentform, .custom #sidebar_1, .custom #sidebar_2, .custom #comment_list dt.comment, .custom #comment_list dd.comment, .custom #comment_list dl .bypostauthor .format_text, .custom #trackback_list {
       border-bottom: 0px;
        border-top: 0px;
       border-right: 0px;
      border-left: 0px;
}
.custom #content_box, .custom #column_wrap {
background: none;
}
*/

/*CHANGES LINK HOVER COLORS*/
.custom a:hover { color: #227CE8; }


/*PLACES 6 125X125 AD BOXES ON MULTIMEDIA BOX*/
.custom div.adblock img {
  padding: 4px;
  background-color: #FFFFFF;
}
.custom .cenx {text-align: center;}

/*CHANGE COLOR OF BIG BORDER AROUND MULTIMEDIA BOX*/
.custom #image_box { background: #fff; }

/*CENTERS HEADLINES*/
.custom .entry-title { text-align: center !important; }

/*CENTERS BYLINES*/
.custom .headline_meta {text-align: center; }

/*BOLDS TOP HEADLINES*/
.custom h2 a {font-weight: bold;}
.custom h1  {font-weight: bold;}

.custom #sidebars { border-top: 0; background: #efefef; }
