/* CSS Document */

.sticky {
    bottom: 15px;
    position: fixed;
    z-index: 999;
	margin-left:450px;
}
.sticky button {
  border-top: 1px solid #89cffa;
   background: #000000;
   background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#000000));
   background: -webkit-linear-gradient(top, #000000, #000000);
   background: -moz-linear-gradient(top, #000000, #000000);
   background: -ms-linear-gradient(top, #000000, #000000);
   background: -o-linear-gradient(top, #000000, #000000);
   padding: 0px 0px;
   -webkit-border-radius: 10px;
   -moz-border-radius: 10px;
   border-radius: 10px;
   -webkit-box-shadow: rgba(0,0,0,1) 0 1px 0;
   -moz-box-shadow: rgba(0,0,0,1) 0 1px 0;
   box-shadow: rgba(0,0,0,1) 0 1px 0;
   text-shadow: rgba(0,0,0,.4) 0 1px 0;
   color: #ffffff;
   font-size: 24px;
   font-family: Georgia, serif;
   text-decoration: none;
   vertical-align: middle;
   }
.sticky button {
	padding: 6px 1px\9;
	}
@media screen and (min-width:0\0)
    {
    	.sticky button {padding: 6px 1px; }
	}
.sticky button:hover {
   cursor: pointer;
   border-top-color: #0b5587;
   background: #4F4F4F;
   color: #b0b0b0;
   }
.sticky button:active {
   border-top-color: #11496b;
   background: #11496b;
   }
