/*First the main style*/
a:visited {  color: #000000; text-decoration: none}
a:link {  color: #000000; text-decoration: none}
a:hover {  color: #000000; text-decoration: underline}
/*Now the cart style*/
  /*The cart table (positioning ...)*/
  table.cart
    {
    margin-top: 0;
    top: 0;
    }

  /*The cart header*/
  tr.cart_h
    {
    color: #000000;
    background-color: #AAAAAA;
    font-size: 12pt;
    font-weight: bold;
    font-family: hevetica;
    align: left
    }
  /*The cart product list*/
  tr.cart_l
    {
    color: #000000;
    background-color: #CDCDCD;
    font-size: 12pt;
    font-family: hevetica;
    align: right
    }
/*End of the cart style*/

/*Now the products display table*/

  /*The default table setup*/
  table.product
    {
    color: #000000;
    background-color: #FFFFFF;
    font-size: 12pt;
    font-weight: bold;
    font-family: arial;
    width: 200;
    align: left
    }

  /*The header setup*/
  tr.product_t
    {
    color: #000000;
    background-color: #336699;
    font-size: 12pt;
    font-weight: bold;
    font-family: arial;
    align: left
    }

  /*The main setup*/
  tr.product
    {
    color: #000000;
    background-color: #919191;
    font-size: 12pt;
    font-weight: normal;
    font-family: arial;
    align: left
    }
