﻿/* ------------------- */
/*       COMMONS       */

/* two columns */
.two-columns{ 
  display: block;
  overflow: hidden; 
  width: 100%;
}

.two-columns .left {
  float: left;
  width: 50%;
}

.two-columns .right {
  float: right;
  width: 50%;
}

.two-columns .left .inner { 
  border-right: 1px solid #EEE; 
  padding: 0 40px 0 0;
}

.two-columns .right .inner {
  padding: 0 0 0 40px;
}

/* two columns 2 */
.two-columns2{ 
  display: block;
  overflow: hidden; 
  width: 500px;
}

.two-columns2 .left {
  float: left;
  width: 250px;
}

.two-columns2 .right {
  float: right;
  width: 250px;
}


/* columns */
.column {
  float: left;
  width: 50%;
}

/* ------------------- */
/*     CATEGORIES      */


#categories li { 
  display: block;
  height: 35px; 
  margin: 4px 0 0 0;
}

#categories li a 
{
  background: transparent url('/images/menu-item.gif') right top;
  display: block;
  height: 35px;
  padding: 0 35px 0 0;
  text-decoration: none;
  text-transform: uppercase;
}

#categories li a strong 
{ 
  background: #FFF url('/images/menu-item.gif') left top;
  color: #222;
  cursor: pointer;
  display: block;
  float: left;
  font-size: 11px;
  font-family: Arial,sans;
  font-weight: normal;
  height: 35px;
  line-height: 35px;
  padding: 0 8px;
  width: 215px;
}

#categories li.selected {
  position: relative;
}

#categories li.selected a strong 
{
  background: #FFF url('/images/menu-item.gif') left -35px;
  color: #0b6e9d;
}

#categories li .submenu {
  background: transparent url('/images/submenu.gif') no-repeat left top;
  position: absolute;
  left: 229px;
  
  /* opacity */
  filter: alpha(opacity=90);
	-moz-opacity: 0.90;
	-khtml-opacity: 0.90;
	opacity: 0.90;

  top: 2px;  
  width: 270px;
  z-index: 99;
}

#categories li .submenu li { 
  height: 29px; 
  margin: 0;
}

#categories li .submenu li.last 
{
  background: transparent url('/images/submenu.gif') no-repeat left bottom; 
  font-size: 0;
  height: 35px;
  width: 270px;
}

#categories li .submenu li a { 
  background: transparent;
  color: #222;
  font-family: Arial,sans;
  font-size: 11px;
  padding: 0 15px;
  line-height: 35px;
  margin: 0;
}

#categories li .submenu li a:hover { 
  color: #0b6e9d; 
  font-weight: bold;
}

/* ------------------- */
/*      ITEM BOX       */

#content #product-list li {
  display: inline;
  float: left;
  margin: 0 20px 20px 0;
  text-decoration: none;
  width: 260px;
}

#content #product-list li.active .item-box { cursor: pointer; }

#content #product-list li .item-box .top,
#content #product-list li .item-box .bottom {
  display: block;
  height: 4px;
  width: 100%;
}

#content #product-list li .item-box  .top { background: transparent url('/images/sprites/item-box.gif') no-repeat left top; }
#content #product-list li .item-box  .bottom { background: transparent url('/images/sprites/item-box.gif') no-repeat left -4px; }
#content #product-list li.active .item-box  .top { background: transparent url('/images/sprites/item-box.gif') no-repeat left -8px; }
#content #product-list li.active .item-box  .bottom { background: transparent url('/images/sprites/item-box.gif') no-repeat left -12px; }

#content #product-list li .item-box .middle {
  background: transparent url('/images/sprites/item-bg.gif') repeat-y left top;
  display: block;
  font-size: 11px;
  overflow: hidden;
  width: 100%;
}

#content #product-list li.active .item-box  .middle { background: transparent url('/images/sprites/item-bg-hover.gif') repeat-y left top; }

#content #product-list  li .item-box .middle  br { display: none; }

#content #product-list  li .item-box .middle .product-image {
  background: #FFF;
  display: block;
  margin: 4px 8px 12px 8px;
  padding: 10px;
  text-align: center;
  text-decoration: none;
}

#content #product-list li .item-box .middle .product-image span {
  display: block;
  margin: 10px 0 0 0;
  text-decoration: underline;
}

#content #product-list  li .item-box .middle .product-data {
  color: #444;
  line-height: 16px;
  margin: 0 8px 6px 8px;
  overflow: hidden;
}

#content #product-list li .item-box .middle .product-data br { display: inline; }

#content #product-list li .item-box .middle .product-data .product-name {
  font-size: 13px;
  line-height: 20px;
}

#content #product-list li .item-box .middle .product-data small { font-size: 10px; }

/* ------------------- */
/*        TABS         */
#content #tab-control #tabs { 
  border-bottom: 2px solid #DDD; 
  padding: 6px;
  margin: 30px 0 0 0;
}

#content #tab-control #tabs li {  
  display: inline;
  margin: 0;
}

#content #tab-control #tabs li a,
#content #tab-control #tabs li span {
  background: #EEE;
  color: #777;
  padding: 7px 21px 4px 21px;
  text-decoration: none;
}

#content #tab-control #tabs li.active { background: #FFF; border-bottom: 1px solid #FFF; }

#content #tab-control #tabs li.active a,
#content #tab-control #tabs li.active span {  
  background: white;
  border-bottom: 1px solid white;
  border-left: 2px solid #DDD;
  border-right: 2px solid #DDD;
  border-top: 2px solid #DDD;
  color: #444;
  padding-bottom: 8px;
  padding-top: 7px;
  position: relative;
  top: 1px;
  z-index: 1;
}

#content #tab-control p {
  margin: 20px 8px;
  z-index: 0;
}

#content #tab-control .tab-content {
  background: #FFF;
  border-bottom: 2px solid #DDD;
  border-left: 2px solid #DDD;
  border-right: 2px solid #DDD;
  padding: 16px 12px 8px 12px;
  margin: 0 0 15px 0;
}

/* ------------------- */
/*    SEARCH-MENU      */
#content .error,
#content .warning,
#content .info  {
  display: block;
  padding: 4px 15px;
  margin: 0 0 10px 0;
}

#content .error {
  background: #ff4141 ;
  border: 2px solid #F33636;
  color: #FFF;
}

#content .warning {
  background: #FFEF39 ;
  border: 2px solid #F9EA3F;
  color: #222;
}

#content .info{
  background: #baff43;
  border: 2px solid #aaf22c;
  color: #222;
}

#content #search-menu {
  background: #FAFAFA;
  border: 1px solid #EAEAEA;  
  overflow: hidden;
  padding: 10px 20px;
}

#content #search-menu .form-field { 
  float: left;
  margin: 0 10px 10px 0;
}

#content #search-menu .form-field input { 
  margin: 2px 0 0 0;
  padding: 4px 6px;
  width: 500px; 
}

#content #search-menu .form-field select {
  margin: 2px 0 0 0;
  padding: 4px 6px; 
  width: 250px; 
}

/* ------------------- */
/*     GOOGLE MAP      */

#map {
  border: 3px solid #EEE;
  height: 306px;
  margin: 0 auto;
  width: 506px;   
}

/* ------------------- */
/*    NEWS MODULE      */
#content #news-module h3 { margin: 0; }

#content #news-module small {
  color: #777;
  font-size: 11px;
}

#content #news-module .news-content { margin: 8px 0 30px 0; }

/* ------------------- */
/*        LOGIN        */
#login table { margin: 0 auto; }