/*
					 * Style GP Back To Top Plugin
					 *
					 * @author Giang Peter
					 */
					@import url("font.css");
					.gp-back-to-top {
						display: none;
						width: 20px;
						height: 20px;
						border-radius: 50%;
						padding: 5px;
						background-color: #111f1c;
						color: #ffffff;
						text-align: center;
						position: fixed;
						z-index: 99999;
						bottom: 45px;
						right: 20px;
						font-size: 16px;
						cursor: pointer;
						-webkit-box-sizing: content-box;
					    -moz-box-sizing: content-box;
					    box-sizing: content-box;
					}
					.gp-back-to-top span {
						position: absolute;
						top: 24%;
						left: 50%;
						-webkit-transform: translateX(-50%);
						-moz-transform: translateX(-50%);
						-ms-transform: translateX(-50%);
						-o-transform: translateX(-50%);
						transform: translateX(-50%);
						font-family: 'Glyphicons Halflings';
					    line-height: 1;
					    -webkit-font-smoothing: antialiased;
					    -moz-osx-font-smoothing: grayscale;
					}
					.gp-back-to-top span:before {
					    content: '\e113';
					}