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

body.custom {
background: #E0CFE6; 
}

.custom #tabs {
background: #fff;
}

.custom ul#tabs li {
background: #195;
}

.custom ul#tabs li a {
color: #fff;
}

.custom ul#tabs li.current_page_item {
background: #fff;
}

.custom ul#tabs li.current_page_item a {
color: #000;
}

.custom ul#tabs li.rss {
background: #fff;
}

.custom ul#tabs li.rss a {
color: #769;
padding-right: 0.5em;
padding-left: 16px;
background: transparent url(../images/icon-rss.gif) 0% 50% no-repeat;
}

/* header */

.custom #header {
background: #fff;
border-bottom: none;
margin-bottom: 2.2em;
}

.custom #header #logo {
text-indent: -9999px;
}

.custom #header #logo a {
background: #fff url(images/header.jpg) top left no-repeat;
height: 150px;
display: block;
}


/* content */

.custom #content_box {
background-image: none;
}

.custom #column_wrap {
background: transparent;
}

.custom #content {
background: #fff;
border-right: solid 1px #E0CFE6;
}

.custom h2 a:hover {
text-decoration: underline;
}

.custom .sidebar {
background: #fff;
}

.custom #multimedia_box {
margin-bottom: 0;
}

.custom #image_box {
background: #fff;
border-color: #E0CFE6;
}

.custom #image_box  img{
border-color: #E0CFE6;
}

.custom .textwidget {
text-align: center;
}

.custom h3 {
background: #195;
color: #fff;

}

.custom #content h3 {
padding: 0.6em 0 0.6em 1.1em;
margin: 1em -0.7em;
}

.custom #sidebars h3 {
padding: 1.1em;
margin-bottom: 2.2em;
}

/* headline */

.custom .headline_area a, .custom .headline_area h1, .custom .headline_area h2 {
color: #fff;
text-transform: uppercase;
}

.custom .headline_area {
background: #87a; 
margin: 0 -2.2em 1em -1.1em;
padding: 1em 0 1em 1.1em;
}

.custom .no_sidebars .headline_area {
margin-right: -1.1em;
}

.custom .headline_meta {
color: #fff;
}
.custom #footer {
border-top: none;
background: #fff;
margin-top: 2.2em;
padding: 1.1em;
color: #111;
}

.custom .sidebar ul.sidebar_list {
padding: 0; 
}

.custom #sidebar_2 ul.sidebar_list {
padding-left:0;
}

.custom .sidebar ul.sidebar_list ul, .custom .sidebar ul.sidebar_list div {
margin: 0 1.1em;
}

.custom .post_box, .custom .teasers_box {
border-top: none;
}

.custom .post_box {
margin-top: 0;
padding-top: 0;
}


/* 1,000 hearts specific */

.custom #r1kh h2 {
text-align: center;
font-size: 1.75em;
color: #214;
margin-bottom: 0.5em;
}

.custom #r1kh #barometer {
width: 50%;
margin: 0 auto;
border: solid 2px #87a;
margin-bottom: 2em;
}

.custom #r1kh #progress {
background: #E0CFE6;
margin: 1px;
}

.custom #r1kh a {
margin-right: 2px;
}

.custom h3#heartselected {
margin-right: -0.7em;
}

.custom #paymentimages img {
display: inline;
margin-right: 2em;
}

.custom #hearts_payment_form {
text-align: center;
margin-bottom: 2em;
}

.custom #hearts_payment_form label {
margin: 0 2em 0 0.5em;
}

.custom #hearts_payment_form #monamountlabel {
margin-right: 0.5em;
}

.custom #hearts_payment_form #duration {
margin-left: 0.5em;
}

.custom #hearts_payment_form_submit {
padding: 0.5em;
font: bold 1em georgia, sans-serif;
margin-top: 1em;
}

.custom #hearts_payment_form h4 {
font-size: 1.25em;
margin: 1em 0;
color: #000;
text-transform: none;
}

.custom #social-networks {
text-align: center;
margin: -0.5em 0 1em 0;
}

.custom #social-networks img{
margin: 0 0.25em;
display: inline;
}

.custom  #social-networks a{
display: inline;
}

.custom h3#websitebanners {
margin-right: -0.7em;
}

.custom h4 {
text-align: center;
color: #073;
text-transform: uppercase;
font-size: 1.3em;
margin-bottom: 0.25em;
}

.inlined-images img{
display: inline;
}

.inlined-images img.alignnone {
margin: 0;
}