.fontResizer{
	position: fixed;
	left: 1%;
	bottom: 1%;
	visibility:visible;
	z-index:9999;
}
.fontResizer img{
	visibility:visible;
	height: 25px;
	width: 25px;
	margin-top:2px;
	opacity: .8;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	display: block;
	border: none;
	z-index:9999;
}
.fontResizer img:hover{
	cursor:pointer;
	opacity: 1.0;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transform: scale(1.20);
	-ms-transform: scale(1.20); /* IE 9 */
	-webkit-transform: scale(1.20); /* Safari and Chrome */
	-o-transform: scale(1.20); /* Opera */
	-moz-transform: scale(1.20); /* Firefox */
}
@media only screen and (max-width: 640px) {
	.fontResizer{
	display: none;	
	}
}