/*User Style*/

/*Bounce Arrow*/
@-webkit-keyframes bounce {
    0%, 100% {-webkit-transform: translateY(0);}
    40% {-webkit-transform: translateY(-20px);}
}

@-moz-keyframes bounce {
    0%, 100% {-moz-transform: translateY(0);}
    40% {-moz-transform: translateY(-20px);}
}

@-o-keyframes bounce {
    0%, 100% {-o-transform: translateY(0);}
    40% {-o-transform: translateY(-20px);}
}

@keyframes bounce {
    0%, 100% {transform: translateY(0);}
    40% {transform: translateY(-20px);}
}

.bounce {
    -webkit-border-radius:50%;
    -moz-border-radius:50%;
    -ms-border-radius:50%;
    border-radius:50%;
    animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    -moz-animation: bounce 2s infinite;
    -o-animation: bounce 2s infinite;
}

/*Page Elements*/
.AccordionPanel {
    margin-bottom: 10px;
}

/*Fixed position for Tablet version*/
#menuu11972, #menuu16624, #menuu18306, #menuu18558, #pamphletu22745, .logo-top p, .bg-top-menu, .line {
    position: fixed;
}