/*
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 #bookmarks {background: transparent; width: 3.1em; position: fixed; top: 35%; left: 0.55%;}
.custom #bookmarks a {display: block; text-indent: -9999px; height: 3.1em;}

.custom #bookmarks #twitter {background: url('http://kenharrington.com/wp-content/uploads/Twitter.png')}
.custom #bookmarks #rss {background: url('http://kenharrington.com/wp-content/uploads/Feed.png')}
.custom #bookmarks #email {background: url('http://kenharrington.com/wp-content/uploads/Email.png')}
.custom #bookmarks #stumble {background: url('http://kenharrington.com/wp-content/uploads/Stumbleupon.png')}
.custom #bookmarks #facebook {background: url('http://kenharrington.com/wp-content/uploads/FaceBook.png')}

/***************************************************************/
/* Google Adsense on Bottom of Home Page */
/***************************************************************/
.custom #comments { clear: both; }
.adhome { background: #ffffff; border-top: 1px solid #e1e1e0; border-bottom: 1px solid #e1e1e0; overflow: hidden; padding: 1.5em; }
.adhome ul { list-style-position: inside;  list-style-type: square; margin-left: 1.5em; }
.adhome li { margin-bottom: 5px; }
.adhome h4 {width:95% font-family: Georgia; clear:both; width:95% margin-top: 5px; margin-bottom:15px; font-size:14px; color: #000000; line-height:14px; text-shadow: 1px 1px 2px #000; border-bottom: 3px solid #F0F2ED; padding-bottom: 10px; }</blockquote>
<strong>Add to customs.functions.php file:</strong>

/***************************************************************/
/* Google Adsense on Bottom of Each Post */
/***************************************************************/
.custom #comments { clear: both; }
.adbanner { background: #ffffff; border-top: 1px solid #e1e1e0; border-bottom: 1px solid #e1e1e0; overflow: hidden; padding: 1.2em; }
.adbanner ul { list-style-position: inside;  list-style-type: square; margin-left: 1.5em; }
.adbanner li { margin-bottom: 5px; }
.adbanner h4 { color: #151515; font-size: 12px; text-transform: uppercase; padding-top: 5px; padding-bottom: 5px; }
.adbanner h3 { font-size: 1.7em; letter-spacing: normal; margin-left: 1em; padding-top: 5px; padding-bottom: 5px;}
.adbanner a { font-size: 1em; border-bottom: 1px solid #ffffff; line-height: 1.5em; }

/***************************************************************/
/* Google Adsense at the Top of Each Post */
/***************************************************************/
.custom #comments { clear: both; }
.ads { background: #ffffff; border-top: 1px solid #e1e1e0; border-bottom: 1px solid #e1e1e0; overflow: hidden; padding: 1.2em; }
.ads ul { list-style-position: inside;  list-style-type: square; margin-left: 1.5em; }
.ads li { margin-bottom: 5px; }
.ads h4 { color: #151515; font-size: 12px; text-transform: uppercase; padding-top: 5px; padding-bottom: 5px; }
.ads h3 { font-size: 1.7em; letter-spacing: normal; margin-left: 1em; padding-top: 5px; padding-bottom: 5px;}
.ads a { font-size: 1em; border-bottom: 1px solid #ffffff; line-height: 1.5em; }</blockquote>


/***************************************************************/
/* Custom Header or Logo */
/***************************************************************/
.custom #logo {background-image: url('images/logo.png'); background-repeat: no-repeat; width: 288px; height: 58px; text-indent: -9999px; }
.custom #logo a {width: 288px; height: 58px; display: block; outline: none;}