/*
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/
*/

.custom #header #logo a { display: block; height: 100px; width: 550px; background: url('http://www.fallingbackinlove.com/images/falling-back-in-love-title2.png') no-repeat; outline: none; }
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }



h1 { color : #7a2e40;margin: 0px 0px 10px 0px;padding-bottom : 10px;font : normal 17px Arial, serif;border-bottom : 0px solid #efece7;}
h2 {color : #7a2e40;margin : 20px 0 10px;padding-bottom : 10px;font : normal 17px Arial, serif;border-bottom : 1px solid #efece7;}
h3 {color : #7a2e40;margin : 10px 0;padding-bottom : 10px;font : bold 12px Arial, serif;border-bottom : 1px solid #efece7;}
ul {padding:0;margin:0 0 0 17px;list-style: square url(images/bullet.gif);}
.box {background : #f7f7f7;border : 1px solid #f0e9eb;padding : 15px;}

#logo {margin-bottom : 10px;}
.logotxt1 {font : normal 18px Arial, serif;color : #7c684f;margin : 40px 0 0 15px;}
.logotxt2 {font : normal 14px Arial, serif;color : #2a3845; }


/*** Sidebar ***/

.sidebar {margin : 0 auto;padding : 10px 10px;background : url(images/shadow.jpg) no-repeat top;}

.sidebar2 {margin : 0 auto;padding : 10px 10px;background : url(http://www.fallingbackinlove.com/images/shadow.jpg) no-repeat top;}


/***Opt In Box***/
.box h3 { margin-top: 0;}
.box h4 { margin-top: 0; font : normal 12px Arial, serif;}
.box p { margin-bottom: 0; }
.box .ideas {float:left; width:32%;}
.box .optin {float:right; width:68%; }


.advert {background-color:#FFFFA0; color:#000; border: 1px solid #0262A5; border-top: 0; padding: 0.3em; text-align: center; font-size:12px;}