/* fonts.css */

/*
 * Credit and References:
 * - Font by Ralph Oliver du Carrois <http://www.carrois.com/download.html>
 * - Font conversion by FontSquirrel <http://www.fontsquirrel.com/fontface/generator>
 * - CSS syntax inspired by:
 *   - Paul Irish <http://paulirish.com/2009/bulletproof-font-face-implementation-syntax/>
 *   - Richard Fink <http://readableweb.com/mo-bulletproofer-font-face-css-syntax/>
 */

/*******************
 * Bold/Weight 700 *
 *******************/

/* For IE: */
@font-face {
    font-family : "Colaborate";
    src         : url("colaborate-bold.eot");
    font-style  : normal;
    font-weight : 700;
}

/* For good browsers: */
@font-face {
    font-family : "Colaborate";
    src         : local("✪"),
                  url("colaborate-bold.otf") format("opentype");
    font-style  : normal;
    font-weight : 700;
}

/*********************
 * Medium/Weight 500 *
 *********************/

/* For IE: */
@font-face {
    font-family : "Colaborate";
    src         : url("colaborate-medium.eot");
    font-style  : normal;
    font-weight : 500;
}

/* For good browsers: */
@font-face {
    font-family : "Colaborate";
    src         : local("✪"),
                  url("colaborate-medium.otf") format("opentype");
    font-style  : normal;
    font-weight : 500;
}

/*********************
 * Normal/Weight 400 *
 *********************/

/* For IE: */
@font-face {
    font-family : "Colaborate";
    src         : url("colaborate-regular.eot");
    font-style  : normal;
    font-weight : 400;
}

/* For good browsers: */
@font-face {
    font-family : "Colaborate";
    src         : local("✪"),
                  url("colaborate-regular.otf") format("opentype");
    font-style  : normal;
    font-weight : 400;
}

/********************
 * Light/Weight 300 *
 ********************/

/* For IE: */
@font-face {
    font-family : "Colaborate";
    src         : url("colaborate-light.eot");
    font-style  : normal;
    font-weight : 300;
}

/* For good browsers: */
@font-face {
    font-family : "Colaborate";
    src         : local("✪"),
                  url("colaborate-light.otf") format("opentype");
    font-style  : normal;
    font-weight : 300;
}

/*******************
 * Thin/Weight 100 *
 *******************/

/* For IE: */
@font-face {
    font-family : "Colaborate";
    src         : url("colaborate-thin.eot");
    font-style  : normal;
    font-weight : 100;
}

/* For good browsers: */
@font-face {
    font-family : "Colaborate";
    src         : local("✪"),
                  url("colaborate-thin.otf") format("opentype");
    font-style  : normal;
    font-weight : 100;
}

