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

/*---:[ highlighting content ]:---*/

/* note: Grey */
p.note {
padding: 0.57143em 0.78571em;
background: #f5f5f5;
border: 1px solid #ddd;
}

/* alert: Yellow */
p.alert {
padding: 0.57143em 0.78571em;
background: #ffffa0;
border: 1px solid #e5e597;
}

/* info: Red */
p.info {
padding: 0.57143em 0.78571em;
background: #ff4f52;
border: 1px solid #ef1d21;
}

/* download: Green */
p.download {
padding: 0.57143em 0.78571em;
background: #a3df61;
border: 1px solid #7abf2f;
}

/* subfeed: Feed Image */
p.subfeed {
padding: 0.57143em 0.78571em;
background: #f2f2f2 url('images/corner-feed.gif') no-repeat top right;
border: 1px solid #ddd;
}

/* twitter: Twitter Image */
p.twitter {
padding: 0.57143em 0.78571em;
background: #e8f8fd url('images/twitter.gif') no-repeat top right;
border: 1px solid #ddd;
}

.rtfm { padding: 0.846em; line-height: 1.385em; background: #e3f0f2; border: 0.077em solid #addde6; }

.rtfm h4 { font-size: 1.077em; font-weight: bold; line-height: 1.286em; margin-bottom: 0.429em; }

.rtfm p { margin-bottom: 0; padding: 0; }

.subscriptions li { padding-left: 0; background-image: none; }

.rss a { padding-left: 20px; background: url('http://diythemes.com/includes/thesis/images/icon-rss.gif') 0 50% no-repeat; }

.email a { padding-left: 20px; background: url('http://diythemes.com/includes/thesis/images/icon-email.gif') 0 50% no-repeat; }

.rtfx { padding: 0.846em; line-height: 1.385em; background: #ffaeaf; border: 0.077em solid #ef1d21; }

.custom ul#tabs li.rss a { padding-right: 16px }