#page {
    padding-top: 60px;
}

.buyProduct{
    position:relative;
    z-index: 2;
    background: #eee;
    height:80px;
    border-radius: 3px;
}

.buyProduct input{
    float: right;
    margin-right: 10px;
}

.buyProduct .price{
    color: green;
    font-weight: bold;
    font-size: 18px;
    padding: 10px 0 10px 10px;
}

.block50{
    width:48%;
    display: inline-block;
    vertical-align: top;
}

.minicart_holder{
    position: fixed;
    z-index: 100;
    top: 40px;
    width: 1170px;
    margin-left: auto;
    margin-right: auto;
}

.minicart{
    display: none;
    position: relative;
    top:1px;
    width: 400px;
    left: 770px;
    z-index: 100;
    background: #fff;
    border: 1px solid #dddddd;
    border-collapse: separate;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.minicart table{
    width: 100%;
    margin-bottom: 0px;
}

.icon-trash{
    cursor: pointer;
}

.emptyShoppingCart{
  text-align: center;
  min-height: 20px;
  padding: 19px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
     -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

.shoppingCart table td{
    vertical-align: middle;
}

.caption
{
    position:relative;
    z-index: 2;
    top:-75px;
    background: lightgray;
    height:58px;
    border-radius: 3px;
    opacity: 0.7; /* css standard */
    filter: alpha(opacity=70);
}

.caption .name{
    margin-top:10px;
    position:relative;
    font-size:16px;
    color:black;
    font-weight: bold;
    opacity: 1; /* css standard */
    filter: alpha(opacity=100);
    
}

.thumbnail:hover{
    text-decoration: none;
}

.caption .price{
    position:relative;
    font-size:16px;
    color:green;
    opacity: 1; /* css standard */
    filter: alpha(opacity=100);
    
}

.relative_placed{
    position: relative;
    top:-25px;
    left:210px;
}

.product{
    margin-top:30px;
    margin-bottom: 30px;
    min-height: 420px;
}

.photoPlaceholder{
    float:left;
    max-height: 400px;
    overflow: hidden;
    margin:0 20px 20px 0;
    border: 1px solid #dddddd;
    border-collapse: separate;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.productCategory{
    font-size: 16px;
    color: gray;
    margin-bottom: 20px;
    vertical-align: top;
}

.comments .view{
    display: block;
    padding: 4px;
    line-height: 20px;
    border: 1px solid #ddd;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    margin-bottom: 10px;
}

.comments .summary{
    margin-bottom: 10px;
}

.comments .commentDate{
    float:right;
}

.comments .commentBy{
    display:inline-block;
}

.comments .commentBody{
    margin-bottom:10px;
}

.comments .commentTitle{
    font-style: italic;
    font-weight: bold;
    margin-bottom: 10px;
}