/*
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 #logo a { display: block; height: 130px; width: 907px; background: url('http://www.bluefinbasics.com/wp-content/uploadimages/bannerfinal.jpg') no-repeat; outline: none; }

/* This line gets rid of the site title & tagline by casting them out to far left field */
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }

/* This line collapses the vertical space of the tagline so that there isn't unnecessary white space after the header image */

/* This is a bit of a kludge, but it seems to work. */
.custom #header #tagline { height: 0; }

/* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header, and the sides of the content */
.custom #header { padding: 0; }

/* Changes bottom border under header */

.custom #header { border-style: solid; border-width: 0 0 0.1em; }

/* End bottom border change */

/* Adds background to sidebars and white background to content */
.custom #content_box {
background:transparent url(http://bluefinbasics.com/wp-content/uploadimages/bbgcontent.gif) repeat-y;
}

.custom #column_wrap { background: transparent none repeat-y scroll 0 0; }

/* End adding backgrounds */


/* Adds a bottom border under entire nav bar */

.custom .menu { border-bottom: 0.2em solid #ddd; background: #eaeaea; }

/* End bottom border */


/* Footer customization */
#footerlinks { text-align: center; margin: 0px 20px 0px 20px; }

#footercen { text-align: center; font-size: 80%; }

.custom #footer, #footer a { background: #eaeaea; color: #000; border-bottom: none; margin-bottom: 20px; }

/* End footer customization */

/* Removes padding from left sidebar */

.custom #sidebar_1 ul.sidebar_list {
padding: 0;
}

/* End removing padding from left sidebar */

.custom #sidebar_1 .WishListMember_Widget { padding: 10px 0px 10px; margin-bottom: 15px; background: #ededc8; border-bottom: 1px solid #ddd; position: relative; text-align: center; margin-top: -22px;}

.custom #sidebar_1 .ngg_images { padding: 0px 11px 0px; margin-bottom: 20px; width: 225px; }

.custom #sidebar_1 h2 { margin-bottom: 0.643em; font-family: Georgia,"Times New Roman",Times,serif; font-size: 1em; font-variant: small-caps; letter-spacing: 2px; font-weight: normal; color: #555; line-height: 1.286em; }

#wlmreginstructions {display:none;}

.custom.wishlist-member .headline_area {display:none;}

/* Begin Wishlist Member Registration Page Customization */

.custom.wishlist-member .headline_area { display:none;}

.custom.wishlist-member #wlmreginstructions { display:none;}

.custom.wishlist-member #comments { display:none;}

.custom.wishlist-member #content { text-align: center;}

.custom.wishlist-member .wpm_registration { width: 600px; }

.custom.wishlist-member .wpm_registration small { font-size:12px;}

.custom.wishlist-member .format_text input { width: 65%; }

.custom.wishlist-member #regbox { margin-left: 10px; border: 2px solid #ddd; background: #f8faff; margin-bottom: 30px; width: 675px;}

/* End Wishlist Member Registration Page Customization */

.custom .to_comments {display:none;}