.no-resize {
    width: auto !important;
    height: auto !important;
    max-width: none !important;
}

.nf {
font-family: "agenda", sans-serif !important;
font-weight: 400;
font-style: normal; }

.nf-b {
font-family: "agenda", sans-serif !important;
font-weight: 700;
font-style: normal;
}

.nf-br {
font-family: "agenda", sans-serif !important;
font-weight: 800;
font-style: bold;
}

.caps {
	text-transform: uppercase;
}

.pulsate {
    -webkit-animation: pulsate 2s ease-out;
    -webkit-animation-iteration-count: infinite; 
    opacity: 0.75;
}
@-webkit-keyframes pulsate {
    0% { 
        opacity: 0.5;
    }
    50% { 
        opacity: 1.0;
    }
    100% { 
        opacity: 0.5;
    }
}