@charset "utf-8";
/* CSS Document */

#totop{
	position:fixed;
	z-index:400;
	right:20px;
	bottom:30px;
	text-align:center;
	display:none;
	}
	
	#totop span{
	    width: 1px;
		display:inline-block;
    height: 40px;
	
	 transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -o-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
     background-color: #000;}
	 
	 #totop:hover span{
		 background-color:#d49256;} 
	 	 #totop p{
	
		 display:inline-block;
		 font-weight:bold;
		 margin-top:5px;
		 position:relative;
		 }
		 
		 #totop p:after {
    content: "";
    display: block;
    margin-left: auto;
    margin-right: auto;
   width: 4px;
    height: 4px;
    margin-top: 2px;
    background-color: #000;
	 transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -o-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
	
}

 #totop:hover p:after{
		 background-color:#d49256;} 
	 #totop p a{
		 color:#000; font-family:Arial, Helvetica, sans-serif;}
		 
		  #totop:hover p a{
			  color:#d49256;
			  }