/*
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: #44443F;
}

.custom #container{
  margin-top: 1em;
  margin-bottom: 1em;
  padding: 0.3em;
  background: #33332F;
  border: 0.4em solid #3E3E3A;
}

.custom #page{
  background: #FFFFFF;
  padding-bottom: 0 !important;
}

body.custom span.hilite{
  background: yellow;
  padding-left: 0.3em;
  padding-right: 0.3em;
}

/* START: Put some padding above the post tags */
.custom .post_tags{
  padding-top: 1em;
}
/* END:   Put some padding above the post tags */

/* START: Hide the WordPress stat counter smiley */
.custom img#wpstats{
  display: none;
}
/* END:   Hide the WordPress stat counter smiley */

/* START: Footer Navigation */
.custom #disclaimer{
  border-top: 1px dotted #DDDDDD;
  padding: 0.75em 0.5em 0 0.5em;
}

.custom #disclaimer p{
  padding-bottom: 0.615em;
  color: #555555;
  font-size: 1.1em;
  line-height: 1.385em;
  font-weight: normal;
}

.custom #disclaimer p strong{
  font-weight: bold;
  color: #666666;
}

.custom ul#footnav{
  float: right;
  list-style: none;
  margin: 0;
  padding: 0 0 0 2px;
  font-size: 1.2em;
  line-height: 1.667em;
}

.custom ul#footnav li{
  float: left;
  margin: 0;
  padding: 0 0 0 8px;
  white-space: nowrap;
}

ul#footnav li a:hover, ul#footnav li a:active, ul#footnav li.current_page_item a{
  color: #802100;
}
/* END: Footer Navigation */

/* START: Correct the contact form width that thesis is messing up */
div.wpcf7 input, div.wpcf7 textarea{
  width: auto;
}
/* END:   Correct the contact form width that thesis is messing up */

/* START: Income Section - custom styles */
.custom #header{
  border-bottom: 1px solid #DDDDDD;
}

.custom #demo_header{
  padding-top: 5px;
  text-align: center;
  border-bottom: 3px double #DDDDDD;
  height: 98px;
}
/* END:   Income Section - custom styles */