//mac firefox hack
$(document).ready(function(){
var str = navigator.userAgent.toUpperCase();
if (str.indexOf("MAC") != -1) {
	if(navigator.userAgent.indexOf("Firefox") != -1){
		$("p").css("line-height","1.5");
	}
}
});
