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

/* Custom Container area */
body.custom { background: #33332f; }

/* Custom header area */
.custom #header a {border-bottom: none; }
.custom .header  { float: left; width:940px;}
.custom .logo { float: right;}
.custom .header_text { float: right; color: #acacac; font-size: 16px; margin: 0 5px 0 10px;}
.custom .headshot { float: right; margin: 0 5px 0 10px;}
.custom .call_header { float: right;}
.custom .social_header { float: right;}

/* Custom footer area */
.custom #footer  {
background-color: #f2f2f2;

}

.custom #footer a {border-bottom: none;
color:  #5f5a59;
}

/* Category recent posts on sidebar 1 */
.custom .category-recent-posts { padding:1.0em; margin-bottom:1.8em; }
	.custom .category-recent-posts h3 { margin-bottom:1.0em; font-size: 1.4em; margin-top: 20px; }
	.custom .category-recent-posts a { border-bottom:1px dotted #fff; text-decoration:none; font-size:1.2em; }
		.custom .category-recent-posts a:hover { color: #00f; text-decoration:underline; }

/*Custom link decoration */
.custom  a:hover { color: #00f; text-decoration: underline; }

/* Custom Social buttons on Pages */
.custom .social-box {
    float: right;
    position: relative;
    margin-top: 7px;
    width: 425px;
	vertical-align: bottom;
}
.linkedin {
    float: right;
    }
.tweet {
  float:right;
}
.fb {
    float: right;
    }
.plusone {
	float: right;
	}


/* Archive Intro */
.custom #archive_intro { background: #fff; border: 1px solid #ddd; width: auto; margin: 0 0 30px; padding: 20px 30px 18px; margin-right: 23px; }
.custom #archive_intro h1 { border-bottom: 2px dotted #ddd; font-weight: bold; }
.custom.author #archive_intro h1 { margin: 0; padding: 0; border: 0; text-transform: uppercase; font-size: 20px; font-weight; bold; }
.authorarchive { background: #fff; border: 1px solid #ddd; padding: 30px 30px 10px; margin-right: 23px; margin-bottom: 20px; font-size: 14px; }
.authorarchive h4 { font-size: 30px; font-weight: bold; border-bottom: 2px dotted #ddd; margin-bottom: 20px; padding-bottom: 3px; }
.authorarchive img { float: left; padding: 8px; background: #fff; border: 1px solid #ddd; border-left: 1px solid #eee; border-top: 1px solid #eee; margin-right: 15px; margin-bottom: 15px; }
.authorarchive p { font-size: 14px; margin-bottom: 20px; line-height: 1.4em; }
.authorarchive p.hlight { font-weight: bold; }
.authorarchive p.hlight span { color: #073d9f; }