/*

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 Header - Clickable Image Banner */



.custom #header #logo a { display: block; height: 100px; width: 416px; background: url('images/header.gif') no-repeat; outline: none; }

.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }

.custom #header #tagline { height: 0; }

.custom #header { padding: 15px 0px 15px 0px;}



/* Custom Search Form in Header */

.custom #s { font-size:10pt; position:relative; float:right; margin:-3.5em 2em 3em 4em; background:#9f9f9f; color:#fff; padding:0.5em 5em 0.5em 0.5em; width:200px; } .custom widget thesis_widget_search { background:#fff; }



/* Custom Nav Bar Background Strip */

.custom .menu {background:#464646;}



/* Custom Nav Bar Tab Margin */

.custom .menu .tab { margin-right: 5px; }



/* Custom Sidebar Padding to Right Side of Page */

 .custom .sidebar ul.sidebar_list {padding-right:3em;}



/* Custom Bold Headlines on Teasers */

.custom h2 {font-weight: bold;}



/* Custom Bold Headlines on Single Post */

.custom h1 {font-weight: bold;}



/* Custom Comment Box Color */

.custom #comment_list { background: #f5f5f5; }

.custom #comment_list .bypostauthor {background: #eeeeee; border-right: 3px dashed #4d63e1; }



/* Custom Comment Submit Button Hover Color */

.custom input.form_submit:hover {color:#4d63e1;}



/* Custom Full Length Sidebar Background */

.custom #content_box {background: url('images/content-bg.gif') center top repeat-y;}



/* Custom Content Width */

.custom #content { width: 50em; }

.custom .teaser .format_teaser { width: 50em; }



/* Custom Content Box Top Border Line */

.custom #content_box { border-top: 0.2em dotted #464646; }

/* Subscribe-Box Styling */

.custom #subscribebox, .custom .box {
        width: 23em;
	background-color: #eeeeff;
	padding: 4px 8px;
	font-size: 14px;
	border: 1px solid #999;
	margin-top: 6px;
	margin-left: 8px; }

/* Custom Text Styling for Subscribe Box Footer */

.custom .subcribe-box-footer-text {font-size: 0.8em;color: #666;}


