/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 10 2023 | 02:48:31 */
@keyframes logoSpinForward{from{transform: rotate(0deg);} to{transform: rotate(180deg);}}
.spinMeForward{transform-origin: 50% 50%; animation-name: logoSpinForward; animation-duration: 1s; animation-fill-mode: forwards;}
@keyframes logoSpinBackward{from{transform: rotate(0deg);} to{transform: rotate(-180deg);}}
.spinMeBackward{transform-origin: 50% 50%; animation-name: logoSpinBackward; animation-duration: 1s; animation-fill-mode: forwards;}

@keyframes logoShrink{from{transform: scale(1);} to{transform: scale(.60);}}
.shrinkMe{transform-origin: 50% 50%; animation-name: logoShrink; animation-duration: 1s; animation-fill-mode: forwards;}
@keyframes logoGrow{from{transform: scale(.60);} to{transform: scale(1);}}
.growMe{transform-origin: 50% 50%; animation-name: logoGrow; animation-duration: 1s; animation-fill-mode: forwards;}

@keyframes hideToolbar{from{margin-top: 0px;} to{margin-top: -35px;}}
.toolbarHide{animation-name: hideToolbar; animation-duration: .5s; animation-fill-mode: forwards;}
@keyframes showToolbar{from{margin-top: -35px;} to{margin-top: 0px;}}
.toolbarShow{animation-name: showToolbar; animation-duration: .5s; animation-fill-mode: forwards;}

@keyframes hideDescription{from{opacity: 1;} to{opacity: 0;}}
.descriptionHide{animation-name: hideDescription; animation-duration: .5s; animation-fill-mode: forwards;}
@keyframes showDescription{from{opacity: 0;} to{opacity: 1;}}
.descriptionShow{animation-name: showDescription; animation-duration: .5s; animation-fill-mode: forwards;}

@keyframes shrinkAnchor{from{height: 50px;} to{height: 25px;}}
.anchorShrink{animation-name: shrinkAnchor; animation-duration: .5s; animation-fill-mode: forwards;}
@keyframes growAnchor{from{height: 25px;} to{height: 50px;}}
.anchorGrow{animation-name: growAnchor; animation-duration: .5s; animation-fill-mode: forwards;}

@keyframes shrinkMasthead{from{height: 130px;} to{height: 75px;}}
.mastheadShrink{animation-name: shrinkMasthead; animation-duration: .5s; animation-fill-mode: forwards;}
@keyframes growMasthead{from{height: 75px;} to{height: 130px;}}
.mastheadGrow{animation-name: growMasthead; animation-duration: .5s; animation-fill-mode: forwards;}