/*
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/
*/
/* wjr code to eliminate normal header */
/*CODE TO HIDE DEFAULT HEADER AND SHOW CUSTOM HEADER */
.custom #header #logo { display: none; }
.custom #header #tagline { display: none; }
/* Optional to remove space around header image so image sits on divider line */
.custom #header { padding: 0; }
/* wjr change content text color (paragraph) )*/
.custom .format_text {
font-weight: normal;
font-size: 1.2em;
font-family:Georgia,"Times New Roman",Times,serif;
color:#111;
}
/* wjr change header */
.custom #header {
background-color:#669;
border-style: solid;
border-width: 0 0 8px 0;
border-color: #333;
height: 62px;
margin: 0;
padding: 0;
}
/* wjr sidebar */
.custom #sidebars {
Background-color: #eee;
}
/* wjr sidebar list */
custom .sidebar_list {
margin: 0 0 0 0.1em;
}
/* wjr sidebar widget_killer_recent_entries */
custom .widget_killer_recent_entries ul {
background-color: #ddd;	
}
/* wjr link color */
.custom a, 
h2 a:hover, #logo a:hover{
// color:#1B14E0;
}
/* wjr post box in content box */
.custom .post_box {
margin-top: 0em; 
padding-top: 0.1em}
/* wjr headline area */
.custom .headline_area {
margin-top: 0.1em;
margin-bottom: 0.1em;
}
/* wjr headline area header styles */
/*.custom .headline_area h1 {
   color:#32963F;
   border-style: solid;
   border-width: 0 0 thin 0;
   border-color: #999;
 } */
.custom .headline_area h1, .custom .headline_area h2, .custom .headline_area h3, .custom .headline_area h4 {
/* color:#fff; */
border-style: transparent;
border-width: 0;
border-color: #fff;
margin:0px;
padding:0;
}
/* wjr custom article title
   at = article title */
.custom div.at {
position: absolute; 
left: 0px;
//clear: both;
margin:8px;
padding:4px;
}
/* at1 = first word, at2=second word, at3=third word, at4=fourth word */
/* at-<name> --> special tab for main page, each different */
.at_1, .at_2, .at_3, .at_4, .at_news, .at_aging, .at_curious, .at_food, .at_hackers, .at_health, .at_links, .at_money, .at_op_ed, .at_politics, .at_puzzler, .at_scams, .at_history, .at_about, .at_reviews, .at_new, .at_subscribe, .at_travel, .at_white_papers {
font-family: Arial,Helvetica,sans-serif;
font-size: 1.5em;
font-weight: bold;
margin: 2px  0  8px 0px;
padding: 4px;
}
.at_1, .at_3 { background-color: #669; color: #ffc; }
.at_2, .at_4 { background-color: #f39760; color: #444; }
.at_news { background-color: #a11d13; }
.at_about { background-color: #f39760; }
.at_aging { background-color: #08ffe6; }
.at_curious { background-color: #ffed4f; }
.at_food { background-color: #99ff8a; }
.at_hackers { background-color: #963e38; }
.at_health { background-color: #ff9c91; }
.at_links { background-color: #a5db92; }
.at_money { background-color: #5b8a3d; }
.at_op_ed { background-color: #ff4e3b; }
.at_politics { background-color: #b3b3b3; }
.at_puzzler { background-color: #5cb3ff; }
.at_scams { background-color: #333; }
.at_history { background-color: #ff7a9e; }
.at_reviews { background-color: #b3deff; }
.at_new { background-color: #c7ff87; }
.at_subscribe { background-color: #ffbcab; }
.at_travel { background-color: #a5d9ec; }
.at_white_papers { background-color: #f8fae3; }
/* wjr drop cap */
.custom .drop_cap{ color: #669	}
/* wjr eg note */
div.eg_note {
margin: 0 2em;
padding: 1em;
background-color: #ffc;
color: #040250;
}
/* page navigation */
.page-nav { font-size: 1.35em; font-weight: bold; margin: 1em 0; padding: 0; overflow: hidden; }
.page-nav-intro { float: left; padding: .3em .5em; margin: 0 1em 1em 0; background: #efefef; border: .1em solid #ccc; }
.page-number { float: left; padding: .3em .5em; margin: 0 .2em; background: #fff; border: .1em solid #ccc;  }
.current-page-number { float: left; padding: .3em .5em; margin: 0 .2em; background: #efefef; border: .1em solid #ccc; }
.elipses { float: left; padding: .3em .2em; }
h2.entry-title {font-size: 1.6em; }
.headline_meta {margin-bottom: 1em; }
.custom #breadcrumbs { margin-bottom: 1em; clear: both; }
.custom #content_box { padding-top: 1.5em;}
.feedflare { display:none;}

/* lists */
.custom .eg-links li {
margin-bottom:1.0em;
}