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

/*---:[ Set 1: solid background with slick borders around your "page" area ]:---*/

/* -- with newspaper graphic 
body.custom { background: #ededed url('images/piggly-wiggly-full-sized-ad_320x480_sepia.jpg') repeat scroll 0 0; }
*/

body.custom { background: #0e0e0e repeat scroll 0 0; }
	
	.custom #container { margin-top: 2em; margin-bottom: 2em; padding: 0.3em; background: #ff0000;  }

		.custom #page { background: #FFFFD0; padding-top: 10px ; }
		
/*---:[ end Set 1 ]:---*/

/*-- Custom Logo Header Image --*/

/* This line sets up our clickable background image based on the site title's link */
/* DIY: Adjust the height & width attributes to reflect the actual size of your image */
/* DIY: Change the filename of your image to reflect the actual header's file name */
.custom #header #logo a { display: block; height: 161px; width: 949px; background: url('/images/hsd-banner-red-949x161.jpg') no-repeat; outline: none; }

/* This line gets rid of the site title & tagline by casting them out to far left field */
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }

/* This line collapses the vertical space of the tagline so that there isn't unnecessary white space after the header image */

/* This is a bit of a kludge, but it seems to work. */
.custom #header #tagline { height: 0; }

/* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header, and the sides of the content */
.custom #header { padding: 0; }



/*-- end custom logo header image --*/


/* -- Links Colors -- */

.custom a, .custom a:visited { color: #FF0000; }
.custom a:hover { color: #FF7F00; text-decoration: underline; }
.custom a, .custom a {color: #FF0000; text-decoration: none; }

/*-- Menu Items Colors --*/

.custom ul#tabs li.rss a { background:#FFFFFF url(images/icon-rss.gif) no-repeat scroll 100% 50%;
padding-right:16px;
}

.custom ul#tabs li { background: #FEDE31 none repeat scroll 0 0;
border-color:#DDDDDD #DDDDDD #DDDDDD -moz-use-text-color;
/*-- float:left; --*/
margin-bottom:-0.1em;
}

.custom ul#tabs li.current_page_item { background:#FFFFFF none repeat scroll 0 0; 
cursor:default; }
}




/*-- End Menu Items Colors --*/

/*-- Content Colors --*/

.custom #content_box { background:#FFFFFF url(images/dot-ddd.gif) repeat-y scroll 51.3em 0;
width:100%;
}

.custom #sidebars { background:#FFFFFF none repeat scroll 0 0;
}

.custom .format_text .drop_cap {
color:#FF0000;
float:left;
}


/*-- End Content Colors --*/

/*-- Style Changes --*/

.custom .format_text ul {
list-style-type:disc;
}

/*-- Add italics to pullquote--*/

.custom .format_text blockquote.right, .format_text blockquote.left {
font-size:1.286em;
font-style:italic;
line-height:1.222em;
}

/*-- customize image border/caption --*/

.custom .wp-caption {
background-color:#FFFFFF;
border-color:#DDDDDD;
border-style:solid;
color:#FF0000;
font-style:italic;
text-align:center;
}

/*-- End Style Changes --*/

/*-- Multimedia Box Styling --*/

#image_box { background:#FFFFFF none repeat scroll 0 0;
border-bottom:1px solid #DDDDDD;
}

/*-- End Mutlimedia Box Styling --*/

/*-- Change color of Brackets for {Comments} to red --*/
.custom .format_text .to_comments span.bracket {color: #000;}
/*-- End color of brackets --*/

.custom .comments_closed p {
  display: none;
}

.custom #twitter_div {border:2px solid #ddd; font-size: 13px; padding-bottom: 13px;}
	.custom #twitter_div img {float:right;}
	
/*-- Breadcrumbs styles --*/
.breadcrumbs {
	font-size: 13px; /*font size, change this to whatever you want*/
	padding: 10px 0px 0px 10px; /*10 padding top, 10 padding left*/
}
.breadcrumbs a {
	color: #FF0000 /*change this to whatever color you want*/
}
.breadcrumbs a:hover {
	text-decoration: underline; /*underline the links on a mouse over*/
}
/*-- end Breadcrumbs styles --*/

/*-- Custom Comment "REPLY" Button --*/

.custom .comment-reply-link { background: #EEE; padding: 0.4em; -moz-border-radius: 5px; -webkit-border-radius: 5px; }

/*-- End Custom Comment "REPLY" Button --*/

/*-- Custom Author Reply Styling --*/

.custom dl#comment_list dt.bypostauthor, .custom dl#comment_list dd.bypostauthor>div { background: #FFFFA0; }

/*-- End Customo Author Reply Styling --*/
