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

.custom #header #logo a { display: block; height: 150px; width: 960px; background: url(images/header.png) no-repeat; outline: none; }
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }
.custom #header #tagline { height: 0; } .custom #header { padding: 0; }
.custom #header {border-bottom:none;background-color : transparent; }
.custom #header_area .page {padding-top:0;}



/**  CUSTOM LOGO AND TAGLINE  **/

.custom #header #logo a {
   color: #111111;
   text-decoration: none;
}

.custom #header #logo a:visited {
   color: #111111;
   text-decoration: none;
}

.custom #header #logo a:hover {
   color: #ffffff;
   text-decoration: underline;
}
.custom #header #logo a:active {
   color: #ffffff;
   text-decoration: none;
}

.custom #header #tagline {
   color: #111111;
   font-weight: normal;
   padding-left: 10px;
}



/** STYLE PAGE TITLES  **/

.headline_area h1 {
   color:#B22222;
}



/**  STYLE MULTI-POST LISTING TITLES  **/


.custom h2 a {
   color: #3399ff;
   text-decoration: none;
}
.custom h2 a:visited {
   color: #3399ff;
   text-decoration: none;
}
.custom h2 a:hover {
   color: #ff0000;
   text-decoration: underline;
}
.custom h2 a:active {
   color: #3399ff;
   text-decoration: underline;
}



/**  STYLE THREADED COMMENTS  **/

/* Re-style the author and children comments */
.custom dl#comment_list .bypostauthor { background: transparent; } /* Reset Thesis default */
.custom dl#comment_list dd { padding-top: 0; } /* Reset Thesis default */
.custom dl#comment_list dd,
   .custom dl#trackback_list dd { padding-left: 0; } /* Reset Thesis default */
.custom dl#comment_list dl dd .format_text { margin-bottom: 0; } /* Reset Thesis default */
.custom dl#comment_list dd div,
   .custom dl#trackback_list dd div { padding-left: 0.9em; }
.custom dl#comment_list dl dd div { padding-left: 1.5em; }
.custom dl#comment_list dt.bypostauthor,
   .custom dl#comment_list dd.bypostauthor>div { background: #E7F8FB none repeat scroll 0 0; }
.custom dl#comment_list dl.children { background: #FFF; padding-left: 1em; padding-top: 1em; }
.custom dl#comment_list dl.children dt { padding-top: 1em; }
.custom dl#comment_list p.reply { margin-bottom: 1em; }




/**  CUSTOM FOOTER TEXT AND LINKS  **/

/* Customize Footer Text */
.custom #footer {
color: #888888;
text-align: right;
}

/* Customize Footer Links */

.custom #footer a:hover {
color: #111111;
}

.custom #footer a {
border-bottom: 1px solid #CCCCCC;
color: #888888;
}



/**  HIDE COMMENTS ARE DISABLED TEXT  **/

.custom .comments_closed p {
  display: none;
}



/**  STYLE LOGO AND TAGLINE  **/

.custom #header #logo a {
   color: #111111;
   text-decoration: none;
}

.custom #header #logo a:visited {
   color: #111111;
   text-decoration: none;
}

.custom #header #logo a:hover {
   color: #ffffff;
   text-decoration: underline;
}
.custom #header #logo a:active {
   color: #ffffff;
   text-decoration: none;
}

.custom #header #tagline {
   color: #111111;
   font-weight: normal;
   padding-left: 10px;
}



/**  STYLE AUTHOR NAME  **/

/* Unlinked author name */
.custom span.author {
   color: #888888;
}

/* Linked author name */
.custom span.author a {
   color: #888888;
}



/**  STYLE PUBLISHED ON DATE  **/

.custom abbr.published {
   font-weight:bold;
   cursor: default;
}


/**  STYLE COMMENTS AND CATEGORIES LINKS  **/

.custom .headline_meta a {
   color: #888888;
}


/**  CHANGE BACKGROUND COLOR  **/

body.custom {
background: #009E0F;
}

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

.custom #page {
background: #fff;
}


/**  BORDERS AROUND FEATURED CONTENT IMAGES **/

div#feature_box a img {border:7px solid #000;}

/**  FIX NAVIGATION FOR NAVT PLUGIN  **/

.custom .menu {
  background: none;
  border: 0;
  }

.custom .navt_elink {
  background: none;
  border: 0;
  }

.custom .navt_plink {
  background: none;
  border: 0;
  }

.custom .navt_clink {
  background: none;
  border: 0;
  }

.custom .pagetab,
.custom .categorytab,
.custom .elinktab  {
  font-size: 12px;
  }