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

.custom #content { border-right: none; }

body.custom {
    background: #44443f;
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #33332f;
    border: 0.4em solid #3e3e3a;
}

.custom #page {
    background: #fff;
}

.custom #header_area{display:none;}

.custom #header {border-bottom:none; height:98px; padding-top:0; padding-bottom:0; margin-bottom:10px; border: 0; background:url('https://investing-school.com/images/investing-school-title.jpg') left no-repeat;}

.custom .formbutton{
cursor:pointer;
border:outset 1px #ccc;
background:#999;
color:#666;
font-weight:normal;
padding: 1px 2px;
background:url('images/formbg.gif') repeat-x left top;
}

#cse-search-box {
	float: left;
	margin: 10px;
	font-size: 12px;
}

/* Subscribe to email after post*/

.custom .subscribe_ad {
 padding: 0.969em;
 background: #fffbe0; border: 0.077em solid #ffe95a;
 clear: both; 
}

.custom .subscribe_ad h3 {
 margin: 0 0 0.625em 0;
 padding-bottom: 0.3125em;
 border-bottom: 1px dotted #ffe95a;
 font-weight: bold;
 font-size: 24px;
}

.custom .subscribe_ad ul {
 margin: 0 0 0.385em 0;
}

.promote { margin-bottom: 1.571em; padding: 0.571em 0.786em; background: #f7f3e2; border: 1px solid #ddce93; }

.promote h3 { margin: 0 0 0.625em 0; padding-bottom: 0.3125em; border-bottom: 1px dotted #ddce93; font-weight: bold; font-size: 24px;}

.buy_now { margin-bottom: 1.571em; padding: 0.571em 0.786em; background: #e8f3d7; border: 2px solid #75bf00; }

.buy_now h3 { margin: 0 0 0.625em 0; padding-bottom: 0.3125em; border-bottom: 1px dotted #75bf00; font-weight: bold; font-size: 24px;}


.topnav {

background: #FFFFFF;
height: 25px;
width: 959px;
overflow:hidden;
margin-bottom: 10px;

}
.topnav a:link, .topnav a:visited {
background: #1D2F47;
border: 1px solid #000000;
display: block;
float: left;
text-decoration: none;
font-weight:bold;
font-size:14px;
line-height: 25px;
padding: 0 10px;
color:#ffffff;
overflow:hidden;
}

.topnav a:hover, .topnav a:visited:hover {
background: #BCCEE6;
text-decoration:underline;
color:#000000;
font-weight:bold;
overflow:hidden;
}

/* Featured Post Formatting */
.custom #review_box { color: #000000; background: #f5f5f5; padding: 22px 15px 22px 15px; margin-right: 20px; }
.custom #review_box h2 { font-size: 2.2em; margin: 0 0 0 0px; }
.custom #review_box p { font-size: 1.4em; line-height:1.571em; text-align: justify; }
.custom #review_box .reviewreadmore { padding: 22px 0 0 0; }
.custom #review_box .reviewreadmore a { font-size: 14px; text-decoration: none; }

#compare_table
{
	/*font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;*/
	font-size: 14px;
	background: #fff;
	margin: 10px;
	width: 550px;
	border-collapse: collapse;
	text-align: left;
}
#compare_table th
{
	font-size: 14px;
	font-weight: normal;
	color: #039;
	padding: 10px 8px;
	border-bottom: 2px solid #6678b1;
}
#compare_table td
{
	border-bottom: 1px solid #ccc;
	color: #669;
	padding: 6px 8px;
}
#compare_table tbody tr:hover td
{
	color: #009;
}
