/* 
	Full Name: 		Product List Box vrect (for Books etc)
	Description:	A detailed product list (X products per row). X depends on space available and width of box
					Thumbnail Image on top and basic information below
*/		 			

div#product_list {

}

	div#product_list .frame {
		float:left;
		width:170px;
		height:220px;		
		padding:4px;
		margin-right:10px;
		margin-bottom:10px;
		text-align:center;
		border:1pt solid #ddd;		
	}
	
		div#product_list .frame:hover {
			border:1pt solid #bbb;			
			cursor: pointer;
			cursor: hand;
		}

	div#product_list .image_thumbnail {
		width:80px;
		border:0;
	}

	div#product_list .artnr {
		font-size:11pt;
	}	
	
	div#product_list .name {
		font-size:10pt;
	}
	
   div#product_list .author {
		font-size:10pt;
	}
	
	div#product_list .price {
		font-size:12pt;
	}
	
	div#product_list .specialprice {
		font-size:12pt;
		color:red;
	}
	
	div#product_list .description {
		font-size:9pt;
	}
	