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

/* Global */
.custom a:hover { color: c00; text-decoration: underline; }
.custom h2, .custom h2 a {font-weight: 700; font-size: 20px; color: #333333;}

/*	WordPress image captioning */
.custom .format_text .alignleft { margin: 0 1.571em 1.571em 0; float: left; clear: left; }
.custom .format_text .alignright { margin: 0 0 1.571em 1.571em; float: right; clear: right; }
.custom .format_text .aligncenter { display: block; margin: 0 auto 1.571em auto; float: none; clear: both; }
.custom .format_text .alignnone { display: block; margin: 0 auto 1.571em 0; clear: both; }
.custom .format_text .wp-caption { background-color: #F3F3F3; border: 0.071em solid #CCC; text-align: center; padding: 0.714em; }
.custom .format_text .wp-caption p { font-size: 0.786em; margin-bottom: 0; }

/* Header */


	/* Rotating Header Images */
	.custom #header {padding:0; background:#fff; text-align:left; border: none;}
	.custom #header p#logo, .custom #header h1 {font-size: 32px; margin-left: 5px;}
	.custom #tagline {margin-bottom: 20px; margin-left: 5px; font-family: Verdana,serif; color: #999999; }
	.custom #header img {border:10px solid #EEEEEE; position: relative; bottom: 0;}
	
	/* RSS Subscribe */
	.custom #rss_subscribe {
		background: url('http://superbon.net/wp-content/themes/thesis_185/custom/images/icon_rss.gif') no-repeat;
		float: right;
		height: 40px;
		width: 40px;
		position:  relative;
		top: 10px;
		right:  10px;
}

/* Content Box */
.custom #content_box {
	margin-top: 20px;
}

	/* Sidebars  */
	
	/* Navigation */
	
		/* Convert Sideber Widget Titles to Neoclassical */
		
		.custom li.widget h3 {
			color: #111111;
			border-bottom:1px solid #DDDDDD;
			border-top:0 none;
			font-size: 10px;
			letter-spacing:2px;
			line-height:1.9em;
			font-weight: 700;
			margin:0 0 0.9em;
			margin-bottom: 1em;
			padding:0;
			text-transform:uppercase;
			font-variant: normal;
		}
		
		/* Custom Styling for Vertical Nav Menu in Sidebar */
	
		.custom ul#tabs li {
			font-family: Verdana,serif;
			display: block;
			float: none;
			border: none;
			background: none;
			padding: none;
			
		}
		
		.custom ul#tabs, ul#tabs li a, ul#tabs li a:visited {
			font-family: Verdana,serif;
			font-size:  12px;
			padding: 0;
			letter-spacing: 0;
			font-style: normal;
			font-variant:  normal;
			font-weight: normal;
			line-height: 2em;
			font-size-adjust: none; 
			color: #237fa1; 
			text-decoration: none; 
			border: none; 
			text-transform: none;
		
		}
		
		/* Hide Surplus Subscription Link */
		ul#tabs li.rss {
		display: none;
}
		
		/* Fix Fonts in Sidebar Widgets */
		
		li.widget {
			font-size:  12px;
		}
		
		li.widget h3 {
			font-family: Georgia,"Times New Roman",Times,serif;
			padding: 0;
			letter-spacing: 0;
			font-style: normal;
			font-variant:  normal;
			font-weight: normal;
			font-size-adjust: none; 
			color: #237fa1; 
			text-decoration: none; 
			border: none; 
			text-transform: none;
		}
		
		.sidebar ul.sidebar_list, ul.sidebar_list {
			font-family: Verdana,serif;
			font-size:  12px;
			padding-top:  0;
		}
		
		.custom ul#tabs li a:hover {
			color: #c00; text-decoration: underline;
		
		}
	
		.custom li.widget a:hover { 
			color: #c00; text-decoration: underline;
		}
		
	/* Content */
	
		.post_box {
			padding-top:  1em; 
		}
	


		/* Content Font Changes */
		.custom h1.entry-title, .custom h2.entry-title, .custom h2.entry-title a {
			font-size: 18px;
			color:  #333333;
			font-weight: 700;
		}
	
			/* Comments */
			
			div.comments_intro {
				background: url('http://superbon.net/wp-content/themes/thesis_185/custom/images/icon_comment.gif') no-repeat scroll 0 50%;
				padding: 0 0 0 14px;
		}
	
			div.comments_intro span, div.comments_intro p{
				font-family: Verdana,serif;
				font-size: 12px;
				color: #333333;
		}
			
			/* Hide Thesis Brackets */
			span.bracket {
				display:  none;
			}
	
		/* Neoclassical Byline After Post */
		.custom_byline {
			background:transparent url(http://superbon.net/wp-content/themes/thesis_185/custom/images/icon_date.gif) no-repeat scroll 0 50%;
			padding:0 0 0 14px;
			color: #999999;
			font-family: Verdana,serif;
			font-size: 11px;
			font-weight:  400;
		}
		
		.custom_byline .num_comments{
			background:transparent url(http://superbon.net/wp-content/themes/thesis_185/custom/images/icon_comment.gif) no-repeat scroll 0 50%;
			padding:0 0 0 14px;
			margin-left: 10px;
		}
	
