@charset "utf-8";
/* CSS Document */

/*B&W*/
.bw {
  -webkit-transition: all  50s ease;
     -moz-transition: all 1s ease;
       -o-transition: all 1s ease;
      -ms-transition: all 1s ease;
          transition: all 1s ease;
}
 
.bw:hover {
  -webkit-filter: grayscale(75%);
}