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

html { background:url('images/bg.png') repeat; }
body.custom { background:url('images/bg-top.png') repeat-x top; }

.custom #logo a { display:block; }
#header { padding:0; border:none; }
.custom #title_area .page { background: none; height:118px; }
	
.custom #title_area {
  background:url('images/header-bg.png') no-repeat center top;
  text-indent: -9999px;
}

.custom #logo a { 
  width: 635px; height: 108px;
  background: transparent url('images/nes-logo.png') no-repeat center left; 
  position: relative;
  left: 10px;
  top: 10px;
}

.custom #content_box { background:none; }

.custom #content_area { background:url('images/content-bg.png') repeat-y center top; }

.custom #content_area .page { background:url('images/content.png') repeat-y center top; }

.custom #content_top { 
  background: url('images/content-box-top.png') no-repeat center top;
  height: 99px;
  margin-left: -13px;
  margin-right: -15px;
  margin-bottom: -79px;
  position:relative;
}

.custom #footer {
  border: none;
  color: #888888;
  padding-right: 0;
  margin-right: -10px;
}

.custom #footer p {
  padding-top: 35px;  
}

.custom #footer_area {
  background: url('images/footer-bg.png') repeat-x center top;
}

.custom .page {
  padding-left: 37px;
  padding-right: 36px;
  width: 917px;
}

.custom #content {
  width: 594px;
}

.custom #sidebars {
  width: 322px;
}

.custom #footer_area .page {
  background: url('images/footer.png') no-repeat center top;
  padding-bottom: 10px;
}

.custom .prev_next {
  border: none;
}

.custom .entry-title {
  font-weight: bold;
  color: #22211e;
}

.custom .post_box {
  margin: 0 17px;
}

.custom .post_box.top {
  position: relative;
}

.custom #sidebars { display: inline; }
.custom .sidebar { margin-left: 42px; }

.custom .sidebar_list {
  margin-right: 20px;
}

.custom .to_comments { display: none; }

.custom .headline_area h2, .custom .headline_area h1 { font-weight: bold; }

.custom #popular-posts ul li, .custom .widget_categories ul li {
  padding-left: 10px;
  background-image: url('images/sidebar-bullet.png');
  background-repeat: no-repeat;
  background-position: 0 .5em;
}

.custom .widget a {
  text-decoration: none;
}
.custom .widget a:hover {
  text-decoration: none;
  color: white;
  background: #2781c7;
}

.custom .widget h3 {
  width: 290px;
  text-indent: -9999px;
  background: url('images/sidebar-border.jpg') no-repeat left bottom;
  padding-top: 15px;
  position: relative;
  left: -10px;
  margin-top: 20px;
}

.custom .widget_text {
  line-height: 175%;
}

.custom li.widget {
  margin-bottom:1.5em;
}

.custom #text-3 {
  background: url('images/sidebar-pdf.png') no-repeat left top;
}
.custom #text-3 img {
  float: right;
  margin-bottom: 30px;
  margin-left: 10px;
}
.custom #text-4 {
  clear: both;
  background: url('images/sidebar-share.png') no-repeat left top;
}
.custom #text-4 img {
  margin-right: 10px;
  vertical-align: middle;
}
.custom #text-4 a {
  text-decoration: none;
}
.custom #text-5 {
  margin-top: 30px;
  background: url('images/sidebar-toc.png') no-repeat left top;  
}
.custom #text-5 h3 {
  margin-bottom: 20px;
}
.custom #text-5 ul li {
  padding-left: 15px;
  background-image: url('images/sidebar-bullet.png');
  background-repeat: no-repeat;
  background-position: 0 .5em;
  line-height: 140%;
  margin-top: 10px;
}

.custom .next {
  background: url('images/next-bg.png') no-repeat;
  height: 27px;
  padding-left: 80px;
  padding-top: 4px;
  margin-left: -10px;
  margin-right: -10px;
  margin-top: 2em;
}
.custom .next a {
  color: white;
  text-decoration: none;
}
.custom .next a:hover {
  text-decoration: underline;
}

.custom blockquote {
  font-size: 14px;
}
.custom cite {
  font-size: 12px;
  font-weight: bold;
}

.custom .ednote {
  background: #222222;
  padding: 10px;
  color: #CCCCCC  ;
  border: 1px solid #888888;
}

.ednote .last {
  margin-bottom: 0;
}

.custom #comparison {
  border: thin solid white;
}
.custom #comparison th {
  text-align: center;
  background-color: #00b050;
  color: white;
  padding: 3px;
  font-weight: bold;
  width: 270px;
}
.custom #comparison td {
  text-align: center;
  background-color: #e6eed5;
  padding: 3px;
}

.custom .pullout {
  color: #6a9534;
  text-align: center;
  width: 350px;
  margin: 0 auto 1.5em auto;
  font-size: 20px;
  font-family: Helvetica, sans-serif;
}