/*
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{ background:#f5f5f5; }
.custom #container{ background:#fff; border-left:1px solid #ddd; border-right:1px solid #ddd; }
.custom #logo{ background:url('images/nutrinexus-logo.jpg') no-repeat; height:52px; text-indent:-9999px; width:206px; }
.custom #header{ background:url('images/nutrinexus-people.jpg') no-repeat; border-bottom:none; padding:131px 0 15px; }
.custom #tabs{ font-size:125%; font-weight:bold; }
.custom #tabs a{ color:#264983; }
.custom #page .headline_area{ display:none; }
.custom .comments_closed{ display:none; }
.custom .comment_time{ display:none; }
.custom .comment .format_text{ color:#555; font-style:italic; }

.custom h3#home-top-header{ font-size:175%; margin-top:0; }
.custom #home-product{ border:3px solid #529C3D; padding:20px 20px 0; }
.custom .addtocart{ background:url('images/add-to-cart.gif') no-repeat; border:none; cursor:pointer; height:30px; font-size:0; line-height:0; margin:.5em 0; text-indent:-9999px; width:147px; }
.custom input, .custom button, .custom select{ background:#fff; border:none; width:auto; }
.custom #shopp form.product p{ vertical-align:middle; }

.shop #shopp form.product{ display:none; }
.custom.shop #paypal-addtocart input{ background:none; border:none; }
.custom #cart{ font-size:85%; }
.custom #cart big a{ color:#888; float:left; font-size:75%; }
.custom #cart big a.right{ color:red; float:left; font-size:93%; padding:3px; }
.custom #cart big a.right:hover{ background:red; color:#fff; }
.custom .savings{ color:red; }
.custom #shopp.list ul.products li.product{ border:6px solid #f5f5f5; padding:0; }
.custom #shopp.list ul.products li.product .frame{ border:1px solid #ddd; width:auto; }
.custom #shopp.list ul.products li.product .frame img{ border:1px solid #ddd; padding:5px; }
.custom #shopp.list ul.products li.product .frame #paypal-addtocart img{ border:none; }
.custom #shopp.list ul.products li.product .details{ width:70%; }
.custom #shopp.product .gallery{ float:right; margin:5px 0 5px 10px; }

.custom .sidebar h3{ font-size:125%; font-weight:bold; text-transform:uppercase; }
.custom .sidebar #shopp-cart{ background:#f5f5f5; border:1px dashed #999; }
.custom .sidebar #shopp-cart h3, .custom .sidebar #shopp-cart p{ padding:10px; }
.custom .sidebar #shopp-cart a{ color:#555; }

.custom .subscribe{ border:5px solid #f5f5f5; margin:0 0 10px; padding:10px; }

.custom a{ color:#529C3D; }
.custom .aligncenter{ text-align:center; }
.custom .alignright{ text-align:right; }
.custom .alignleft{ text-align:left; }




.custom .original.price{ display:none; }

