.float{
	position:fixed;
	display: none;	
}



.float2{
	position:fixed;
	display: none;	
}

@media only screen and (max-width: 480px) {	
  .float{
	position:fixed;
	width:43%;
	bottom:30px;
	right:10px;
	background-color:#25d366;
	color:#FFF;
	text-align:center;
	font-size:16px;
	z-index:100;
	display: block;
	padding: 10px;
	border-radius:4px;
	text-decoration: none;
}
    .float2{
	position:fixed;
	width:43%;
	bottom:30px;
	left:10px;
	background-color:#FF0033;
	color:#FFF;
	text-align:center;
	font-size:16px;
	z-index:100;
	display: block;
	padding: 10px;
	border-radius:4px;
	text-decoration: none;
}
.float2:hover {
	color:#fff;
	background-color: #F30;	
}
.float:hover {
	color:#fff;
	background-color: #6C0;	
}
} 