
#backtop {
	        position: fixed;
            left:auto;right: 15px;top:auto;bottom: 15px;
	        outline: none;
            overflow:hidden;
            color:#fff;
            text-align:center;
            background-color:rgba(135,135,135,0.6);
            height:40px;
            width:40px;
			
			-webkit-border-radius: 2px;
			-moz-border-radius: 2px;
			border-radius: 2px;

            line-height:38px;
            font-size:14px;
            cursor:pointer;
            transition:all 0.3s linear;
            z-index:999999;

            opacity:1;
            display:none;
        }
		
		.arrowup:before {
  			content: "\f077";
			font-family: FontAwesome;
			font-style: normal;
			font-weight: normal !important;
	}
		
        #backtop:hover {
            background-color:#000;
        }
        #backtop.mcOut {
            opacity:0;
        }