﻿/* Main View */
.productBox
{
    width:150px;
    height:220px;
    float:left;
    border:1px solid black;
    text-align:center;
    margin:15px;
    cursor:pointer;
    color:Black;
    text-decoration:none;    
}

.productName
{
    font-weight:bold;
}

.productMessage
{
    font-size:small;
    color:Red;
}

/* Details View */
#detailsView
{
    width:75%;
    height:75%;
    top:12.5%;
    left:12.5%;
    position:absolute;
    border:2px solid black;
    z-index:10;
    background:white;
}

#leftColumn
{
    width:45%;
    margin:1.5%;
    height:85%;
    float:left;
    overflow:auto;
    text-align:center;
}

#rightColumn
{
    height:85%;
    width:45%;
    margin:2.5% 2.5% 2.5% 50%;
    overflow:auto;
}

#detailsView #close
{
    cursor:pointer;
    text-align:center;
}

.thumbnails
{
    margin:5px;
    border:1px solid black;
}

#largerView
{
    margin:10px;
    border:1px solid black;
}

.progress
{
    display:block;
    margin:0 auto 0 auto;
    top:50%;
    position:relative;
    z-index:15;
}