/*
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: #1a1f24; }

.custom #header { background: #ffffff url('images/header.png') center center no-repeat; height: 220px; border: none; padding: 0; text-indent: -9999px; }
.custom #header { margin: -1.1em -1.1em 0 -1.1em; padding-top: 1.1em; }
.custom #header_area .menu { margin-left: -1.1em; margin-right: -1.1em; padding-left: 1.1em; padding-right: 2.2em; background: #000000; }
.custom #header_area .menu li a { letter-spacing: -.05px; font-weight: bold; }

.custom #logo, .custom #logo a { width: 980px; height: 260px; }
.custom #logo a { display: block; }

.custom #content_area .page { background: url('images/content-bg.gif') repeat-y; }

.custom .comments-box {
  background: transparent url('images/comment-bg.png') no-repeat center;
  position: relative;
  display: block;
  left: 540px;
  height: 47px;
  width: 60px;
  margin-bottom: -50px;
  font-size: 24px;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  text-align: center;
  padding-top: 3px;
  font-weight: bold;
  margin-top: 0px;
}

.custom .comments-box a { 
  color: white;
}

.custom .headline_area h1, .custom .headline_area h2 {
  padding-right: 60px;
}

.custom #sidebar_1 h3 { font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; letter-spacing: -.5px; font-weight: bold; color: #302f2a; font-size: 18px; margin-bottom: 10px; text-transform: none; font-variant: normal; }

.custom #text-4 form { margin-bottom: 12px; clear: both; height: 26px; }
.custom #text-4 p a { text-transform: uppercase; font-size: 12px; color: #302f2a; font-family: Verdana, sans-serif; letter-spacing: -1px; font-weight: bold; text-decoration: none;}
.custom #text-4 p a:hover { text-decoration: none; color: #6c6a5e; }
.custom #text-4 p img {
  vertical-align: middle;
}
.custom #text-4 #social-links { clear:both; text-align: center; height: 24px;}
.custom #text-4 #social-links img { margin-right: 4px; }
.custom #text-4 #sidebar-facebook { float: left; }
.custom #text-4 #sidebar-facebook img { float: none; }
.custom #text-4 #sidebar-rss  { float: right; margin-right: 89px; }
.custom #text-4 #sidebar-rss img { float: none; }

.custom .subscribe-button {
  background:#2d2824 none repeat scroll 0 0;
  border-color:#444444 #000000 #000000 #444444;
  border-style:solid;
  border-width:0.2em;
  color:#AAAAAA;
  cursor:pointer;
  font-family:"Lucida Grande","Lucida Sans","Lucida Sans Unicode",sans-serif !important;
  font-size:0.833em !important;
  font-size-adjust:none !important;
  font-stretch:normal !important;
  font-style:normal !important;
  font-variant:normal !important;
  font-weight:normal !important;
  letter-spacing:1px;
  line-height:1em !important;
  overflow:visible;
  padding:0.2em 0.4em !important;
  text-transform:uppercase;
  width:auto;
  margin-top: 5px;
  float: right;
}
.custom #text-4 .subscribe-button { margin-top: 0; }

.custom #sub_email_submit {
  background: url('images/subscribe-button.png') no-repeat top left;
  text-indent: -9999px;
  width: 86px;
  height: 40px;
  border: none;
  font-size: 0px;
  display:inline;
  line-height: 0px;
}

.custom .sidebar .subscribe-email {
  border: 1px solid #ccc;
  width: 205px;
  color:#666;  
  font-family:Verdana,sans-serif;
  font-size:0.9em;
  letter-spacing:-0.025em;
  height: 15px;
  padding-top: 5px;
  float: left;
  background: #fff;  
}

.custom #twitter-3 h3 { background: url('images/sidebar-twitter.png') no-repeat left; padding-left: 30px; }

.custom #footer { border-top: none; }
.custom #footer_area .page { background: #0e2743; }
.custom #footer_area { margin-bottom: 1.1em; }