/* ======================================================================
 *
 * Filename:    animationen.css
 * Website:     www.albene.de
 * Author:      INTERPAGEmedia
 * Author URL:  http://www.interpage.de
 *
 * Date created:    10/10/2013
 * Last modified:   28/10/2013
 *
 * Description: CSS for animations
 *
 * ====================================================================== */





/* ########## DROP-DOWN NAVIGATION ###################################### */

@keyframes dropdown {
    0% {height: 0;}
    100% {height: 400px;}
}

@-moz-keyframes dropdown {
    0% {height: 0;}
    100% {height: 400px;}
}

@-webkit-keyframes dropdown {
    0% {height: 0;}
    100% {height: 400px;}
}

@-o-keyframes dropdown {
    0% {height: 0;}
    100% {height: 400px;}
}

#navigation ul li:hover ul {
  
  /* Standard CSS3 Befehle */
  animation-name: dropdown;
  animation-duration: 0.3s;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
  
  /* Mozilla */
  -moz-animation-name: dropdown;
  -moz-animation-duration: 0.3s;
  -moz-animation-iteration-count: 1;
  -moz-animation-direction: alternate;
  -moz-animation-timing-function: ease-in;
  -moz-animation-fill-mode: forwards;
  
  /* Webkit (Safari, Chrome) */
  -webkit-animation-name: dropdown;
  -webkit-animation-duration: 0.3s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-direction: alternate;
  -webkit-animation-timing-function: ease-in;
  -webkit-animation-fill-mode: forwards;
  
  /* Opera */
  -o-animation-name: dropdown;
  -o-animation-duration: 0.3s;
  -o-animation-iteration-count: 1;
  -o-animation-direction: alternate;
  -o-animation-timing-function: ease-in;
  -o-animation-fill-mode: forwards;
}