
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_c68bb9aa93231263ee5d3e77.woff')format("woff");}.ff1{font-family:ff1;line-height:0.990234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3293205064c793a961d163d1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ebaabdd881d8a17041189d61.woff')format("woff");}.ff3{font-family:ff3;line-height:0.765137;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7fddd60ee61a4c5cd2686492.woff')format("woff");}.ff4{font-family:ff4;line-height:1.031000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_04e7d0e0cf83cd564971d67b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.990234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_3a6407b1da7470bc0f5c7037.woff')format("woff");}.ff6{font-family:ff6;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ae2b3287cf508cd99843638a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_73942f5d97e0959bb73cd8c8.woff')format("woff");}.ff8{font-family:ff8;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a53db2f03bc93e02b24f5547.woff')format("woff");}.ff9{font-family:ff9;line-height:0.990234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0c58118c1706b0b01bbd340e.woff')format("woff");}.ffa{font-family:ffa;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_9bc6efab708180d274d2dd84.woff')format("woff");}.ffb{font-family:ffb;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b84c76c417e50f79f3018039.woff')format("woff");}.ffc{font-family:ffc;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_2c90970cfc65ee90ad03c7cd.woff')format("woff");}.ffd{font-family:ffd;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_1e0b3c5b652d41cf14f7165d.woff')format("woff");}.ffe{font-family:ffe;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_a0ccbc6eb2bd376f3d47d36b.woff')format("woff");}.fff{font-family:fff;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_fd46617db1393b9f1c7f401c.woff')format("woff");}.ff10{font-family:ff10;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_d38ce90760e28c28b32f248a.woff')format("woff");}.ff11{font-family:ff11;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_49ec316ff7bf1a7b865fec72.woff')format("woff");}.ff12{font-family:ff12;line-height:0.990234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_00bcb3c9e0b24a0ecf7a25d9.woff')format("woff");}.ff13{font-family:ff13;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_4eecf66903d2096a54b80ea9.woff')format("woff");}.ff14{font-family:ff14;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_13ae9f39ee2d9540559d11cf.woff')format("woff");}.ff15{font-family:ff15;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_a0d8565fd35d0a3bde24f3c2.woff')format("woff");}.ff16{font-family:ff16;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_ea9f536a5e027a9d1372beda.woff')format("woff");}.ff17{font-family:ff17;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_ae409a486b0732d07fe8c445.woff')format("woff");}.ff18{font-family:ff18;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_4006207130b54d5de9607a23.woff')format("woff");}.ff19{font-family:ff19;line-height:0.771973;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_7489fc27e166c96ebeb08dff.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_0fbcb186de99199dbbc4758d.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_ce590d75511588523872afa5.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_e53adbd18b6574408bc963a2.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.734375;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_416c65a39ebcde6196505fcd.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_bd37cc9ee4c87d9e656dd082.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.990234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_7a598fd9bf703881819b30c2.woff')format("woff");}.ff20{font-family:ff20;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_f831855c37b12da268756473.woff')format("woff");}.ff21{font-family:ff21;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_3694f383d7c68f17d81cf7b6.woff')format("woff");}.ff22{font-family:ff22;line-height:0.765137;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_3b9956e12f9d6493273fa8ad.woff')format("woff");}.ff23{font-family:ff23;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_d838aceb0041bdb8cbfe30f0.woff')format("woff");}.ff24{font-family:ff24;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_aa2fe0784aa8687ff27fdd2a.woff')format("woff");}.ff25{font-family:ff25;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_9f25ff4a9d8ecd36c264a1fb.woff')format("woff");}.ff26{font-family:ff26;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_a7f777332735db35fd7bc778.woff')format("woff");}.ff27{font-family:ff27;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_b67abc516265b5f3aa9d684e.woff')format("woff");}.ff28{font-family:ff28;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_cb451c2c7d7b7bf06262f3b9.woff')format("woff");}.ff29{font-family:ff29;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_7686259481a7ecd4f9d37b12.woff')format("woff");}.ff2a{font-family:ff2a;line-height:0.990234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_c6074bd3dc11846aa586a002.woff')format("woff");}.ff2b{font-family:ff2b;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_8af71412ef5007635342ff33.woff')format("woff");}.ff2c{font-family:ff2c;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_573028885e78060af299a5c2.woff')format("woff");}.ff2d{font-family:ff2d;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_6babce94054e030b87e81421.woff')format("woff");}.ff2e{font-family:ff2e;line-height:0.771973;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_34f699a7c177f2fa9fc63c36.woff')format("woff");}.ff2f{font-family:ff2f;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_2ff8ec226bae8dfcbea4e02a.woff')format("woff");}.ff30{font-family:ff30;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_966b6c9aebdec6c37199269f.woff')format("woff");}.ff31{font-family:ff31;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_fdad68e193014a66ec69acee.woff')format("woff");}.ff32{font-family:ff32;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_84a4df58b04398f1e8cc855d.woff')format("woff");}.ff33{font-family:ff33;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_27c6108e56f8473201e03014.woff')format("woff");}.ff34{font-family:ff34;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_33211dd3a99768aa7491b7e0.woff')format("woff");}.ff35{font-family:ff35;line-height:0.990234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_2ee8b4b3f4311e5136f01d0e.woff')format("woff");}.ff36{font-family:ff36;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_8c8536ccec31dc20af696266.woff')format("woff");}.ff37{font-family:ff37;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_f37efcadacbf4552482f7706.woff')format("woff");}.ff38{font-family:ff38;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_ce4675c1f0cd20b20d7189b3.woff')format("woff");}.ff39{font-family:ff39;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_0187c3e63d7ddb7526ccf186.woff')format("woff");}.ff3a{font-family:ff3a;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_0187c3e63d7ddb7526ccf186.woff')format("woff");}.ff3b{font-family:ff3b;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_b422dfebdc8ce936d5af9438.woff')format("woff");}.ff3c{font-family:ff3c;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_96ddf21f8184fb81d4ba31af.woff')format("woff");}.ff3d{font-family:ff3d;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_d771b1c608c0b5dbd2b99d4a.woff')format("woff");}.ff3e{font-family:ff3e;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_a5c2273014fd1e3f4fa571d6.woff')format("woff");}.ff3f{font-family:ff3f;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_fa82d9b709b30b696423be6b.woff')format("woff");}.ff40{font-family:ff40;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_5e2604691d87ef0bf78bacec.woff')format("woff");}.ff41{font-family:ff41;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_6d63d644680b12c387c1ec4e.woff')format("woff");}.ff42{font-family:ff42;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43;src:url('chunks/assets/font_8830d5e5d18848cefcc77eef.woff')format("woff");}.ff43{font-family:ff43;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_18a0317fd48afc6b38c19aa0.woff')format("woff");}.ff44{font-family:ff44;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url('chunks/assets/font_13dd8ded7f9747866c03ab81.woff')format("woff");}.ff45{font-family:ff45;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46;src:url('chunks/assets/font_166700d904def67eef4f2044.woff')format("woff");}.ff46{font-family:ff46;line-height:0.990234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url('chunks/assets/font_2c71b8f21ecae7dfc1afa2f4.woff')format("woff");}.ff47{font-family:ff47;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48;src:url('chunks/assets/font_26291e8af7a6703a3b6b8f44.woff')format("woff");}.ff48{font-family:ff48;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49;src:url('chunks/assets/font_6d8962a6af1f02c0e607a76a.woff')format("woff");}.ff49{font-family:ff49;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a;src:url('chunks/assets/font_d25377a94a92fdebfb030676.woff')format("woff");}.ff4a{font-family:ff4a;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b;src:url('chunks/assets/font_b32d5380bcd438c15f1cb5d4.woff')format("woff");}.ff4b{font-family:ff4b;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4c;src:url('chunks/assets/font_5f6f53074e2c28be403b9a3c.woff')format("woff");}.ff4c{font-family:ff4c;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d;src:url('chunks/assets/font_df890c03d26335534ffb2990.woff')format("woff");}.ff4d{font-family:ff4d;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4e;src:url('chunks/assets/font_b32d5380bcd438c15f1cb5d4.woff')format("woff");}.ff4e{font-family:ff4e;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4f;src:url('chunks/assets/font_7375478c768656e7ec5236eb.woff')format("woff");}.ff4f{font-family:ff4f;line-height:0.771973;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff50;src:url('chunks/assets/font_df890c03d26335534ffb2990.woff')format("woff");}.ff50{font-family:ff50;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff51;src:url('chunks/assets/font_5f6f53074e2c28be403b9a3c.woff')format("woff");}.ff51{font-family:ff51;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff52;src:url('chunks/assets/font_d382e4cb2d14b7a2a885f41f.woff')format("woff");}.ff52{font-family:ff52;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff53;src:url('chunks/assets/font_c7016624cb5e9cf1b5de069c.woff')format("woff");}.ff53{font-family:ff53;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff54;src:url('chunks/assets/font_e9d006ec6a61413c33b3e9ce.woff')format("woff");}.ff54{font-family:ff54;line-height:0.990234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff55;src:url('chunks/assets/font_8ba001bf289c7f8ab8922180.woff')format("woff");}.ff55{font-family:ff55;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff56;src:url('chunks/assets/font_cd52368aba6dc6f5b45f9efb.woff')format("woff");}.ff56{font-family:ff56;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff57;src:url('chunks/assets/font_090c14b7db45a35749517b9d.woff')format("woff");}.ff57{font-family:ff57;line-height:0.703613;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff58;src:url('chunks/assets/font_49be63f46be91ab45556fac9.woff')format("woff");}.ff58{font-family:ff58;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff59;src:url('chunks/assets/font_5ade5f8a8fe726756cd0ad0f.woff')format("woff");}.ff59{font-family:ff59;line-height:0.990234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5a;src:url('chunks/assets/font_c8023377f12a2f06f84aca58.woff')format("woff");}.ff5a{font-family:ff5a;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5b;src:url('chunks/assets/font_be37de6ede480d015a3d25e3.woff')format("woff");}.ff5b{font-family:ff5b;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5c;src:url('chunks/assets/font_9bcd2b3d4cdfc4157585c213.woff')format("woff");}.ff5c{font-family:ff5c;line-height:0.990234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5d;src:url('chunks/assets/font_316c9ead0e36409707a8255e.woff')format("woff");}.ff5d{font-family:ff5d;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5e;src:url('chunks/assets/font_4ceb0827ff408564fe2510e7.woff')format("woff");}.ff5e{font-family:ff5e;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5f;src:url('chunks/assets/font_89532fd9ba3711fe3dd13b53.woff')format("woff");}.ff5f{font-family:ff5f;line-height:0.990234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff60;src:url('chunks/assets/font_1649da77844825b43b0e0306.woff')format("woff");}.ff60{font-family:ff60;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff61;src:url('chunks/assets/font_204a083a6eaf3af97a5d78d5.woff')format("woff");}.ff61{font-family:ff61;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff62;src:url('chunks/assets/font_ef55beec97b427aa3792ce18.woff')format("woff");}.ff62{font-family:ff62;line-height:0.990234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff63;src:url('chunks/assets/font_61b76e12df267f620c25821a.woff')format("woff");}.ff63{font-family:ff63;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff64;src:url('chunks/assets/font_204a083a6eaf3af97a5d78d5.woff')format("woff");}.ff64{font-family:ff64;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff65;src:url('chunks/assets/font_37aa1eb082c3650048697321.woff')format("woff");}.ff65{font-family:ff65;line-height:0.990234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff66;src:url('chunks/assets/font_f04f892f1953c287f3856c60.woff')format("woff");}.ff66{font-family:ff66;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff67;src:url('chunks/assets/font_204a083a6eaf3af97a5d78d5.woff')format("woff");}.ff67{font-family:ff67;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff68;src:url('chunks/assets/font_91c201501ddbf729e912ebe5.woff')format("woff");}.ff68{font-family:ff68;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff69;src:url('chunks/assets/font_99f90498eff9a098bc1c4602.woff')format("woff");}.ff69{font-family:ff69;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6a;src:url('chunks/assets/font_bbdf91c39d7cb402099a84ec.woff')format("woff");}.ff6a{font-family:ff6a;line-height:0.990234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6b;src:url('chunks/assets/font_91556bafcad75aae4f7d4b22.woff')format("woff");}.ff6b{font-family:ff6b;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6c;src:url('chunks/assets/font_bbdf91c39d7cb402099a84ec.woff')format("woff");}.ff6c{font-family:ff6c;line-height:0.990234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6d;src:url('chunks/assets/font_99f90498eff9a098bc1c4602.woff')format("woff");}.ff6d{font-family:ff6d;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6e;src:url('chunks/assets/font_e0869c623d106b69f17b96c3.woff')format("woff");}.ff6e{font-family:ff6e;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6f;src:url('chunks/assets/font_c78a8e07420bb4771a7142c6.woff')format("woff");}.ff6f{font-family:ff6f;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff70;src:url('chunks/assets/font_8fa78e154bac493b531bf496.woff')format("woff");}.ff70{font-family:ff70;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff71;src:url('chunks/assets/font_2d54ce1f2b53ffd62efc0acb.woff')format("woff");}.ff71{font-family:ff71;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff72;src:url('chunks/assets/font_32c8651e39717b77de4daf3c.woff')format("woff");}.ff72{font-family:ff72;line-height:0.907715;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff73;src:url('chunks/assets/font_eead877c9030fbffa3a52fcb.woff')format("woff");}.ff73{font-family:ff73;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff74;src:url('chunks/assets/font_ff69d70c534e4a17b8f6285c.woff')format("woff");}.ff74{font-family:ff74;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff75;src:url('chunks/assets/font_5c6ad785697644473ce30174.woff')format("woff");}.ff75{font-family:ff75;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff76;src:url('chunks/assets/font_1541cfca36fa7f268290ddb8.woff')format("woff");}.ff76{font-family:ff76;line-height:0.724121;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff77;src:url('chunks/assets/font_e6fbaeeb0f5b2bcce3507fc6.woff')format("woff");}.ff77{font-family:ff77;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff78;src:url('chunks/assets/font_445de2cc71212f08daf222fd.woff')format("woff");}.ff78{font-family:ff78;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff79;src:url('chunks/assets/font_1541cfca36fa7f268290ddb8.woff')format("woff");}.ff79{font-family:ff79;line-height:0.724121;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7a;src:url('chunks/assets/font_c723fd141d62a8b2557e152a.woff')format("woff");}.ff7a{font-family:ff7a;line-height:0.990234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7b;src:url('chunks/assets/font_c7aa6ce1ee437e0231442ee9.woff')format("woff");}.ff7b{font-family:ff7b;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7c;src:url('chunks/assets/font_844f455a78aee20ddaab0f65.woff')format("woff");}.ff7c{font-family:ff7c;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7d;src:url('chunks/assets/font_397cb328beaa151e75668820.woff')format("woff");}.ff7d{font-family:ff7d;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7e;src:url('chunks/assets/font_7904b383af0cfa95fe89d98e.woff')format("woff");}.ff7e{font-family:ff7e;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7f;src:url('chunks/assets/font_fd622ffe65c37efd14b8e801.woff')format("woff");}.ff7f{font-family:ff7f;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff80;src:url('chunks/assets/font_edaa99e96f7363704fc6beb8.woff')format("woff");}.ff80{font-family:ff80;line-height:0.990234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff81;src:url('chunks/assets/font_4ca2c44bff71bb6dbf8dcdcd.woff')format("woff");}.ff81{font-family:ff81;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff82;src:url('chunks/assets/font_8eb3ab8ef0934f6e84d2886f.woff')format("woff");}.ff82{font-family:ff82;line-height:1.034000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff83;src:url('chunks/assets/font_4b2f9949cac3c3da28c67900.woff')format("woff");}.ff83{font-family:ff83;line-height:1.036000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250187,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.062268px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-90.558959px;}
.ws11{word-spacing:-89.147456px;}
.ws1f{word-spacing:-82.052054px;}
.ws2{word-spacing:-71.999997px;}
.wsf{word-spacing:-52.718653px;}
.ws17{word-spacing:-50.000230px;}
.ws12{word-spacing:-48.169200px;}
.ws19{word-spacing:-48.107790px;}
.ws1{word-spacing:-48.061934px;}
.ws1e{word-spacing:-47.055145px;}
.wsa{word-spacing:-44.981453px;}
.ws10{word-spacing:-44.121092px;}
.wsc{word-spacing:-41.837826px;}
.ws14{word-spacing:-41.617220px;}
.ws8{word-spacing:-41.286312px;}
.ws15{word-spacing:-41.176012px;}
.ws7{word-spacing:-39.617556px;}
.ws5{word-spacing:-39.217179px;}
.ws1b{word-spacing:-36.763902px;}
.ws4{word-spacing:-35.638813px;}
.ws1a{word-spacing:-35.372439px;}
.ws3{word-spacing:-34.289933px;}
.ws13{word-spacing:-31.105371px;}
.ws18{word-spacing:-16.301249px;}
.ws6{word-spacing:-13.236328px;}
.wse{word-spacing:-0.383985px;}
.ws9{word-spacing:-0.378000px;}
.ws1d{word-spacing:-0.311985px;}
.ws1c{word-spacing:-0.149985px;}
.wsd{word-spacing:-0.144000px;}
.ws0{word-spacing:0.000000px;}
.ws16{word-spacing:204.357139px;}
._c{margin-left:-18.505442px;}
._9{margin-left:-15.067760px;}
._10{margin-left:-12.343446px;}
._f{margin-left:-11.336295px;}
._7{margin-left:-10.170206px;}
._e{margin-left:-8.998159px;}
._3{margin-left:-7.945285px;}
._16{margin-left:-6.895641px;}
._4{margin-left:-5.655190px;}
._a{margin-left:-3.981831px;}
._5{margin-left:-2.175476px;}
._6{margin-left:-1.001733px;}
._b{width:1.133548px;}
._8{width:2.914290px;}
._d{width:3.921102px;}
._15{width:11.852419px;}
._2{width:17.601540px;}
._1a{width:19.219175px;}
._19{width:20.790838px;}
._11{width:24.143798px;}
._1{width:25.976577px;}
._14{width:47.194659px;}
._12{width:56.835260px;}
._0{width:61.242186px;}
._17{width:78.375893px;}
._18{width:94.149197px;}
._13{width:243.189110px;}
.fc5{color:rgb(0,99,166);}
.fc3{color:rgb(44,86,150);}
.fc2{color:transparent;}
.fc4{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:53.999998px;}
.fs25{font-size:65.204996px;}
.fs21{font-size:126.899999px;}
.fsa{font-size:136.889994px;}
.fs2{font-size:143.999994px;}
.fs20{font-size:144.899998px;}
.fs8{font-size:145.394998px;}
.fs27{font-size:149.985003px;}
.fs9{font-size:166.287337px;}
.fsf{font-size:167.985002px;}
.fs11{font-size:168.434993px;}
.fs22{font-size:169.784993px;}
.fs15{font-size:170.684993px;}
.fs6{font-size:179.999993px;}
.fs1b{font-size:182.061970px;}
.fs5{font-size:182.744997px;}
.fs4{font-size:182.763931px;}
.fs13{font-size:183.509988px;}
.fs24{font-size:191.969992px;}
.fs18{font-size:196.499093px;}
.fs1e{font-size:196.514983px;}
.fs1d{font-size:199.490760px;}
.fs1f{font-size:203.985001px;}
.fs1a{font-size:209.969991px;}
.fs16{font-size:215.075300px;}
.fs26{font-size:221.985000px;}
.fsc{font-size:251.999990px;}
.fs28{font-size:257.984998px;}
.fs29{font-size:261.269994px;}
.fse{font-size:269.999989px;}
.fs1{font-size:276.029988px;}
.fs3{font-size:311.984996px;}
.fs19{font-size:323.954978px;}
.fsd{font-size:329.984995px;}
.fs1c{font-size:371.459068px;}
.fs12{font-size:377.999984px;}
.fs17{font-size:378.359993px;}
.fs10{font-size:378.854993px;}
.fs14{font-size:383.984993px;}
.fs23{font-size:393.299993px;}
.fs7{font-size:399.374983px;}
.fs0{font-size:444.014972px;}
.fs2a{font-size:551.969995px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000010px;}
.y98{bottom:8.774928px;}
.y4d{bottom:10.223503px;}
.y10{bottom:12.837356px;}
.y13{bottom:12.885937px;}
.y16{bottom:13.026079px;}
.y39{bottom:14.400010px;}
.yc0{bottom:14.424803px;}
.yb9{bottom:14.743981px;}
.yc4{bottom:15.751754px;}
.ya1{bottom:16.804957px;}
.y17d{bottom:21.374999px;}
.y38{bottom:26.122247px;}
.y15a{bottom:26.915363px;}
.yc{bottom:27.430559px;}
.y124{bottom:30.022559px;}
.yf1{bottom:31.394339px;}
.y27{bottom:31.950359px;}
.y178{bottom:32.624999px;}
.yf6{bottom:32.934023px;}
.ye6{bottom:33.002567px;}
.y16e{bottom:34.139087px;}
.y5c{bottom:35.777627px;}
.y140{bottom:35.922923px;}
.y187{bottom:36.548242px;}
.y138{bottom:36.750058px;}
.y143{bottom:36.808855px;}
.y160{bottom:39.525802px;}
.y131{bottom:42.010126px;}
.y183{bottom:42.650314px;}
.y4e{bottom:45.087190px;}
.y129{bottom:47.045302px;}
.y188{bottom:47.062438px;}
.y17e{bottom:48.374998px;}
.y176{bottom:48.375020px;}
.ybb{bottom:52.819090px;}
.y142{bottom:56.355730px;}
.y185{bottom:58.390738px;}
.y4c{bottom:60.848501px;}
.y150{bottom:62.837565px;}
.y148{bottom:67.454025px;}
.y125{bottom:72.322557px;}
.ybf{bottom:72.416303px;}
.y28{bottom:74.250357px;}
.y17c{bottom:75.374997px;}
.yf{bottom:76.438388px;}
.y12{bottom:76.486970px;}
.y15{bottom:76.627111px;}
.yb{bottom:76.930557px;}
.yc3{bottom:80.012605px;}
.y4f{bottom:84.021404px;}
.y97{bottom:86.846090px;}
.y141{bottom:87.974996px;}
.ya0{bottom:91.908851px;}
.yb2{bottom:108.000006px;}
.y78{bottom:109.996606px;}
.y4b{bottom:111.473499px;}
.yc2{bottom:117.360005px;}
.y37{bottom:117.412224px;}
.y58{bottom:120.899987px;}
.ya{bottom:126.430555px;}
.y149{bottom:130.274995px;}
.y1a{bottom:137.180370px;}
.y96{bottom:146.471088px;}
.yb8{bottom:151.603776px;}
.y69{bottom:154.631704px;}
.y180{bottom:155.624872px;}
.y137{bottom:159.615785px;}
.y26{bottom:161.925023px;}
.y4a{bottom:162.098497px;}
.y77{bottom:163.996604px;}
.y123{bottom:165.020357px;}
.y9f{bottom:167.012745px;}
.y36{bottom:168.037222px;}
.yc1{bottom:171.821520px;}
.yb0{bottom:179.236134px;}
.y10d{bottom:183.121624px;}
.yc5{bottom:183.901603px;}
.y84{bottom:196.461863px;}
.ycf{bottom:198.111282px;}
.y19{bottom:200.180368px;}
.yd3{bottom:202.746952px;}
.y95{bottom:206.096085px;}
.y49{bottom:212.723495px;}
.y68{bottom:213.131702px;}
.y76{bottom:217.996601px;}
.yb7{bottom:220.033674px;}
.y184{bottom:220.056327px;}
.y19b{bottom:220.522419px;}
.y25{bottom:224.925021px;}
.y9{bottom:225.430551px;}
.y101{bottom:232.059101px;}
.y10c{bottom:237.121622px;}
.y192{bottom:239.421964px;}
.yaf{bottom:242.236131px;}
.y117{bottom:247.222761px;}
.ye3{bottom:247.251964px;}
.y83{bottom:260.586860px;}
.y18{bottom:263.180365px;}
.y94{bottom:265.721083px;}
.yce{bottom:266.736279px;}
.y35{bottom:269.287218px;}
.y67{bottom:271.631699px;}
.y75{bottom:271.996599px;}
.yd2{bottom:273.621949px;}
.y8{bottom:274.930549px;}
.y1a3{bottom:275.727074px;}
.y16d{bottom:277.784196px;}
.y17f{bottom:281.042494px;}
.y19a{bottom:282.397416px;}
.yf0{bottom:283.123288px;}
.y159{bottom:286.963912px;}
.y100{bottom:287.184098px;}
.y24{bottom:287.925018px;}
.yb6{bottom:288.463572px;}
.y10b{bottom:291.121620px;}
.ye2{bottom:291.126962px;}
.y99{bottom:295.919998px;}
.yae{bottom:305.236128px;}
.y48{bottom:313.973490px;}
.y116{bottom:314.722758px;}
.y191{bottom:315.921961px;}
.y57{bottom:316.649978px;}
.y9e{bottom:317.220533px;}
.y34{bottom:319.912215px;}
.y7{bottom:324.430546px;}
.y82{bottom:324.711858px;}
.y93{bottom:325.346080px;}
.y74{bottom:325.996597px;}
.y17{bottom:326.180362px;}
.y16c{bottom:327.284194px;}
.y66{bottom:330.131697px;}
.ye1{bottom:335.001960px;}
.ycd{bottom:335.361276px;}
.yff{bottom:342.309096px;}
.y10a{bottom:345.121618px;}
.y169{bottom:348.434283px;}
.y23{bottom:350.925015px;}
.yef{bottom:353.998285px;}
.yb5{bottom:356.893469px;}
.y158{bottom:357.838909px;}
.y47{bottom:364.598488px;}
.yad{bottom:368.236126px;}
.y33{bottom:370.537213px;}
.y17b{bottom:373.292491px;}
.y6{bottom:373.930544px;}
.y16b{bottom:376.784192px;}
.ye0{bottom:378.876959px;}
.y73{bottom:379.996595px;}
.y199{bottom:380.850320px;}
.y115{bottom:382.222755px;}
.y130{bottom:382.647404px;}
.y122{bottom:383.465288px;}
.y1a2{bottom:384.852069px;}
.y92{bottom:384.971078px;}
.y65{bottom:388.631695px;}
.y81{bottom:388.836855px;}
.y190{bottom:392.421958px;}
.ya6{bottom:392.660886px;}
.yfe{bottom:397.434094px;}
.y168{bottom:397.934281px;}
.y14{bottom:399.959993px;}
.ycc{bottom:403.986274px;}
.y22{bottom:413.925013px;}
.y56{bottom:414.524974px;}
.y46{bottom:415.223486px;}
.y32{bottom:421.162211px;}
.y173{bottom:422.228193px;}
.ydf{bottom:422.751957px;}
.yee{bottom:424.873282px;}
.yb4{bottom:425.323367px;}
.y16a{bottom:426.284190px;}
.y157{bottom:428.713906px;}
.y13a{bottom:431.741538px;}
.y72{bottom:433.996592px;}
.y91{bottom:444.596075px;}
.y5{bottom:444.954005px;}
.y64{bottom:447.131692px;}
.y167{bottom:447.434279px;}
.y114{bottom:449.722752px;}
.ya5{bottom:451.160884px;}
.yd7{bottom:452.425456px;}
.yfd{bottom:452.559092px;}
.y80{bottom:452.961852px;}
.y109{bottom:453.121613px;}
.y12f{bottom:453.522401px;}
.y121{bottom:454.340285px;}
.y11a{bottom:463.034555px;}
.y13f{bottom:465.637833px;}
.y45{bottom:465.848484px;}
.yde{bottom:466.626955px;}
.y9d{bottom:467.428322px;}
.y18f{bottom:468.921955px;}
.y14f{bottom:469.777218px;}
.y31{bottom:471.787209px;}
.ycb{bottom:472.611271px;}
.y198{bottom:478.725316px;}
.y71{bottom:487.996590px;}
.yb3{bottom:493.753264px;}
.y1a1{bottom:493.977065px;}
.yac{bottom:494.236121px;}
.yed{bottom:495.748279px;}
.ybe{bottom:496.079989px;}
.y166{bottom:496.934277px;}
.y17a{bottom:498.710221px;}
.y172{bottom:499.853190px;}
.y90{bottom:504.221073px;}
.y19d{bottom:504.614906px;}
.y63{bottom:505.631690px;}
.y108{bottom:507.121611px;}
.yfc{bottom:507.684089px;}
.ya4{bottom:509.660882px;}
.ydd{bottom:510.501953px;}
.y44{bottom:516.473482px;}
.y7f{bottom:517.086850px;}
.y113{bottom:517.222750px;}
.yd6{bottom:523.300453px;}
.y12e{bottom:524.397398px;}
.y120{bottom:525.215282px;}
.y1b{bottom:532.050008px;}
.y13e{bottom:536.512830px;}
.y21{bottom:539.925008px;}
.y4{bottom:540.579001px;}
.y14e{bottom:540.652215px;}
.yca{bottom:541.236268px;}
.y70{bottom:541.996588px;}
.y9c{bottom:542.532216px;}
.y5a{bottom:542.575392px;}
.y18e{bottom:545.421952px;}
.y165{bottom:546.434275px;}
.y139{bottom:546.491533px;}
.y51{bottom:547.656306px;}
.y128{bottom:553.265617px;}
.ydc{bottom:554.376951px;}
.yab{bottom:557.236118px;}
.y107{bottom:561.121609px;}
.yfb{bottom:562.809087px;}
.y8f{bottom:563.846071px;}
.y62{bottom:564.131687px;}
.yec{bottom:566.623276px;}
.y43{bottom:567.098480px;}
.y59{bottom:568.109550px;}
.ya3{bottom:568.160879px;}
.y156{bottom:570.463900px;}
.y11{bottom:571.679986px;}
.y119{bottom:572.159550px;}
.y30{bottom:573.037205px;}
.y136{bottom:576.136999px;}
.y147{bottom:577.239586px;}
.y7e{bottom:581.211847px;}
.y112{bottom:584.722747px;}
.y12c{bottom:587.810190px;}
.y163{bottom:588.734205px;}
.y179{bottom:591.502925px;}
.y164{bottom:595.934273px;}
.y6f{bottom:595.996586px;}
.y11f{bottom:596.090279px;}
.y20{bottom:602.925005px;}
.y1a0{bottom:603.102060px;}
.y13d{bottom:607.387827px;}
.yf5{bottom:608.932044px;}
.yc9{bottom:609.861265px;}
.y55{bottom:610.274966px;}
.y14d{bottom:611.527212px;}
.y42{bottom:617.723478px;}
.yfa{bottom:617.934085px;}
.yaa{bottom:620.236115px;}
.y18d{bottom:621.921948px;}
.y61{bottom:622.631685px;}
.y8e{bottom:623.471068px;}
.y2f{bottom:623.662203px;}
.y127{bottom:624.140614px;}
.yeb{bottom:637.498273px;}
.y162{bottom:638.234203px;}
.y155{bottom:641.338897px;}
.y7d{bottom:645.336844px;}
.y135{bottom:647.011996px;}
.y146{bottom:648.114583px;}
.y3{bottom:649.703997px;}
.y6e{bottom:649.996583px;}
.ydb{bottom:650.001947px;}
.y111{bottom:652.222744px;}
.y171{bottom:655.103183px;}
.y50{bottom:656.781301px;}
.y12b{bottom:658.685187px;}
.yd5{bottom:665.050447px;}
.y11e{bottom:666.965276px;}
.y41{bottom:668.348476px;}
.y106{bottom:669.121604px;}
.yf9{bottom:673.059082px;}
.yf4{bottom:677.557041px;}
.y13c{bottom:678.262825px;}
.yc8{bottom:678.486262px;}
.y60{bottom:681.131682px;}
.y14c{bottom:682.402209px;}
.y8d{bottom:683.096066px;}
.ya9{bottom:683.236113px;}
.y177{bottom:684.295556px;}
.y161{bottom:687.734201px;}
.y132{bottom:688.260381px;}
.y9b{bottom:692.740004px;}
.y126{bottom:695.015611px;}
.y18c{bottom:698.421945px;}
.yda{bottom:700.626945px;}
.y6d{bottom:703.996581px;}
.y54{bottom:708.149962px;}
.yea{bottom:708.373270px;}
.y7c{bottom:709.461842px;}
.y154{bottom:712.213894px;}
.y145{bottom:718.989580px;}
.y105{bottom:723.121602px;}
.ya2{bottom:723.628359px;}
.y2e{bottom:724.912199px;}
.y19e{bottom:725.287164px;}
.yf8{bottom:728.184080px;}
.y1f{bottom:728.925000px;}
.y12a{bottom:729.560184px;}
.y170{bottom:732.728180px;}
.yd4{bottom:735.925444px;}
.y15f{bottom:737.234199px;}
.y11d{bottom:737.840273px;}
.y197{bottom:739.795883px;}
.y8c{bottom:742.721063px;}
.ye{bottom:745.559979px;}
.yf3{bottom:746.182038px;}
.ya8{bottom:746.236110px;}
.yc7{bottom:747.111259px;}
.yd9{bottom:751.251943px;}
.y14b{bottom:753.277206px;}
.y6c{bottom:757.996579px;}
.y9a{bottom:767.843898px;}
.y19c{bottom:767.864895px;}
.y40{bottom:769.598471px;}
.y19f{bottom:773.109832px;}
.y7b{bottom:773.586839px;}
.y18b{bottom:774.921942px;}
.y2d{bottom:775.537196px;}
.y175{bottom:776.545556px;}
.y104{bottom:777.121600px;}
.ye9{bottom:779.248267px;}
.yba{bottom:781.763807px;}
.y153{bottom:783.088891px;}
.yf7{bottom:783.309078px;}
.y15e{bottom:786.734197px;}
.y110{bottom:787.222738px;}
.y144{bottom:789.864577px;}
.y1e{bottom:791.924997px;}
.y5f{bottom:798.131678px;}
.y196{bottom:801.670881px;}
.yd8{bottom:801.876941px;}
.y8b{bottom:802.346061px;}
.y2{bottom:804.953990px;}
.y53{bottom:806.024958px;}
.ya7{bottom:809.236107px;}
.y16f{bottom:810.353177px;}
.yf2{bottom:814.807035px;}
.y3f{bottom:820.223469px;}
.y14a{bottom:824.152203px;}
.yd1{bottom:824.360855px;}
.y2c{bottom:826.162194px;}
.y103{bottom:831.121597px;}
.y15d{bottom:836.234195px;}
.y7a{bottom:837.711836px;}
.ye8{bottom:850.123264px;}
.y152{bottom:853.963888px;}
.y10f{bottom:854.722736px;}
.y1d{bottom:854.924994px;}
.y5e{bottom:856.631675px;}
.y8a{bottom:861.971058px;}
.y174{bottom:862.340897px;}
.y3e{bottom:870.848467px;}
.y2b{bottom:876.787192px;}
.y193{bottom:884.249963px;}
.yc6{bottom:884.361254px;}
.y15c{bottom:885.734193px;}
.y6b{bottom:886.499963px;}
.y195{bottom:899.122607px;}
.ybd{bottom:901.154954px;}
.y52{bottom:903.899954px;}
.y5d{bottom:915.131673px;}
.y1c{bottom:917.924992px;}
.ye7{bottom:920.998261px;}
.y3d{bottom:921.473465px;}
.y89{bottom:921.596056px;}
.y10e{bottom:922.222733px;}
.y151{bottom:924.838885px;}
.y11c{bottom:929.735205px;}
.y15b{bottom:935.234191px;}
.y18a{bottom:949.392086px;}
.yb1{bottom:953.178951px;}
.ye5{bottom:955.687467px;}
.y134{bottom:958.838691px;}
.y12d{bottom:965.729887px;}
.y3c{bottom:972.098463px;}
.y182{bottom:972.710253px;}
.y102{bottom:976.260491px;}
.y88{bottom:981.221053px;}
.y2a{bottom:982.927215px;}
.y194{bottom:994.747603px;}
.y85{bottom:998.999958px;}
.y6a{bottom:1000.124958px;}
.y79{bottom:1001.249958px;}
.yd0{bottom:1010.491392px;}
.y186{bottom:1018.049955px;}
.ybc{bottom:1026.155754px;}
.y118{bottom:1037.913048px;}
.y29{bottom:1039.730043px;}
.y87{bottom:1040.846051px;}
.y5b{bottom:1046.585786px;}
.yd{bottom:1050.862125px;}
.y3b{bottom:1057.701373px;}
.y189{bottom:1058.517082px;}
.y13b{bottom:1058.777776px;}
.y11b{bottom:1063.010951px;}
.ye4{bottom:1064.812463px;}
.y133{bottom:1067.963687px;}
.y181{bottom:1081.835249px;}
.y86{bottom:1100.471048px;}
.y3a{bottom:1106.811631px;}
.h16{height:41.317381px;}
.h3d{height:45.242334px;}
.h43{height:92.249996px;}
.h36{height:97.095849px;}
.hd{height:104.343746px;}
.h15{height:104.739561px;}
.h22{height:108.703120px;}
.h3e{height:109.687495px;}
.h5{height:110.179683px;}
.h11{height:110.750096px;}
.h35{height:110.868309px;}
.h10{height:111.247052px;}
.h42{height:113.221101px;}
.h41{height:114.759033px;}
.h7{height:122.399995px;}
.h9{height:122.759995px;}
.h44{height:124.874995px;}
.h40{height:124.875016px;}
.h13{height:127.232548px;}
.h1a{height:128.531493px;}
.h1c{height:128.875798px;}
.h38{height:129.908732px;}
.h21{height:130.597355px;}
.h27{height:135.878901px;}
.hc{height:137.724604px;}
.ha{height:138.886198px;}
.h8{height:138.900587px;}
.h2f{height:139.302298px;}
.h1e{height:140.410230px;}
.h3a{height:146.883290px;}
.h2b{height:150.348672px;}
.h33{height:150.360829px;}
.h32{height:152.637706px;}
.h3c{height:153.984771px;}
.h3b{height:155.379200px;}
.h34{height:156.076414px;}
.h2d{height:158.502738px;}
.h25{height:164.562009px;}
.h3f{height:169.848874px;}
.h17{height:192.814445px;}
.h47{height:197.393795px;}
.h48{height:199.907266px;}
.h19{height:205.664054px;}
.h4{height:210.257218px;}
.h45{height:222.715852px;}
.h6{height:235.512111px;}
.h29{height:235.565460px;}
.hb{height:237.644821px;}
.h4a{height:238.668522px;}
.he{height:238.711176px;}
.h2c{height:247.869849px;}
.h37{height:249.100001px;}
.h1f{height:251.355758px;}
.h18{height:252.483637px;}
.h2e{height:269.279989px;}
.h46{height:274.114287px;}
.h23{height:278.051633px;}
.h30{height:280.408066px;}
.h31{height:281.159988px;}
.h1d{height:285.345691px;}
.h28{height:285.617456px;}
.h26{height:287.929676px;}
.h1b{height:289.875866px;}
.h20{height:293.801018px;}
.h39{height:296.895405px;}
.hf{height:304.211413px;}
.h3{height:338.214530px;}
.h49{height:421.153106px;}
.h2a{height:546.479977px;}
.h24{height:823.679966px;}
.h14{height:1009.439958px;}
.h12{height:1151.279952px;}
.h2{height:1214.999949px;}
.h0{height:1214.999989px;}
.h1{height:1215.000000px;}
.wb{width:311.624987px;}
.w4{width:444.599981px;}
.wc{width:496.755199px;}
.w2{width:527.759978px;}
.wa{width:589.069487px;}
.w3{width:655.919973px;}
.w5{width:726.119970px;}
.w9{width:909.359962px;}
.w8{width:970.559960px;}
.w6{width:1087.919955px;}
.w7{width:1670.039930px;}
.w1{width:2159.999910px;}
.w0{width:2160.000000px;}
.x0{left:0.000000px;}
.x67{left:9.000000px;}
.x36{left:10.802034px;}
.x4e{left:14.716013px;}
.x5a{left:17.313685px;}
.x45{left:19.344111px;}
.x1b{left:20.615929px;}
.xf{left:27.874620px;}
.x14{left:29.108435px;}
.x28{left:31.278218px;}
.x53{left:32.731025px;}
.x47{left:34.331609px;}
.x54{left:37.986884px;}
.x38{left:41.021146px;}
.x31{left:42.789848px;}
.x58{left:45.527342px;}
.x29{left:48.420365px;}
.xd{left:49.454141px;}
.x4a{left:53.042951px;}
.x63{left:55.324086px;}
.x6b{left:57.568302px;}
.x1c{left:59.812644px;}
.x52{left:67.266289px;}
.x49{left:68.457043px;}
.x40{left:70.258544px;}
.x66{left:72.073516px;}
.x33{left:73.142349px;}
.x39{left:76.602582px;}
.x1a{left:83.058621px;}
.x41{left:88.273555px;}
.x62{left:91.497528px;}
.x4c{left:100.218434px;}
.x9{left:101.794917px;}
.x6f{left:104.370139px;}
.x6e{left:105.565451px;}
.x6d{left:107.868185px;}
.x3a{left:109.143615px;}
.x35{left:113.742329px;}
.x24{left:121.499995px;}
.x6a{left:122.624995px;}
.xe{left:125.954138px;}
.x1d{left:131.197407px;}
.x5b{left:137.665525px;}
.x32{left:142.624456px;}
.x60{left:143.645521px;}
.x70{left:149.185541px;}
.x4d{left:151.326105px;}
.x10{left:153.333978px;}
.x42{left:156.953853px;}
.x48{left:160.556851px;}
.x30{left:167.076702px;}
.x46{left:174.968864px;}
.x1e{left:202.599747px;}
.x5f{left:204.852550px;}
.x3d{left:225.083911px;}
.x37{left:240.349801px;}
.x43{left:243.649162px;}
.x15{left:250.298558px;}
.x74{left:256.783438px;}
.x56{left:277.579500px;}
.xa{left:302.399987px;}
.x44{left:313.456648px;}
.x69{left:342.909939px;}
.x71{left:378.896474px;}
.xb{left:380.137000px;}
.x68{left:384.193240px;}
.xc{left:397.200086px;}
.x2e{left:401.125148px;}
.x57{left:459.187181px;}
.x2c{left:477.625145px;}
.x18{left:517.791556px;}
.x2d{left:554.125142px;}
.x16{left:581.272096px;}
.x3e{left:601.385864px;}
.x51{left:630.616043px;}
.x73{left:672.135388px;}
.x4f{left:675.528151px;}
.x64{left:685.793775px;}
.x17{left:688.375612px;}
.x59{left:695.426587px;}
.x3b{left:700.608499px;}
.x6c{left:734.239086px;}
.x50{left:765.651194px;}
.x2f{left:786.266679px;}
.x65{left:824.309400px;}
.x19{left:827.900462px;}
.x3f{left:933.911246px;}
.x34{left:941.793549px;}
.x11{left:968.626472px;}
.x21{left:971.415392px;}
.x25{left:972.515541px;}
.x1{left:981.818131px;}
.x22{left:1024.398494px;}
.x26{left:1045.060460px;}
.x23{left:1102.410209px;}
.x1f{left:1107.563786px;}
.x5c{left:1111.044950px;}
.x27{left:1117.622957px;}
.x61{left:1134.451177px;}
.x72{left:1150.829232px;}
.x5d{left:1172.234400px;}
.x20{left:1179.159486px;}
.x5e{left:1233.441429px;}
.x3c{left:1251.897764px;}
.x13{left:1310.039945px;}
.x2a{left:1382.399402px;}
.x12{left:1440.705000px;}
.x2b{left:1458.899399px;}
.x55{left:1570.930423px;}
.x4{left:1614.641081px;}
.x6{left:1775.797324px;}
.x4b{left:1781.851030px;}
.x8{left:1810.057094px;}
.x5{left:1812.307094px;}
.x7{left:1888.420372px;}
.x3{left:1894.713340px;}
.x2{left:1928.850058px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.055349pt;}
.wsb{word-spacing:-80.496853pt;}
.ws11{word-spacing:-79.242183pt;}
.ws1f{word-spacing:-72.935159pt;}
.ws2{word-spacing:-63.999997pt;}
.wsf{word-spacing:-46.861025pt;}
.ws17{word-spacing:-44.444649pt;}
.ws12{word-spacing:-42.817067pt;}
.ws19{word-spacing:-42.762480pt;}
.ws1{word-spacing:-42.721719pt;}
.ws1e{word-spacing:-41.826796pt;}
.wsa{word-spacing:-39.983513pt;}
.ws10{word-spacing:-39.218749pt;}
.wsc{word-spacing:-37.189179pt;}
.ws14{word-spacing:-36.993085pt;}
.ws8{word-spacing:-36.698944pt;}
.ws15{word-spacing:-36.600899pt;}
.ws7{word-spacing:-35.215605pt;}
.ws5{word-spacing:-34.859715pt;}
.ws1b{word-spacing:-32.679024pt;}
.ws4{word-spacing:-31.678945pt;}
.ws1a{word-spacing:-31.442168pt;}
.ws3{word-spacing:-30.479941pt;}
.ws13{word-spacing:-27.649219pt;}
.ws18{word-spacing:-14.489999pt;}
.ws6{word-spacing:-11.765625pt;}
.wse{word-spacing:-0.341320pt;}
.ws9{word-spacing:-0.336000pt;}
.ws1d{word-spacing:-0.277320pt;}
.ws1c{word-spacing:-0.133320pt;}
.wsd{word-spacing:-0.128000pt;}
.ws0{word-spacing:0.000000pt;}
.ws16{word-spacing:181.650791pt;}
._c{margin-left:-16.449281pt;}
._9{margin-left:-13.393565pt;}
._10{margin-left:-10.971952pt;}
._f{margin-left:-10.076707pt;}
._7{margin-left:-9.040183pt;}
._e{margin-left:-7.998363pt;}
._3{margin-left:-7.062476pt;}
._16{margin-left:-6.129459pt;}
._4{margin-left:-5.026836pt;}
._a{margin-left:-3.539405pt;}
._5{margin-left:-1.933756pt;}
._6{margin-left:-0.890430pt;}
._b{width:1.007598pt;}
._8{width:2.590480pt;}
._d{width:3.485424pt;}
._15{width:10.535484pt;}
._2{width:15.645813pt;}
._1a{width:17.083711pt;}
._19{width:18.480745pt;}
._11{width:21.461154pt;}
._1{width:23.090290pt;}
._14{width:41.950808pt;}
._12{width:50.520231pt;}
._0{width:54.437499pt;}
._17{width:69.667461pt;}
._18{width:83.688175pt;}
._13{width:216.168098pt;}
.fsb{font-size:47.999998pt;}
.fs25{font-size:57.959997pt;}
.fs21{font-size:112.799999pt;}
.fsa{font-size:121.679995pt;}
.fs2{font-size:127.999995pt;}
.fs20{font-size:128.799999pt;}
.fs8{font-size:129.239999pt;}
.fs27{font-size:133.320002pt;}
.fs9{font-size:147.810966pt;}
.fsf{font-size:149.320002pt;}
.fs11{font-size:149.719994pt;}
.fs22{font-size:150.919994pt;}
.fs15{font-size:151.719994pt;}
.fs6{font-size:159.999993pt;}
.fs1b{font-size:161.832862pt;}
.fs5{font-size:162.439997pt;}
.fs4{font-size:162.456827pt;}
.fs13{font-size:163.119989pt;}
.fs24{font-size:170.639993pt;}
.fs18{font-size:174.665861pt;}
.fs1e{font-size:174.679985pt;}
.fs1d{font-size:177.325120pt;}
.fs1f{font-size:181.320000pt;}
.fs1a{font-size:186.639992pt;}
.fs16{font-size:191.178044pt;}
.fs26{font-size:197.320000pt;}
.fsc{font-size:223.999991pt;}
.fs28{font-size:229.319998pt;}
.fs29{font-size:232.239994pt;}
.fse{font-size:239.999990pt;}
.fs1{font-size:245.359990pt;}
.fs3{font-size:277.319996pt;}
.fs19{font-size:287.959980pt;}
.fsd{font-size:293.319996pt;}
.fs1c{font-size:330.185838pt;}
.fs12{font-size:335.999986pt;}
.fs17{font-size:336.319994pt;}
.fs10{font-size:336.759994pt;}
.fs14{font-size:341.319994pt;}
.fs23{font-size:349.599993pt;}
.fs7{font-size:354.999985pt;}
.fs0{font-size:394.679976pt;}
.fs2a{font-size:490.639996pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000009pt;}
.y98{bottom:7.799936pt;}
.y4d{bottom:9.087558pt;}
.y10{bottom:11.410983pt;}
.y13{bottom:11.454166pt;}
.y16{bottom:11.578737pt;}
.y39{bottom:12.800008pt;}
.yc0{bottom:12.822047pt;}
.yb9{bottom:13.105761pt;}
.yc4{bottom:14.001559pt;}
.ya1{bottom:14.937740pt;}
.y17d{bottom:18.999999pt;}
.y38{bottom:23.219775pt;}
.y15a{bottom:23.924767pt;}
.yc{bottom:24.382719pt;}
.y124{bottom:26.686719pt;}
.yf1{bottom:27.906079pt;}
.y27{bottom:28.400319pt;}
.y178{bottom:28.999999pt;}
.yf6{bottom:29.274687pt;}
.ye6{bottom:29.335615pt;}
.y16e{bottom:30.345855pt;}
.y5c{bottom:31.802335pt;}
.y140{bottom:31.931487pt;}
.y187{bottom:32.487327pt;}
.y138{bottom:32.666719pt;}
.y143{bottom:32.718983pt;}
.y160{bottom:35.134047pt;}
.y131{bottom:37.342334pt;}
.y183{bottom:37.911390pt;}
.y4e{bottom:40.077502pt;}
.y129{bottom:41.818046pt;}
.y188{bottom:41.833278pt;}
.y17e{bottom:42.999998pt;}
.y176{bottom:43.000017pt;}
.ybb{bottom:46.950302pt;}
.y142{bottom:50.093982pt;}
.y185{bottom:51.902878pt;}
.y4c{bottom:54.087556pt;}
.y150{bottom:55.855614pt;}
.y148{bottom:59.959134pt;}
.y125{bottom:64.286717pt;}
.ybf{bottom:64.370047pt;}
.y28{bottom:66.000317pt;}
.y17c{bottom:66.999997pt;}
.yf{bottom:67.945234pt;}
.y12{bottom:67.988418pt;}
.y15{bottom:68.112988pt;}
.yb{bottom:68.382717pt;}
.yc3{bottom:71.122316pt;}
.y4f{bottom:74.685693pt;}
.y97{bottom:77.196525pt;}
.y141{bottom:78.199997pt;}
.ya0{bottom:81.696756pt;}
.yb2{bottom:96.000005pt;}
.y78{bottom:97.774761pt;}
.y4b{bottom:99.087554pt;}
.yc2{bottom:104.320005pt;}
.y37{bottom:104.366421pt;}
.y58{bottom:107.466655pt;}
.ya{bottom:112.382715pt;}
.y149{bottom:115.799995pt;}
.y1a{bottom:121.938107pt;}
.y96{bottom:130.196523pt;}
.yb8{bottom:134.758912pt;}
.y69{bottom:137.450404pt;}
.y180{bottom:138.333219pt;}
.y137{bottom:141.880698pt;}
.y26{bottom:143.933354pt;}
.y4a{bottom:144.087553pt;}
.y77{bottom:145.774759pt;}
.y123{bottom:146.684762pt;}
.y9f{bottom:148.455773pt;}
.y36{bottom:149.366419pt;}
.yc1{bottom:152.730240pt;}
.yb0{bottom:159.321008pt;}
.y10d{bottom:162.774777pt;}
.yc5{bottom:163.468091pt;}
.y84{bottom:174.632767pt;}
.ycf{bottom:176.098917pt;}
.y19{bottom:177.938105pt;}
.yd3{bottom:180.219512pt;}
.y95{bottom:183.196520pt;}
.y49{bottom:189.087551pt;}
.y68{bottom:189.450402pt;}
.y76{bottom:193.774757pt;}
.yb7{bottom:195.585488pt;}
.y184{bottom:195.605624pt;}
.y19b{bottom:196.019928pt;}
.y25{bottom:199.933352pt;}
.y9{bottom:200.382712pt;}
.y101{bottom:206.274756pt;}
.y10c{bottom:210.774775pt;}
.y192{bottom:212.819524pt;}
.yaf{bottom:215.321005pt;}
.y117{bottom:219.753565pt;}
.ye3{bottom:219.779524pt;}
.y83{bottom:231.632765pt;}
.y18{bottom:233.938102pt;}
.y94{bottom:236.196518pt;}
.yce{bottom:237.098915pt;}
.y35{bottom:239.366416pt;}
.y67{bottom:241.450400pt;}
.y75{bottom:241.774755pt;}
.yd2{bottom:243.219510pt;}
.y8{bottom:244.382710pt;}
.y1a3{bottom:245.090732pt;}
.y16d{bottom:246.919286pt;}
.y17f{bottom:249.815551pt;}
.y19a{bottom:251.019926pt;}
.yf0{bottom:251.665145pt;}
.y159{bottom:255.079033pt;}
.y100{bottom:255.274754pt;}
.y24{bottom:255.933349pt;}
.yb6{bottom:256.412064pt;}
.y10b{bottom:258.774773pt;}
.ye2{bottom:258.779522pt;}
.y99{bottom:263.039998pt;}
.yae{bottom:271.321003pt;}
.y48{bottom:279.087547pt;}
.y116{bottom:279.753563pt;}
.y191{bottom:280.819521pt;}
.y57{bottom:281.466647pt;}
.y9e{bottom:281.973807pt;}
.y34{bottom:284.366414pt;}
.y7{bottom:288.382708pt;}
.y82{bottom:288.632762pt;}
.y93{bottom:289.196516pt;}
.y74{bottom:289.774753pt;}
.y17{bottom:289.938100pt;}
.y16c{bottom:290.919284pt;}
.y66{bottom:293.450397pt;}
.ye1{bottom:297.779520pt;}
.ycd{bottom:298.098912pt;}
.yff{bottom:304.274752pt;}
.y10a{bottom:306.774771pt;}
.y169{bottom:309.719363pt;}
.y23{bottom:311.933347pt;}
.yef{bottom:314.665142pt;}
.yb5{bottom:317.238639pt;}
.y158{bottom:318.079030pt;}
.y47{bottom:324.087545pt;}
.yad{bottom:327.321001pt;}
.y33{bottom:329.366412pt;}
.y17b{bottom:331.815547pt;}
.y6{bottom:332.382706pt;}
.y16b{bottom:334.919282pt;}
.ye0{bottom:336.779519pt;}
.y73{bottom:337.774751pt;}
.y199{bottom:338.533618pt;}
.y115{bottom:339.753560pt;}
.y130{bottom:340.131026pt;}
.y122{bottom:340.858034pt;}
.y1a2{bottom:342.090728pt;}
.y92{bottom:342.196514pt;}
.y65{bottom:345.450395pt;}
.y81{bottom:345.632760pt;}
.y190{bottom:348.819518pt;}
.ya6{bottom:349.031899pt;}
.yfe{bottom:353.274750pt;}
.y168{bottom:353.719361pt;}
.y14{bottom:355.519994pt;}
.ycc{bottom:359.098910pt;}
.y22{bottom:367.933345pt;}
.y56{bottom:368.466644pt;}
.y46{bottom:369.087543pt;}
.y32{bottom:374.366410pt;}
.y173{bottom:375.313949pt;}
.ydf{bottom:375.779517pt;}
.yee{bottom:377.665139pt;}
.yb4{bottom:378.065215pt;}
.y16a{bottom:378.919280pt;}
.y157{bottom:381.079027pt;}
.y13a{bottom:383.770256pt;}
.y72{bottom:385.774749pt;}
.y91{bottom:395.196512pt;}
.y5{bottom:395.514672pt;}
.y64{bottom:397.450393pt;}
.y167{bottom:397.719359pt;}
.y114{bottom:399.753558pt;}
.ya5{bottom:401.031897pt;}
.yd7{bottom:402.155961pt;}
.yfd{bottom:402.274748pt;}
.y80{bottom:402.632758pt;}
.y109{bottom:402.774767pt;}
.y12f{bottom:403.131023pt;}
.y121{bottom:403.858031pt;}
.y11a{bottom:411.586271pt;}
.y13f{bottom:413.900296pt;}
.y45{bottom:414.087541pt;}
.yde{bottom:414.779516pt;}
.y9d{bottom:415.491841pt;}
.y18f{bottom:416.819515pt;}
.y14f{bottom:417.579749pt;}
.y31{bottom:419.366408pt;}
.ycb{bottom:420.098907pt;}
.y198{bottom:425.533614pt;}
.y71{bottom:433.774747pt;}
.yb3{bottom:438.891791pt;}
.y1a1{bottom:439.090724pt;}
.yac{bottom:439.320996pt;}
.yed{bottom:440.665137pt;}
.ybe{bottom:440.959991pt;}
.y166{bottom:441.719358pt;}
.y17a{bottom:443.297975pt;}
.y172{bottom:444.313946pt;}
.y90{bottom:448.196509pt;}
.y19d{bottom:448.546583pt;}
.y63{bottom:449.450391pt;}
.y108{bottom:450.774765pt;}
.yfc{bottom:451.274746pt;}
.ya4{bottom:453.031895pt;}
.ydd{bottom:453.779514pt;}
.y44{bottom:459.087539pt;}
.y7f{bottom:459.632755pt;}
.y113{bottom:459.753555pt;}
.yd6{bottom:465.155958pt;}
.y12e{bottom:466.131021pt;}
.y120{bottom:466.858029pt;}
.y1b{bottom:472.933340pt;}
.y13e{bottom:476.900294pt;}
.y21{bottom:479.933340pt;}
.y4{bottom:480.514668pt;}
.y14e{bottom:480.579746pt;}
.yca{bottom:481.098905pt;}
.y70{bottom:481.774745pt;}
.y9c{bottom:482.250858pt;}
.y5a{bottom:482.289238pt;}
.y18e{bottom:484.819513pt;}
.y165{bottom:485.719356pt;}
.y139{bottom:485.770252pt;}
.y51{bottom:486.805605pt;}
.y128{bottom:491.791660pt;}
.ydc{bottom:492.779512pt;}
.yab{bottom:495.320994pt;}
.y107{bottom:498.774763pt;}
.yfb{bottom:500.274744pt;}
.y8f{bottom:501.196507pt;}
.y62{bottom:501.450389pt;}
.yec{bottom:503.665134pt;}
.y43{bottom:504.087538pt;}
.y59{bottom:504.986267pt;}
.ya3{bottom:505.031893pt;}
.y156{bottom:507.079022pt;}
.y11{bottom:508.159988pt;}
.y119{bottom:508.586267pt;}
.y30{bottom:509.366404pt;}
.y136{bottom:512.121777pt;}
.y147{bottom:513.101854pt;}
.y7e{bottom:516.632753pt;}
.y112{bottom:519.753553pt;}
.y12c{bottom:522.497946pt;}
.y163{bottom:523.319293pt;}
.y179{bottom:525.780377pt;}
.y164{bottom:529.719354pt;}
.y6f{bottom:529.774743pt;}
.y11f{bottom:529.858026pt;}
.y20{bottom:535.933338pt;}
.y1a0{bottom:536.090720pt;}
.y13d{bottom:539.900291pt;}
.yf5{bottom:541.272928pt;}
.yc9{bottom:542.098902pt;}
.y55{bottom:542.466637pt;}
.y14d{bottom:543.579744pt;}
.y42{bottom:549.087536pt;}
.yfa{bottom:549.274742pt;}
.yaa{bottom:551.320991pt;}
.y18d{bottom:552.819510pt;}
.y61{bottom:553.450387pt;}
.y8e{bottom:554.196505pt;}
.y2f{bottom:554.366403pt;}
.y127{bottom:554.791657pt;}
.yeb{bottom:566.665132pt;}
.y162{bottom:567.319292pt;}
.y155{bottom:570.079019pt;}
.y7d{bottom:573.632750pt;}
.y135{bottom:575.121774pt;}
.y146{bottom:576.101851pt;}
.y3{bottom:577.514664pt;}
.y6e{bottom:577.774741pt;}
.ydb{bottom:577.779509pt;}
.y111{bottom:579.753550pt;}
.y171{bottom:582.313941pt;}
.y50{bottom:583.805601pt;}
.y12b{bottom:585.497944pt;}
.yd5{bottom:591.155953pt;}
.y11e{bottom:592.858023pt;}
.y41{bottom:594.087534pt;}
.y106{bottom:594.774759pt;}
.yf9{bottom:598.274740pt;}
.yf4{bottom:602.272925pt;}
.y13c{bottom:602.900288pt;}
.yc8{bottom:603.098900pt;}
.y60{bottom:605.450384pt;}
.y14c{bottom:606.579741pt;}
.y8d{bottom:607.196503pt;}
.ya9{bottom:607.320989pt;}
.y177{bottom:608.262716pt;}
.y161{bottom:611.319290pt;}
.y132{bottom:611.787005pt;}
.y9b{bottom:615.768892pt;}
.y126{bottom:617.791654pt;}
.y18c{bottom:620.819507pt;}
.yda{bottom:622.779507pt;}
.y6d{bottom:625.774739pt;}
.y54{bottom:629.466633pt;}
.yea{bottom:629.665129pt;}
.y7c{bottom:630.632748pt;}
.y154{bottom:633.079017pt;}
.y145{bottom:639.101849pt;}
.y105{bottom:642.774757pt;}
.ya2{bottom:643.225208pt;}
.y2e{bottom:644.366399pt;}
.y19e{bottom:644.699701pt;}
.yf8{bottom:647.274738pt;}
.y1f{bottom:647.933333pt;}
.y12a{bottom:648.497941pt;}
.y170{bottom:651.313938pt;}
.yd4{bottom:654.155950pt;}
.y15f{bottom:655.319288pt;}
.y11d{bottom:655.858021pt;}
.y197{bottom:657.596341pt;}
.y8c{bottom:660.196500pt;}
.ye{bottom:662.719981pt;}
.yf3{bottom:663.272923pt;}
.ya8{bottom:663.320987pt;}
.yc7{bottom:664.098897pt;}
.yd9{bottom:667.779505pt;}
.y14b{bottom:669.579739pt;}
.y6c{bottom:673.774737pt;}
.y9a{bottom:682.527909pt;}
.y19c{bottom:682.546573pt;}
.y40{bottom:684.087530pt;}
.y19f{bottom:687.208739pt;}
.y7b{bottom:687.632746pt;}
.y18b{bottom:688.819504pt;}
.y2d{bottom:689.366397pt;}
.y175{bottom:690.262716pt;}
.y104{bottom:690.774755pt;}
.ye9{bottom:692.665126pt;}
.yba{bottom:694.901161pt;}
.y153{bottom:696.079014pt;}
.yf7{bottom:696.274736pt;}
.y15e{bottom:699.319286pt;}
.y110{bottom:699.753545pt;}
.y144{bottom:702.101846pt;}
.y1e{bottom:703.933331pt;}
.y5f{bottom:709.450380pt;}
.y196{bottom:712.596338pt;}
.yd8{bottom:712.779503pt;}
.y8b{bottom:713.196498pt;}
.y2{bottom:715.514658pt;}
.y53{bottom:716.466629pt;}
.ya7{bottom:719.320984pt;}
.y16f{bottom:720.313935pt;}
.yf2{bottom:724.272920pt;}
.y3f{bottom:729.087528pt;}
.y14a{bottom:732.579736pt;}
.yd1{bottom:732.765205pt;}
.y2c{bottom:734.366395pt;}
.y103{bottom:738.774753pt;}
.y15d{bottom:743.319284pt;}
.y7a{bottom:744.632743pt;}
.ye8{bottom:755.665124pt;}
.y152{bottom:759.079012pt;}
.y10f{bottom:759.753543pt;}
.y1d{bottom:759.933328pt;}
.y5e{bottom:761.450378pt;}
.y8a{bottom:766.196496pt;}
.y174{bottom:766.525242pt;}
.y3e{bottom:774.087526pt;}
.y2b{bottom:779.366393pt;}
.y193{bottom:785.999967pt;}
.yc6{bottom:786.098892pt;}
.y15c{bottom:787.319282pt;}
.y6b{bottom:787.999967pt;}
.y195{bottom:799.220095pt;}
.ybd{bottom:801.026626pt;}
.y52{bottom:803.466626pt;}
.y5d{bottom:813.450376pt;}
.y1c{bottom:815.933326pt;}
.ye7{bottom:818.665121pt;}
.y3d{bottom:819.087524pt;}
.y89{bottom:819.196494pt;}
.y10e{bottom:819.753540pt;}
.y151{bottom:822.079009pt;}
.y11c{bottom:826.431294pt;}
.y15b{bottom:831.319281pt;}
.y18a{bottom:843.904077pt;}
.yb1{bottom:847.270179pt;}
.ye5{bottom:849.499971pt;}
.y134{bottom:852.301059pt;}
.y12d{bottom:858.426566pt;}
.y3c{bottom:864.087523pt;}
.y182{bottom:864.631336pt;}
.y102{bottom:867.787103pt;}
.y88{bottom:872.196492pt;}
.y2a{bottom:873.713080pt;}
.y194{bottom:884.220091pt;}
.y85{bottom:887.999963pt;}
.y6a{bottom:888.999963pt;}
.y79{bottom:889.999963pt;}
.yd0{bottom:898.214571pt;}
.y186{bottom:904.933293pt;}
.ybc{bottom:912.138448pt;}
.y118{bottom:922.589376pt;}
.y29{bottom:924.204483pt;}
.y87{bottom:925.196489pt;}
.y5b{bottom:930.298476pt;}
.yd{bottom:934.099667pt;}
.y3b{bottom:940.178998pt;}
.y189{bottom:940.904073pt;}
.y13b{bottom:941.135801pt;}
.y11b{bottom:944.898623pt;}
.ye4{bottom:946.499967pt;}
.y133{bottom:949.301055pt;}
.y181{bottom:961.631332pt;}
.y86{bottom:978.196487pt;}
.y3a{bottom:983.832561pt;}
.h16{height:36.726561pt;}
.h3d{height:40.215408pt;}
.h43{height:81.999997pt;}
.h36{height:86.307421pt;}
.hd{height:92.749996pt;}
.h15{height:93.101832pt;}
.h22{height:96.624996pt;}
.h3e{height:97.499996pt;}
.h5{height:97.937496pt;}
.h11{height:98.444530pt;}
.h35{height:98.549608pt;}
.h10{height:98.886268pt;}
.h42{height:100.640978pt;}
.h41{height:102.008029pt;}
.h7{height:108.799995pt;}
.h9{height:109.119995pt;}
.h44{height:110.999995pt;}
.h40{height:111.000015pt;}
.h13{height:113.095598pt;}
.h1a{height:114.250216pt;}
.h1c{height:114.556265pt;}
.h38{height:115.474429pt;}
.h21{height:116.086538pt;}
.h27{height:120.781245pt;}
.hc{height:122.421870pt;}
.ha{height:123.454398pt;}
.h8{height:123.467189pt;}
.h2f{height:123.824265pt;}
.h1e{height:124.809093pt;}
.h3a{height:130.562924pt;}
.h2b{height:133.643264pt;}
.h33{height:133.654070pt;}
.h32{height:135.677961pt;}
.h3c{height:136.875352pt;}
.h3b{height:138.114844pt;}
.h34{height:138.734590pt;}
.h2d{height:140.891322pt;}
.h25{height:146.277341pt;}
.h3f{height:150.976777pt;}
.h17{height:171.390618pt;}
.h47{height:175.461151pt;}
.h48{height:177.695347pt;}
.h19{height:182.812492pt;}
.h4{height:186.895305pt;}
.h45{height:197.969646pt;}
.h6{height:209.344099pt;}
.h29{height:209.391520pt;}
.hb{height:211.239841pt;}
.h4a{height:212.149797pt;}
.he{height:212.187712pt;}
.h2c{height:220.328754pt;}
.h37{height:221.422223pt;}
.h1f{height:223.427341pt;}
.h18{height:224.429899pt;}
.h2e{height:239.359990pt;}
.h46{height:243.657144pt;}
.h23{height:247.157007pt;}
.h30{height:249.251614pt;}
.h31{height:249.919990pt;}
.h1d{height:253.640614pt;}
.h28{height:253.882183pt;}
.h26{height:255.937489pt;}
.h1b{height:257.667437pt;}
.h20{height:261.156460pt;}
.h39{height:263.907026pt;}
.hf{height:270.410145pt;}
.h3{height:300.635138pt;}
.h49{height:374.358317pt;}
.h2a{height:485.759980pt;}
.h24{height:732.159969pt;}
.h14{height:897.279963pt;}
.h12{height:1023.359957pt;}
.h2{height:1079.999955pt;}
.h0{height:1079.999991pt;}
.h1{height:1080.000000pt;}
.wb{width:276.999988pt;}
.w4{width:395.199984pt;}
.wc{width:441.560177pt;}
.w2{width:469.119980pt;}
.wa{width:523.617322pt;}
.w3{width:583.039976pt;}
.w5{width:645.439973pt;}
.w9{width:808.319966pt;}
.w8{width:862.719964pt;}
.w6{width:967.039960pt;}
.w7{width:1484.479938pt;}
.w1{width:1919.999920pt;}
.w0{width:1920.000000pt;}
.x0{left:0.000000pt;}
.x67{left:8.000000pt;}
.x36{left:9.601808pt;}
.x4e{left:13.080900pt;}
.x5a{left:15.389942pt;}
.x45{left:17.194765pt;}
.x1b{left:18.325270pt;}
.xf{left:24.777440pt;}
.x14{left:25.874164pt;}
.x28{left:27.802860pt;}
.x53{left:29.094245pt;}
.x47{left:30.516986pt;}
.x54{left:33.766119pt;}
.x38{left:36.463241pt;}
.x31{left:38.035421pt;}
.x58{left:40.468748pt;}
.x29{left:43.040324pt;}
.xd{left:43.959237pt;}
.x4a{left:47.149290pt;}
.x63{left:49.176966pt;}
.x6b{left:51.171824pt;}
.x1c{left:53.166795pt;}
.x52{left:59.792257pt;}
.x49{left:60.850705pt;}
.x40{left:62.452039pt;}
.x66{left:64.065348pt;}
.x33{left:65.015421pt;}
.x39{left:68.091184pt;}
.x1a{left:73.829885pt;}
.x41{left:78.465382pt;}
.x62{left:81.331136pt;}
.x4c{left:89.083052pt;}
.x9{left:90.484371pt;}
.x6f{left:92.773457pt;}
.x6e{left:93.835956pt;}
.x6d{left:95.882831pt;}
.x3a{left:97.016546pt;}
.x35{left:101.104293pt;}
.x24{left:107.999996pt;}
.x6a{left:108.999995pt;}
.xe{left:111.959234pt;}
.x1d{left:116.619917pt;}
.x5b{left:122.369356pt;}
.x32{left:126.777295pt;}
.x60{left:127.684908pt;}
.x70{left:132.609369pt;}
.x4d{left:134.512094pt;}
.x10{left:136.296869pt;}
.x42{left:139.514536pt;}
.x48{left:142.717201pt;}
.x30{left:148.512624pt;}
.x46{left:155.527879pt;}
.x1e{left:180.088664pt;}
.x5f{left:182.091155pt;}
.x3d{left:200.074588pt;}
.x37{left:213.644268pt;}
.x43{left:216.577033pt;}
.x15{left:222.487607pt;}
.x74{left:228.251945pt;}
.x56{left:246.737334pt;}
.xa{left:268.799989pt;}
.x44{left:278.628131pt;}
.x69{left:304.808835pt;}
.x71{left:336.796866pt;}
.xb{left:337.899555pt;}
.x68{left:341.505103pt;}
.xc{left:353.066743pt;}
.x2e{left:356.555688pt;}
.x57{left:408.166383pt;}
.x2c{left:424.555685pt;}
.x18{left:460.259161pt;}
.x2d{left:492.555682pt;}
.x16{left:516.686307pt;}
.x3e{left:534.565213pt;}
.x51{left:560.547594pt;}
.x73{left:597.453678pt;}
.x4f{left:600.469467pt;}
.x64{left:609.594467pt;}
.x17{left:611.889433pt;}
.x59{left:618.156966pt;}
.x3b{left:622.763110pt;}
.x6c{left:652.656965pt;}
.x50{left:680.578839pt;}
.x2f{left:698.903715pt;}
.x65{left:732.719467pt;}
.x19{left:735.911521pt;}
.x3f{left:830.143330pt;}
.x34{left:837.149821pt;}
.x11{left:861.001308pt;}
.x21{left:863.480348pt;}
.x25{left:864.458259pt;}
.x1{left:872.727228pt;}
.x22{left:910.576439pt;}
.x26{left:928.942631pt;}
.x23{left:979.920186pt;}
.x1f{left:984.501143pt;}
.x5c{left:987.595511pt;}
.x27{left:993.442629pt;}
.x61{left:1008.401046pt;}
.x72{left:1022.959317pt;}
.x5d{left:1041.986134pt;}
.x20{left:1048.141765pt;}
.x5e{left:1096.392381pt;}
.x3c{left:1112.798013pt;}
.x13{left:1164.479951pt;}
.x2a{left:1228.799469pt;}
.x12{left:1280.626667pt;}
.x2b{left:1296.799466pt;}
.x55{left:1396.382598pt;}
.x4{left:1435.236516pt;}
.x6{left:1578.486510pt;}
.x4b{left:1583.867582pt;}
.x8{left:1608.939639pt;}
.x5{left:1610.939639pt;}
.x7{left:1678.595886pt;}
.x3{left:1684.189636pt;}
.x2{left:1714.533385pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  