/**
 * @file
 * Styles for Groovy+'s images.
 */
/*global styles*/
.mt-style-sharp img,
.mt-style-sharp .overlay,
.mt-style-sharp .mt-video-container a, {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.mt-style-oval img,
.mt-style-rounded img,
.mt-style-oval .overlay,
.mt-style-rounded .overlay,
.mt-style-oval .mt-video-container a,
.mt-style-rounded .mt-video-container a {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

/*images specific styles*/
.mt-style-image-sharp img,
.mt-style-image-sharp .overlay,
.mt-style-image-sharp .mt-video-container a, {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.mt-style-image-rounded img,
.mt-style-image-rounded .overlay,
.mt-style-image-rounded .mt-video-container a  {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
