/*
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/
*/

.line_numbers pre {
	font-family: monospace;
 	padding-left: 10px;
}

/*
Thanks to http://www.thesistheme.org/photo-dropper-thesis/
*/
.custom .photo_left, .custom .photo_right {
	background: #eee;
	border: 0.071em solid #ccc;
	color: #888;
	margin-bottom: 1.571em;
	padding: 0.714em;
}

.custom .photo_center {
	clear: both;
	color: #888;
	float: none;
	margin-bottom: 1.571em;
	text-align: center;
}

.custom .photo_left {
	clear: left;
	float: left;
	margin-right: 1.571em;
	text-align: left;
}

.custom .photo_right {
	clear: right;
	float: right;
	margin-left: 1.571em;
	text-align: right;
}

.custom .photo_center img {
	background: #eee;
	border: 0.071em solid #ccc;
	margin-bottom: -2.714em;
	padding: 0.714em 0.714em 2.714em 0.714em;
}

.custom .photo_center small a img {
	background: transparent;
	border: none;
	margin: 0;
	padding: 0;
}

.custom .photo_center small a, .custom .photo_left small a, .custom .photo_right small a {
	color: inherit;
	text-decoration: none;
}

/*
This is my own
*/

.custom .photo_block {
	clear: both;
	color: #888;
	float: none;
	margin-bottom: 1.571em;
	text-align: left;
}
.custom .photo_block img {
	background: #eee;
	border: 0.071em solid #ccc;
	margin-bottom: -2.714em;
	padding: 0.714em 0.714em 2.714em 0.714em;
}

.custom .photo_block small {
	padding-left: 0.785em;
}

.custom .photo_block small a img {
	background: transparent;
	border: none;
	margin: 0;
	padding: 0;
}

.custom .photo_block small a, .custom .photo_left small a, .custom .photo_right small a {
	color: inherit;
	text-decoration: none;
}

/* Modified from above; for use with pb-embedFlash */

/*
Thanks to http://www.thesistheme.org/photo-dropper-thesis/
*/
.custom .flash_left, .custom .flash_right {
	background: #eee;
	border: 0.071em solid #ccc;
	color: #888;
	margin-bottom: 1.571em;
	padding: 0.714em;
}

.custom .flash_center {
	clear: both;
	color: #888;
	float: none;
	margin-bottom: 1.571em;
	text-align: center;
}

.custom .flash_left {
	clear: left;
	float: left;
	margin-right: 1.571em;
	text-align: left;
}

.custom .flash_right {
	clear: right;
	float: right;
	margin-left: 1.571em;
	text-align: right;
}

.custom .flash_center img {
	background: #eee;
	border: 0.071em solid #ccc;
	margin-bottom: -2.714em;
	padding: 0.714em 0.714em 2.714em 0.714em;
}

.custom .flash_center small a img {
	background: transparent;
	border: none;
	margin: 0;
	padding: 0;
}

.custom .flash_center small a, .custom .flash_left small a, .custom .flash_right small a {
	color: inherit;
	text-decoration: none;
}

/*
Acronyms/abbreviations for this plugin
http://ketsugi.com/software/wordpress/acronyms-plugin/
(This wraps acronyms in <acronym>, not <abbr>)
*/

.custom .format_text abbr, .custom .format_text acronym 
{
	font-size: 1em;
	line-height: 1em;
	text-transform: none;
	letter-spacing: 1px;
	border-bottom-width: thin;
	border-bottom-style: dotted;
	border-bottom-color: -moz-use-text-color;
	cursor: help;
}

/*
Alert box for use in hooks, etc
*/
.custom .hookAlert
{
	background: #ffffa0; 
	border: 1px solid #e5e597;
}

/*
CSS for custom header img
*/
#header {
 border-top: none;
 border-bottom: 1px solid #DDD;
 background-image: url(images/blogBanner.png);
 background-repeat: no-repeat;
 height: 96px;
 padding-bottom: 4px;
 padding-top: 4px;
 padding-left: 0;
 padding-right: 0;
}
.custom #header #logo a {
 text-indent: -9999px;
 width: 614px;
 height: 96px;
 display: block;
 float: left;
}

.teasers_below_homepage h2 {
 color: #ff0000; !important
}