
.productTile {
	position: relative;
	height  : 450px;
	width   : 100%;
	border-radius: 10px;
	background-color: WhiteSmoke;
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19)
}
			
.productHeader {
	position: absolute;
	top       : 0;
	height    : 10%;
	width     : 100%;
	color     : Beige;
	font-size : 30px;
	padding   : 2px;
	text-align: center;
	background-color: DimGrey;
	border-radius: 10px 10px 0 0;
}
			
.productImage {
	position: absolute;
	top     : 10%;
	height  : 50%;
	width   : 100%;
}
			
.productContent {
	position : absolute;
	top      : 60%;
	height   : 15%;
	width    : 100%;
	color    : DarkGrey;
	padding  : 2px;
	background-color: WhiteSmoke;
}
			
.productPrice {
	position   : absolute;
	top        : 75%;
	height     : 10%;
	width      : 100%;
	color      : Red;
	font-size  : 40px;
	text-align : center;
	padding    : 2px;
	background-color: MistyRose;
}
			
.productFooter {
	position   : absolute;
	bottom     : 0;
	height     : 15%;
	width      : 100%;
	color      : Beige;
	font-size  : 40px;
	text-align : center;
	padding    : 2px;
	background-color: DimGrey;
	border-radius: 0 0 10px 10px;
}	

.productTile2 
{
    margin: 0;
    float:  left;
    width:  100%;
	height: 75;
	xborder       : 1px solid Green;
}

.productImage2 
{
    margin: 0;
    border: 1px solid #ccc;
    float:  left;
    width:  80;
	height: 70;
	display: inline-block;
}

.productImage2:hover 
{
    border: 1px solid #777;
}

.productImage2:img 
{
    width:  80;
    height: 70;
}

.productName2 
{
	color        : Teal;
	font-size    : 30px;
	float        : left;
    text-align   : left;
	padding-left : 5px;
	width        : 50%;
	xborder       : 1px solid Blue;
	display      : inline-block;
}

.productPrice2 
{
	color        : Red;
	font-weight  : bold;
	font-size    : 20px;
	float        : right;
	text-align   : right;
	width        : 25%;
	display      : inline-block;
	xborder       : 1px solid Red;
}

.productDescription2 
{
	color        : Black;
	font-size    : 15px;
    text-align   : left;
	float        : left;
	width        : 75%;
	padding-left : 5px;
	display      : inline-block;
}

.productQuantity2 
{
	color        : Purple;
	font-size    : 20px;
    text-align   : left;
	float        : left;
	width        : 25%;
	padding-left : 5px;
	display      : inline-block;
	border       : 1px solid Red;
}




