/*
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: #000; }	<--- 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:#A61111 url('images/main_bg.png') repeat-x;
}


.custom #page {
    background: url('images/page_bg.png') repeat-y;
    width: 977px;
}

.custom #container { margin-top: 2em;}

.custom #header {border-bottom:none;
height:170px;
width:962px;
background: url('images/header.png')center no-repeat;
padding:0 0 0 14px;}

.custom .format_text {font-size:1.5em; line-height:1.467em; padding:0 30px 0 30px;}
.custom #header #logo {display:none}
.custom #header #tagline {display:none}
.custom #nav_area { background:url('images/nav_bg.png') repeat-x; height: 45px; }
.custom .menu { background:url('images/nav_bg.png') repeat-x; padding-top: 8px; height:45px;}
.custom .menu a, .menu li ul {background: transparent;}
.custom ul#tabs {border-bottom:0; height: 15px;}
.custom ul#tabs li {background: transparent;}
.custom ul#tabs li.current_page_item, .custom ul#tabs li.current-cat {background: transparent;}
.custom .current a, .menu .current a:hover, .menu .current-cat a, .menu .current-cat a:hover {background:transparent; color:#FFF;}
.custom .menu a:hover {background: transparent;}
.custom .headline_area h2 {display: none;}
.custom .headline_area h1, .headline_area h2 { font-size:2.2em; line-height:1.364em; padding:20px 0 0 30px;}
.custom #footer_area, #footer{ background:url('images/nav_bg.png') repeat-x;  }
.custom.home .headline_area {margin-bottom:.5em;}
.post_box {padding-top:.5em;}
.custom .format_text p.note {margin-bottom: .5em;}

.custom .sidebar ul.sidebar_list {padding-right:4em;}
.custom .custom .sidebar ul.sidebar_list {
padding-right:4em;
}

#order-contain {
  margin: -40px 10px 20px 40px;
}

#cart .cart-heading {
  padding:5px 10px;
  margin:0;
}

#cart li {
  list-style:none;
}

#cart .item {
  width:65px;
  padding-left:15px;
}

#cart .description {
  width:350px;
}

#cart .quantity {
  width:100px;
  padding-left:15px;
}

#cart .bottle {
  padding:8px 0 3px 15px;
  border-right:1px solid #a4a4a4;
}

#cart .descpt {
  font-weight:bold;
  padding:16px 10px 16px 10px;
  font-size:13px;
  border-right:1px solid #a4a4a4;
}

#cart .qty {
  padding:18px 0 18px 10px;
}

#cart .qty input {
  height:21px;
  width:74px;
  margin:0;
  font-size:16px;
}

#cart .qty img {
  float:right;
  cursor:pointer;
}

#cart .qty #down {
  margin:11px -21px 0 0;
}

#cart h4 {
  font-size:14px;
}

#cart li ul li {
  float:left;
}

#cart #cart-sub {
  background-color:#f3f3f3;
  height:62px;
  border-top:1px solid #a4a4a4;
  border-bottom:1px solid #a4a4a4;
}

#total {
  float:right;
  font-size:16px;
  font-weight:bold;
  margin-top:10px;
}

#order-contain .billingandshipping {
  font-size:16px;
  font-weight:bold;
}

#billing-left {
  float:left;
  width:320px;
  margin:20px 0;
}

#billing-left li {
  list-style:none;
}

#billing-left li ul li {
  float:left;
  margin:5px 0;
  font-size:12px;
}

#billing-left input {
  width:200px;
}

#billing-left textarea {
  width:200px;
}

#billing-left li ul .setw {
  width:60px;
}

#billing-right {
  float:left;
  margin:20px 0;
}

#billing-right li {
  list-style:none;
}

#billing-right li ul li {
  float:left;
  margin:5px 0;
  font-size:12px;
}

#billing-right li ul .setw {
  width:80px;
}

.error {
  border:1px solid #c00;
  color:#c00;
  padding:2px 5px;
  margin-top:5px;
}

.clearboth {
  clear:both;
}

