/*
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 {
	margin: 0;
	padding: 0;
	background: url(images/header.jpg) no-repeat left top; /*replace header.gif with the name of your image*/

}

.custom #header #logo {
	text-indent: -9999px;
}

.custom #header #logo a {
	display: block;
	width: 400px; /*change this to the width of your image*/
	height: 100px; /*change this to the height of your image*/
}

.custom a {
        text-decoration:none;
}

.custom a:hover {
        text-decoration:underline;
}

/* Menu */

.custom ul.menu li a:hover, .custom ul.menu li.current_page_item a:hover, .custom ul.menu li.current-cat a:hover {
        text-decoration:none;
}

/*
Less line-spacing
*/

.custom {
	line-height:1.286em;
}

.custom div.headline_area .entry-title {
	line-height:1.1em;	
}
.custom h1, h2 {
	line-height:1.1em;
}

.custom .format_text {
	line-height:1.286em;
}

.custom .format_text .post_tags {
        line-height:1.1em;
}

.custom .format_text p {
	margin-bottom:1.286em;
}

.custom .headline_area {
	margin-bottom: 0.5em;
}

.custom #header {
	padding-top:0;
}

/* style links in story body */

.custom .entry-content a {
	color:#c10e0e;
} 
.custom .entry-content a:visited {
	color:#c10e0e;
}
.custom .entry-content a:hover {
	text-decoration:underline;
}

.custom .format_text li{
	margin-bottom: 0.5em;
}

.custom blockquote {
      border-left: 1px solid #000; color: #000; 
}

.custom .entry-content ol {
        margin:0 0 1.667em 3.0em;
}

/* Categories in sidebar */

.custom li#categories-4.widget {
     line-height: 1em;
}
.custom .entry-content img a {
     border: solid #D3D3D3 1px;
}
.custom .entry-content img {
     border: solid #D3D3D3 1px;
}

/* Comment Brackets under post */

.custom .format_text .to_comments {
    margin-top:-1em;
}

.custom .format_text .to_comments span.bracket {
color:#000;
}

.custom .format_text .to_comments span {
font-size:1.1em;
}

/* Move up post tags */
.custom .format_text .post_tags {
      margin-top:-1.5em;
}

/* Reply to this Comment darkening of font */

.custom dl#comment_list dd p.reply a {
font-size:0.833em;
line-height:1.8em;
color:#000000;
letter-spacing:1px;
text-decoration:none;
text-transform:uppercase;
font-weight: bold;
}

/* make trackbacks smaller */

.custom dl#trackback_list dd span {
     font-size:0.8em;
     line-height:0.8em;
}
.custom dl#trackback_list dt span a {
     font-size:0.8em;
     line-height:0.8em;
}
.custom dl#trackback_list dt {
     padding-top:0.5em;
     line-height:0.8em;
}

/* Widget line-spacing */

.custom li.widget {
     line-height:1.286em;
}

/* Caption Styles */

.custom .format_text .wp-caption p.wp-caption-text{
	font-size: 0.8em;
        margin-top: 0.5em;
        margin-bottom: 0.5em;
        line-height:1.286em;
	}

.custom	.format_text .wp-caption, { 
     background-color: #fff;
     border: #fff none;
     font-style: normal;
     font-weight: bold;
     text-align: left;
     margin: 0 0 0 0;
 }

.custom	.format_text .wp-caption.center, .custom .format_text .wp-caption.aligncenter { 
     float: none; clear: both; 
     margin-right: 1.5em;      
     background-color: #fff;
     border: #fff none;
     font-style: normal;
     font-weight: bold;
     text-align: left;
     margin: 0 0 0 0;
     padding: 0 0 1.636em 0;
}

.custom	.format_text .wp-caption.left, .custom .format_text .wp-caption.alignleft { 
     float: left; clear: left; 
     margin-right: 1.5em;      
     background-color: #fff;
     border: #fff none;
     font-style: normal;
     font-weight: bold;
     text-align: left;
     margin: 0 0 0 0;
     padding: 0 1.636em 1.636em 0;
}

.custom	.format_text .wp-caption.left, .custom .format_text .wp-caption.alignnone { 
     float: left; clear: both; 
     margin-right: 1.5em;      
     background-color: #fff;
     border: #fff none;
     font-style: normal;
     font-weight: bold;
     text-align: left;
     margin: 0 0 0 0;
     padding: 0 1.636em 1.636em 0;
}
	
.custom	.format_text .wp-caption.right, .custom .format_text .wp-caption.alignright { 
	 float: right; 
	 clear: right; 
	 margin-left: 1.5em;      
	 background-color: #fff;
     border: #fff none;
     font-style: normal;
     font-weight: bold;
     text-align: left;
     margin: 0 0 0 0;
     padding: 0 0 1.636em 1.636em;
}


/* style for Prev Next Post Comments Navigation box post */

.custom .post_nav a, .custom .prev_next p {
	font-size: 1.2em;
        font-weight:bold;
}


