.illustration {list-style-type: none;}
.galery{
	background-color:#fafbfc; 
}

.galery ul{
	display:flex;
	flex-flow: row wrap;
	list-style-type: none;
}
.galery li:hover{
	cursor:pointer;
}
.galery img{
	border:1px solid #b0b0b0; 
	margin:10px 0 10px 10px; 
	padding:5px; 
	height:150px;
}
.galery img:hover{opacity:0.7;}

/* DIAPORAMA */
.diapo *{
	padding: 0px;
	margin: 0px;
	box-sizing: border-box;
	-moz-user-select: none;
}

.diapo{
	display:none;
}
.diapo-active{
	display:block;
	width: 100%;
	height: 100%;
	background: #000 none repeat scroll 0% 0%;
	position: fixed;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
}

.diapo ul{
	list-style: outside none none;
}

.diapo-topbar{
	height: 30px;
	margin: 16px;
	color: #fff;
}
.diapo-topbar div{
	position: relative;
	top: 20%;
}
.diapo-topbar-left{
	float: left;
	width: 80%;
	opacity:1;
}
.diapo-topbar-right{
	float: right;
	display: block;
	width: 36px;
	height: 36px;
	cursor: pointer;
	background-repeat: no-repeat;
}
.diapo-topbar-right.button::before {
		font-family: 'Material Design Icons';
		content: '\F0159';
		font-size: 2.8em;
		font-weight: normal;
		position: absolute;
}
.button{
	opacity: 0.8;
	cursor: pointer;
}
.button-disabled{
	opacity:0.3;
	cursor: default;
}
.button:hover{
	opacity: 1;
}

.diapo-list{
	position:fixed;
	top: 90px;
	bottom: 10px;
	left: 0px;
	right: 0px;
}

.diapo-list li{
	position:absolute;
	top:0px;
	bottom:0px;
	left:60px;
	right:60px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transition: opacity 0.4s ease-in-out 0s;
	opacity: 0;
}

.diapo-image{opacity:0;}
.diapo-image-active{
	opacity:1;
}

.diapo-control{
	position:fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	margin: 0px auto;
}

.diapo-control-prev, .diapo-control-next{
	height: 100%;
	width: 50px;
}
.diapo-control-next{
	float:right;
}

.diapo-control-prev{
	float:left;
}
.diapo-control-prev-icon, .diapo-control-next-icon{
	display: block;
	width: 50px;
	height: 50px;
	position: fixed;
	top: 40%;
	background-color: rgba(0, 0, 0, 0.7);
}


.diapo-control-prev-icon::before {
		font-family: 'Material Design Icons';
		content: '\F0141';
		font-size: 3.8em;
		font-weight: normal;
		position: absolute;
		color: #FFF;
}

.diapo-control-next-icon::before {
		font-family: 'Material Design Icons';
		content: '\F0142';
		font-size: 3.8em;
		font-weight: normal;
		position: absolute;
		color: #FFF;
}