.myButton {
	-moz-box-shadow: 0px 10px 14px -7px #276873;
	-webkit-box-shadow: 0px 10px 14px -7px #276873;
	box-shadow: 0px 10px 14px -7px #276873;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #308ec5), color-stop(1, #0f72ab));
	background:-moz-linear-gradient(top, #308ec5 5%, #0f72ab 100%);
	background:-webkit-linear-gradient(top, #308ec5 5%, #0f72ab 100%);
	background:-o-linear-gradient(top, #308ec5 5%, #0f72ab 100%);
	background:-ms-linear-gradient(top, #308ec5 5%, #0f72ab 100%);
	background:linear-gradient(to bottom, #308ec5 5%, #0f72ab 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#308ec5', endColorstr='#0f72ab',GradientType=0);
	background-color:#308ec5;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
	border-radius:8px;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:20px;
	font-weight:bold;
	padding:13px 32px;
	text-decoration:none;
	text-shadow:0px 1px 0px #3d768a;
}
.myButton:hover {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #0f72ab), color-stop(1, #308ec5));
	background:-moz-linear-gradient(top, #0f72ab 5%, #308ec5 100%);
	background:-webkit-linear-gradient(top, #0f72ab 5%, #308ec5 100%);
	background:-o-linear-gradient(top, #0f72ab 5%, #308ec5 100%);
	background:-ms-linear-gradient(top, #0f72ab 5%, #308ec5 100%);
	background:linear-gradient(to bottom, #0f72ab 5%, #308ec5 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0f72ab', endColorstr='#308ec5',GradientType=0);
	background-color:#0f72ab;
}
.myButton:active {
	position:relative;
	top:1px;
}

#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: red; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#myBtn:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}