#fontResizer{
	position: fixed;
	left: 1%;
	bottom: 1%;
}
#fontResizer img{
	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;
}
#fontResizer img:hover{
	margin:5px 0;
	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.10);
	-ms-transform: scale(1.10); /* IE 9 */
	-webkit-transform: scale(1.10); /* Safari and Chrome */
	-o-transform: scale(1.10); /* Opera */
	-moz-transform: scale(1.10); /* Firefox */
}