/*
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/
*/
title_area { background: none; padding: 1em 0 0.5em; border-bottom: none; }
.custom #header { border-bottom: none; height: 121px; padding-top: 0; padding-bottom: 0; margin-right: 5px; background: url('/wp-content/themes/thesis_16/custom/images/blog images/masthead.jpg') top left no-repeat; } 
remove_action('thesis_hook_before_header','thesis_nav_menu');remove_action('thesis_hook_header','thesis_default_header');function full_width_header() { ?><div id="nav_area" class="full_width'><div class="page"><?php thesis_nav_menu(); ?></div></div><div id="title_area" class="full_width"><div class="page"><div id="header'><?php thesis_default_header(); ?></div></div></div><?php}add_action('thesis_hook_before_html', 'full_width_header');
.custom #title_area { background: none; padding: 1em 0 0.5em; border-bottom: none; }
.custom #header { border-bottom: none; height: 121px; padding-top: 0; padding-bottom: 0; margin-right: 25px; background: url('/wp-content/themes/thesis_16/custom/images/blog images/masthead.jpg') top right no-repeat; } 
function custom_search_widget() { ?>
<div class="widget widget_search">
	<form method="get" class="search_form" action="<?php bloginfo('home'); ?>/">
		<p>
			<input class="text_input" type="text" value="Enter search..." name="s" id="s" />
			<input type="submit" id="searchsubmit" value="Search" />
		</p>
	</form>
</div>
<?php } 

add_action('thesis_hook_header' , 'custom_search_widget');
widget_search {
	float: right;
	width: 200px;
}
.search_form .text_input {
	font-size: 11px;
	padding: 5px;
}

.search_form #searchsubmit {
	font-size: 11px;
	padding: 4px;
}















