/* CSS For Product Scroller */
/* 
    root element for the scrollable. 
    when scrolling occurs this element stays still. 
*/ 

#product_scroll_outer {
  border: 1px solid #d2d6d9;
  margin: 10px 0 10px 10px;
  background-color: #ffffff;
}

.main_image_holder {
  border: 1px solid #d2d6d9;
  background-color: #ffffff;
}

div.scrollable { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
} 
 
/* 
    root element for scrollable items. Must be absolutely positioned 
    and it should have a extremely large width to accomodate scrollable items. 
    it's enough that you set width and height for the root element and 
    not for this element. 
*/ 
div.scrollable div.items { 
    /* this cannot be too large */ 
    width:200000em; 
    position:absolute; 
    top: 0;
    left: 0;
} 
 
/* 
    a single item. must be floated in horizontal scrolling. 
    typically, this element is the one that *you* will style 
    the most. 
*/ 
div.scrollable div.items div { 
    float:left; 
} 
 
/* you may want to setup some decorations to active the item */ 
div.items div.active { 
    border:1px inset #ccc; 
    background-color:#fff; 
}

#product_scroll_previous {
  background: url('images/slider_left.jpg') center center no-repeat;
  width: 15px;
  float: left;
  display: block;
}

#product_scroll_next {
  background: url('images/slider_right.jpg') center center no-repeat;
  width: 15px;
  float: right;
  display: block;
}

.scrolling_product {
  margin-right: 5px;
}


.scrolling_product, .scrolling_product a {
  color: #000;
  text-decoration: none;
}

.scrolling_product a:hover {
  text-decoration: underline;
}

/* CSS For Product Scroller EOF */

/* Ajax Add to Cart */
#ajax_announce {
  position:fixed;
  bottom:-140px;
  right:0;
  width: 350px;
  height: 130px;
  background: url('images/ajax_announce_bg.png') no-repeat;
  text-align: center;
  color: #fff;
}

#ajax_announce a {
  color: #fff;
}

.ajax_announce_header {
  font-weight: bold;
  margin-top: 10px;
  font-size: 11px;
}

.ajax_announce_separ {
  height: 12px;
  border-bottom: 1px solid #eee;
  margin: 0 10px 12px 10px;
}

#ajax_announce_checkout_link {
  float: left;
  width: 150px;
  margin-left: 20px;
}

#ajax_announce_continue_link {
  float: right;
  width: 150px;
  margin-right: 20px;
}

/* Ajax Add to Cart EOF */

/*** Begin Header Tags SEO ***/
h1 {
 font-family: Verdana, Arial, sans-serif;
 font-size: 20px;
 font-weight: bold;
 margin-bottom: 0;
 padding-bottom: 0;
 color: #000;
}

h2 {
 font-family: Verdana, Arial, sans-serif;
 font-size: 14px;
 font-weight: normal;
 margin-bottom: 0;
 padding-bottom: 0;
 color: #000;
}
/*** End Header Tags SEO ***/