/*
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 { background: #e8b36d url('images/cb-bg.jpg') center repeat-y; } 
#header { border: none; padding: 0; }
#header #logo a { display: block; height: 160px; width: 900px; background: url('images/cb-logo.jpg') top left no-repeat; outline: none; }
#header #logo, .custom #header #tagline { text-indent: -9999px; }
#header #tagline { height: 0; }

.custom ul#tabs { border: none; margin: 0 0 10px 40px; }
.custom ul#tabs li { border: none; background: 0; margin: 0 10px; padding: 0; }
.custom ul#tabs li a, .custom ul.childpages li a { padding: 5px 0; border-bottom: solid 3px #FFFFFF; }
.custom ul#tabs li a:hover, .custom ul.childpages li a:hover { border-bottom: solid 3px #00AA4F; text-decoration: none; }
.custom ul#tabs li.current_page_item a, .custom ul.childpages li.current_page_item a { border: none; border-bottom: solid 3px #EF3945; }
.custom ul#tabs li.rss { display: none; }

.custom ul.childpages { list-style-type: none; text-transform: uppercase; margin: 0 0 0 50px; }
.custom ul.childpages li { display: block; margin: 0 10px 15px; }
.cptitle { text-transform: none; }

.custom #feature_box { background: none; border: none; }

.custom #content_box { background: none; }
.custom #content p, .custom #content h2, .custom #content h1 { padding-left: 40px; }
.custom #content ul { padding-left: 50px; }
.custom #content ul ul { padding-left: 10px; }
.custom #content blockquote { margin-left: 50px; border: none; }
.custom #content blockquote blockquote { margin-left: 15px; }
.custom #content blockquote p { padding: 0; }

.custom #sidebars img { display: block; padding: 0.1em; background: #fff; border: 0.1em solid #bbb; width: 250px; margin: 0 0 10px; }

.custom #sidebars { padding-top: 75px; }

.custom #multimedia_box, .custom #image_box { border: none; background: none; }

.custom #footer { border-top: double #00AA4F; margin: 20px auto 5px; width: 700px; text-align: center; padding: 20px 0; }

h3.product_list_title { padding-left: 50px; }
.product_list { border: solid 1px #CCC; margin: 0 0 10px 50px; font-family: Arial, Verdana, Sans-Serif; font-size: 9pt; width: 425px; }
.product_list .header_row { background: #CCCCCC; }
.product_list th, .product_list td { text-align: left; vertical-align: top; padding: 3px; }
.product_list .item_row td { font-family: monospace; }
.product_list .item_row .wgt { width: 55px; }
.product_list .item_row .pk { width: 35px; }
.product_list .item_row .upc { font-weight: bold; width: 85px;}
.product_list .item_row .item { padding: 3px 5px; }
.product_list .alt { background: #ededed; }

.linklove { display: none; }

#comment { margin: 0 0 10px 0; }

p.allowed { display: none; }
.headline_meta { display: none; }
