<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.List
	{
	width : 100%;
	padding-bottom : 10px;
	
	overflow:hidden;
	display:flex;
	flex-wrap: wrap;
	}
	
.List a
	{
	text-decoration:none;
	color:inherit;
	}
	

.ListItem
	{
	width:300px;
	min-height : 150px;
	

	/*
		ModifiÃ© par KM le 26/12/2024

		pt nÂ°24 du tableau des tests

	margin-left:6px;
	margin-right:6px;
	*/


	margin-bottom:12px;
	padding:10px 5px 10px 5px;

	font : normal 12px Gotham;
	color : #4b4c4c;
	
	text-decoration:none;
	
	overflow-y:hidden;
	}

.ListSearch .ListItem 
	{
	width:355px;
	}

.ListBasket
	{
	margin-right : 15px;
	margin-left: auto;
	width:24px;
	height:	24px;
	flex-shrink:0;
	
	cursor:pointer;
	}

.ListTitle
	{
	font : bold 12px Arial,serif;
	color : #4b4c4c;
	text-decoration : none;
	margin-bottom:10px;
	}

.ListTitle :hover
	{
	text-decoration : underline;
	}
	
.ListSearch 
	{
	width:100%;
	}


	
/* Smartphone */
@media only screen and (max-width:480px)
	{
	.List
		{
		width:98%;
		}
		
	.ListSearch 
		{
		width:100%;
		}
		
	.ListItem
		{
		max-width:100%;
		}
	}
	
/* Tablet	*/	
@media only screen and (min-width:481px) and (max-width:800px)
	{
	.ListSearch .ListItem
		{
		float : left;
		width:300px;
		min-height : 150px;
		margin-right:12px;
		margin-bottom:12px;
		}
	}
	
@media print 
	{	
	.ListItem
		{
		float:none;
		width: 100vw;
		}
	}</pre></body></html>