/*
File:			custom.css
Description:	Custom styles for the Thesis Theme that you define

Use:

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 overwrite *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!
*/

body { background: url('http://www.bryaneisenberg.com/wp-content/themes/thesis_17/custom/images/sidebarbg.gif') repeat top left; }

/*---:[ core layout elements and header styles ]:---*/
#container { background-color: #fff; }
#header { position: relative; padding: 0; border-bottom-style: solid; }
	#header img { display: block; }
	p.emailsub { position: absolute; top: 8px; right: 0px; font-size: 15px; text-transform: uppercase; letter-spacing: 2px; background: url('http://www.bryaneisenberg.com/wp-content/themes/thesis_17/custom/images/icon-rss.gif') no-repeat 100% 50%; padding-right: 15px; }
p.grok {position: absolute; top: 5px; right: 90; background: url('http://www.bryaneisenberg.com/wp-content/themes/thesis_17/custom/images/kilroythegrok.png') no-repeat 100% 50%; padding-right: 15px; }
.custom rss { color: #3380CC; }

/*---:[ links ]:---*/
a { color: #3333CC; text-decoration: none; }
a:hover { color: #8033CC; text-decoration: none; }

/*---:[ nav menu ]:---*/
ul#tabs li, ul#tabs li.current_page_item, ul#tabs li.current-cat { padding-bottom: 0; background: #dcbc44 url('http://www.bryaneisenberg.com/wp-content/themes/thesis_17/custom/images/navbg-new.gif') repeat-x bottom left; border-bottom: 1px solid #ddd; }
	ul#tabs li a, ul#tabs li a:visited { color: #fff; text-decoration: none; }
	ul#tabs li a:hover { color: #B88A00; text-decoration: none; }
	ul#tabs li.current_page_item a, ul#tabs li.current-cat a { color: #fff; }
	ul#tabs li.rss a { color: #3380CC; }
	ul#tabs li.rss a:hover { color: #716F7D; text-decoration: none; }

/*---:[ headlines (content and sidebar) ]:---*/
.custom h1 { color: #3380CC; }
.custom h2 { color: #3380CC; }
.custom h2 a {color: #3380CC; }
.custom h2 a:hover {color: #111; }
.custom h3 { color: #B88A00; }
	.sidebar h3 { color: #B88A00; font-size: 1.2em; line-height: 1.111em; margin-bottom: 0.5em; font-variant: normal; letter-spacing: 0; }


/*---:[ headline meta data ]:---*/
.custom .headline_meta a, .custom .headline_meta a:visited { color: #3380CC; border-bottom: none; }
.custom .headline_meta a:hover { color: #3380CC; border-bottom: none; }
p.author_and_date a { color: #c02e59; text-decoration: none; }
p.author_and_date a:hover { color: #716F7D; text-decoration: none; }

/*---:[ post formatting and special case styles ]:---*/
.custom .format_text a { text-decoration: none; }
.custom .format_text img.left, .custom .format_text img.alignleft { margin-right: 0.667em; margin-bottom: 0.667em; }
.custom .format_text img.right, .custom .format_text img.alignright { margin-left: 0.667em; margin-bottom: 0.667em; }
.format_text .post_tags { color: #666; font-size: 1em; }
a.more-link { display: block; }
.intro_block { border-bottom: 3px solid #ddd !important; }
	
/*---:[ multimedia box ]:---*/
#multimedia_box { text-align: center; }
.custom #image_box, .custom #video_box, .custom #custom_box { background: #f1e8c6; }
.custom #commentform p.allowed { background: #f1e8c6; }

/*---:[ sidebar and widget stuff ]:---*/
#sidebars a:visited { color: #3380CC; }
#sidebars a:hover { color: #6633FF; text-decoration: none; }
.custom li.widget p a { text-decoration: none; }
li.widget ul li { margin-bottom: 0.467em; }
,custom .rsswidget { color: #B88A00 }


/* comments */
dd.comment { clear: left; }
	dt.comment img { margin: 0 1em 0 0; /*border: 0.4em solid #efe9d6;*/ float: left; }
	dt.author_comment img { border: 0.4em solid #fff; }
		dt.comment a, dt.comment a:visited { color: #c02e59; }
		dl#comment_list dt.comment a:hover { color: #716f7d; text-decoration: none; }
		.custom dl#comment_list .comment_num a, .custom dl#comment_list .comment_num a:visited { color: #c02e59; }
		.custom dl#comment_list .comment_num a:hover { color: #fff; background: #c02e59; }
	.author_comment { background: #f5e393; }
	dl#comment_list dt.comment p.social_profiles { font-size: 1.5em; line-height: 1.6em; color: #888; }
.custom .call_to_register { margin-right: -0.667em; padding: 0.533em 0.667em; background: #f0deaf; border: 0.067em solid #d7c491; }
	.custom #commentform a { text-decoration: none; }


/*---:[ self-clearing floats ]:---*/
dt.comment:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }