@charset "utf-8";
/* CSS Document */

/*  Use with CustomStyles2 */
/* Switch shop to CustomStyles to edit */
/*  
  Can use to limit the width of a shop although 
  images, can cause the shop to go wider.
*/
table.pspsWrapper {
  margin: 0 auto;
  border-collapse: collapse; width:100% !important; max-width:1000px !important;
  /* width: 300px; */
} 

/*
  Can help with the vertical placement of the image
  and text within the table cell, as well as 
  setting the font styles.
*/
table.pspsWrapper td{ 
  vertical-align: top;
  padding: 0;
} 

/*
  General font appearance
*/
table.pspsWrapper a,
table.pspsWrapper td {
  font-family: Verdana, Helvetica, sans-serif;
  font-size: 1em;
  color: #363636;
  font-style: normal;
  font-weight: normal;
  text-align: left;
}
.pspsName {
	font-size:1.2em;
}

table.pspsWrapper .pspsRetailPrice {
  font-style: ;
  font-weight: ;
  color: #;
}

table.pspsWrapper .pspsSalePrice {
  font-style: ;
  font-weight: ;
  color: #;
}
table.pspsWrapper .pspsDescription {
  font-style: ;
  font-weight: ;
  color: #;
}

table.pspsWrapper .pspsMerchant {
  font-style: ;
  font-weight: ;
  color: #;
}

table.pspsWrapper .pspsBrand {
  font-style: ;
  font-weight: ;
  color: #;
}


/*
  Link specific styles
*/
table.pspsWrapper a {
  color: #6666FF;
  font-style: normal;
  font-weight: normal;
  text-decoration: underline;
} 

/*    
  Used to control the appearance of the images. Also 
  used to control the image sizes.
*/
table.pspsWrapper a img {
  border: none;
  width:100%;
  max-width: 140px;
/*  max-height: 500px; */
 width: expression(this.width > 140 ? 140 : true);
} 

/*    
  Controls paragraphs that contain the name, price, and description
*/
table.pspsWrapper p {
  margin: 0;
  padding: 3px;
  line-height:100%;
} 

/*    
  Used to style the containing cell of a product.  This
  cell contains the image, name, price, brand, description.
  This also controls the background color for the cells.
*/
table.pspsWrapper .pspsCell {
  background: #ffffff;
  border: 1px solid #bebebe;
  width: 30.50108932%;
  padding: 10px;
  background-color: #fff;
}

/*
  Call to action buttons
*/
table.pspsWrapper .buy_button {
  padding: 5px 4px;
  display: block;
  margin-top: 7px;
  color: #212121;
  background-color: #cccccc;
}

/*
  If you want to alternate the placement of images and text within the cell
  then you can uncomment the following styles.
*/
/*table.pspsWrapper .pspsMain {
  padding: 0 10px 10px 0;
  float: left;
}

table.pspsWrapper .pspsAlt { 
  padding: 0 0 10px 10px;
  float: right;
}*/

/*
  Leave this line uncommented if you want the images centered
*/
.pspsMain {
  padding: 0 0 10px 0;
  width: 100%;
  text-align: center;
}


/*
  A wrapper containing any page navigation for the shop.
*/
table.pspsWrapper .pspsPager {
  text-align: center;
  padding: 10px;
}

/*
  Navigation page links
*/
table.pspsWrapper .pspsPager a,
table.pspsWrapper .pspsPager span {
  font-weight: bold;
  text-decoration: none;
  padding: 2px;
  line-height: 200%;
  border: none;
}

/*
  The current page in the navigation links
*/
table.pspsWrapper .pspsPager .pspsCurrentPage {
  background-color: #bebebe;
  color: #000;
}

/*
  All pages that are not the current page
*/
table.pspsWrapper .pspsPager .pspsInactivePage {
  color: #aaa;
}  

/* responsive experiment */
@media (max-width: 500px) {
.pspsWrapper {
  margin: 1em 0;
  min-width: 300px;
}
.pspsWrapper tr {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.pspsWrapper th {
  display: none;
}
.pspsWrapper td {
  display: block;
}
.pspsWrapper td:first-child {
  padding-top: .5em;
}
.pspsWrapper td:last-child {
  padding-bottom: .5em;
}

.pspsWrapper th, .pspsWrapper td {
  text-align: left;
}
table.pspsWrapper a img {
  border: none;
  width:100%;
  max-width: 200px;
  max-height: 500px;
 width: expression(this.width > 200 ? 200 : true);
} 
table.pspsWrapper .pspsCell {
  background: #ffffff;
  border: 1px solid #bebebe;
  width: 100%;
  padding: 10px;
  background-color: #fff;
}

}