﻿/*============================
ProductList Style
==============================*/
.product-list
{
    padding-left: 6px;    
}
.product-item
{
    width: 160px;
    height: 208px;
    border: 1px solid white;
    margin-right: 4px;
    margin-bottom: 4px;    
    float: left;
    box-shadow: 0px 0px 5px #888;
    border-radius: 4px;
    position: relative;    
}
.product-item:hover
{
    border: 1px solid #6CB2E4;    
    box-shadow: 0px 0px 5px #6CB2E4;    
}
.product-list a
{
    text-decoration: none;
    color: Black;
    font-weight: bold;    
}

.product-list a:hover
{    
    color: #6CB2E4;
}

.product-item-image
{            
    width: 156px;
    height:117px;
    margin-left: 2px;    
    margin-right: 2px;    
    margin-top: 5px;    
    margin-bottom: 5px;    
}
.product-item-image img
{
    border: 0px;
    width: 156px;
    height:117px;
}

.product-item-name
{
    margin-top: 10px;      
    text-align: center;    
    height: 2.2em;    
    overflow: hidden;
    margin-left: 2px;
    margin-right: 2px;
}

.product-item-name span
{
    font-family: 'Segoe UI',Tahoma,Arial,Helvetica,sans-serif;
    font-size: 0.9em;    
}

.product-item-price
{    
    text-align: center;
    font-weight: bold;            
    color: #FF0000;    
    margin-top: 6px;
    border-radius: 0px 0px 4px 4px;
    
    background: #f7f7f7; /* Old browsers */
    background: -moz-linear-gradient(top, #f7f7f7 0%, #cdcdcd 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f7f7f7), color-stop(100%,#cdcdcd)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f7f7f7 0%,#cdcdcd 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #f7f7f7 0%,#cdcdcd 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #f7f7f7 0%,#cdcdcd 100%); /* IE10+ */
    background: linear-gradient(to bottom, #f7f7f7 0%,#cdcdcd 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#cdcdcd',GradientType=0 ); /* IE6-9 */
}
.product-item-price span
{
    font-family: 'Segoe UI',Tahoma,Arial,Helvetica,sans-serif;  
    display: table-cell;
    vertical-align: middle;    
    text-shadow: white 0px 1px 0px;
    height: 35px;
    width: 160px;
}
.product-list-title
{    
    text-align: center;
    color: Black;
    border-radius: 4px;
    margin-left: 6px;
    margin-right: 4px;
    margin-bottom: 5px;
    height: 1.5em;
    line-height: 1.5em;
    font-family: 'Segoe UI',Tahoma,Arial,Helvetica,sans-serif;    
    padding-left: 5px;
    text-shadow: white 0px 1px 0px;
    box-shadow: 0px 0px 5px #888;
    font-weight: bold;
    
    background: #f6f8f9; /* Old browsers */
    background: -moz-linear-gradient(top,  #f6f8f9 0%, #e5ebee 50%, #d7dee3 51%, #f5f7f9 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f6f8f9), color-stop(50%,#e5ebee), color-stop(51%,#d7dee3), color-stop(100%,#f5f7f9)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #f6f8f9 0%,#e5ebee 50%,#d7dee3 51%,#f5f7f9 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #f6f8f9 0%,#e5ebee 50%,#d7dee3 51%,#f5f7f9 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #f6f8f9 0%,#e5ebee 50%,#d7dee3 51%,#f5f7f9 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #f6f8f9 0%,#e5ebee 50%,#d7dee3 51%,#f5f7f9 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6f8f9', endColorstr='#f5f7f9',GradientType=0 ); /* IE6-9 */
}

.product-list-title h3
{       
    display:inline;
}
.edit-icon
{
    background-color: White;
    position: absolute;
}