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

/* Background color */
body.custom { background: #000000; color: #fff; }

		.custom #container { backgournd: #000000 url('images/bg-bluewaves.jpg') 50% 0 no-repeat; margin-top: 2em; margin-bottom: 2em; padding: 0.3em; background: #33332f; border: 0.4em solid #000033; }

		.custom #page { background: #000000 url('images/bg-bluewaves.jpg') 50% 0 no-repeat; }
		
/* Header color */
.custom h2 {
color:#66ccff;
} 

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

/* Navigation Tabs - Dynamic */
.custom ul#tabs {border:none; margin:0; padding: 0.75em; background:#000; letter-spacing:0; width:98em;}
	.custom ul#tabs li {margin:0; border:none; background:#000; letter-spacing:0; padding: 0;}
	.custom ul#tabs li.current_page_item {padding-bottom:0; background:#66ccff; letter-spacing:0; }
    .custom ul#tabs li.current-cat {padding-bottom:0; background:#66ccff; letter-spacing:0; }
	.custom ul#tabs li.rss { letter-spacing:0;}
	.custom ul#tabs li a {margin:0; color:#fff; background:#000; text-transform: none; letter-spacing:0; }
	.custom ul#tabs li a:hover {margin:0;  color:#000; background:#66ccff; text-decoration:none; letter-spacing:0; }
	.custom ul#tabs li.current_page_item a { color:#000; background:#66ccff; text-decoration:none; letter-spacing:0; } 
    .custom ul#tabs li.current-cat a { color:#000; background:#66ccff; text-decoration:none; letter-spacing:0; }
	.custom ul#tabs li.current_page_item a:hover { color:#000; background:#66ccff; text-decoration:none; letter-spacing:0; }
    .custom ul#tabs li.current-cat a:hover { color:#000; background:#66ccff; text-decoration:none; letter-spacing:0; }
    
	/* borrowed from http://rickbeckman.org/ */
.foreign, .title, .waw {
	font-style: italic;
}
.roman {
	font-variant: small-caps;
}
.video {
	text-align: center;
}

	#header #logo {
		text-shadow: 0.1em 0.1em 0.4em #999;
	}
		#header #logo a, #header #tagline {
			color: #3333ff;
		}
			#header #logo a:hover {
				color: #003399;
			}

/* the title */
.headline_area {
	padding-bottom: 1.4em;
	border-bottom: 1px dashed #888;
	text-align: left;
}
	h2 a, .headline_area h1, .headline_area h2 {
		color: #006699;
	}
		h2 a:hover {
			color: #006699;
		}
 
/* Ampersand styling from Tripoli (specifically, the Type plugin), http://devkick.com/lab/tripoli/ */
.amp {
	font-family: "baskerville italic","Warnock Pro","Goudy Old Style","Palatino","palatino linotype","Book Antiqua",Georgia, serif;
	font-style: italic;
	font-weight: normal;
}
blockquote {
	color: #eee;
	border-left-style: dashed;
}
	blockquote p:first-child:first-line {
		font-variant: small-caps;
	}
	blockquote cite {
		display: block;
		text-align: right;
		font-variant: small-caps;
		font-style: normal;
	}
		blockquote cite:before {
			content: '—';
		}
cite.bibleref {
	font-style: normal;
}

.format_text {
	color: #ddd;
}
	.format_text .drop_cap {
		color: #cccccc;
	}
	.format_text input {
		width: auto;
	}
	.format_text p.note {
		backround: #ddd;
		color: #ffffff;
		border-color: #ff0230;
	}
	.format_text p.alert {
		background: #333;
		color: #ffffff;
		border-color: #ff0230;
	}
	.format_text pre {
		background: transparent;
		border: 0;
	}
	.format_text code {
		background: #ddd;
		color: #ffffff;
	}
		/* PRE should be for any preformatted text, not just code. Because I don't
		 * want the background/border/margins and so on applied to all PRE text, I
		 * put this kludge together to reverse engineer it all into only applying
		 * to CODE children of PRE. Phew! */
		.format_text pre > code {
			display: block;
			border: #550230;
			overflow: auto;
			margin: -0.818em -1.091em;
			padding: 0.818em 1.091em;
		}
 
.wp-caption, img.frame {
	background: #ddd;
	border: 1px solid #550230;
	color: #ffffff;
	font-style: normal;
	font-variant: small-caps;
	border-bottom-right-radius: 1.5em;
	/* Browser extensions for rounded corners */
	-webkit-border-bottom-right-radius: 1.5em;
	-khtml-border-radius-bottomright: 1.5em;	
	-moz-border-radius-bottomright: 1.5em;
}
 
#comments {
	background-color: #252525;
	margin-right: 0;
}
	.comments_intro {
		padding-top: 1.2em;
		margin-top: 3.6em;
		text-align: center;
	}
		.comments_intro span, dl#comment_list .comment_num a {
			color: #66ccff;
		}
	#comments .format_text {
		color: #aaa;
	}
	dt#comment_list .bypostauthor, dl#comment_list .bypostauthor {
		background: transparent;
	}
	.comment_author {
		color: #ddd;
	}
 
#respond {
	color: #aaa;
}
	#respond_intro {
		padding-top: 1.2em;
		margin-top: 3.6em;
		text-align: center;
	}
	#commentform {
		padding-right: 1.2em;
	}
		#commentform textarea {
			width: 98.5%;
		}
		#commentform span.allowed {
			width: 99.5%;
		}
		
/* COMMENTS: COLOR OF LOGGED-ON ADMIN'S COMMENTS DIFFERENT FROM READERS' COMMENTS */
.custom dl#comment_list .bypostauthor { background: #333366; color: #cccccc; }

// Comment # color
.custom .to_comments a { color:#000066; }
.custom .format_text .to_comments span { color:#000066; }

//teaser text color
.custom .teasers_box h2 a {color:#003399;}
#format_teaser entry-content {
	color: #ffffff;
}

//sidebar color
ul.sidebar_list {
	padding-top: 0;
}
	.sidebar h3 {
		color: #bbb;
	}
	li.widget {
		color: #ddd;
		padding: 0.4em;
	}
