/* 
	Full Name: 		Product List Tiles
	Description:	A product list shown as tiles (X products per row). X depends on space available and width of tile
					Thumbnail Image to left and product information to the right.
*/	
 
div#product_list {

} 

	div#product_list .frame {		
		float:left;
		width:250px;			
		padding:4px;
		margin-right:5px;
		margin-bottom:5px;
		border:1pt solid #eee;
		background-color:#fff;
	}
	
		div#product_list .frame:hover {
			border:1pt solid #bbb;			
			cursor:pointer;
			cursor:hand;
		}

	div#product_list .image_thumbnail {
		height:100px;		
		width:100px;
		margin:3px;
		border:1px solid #ddd;		
	}

	div#product_list .artnr {
		font-size:7pt;
	}	
	
	div#product_list .name {
		font-size:9pt;		
	}
	
	div#product_list .author {
		font-size:10pt;
	}
	
	div#product_list .brand {
		font-size:7pt;
	}
		
	div#product_list .publisher {
		font-size:7pt;
	}
	
	div#product_list .price {
		font-size:11pt;
		color:#7070ff;
	}	
	
	div#product_list .specialprice {
		font-size:11pt;
		color:red;
	}
	
	div#product_list .currency {
		font-size:9pt;		
	}
		
	div#product_list .readmore_link {		
		font-size:8pt;
		color:#000;
	}

