/*
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: #1f1e1a url('images/bolty-bg.jpg') 50% 0 no-repeat; }

.custom #container { margin-top: 2em; margin-bottom: 2em; }

.custom #page { background: #fff; }

.custom #header { position: relative; }
.custom #header #logo a { color: #2361a1; }
.custom #header .feedburner { position: absolute; right: 0; top: 0.7em; text-align: center; font-size: 1.0em; }

.custom #content h2.entry-title a { color: #2361a1; }

.custom blockquote {
  border-left: 5px solid #aaa;
  color: #111;
}

.custom blockquote.left {
  color: #2361a1;
  width: 200px;
  margin: 5px 15px 5px 0;
  padding: 5px 0;
  border: 3px solid #aaa;
  border-width: 3px 0;
  font-size: 1.4em;
  text-align: center;
  float: left;
}

.custom blockquote.right {
  color: #2361a1;
  width: 200px;
  margin: 5px 0 5px 15px;
  padding: 5px 0;
  border: 3px solid #aaa;
  border-width: 3px 0;
  font-size: 1.4em;
  text-align: center;
  float: right;
}

.custom .bigtext {
  font-size: 1.6em;
  font-weight: bold;
}

.custom #nicetable {
  margin: 15px 20px 15px 20px;
  width: 550px;
  text-align: left;
  border-collapse: collapse;
}

.custom #nicetable th {
  font-size: 14px;
  font-weight: normal;
  padding: 8px;
  background: #999;
  border-bottom: 1px solid #fff;
  color: #111;
}

.custom #nicetable td {
  font-size: 12px;
  padding: 5px;
  background: #eee;
  border-bottom: 1px solid #fff;
  color: #333;
  border-top: 1px solid transparent;
}

.custom #nicetable tr:hover td {
  background: #d0dafd;
  color: #339;
}

.custom p.info {
  background: transparent url(/images/info.png) top left no-repeat;
  background-color: #f5f5f5;
  padding-left: 45px;
}

.custom p.exclamation {
  background: transparent url(/images/exclamation.png) top left no-repeat;
  background-color: #ffffa0;
  padding-left: 45px;
}

.custom #dekoboko_form input {
  width: auto;
}

.custom .footnote { font-size: 0.8em; }

.custom .yarpp-posttitle { font-size: 0.9em; font-weight: bold; }
.custom .yarpp-excerpt { font-size: 0.8em; }

.custom .wp-polls-form input { padding: 0; width: auto; }

.custom .post_box, .teasers_box { border-top: none; }

.custom .to_comments .bracket { display: none; }

.custom .to_comments a { background: transparent url('images/comment.png') no-repeat scroll left center; padding-left: 1.75em; }

.custom .comments_closed p {
  display: none;
}

.custom .sidebar h3 { font-weight: bold; }
.custom .sidebar .subscribe_box { background: #c0d1e0; border: 1px dotted #2361a1; padding-top: 0.75em; padding-bottom: 0.25em; }
.custom .sidebar .subscribe_box h3 { text-align: center; }
.custom .sidebar .subscribe_box p { margin-bottom: 0.8em; }

/* override thesis's stupid styling choices */
li.thesis_widget_google_cse form input[type="text"] {
  width: 70%;
}

/*---:[ WordPress Image Captions ]:---*/
.format_text .alignleft { margin: 0 1.571em 1.571em 0; float: left; clear: left; }
.format_text .alignright { margin: 0 0 1.571em 1.571em; float: right; clear: right; }
.format_text .aligncenter { display: block; margin: 0 auto 1.571em auto; float: none; clear: both; }
.format_text .alignnone { display: block; margin: 0 auto 1.571em 0; clear: both; }
.format_text .wp-caption { background-color: #f3f3f3; border: 0.071em solid #ccc; text-align: center; padding: 0.5em; }
.format_text .wp-caption p { font-style: italic; margin-bottom: 0; }

