/*
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/
*/

/*
added by JJR to display a custom header image - non-clickable at this point
*/
.custom #header { border-bottom:none;
height:162px;
padding-top:0;
padding-bottom:0;
background:url('http://colormetrix.com/wp-content/themes/thesis_16/custom/images/cm-new-banner-162.png')
center left no-repeat; }

/*
These next two lines turn off the site name and tag line.
*/
.custom #header #logo { display:none; }
.custom #header #tagline { display:none; }

/*
added by JJR to modify behavior of Shopp e-commerce plugin
*/
#shopp .addtocart { width: 35%; }
#shopp .update-button { width: 135px; }
#shopp #shipping-methods input { width: 10%; margin-left: -16px; }
#shopp ul.paging li { width: 100%; }
#shopp form ul li input, #shopp form ul li select { width:125px; }
#shipping-postcode { width: 50px !important; }
#billing-card { width: 135px !important; }
#billing-cardexpires-mm { width: 25px !important; }
#billing-cardexpires-yy { width: 25px !important; }
#billing-cvv { width: 50px !important; }
#shopp #cart big a.right { color: green; }
#shopp .addtocart { color: green; }
#checkout-button { color: green; }
#confirm-button { color: green; }


/*
added by JJR to modify behavior of Shopp e-commerce plugin
*/
.custom #sidebar_1 {background:#EFEFEF; }
.custom #sidebar_2 {background:#EFEFEF; }

/*
my custom alert boxes at the top of pages
*/
.custom div.welcome_box {
width: 90%;
padding: 0.571em 0.786em;
margin-left: 1em;
margin-right: 1em;
margin-bottom: 1em;
margin-top: 1em;
padding-bottom: 0em;
}

/*
Adds follow me buttons to layout
*/
.custom #feedback { background: transparent; width: 3.2em; position: fixed; top: 40%; left: .25% }
.custom #feedback a { display: block; text-indent: -9999px; height: 3.2em;}
.custom #feedback #twitter { background: url('http://ColorMetrix.com/wp-content/themes/thesis_16/custom/custom_images/twittericon.png') no-repeat 0 -3.2em; }
.custom #feedback #twitter:hover { background-position: 0 0; }
.custom #feedback #rss { background: url('http://ColorMetrix.com/wp-content/themes/thesis_16/custom/custom_images/rssicon.png') no-repeat 0 -3.2em; }
.custom #feedback #rss:hover { background-position: 0 0; }




