@charset "utf-8";

/*
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/
*/


/* First & last tabs' styles */


#menu-item-15823 { background-position:0 -224px; padding-left:1px; margin-right:-1px; }
li:hover#menu-item-15823 { background-position:0 -264px; }

#menu-item-15838 { background-position:right -305px; }
li:hover#menu-item-15838 { background-position:right -345px; }

/* First & last tabs' submenu styles */

#menu-item-15823 ul { display:block; width:152px; margin-top:-1px; background-repeat:no-repeat; }
#menu-item-15823 ul li { width:152px; height:29px; background:none; background-color:#EF45AF; }
#menu-item-15823 ul a { width:141px; height:28px; padding:0 0 0 11px; font-size:14px; line-height:29px; text-transform:none; text-align:left; font-weight:normal !important; border-bottom:1px solid #F883CC; }
#menu-item-15823 ul li:hover { background-color:#F883CC; }
#menu-item-15823 ul a:hover { border-bottom:1px solid #ffffff; }

#menu-item-15838 ul { display:block; width:152px; margin:0 0 0 -60px; background-repeat:no-repeat; }
#menu-item-15838 ul li { width:152px; height:29px; background:none; background-color:#EF45AF; }
#menu-item-15838 ul a { width:141px; height:28px; padding:0 0 0 11px; font-size:14px; line-height:29px; text-transform:none; text-align:left; font-weight:normal !important; border-bottom:1px solid #F883CC; }
#menu-item-15838 ul li:hover { background-color:#F883CC; }
#menu-item-15838 ul a:hover { border-bottom:1px solid #ffffff; }
.entry-content {
	padding-bottom:20px;
	border-bottom:#aaaaaa 1px dotted;
 
}

/* Because we display full posts (not teasers), need better control over margins around H2 */
.format_text h2  {
    font-size: 1.286em;
    line-height: 1.222em;
    margin: 0 0 0.611em;
}
.post_box {
    padding-top: 0.0em;
    margin-top:0;
}