<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.animated {
    animation-duration: 1.5s;
    animation-fill-mode: both;
}
.visible {
    opacity: 0 !important;
}
.animated.hinge {
    animation-duration: 2s;
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
    transform: translateY(0px);
}
40% {
    transform: translateY(-30px);
}
60% {
    transform: translateY(-15px);
}
}
.animated.bounce {
    animation-name: bounce;
}
@keyframes flash {
0%, 50%, 100% {
    opacity: 1;
}
25%, 75% {
    opacity: 0;
}
}
.animated.flash {
    animation-name: flash;
}
@keyframes pulse {
0% {
    transform: scale(1);
}
50% {
}
100% {
    transform: scale(1);
}
}
.animated.pulse {
    animation-name: pulse;
}
@keyframes shake {
0%, 100% {
    transform: translateX(0px);
}
10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px);
}
20%, 40%, 60%, 80% {
    transform: translateX(10px);
}
}
.animated.shake {
    animation-name: shake;
}
@keyframes swing {
20% {
    transform: rotate(15deg);
}
40% {
    transform: rotate(-10deg);
}
60% {
    transform: rotate(5deg);
}
80% {
    transform: rotate(-5deg);
}
100% {
    transform: rotate(0deg);
}
}
.animated.swing {
    animation-name: swing;
    transform-origin: center top 0;
}
@keyframes tada {
0% {
    transform: scale(1);
}
10%, 20% {
}
30%, 50%, 70%, 90% {
}
40%, 60%, 80% {
}
100% {
    transform: scale(1) rotate(0deg);
}
}
.animated.tada {
    animation-name: tada;
}
@keyframes wobble {
0% {
    transform: translateX(0%);
}
15% {
    transform: translateX(-25%) rotate(-5deg);
}
30% {
    transform: translateX(20%) rotate(3deg);
}
45% {
    transform: translateX(-15%) rotate(-3deg);
}
60% {
    transform: translateX(10%) rotate(2deg);
}
75% {
    transform: translateX(-5%) rotate(-1deg);
}
100% {
    transform: translateX(0%);
}
}
.animated.wobble {
    animation-name: wobble;
}
@keyframes bounceIn {
0% {
    opacity: 0;
}
50% {
    opacity: 1;
}
70% {
}
100% {
    transform: scale(1);
}
}
.animated.bounceIn {
    animation-name: bounceIn;
}
@keyframes bounceInDown {
0% {
    opacity: 0;
    transform: translateY(-2000px);
}
60% {
    opacity: 1;
    transform: translateY(30px);
}
80% {
    transform: translateY(-10px);
}
100% {
    transform: translateY(0px);
}
}
.animated.bounceInDown {
    animation-name: bounceInDown;
}
@keyframes bounceInLeft {
0% {
    opacity: 0;
    transform: translateX(-2000px);
}
60% {
    opacity: 1;
    transform: translateX(30px);
}
80% {
    transform: translateX(-10px);
}
100% {
    transform: translateX(0px);
}
}
.animated.bounceInLeft {
    animation-name: bounceInLeft;
}
@keyframes bounceInRight {
0% {
    opacity: 0;
    transform: translateX(2000px);
}
60% {
    opacity: 1;
    transform: translateX(-30px);
}
80% {
    transform: translateX(10px);
}
100% {
    transform: translateX(0px);
}
}
.animated.bounceInRight {
    animation-name: bounceInRight;
}
@keyframes bounceInUp {
0% {
    opacity: 0;
    transform: translateY(2000px);
}
60% {
    opacity: 1;
    transform: translateY(-30px);
}
80% {
    transform: translateY(10px);
}
100% {
    transform: translateY(0px);
}
}
.animated.bounceInUp {
    animation-name: bounceInUp;
}
@keyframes bounceOut {
0% {
    transform: scale(1);
}
25% {
}
50% {
    opacity: 1;
}
100% {
    opacity: 0;
}
}
.animated.bounceOut {
    animation-name: bounceOut;
}
@keyframes bounceOutDown {
0% {
    transform: translateY(0px);
}
20% {
    opacity: 1;
    transform: translateY(-20px);
}
100% {
    opacity: 0;
    transform: translateY(2000px);
}
}
.animated.bounceOutDown {
    animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
0% {
    transform: translateX(0px);
}
20% {
    opacity: 1;
    transform: translateX(20px);
}
100% {
    opacity: 0;
    transform: translateX(-2000px);
}
}
.animated.bounceOutLeft {
    animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
0% {
    transform: translateX(0px);
}
20% {
    opacity: 1;
    transform: translateX(-20px);
}
100% {
    opacity: 0;
    transform: translateX(2000px);
}
}
.animated.bounceOutRight {
    animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
0% {
    transform: translateY(0px);
}
20% {
    opacity: 1;
    transform: translateY(20px);
}
100% {
    opacity: 0;
    transform: translateY(-2000px);
}
}
.animated.bounceOutUp {
    animation-name: bounceOutUp;
}
@keyframes fadeIn {
0% {
    opacity: 0;
}
100% {
    opacity: 1;
}
}
.animated.fadeIn {
    animation-name: fadeIn;
}
@keyframes fadeInDown {
0% {
    opacity: 0;
    transform: translateY(-20px);
}
100% {
    opacity: 1;
    transform: translateY(0px);
}
}
.animated.fadeInDown {
    animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
0% {
    opacity: 0;
    transform: translateY(-2000px);
}
100% {
    opacity: 1;
    transform: translateY(0px);
}
}
.animated.fadeInDownBig {
    animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
0% {
    opacity: 0;
    transform: translateX(-60px);
}
100% {
    opacity: 1;
    transform: translateX(0px);
}
}
.animated.fadeInLeft {
    animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
0% {
    opacity: 0;
    transform: translateX(-2000px);
}
100% {
    opacity: 1;
    transform: translateX(0px);
}
}
.animated.fadeInLeftBig {
    animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
0% {
    opacity: 0;
    transform: translateX(60px);
}
100% {
    opacity: 1;
    transform: translateX(0px);
}
}
.animated.fadeInRight {
    animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
0% {
    opacity: 0;
    transform: translateX(2000px);
}
100% {
    opacity: 1;
    transform: translateX(0px);
}
}
.animated.fadeInRightBig {
    animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
0% {
    opacity: 0;
    transform: translateY(60px);
}
100% {
    opacity: 1;
    transform: translateY(0px);
}
}
.animated.fadeInUp {
    animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
0% {
    opacity: 0;
    transform: translateY(2000px);
}
100% {
    opacity: 1;
    transform: translateY(0px);
}
}
.animated.fadeInUpBig {
    animation-name: fadeInUpBig;
}
@keyframes fadeOut {
0% {
    opacity: 1;
}
100% {
    opacity: 0;
}
}
.animated.fadeOut {
    animation-name: fadeOut;
}
@keyframes fadeOutDown {
0% {
    opacity: 1;
    transform: translateY(0px);
}
100% {
    opacity: 0;
    transform: translateY(20px);
}
}
.animated.fadeOutDown {
    animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
0% {
    opacity: 1;
    transform: translateY(0px);
}
100% {
    opacity: 0;
    transform: translateY(2000px);
}
}
.animated.fadeOutDownBig {
    animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
0% {
    opacity: 1;
    transform: translateX(0px);
}
100% {
    opacity: 0;
    transform: translateX(-20px);
}
}
.animated.fadeOutLeft {
    animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
0% {
    opacity: 1;
    transform: translateX(0px);
}
100% {
    opacity: 0;
    transform: translateX(-2000px);
}
}
.animated.fadeOutLeftBig {
    animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
0% {
    opacity: 1;
    transform: translateX(0px);
}
100% {
    opacity: 0;
    transform: translateX(20px);
}
}
.animated.fadeOutRight {
    animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
0% {
    opacity: 1;
    transform: translateX(0px);
}
100% {
    opacity: 0;
    transform: translateX(2000px);
}
}
.animated.fadeOutRightBig {
    animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
0% {
    opacity: 1;
    transform: translateY(0px);
}
100% {
    opacity: 0;
    transform: translateY(-20px);
}
}
.animated.fadeOutUp {
    animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
0% {
    opacity: 1;
    transform: translateY(0px);
}
100% {
    opacity: 0;
    transform: translateY(-2000px);
}
}
.animated.fadeOutUpBig {
    animation-name: fadeOutUpBig;
}
@keyframes flip {
0% {
    animation-timing-function: ease-out;
    transform: perspective(400px) translateZ(0px) rotateY(0deg) scale(1);
}
40% {
    animation-timing-function: ease-out;
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
}
50% {
    animation-timing-function: ease-in;
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
}
80% {
    animation-timing-function: ease-in;
}
100% {
    animation-timing-function: ease-in;
    transform: perspective(400px) translateZ(0px) rotateY(360deg) scale(1);
}
}
.animated.animated.animated.flip {
    animation-name: flip;
    backface-visibility: visible;
}
@keyframes flipInX {
0% {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
}
40% {
    transform: perspective(400px) rotateX(-10deg);
}
70% {
    transform: perspective(400px) rotateX(10deg);
}
100% {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
}
}
.animated.flipInX {
    animation-name: flipInX;
    backface-visibility: visible !important;
}
@keyframes flipInY {
0% {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
}
40% {
    transform: perspective(400px) rotateY(-10deg);
}
70% {
    transform: perspective(400px) rotateY(10deg);
}
100% {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg);
}
}
.animated.flipInY {
    animation-name: flipInY;
    backface-visibility: visible !important;
}
@keyframes flipOutX {
0% {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
}
100% {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
}
}
.animated.flipOutX {
    animation-name: flipOutX;
    backface-visibility: visible !important;
}
@keyframes flipOutY {
0% {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg);
}
100% {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
}
}
.animated.flipOutY {
    animation-name: flipOutY;
    backface-visibility: visible !important;
}
@keyframes lightSpeedIn {
0% {
    opacity: 0;
    transform: translateX(100%) skewX(-30deg);
}
60% {
    opacity: 1;
    transform: translateX(-20%) skewX(30deg);
}
80% {
    opacity: 1;
    transform: translateX(0%) skewX(-15deg);
}
100% {
    opacity: 1;
    transform: translateX(0%) skewX(0deg);
}
}
.animated.lightSpeedIn {
    animation-name: lightSpeedIn;
    animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
0% {
    opacity: 1;
    transform: translateX(0%) skewX(0deg);
}
100% {
    opacity: 0;
    transform: translateX(100%) skewX(-30deg);
}
}
.animated.lightSpeedOut {
    animation-name: lightSpeedOut;
    animation-timing-function: ease-in;
}
@keyframes rotateIn {
0% {
    opacity: 0;
    transform: rotate(-200deg);
    transform-origin: center center 0;
}
100% {
    opacity: 1;
    transform: rotate(0deg);
    transform-origin: center center 0;
}
}
.animated.rotateIn {
    animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
0% {
    opacity: 0;
    transform: rotate(-90deg);
    transform-origin: left bottom 0;
}
100% {
    opacity: 1;
    transform: rotate(0deg);
    transform-origin: left bottom 0;
}
}
.animated.rotateInDownLeft {
    animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
0% {
    opacity: 0;
    transform: rotate(90deg);
    transform-origin: right bottom 0;
}
100% {
    opacity: 1;
    transform: rotate(0deg);
    transform-origin: right bottom 0;
}
}
.animated.rotateInDownRight {
    animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
0% {
    opacity: 0;
    transform: rotate(90deg);
    transform-origin: left bottom 0;
}
100% {
    opacity: 1;
    transform: rotate(0deg);
    transform-origin: left bottom 0;
}
}
.animated.rotateInUpLeft {
    animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
0% {
    opacity: 0;
    transform: rotate(-90deg);
    transform-origin: right bottom 0;
}
100% {
    opacity: 1;
    transform: rotate(0deg);
    transform-origin: right bottom 0;
}
}
.animated.rotateInUpRight {
    animation-name: rotateInUpRight;
}
@keyframes rotateOut {
0% {
    opacity: 1;
    transform: rotate(0deg);
    transform-origin: center center 0;
}
100% {
    opacity: 0;
    transform: rotate(200deg);
    transform-origin: center center 0;
}
}
.animated.rotateOut {
    animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
0% {
    opacity: 1;
    transform: rotate(0deg);
    transform-origin: left bottom 0;
}
100% {
    opacity: 0;
    transform: rotate(90deg);
    transform-origin: left bottom 0;
}
}
.animated.rotateOutDownLeft {
    animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
0% {
    opacity: 1;
    transform: rotate(0deg);
    transform-origin: right bottom 0;
}
100% {
    opacity: 0;
    transform: rotate(-90deg);
    transform-origin: right bottom 0;
}
}
.animated.rotateOutDownRight {
    animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
0% {
    opacity: 1;
    transform: rotate(0deg);
    transform-origin: left bottom 0;
}
100% {
    opacity: 0;
    transform: rotate(-90deg);
    transform-origin: left bottom 0;
}
}
.animated.rotateOutUpLeft {
    animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
0% {
    opacity: 1;
    transform: rotate(0deg);
    transform-origin: right bottom 0;
}
100% {
    opacity: 0;
    transform: rotate(90deg);
    transform-origin: right bottom 0;
}
}
.animated.rotateOutUpRight {
    animation-name: rotateOutUpRight;
}
@keyframes slideInDown {
0% {
    opacity: 0;
    transform: translateY(-2000px);
}
100% {
    transform: translateY(0px);
}
}
.animated.slideInDown {
    animation-name: slideInDown;
}
@keyframes slideInLeft {
0% {
    opacity: 0;
    transform: translateX(-2000px);
}
100% {
    transform: translateX(0px);
}
}
.animated.slideInLeft {
    animation-name: slideInLeft;
}
@keyframes slideInRight {
0% {
    opacity: 0;
    transform: translateX(2000px);
}
100% {
    transform: translateX(0px);
}
}
.animated.slideInRight {
    animation-name: slideInRight;
}
@keyframes slideOutLeft {
0% {
    transform: translateX(0px);
}
100% {
    opacity: 0;
    transform: translateX(-2000px);
}
}
.animated.slideOutLeft {
    animation-name: slideOutLeft;
}
@keyframes slideOutRight {
0% {
    transform: translateX(0px);
}
100% {
    opacity: 0;
    transform: translateX(2000px);
}
}
.animated.slideOutRight {
    animation-name: slideOutRight;
}
@keyframes slideOutUp {
0% {
    transform: translateY(0px);
}
100% {
    opacity: 0;
    transform: translateY(-2000px);
}
}
.animated.slideOutUp {
    animation-name: slideOutUp;
}
@keyframes hinge {
0% {
    animation-timing-function: ease-in-out;
    transform: rotate(0deg);
    transform-origin: left top 0;
}
20%, 60% {
    animation-timing-function: ease-in-out;
    transform: rotate(80deg);
    transform-origin: left top 0;
}
40% {
    animation-timing-function: ease-in-out;
    transform: rotate(60deg);
    transform-origin: left top 0;
}
80% {
    animation-timing-function: ease-in-out;
    opacity: 1;
    transform: rotate(60deg) translateY(0px);
    transform-origin: left top 0;
}
100% {
    opacity: 0;
    transform: translateY(700px);
}
}
.animated.hinge {
    animation-name: hinge;
}
@keyframes rollIn {
0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
}
100% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
}
}
.animated.rollIn {
    animation-name: rollIn;
}
@keyframes rollOut {
0% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
}
100% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
}
}
.animated.rollOut {
    animation-name: rollOut;
}
@keyframes pop {
50% {
    transform: scale(1.2);
}
100% {
    transform: scale(1);
}
}
.pop {
    box-shadow: 0 0 1px hsla(0, 0%, 0%, 0);
    display: inline-block;
    transform: translateZ(0px);
}
.pop:hover, .pop:focus, .pop:active {
    animation-duration: 0.3s;
    animation-iteration-count: 1;
    animation-name: pop;
    animation-timing-function: linear;
}












li[aria-hidden="true"] .widget-animate {
	opacity:0;
}
li[aria-hidden="false"] .widget-animate {
    animation-duration: 1.5s;
    animation-fill-mode: both;

}
.visible {
    opacity: 0 !important;
}
li[aria-hidden="false"] .hinge {
    animation-duration: 2s;
}

li[aria-hidden="false"] .bounce {
    animation-name: bounce;
}

li[aria-hidden="false"] .flash {
    animation-name: flash;
}

li[aria-hidden="false"] .pulse {
    animation-name: pulse;
}

li[aria-hidden="false"] .shake {
    animation-name: shake;
}

li[aria-hidden="false"] .swing {
    animation-name: swing;
    transform-origin: center top 0;
}

li[aria-hidden="false"] .tada {
    animation-name: tada;
}

li[aria-hidden="false"] .wobble {
    animation-name: wobble;
}

li[aria-hidden="false"] .bounceIn {
    animation-name: bounceIn;
}

li[aria-hidden="false"] .bounceInDown {
    animation-name: bounceInDown;
}

li[aria-hidden="false"] .bounceInLeft {
    animation-name: bounceInLeft;
}

li[aria-hidden="false"] .bounceInRight {
    animation-name: bounceInRight;
}

li[aria-hidden="false"] .bounceInUp {
    animation-name: bounceInUp;
}

li[aria-hidden="false"] .bounceOut {
    animation-name: bounceOut;
}

li[aria-hidden="false"] .bounceOutDown {
    animation-name: bounceOutDown;
}

li[aria-hidden="false"] .bounceOutLeft {
    animation-name: bounceOutLeft;
}

li[aria-hidden="false"] .bounceOutRight {
    animation-name: bounceOutRight;
}

li[aria-hidden="false"] .bounceOutUp {
    animation-name: bounceOutUp;
}

li[aria-hidden="false"] .fadeIn {
    animation-name: fadeIn;
}

li[aria-hidden="false"] .fadeInDown {
    animation-name: fadeInDown;
}

li[aria-hidden="false"] .fadeInDownBig {
    animation-name: fadeInDownBig;
}

li[aria-hidden="false"] .fadeInLeft {
    animation-name: fadeInLeft;
}

li[aria-hidden="false"] .fadeInLeftBig {
    animation-name: fadeInLeftBig;
}

li[aria-hidden="false"] .fadeInRight {
    animation-name: fadeInRight;
}

li[aria-hidden="false"] .fadeInRightBig {
    animation-name: fadeInRightBig;
}

li[aria-hidden="false"] .fadeInUp {
    animation-name: fadeInUp;
}

li[aria-hidden="false"] .fadeInUpBig {
    animation-name: fadeInUpBig;
}

li[aria-hidden="false"] .fadeOut {
    animation-name: fadeOut;
}

li[aria-hidden="false"] .fadeOutDown {
    animation-name: fadeOutDown;
}

li[aria-hidden="false"] .fadeOutDownBig {
    animation-name: fadeOutDownBig;
}

li[aria-hidden="false"] .fadeOutLeft {
    animation-name: fadeOutLeft;
}

li[aria-hidden="false"] .fadeOutLeftBig {
    animation-name: fadeOutLeftBig;
}

li[aria-hidden="false"] .fadeOutRight {
    animation-name: fadeOutRight;
}

li[aria-hidden="false"] .fadeOutRightBig {
    animation-name: fadeOutRightBig;
}

li[aria-hidden="false"] .fadeOutUp {
    animation-name: fadeOutUp;
}

li[aria-hidden="false"] .fadeOutUpBig {
    animation-name: fadeOutUpBig;
}

li[aria-hidden="false"] li[aria-hidden="false"] li[aria-hidden="false"] .flip {
    animation-name: flip;
    backface-visibility: visible;
}

li[aria-hidden="false"] .flipInX {
    animation-name: flipInX;
    backface-visibility: visible !important;
}

li[aria-hidden="false"] .flipInY {
    animation-name: flipInY;
    backface-visibility: visible !important;
}

li[aria-hidden="false"] .flipOutX {
    animation-name: flipOutX;
    backface-visibility: visible !important;
}

li[aria-hidden="false"] .flipOutY {
    animation-name: flipOutY;
    backface-visibility: visible !important;
}

li[aria-hidden="false"] .lightSpeedIn {
    animation-name: lightSpeedIn;
    animation-timing-function: ease-out;
}

li[aria-hidden="false"] .lightSpeedOut {
    animation-name: lightSpeedOut;
    animation-timing-function: ease-in;
}

li[aria-hidden="false"] .rotateIn {
    animation-name: rotateIn;
}

li[aria-hidden="false"] .rotateInDownLeft {
    animation-name: rotateInDownLeft;
}

li[aria-hidden="false"] .rotateInDownRight {
    animation-name: rotateInDownRight;
}

li[aria-hidden="false"] .rotateInUpLeft {
    animation-name: rotateInUpLeft;
}

li[aria-hidden="false"] .rotateInUpRight {
    animation-name: rotateInUpRight;
}

li[aria-hidden="false"] .rotateOut {
    animation-name: rotateOut;
}

li[aria-hidden="false"] .rotateOutDownLeft {
    animation-name: rotateOutDownLeft;
}

li[aria-hidden="false"] .rotateOutDownRight {
    animation-name: rotateOutDownRight;
}

li[aria-hidden="false"] .rotateOutUpLeft {
    animation-name: rotateOutUpLeft;
}

li[aria-hidden="false"] .rotateOutUpRight {
    animation-name: rotateOutUpRight;
}

li[aria-hidden="false"] .slideInDown {
    animation-name: slideInDown;
}

li[aria-hidden="false"] .slideInLeft {
    animation-name: slideInLeft;
}

li[aria-hidden="false"] .slideInRight {
    animation-name: slideInRight;
}

li[aria-hidden="false"] .slideOutLeft {
    animation-name: slideOutLeft;
}

li[aria-hidden="false"] .slideOutRight {
    animation-name: slideOutRight;
}

li[aria-hidden="false"] .slideOutUp {
    animation-name: slideOutUp;
}

li[aria-hidden="false"] .hinge {
    animation-name: hinge;
}

li[aria-hidden="false"] .rollIn {
    animation-name: rollIn;
}

li[aria-hidden="false"] .rollOut {
    animation-name: rollOut;
}
</pre></body></html>