/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the <body&gt;;; tag 
will be appended with the "custom" class, like so: &lt;body class="custom"&gt;. 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; }	&lt;--- 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/
*/

/*---:[page]:---*/

.custom #page {
        background: #FFFFFF url('http://turboentrepreneur.com/content/header3.png') top center no-repeat;
}

/*---:[header]:---*/

.custom #header {
	border: none;
        padding-top: 0;
}

.custom #header_left {
        float: left;
        width: 60%;
}

.custom #header #logo {
	letter-spacing: -2px;
}

.custom #header #tagline {
        font-style: italic;
        padding-left: 3em;
}

.custom #header #motto {
        font-size: 1.2em;
        text-transform: uppercase;
}

.custom #motto #motto_greet {
        color: #CC0000;
	font-weight: bold;
}

/*---:[nav menu]:---*/

.custom .menu {
	background: #790000 url('http://turboentrepreneur.com/content/TabBG.png') repeat-x;
        border: 1px solid #000000;
        padding: 0px;
}

.custom .menu li a {
        color: #FFFFFF;
	background: none;
        border-top: 0;
        border-bottom: 0;
        border-left: 0;
        border-right: 1px solid #C0C0C0;
        font-weight: bold;
        padding-left: 0.9em;
        padding-right: 0.9em;
        padding-top: 0.5em;
	letter-spacing: 0;
}

.custom .menu li a:hover {
	background: #FF0000;
}

.custom .menu li.current {
	background: #550000;
}

.custom .menu li.rss a {
	background: url('http://turboentrepreneur.com/content/rss2.png') no-repeat 6.6em 0.5em !important;
        border-right: 0;
        padding-right: 2em;
}

.custom .menu li.rss a:hover {
	letter-spacing: 0;
        padding-right: 2em;
	text-decoration: underline;
}

/*---:[search form]:---*/

.custom .menu li.mysearch {
	float: right;
}

.custom .menu #s {
        background: #FFFFFF url('http://turboentrepreneur.com/content/Search.png') no-repeat;
	font-family: "Arial Narrow";
        font-size: 10pt;
        margin-top: 0.15em;
        margin-right: 0;
        padding: 2px 5px 2px 25px;
        width: 140px;
}

/*---:[post box]:---*/

.custom .post_box {
        border: 1px solid #CCCCCC;
	background: url('http://turboentrepreneur.com/content/GenBG.png') repeat-x;
        margin: 20px 15px 15px 0;
        padding-left: 10px;
        padding-right: 10px;
}

.custom .post_box h1 {
        border-bottom: 1px solid #CCCCCC;
}

.custom .post_box h2 {
        border-bottom: 1px solid #CCCCCC;
}

.custom .post_box li {
	list-style-position: inside;
}

/*---:[to_comments]:---*/

.custom .to_comments {
	margin-top: 1em;
}

/*---:[big mlm lies box]:---*/

.custom .bigmlmlies_box {
        background:#CCFFFF;
        border:1px solid;
        font-size:12pt;
        font-weight:bold;
	margin:0 auto 1.5em;
        padding:10px;
        width:90%;
}

/*---:[teasers]:---*/

.custom .teasers_box {
        margin: 15px 15px 0px 0px;
	padding: 0px;
        width: 579px;
}

.custom .teaser {
        background: url('http://turboentrepreneur.com/content/GenBG.png') repeat-x;
        border: 1px solid #CCCCCC;
        margin: 0px;
        padding: 20px 10px;
        width: 265px;
}

.custom .teaser .entry-title {
	border-bottom: 1px solid #CCCCCC;
}

.custom .teaser p {
	margin-bottom: 15px;
}

/*---:[sidebar]:---*/

.custom #sidebars #text-4 {
        margin-top: 20px;
}

.custom .sidebar_list {
        padding: 0px 2px 0px 0px !important;
}

.custom li.widget {
        background: url('http://turboentrepreneur.com/content/GenBG.png') repeat-x;
	border: 1px solid #CCCCCC;
        margin-bottom: 15px;
}

.custom li.widget h3 {
        font-weight: bold;
        letter-spacing: 1px;
        margin: 10px;
}

.custom li.widget ul {
        color: #555555;
        list-style: square inside;
	margin: 10px 10px 10px 20px;
}

.custom li.widget ul a {
        font-weight: bold;
}

.custom li.widget ul li {
	border-bottom: 1px solid #CCCCCC;
}

/*---:[Social Media Widget]:---*/

.custom #SocialMedia {
	list-style-type: none;
        overflow: hidden;
        padding: 0;
}

.custom #SocialMedia li {
        border: none;
	display: inline;
}

/*---:[eBook Promo Widget]:---*/

.custom #ebookpromo {
        font-size: 9pt;
        font-weight: bold;
        margin: 0 1.5em 1em;
	text-transform: uppercase;
}

/*---:[footer]:---*/

.custom #footer {
	border-top: 1px solid;
}

/*---:[WordPress Smiley]:---*/

img#wpstats { width: 0px; height: 0px; overflow: hidden; }
