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

body.custom {
  background: #fff;
}

.custom .format_text {
  font-family: calibri, tahoma, arial, sans-serif;
  font-size: 1.6em;
}

.custom .drop_cap {
  font-family: georgia;
}

.ad {
  font-size: 10px;
  white-space: nowrap;
  width: 172px;
  margin-top: 15px;
}

.custom #header {
  padding-top: 0.2em;
  border-bottom: none;
  height: 168px;
  position: relative;
  background: transparent url('images/HB-blue.jpg') center left no-repeat;
}

.custom #content_box {
  margin-top: -20px;
}

.custom #page {
  padding-top: 0;
  padding-bottom: 0;
}

.custom #header #logo {
  text-indent: -9999em;
}

.custom #header #tagline {
  display: none;
}

.custom #logo a {
  width: 520px;
  height: 110px;
  margin-top: 20px;
  display: block;
  outline: none;
}

#facebook_like {
  margin-top: 50px;
  height: 50px;
}

.custom dl#comment_list .bypostauthor {
  background: #ededed;
}

.sociable_tagline {
  font-size: 70%;
  font-weight: bold;
  color: #555;
}

.bigquote {
  font: 1.7em Georgia;
  margin: 20px;
  width: 170px;
  float: right;
}

.btc-summary {
  display: none;
}

.btc-powered {
  display: none;
}

.image-source {
  margin: 0px;
  margin-top: -30px;
  margin-bottom: 20px;
  color: #999;
  font-size: 50%;
}

.image-source a {
  color: #999;
  text-decoration: none;
}

.format_text a {
  text-decoration: none;
}

.format_text a:hover {
  color: #114477;
  text-decoration: underline;
}

.format_text h2 {
  font-size: 1.5em;
}

.format_text h3 {
  font-size: 1.45em;
}

.format_text h4 {
  font-size: 1.3em;
}

.headline_area h1, .headline_area h2 {
  color: #666 !important;
  font-family: calibri,tahoma,arial,sans-serif;
  font-weight: bold;
}

.postrank-search-wrapper {
  display: none;
}

.postrank-widget {
  margin: -8px;
}

.postrank-widget h2 .postrank-minilogo {
  display: none;
}

.powered-by-postrank {
  display: none;
}

.sidebar h3, .sidebar h2 {
  font-family: "Trebuchet MS",Helvetica,sans-serif;
  font-size: 13px;
  letter-spacing: 0;
  font-variant: normal;
  font-weight: bold;
  text-transform: lowercase;
}

.sidebar h3 a {
  color: #666;
}

.sidebar {
  font-family: Helvetica,Arial,sans-serif;
}

#menubar {
  float:right;
  margin-top: 8.0em;
}

.custom .menu li {
  padding: 0 0.4em;
  margin: 0 0.4em;
}

.custom .menu .current a {
  border-top: 0.3em solid #2361A1;
  color: #666;
}

.custom .menu a:hover {
  border-top: 0.3em solid #2361A1;
}

.custom .menu a {
  border-top: 0.3em solid #fff;
  padding: 0.636em 0.4em;
  font-family: "Trebuchet MS",Helvetica,Arial,sans-serif;
  font-weight: bold;
  color: #888;
}

.custom pre {
  /* Make the preformatted text wrap. */
  white-space: pre-wrap;       /* css-3 */
}

.custom blockquote {
  min-height: 50px;
  padding: 0 0 0 60px;
  background: transparent url('images/quote.png') no-repeat;
  border-left: 0;
}

.widget .updates li {
  margin-top: 20px;
  margin-bottom: 20px;
}

.widget .sub_twit a {
  padding-left: 36px;
  padding-top: 10px;
  padding-bottom: 10px;
  background: transparent url('images/twitter.png') 0 50% no-repeat;
}

.widget .sub_rss a {
  padding-left: 36px;
  padding-top: 10px;
  padding-bottom: 10px;
  background: url('images/rss.png') 0 50% no-repeat;
}

.widget .sub_email a {
  padding-left: 36px;
  padding-top: 10px;
  padding-bottom: 10px;
  background: url('images/icon-email.gif') 0 50% no-repeat;
}

.wp_syntax pre {
  margin: 0;
  width: auto;
  float: none;
  clear: none;
  overflow: visible;
}

.wp_syntax {
  border: none;
  background-color: transparent;
}

.archivetbl td {
  vertical-align: top;
  padding-right: 0.5em;
  border-style: none;
}
