#TopBtn {           /*Floating Back-To-Top Button*/
	display: none;    /* Hidden by default */
	position: fixed;  /* Fixed/sticky position */
	bottom: 20px;     /* Position of the button starting from the bottom of the page */
	float: right;
	right: 10%;        /* Place the button ..px from the right   - previous 12% - */
	left: 90%;        /* Place the button ..px from the left    - previous 88% - */
    z-index: 99;      /* Make sure it does not overlap */
	max-width: 35px;
	width: 100%;
	font-size: 10px;  /* Increase font size */
	border-color: #A8AF8F;         /*  - previous: #A8AF8F -    */
	background-color: transparant; /*  - previous: #9EA684 -  */ 
	padding: 5px;        /* Some padding of the button itself */
	border-radius: 4px;  /* Rounded corners */
    }

#TopBtn:hover {     /*On Hover Color Change - previous: #BFC5AF -  */
	background-color: #fff;
    }
