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


#rbrfooter { float: left; width: 940px; padding: 20px 10px; border-top: 5px solid #1b1d1e; background: #1b1d1e; }
.rbrfooter_left { float: left; width: 630px; text-align: left; }
.rbrfooter_left_wide { float: left; width: 300px; text-align: left; }
.rbrfooter_left_narrow { float: right; width: 300px; text-align: left; }
.rbrfooter_right { float: right; width: 290px; text-align: left; }
.rbrfooter_wide { width: 920px; float: left; margin: 0 0 2.5em 0; padding: 10px; background: #333; text-align: left;}




/*  DATA TABLE  */

table.pas_data_table {
  width: 500px;
  margin: 8px 0 12px 0;
  font-size: 12px;
}

table.pas_data_table thead th {
  color: #447AA6;
  font-size: 16px;
  border-style: solid;
  border-width: 0 0 2px 0;
  border-color: #447AA6;
  text-align: left;
}

table.pas_data_table thead td{
  padding: 4px;
  font-weight: bold;
  text-align: center;
  color: #000;
  background: #DBE7F0;
}

table.pas_data_table tbody th{
  text-align: left;
  padding-left: 5px;
  color: #000;
  border-bottom: 1px dotted #8B8B8B;
}

table.pas_data_table tbody td{
  color: #000;
  padding: 4px;
  text-align: center;
  border-bottom: 1px dotted #8B8B8B;
}

table.pas_data_table tbody tr.alt td, table.pas_data_table tbody tr.alt th {
  background: #FBFCFD;
}




body.custom {
    background: #33332f;
}

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

.custom #page {
    background: #fff;
}



div.content-highlight {
background: #e3f0f2;
border: 0.1em dashed #3e3e3a;
text-align: left;
color: #111; 
font-family: verdana, geneva, helvetica;
padding: 15px;
font-size:1.0em;
}


#blurb-text {
background: #e3f0f2;
border: 0.1em solid #3e3e3a;
text-align: left;
color: #111; 
font-family: verdana, geneva, helvetica;
padding: 15px;
font-size:1.3em;
margin-right: 5px;
margin-top: 5px;
}





/* general calculator styles */
#rakebackcalc, #rakebackcalc_links {
    width: 190px;
/*    border: 1px solid #A3282F; */
    font-family: Arial, sans-serif;
    font-size: 10px;
    background-color: #FFF;
    color: #000;
}

/* backlink */
#rakebackcalc_links {
    border-top: none;
    text-align: center;
    padding: 2px 0;
}

/* calculator header */
#rakebackcalc h3 {
    margin: 0 0 10px;
    padding: 1px 10px;
    color: #FFF;
    font-size: 13px;
    background-color: #A3282F;
}

/* labels for input controls */
#rakebackcalc label {
	display: block;
	float: left;
	margin: 8px 0 0;
	width: 125px;
	text-align: right;
}

/* input controls */
#rakebackcalc input, #rakebackcalc select {
    margin: 5px 0 0 4px; 
    float:right;
}

/* calculate button container */
#rakebackcalc_button {
    margin: 10px 0;
    text-align: center;
}

/* calculate button */
#rakebackcalc_button button {
    width: 105px;
    border: 1px solid #000;
    background-color: #A3282F;
    color: #FFF;
    font-weight: bold;
}

/* results header */
#rakebackcalc h4 {
    margin: 0 0 5px;
    font-size: 13px;
}

/* results container */
#rakebackcalc_results {
    display: none;
    margin: 0 35px;
}

/* results table */
#rakebackcalc_results table {
    margin: 0 0 5px;
    width: 100%;
    border-collapse: collapse;
    background-color: #EAF0F0;
    border: 1px solid #88ACCF;
}

/* results table cell */
#rakebackcalc_results td {
    border-top: 1px solid #88ACCF;
    padding: 2px 10px;
}
