/* Scroll to top */

#toTop {
    /*background: url("../image/scroll/slide-to-top.png") no-repeat scroll left top transparent;*/
    border: medium none;
    bottom: 70px;
    display: none;
    height: 60px;
    /* overflow: hidden; */
    position: fixed;
    right: 50px;
    text-indent: -999px;
    width: 100px;
	text-align: center;
    background: rgb(230, 230, 230);
	text-decoration:none;
	transition:0.3s;
	font-family: Arial, sans-serif;
	font-size:14px;
}
#toTop:hover{
    background: rgb(107, 175, 51);
	transition:0.2s;
	
}
#toTop:hover #toTopHover{
   background: url("../image/scroll/arrow_up_hov.png");
   background-repeat: no-repeat;
   background-position: 36px 2px;
   transition:0.3s;
  
}
#toTopHover {
    background: url("../image/scroll/arrow_up.png");
	background-repeat: no-repeat;
    display: block;
    /*float: left;*/
    height: 29px;
    opacity: 1!important;
    overflow: hidden;
    background-position: 36px 2px;
    /*width: 51px;*/
	transition:0.3s;
}
#toTop:active, #toTop:focus {
    outline: medium none;
}
#toTop:hover .totop-text{
 border-bottom: 1px dashed white;
 transition:0.3s;
 color:white;
}
.totop-text{
  border-bottom: 1px dashed black; 
  padding-bottom:4px;
  
  transition:0.3s;
  color:black;
}