#scroll-top{position: relative;width: 100%;}
#scrollToTop{
	background-image:url('../../images/icons/up.png');	
	background-color: #006EA3;
	border-radius: 8px 8px 0 0;
	
	width:50px;
	height:40px;
	display: block;
	position: fixed; /*fixed permet un positionnement par rapport à la fenetre du navigateur*/
	bottom: 0;
	left: 50%;
	margin-left: -25px;
	z-index: 100;
	background-position: center;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

#scrollToTop:hover{
	cursor: pointer;
	background-color: #528FB9;
	width:50px;
	height:40px;
	display: block;
	position: fixed; /*fixed permet un positionnement par rapport à la fenetre du navigateur*/
	bottom: 0;
	left: 50%;
	margin-left: -25px;
	z-index: 100;
}

#scroll-top{display: none !important;}	

@media (min-width: 768px) {
	#scroll-top{display: block !important;}	
	#scrollToTop{margin: 0 0 0 90% !important;left: auto;bottom: 0;}
	#scrollToTop:hover{margin: 0 0 0 90% !important;left: auto;bottom: 0;}
}

@media (min-width: 992px) {
	#scrollToTop{margin: 0 0 0 90% !important;}
	#scrollToTop:hover{margin: 0 0 0 90% !important;}
}

@media (min-width: 1200px) {	
	#scrollToTop{margin: 0 0 0 90% !important;}
/* 	#scrollToTop:hover{margin: 0 0 0 1130px !important;} */
}
