/*
    ttf, otf - for: FireFox, Chrome < 6, Safari and Opera
    oet - for: Internet Explorer < 9
    svg - for: Safari Mobile (iPhone, iPad for iOS < 4.2), Android browser
    woff - for: Internet Explorer >= 9, FireFox >= 3.6, Chrome >= 6

    Generate fonts at: http://fontface.codeandmore.com/
*/

@font-face {
    font-family: CorbelBold;
    src: url('corbelb.eot');
    src: url('corbelb.eot') format('embedded-opentype'),
         url('corbelb.woff') format('woff'),
         url('corbelb.ttf') format('truetype'),
         url('corbelb.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

/*
    Fonts are large files taking a long time to load, and while they load Chrome
    does not display the text and in IE you see an update once the font arrives.
    For this reason preloading is required, but it is not supported natively.
    
    Add a div with the class below to an early page (such as the login screen)
    to repload the font before it is needed.
    NOTE: The div must contain text for the file to be loaded!
*/

.preload_CorbelBold {
    font-family: CorbelBold;
	position: absolute;
	left: -99999px;
}
