/* wrapper listy produktow (w widoku kategorii oraz wynikach wyszukiwania */
#productListing {

}

/*-------------------------------------------------
  SORTOWANIE (MINI-FORMULARZ)
---------------------------------------------------*/

#sorter {
  overflow: hidden;
  margin-bottom: 20px;
}

#sorter label {
  display: block;
    float: left;
}

#sorter form {
  display: block;
  float: left;
  width: 50%;
}

#sorter form select {
  padding: 0;
  margin-left: 10px;
}

/*----------------------------------------------------------
  TABELA PRODUKTOW
-----------------------------------------------------------*/

#productTable {
  margin: 20px 0;
  width: 100%;
}

/*-----------------------------------------
  NAGLOWEK TABELI PRODUKTOW
------------------------------------------*/

/* wiersz naglowka ("obrazek", "nazwa", "cena") */
#productTable tr.heading th {
  border-bottom-width: 1px;
}

/* komorka naglowka - "obrazek" */
#productTable tr.heading th.column-0 {
  text-align: right;
  color: #FFFFFF;
  font-size: 0;
}

/* komorka naglowka - "nazwa" */
#productTable tr.heading th.column-1 {

}

/* komorka naglowka - "cena" */
#productTable tr.heading th.column-2 {
white-space: nowrap;
}

/* strzalki sortowania */
#productTable tr.heading th span {
  margin-left: 5px;
  display: inline-block;
  width: 18px;
  height: 11px;
  line-height: 11px;
  text-indent: -999px;
  overflow: hidden;
  background-image: url("../images/listing_sort_arrows.png");
  margin-bottom: -1px;
}

#productTable tr.heading th span.sortAscending {
  background-position: 18px 0;
}

#productTable tr.heading th a:hover span.sortAscending {
  background-position: 0 11px;
}

#productTable tr.heading th span.sortDescending {
  background-position: 0 0;
}

#productTable tr.heading th a:hover span.sortDescending {
  background-position: 18px 11px;
}


/*-------------------------------------------------
  WIERSZ PRODUKTU
------------------------*/

/* wiersz produktu */
#productTable tr.product, {

}

/* komorka z obrazkiem */
#productTable tr.product td.column-0 {
  text-align: right;
  padding: 15px 0 15px 0;
}

/* komorka z tytulem i opisem */
#productTable tr.product td.column-1 {
  padding: 15px 20px 15px 20px;
}

/* komorka z cena */
#productTable tr.product td.column-2 {
  width: 60px;
  text-align: center;
}

/*----------------------------------------------------------
  DRUGA KOLUMNA (TYTUL, OPIS)
---------------------------------------------------------*/

/* tytul */
#productTable tr.product td.column-1 h3 {
  text-align: center;
  font-family: "Times New Roman", serif;
  font-variant: small-caps;
  font-size: 1.15em;
}

/* opis */
#productTable tr.product td.column-1 div.listingDescription {
  text-align: left;
  margin: 10px 0 15px 0;
  font-style: italic;
}

/* etykietka "Autor:" */
#productTable tr.product td.column-1 span.bk_label {
  display: none;
}

/* autor */
#productTable tr.product td.column-1 span.authorsNamesProdList {
  display: none;
}

/* ISBN */
#productTable tr.product td.column-1 div.isbnmargin {
  display: none;
}

/*------------------------------------------------------------------
  TRZECIA KOLUMNA (CENA + DODAJ DO KOSZYKA)
------------------------------------------------------------------*/

/* cena (wlasciwie cala kolumna, bo nie ma osobnego znacznika dla ceny) */
#productTable tr.product td.column-2 {
  color: #7F7F7F;
  font-size: 0.9em;
  font-family: Georgia, serif;
}

/* znaczniki nowej linii miedzy cena a linkiem */
#productTable tr.product td.column-2 br {
  display: none; /* niepotrzebne - ukrywamy */
}

#productTable tr.product td.column-2 span.productPriceDiscount br {
  display: block;
}

/* dodaj do koszyka/wiecej informacji - odnosnik */
#productTable tr.product td.column-2 a {
  display: block;
  text-align: center;
}

/* dodaj do koszyka */
#productTable tr.product td.column-2 a .button_buy_now {
  margin-top: 15px;
  display: block;
  width: 64px !important;
  height: 60px;
  background-image: url("../images/do_miski.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  text-indent: -999px; /* ukrywamy tekst */
  cursor: pointer;
  overflow: hidden;
}

#productTable tr.product td.column-2 a:hover .button_buy_now {  background-position: 0 0; } 

/*------------------------------------------------------------
  STRONA PRODUKTU (czesc jest tez "product_info.css" i "product_book_info.css")
---------------------------------------------------------------*/

/* nawigacja (dalej, wstecz, do gory) - wrapper */
#content #productNavigation {
  list-style: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  margin-bottom: 10px;
  position: relative;
  top: -10px;
}

#productNavigation li {
  float: left;
}

/* wstecz */
#productNavigation li.back {
  width: 25%;
  text-align: left;
}

/* do gory */
#productNavigation li.up {
  width: 50%;
  text-align: center;
}

/* dalej */
#productNavigation li.forward {
  width: 24%;
  text-align: right;
  float: right;
}

/* strzalki */
#productNavigation li.back span,
#productNavigation li.forward span {

}


/*--------------------------------------------------------------*/

/* wrapper dla okladki i infomarcji - naprawia problem z floatami w IE */
#topWrapper {
  padding-bottom: 95px;
}



/*------------------------------------------------------------------------------------------------*/
