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

body.custom { background: #dee1e5 url('images/bg.png') repeat-x; }

	.custom #page { padding: 1em 1.9em 2em 1.9em; background: #fff; border: 0.1em solid #D0CEBF; border-top: 0; }
		
/* This line sets up our clickable background image based on the site title's link */
/* DIY: Adjust the height & width attributes to reflect the actual size of your image */
/* DIY: Change the filename of your image to reflect the actual header's file name */
.custom #header #logo a { display: block; height: 91px; width: 917px; background: url('images/header.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; border-bottom: none;}

/* Style the nav menu*/

/*This adds the image */
.custom ul#tabs {background: url('images/topnav_gradient.png') repeat-x; margin-top: 1.2em; border-top:none; border-right:none;border-left:none; border-bottom: 0.5em solid #93bb3a; }

.custom ul#tabs li { margin-bottom: -0.1em; background: transparent; border: none; border-left: 0; float: left; }

.custom ul#tabs li.current_page_item, ul#tabs li.current-cat { padding-bottom: 0.1em; background: transparent; border-bottom: 0; }

.custom ul#tabs li a {font-weight:bold; color:#fff; text-transform:none; letter-spacing:0px; font-size:14px; background:transparent;}

/* Change the color of the sidebar  - since sidebar doesn't go all the way to the bottom, this the workaround*/
.custom #content_box, .custom #sidebars {background:#f2f2f2;}
.custom #content {background:#fff;border-right-width: 1px;
border-right-style: solid;
border-right-color: #dddddd;}

.custom .headline_area h1, .headline_area h2 {margin-top:0.7em;}

/* This styles the all impotant yellow button */
.custom #mainbutton {margin: 30px 0 30px 0; display:block;}
.custom .button {font-size:16px; font-weight:bold; padding:6px 16px; background: #FC0 url(http://stickyoffers.com/wp-content/themes/thesis/custom/images/btn_mid.gif) repeat-x scroll left top; border-color:#FFDA47 rgb(165, 132, 0) rgb(165, 132, 0) rgb(255, 218, 71); border-style:solid; border-width:2px; color:#000; text-decoration:none}

.custom a.button:hover {background-image: url(http://stickyoffers.com/wp-content/themes/thesis/custom/images/btn_mid_hover.gif);}

/* Container for all contents above fold, including arrow and bottom border etc... */
#arrowbox {background: url(http://stickyoffers.com/wp-content/themes/thesis/custom/images/arrow.jpg) no-repeat right top; border-bottom: 1px dotted #999999; margin-bottom:2em; }
.arrow {padding-right:100px;}

.custom #video_box {background-color: #93bb3a; padding:0 0.5em 0.5em 0.5em;}

.custom .divnote
{
margin-bottom: 1.571em;
padding-top: 0.571em;
padding-right: 0.786em;
padding-bottom: 0.571em;
padding-left: 0.786em;
background-color: #f7f3e2;
border: 1px solid #ddce93;
}

.formbutton{
cursor:pointer;
border:outset 1px #ccc;
background:/*#93bb3a;*/ #FC0;
color:#000;
font-weight:bold;
margin-top:10px;
margin-bottom:20px;
padding: 5px 20px;
overflow: visible;
/*background:url(media/formbg.gif) repeat-x left top;*/
}

.sidebarfieldwhite {background-color:#fff;}