﻿/* This CSS file is for the ProductsList.ascx user control and the Catalogue.aspx web form */

/* Styling for the headings on Catalogue.aspx */
.CatalogueTitle
{ 
    float:left;
    font-size:2em;
    margin-right:20px;
    padding-top:7px;
}

.CatalogueImage
{
    float:right;
    max-height:40px;
}

.CatalogueDescription
{ 
    display:block;
    font-size: 0.9em;
    margin-top:10px;
    margin-bottom:10px;
}

/* Styling for the ProductsList.ascx user control */
#ProductList 
{
    width:585px;
}

#ProductList a, #ProductList img 
{
    border:none;
}

.ProductListItem
{
    background-color:White;
    width:175px;
    height:375px;
    margin:10px;
    border:1px solid #ccc;
}

.ProductListImage
{
    height:200px;
    margin-bottom:5px;
    text-align:center;
}

.ProductListInfo 
{
    text-align:center;
}

.ProductListName 
{
    height:30px;
}

.ProductListPrices 
{
    height:70px;
}

.ProductListExtras 
{
    height:75px;
}

.ProductListName a
{
  font-size:0.9em;
  color:#000;
  text-decoration: none;
  text-transform:uppercase;
}

.ProductListName a:hover
{  
  text-decoration: underline;
}

.ProductListPrice
{ 
  font-weight: bold;
  font-size:1.3em;
  color:#17ABB5;
  margin:0;
} 

.ProductListPromotionImage
{
    float:left;
    margin-left:10px;
    margin-right:10px;    
}

.ProductListRRP
{ 
  font-weight: bold;
  font-size:1.4em;
  color:Red;
  margin:0;
  text-decoration:line-through;
} 

.ProductListRRPExists
{ 
  font-weight: bold;
  font-size:1.4em;
  color:Red;
  margin:0;
} 

.ProductListBrand
{
    max-width:130px;
    max-height:40px;
}

.promo_image
{
    float:left;
    padding-left:20px;
}