/*
 * We don't use the full CSS provided by FontAwesome since it doesn't support IE6 and adds
 * a lot of classes that might conflict with our existing CSS. Once we can drop support
 * for IE6 we could consider switching to use the full FontAwesome distribution (including CSS).
 * But for the moment we simply declare the font-face and let our normal module system
 * handle the rest as is needed.
 *
 * UPDATE: We no longer support IE 6-8, so we could theoretically switch to using the 'normal'
 * FontAwesome distribution. Unfortunately, this is not a trivial update and mechanisms would
 * need to be put in to place to ensure backwards compatibility for BaseCase apps that might
 * use older or obsolete icon names.
 */

@font-face {
  font-family: 'FontAwesome';
  src: url('../font-awesome-4.6.3/fonts/fontawesome-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
