/* Style for image links */

/* Style for image links that grow */

.grow img {
  transition: 100ms ease;
}

.grow img:link {
  transition: 100ms ease;
}

.grow img:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  transition: 100ms ease;
}

.grow img:visited {
  transition: 100ms ease;
}

.grow img:active {
  transition: 100ms ease;
}

.grow img:focus {
  transition: 100ms ease;
  outline: none;
}

/* Style for image links with grey border */

.imgborder img {
  transition: 100ms ease;
}

.imgborder img:link {
  transition: 100ms ease;
}

.imgborder img:hover {
  box-shadow: 0 0 0 2px #cccccc;
  transition: 100ms ease;
}

.imgborder img:visited {
  transition: 100ms ease;
}

.imgborder img:active {
  transition: 100ms ease;
}

.imgborder img:focus {
  transition: 100ms ease;
  outline: none;
}

