/*
    FontAwesome, wrapped into the "framework.fa" CSS cascade layer. See
    amadee-devdoc/common/ui/cssStylingStrategy.md.

    A plain <link> cannot be assigned to a layer, so this thin file is linked instead (from
    commonTemplate.xhtml) and pulls FontAwesome in via @import layer(). The url()s inside
    font-awesome.min.css stay relative to that file, so its web-fonts keep resolving to ../fonts/.

    Sits at the top of layers/ (not inside a globbed sub-dir), so it is linked on its own via <link> from
    commonTemplate.xhtml rather than bundled — the globbed dirs are
    layers/{framework/extension,framework/overrides,general,chunk,page}/, and a <link> can't carry a layer
    anyway (hence this wrapper).

    The full layer order is declared in amadee.css; the statement below only guarantees framework.fa
    sits above framework.original on pages that do NOT load amadee.css (e.g. the print template).
*/
@layer framework.original, framework.fa;

@import "../../font-awesome-4.4.0/css/font-awesome.min.css" layer(framework.fa);
