/*
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/
*/
body {
	color: #111;
	font-size: 62.5%;
	background-color: #686D7E;
	background-image: url(/img/background.gif);
	background-repeat: repeat-y;
	background-position: center;
}
.custom #header #logo a { display: block; height: 170px; width: 959px; background: url('http://robanderson.me/img/top.jpg') no-repeat; outline: none; }
.custom #header #tagline {
	display: none;
}
.custom #header #tagline { height: 0; }
.custom #header {border-bottom:none; padding:0}
.custom #header { padding: 0; }


/*---:[ global elements ]:---*/
.custom abbr, acronym { line-height: 1em; letter-spacing: 1px; border-bottom: none; cursor: help; }

/*---:[ Twitter styles ]:---*/
.custom #twitter-side #tweets{padding:5px; background:#EFF3FF; border:1px solid #BFD0FF; font-size:12px;}
.custom #twitter-side #tweets img{padding:4px; background:#eee; border:1px solid #ccc; width:48px; heigth:48px; float:left;}
.custom #twitter-side #tweets ul {margin-left: 63px;}
.custom #twitter-side #tweets ul li {line-height:1.3em;}
.custom #twitter-side #tweets .created_at{font-size:10px; line-height:1em;}
.custom #twitter-side p{margin-left: 63px;font-size:10px;line-height:1em;}


/*---:[ Nav styles ]:---*/
.custom ul#tabs li.rss { padding-right: 0; background: none; border: none; float: right; padding-right:20px; }
.custom ul#tabs li a { display: block; line-height: 1em; color: #111; letter-spacing: 2px; }

/*---:[ Home Page Teasers styles ]:---*/
.custom .teaser .teaser_author .author { font-style: normal; letter-spacing: 1px; }
.custom .teaser .teaser_author a, .teaser a.teaser_comments, .teaser a.teaser_category, .teaser .edit_post a { letter-spacing: 1px; color: #888; border-bottom: 1px solid #eee; }

/*---:[ headlines and bylines ]:---*/
h1, h2, h3, h6 { font-weight: normal; }
h4, h5 { font-weight: bold; }
h5, h6 { letter-spacing: 1px; }
.format_text h2.top, .format_text h3.top { margin-top: 0 !important; }
.sidebar h3 { font-variant: small-caps; letter-spacing: 2px; color: #555; }
	h2 a { color: #111; }
	h2 a:hover { color: #2361a1; }

/*---:[ headline meta data (includes bylines) ]:---*/
.custom .headline_meta { font-style: italic; color: #888; }
.custom .headline_meta span, .headline_meta abbr { font-style: normal; letter-spacing: 1px; }
.custom .headline_meta a { color: #888; border-bottom: 1px solid #eee; }
.custom  .headline_meta a:hover { color: #111; }

/*---:[ navigation links ]:---*/
.custom .prev_next { letter-spacing: 2px; border-top: 2px solid #ddd; color: #666; clear: both; }
.custom .prev_next .next { text-align: right; }
.custom .prev_next .floated { float: left; }
.custom .prev_next a { text-decoration: none; }
.custom .prev_next a:hover { text-decoration: underline; }
.custom .post_nav a { text-transform: none; letter-spacing: normal; }
.custom #comment_nav_2 { border-top: 0; border-bottom: 2px solid #ddd; }

/*---:[ comments style ]:---*/
.custom .comments_closed p {display: none ;}

