﻿/*
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/
*/

/*  site background */
body { background: url('http://www.evolvhealth.info/wp-includes/images/bg.gif') repeat top left; font-family:Calibri,"Helvetica Neue",Helvetica,Arial,Verdana,sans-serif;}

/*  site background color */
#container { background-color: #fff; }

.custom p.crtext {font-size:10px}

/*  line-height fix */
.custom .format_text h1 { line-height:1em;margin-bottom:5px; }

/*  post headings */
.custom .headline_area h1 { padding: 0px; font-size:30px; background: #fff; border-bottom: 1px dashed #eee;color:#cf3332;}

/*  teaser posts */
.custom .teaser .format_teaser {font-size:1.5em;margin-top:1.0em;margin-bottom:1.0em;}
.custom .teaser h2 { padding:5px; border-bottom:1px dashed #eee;}
.custom .teaser h2 a { color:#cf3332;}

/*  evolvhealth logo */
.custom #header #logo a { display: block; height: 80px; width: 315px; background: #ffffff url('http://www.evolvhealth.info/wp-includes/images/evolv-logo-wh.png') no-repeat; outline: none;}

/*  header logo and tagline (make it not show) */
.custom #header #logo, .custom #header #tagline { text-indent:-9999px;}
.custom #header #tagline { height: 0; }

/* footer font sizes */
.custom #footer { font-size: 14px; text-decoration: none; font-style:bold;}
.custom #footer p { font-size: 12px; text-decoration: none; font-style:normal;}
.custom #footer a { font-size: 13px; color: #000}

/*  rotating quotes */
.custom #header #quotes { display:block; float:right; font-size:22px;font-family:"times new roman",sans-serif;color:#646464;width:550px;}
.custom #header #quotes #source {float:right;font-size:16px;font-style:bold;}

/*  override thesis tabs */
ul#tabs li  { font-size: 12px; }
ul#tabs li, ul#tabs li.current_page_item, ul#tabs li.current-cat { padding-bottom: 0; background: #dcbc44 url('http://www.evolvhealth.info/wp-includes/images/navbg-mf.gif') repeat-x bottom left; border-bottom: 1px solid #ddd; }
ul#tabs li a, ul#tabs li a:visited { color: #fff; text-decoration: none; }
ul#tabs li a:hover { color: #f4b937; text-decoration: none; }
ul#tabs li.current_page_item a, ul#tabs li.current-cat a { color: #fff; }
ul#tabs li.rss a { color: #f4b937; }
ul#tabs li.rss a:hover { color: #716F7D; text-decoration: none;}

.custom ul#tabs .page-item-3 a { color:yellow; text-decoration: underline; }
.custom ul#tabs .page-item-3 a:hover { color: #fff; text-decoration: none; }


/*  Remove “From the category archives” */
.custom #archive_info p {display:none;}

/* Sidebar */
.custom #sidebar-social {
	margin-top:10px;
}
.custom #sidebars ul#social {
	list-style:none;
	display: inline;
}
.custom #sidebars ul#social-bs {
	list-style:none;
	display: inline;
}
.custom #sidebars ul#social li {
	float:left;
	margin:0 3px 10px 9px;
}

.custom #sidebars ul#social-bs li {
	display: inline;
	margin:0 23px 0 9px;
}

.custom .social-sponsors h3 {
	font-size:13px;
}

.custom .format_text .to_comments span.bracket, .custom .comments_intro span.bracket  {
	display:none;
}

.custom .comments_closed  {
	display:none;
}
