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

.custom #header { border-bottom:none;
height:16.0em;
width:94.9em;
padding-top:0;
padding-bottom:0;
background:url(images/masthead.jpg)
center left no-repeat; }

.custom #content_box {background: url(images/left-nav.jpg) 0.0em 0 repeat-y;}

body.custom {  background-image: url(images/bg.jpg);}

.custom #page {
   background: #ffffff;
}

.custom #page h1 {
color:#5f0000; }

.custom #page h2 {
color:#5f0000; }

.custom #page ul li {
padding-bottom:8px;
 }

.custom #page h2 {
font-weight:bold; }



/* extra image box after multimedia box */
.sidebar_two_column_box {
	/* width should be no wider than the sum of your sidebar column widths */
	width: 390px;
	/* height to suit */
	height: 140px;
	/* border if desired */
	border: 0px solid #000000;
	/* keeps box contents from the edges of the box */
	padding: 0em 0em 0em 0em;
	/* separates box from elements above and below */
	margin: 2em -2em 2em 0em;
}

/* extra image box after multimedia box */

.custom #multimedia_box {
margin-bottom:0em; }

.format_text blockquote.pqRight {
margin:0 0 1em 0em;
padding-left:0.833em;
}

.format_text blockquote.pqLeft {
margin:0 0 1em 0em;
padding-right:0.833em;
padding-left:0em;
}

.format_text h2 {
font-size:1.333em;
line-height:1.25em;
margin:1.875em 0 0.625em;
}

.format_text h3 {
font-size:1.222em;
line-height:1.25em;
margin:1.875em 0 0.625em;
color:#003366;
font-weight:bold;
}

/* Customize Teasers */

.custom .teaser {

   width: 100%;

   margin-top: 2em;

   padding-top: 2em;

   border-top: 1px dotted #bbb;

   text-align: justify;

}

.custom .teasers_box {

   padding-top: 0;

   padding-bottom:0;

   border-top: 0;}

.custom h2.entry-title a {
color:#5F0000; }

/* Customize Teasers */

#post-665 h1 {
text-align:center; }