/*
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/
*/

/* Top Nav bar */
.custom ul#topnav {
border-style: none;
list-style-image: none;
list-style-position: outside;
list-style-type: none;
width: 100%;
float: left;
}
.custom ul#topnav li { float: left; padding: 3px 10px 3px 0px; }
.custom ul#topnav li a { font-size: 1.1em; color: #000000; }
.custom ul#topnav li a:hover { text-decoration: underline; }

/* Top Nav Bar Subs */
.custom ul#topnav li.rss {
background:transparent none repeat scroll 0 0;
border:medium none;
float:right;
padding-right:0;
}
.custom ul#topnav li.rss a {
background:transparent url(/wp-content/uploads/2010/05/feed.png) no-repeat scroll 0 50%;
padding-left:16px;
padding-right:8px;
}
.custom ul#topnav li.rss_email {
background:transparent none repeat scroll 0 0;
border:medium none;
float:right;
padding-right:0;
}
.custom ul#topnav li.rss_email a {
background:transparent url(/wp-content/uploads/2010/05/email.png) no-repeat scroll 0 50%;
padding-left:16px;
}
.custom ul#topnav li.twitter {
background:transparent none repeat scroll 0 0;
border:medium none;
float:right;
padding-right:0;
}
.custom ul#topnav li.twitter a {
background:transparent url(/wp-content/uploads/2010/05/twitter.png) no-repeat scroll 0 50%;
padding-left:20px;
padding-right:8px;
}

/*Eliminate double border above Nav bar*/
.custom #header {
border-bottom:0 double #DDDDDD;
clear:both;
}

/*Page Navigation Settings*/
.wp-pagenavi {
font-size:1.3em;
padding:5px 0 10px;
text-align:center;
}

/*Changes background of Author Replies*/
.custom dl#comment_list dt.bypostauthor, .custom dl#comment_list dd.bypostauthor>div {background: #E7F8FB none repeat scroll 0 0; padding-top:20px;}

/*Custom Header Logo*/
.custom #header #logo a {
background:transparent url(images/ParentingFamliyMoneyII.gif) no-repeat scroll 0 0;
display:block;
height:95px;
outline-color:-moz-use-text-color;
outline-style:none;
outline-width:medium;
width:480px;
}

.custom #header #logo, .custom #header #tagline {
text-indent:-9999px;
line-height:0.1em;
}

.custom #header { padding-bottom: 0; }

/* full width teasers */
.custom .teaser {
&nbsp;&nbsp; width: 100%;
   margin-top: 2em;
&nbsp;&nbsp; padding-top: 2em;
&nbsp;&nbsp; border-top: 1px dotted 
#8AA789;
&nbsp;&nbsp; text-align: justify;
}
.custom .teasers_box {
&nbsp;&nbsp; padding-top: 0;
&nbsp;&nbsp; padding-bottom:0;
&nbsp;&nbsp; border-top: 0;
}

/*customize H3 to automatically bold*/
.custom h3 {
font-weight:bold;
}

