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

/* page & header */

.custom #header { background: #fff url('/images/lrc-logo.gif') no-repeat;}

.custom ul#tabs { margin-left:1em;border-bottom: 0px; }

.custom ul#tabs li a {text-decoration: underline; color: #162CCC;}

.custom #header #logo a, #header #logo a:visited { color: #000; text-decoration: none; }
.custom #header #logo a:hover { color: #000; text-decoration: none; }

.custom #header, .custom #footer {border:0;}
.custom #header #tagline { color: #999;}

.custom #header_area .page, .custom #content_area .page, .custom #footer_area .page {padding-left:0; padding-right:0;}

/* Change the color of the currently selected tab (pages and category pages) */
.custom ul#tabs li.current_page_item { background: #d9cde9; }



/*side bars */

.sidebar_list .widget {margin-bottom: 2em;}

#sidebars h3 { font-weight: bold; padding-top:0;}

.widget_text a {text-decoration:underline;}

.widget_recent_entries li, .widget_links li {padding: 0.423em; line-height: 1em; background: #d9cde9; border: 0.077em solid #330066; }

.widget_recent_entries, .widget_categories { margin-top: -1em;}

.sidebar_list a {color: #162CCC;}

/* content */

h2.entry-title a {text-decoration: underline;}

.headline_meta { font-style: normal; font-size:99%; color: #000; font-weight: bold;}
.headline_meta a { color:#162CCC; font-weight: bold;}

blockquote {border-left: 0.4em solid #ddd; color: #444; background: #eee;}
.comment blockquote {border-left: 0.4em solid #ddd; color: #444; background: #e3f0f2;}

.postauthor { background: #F5F5F5; border-top: 1px solid #e1e1e0; border-bottom: 1px solid #e1e1e0; overflow: hidden; padding: 1.5em;}
.postauthor a { font-size:1.5em; text-decoration:underline;}
.postauthor img { border: 0 solid #e2dede; float: left; margin-right: 1.5em; }
.postauthor h4 { color: #666; font-size: 2em; margin-bottom: 5px; }
.postauthor p { color: #515151; font-size: 13px; margin-bottom: 12px; padding-top:1.4em; }
.socialmedia { background: #e3f0f2; border-top: 1px solid #d1d1d0; border-bottom: 1px solid #e1e1e0; overflow: hidden; padding: 1em; text-align: center;}
.socialmedia p { color: #515151; font-size: 1.3em;}
.socialmedia a { text-decoration:underline;}
.socialmedia img { vertical-align:middle;}

#url {display: none;}
.to_comments {display:none;}
.bracket {display: none;}

#respond_intro .required {margin-left:-1em;padding-left:-1em;}

.comment_num a {
   font-family: Georgia, serif;
   font-size: 3.5em;
}