/*
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/
*/

/*removes comments are closed comment from WP Pages, not entries.*/
.custom .comments_closed p {
  display: none;
}

/* changes image captions to black instead of white.
.custom .wp-caption p {
color:#000000;
}
*/

.wp-caption {
background-color:#362F27;
border-color:#362F27;
border-style:dotted;
font-style:italic;
text-align:center;
}


.custom #header { border-bottom-width:0px;
border-bottom-style:dotted;
border-bottom-color:#5f92b0;
height:26px;
padding-top:0;
padding-bottom:0;
background:url(http://www.spaghettimoose.com/images/namehead2xpx.gif)
center left no-repeat;}


.custom #header #logo { display:none;
text-align:center;
}

.custom #header #tagline { 
display:none;
text-align:center;
}



.custom .menu
{   float: right;
    width: 400px;
    padding-left:0;
padding-right:0;
}


.custom #feature_box {
padding-left:00;
padding-right:0;
background:#362f27 none repeat scroll 0 0;
border-color:#362f27;
border-style:none;
}


.custom #sidebars {
border-width:0.1em 0 0;
clear:both;
width:100%;
}
.custom #sidebars {
border-color:#5f92b0;
border-style:dotted;
}
/*headline customization */

.custom .headline_area {
margin-bottom:0.4em;
}
.custom .headline_area h1, .headline_area h2 {
font-size:3.6em;
line-height:1.267em;
/*text-transform:uppercase;*/
}
.custom .format_text h2, .format_text h3 {
font-size:1.25em;
line-height:1.2em;
margin:0.5em 0 0.6em;
}
/*make the text bigger, overall
.custom .format_text {
font-size:1.7em;
line-height:1.5em;
}
*/

/*float previous and next posts to logical sides of the column*/
.custom .post_nav .previous {
float:left;
}

.custom .prev_next p {
float:right;
}

/*comment dotted line should match colors better*/
.custom dl#comment_list {
border-top:1px dotted #5f92b0;
}
.custom dl#comment_list dd {
border-bottom:1px dotted #5f92b0;
}


/* footer widget area setup */
#footer_setup {
	/* widgetized footer background (not footer background) */
	background: #362f27;
	/* widget padding */
	padding: 16px;
	/* margin at bottom of widgets */
	margin-bottom: 10px;
	/* do not change this! */
	overflow: hidden;
}

/* widget item setup */
#footer_setup .footer_items {
	/* contents alignment */
	text-align: left;
	/* widget width */
	width: 150px;
	/* space between widgets */
	padding-right: 10px;
	/* text color */
	color: #FFFFFF;
	/* do not change these! */
	display: inline-block;
	float: left;
	height: 100%;
}

/* widget item headers*/
#footer_setup .footer_items h3 {
	/* font size */
	font-size: 1em;
	/* bold or not */
	font-weight: bold;
	/* uppercase or not */
	text-transform: uppercase;
	/* space out the letters*/
	letter-spacing: 0px;
	/* font color*/
	color: #5f92b0;
	/* padding under header text */
	padding-bottom: 3px;
	/* border under header text */
	border-bottom: 1px dotted #5f92b0;
	/* distance between border and widget text */
	margin-bottom: 5px;
}

/* do not change these! */
#footer_setup .footer_items ul li { list-style: none; }
#footer_setup .footer_items ul { margin: 0px; padding: 0px; }

/*expanding text style*/
.ddet_div {
margin: 8px 0 0 12px;
padding: 8px;
background: #5f92b0;
border: 1px dotted #5f92b0;
}

