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

/* Set background slightly off white */
.custom { background: #eee; }
.page { background: #fff; }

/* Justify the text on the page */
.custom .teaser { text-align: justify; }
.custom .format_text { text-align: justify; }

/* Remove image box for now while dealing with formatting */
.custom #image_box { padding:0px; border:0px none; background:#FFFFFF; }
.custom #image_box img { padding:0px; border:0px none; width:391px;}

/* Configure Link Menu */
.custom #featured_menu_content {padding:0x; width:180px; margin-left:auto; margin-right:0px; text-align:right;}
.custom #featured_subscribe_content {padding:4px; margin-left:auto; margin-right:0px; text-align:right; font-size: 1.3em;}

/* Wipe away existing header & tagline */
/* Set image to custom image header and remove line under neath since swapped the navigation below */
.custom #header #tagline { display:none; }
.custom #header #logo { display:none; }
.custom #header { height:80px; padding-top:0; padding-bottom:0px; background: url(images/logo.jpg) top left no-repeat;}
.custom #header { border-bottom: none;}

/* Feature box formattting */
.custom #feature_box { background: #FFFFFF; padding: 16px 36px 16px 36px; border-bottom:1px solid #DDDDDD; }

/* Feature box content */
.custom #feature_box_content { font-size: 1.4em; text-align:left; line-height:150%; }

/* Set links on sidebar with images and content
.custom #background { }
.custom #twitter-nl { width:32px; height:32px; background: url(images/twitter.jpg) no-repeat; padding-right:2px; padding-bottom:4px; float:left; cursor:pointer; }
.custom #facebook-nl { width:32px; height:32px; background: url(images/facebook.jpg) no-repeat; padding-right:2px; padding-bottom:4px; float:left; cursor:pointer; }
.custom #linkedin-nl { width:32px; height:32px; background: url(images/linkedin.jpg) no-repeat; padding-right:2px; padding-bottom:4px; float: left; cursor:pointer; }
.custom #flickr -nl{ width:32px; height:32px; background: url(images/flickr.jpg) no-repeat; padding-right:2px; padding-bottom:4px; float: left; cursor:pointer; }
.custom #dopplr-nl { width:32px; height:32px; background: url(images/dopplr.jpg) no-repeat; padding-right:2px; padding-bottom:4px; float: left; cursor:pointer; }
*/

/* Set links to a hover color to add a little interactin */
.custom a:hover { color:#f6882b; }
.custom .rsswidget { 
	color:#555555; 
	font-size:1em;
	line-height:1.385em;
	margin-bottom:0.692em;
	}