/* /Features/Layout/ContextMenu.razor.rz.scp.css */
*[b-dyaj0qfljk],
*[b-dyaj0qfljk]:after,
*[b-dyaj0qfljk]:before {
    box-sizing: border-box;
}

:root[b-dyaj0qfljk] {
    --color-bg-primary: #d0d6df;
    --color-bg-primary-offset: #f1f3f7;
    --color-bg-secondary: #fff;
    --color-text-primary: #3a3c42;
    --color-text-primary-offset: #898c94;
    --color-orange: #dc9960;
    --color-green: #1eb8b1;
    --color-purple: #657cc4;
    --color-black: var(--color-text-primary);
    --color-red: #d92027;
}

body[b-dyaj0qfljk] {
    font-family: "Inter", sans-serif;
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
}

.menu[b-dyaj0qfljk] {
    display: flex;
    flex-direction: column;
    background-color: var(--color-bg-secondary);
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(#404040, 0.15);
}

.menu-list[b-dyaj0qfljk] {
    margin: 0;
    display: block;
    width: 100%;
    padding: 8px;
    & + .menu-list

{
    border-top: 1px solid #ddd;
}

}

.menu-sub-list[b-dyaj0qfljk] {
    display: none;
    padding: 8px;
    background-color: var(--color-bg-secondary);
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(#404040, 0.15);
    position: absolute;
    left: 100%;
    right: 0;
    z-index: 100;
    width: 100%;
    top: 0;
    flex-direction: column;
    // &:after

{
    // content: "";
    // position: absolute;
    // left: -12px;
    // top: 0;
    // right: 0;
    // bottom: 0;
    // display: block;
    // outline: 2px solid hotpink;
    //
}

&:hover[b-dyaj0qfljk] {
    display: flex;
}

}

.menu-item[b-dyaj0qfljk] {
    position: relative;
}

.menu-button[b-dyaj0qfljk] {
    font: inherit;
    border: 0;
    padding: 8px 8px;
    padding-right: 36px;
    width: 100%;
    border-radius: 8px;
    text-align: left;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--color-bg-secondary);
    &:hover

{
    background-color: var(--color-bg-primary-offset);
    & + .menu-sub-list

{
    display: flex;
}

svg[b-dyaj0qfljk] {
    stroke: var(--color-text-primary);
}

}

svg[b-dyaj0qfljk] {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    stroke: var(--color-text-primary-offset);
    &:nth-of-type(2)

{
    margin-right: 0;
    position: absolute;
    right: 8px;
}

}

&--delete[b-dyaj0qfljk] {
    &:hover

{
    color: var(--color-red);
    svg: first-of-type

{
    stroke: var(--color-red);
}

}
}

&--orange[b-dyaj0qfljk] {
    svg: first-of-type

{
    stroke: var(--color-orange);
}

}

&--green[b-dyaj0qfljk] {
    svg: first-of-type

{
    stroke: var(--color-green);
}

}

&--purple[b-dyaj0qfljk] {
    svg: first-of-type

{
    stroke: var(--color-purple);
}

}

&--black[b-dyaj0qfljk] {
    svg: first-of-type

{
    stroke: var(--color-black);
}

}

&--checked[b-dyaj0qfljk] {
    svg: nth-of-type(2)

{
    stroke: var(--color-purple);
}

}
}

// Codepen spesific styling - only to center the elements in the pen preview and viewport
.container[b-dyaj0qfljk] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

// End Codepen spesific styling[b-dyaj0qfljk]
/* /Features/Layout/HamburgerMenu.razor.rz.scp.css */
/*
 * Made by Erik Terwan
 * 24th of November 2015
 * MIT License
 *
 *
 * If you are thinking of using this in
 * production code, beware of the browser
 * prefixes.
 */

body[b-mbcdudvsf2] {
    margin: 0;
    padding: 0;
    /* make it look decent enough */
    background: #232323;
    color: #cdcdcd;
    font-family: "Avenir Next", "Avenir", sans-serif;
}

#menuToggle[b-mbcdudvsf2] {
    display: block;
    position: relative;
    top: 50px;
    left: 50px;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
}

    #menuToggle a[b-mbcdudvsf2] {
        text-decoration: none;
        color: #232323;
        transition: color 0.3s ease;
    }

        #menuToggle a:hover[b-mbcdudvsf2] {
            color: tomato;
        }


    #menuToggle input[b-mbcdudvsf2] {
        display: block;
        width: 40px;
        height: 32px;
        position: absolute;
        top: -7px;
        left: -5px;
        cursor: pointer;
        opacity: 0; /* hide this */
        z-index: 2; /* and place it over the hamburger */

        -webkit-touch-callout: none;
    }

    /*
 * Just a quick hamburger
 */
    #menuToggle span[b-mbcdudvsf2] {
        display: block;
        width: 33px;
        height: 4px;
        margin-bottom: 5px;
        position: relative;
        background: #cdcdcd;
        border-radius: 3px;
        z-index: 1;
        transform-origin: 4px 0px;
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0), background 0.5s cubic-bezier(0.77,0.2,0.05,1.0), opacity 0.55s ease;
    }

        #menuToggle span:first-child[b-mbcdudvsf2] {
            transform-origin: 0% 0%;
        }

        #menuToggle span:nth-last-child(2)[b-mbcdudvsf2] {
            transform-origin: 0% 100%;
        }

    /* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
    #menuToggle input:checked ~ span[b-mbcdudvsf2] {
        opacity: 1;
        transform: rotate(45deg) translate(-2px, -1px);
        background: #232323;
    }

        /*
 * But let's hide the middle one.
 */
        #menuToggle input:checked ~ span:nth-last-child(3)[b-mbcdudvsf2] {
            opacity: 0;
            transform: rotate(0deg) scale(0.2, 0.2);
        }

        /*
 * Ohyeah and the last one should go the other direction
 */
        #menuToggle input:checked ~ span:nth-last-child(2)[b-mbcdudvsf2] {
            transform: rotate(-45deg) translate(0, -1px);
        }

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu[b-mbcdudvsf2] {
    position: absolute;
    width: 300px;
    margin: -100px 0 0 -50px;
    padding: 50px;
    padding-top: 125px;
    background: #ededed;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    /* to stop flickering of text in safari */

    transform-origin: 0% 0%;
    transform: translate(-100%, 0);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

    #menu li[b-mbcdudvsf2] {
        padding: 10px 0;
        font-size: 22px;
    }

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul[b-mbcdudvsf2] {
    transform: none;
}
/* /Features/Layout/MainLayout.razor.rz.scp.css */
*[b-unhpud9s90] {
    /*box-sizing: border-box;*/
}

.page[b-unhpud9s90] {
    /*position: relative;*/
    /*display: block;*/
    /*flex-direction: row;*/
}

main[b-unhpud9s90] {
    box-sizing: border-box;
    /*flex: 1;*/
    /*display: block;*/
    /*width: 100%;*/
}

.sidebar[b-unhpud9s90] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
    position: sticky;
    display: block;
    width: 100%;
    top: 5rem;
    z-index: 1;
}

/*.top-row {*/
    /*background-color: #f7f7f7;*/
    /*border-bottom: 1px solid #d6d5d5;*/
    /*justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row ::deep a, .top-row ::deep .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

        .top-row ::deep a:hover, .top-row ::deep .btn-link:hover {
            text-decoration: underline;
        }

        .top-row ::deep a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }*/

@media (max-width: 640.98px) {
/*    .top-row {
        justify-content: space-between;
    }

        .top-row ::deep a, .top-row ::deep .btn-link {
            margin-left: 0;
        }*/
}

.bd-sidebar[b-unhpud9s90] {
    grid-area: sidebar;
}
.bd-main[b-unhpud9s90] {
    grid-area: main;
}

@media (min-width: 641px) {
    .page[b-unhpud9s90] {
        /*flex-direction: row;*/
        /*margin-left: 12rem;*/
    }
    .bd-layout[b-unhpud9s90] {
        display: grid;
        /*gap: 1.5rem;*/
        /*grid-template-areas: "sidebar main";*/
        grid-template-areas: "main";
        /*grid-template-columns: 150px auto;*/
        grid-template-columns: auto;
    }
    .bd-main[b-unhpud9s90] {
        display: grid;
        gap: inherit;
        grid-template-areas:
            "intro"
            "toc"
            "content";
        grid-template-rows: auto auto 1fr;
    }
    .bd-links[b-unhpud9s90] {
        position: sticky;
        top: 5rem;
        display: block !important;
        height: calc(100vh - 7rem);
        padding-left: 0.25rem;
        margin-left: -0.25rem;
        overflow-y: auto;
    }
    main[b-unhpud9s90] {
        /*display: flex;
        flex-direction: column;
        height: 100%;
        min-height: 100vh;*/
    }

    .sidebar[b-unhpud9s90] {
        /*top: 0;
        bottom: 0;*/
        /*max-width: 12rem;*/
        /*height: 100vh;
        overflow-y: auto;
        position: fixed;
        z-index: 1000;*/
    }

/*    .top-row {
        position: sticky;
        top: 0;
        z-index: 1;
    }

        .top-row.auth ::deep a:first-child {
            flex: 1;
            text-align: right;
            width: 0;
        }

    .top-row, article {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }*/

    /* --------------------- */
    .navbar-toggler[b-unhpud9s90] {
        display: none;
    }

    .collapse[b-unhpud9s90] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-unhpud9s90] {
        /* Allow sidebar to scroll for tall menus */
        /*height: calc(100vh - 3.5rem);*/
        /*overflow-y: auto;*/
    }
}

.navbar-toggler[b-unhpud9s90] {
    background-color: rgba(255, 255, 255, 0.1);
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand[b-unhpud9s90] {
    font-size: 1.1rem;
}

.bi[b-unhpud9s90] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-unhpud9s90] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-unhpud9s90] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-unhpud9s90] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-unhpud9s90] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-unhpud9s90] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-unhpud9s90] {
        padding-bottom: 1rem;
    }

    .nav-item[b-unhpud9s90]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

        .nav-item[b-unhpud9s90]  a.active {
            background-color: rgba(255,255,255,0.37);
            color: white;
        }

        .nav-item[b-unhpud9s90]  a:hover {
            background-color: rgba(255,255,255,0.1);
            color: white;
        }
/* /Features/Layout/ModernSidebarMenu.razor.rz.scp.css */
aside[b-9jzikay191] {
    color: #fff;
    width: 150px;
    padding-left: 20px;
    height: 100vh;
    background-image: linear-gradient(30deg, #0048bd, #44a7fd);
    border-top-right-radius: 80px;
}

    aside a[b-9jzikay191] {
        font-size: 12px;
        color: #fff;
        display: block;
        padding: 12px;
        padding-left: 10px;
        text-decoration: none;
        -webkit-tap-highlight-color: transparent;
    }

        aside a:hover[b-9jzikay191] {
            color: #3f5efb;
            background: #fff;
            outline: none;
            position: relative;
            background-color: #fff;
            border-top-left-radius: 20px;
            border-bottom-left-radius: 20px;
        }

        aside a i[b-9jzikay191] {
            margin-right: 5px;
        }

        aside a:hover[b-9jzikay191]::after {
            content: "";
            position: absolute;
            background-color: transparent;
            bottom: 100%;
            right: 0;
            height: 35px;
            width: 35px;
            border-bottom-right-radius: 18px;
            box-shadow: 0 20px 0 0 #fff;
        }

        aside a:hover[b-9jzikay191]::before {
            content: "";
            position: absolute;
            background-color: transparent;
            top: 38px;
            right: 0;
            height: 35px;
            width: 35px;
            border-top-right-radius: 18px;
            box-shadow: 0 -20px 0 0 #fff;
        }

    aside p[b-9jzikay191] {
        margin: 0;
        padding: 40px 0;
    }

body[b-9jzikay191] {
    font-family: 'Roboto';
    width: 100%;
    height: 100vh;
    margin: 0;
}

.social[b-9jzikay191] {
    height: 0;
}

    .social i[b-9jzikay191]:before {
        width: 14px;
        height: 14px;
        font-size: 14px;
        position: fixed;
        color: #fff;
        background: #0077B5;
        padding: 10px;
        border-radius: 50%;
        top: 5px;
        right: 5px;
    }
/* /Features/Layout/SchoolPanelMenu.razor.rz.scp.css */
*[b-9zpirfknfe] {
    margin: 0; 
    padding: 0;
    box-sizing: border-box;
  }

  body[b-9zpirfknfe] {
    padding: 30px; 
    font-family: "Helvetica Neue", helvetica, arial; 
    background: url('https://subtlepatterns.com/patterns/white_carbonfiber.png');
  }

  #container[b-9zpirfknfe] {
    /*position: relative;*/
    /*width: 940px;*/   
  }

  #container[b-9zpirfknfe]:after {
    content: "";
    display: block;
    clear: both;
    height: 0;
  }

  #menu[b-9zpirfknfe] {
    /*position: relative;*/
    float: left;
    width: 100%;
    padding: 0 20px;
    border-radius: 3px;
    box-shadow: inset 0 1px 1px rgba(255,255,255,.5), inset 0 -1px 0 rgba(0,0,0,.15), 0 1px 3px rgba(0,0,0,.15);
    /*background: #ccc;*/ 
  }

  #menu[b-9zpirfknfe], #menu ul[b-9zpirfknfe] {
    list-style: none;
  }

  #menu > li[b-9zpirfknfe] {
    float: left;
    position: relative;
    border-right: 1px solid rgba(0,0,0,.1);
    box-shadow: 1px 0 0 rgba(255,255,255,.25);
    perspective: 1000px;
    
  }

  #menu > li:first-child[b-9zpirfknfe] {
    border-left: 1px solid rgba(255,255,255,.25);
    box-shadow: -1px 0 0 rgba(0,0,0,.1), 1px 0 0 rgba(255,255,255,.25);
  }

  #menu a[b-9zpirfknfe] {
    display: block;
    position: relative;
    z-index: 10;
    padding: 13px 20px 13px 20px;
    text-decoration: none;
    color: rgba(75,75,75,1);
    line-height: 1;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -.05em;
    background: transparent;    
    text-shadow: 0 1px 1px rgba(255,255,255,.9);
    transition: all .25s ease-in-out;
  
  }

  #menu > li:hover > a[b-9zpirfknfe] {
    background: #333;
    color: rgba(0,223,252,1);
    text-shadow: none;
  }

  #menu li ul[b-9zpirfknfe]  {
    position: absolute;
    left: 0;
    z-index: 1;
    width: 200px;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    background: transparent;
    overflow: hidden;
    transform-origin: 50% 0%;
  }


  #menu li:hover ul[b-9zpirfknfe] {
    
    padding: 15px 0;
    background: #333;
    opacity: 1;
    visibility: visible;
    box-shadow: 1px 1px 7px rgba(0,0,0,.5);
    animation-name: swingdown-b-9zpirfknfe;
    animation-duration: 1s;
    animation-timing-function: ease;

  }

  @keyframes swingdown-b-9zpirfknfe {
    0% {
      opacity: .99999;
      transform: rotateX(90deg);
    }

    30% {     
      transform: rotateX(-20deg) rotateY(5deg);
      animation-timing-function: ease-in-out;
    }

    65% {
      transform: rotateX(20deg) rotateY(-3deg);
      animation-timing-function: ease-in-out;
    }

    100% {
      transform: rotateX(0);
      animation-timing-function: ease-in-out;
    }
  }

  #menu li li a[b-9zpirfknfe] {
    padding-left: 15px;
    font-weight: 400;
    color: #ddd;
    text-shadow: none;
    border-top: dotted 1px transparent;
    border-bottom: dotted 1px transparent;
    transition: all .15s linear;
  }

  #menu li li a:hover[b-9zpirfknfe] {
    color: rgba(0,223,252,1);
    border-top: dotted 1px rgba(255,255,255,.15);
    border-bottom: dotted 1px rgba(255,255,255,.15);
    background: rgba(0,223,252,.02);
  }
/* /Features/Layout/SidebarMenuHover.razor.rz.scp.css */
/*@import url(//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css);*/
/*@import url(https://fonts.googleapis.com/css?family=Titillium+Web:300);*/

.fa-2x[b-uqb1smk8vz] {
    font-size: 2em;
}

.fa[b-uqb1smk8vz] {
    position: relative;
    display: table-cell;
    width: 60px;
    height: 36px;
    text-align: center;
    vertical-align: middle;
    font-size: 20px;
}


.main-menu:hover[b-uqb1smk8vz], nav.main-menu.expanded[b-uqb1smk8vz] {
    width: 250px;
    overflow: visible;
}

.main-menu[b-uqb1smk8vz] {
    background: #212121;
    border-right: 1px solid #e5e5e5;
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    left: 0;
    width: 60px;
    overflow: hidden;
    -webkit-transition: width .05s linear;
    transition: width .05s linear;
    -webkit-transform: translateZ(0) scale(1,1);
    z-index: 1000;
}

    .main-menu > ul[b-uqb1smk8vz] {
        margin: 7px 0;
    }

    .main-menu li[b-uqb1smk8vz] {
        position: relative;
        display: block;
        width: 250px;
    }

        .main-menu li > a[b-uqb1smk8vz] {
            position: relative;
            display: table;
            border-collapse: collapse;
            border-spacing: 0;
            color: #999;
            font-family: arial;
            font-size: 14px;
            text-decoration: none;
            -webkit-transform: translateZ(0) scale(1,1);
            -webkit-transition: all .1s linear;
            transition: all .1s linear;
        }

    .main-menu .nav-icon[b-uqb1smk8vz] {
        position: relative;
        display: table-cell;
        width: 60px;
        height: 36px;
        text-align: center;
        vertical-align: middle;
        font-size: 18px;
    }

    .main-menu .nav-text[b-uqb1smk8vz] {
        position: relative;
        display: table-cell;
        vertical-align: middle;
        width: 190px;
        font-family: 'Titillium Web', sans-serif;
    }

    .main-menu > ul.logout[b-uqb1smk8vz] {
        position: absolute;
        left: 0;
        bottom: 0;
    }

.no-touch .scrollable.hover[b-uqb1smk8vz] {
    overflow-y: hidden;
}

    .no-touch .scrollable.hover:hover[b-uqb1smk8vz] {
        overflow-y: auto;
        overflow: visible;
    }

a:hover[b-uqb1smk8vz], a:focus[b-uqb1smk8vz] {
    text-decoration: none;
}

nav[b-uqb1smk8vz] {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    /*-o-user-select: none;*/
    user-select: none;
}

    nav ul[b-uqb1smk8vz], nav li[b-uqb1smk8vz] {
        outline: 0;
        margin: 0;
        padding: 0;
    }

    .main-menu li:hover > a[b-uqb1smk8vz], nav.main-menu li.active > a[b-uqb1smk8vz], .dropdown-menu > li > a:hover[b-uqb1smk8vz], .dropdown-menu > li > a:focus[b-uqb1smk8vz], .dropdown-menu > .active > a[b-uqb1smk8vz], .dropdown-menu > .active > a:hover[b-uqb1smk8vz], .dropdown-menu > .active > a:focus[b-uqb1smk8vz], .no-touch .dashboard-page nav.dashboard-menu ul li:hover a[b-uqb1smk8vz], .dashboard-page nav.dashboard-menu ul li.active a[b-uqb1smk8vz] {
        color: #fff;
        background-color: #000000;
    }

.area[b-uqb1smk8vz] {
    float: left;
    background: #e2e2e2;
    width: 100%;
    height: 100%;
}

/*@font-face {
    font-family: 'Titillium Web';
    font-style: normal;
    font-weight: 300;
    src: local('Titillium WebLight'), local('TitilliumWeb-Light'), url(http://themes.googleusercontent.com/static/fonts/titilliumweb/v2/anMUvcNT0H1YN4FII8wpr24bNCNEoFTpS2BTjF6FB5E.woff) format('woff');
}*/
