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

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

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

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