/*------------------------------------------------------------------------------------------------*/

/* 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 */
}

/* 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: 60px !important;
  height: 60px;
  background-image: url("../images/koszyk-60.png");
  background-position: 0 0;
  text-indent: -999px; /* ukrywamy tekst */
  cursor: hand;
  overflow: hidden;
}

#productTable tr.product td.column-2 a:hover .button_buy_now {
  background-position: -60px 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;
}

/* blok z ceną i ikonką dodawania do koszyka */
#buyInfo {
  width: 75px;
  height: 75px;
  position: relative;
  float: right;
  top: -95px;
  margin-bottom: -75px;
  border: 0px solid #2FBF2F;
  background-image: url("../images/dodaj-do-koszyka-ramka.png");
  background-repeat: no-repeat;
}

#buyInfo:hover {
  background-position: -75px 0;
}

/* cena */
#buyInfo h2 {
  padding: 2px 0 0 0;
  margin: 0;
  border: none;
  text-align: center;
  font-size: 0.9em;
  font-family: sans-serif;
  font-variant: normal;
  color: #008000;
  font-weight: bold;
  height: 13px;
}

/* normalna cena (tylko przy aktywnej promocji) */
#buyInfo h2 .normalprice {
  position: relative;
  left: -120px;
  top: 130%;
  text-decoration: line-through;
  color: #8C8C8C;
  font-weight: normal;
}

/* cena promocyjna */
#buyInfo h2 .productSpecialPrice {
  display: block;
  position: relative;
  top: -100%;
}

/* ile oszczedzasz */
#buyInfo h2 .productPriceDiscount {
  display: block;
  position: relative;
  left: -120px;
  top: -70%;

}

/* dodawanie do koszyka */
#addToCart {
  width: 75px;
  height: 60px;
}

/* przycisk */
#addToCart .button_in_cart {
  border: none;
  display: block;
  width: 75px !important;
  height: 75px;
  font-size: 0; /* ukrywamy napis */
  padding: 0 0 0 74px !important; /* tu też (IE)*/
  cursor: hand;
  background-color: transparent;
  background-image: url("../images/koszyk-duzy.png");
  background-repeat: no-repeat;
  background-position: 0 15px;
  position: relative;
  top: -15px;

}

#addToCart .button_in_cart:hover,
#addToCart .button_in_cart:active {

}

/*------------------------------------------------------------------------------------------------*/