/**
 * Using Fontspring's 'The New Bulletproof @Font-Face Syntax'
 * http://www.fontspring.com/blog/the-new-bulletproof-font-face-syntax
 *
 * example:
 *
 * @font-face {
 *  font-family: 'MyFontFamily';
 *  src: url('myfont-webfont.eot?#iefix') format('embedded-opentype'),
 *       url('myfont-webfont.woff') format('woff'),
 *       url('myfont-webfont.ttf')  format('truetype'),
 *       url('myfont-webfont.svg#svgFontName') format('svg');
 *  }
 *
 * We also include multiple font styles and weights in a single font family declarations,
 * AKA 'style linking'.
 * see: http://www.fontspring.com/support/troubleshooting/style-linking
 *
 * This can cause problems with IE8, iPad 1, and Blackberry.
 * Do you care? If so, see:
 * http://www.smashingmagazine.com/2013/02/14/setting-weights-and-styles-at-font-face-declaration/
 *
 */
/**
 * Milo Sans, regular
 *
 * font-family: 'MiloWeb', sans-serif;
 * font-weight: normal *or* 400;
 *
 */
@font-face {
  font-family: 'MiloWeb';
  src: url("MiloWeb.eot?#iefix") format("embedded-opentype"), url("MiloWeb.woff") format("woff"), url("MiloComp.ttf") format("truetype");
  font-weight: 400;
}
