@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/


@-webkit-keyframes UnderBrd {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes UnderBrd {
  from {
	  border:none;
    
  }

  to {
    border-bottom:3px solid red;
  }
}

.UnderBrd {
  -webkit-animation-name: fadeInDownMin;
  animation-name: fadeInDownMin;
}

