/*
	 Auto Generating Photo Gallery
	 by Chris Coyier
	 http://css-tricks.com
*/

*					
a img, img 			{ border: none; }

#page-wrap			{ width: 800px; margin: 0 auto; }

.photo-link			{ }

.photo-link_normal img
{
	opacity: 1.0;/* l'opacite que vous voulez au depart */   
    -ms-filter: "prodig:DXImageTransform.Microsoft.Alpha(Opacity=100)"; /* Hack IE8 */
    filter: alpha(opacity = 100); /* Hack IE 5-7 */
    -webkit-transition: opacity 0.4s ease-in-out;/* transition pour Chrome et Safari */
    -moz-transition: opacity 0.4s ease-in-out;/* transition pour Firefox */
    -o-transition: opacity 0.4s ease-in-out;/* transition pour Opéra */
    transition: opacity 0.4s ease-in-out;


 }

.photo-link_normal img:hover	
{
	
	opacity: 0.75; 
    -ms-filter:"prodig:DXImageTransform.Microsoft.Alpha(Opacity=75)"; /* Hack IE 8 */
    filter: alpha(opacity = 75); /* Hack IE 5-7 */
	
	
	
 
 }
					  
.photo-link:hover	{ opacity: 0.5; }