/** Fade in **/
@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}


@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
/** Slide down **/
@keyframes slidedown {
    from{ max-height: 0; }
    to  { max-height: 100%; }
}
@-moz-keyframes slidedown {
    from{ max-height: 0; }
    to  { max-height: 100%; }
}

@-webkit-keyframes slidedown {
    from{ max-height: 0; }
    to  { max-height: 100%; }
}

@-ms-keyframes slidedown {
    from{ max-height: 0; }
    to  { max-height: 100%; }
}

@-o-keyframes slidedown {
    from{ max-height: 0; }
    to  { max-height: 100%; }
}
/** List In Y **/
@keyframes listInY {
 to{
	transform: translateY(0px);
  }
}
@-webkit-keyframes listInY {
 to{
    -webkit-transform: translateY(0px);
  }
}
@-moz-keyframes listInY {
 to{
    -moz-transform: translateY(0px);
  }
}
@-ms-keyframes listInY {
  to{
    -ms-transform: translateY(0px);
  }
}
@-o-keyframes listInY {
 to{
    -o-transform: translateY(0px);
  }
}
/** Slide LTR **/
@keyframes width {
    from{ width: 0; }
    to  { width: 100%; }
}
@-moz-keyframes width {
    from{ width: 0; }
    to  { width: 100%; }
}

@-webkit-keyframes width {
    from{ width: 0; }
    to  { width: 100%; }
}

@-ms-keyframes width {
    from{ width: 0; }
    to  { width: 100%; }
}

@-o-keyframes width {
    from{ width: 0; }
    to  { width: 100%; }
}