/*
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/
*/

/* DoubleMule Clickable Header v. 1.0 */

.custom #header
{
background: #ffffff;
padding-top: 0em;
padding-right: 0em;
padding-bottom: 0em;
padding-left: 0em;
border-top: 0em;
border-right: 0em;
border-bottom: 0em;
border-left: 0em;
margin-top: 0em;
margin-right: 0em;
margin-bottom: 0em;
margin-left: 0em;
}

.custom #header #logo a
{
display:block;
width:500px;
height:150px;
background:url(http://retiredandwriting.com/wp-content/uploads/2009/08/logo.gif) center no-repeat;
color:#000000;
text-indent: -9999px;
padding-top: 0em;
padding-right: 0em;
padding-bottom: 0em;
padding-left: 0em;
border-top: 0em;
border-right: 0em;
border-bottom: 0em;
border-left: 0em;
margin-top: 0em;
margin-right: 0em;
margin-bottom: 0em;
margin-left: 0em;
}


{
color:#000000;
text-indent: -9999px;
}


/* NO PAGE TITLES ON SPECIFIC PAGES */

.custom #no_headline .headline_area { display: none; }


/*---:[ nav bar styling ]:---*/
.menu .tab-home {width:100px;}
.menu .tab-1 {width:120px;}
.menu .tab-2 {width:100px;}
.menu .tab-3 {width:100px;}
.menu .tab-4 {width:100px;}
.menu .tab-5 {width:100px;}

/* Custom H1 and H2 tags */

.custom h1 {
-x-system-font:none;
font-family:Georgia, serif
font-size:22px;
font-size-adjust:none;
font-stretch:normal;
font-style:normal;
font-variant:normal;
font-weight:bold;
letter-spacing:0px;
line-height:1.1em;
text-decoration:none;
}

/* Custom H1 and H2 tags for index page*/
.index #content h1 { font-size:18pt; text-align:center; font-weight:bold; }
.index #content h2 { font-size:14pt; text-align:center; font-weight:bold; }

/* Custom H1 and H2 tags for Article Marketing page*/
.article_marketing #content h1 { font-size:16pt; text-align:center; font-weight:bold; }
.article_marketing #content h2 { font-size:14pt; text-align:center; font-weight:bold; }

/* Custom H1 and H2 tags for Blogging page*/
.blogging #content h1 { font-size:16pt; text-align:center; font-weight:bold; margin-bottom:0.8em;}
.blogging #content h2 { font-size:14pt; text-align:center; font-weight:bold; margin-bottom:0.8em;}

/* Custom H1 and H2 tags for eBook page*/
.ebook #content h1 { font-size:16pt; text-align:center; font-weight:bold; margin-bottom:0.8em;}
.ebook #content h2 { font-size:14pt; text-align:center; font-weight:bold; margin-bottom:0.8em;}

