﻿path {
  

   stroke-dasharray: 600;
   stroke-dashoffset: 600;
   -moz-animation: dash 10s linear forwards;
   -o-animation: dash 10s linear forwards;
   -webkit-animation: dash 10s linear forwards;
   animation: dash 10s linear forwards;
}

@-moz-keyframes dash {
   to {
      stroke-dashoffset: 0;
   }
}

@-webkit-keyframes dash {
   to {
      stroke-dashoffset: 0;
   }
}

@keyframes dash {
   to {
      stroke-dashoffset: 0;
   }
}