
    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_e7873a05db7d2c0d19d8cd74.woff')format("woff");}.ff1{font-family:ff1;line-height:1.325000;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_e2d7ce7bae84e331531d533f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.294000;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_6e9b3482c6602c0b1973715d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.995000;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_41a79e217e62cf5b8334743d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.995000;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_eb36e5eb27b98cc0c90ea6d2.woff')format("woff");}.ff5{font-family:ff5;line-height:0.990000;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_023e69cc3b8e7cff3d25de94.woff')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_08bf631650a290d166a489fa.woff')format("woff");}.ff7{font-family:ff7;line-height:1.318848;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_023e69cc3b8e7cff3d25de94.woff')format("woff");}.ff8{font-family:ff8;line-height:1.005371;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_08bf631650a290d166a489fa.woff')format("woff");}.ff9{font-family:ff9;line-height:1.318848;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_ecc4aa7dca71fa1967f9d5f1.woff')format("woff");}.ffa{font-family:ffa;line-height:0.996000;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_e49dd0d9d6b083a5aab75f3d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.996000;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_8c79f56682027b605383c011.woff')format("woff");}.ffc{font-family:ffc;line-height:1.349000;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_98543e316d9c8ae84a9800c2.woff')format("woff");}.ffd{font-family:ffd;line-height:0.995000;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_3c55022b1ebdfcbf0dfcb739.woff')format("woff");}.ffe{font-family:ffe;line-height:0.995000;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_68c92cea549ddbc507acbe52.woff')format("woff");}.fff{font-family:fff;line-height:0.996000;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_994643edf82f9fe097f13a52.woff')format("woff");}.ff10{font-family:ff10;line-height:0.968000;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_8037d04548fe0e508d57ab65.woff')format("woff");}.ff11{font-family:ff11;line-height:1.261000;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_e7873a05db7d2c0d19d8cd74.woff')format("woff");}.ff12{font-family:ff12;line-height:1.325000;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_81df712c96f3a7e72234d628.woff')format("woff");}.ff13{font-family:ff13;line-height:1.294000;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_023e69cc3b8e7cff3d25de94.woff')format("woff");}.ff14{font-family:ff14;line-height:1.005371;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_08bf631650a290d166a489fa.woff')format("woff");}.ff15{font-family:ff15;line-height:1.318848;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_775daea90039d2082faa9fe6.woff')format("woff");}.ff16{font-family:ff16;line-height:0.995000;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_023e69cc3b8e7cff3d25de94.woff')format("woff");}.ff17{font-family:ff17;line-height:1.005371;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_08bf631650a290d166a489fa.woff')format("woff");}.ff18{font-family:ff18;line-height:1.318848;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_5636ab8a993d4f589c56c22a.woff')format("woff");}.ff19{font-family:ff19;line-height:0.996000;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_e49dd0d9d6b083a5aab75f3d.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.996000;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_8c79f56682027b605383c011.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.349000;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_80fdb9df69bac0d078536c3c.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.995000;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_3c55022b1ebdfcbf0dfcb739.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.995000;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_68c92cea549ddbc507acbe52.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.996000;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_994643edf82f9fe097f13a52.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.968000;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_8037d04548fe0e508d57ab65.woff')format("woff");}.ff20{font-family:ff20;line-height:1.261000;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_e7873a05db7d2c0d19d8cd74.woff')format("woff");}.ff21{font-family:ff21;line-height:1.325000;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_3d046cc4c146bd2ae9b570b7.woff')format("woff");}.ff22{font-family:ff22;line-height:1.294000;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_023e69cc3b8e7cff3d25de94.woff')format("woff");}.ff23{font-family:ff23;line-height:1.005371;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_08bf631650a290d166a489fa.woff')format("woff");}.ff24{font-family:ff24;line-height:1.318848;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_775daea90039d2082faa9fe6.woff')format("woff");}.ff25{font-family:ff25;line-height:0.995000;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_023e69cc3b8e7cff3d25de94.woff')format("woff");}.ff26{font-family:ff26;line-height:1.005371;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_08bf631650a290d166a489fa.woff')format("woff");}.ff27{font-family:ff27;line-height:1.318848;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_884a151946a09fe2a2f09a51.woff')format("woff");}.ff28{font-family:ff28;line-height:0.996000;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_e49dd0d9d6b083a5aab75f3d.woff')format("woff");}.ff29{font-family:ff29;line-height:0.996000;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_8c79f56682027b605383c011.woff')format("woff");}.ff2a{font-family:ff2a;line-height:1.349000;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_92ee2d499d54c23cbaf59cf4.woff')format("woff");}.ff2b{font-family:ff2b;line-height:0.995000;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_3c55022b1ebdfcbf0dfcb739.woff')format("woff");}.ff2c{font-family:ff2c;line-height:0.995000;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_68c92cea549ddbc507acbe52.woff')format("woff");}.ff2d{font-family:ff2d;line-height:0.996000;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_994643edf82f9fe097f13a52.woff')format("woff");}.ff2e{font-family:ff2e;line-height:0.968000;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_8037d04548fe0e508d57ab65.woff')format("woff");}.ff2f{font-family:ff2f;line-height:1.261000;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_e7873a05db7d2c0d19d8cd74.woff')format("woff");}.ff30{font-family:ff30;line-height:1.325000;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_b5ab0872a9085b804b685250.woff')format("woff");}.ff31{font-family:ff31;line-height:1.294000;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_023e69cc3b8e7cff3d25de94.woff')format("woff");}.ff32{font-family:ff32;line-height:1.005371;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_08bf631650a290d166a489fa.woff')format("woff");}.ff33{font-family:ff33;line-height:1.318848;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_775daea90039d2082faa9fe6.woff')format("woff");}.ff34{font-family:ff34;line-height:0.995000;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_023e69cc3b8e7cff3d25de94.woff')format("woff");}.ff35{font-family:ff35;line-height:1.005371;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_08bf631650a290d166a489fa.woff')format("woff");}.ff36{font-family:ff36;line-height:1.318848;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_66c74cc97057ee746b1b39de.woff')format("woff");}.ff37{font-family:ff37;line-height:0.996000;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_e49dd0d9d6b083a5aab75f3d.woff')format("woff");}.ff38{font-family:ff38;line-height:0.996000;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_8c79f56682027b605383c011.woff')format("woff");}.ff39{font-family:ff39;line-height:1.349000;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_2fc5d015ead9aaaac33ca02b.woff')format("woff");}.ff3a{font-family:ff3a;line-height:0.995000;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_3c55022b1ebdfcbf0dfcb739.woff')format("woff");}.ff3b{font-family:ff3b;line-height:0.995000;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_68c92cea549ddbc507acbe52.woff')format("woff");}.ff3c{font-family:ff3c;line-height:0.996000;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_994643edf82f9fe097f13a52.woff')format("woff");}.ff3d{font-family:ff3d;line-height:0.968000;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_8037d04548fe0e508d57ab65.woff')format("woff");}.ff3e{font-family:ff3e;line-height:1.261000;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_e7873a05db7d2c0d19d8cd74.woff')format("woff");}.ff3f{font-family:ff3f;line-height:1.325000;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_be52e5f23953f2ff3a841c0e.woff')format("woff");}.ff40{font-family:ff40;line-height:1.294000;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_023e69cc3b8e7cff3d25de94.woff')format("woff");}.ff41{font-family:ff41;line-height:1.005371;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_08bf631650a290d166a489fa.woff')format("woff");}.ff42{font-family:ff42;line-height:1.318848;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_775daea90039d2082faa9fe6.woff')format("woff");}.ff43{font-family:ff43;line-height:0.995000;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_023e69cc3b8e7cff3d25de94.woff')format("woff");}.ff44{font-family:ff44;line-height:1.005371;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_08bf631650a290d166a489fa.woff')format("woff");}.ff45{font-family:ff45;line-height:1.318848;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_49e87877ec29aca080e82a12.woff')format("woff");}.ff46{font-family:ff46;line-height:0.996000;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_e49dd0d9d6b083a5aab75f3d.woff')format("woff");}.ff47{font-family:ff47;line-height:0.996000;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_8c79f56682027b605383c011.woff')format("woff");}.ff48{font-family:ff48;line-height:1.349000;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_96754fcb77c33e55ba1a1241.woff')format("woff");}.ff49{font-family:ff49;line-height:0.995000;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_3c55022b1ebdfcbf0dfcb739.woff')format("woff");}.ff4a{font-family:ff4a;line-height:0.995000;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_68c92cea549ddbc507acbe52.woff')format("woff");}.ff4b{font-family:ff4b;line-height:0.996000;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_994643edf82f9fe097f13a52.woff')format("woff");}.ff4c{font-family:ff4c;line-height:0.968000;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_8037d04548fe0e508d57ab65.woff')format("woff");}.ff4d{font-family:ff4d;line-height:1.261000;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_e7873a05db7d2c0d19d8cd74.woff')format("woff");}.ff4e{font-family:ff4e;line-height:1.325000;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_be52e5f23953f2ff3a841c0e.woff')format("woff");}.ff4f{font-family:ff4f;line-height:1.294000;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_023e69cc3b8e7cff3d25de94.woff')format("woff");}.ff50{font-family:ff50;line-height:1.005371;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_08bf631650a290d166a489fa.woff')format("woff");}.ff51{font-family:ff51;line-height:1.318848;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_775daea90039d2082faa9fe6.woff')format("woff");}.ff52{font-family:ff52;line-height:0.995000;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_023e69cc3b8e7cff3d25de94.woff')format("woff");}.ff53{font-family:ff53;line-height:1.005371;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_08bf631650a290d166a489fa.woff')format("woff");}.ff54{font-family:ff54;line-height:1.318848;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_5636ab8a993d4f589c56c22a.woff')format("woff");}.ff55{font-family:ff55;line-height:0.996000;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_e49dd0d9d6b083a5aab75f3d.woff')format("woff");}.ff56{font-family:ff56;line-height:0.996000;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_8c79f56682027b605383c011.woff')format("woff");}.ff57{font-family:ff57;line-height:1.349000;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_64e31bdcd3eae0422e3894e3.woff')format("woff");}.ff58{font-family:ff58;line-height:0.995000;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_3c55022b1ebdfcbf0dfcb739.woff')format("woff");}.ff59{font-family:ff59;line-height:0.995000;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_68c92cea549ddbc507acbe52.woff')format("woff");}.ff5a{font-family:ff5a;line-height:0.996000;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_994643edf82f9fe097f13a52.woff')format("woff");}.ff5b{font-family:ff5b;line-height:0.968000;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_8037d04548fe0e508d57ab65.woff')format("woff");}.ff5c{font-family:ff5c;line-height:1.261000;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_e7873a05db7d2c0d19d8cd74.woff')format("woff");}.ff5d{font-family:ff5d;line-height:1.325000;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_57709c5e895462fc178d67ff.woff')format("woff");}.ff5e{font-family:ff5e;line-height:1.294000;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_023e69cc3b8e7cff3d25de94.woff')format("woff");}.ff5f{font-family:ff5f;line-height:1.005371;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_08bf631650a290d166a489fa.woff')format("woff");}.ff60{font-family:ff60;line-height:1.318848;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_9f0773b472a1242263753506.woff')format("woff");}.ff61{font-family:ff61;line-height:0.995000;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_023e69cc3b8e7cff3d25de94.woff')format("woff");}.ff62{font-family:ff62;line-height:1.005371;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_08bf631650a290d166a489fa.woff')format("woff");}.ff63{font-family:ff63;line-height:1.318848;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_ecc4aa7dca71fa1967f9d5f1.woff')format("woff");}.ff64{font-family:ff64;line-height:0.996000;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_e49dd0d9d6b083a5aab75f3d.woff')format("woff");}.ff65{font-family:ff65;line-height:0.996000;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_8c79f56682027b605383c011.woff')format("woff");}.ff66{font-family:ff66;line-height:1.349000;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_64e31bdcd3eae0422e3894e3.woff')format("woff");}.ff67{font-family:ff67;line-height:0.995000;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_3c55022b1ebdfcbf0dfcb739.woff')format("woff");}.ff68{font-family:ff68;line-height:0.995000;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_68c92cea549ddbc507acbe52.woff')format("woff");}.ff69{font-family:ff69;line-height:0.996000;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_994643edf82f9fe097f13a52.woff')format("woff");}.ff6a{font-family:ff6a;line-height:0.968000;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_8037d04548fe0e508d57ab65.woff')format("woff");}.ff6b{font-family:ff6b;line-height:1.261000;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_e7873a05db7d2c0d19d8cd74.woff')format("woff");}.ff6c{font-family:ff6c;line-height:1.325000;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_845c1892d2ba472fd576462a.woff')format("woff");}.ff6d{font-family:ff6d;line-height:1.294000;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_023e69cc3b8e7cff3d25de94.woff')format("woff");}.ff6e{font-family:ff6e;line-height:1.005371;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_08bf631650a290d166a489fa.woff')format("woff");}.ff6f{font-family:ff6f;line-height:1.318848;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_775daea90039d2082faa9fe6.woff')format("woff");}.ff70{font-family:ff70;line-height:0.995000;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_023e69cc3b8e7cff3d25de94.woff')format("woff");}.ff71{font-family:ff71;line-height:1.005371;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_08bf631650a290d166a489fa.woff')format("woff");}.ff72{font-family:ff72;line-height:1.318848;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_66c74cc97057ee746b1b39de.woff')format("woff");}.ff73{font-family:ff73;line-height:0.996000;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_e49dd0d9d6b083a5aab75f3d.woff')format("woff");}.ff74{font-family:ff74;line-height:0.996000;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_8c79f56682027b605383c011.woff')format("woff");}.ff75{font-family:ff75;line-height:1.349000;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_64e31bdcd3eae0422e3894e3.woff')format("woff");}.ff76{font-family:ff76;line-height:0.995000;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_3c55022b1ebdfcbf0dfcb739.woff')format("woff");}.ff77{font-family:ff77;line-height:0.995000;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_68c92cea549ddbc507acbe52.woff')format("woff");}.ff78{font-family:ff78;line-height:0.996000;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_994643edf82f9fe097f13a52.woff')format("woff");}.ff79{font-family:ff79;line-height:0.968000;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_8037d04548fe0e508d57ab65.woff')format("woff");}.ff7a{font-family:ff7a;line-height:1.261000;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_e7873a05db7d2c0d19d8cd74.woff')format("woff");}.ff7b{font-family:ff7b;line-height:1.325000;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_a9795c2e08c4ba177395f80c.woff')format("woff");}.ff7c{font-family:ff7c;line-height:1.294000;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_023e69cc3b8e7cff3d25de94.woff')format("woff");}.ff7d{font-family:ff7d;line-height:1.005371;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_08bf631650a290d166a489fa.woff')format("woff");}.ff7e{font-family:ff7e;line-height:1.318848;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_775daea90039d2082faa9fe6.woff')format("woff");}.ff7f{font-family:ff7f;line-height:0.995000;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_023e69cc3b8e7cff3d25de94.woff')format("woff");}.ff80{font-family:ff80;line-height:1.005371;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_08bf631650a290d166a489fa.woff')format("woff");}.ff81{font-family:ff81;line-height:1.318848;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_49e87877ec29aca080e82a12.woff')format("woff");}.ff82{font-family:ff82;line-height:0.996000;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_e49dd0d9d6b083a5aab75f3d.woff')format("woff");}.ff83{font-family:ff83;line-height:0.996000;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:ff84;src:url('chunks/assets/font_8c79f56682027b605383c011.woff')format("woff");}.ff84{font-family:ff84;line-height:1.349000;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:ff85;src:url('chunks/assets/font_bc46d67b9930731725991319.woff')format("woff");}.ff85{font-family:ff85;line-height:0.995000;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:ff86;src:url('chunks/assets/font_3c55022b1ebdfcbf0dfcb739.woff')format("woff");}.ff86{font-family:ff86;line-height:0.995000;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:ff87;src:url('chunks/assets/font_68c92cea549ddbc507acbe52.woff')format("woff");}.ff87{font-family:ff87;line-height:0.996000;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:ff88;src:url('chunks/assets/font_994643edf82f9fe097f13a52.woff')format("woff");}.ff88{font-family:ff88;line-height:0.968000;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:ff89;src:url('chunks/assets/font_8037d04548fe0e508d57ab65.woff')format("woff");}.ff89{font-family:ff89;line-height:1.261000;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:ff8a;src:url('chunks/assets/font_e7873a05db7d2c0d19d8cd74.woff')format("woff");}.ff8a{font-family:ff8a;line-height:1.325000;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:ff8b;src:url('chunks/assets/font_4191c5982c479f00b84decc4.woff')format("woff");}.ff8b{font-family:ff8b;line-height:1.294000;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:ff8c;src:url('chunks/assets/font_023e69cc3b8e7cff3d25de94.woff')format("woff");}.ff8c{font-family:ff8c;line-height:1.005371;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:ff8d;src:url('chunks/assets/font_08bf631650a290d166a489fa.woff')format("woff");}.ff8d{font-family:ff8d;line-height:1.318848;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:ff8e;src:url('chunks/assets/font_775daea90039d2082faa9fe6.woff')format("woff");}.ff8e{font-family:ff8e;line-height:0.995000;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:ff8f;src:url('chunks/assets/font_023e69cc3b8e7cff3d25de94.woff')format("woff");}.ff8f{font-family:ff8f;line-height:1.005371;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:ff90;src:url('chunks/assets/font_08bf631650a290d166a489fa.woff')format("woff");}.ff90{font-family:ff90;line-height:1.318848;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:ff91;src:url('chunks/assets/font_1d21c7552ea94012768e65ab.woff')format("woff");}.ff91{font-family:ff91;line-height:0.996000;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:ff92;src:url('chunks/assets/font_e49dd0d9d6b083a5aab75f3d.woff')format("woff");}.ff92{font-family:ff92;line-height:0.996000;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:ff93;src:url('chunks/assets/font_8c79f56682027b605383c011.woff')format("woff");}.ff93{font-family:ff93;line-height:1.349000;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:ff94;src:url('chunks/assets/font_64db4dbe85ba6cb0129175a3.woff')format("woff");}.ff94{font-family:ff94;line-height:0.995000;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:ff95;src:url('chunks/assets/font_3c55022b1ebdfcbf0dfcb739.woff')format("woff");}.ff95{font-family:ff95;line-height:0.995000;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:ff96;src:url('chunks/assets/font_68c92cea549ddbc507acbe52.woff')format("woff");}.ff96{font-family:ff96;line-height:0.996000;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:ff97;src:url('chunks/assets/font_994643edf82f9fe097f13a52.woff')format("woff");}.ff97{font-family:ff97;line-height:0.968000;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:ff98;src:url('chunks/assets/font_8037d04548fe0e508d57ab65.woff')format("woff");}.ff98{font-family:ff98;line-height:1.261000;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:ff99;src:url('chunks/assets/font_e7873a05db7d2c0d19d8cd74.woff')format("woff");}.ff99{font-family:ff99;line-height:1.325000;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:ff9a;src:url('chunks/assets/font_16d12416d763c98c0452acd2.woff')format("woff");}.ff9a{font-family:ff9a;line-height:1.294000;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:ff9b;src:url('chunks/assets/font_023e69cc3b8e7cff3d25de94.woff')format("woff");}.ff9b{font-family:ff9b;line-height:1.005371;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:ff9c;src:url('chunks/assets/font_08bf631650a290d166a489fa.woff')format("woff");}.ff9c{font-family:ff9c;line-height:1.318848;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:ff9d;src:url('chunks/assets/font_cbbc7c979cd3440b9be33323.woff')format("woff");}.ff9d{font-family:ff9d;line-height:0.995000;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);}
.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);}
.v7{vertical-align:-72.024000px;}
.v9{vertical-align:-54.597000px;}
.v5{vertical-align:-18.060000px;}
.v1{vertical-align:-11.753400px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:12.000000px;}
.v2{vertical-align:15.984000px;}
.v6{vertical-align:21.978600px;}
.v3{vertical-align:25.980600px;}
.v4{vertical-align:27.984000px;}
.va{vertical-align:40.918800px;}
.vb{vertical-align:57.218400px;}
.ls1{letter-spacing:-5.941824px;}
.ls2{letter-spacing:-1.836000px;}
.lsf{letter-spacing:-1.800000px;}
.ls10{letter-spacing:-1.200000px;}
.ls1e{letter-spacing:-0.864000px;}
.ls1b{letter-spacing:-0.462000px;}
.ls24{letter-spacing:-0.432000px;}
.ls1a{letter-spacing:-0.330000px;}
.ls23{letter-spacing:-0.324000px;}
.lse{letter-spacing:-0.312000px;}
.ls21{letter-spacing:-0.288000px;}
.ls19{letter-spacing:-0.264000px;}
.ls1f{letter-spacing:-0.240000px;}
.ls1c{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.198000px;}
.ls22{letter-spacing:-0.167904px;}
.ls3{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.111936px;}
.ls15{letter-spacing:0.129222px;}
.ls16{letter-spacing:0.139680px;}
.ls12{letter-spacing:0.191760px;}
.ls9{letter-spacing:0.192000px;}
.ls1d{letter-spacing:0.195888px;}
.ls14{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.240000px;}
.ls4{letter-spacing:0.270000px;}
.ls7{letter-spacing:0.280080px;}
.ls18{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.300000px;}
.ls11{letter-spacing:0.330000px;}
.lsb{letter-spacing:0.336000px;}
.lsa{letter-spacing:0.390000px;}
.ls17{letter-spacing:0.420000px;}
.ls6{letter-spacing:0.480000px;}
.ls5{letter-spacing:0.660000px;}
.ls13{letter-spacing:33.568200px;}
.lsc{letter-spacing:87.600000px;}
.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;}
}
.ws2b{word-spacing:-24.222000px;}
.ws37{word-spacing:-20.196000px;}
.ws7{word-spacing:-15.357600px;}
.ws31{word-spacing:-14.850000px;}
.ws13{word-spacing:-14.184000px;}
.ws10{word-spacing:-13.348800px;}
.ws2c{word-spacing:-13.200000px;}
.ws5{word-spacing:-11.856000px;}
.ws14{word-spacing:-11.606364px;}
.ws38{word-spacing:-10.758000px;}
.wsf{word-spacing:-10.692000px;}
.ws1b{word-spacing:-10.374000px;}
.ws18{word-spacing:-9.936000px;}
.ws15{word-spacing:-9.840000px;}
.ws6{word-spacing:-9.685962px;}
.ws32{word-spacing:-9.331200px;}
.ws12{word-spacing:-7.695600px;}
.wse{word-spacing:-6.674400px;}
.wsd{word-spacing:-6.600000px;}
.ws17{word-spacing:-5.792688px;}
.ws19{word-spacing:-5.708736px;}
.ws16{word-spacing:-5.596800px;}
.ws1a{word-spacing:-5.428896px;}
.ws2a{word-spacing:-4.884000px;}
.ws9{word-spacing:-0.480000px;}
.ws23{word-spacing:-0.420000px;}
.wsc{word-spacing:-0.336000px;}
.ws1d{word-spacing:-0.330000px;}
.ws3{word-spacing:-0.300000px;}
.ws26{word-spacing:-0.288000px;}
.ws4{word-spacing:-0.270000px;}
.wsa{word-spacing:-0.240000px;}
.ws21{word-spacing:-0.192000px;}
.ws1{word-spacing:0.000000px;}
.ws8{word-spacing:0.198000px;}
.ws25{word-spacing:0.216000px;}
.ws1f{word-spacing:0.264000px;}
.ws22{word-spacing:0.288000px;}
.wsb{word-spacing:0.312000px;}
.ws24{word-spacing:0.324000px;}
.ws1e{word-spacing:0.330000px;}
.ws27{word-spacing:0.432000px;}
.ws20{word-spacing:1.200000px;}
.ws11{word-spacing:1.800000px;}
.ws2{word-spacing:1.836000px;}
.ws0{word-spacing:5.941824px;}
.ws2e{word-spacing:228.556200px;}
.ws1c{word-spacing:292.766400px;}
.ws29{word-spacing:365.277600px;}
.ws33{word-spacing:385.171200px;}
.ws30{word-spacing:426.837600px;}
.ws2f{word-spacing:439.149600px;}
.ws36{word-spacing:441.158400px;}
.ws34{word-spacing:441.288000px;}
.ws2d{word-spacing:446.148000px;}
.ws35{word-spacing:805.658400px;}
.ws28{word-spacing:1265.122800px;}
._52{margin-left:-2786.983200px;}
._25{margin-left:-2382.144600px;}
._46{margin-left:-2379.248254px;}
._53{margin-left:-2377.923208px;}
._2f{margin-left:-2375.391170px;}
._4d{margin-left:-2372.212188px;}
._3f{margin-left:-2370.436082px;}
._44{margin-left:-2206.209600px;}
._57{margin-left:-2162.592895px;}
._4a{margin-left:-2152.684800px;}
._3c{margin-left:-2148.408000px;}
._2b{margin-left:-2107.555200px;}
._35{margin-left:-2100.038400px;}
._1f{margin-left:-2078.683200px;}
._42{margin-left:-1731.329078px;}
._41{margin-left:-1446.984000px;}
._4f{margin-left:-31.011619px;}
._48{margin-left:-24.592647px;}
._2e{margin-left:-22.951954px;}
._4c{margin-left:-17.674800px;}
._1b{margin-left:-16.005600px;}
._1c{margin-left:-14.565600px;}
._f{margin-left:-13.373230px;}
._26{margin-left:-11.463446px;}
._1a{margin-left:-10.111032px;}
._0{margin-left:-8.318554px;}
._10{margin-left:-6.939905px;}
._4{margin-left:-4.957200px;}
._3{margin-left:-3.672000px;}
._6{margin-left:-1.850400px;}
._5{width:1.836000px;}
._1{width:2.970912px;}
._2d{width:4.884000px;}
._2{width:5.941824px;}
._24{width:7.081632px;}
._12{width:8.400000px;}
._7{width:10.203279px;}
._1d{width:12.048000px;}
._40{width:13.727095px;}
._23{width:16.447032px;}
._28{width:18.326554px;}
._21{width:19.709230px;}
._37{width:21.186000px;}
._31{width:22.341600px;}
._33{width:24.038246px;}
._18{width:25.790400px;}
._11{width:28.612800px;}
._32{width:32.973600px;}
._13{width:34.800000px;}
._19{width:41.280000px;}
._58{width:44.218370px;}
._16{width:50.542200px;}
._9{width:75.319381px;}
._15{width:78.000000px;}
._17{width:90.000000px;}
._14{width:92.400000px;}
._39{width:187.848737px;}
._43{width:189.788268px;}
._4e{width:194.342400px;}
._30{width:199.750754px;}
._54{width:209.989622px;}
._47{width:212.832122px;}
._27{width:215.806800px;}
._22{width:217.233600px;}
._38{width:220.650000px;}
._3e{width:223.479907px;}
._8{width:403.026282px;}
._e{width:408.148552px;}
._d{width:410.653895px;}
._a{width:412.587243px;}
._c{width:420.912074px;}
._b{width:426.489673px;}
._1e{width:434.354400px;}
._2a{width:452.087105px;}
._51{width:491.248800px;}
._3b{width:494.618400px;}
._34{width:497.858400px;}
._56{width:500.385600px;}
._49{width:528.156000px;}
._29{width:1516.134000px;}
._3a{width:1517.939107px;}
._50{width:1518.963600px;}
._55{width:1537.476435px;}
._2c{width:1714.838400px;}
._4b{width:1739.403905px;}
._20{width:1797.458400px;}
._3d{width:1799.856000px;}
._45{width:1827.626400px;}
._36{width:1830.960000px;}
.fc3{color:rgb(252,76,2);}
.fc2{color:rgb(84,87,89);}
.fc1{color:rgb(59,148,122);}
.fc4{color:rgb(77,77,77);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:27.000000px;}
.fs9{font-size:27.984000px;}
.fs14{font-size:31.482000px;}
.fs12{font-size:38.478000px;}
.fs15{font-size:42.000000px;}
.fsb{font-size:45.474000px;}
.fs8{font-size:48.000000px;}
.fsd{font-size:48.972000px;}
.fs13{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fsf{font-size:64.800000px;}
.fs7{font-size:66.000000px;}
.fse{font-size:72.000000px;}
.fsa{font-size:78.000000px;}
.fsc{font-size:84.000000px;}
.fs4{font-size:95.619000px;}
.fs16{font-size:108.000000px;}
.fs11{font-size:120.000000px;}
.fs3{font-size:123.826200px;}
.fs10{font-size:180.000000px;}
.fs1{font-size:183.600000px;}
.fs2{font-size:198.061200px;}
.fs0{font-size:297.091200px;}
.y0{bottom:0.000000px;}
.y13{bottom:52.821450px;}
.y12{bottom:64.728450px;}
.y3d{bottom:106.758750px;}
.y81{bottom:108.366450px;}
.y3c{bottom:120.258750px;}
.y80{bottom:121.869450px;}
.y3b{bottom:133.758750px;}
.y7f{bottom:135.372450px;}
.y92{bottom:135.866400px;}
.y1c{bottom:144.945300px;}
.y3a{bottom:147.258750px;}
.y7e{bottom:148.875450px;}
.y91{bottom:158.366400px;}
.y39{bottom:160.758750px;}
.y1b{bottom:164.745300px;}
.yd{bottom:171.732426px;}
.y90{bottom:180.866400px;}
.y26{bottom:184.038150px;}
.y1a{bottom:184.545300px;}
.y9d{bottom:192.223200px;}
.y25{bottom:197.538150px;}
.y8f{bottom:200.366400px;}
.y19{bottom:204.345300px;}
.y9c{bottom:205.723200px;}
.y24{bottom:211.038150px;}
.yc{bottom:216.732426px;}
.y9b{bottom:219.223200px;}
.y18{bottom:224.145300px;}
.y23{bottom:224.538150px;}
.y9a{bottom:232.723200px;}
.y22{bottom:238.038150px;}
.y8e{bottom:238.622250px;}
.y17{bottom:243.945300px;}
.y99{bottom:246.223200px;}
.y21{bottom:251.538150px;}
.y98{bottom:259.723200px;}
.y8d{bottom:261.122250px;}
.yb{bottom:261.732426px;}
.y16{bottom:263.745300px;}
.y20{bottom:265.038150px;}
.y97{bottom:273.223200px;}
.y1f{bottom:278.538150px;}
.y15{bottom:283.545300px;}
.y8c{bottom:283.622250px;}
.y96{bottom:286.723200px;}
.y1e{bottom:292.038150px;}
.y95{bottom:300.223200px;}
.y8b{bottom:303.122250px;}
.y14{bottom:303.345300px;}
.y1d{bottom:305.538150px;}
.ya{bottom:306.732426px;}
.y94{bottom:313.723200px;}
.y93{bottom:327.223200px;}
.y8a{bottom:341.378100px;}
.y9{bottom:351.732426px;}
.y4d{bottom:352.249500px;}
.yea{bottom:353.600700px;}
.y136{bottom:353.679600px;}
.y7d{bottom:354.010650px;}
.y15c{bottom:355.848750px;}
.y105{bottom:357.347550px;}
.y89{bottom:360.878100px;}
.y167{bottom:360.935100px;}
.y121{bottom:361.330200px;}
.y52{bottom:365.536950px;}
.yd5{bottom:365.633700px;}
.y7c{bottom:367.510650px;}
.y4c{bottom:372.049500px;}
.yfb{bottom:372.208200px;}
.ye9{bottom:373.400700px;}
.y135{bottom:373.479600px;}
.y117{bottom:373.724700px;}
.y11c{bottom:373.926150px;}
.y176{bottom:374.732700px;}
.y15b{bottom:375.648750px;}
.y104{bottom:377.147550px;}
.y100{bottom:379.166850px;}
.y166{bottom:380.735100px;}
.y7b{bottom:381.010650px;}
.y120{bottom:381.130200px;}
.y131{bottom:383.953650px;}
.y51{bottom:385.336950px;}
.yd4{bottom:385.433700px;}
.y4b{bottom:391.849500px;}
.yfa{bottom:392.008200px;}
.ye8{bottom:393.200700px;}
.y134{bottom:393.279600px;}
.y116{bottom:393.524700px;}
.y11b{bottom:393.726150px;}
.ya1{bottom:393.808650px;}
.y7a{bottom:394.510650px;}
.y175{bottom:394.532700px;}
.y15a{bottom:395.448750px;}
.y8{bottom:396.732426px;}
.y103{bottom:396.947550px;}
.yff{bottom:398.966850px;}
.y88{bottom:399.134100px;}
.y165{bottom:400.535100px;}
.y11f{bottom:400.930200px;}
.y130{bottom:403.753650px;}
.y50{bottom:405.136950px;}
.yd3{bottom:405.233700px;}
.y79{bottom:408.010650px;}
.y4a{bottom:411.649500px;}
.yf9{bottom:411.808200px;}
.ye7{bottom:413.000700px;}
.y133{bottom:413.079600px;}
.y115{bottom:413.324700px;}
.y11a{bottom:413.526150px;}
.y174{bottom:414.332700px;}
.y159{bottom:415.248750px;}
.y102{bottom:416.747550px;}
.y87{bottom:418.634100px;}
.yfe{bottom:418.766850px;}
.y141{bottom:419.487150px;}
.y164{bottom:420.335100px;}
.y11e{bottom:420.730200px;}
.ye6{bottom:421.186350px;}
.y78{bottom:421.510650px;}
.y43{bottom:423.187200px;}
.y12f{bottom:423.553650px;}
.y163{bottom:424.437750px;}
.y4f{bottom:424.936950px;}
.yd2{bottom:425.033700px;}
.y49{bottom:430.057500px;}
.y132{bottom:431.494950px;}
.yf8{bottom:431.608200px;}
.ybc{bottom:431.987700px;}
.y114{bottom:433.124700px;}
.y119{bottom:433.326150px;}
.y157{bottom:433.652100px;}
.y182{bottom:433.720650px;}
.y158{bottom:433.929750px;}
.y173{bottom:434.132700px;}
.y77{bottom:435.010650px;}
.y101{bottom:435.162900px;}
.y191{bottom:435.600300px;}
.yfd{bottom:438.566850px;}
.y11d{bottom:439.145550px;}
.y42{bottom:440.261400px;}
.ye5{bottom:440.986350px;}
.y7{bottom:441.732426px;}
.y162{bottom:442.262100px;}
.y4e{bottom:443.352300px;}
.y12e{bottom:443.353650px;}
.yd1{bottom:443.452200px;}
.y187{bottom:447.858450px;}
.y76{bottom:448.510650px;}
.yb4{bottom:448.694250px;}
.yf7{bottom:449.267550px;}
.y113{bottom:451.540050px;}
.y118{bottom:451.741500px;}
.ydc{bottom:452.526000px;}
.y172{bottom:452.548050px;}
.y181{bottom:453.223650px;}
.y156{bottom:453.452100px;}
.y190{bottom:453.865650px;}
.yc6{bottom:455.810700px;}
.y86{bottom:456.889950px;}
.yfc{bottom:456.982200px;}
.y41{bottom:460.061400px;}
.ye4{bottom:460.786350px;}
.y12d{bottom:461.772000px;}
.y75{bottom:462.010650px;}
.y161{bottom:462.062100px;}
.yef{bottom:464.449500px;}
.y186{bottom:467.361450px;}
.y140{bottom:468.482850px;}
.yb3{bottom:468.494250px;}
.ydb{bottom:470.350350px;}
.y112{bottom:470.775900px;}
.y180{bottom:472.726650px;}
.y155{bottom:473.252100px;}
.y18f{bottom:473.368650px;}
.yc5{bottom:473.635050px;}
.yaf{bottom:474.382200px;}
.y74{bottom:475.510650px;}
.y85{bottom:479.389950px;}
.y40{bottom:479.861400px;}
.ye3{bottom:480.586350px;}
.y160{bottom:481.862100px;}
.yee{bottom:484.249500px;}
.y13b{bottom:486.429450px;}
.y6{bottom:486.732426px;}
.y185{bottom:486.864450px;}
.y10a{bottom:487.119600px;}
.y13f{bottom:488.282850px;}
.yb2{bottom:488.294250px;}
.y73{bottom:489.010650px;}
.yda{bottom:490.150350px;}
.y111{bottom:490.575900px;}
.y178{bottom:491.980650px;}
.yae{bottom:492.101700px;}
.y17f{bottom:492.229650px;}
.y18e{bottom:492.871650px;}
.y154{bottom:493.052100px;}
.yc4{bottom:493.435050px;}
.y171{bottom:496.338900px;}
.y84{bottom:498.889950px;}
.ye2{bottom:499.003800px;}
.y3f{bottom:499.661400px;}
.y15f{bottom:501.662100px;}
.y72{bottom:502.510650px;}
.yed{bottom:504.049500px;}
.y13a{bottom:504.338700px;}
.yf1{bottom:505.328700px;}
.y184{bottom:506.367450px;}
.y109{bottom:506.919600px;}
.y16c{bottom:507.906300px;}
.y13e{bottom:508.082850px;}
.yb1{bottom:508.094250px;}
.ycb{bottom:508.428750px;}
.yd9{bottom:509.950350px;}
.y110{bottom:510.375900px;}
.y17e{bottom:511.099200px;}
.y153{bottom:511.459350px;}
.yad{bottom:511.901700px;}
.y18d{bottom:512.374650px;}
.yc3{bottom:513.235050px;}
.y71{bottom:516.010650px;}
.y170{bottom:516.138900px;}
.yec{bottom:523.849500px;}
.y139{bottom:524.138700px;}
.y183{bottom:525.232800px;}
.y143{bottom:526.049400px;}
.yca{bottom:526.253100px;}
.yb0{bottom:526.513800px;}
.y108{bottom:526.719600px;}
.y16b{bottom:527.706300px;}
.y13d{bottom:527.882850px;}
.y70{bottom:529.510650px;}
.yd8{bottom:529.750350px;}
.y10f{bottom:530.175900px;}
.yac{bottom:531.701700px;}
.y5{bottom:531.732426px;}
.y38{bottom:531.938250px;}
.yc2{bottom:533.035050px;}
.y48{bottom:533.753700px;}
.y16f{bottom:535.938900px;}
.y83{bottom:539.141550px;}
.yeb{bottom:542.264850px;}
.y6f{bottom:543.010650px;}
.y138{bottom:543.938700px;}
.yc9{bottom:546.053100px;}
.y13c{bottom:546.304650px;}
.y107{bottom:546.519600px;}
.y37{bottom:546.938250px;}
.y16a{bottom:547.506300px;}
.y10e{bottom:548.591250px;}
.y47{bottom:551.577900px;}
.y14d{bottom:555.261750px;}
.y16e{bottom:555.738900px;}
.y6e{bottom:556.510650px;}
.y3e{bottom:557.961900px;}
.y82{bottom:563.144550px;}
.y137{bottom:563.738700px;}
.y106{bottom:564.934950px;}
.yab{bottom:565.150950px;}
.yc8{bottom:565.853100px;}
.y169{bottom:567.306300px;}
.y59{bottom:567.700200px;}
.y6d{bottom:570.010650px;}
.y46{bottom:571.377900px;}
.y152{bottom:571.982550px;}
.y14c{bottom:573.085950px;}
.y16d{bottom:574.154250px;}
.y126{bottom:575.331450px;}
.y36{bottom:575.438250px;}
.y4{bottom:576.743250px;}
.yaa{bottom:582.870450px;}
.y6c{bottom:583.510650px;}
.y58{bottom:585.524400px;}
.yc7{bottom:585.653100px;}
.y168{bottom:585.721650px;}
.yd7{bottom:587.367000px;}
.y35{bottom:588.938250px;}
.y151{bottom:589.806900px;}
.y45{bottom:591.177900px;}
.y14b{bottom:592.885950px;}
.y125{bottom:593.155650px;}
.yc1{bottom:596.816550px;}
.y6b{bottom:597.010650px;}
.yf6{bottom:601.158750px;}
.ya9{bottom:602.670450px;}
.y12c{bottom:603.036000px;}
.y57{bottom:605.324400px;}
.y18c{bottom:605.625900px;}
.y148{bottom:608.124300px;}
.y150{bottom:609.606900px;}
.y44{bottom:610.977900px;}
.yb9{bottom:611.874300px;}
.y14a{bottom:612.685950px;}
.y124{bottom:612.955650px;}
.y10d{bottom:613.335750px;}
.yc0{bottom:614.640900px;}
.y34{bottom:617.438250px;}
.yf5{bottom:618.983100px;}
.y12b{bottom:620.945250px;}
.ye1{bottom:622.172400px;}
.ya8{bottom:622.470450px;}
.y18b{bottom:623.891250px;}
.y56{bottom:625.124400px;}
.y147{bottom:625.948650px;}
.y14f{bottom:629.406900px;}
.yb8{bottom:629.698650px;}
.y33{bottom:630.938250px;}
.y149{bottom:632.485950px;}
.y123{bottom:632.755650px;}
.ya6{bottom:633.286800px;}
.yd0{bottom:633.543000px;}
.ybf{bottom:634.440900px;}
.yf4{bottom:638.783100px;}
.ye0{bottom:639.546750px;}
.y11{bottom:640.566150px;}
.y12a{bottom:640.745250px;}
.ya7{bottom:642.270450px;}
.y18a{bottom:643.394250px;}
.y55{bottom:644.924400px;}
.y146{bottom:645.748650px;}
.y14e{bottom:649.206900px;}
.yb7{bottom:649.498650px;}
.ya5{bottom:651.111000px;}
.ycf{bottom:651.367200px;}
.y15e{bottom:651.618600px;}
.y122{bottom:652.555650px;}
.ybe{bottom:654.240900px;}
.yf3{bottom:658.583100px;}
.y10{bottom:658.866150px;}
.ydf{bottom:659.346750px;}
.y32{bottom:659.438250px;}
.y129{bottom:660.545250px;}
.y189{bottom:662.897250px;}
.y17d{bottom:663.087600px;}
.y62{bottom:663.685500px;}
.y145{bottom:665.548650px;}
.yb6{bottom:669.298650px;}
.ya4{bottom:670.911000px;}
.yce{bottom:671.167200px;}
.y31{bottom:672.938250px;}
.ybd{bottom:674.040900px;}
.yf{bottom:677.166150px;}
.yf2{bottom:678.383100px;}
.yde{bottom:679.146750px;}
.y128{bottom:680.345250px;}
.y17c{bottom:681.946500px;}
.y188{bottom:682.400250px;}
.y66{bottom:683.485500px;}
.y61{bottom:683.485650px;}
.y144{bottom:685.348650px;}
.yb5{bottom:689.098650px;}
.ya3{bottom:690.711000px;}
.ycd{bottom:690.967200px;}
.ye{bottom:695.466150px;}
.ydd{bottom:698.946750px;}
.y30{bottom:701.438250px;}
.y17b{bottom:701.449500px;}
.y65{bottom:703.285500px;}
.y60{bottom:703.285650px;}
.ya2{bottom:710.511000px;}
.ycc{bottom:710.767200px;}
.y2f{bottom:719.453250px;}
.y17a{bottom:720.952500px;}
.y64{bottom:723.085500px;}
.y5f{bottom:723.085650px;}
.y179{bottom:740.455500px;}
.y63{bottom:742.885500px;}
.y5e{bottom:742.885650px;}
.y2e{bottom:755.283300px;}
.y5d{bottom:762.685500px;}
.y2d{bottom:779.286300px;}
.y5c{bottom:782.485500px;}
.y5b{bottom:802.285500px;}
.y5a{bottom:822.085500px;}
.y2c{bottom:832.239750px;}
.y2b{bottom:855.542250px;}
.y9f{bottom:868.450050px;}
.y10c{bottom:868.451550px;}
.yba{bottom:869.519250px;}
.y2a{bottom:878.843850px;}
.y3{bottom:879.249000px;}
.y29{bottom:902.144700px;}
.ya0{bottom:915.206550px;}
.yd6{bottom:915.516600px;}
.ybb{bottom:915.631650px;}
.y15d{bottom:915.883500px;}
.y127{bottom:915.887400px;}
.y10b{bottom:916.056900px;}
.y177{bottom:916.098600px;}
.yf0{bottom:916.154250px;}
.y142{bottom:916.580550px;}
.y194{bottom:918.091050px;}
.y28{bottom:925.447200px;}
.y2{bottom:927.849000px;}
.y27{bottom:948.749700px;}
.y1{bottom:981.849000px;}
.y193{bottom:995.941350px;}
.y54{bottom:1001.256300px;}
.y192{bottom:1030.441350px;}
.y53{bottom:1035.756300px;}
.y9e{bottom:1083.245850px;}
.y6a{bottom:1134.674250px;}
.y69{bottom:1149.671250px;}
.y68{bottom:1173.674250px;}
.y67{bottom:1199.168250px;}
.h8{height:20.658691px;}
.h9{height:28.291992px;}
.h1c{height:29.652000px;}
.hd{height:33.888000px;}
.hc{height:35.740704px;}
.h7{height:42.360000px;}
.h16{height:45.748800px;}
.ha{height:46.596000px;}
.h1e{height:47.472000px;}
.h1a{height:49.142868px;}
.h19{height:49.144068px;}
.h14{height:50.832000px;}
.he{height:54.990000px;}
.hf{height:55.068000px;}
.h10{height:58.039770px;}
.h15{height:58.080000px;}
.h11{height:58.082244px;}
.h12{height:59.304000px;}
.h1b{height:62.534232px;}
.h13{height:62.558232px;}
.hb{height:65.274000px;}
.h1d{height:76.140000px;}
.h1f{height:86.667600px;}
.h5{height:87.421297px;}
.h6{height:87.464592px;}
.h20{height:102.967200px;}
.h18{height:118.680000px;}
.h3{height:181.580400px;}
.h17{height:181.620000px;}
.h4{height:195.882527px;}
.h2{height:299.765021px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x13{left:-437.456700px;}
.x14{left:-420.440700px;}
.x1a{left:-146.102400px;}
.x19{left:-129.855450px;}
.x0{left:0.000000px;}
.x4{left:42.519600px;}
.x6c{left:47.082600px;}
.x1{left:49.281000px;}
.x5{left:60.550350px;}
.x6{left:62.510250px;}
.x16{left:63.779550px;}
.x17{left:80.787450px;}
.xf{left:166.825950px;}
.x10{left:182.924250px;}
.x4f{left:184.722900px;}
.x50{left:200.822700px;}
.x6d{left:203.956650px;}
.x5e{left:205.208400px;}
.x66{left:206.614800px;}
.x47{left:218.294850px;}
.x5f{left:221.306700px;}
.x67{left:222.712950px;}
.x48{left:234.393150px;}
.x2a{left:237.047250px;}
.x37{left:239.988300px;}
.x29{left:253.294350px;}
.x6a{left:268.747350px;}
.x51{left:289.960650px;}
.x3{left:300.181200px;}
.x3c{left:305.735400px;}
.x61{left:313.509300px;}
.x53{left:314.685900px;}
.x3d{left:321.833700px;}
.x60{left:329.756400px;}
.x52{left:330.932850px;}
.x27{left:343.475850px;}
.x26{left:358.866150px;}
.x25{left:360.985950px;}
.x1b{left:363.124350px;}
.x12{left:365.840550px;}
.x46{left:376.400400px;}
.x1f{left:378.766200px;}
.x11{left:382.087650px;}
.x59{left:402.704850px;}
.x64{left:406.207650px;}
.x4c{left:415.573350px;}
.x58{left:418.951950px;}
.x65{left:422.305950px;}
.x4e{left:423.429900px;}
.x33{left:425.366700px;}
.x3a{left:426.401250px;}
.x4b{left:431.820450px;}
.x4d{left:439.677000px;}
.x34{left:441.462000px;}
.x3b{left:442.653000px;}
.x69{left:446.515650px;}
.x2{left:455.456700px;}
.x15{left:456.731550px;}
.xd{left:468.192000px;}
.x68{left:471.266700px;}
.x7{left:472.472700px;}
.x18{left:473.903550px;}
.xe{left:484.282500px;}
.x28{left:490.660350px;}
.x5c{left:510.261750px;}
.x22{left:518.794950px;}
.x49{left:521.714550px;}
.x5b{left:523.399950px;}
.x5d{left:526.360350px;}
.x6b{left:527.406900px;}
.x42{left:528.732300px;}
.x54{left:530.513550px;}
.x1e{left:532.346400px;}
.x23{left:534.899100px;}
.x4a{left:537.812700px;}
.x5a{left:539.647050px;}
.x63{left:541.610700px;}
.x3e{left:547.119900px;}
.x1d{left:548.593500px;}
.x32{left:558.449700px;}
.x3f{left:563.218200px;}
.x2c{left:565.830600px;}
.x8{left:569.697300px;}
.x31{left:574.696800px;}
.x2b{left:582.077700px;}
.x35{left:585.598500px;}
.x62{left:590.455200px;}
.x43{left:594.168900px;}
.x57{left:598.468500px;}
.x36{left:601.696800px;}
.x2f{left:603.399600px;}
.x39{left:605.897250px;}
.x56{left:614.715600px;}
.x30{left:619.495050px;}
.x38{left:622.144350px;}
.x2e{left:629.206200px;}
.x55{left:634.036350px;}
.x44{left:639.983850px;}
.x24{left:642.513750px;}
.x2d{left:645.453300px;}
.x45{left:656.082150px;}
.xc{left:658.120800px;}
.xb{left:674.367900px;}
.x21{left:691.729950px;}
.x40{left:694.559100px;}
.x41{left:695.622000px;}
.x1c{left:711.180600px;}
.x20{left:716.481000px;}
.xa{left:746.810850px;}
.x9{left:763.057950px;}
@media print{
.v7{vertical-align:-64.021333pt;}
.v9{vertical-align:-48.530667pt;}
.v5{vertical-align:-16.053333pt;}
.v1{vertical-align:-10.447467pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:10.666667pt;}
.v2{vertical-align:14.208000pt;}
.v6{vertical-align:19.536533pt;}
.v3{vertical-align:23.093867pt;}
.v4{vertical-align:24.874667pt;}
.va{vertical-align:36.372267pt;}
.vb{vertical-align:50.860800pt;}
.ls1{letter-spacing:-5.281621pt;}
.ls2{letter-spacing:-1.632000pt;}
.lsf{letter-spacing:-1.600000pt;}
.ls10{letter-spacing:-1.066667pt;}
.ls1e{letter-spacing:-0.768000pt;}
.ls1b{letter-spacing:-0.410667pt;}
.ls24{letter-spacing:-0.384000pt;}
.ls1a{letter-spacing:-0.293333pt;}
.ls23{letter-spacing:-0.288000pt;}
.lse{letter-spacing:-0.277333pt;}
.ls21{letter-spacing:-0.256000pt;}
.ls19{letter-spacing:-0.234667pt;}
.ls1f{letter-spacing:-0.213333pt;}
.ls1c{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.176000pt;}
.ls22{letter-spacing:-0.149248pt;}
.ls3{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.099499pt;}
.ls15{letter-spacing:0.114864pt;}
.ls16{letter-spacing:0.124160pt;}
.ls12{letter-spacing:0.170453pt;}
.ls9{letter-spacing:0.170667pt;}
.ls1d{letter-spacing:0.174123pt;}
.ls14{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.213333pt;}
.ls4{letter-spacing:0.240000pt;}
.ls7{letter-spacing:0.248960pt;}
.ls18{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.266667pt;}
.ls11{letter-spacing:0.293333pt;}
.lsb{letter-spacing:0.298667pt;}
.lsa{letter-spacing:0.346667pt;}
.ls17{letter-spacing:0.373333pt;}
.ls6{letter-spacing:0.426667pt;}
.ls5{letter-spacing:0.586667pt;}
.ls13{letter-spacing:29.838400pt;}
.lsc{letter-spacing:77.866667pt;}
.ws2b{word-spacing:-21.530667pt;}
.ws37{word-spacing:-17.952000pt;}
.ws7{word-spacing:-13.651200pt;}
.ws31{word-spacing:-13.200000pt;}
.ws13{word-spacing:-12.608000pt;}
.ws10{word-spacing:-11.865600pt;}
.ws2c{word-spacing:-11.733333pt;}
.ws5{word-spacing:-10.538667pt;}
.ws14{word-spacing:-10.316768pt;}
.ws38{word-spacing:-9.562667pt;}
.wsf{word-spacing:-9.504000pt;}
.ws1b{word-spacing:-9.221333pt;}
.ws18{word-spacing:-8.832000pt;}
.ws15{word-spacing:-8.746667pt;}
.ws6{word-spacing:-8.609744pt;}
.ws32{word-spacing:-8.294400pt;}
.ws12{word-spacing:-6.840533pt;}
.wse{word-spacing:-5.932800pt;}
.wsd{word-spacing:-5.866667pt;}
.ws17{word-spacing:-5.149056pt;}
.ws19{word-spacing:-5.074432pt;}
.ws16{word-spacing:-4.974933pt;}
.ws1a{word-spacing:-4.825685pt;}
.ws2a{word-spacing:-4.341333pt;}
.ws9{word-spacing:-0.426667pt;}
.ws23{word-spacing:-0.373333pt;}
.wsc{word-spacing:-0.298667pt;}
.ws1d{word-spacing:-0.293333pt;}
.ws3{word-spacing:-0.266667pt;}
.ws26{word-spacing:-0.256000pt;}
.ws4{word-spacing:-0.240000pt;}
.wsa{word-spacing:-0.213333pt;}
.ws21{word-spacing:-0.170667pt;}
.ws1{word-spacing:0.000000pt;}
.ws8{word-spacing:0.176000pt;}
.ws25{word-spacing:0.192000pt;}
.ws1f{word-spacing:0.234667pt;}
.ws22{word-spacing:0.256000pt;}
.wsb{word-spacing:0.277333pt;}
.ws24{word-spacing:0.288000pt;}
.ws1e{word-spacing:0.293333pt;}
.ws27{word-spacing:0.384000pt;}
.ws20{word-spacing:1.066667pt;}
.ws11{word-spacing:1.600000pt;}
.ws2{word-spacing:1.632000pt;}
.ws0{word-spacing:5.281621pt;}
.ws2e{word-spacing:203.161067pt;}
.ws1c{word-spacing:260.236800pt;}
.ws29{word-spacing:324.691200pt;}
.ws33{word-spacing:342.374400pt;}
.ws30{word-spacing:379.411200pt;}
.ws2f{word-spacing:390.355200pt;}
.ws36{word-spacing:392.140800pt;}
.ws34{word-spacing:392.256000pt;}
.ws2d{word-spacing:396.576000pt;}
.ws35{word-spacing:716.140800pt;}
.ws28{word-spacing:1124.553600pt;}
._52{margin-left:-2477.318400pt;}
._25{margin-left:-2117.461867pt;}
._46{margin-left:-2114.887337pt;}
._53{margin-left:-2113.709518pt;}
._2f{margin-left:-2111.458818pt;}
._4d{margin-left:-2108.633056pt;}
._3f{margin-left:-2107.054295pt;}
._44{margin-left:-1961.075200pt;}
._57{margin-left:-1922.304795pt;}
._4a{margin-left:-1913.497600pt;}
._3c{margin-left:-1909.696000pt;}
._2b{margin-left:-1873.382400pt;}
._35{margin-left:-1866.700800pt;}
._1f{margin-left:-1847.718400pt;}
._42{margin-left:-1538.959181pt;}
._41{margin-left:-1286.208000pt;}
._4f{margin-left:-27.565884pt;}
._48{margin-left:-21.860131pt;}
._2e{margin-left:-20.401737pt;}
._4c{margin-left:-15.710933pt;}
._1b{margin-left:-14.227200pt;}
._1c{margin-left:-12.947200pt;}
._f{margin-left:-11.887315pt;}
._26{margin-left:-10.189730pt;}
._1a{margin-left:-8.987584pt;}
._0{margin-left:-7.394270pt;}
._10{margin-left:-6.168805pt;}
._4{margin-left:-4.406400pt;}
._3{margin-left:-3.264000pt;}
._6{margin-left:-1.644800pt;}
._5{width:1.632000pt;}
._1{width:2.640811pt;}
._2d{width:4.341333pt;}
._2{width:5.281621pt;}
._24{width:6.294784pt;}
._12{width:7.466667pt;}
._7{width:9.069581pt;}
._1d{width:10.709333pt;}
._40{width:12.201862pt;}
._23{width:14.619584pt;}
._28{width:16.290270pt;}
._21{width:17.519315pt;}
._37{width:18.832000pt;}
._31{width:19.859200pt;}
._33{width:21.367330pt;}
._18{width:22.924800pt;}
._11{width:25.433600pt;}
._32{width:29.309867pt;}
._13{width:30.933333pt;}
._19{width:36.693333pt;}
._58{width:39.305218pt;}
._16{width:44.926400pt;}
._9{width:66.950561pt;}
._15{width:69.333333pt;}
._17{width:80.000000pt;}
._14{width:82.133333pt;}
._39{width:166.976655pt;}
._43{width:168.700683pt;}
._4e{width:172.748800pt;}
._30{width:177.556226pt;}
._54{width:186.657442pt;}
._47{width:189.184109pt;}
._27{width:191.828267pt;}
._22{width:193.096533pt;}
._38{width:196.133333pt;}
._3e{width:198.648806pt;}
._8{width:358.245584pt;}
._e{width:362.798713pt;}
._d{width:365.025685pt;}
._a{width:366.744216pt;}
._c{width:374.144066pt;}
._b{width:379.101931pt;}
._1e{width:386.092800pt;}
._2a{width:401.855205pt;}
._51{width:436.665600pt;}
._3b{width:439.660800pt;}
._34{width:442.540800pt;}
._56{width:444.787200pt;}
._49{width:469.472000pt;}
._29{width:1347.674667pt;}
._3a{width:1349.279206pt;}
._50{width:1350.189867pt;}
._55{width:1366.645720pt;}
._2c{width:1524.300800pt;}
._4b{width:1546.136805pt;}
._20{width:1597.740800pt;}
._3d{width:1599.872000pt;}
._45{width:1624.556800pt;}
._36{width:1627.520000pt;}
.fs6{font-size:24.000000pt;}
.fs9{font-size:24.874667pt;}
.fs14{font-size:27.984000pt;}
.fs12{font-size:34.202667pt;}
.fs15{font-size:37.333333pt;}
.fsb{font-size:40.421333pt;}
.fs8{font-size:42.666667pt;}
.fsd{font-size:43.530667pt;}
.fs13{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fsf{font-size:57.600000pt;}
.fs7{font-size:58.666667pt;}
.fse{font-size:64.000000pt;}
.fsa{font-size:69.333333pt;}
.fsc{font-size:74.666667pt;}
.fs4{font-size:84.994667pt;}
.fs16{font-size:96.000000pt;}
.fs11{font-size:106.666667pt;}
.fs3{font-size:110.067733pt;}
.fs10{font-size:160.000000pt;}
.fs1{font-size:163.200000pt;}
.fs2{font-size:176.054400pt;}
.fs0{font-size:264.081067pt;}
.y0{bottom:0.000000pt;}
.y13{bottom:46.952400pt;}
.y12{bottom:57.536400pt;}
.y3d{bottom:94.896667pt;}
.y81{bottom:96.325733pt;}
.y3c{bottom:106.896667pt;}
.y80{bottom:108.328400pt;}
.y3b{bottom:118.896667pt;}
.y7f{bottom:120.331067pt;}
.y92{bottom:120.770133pt;}
.y1c{bottom:128.840267pt;}
.y3a{bottom:130.896667pt;}
.y7e{bottom:132.333733pt;}
.y91{bottom:140.770133pt;}
.y39{bottom:142.896667pt;}
.y1b{bottom:146.440267pt;}
.yd{bottom:152.651046pt;}
.y90{bottom:160.770133pt;}
.y26{bottom:163.589467pt;}
.y1a{bottom:164.040267pt;}
.y9d{bottom:170.865067pt;}
.y25{bottom:175.589467pt;}
.y8f{bottom:178.103467pt;}
.y19{bottom:181.640267pt;}
.y9c{bottom:182.865067pt;}
.y24{bottom:187.589467pt;}
.yc{bottom:192.651046pt;}
.y9b{bottom:194.865067pt;}
.y18{bottom:199.240267pt;}
.y23{bottom:199.589467pt;}
.y9a{bottom:206.865067pt;}
.y22{bottom:211.589467pt;}
.y8e{bottom:212.108667pt;}
.y17{bottom:216.840267pt;}
.y99{bottom:218.865067pt;}
.y21{bottom:223.589467pt;}
.y98{bottom:230.865067pt;}
.y8d{bottom:232.108667pt;}
.yb{bottom:232.651046pt;}
.y16{bottom:234.440267pt;}
.y20{bottom:235.589467pt;}
.y97{bottom:242.865067pt;}
.y1f{bottom:247.589467pt;}
.y15{bottom:252.040267pt;}
.y8c{bottom:252.108667pt;}
.y96{bottom:254.865067pt;}
.y1e{bottom:259.589467pt;}
.y95{bottom:266.865067pt;}
.y8b{bottom:269.442000pt;}
.y14{bottom:269.640267pt;}
.y1d{bottom:271.589467pt;}
.ya{bottom:272.651046pt;}
.y94{bottom:278.865067pt;}
.y93{bottom:290.865067pt;}
.y8a{bottom:303.447200pt;}
.y9{bottom:312.651046pt;}
.y4d{bottom:313.110667pt;}
.yea{bottom:314.311733pt;}
.y136{bottom:314.381867pt;}
.y7d{bottom:314.676133pt;}
.y15c{bottom:316.310000pt;}
.y105{bottom:317.642267pt;}
.y89{bottom:320.780533pt;}
.y167{bottom:320.831200pt;}
.y121{bottom:321.182400pt;}
.y52{bottom:324.921733pt;}
.yd5{bottom:325.007733pt;}
.y7c{bottom:326.676133pt;}
.y4c{bottom:330.710667pt;}
.yfb{bottom:330.851733pt;}
.ye9{bottom:331.911733pt;}
.y135{bottom:331.981867pt;}
.y117{bottom:332.199733pt;}
.y11c{bottom:332.378800pt;}
.y176{bottom:333.095733pt;}
.y15b{bottom:333.910000pt;}
.y104{bottom:335.242267pt;}
.y100{bottom:337.037200pt;}
.y166{bottom:338.431200pt;}
.y7b{bottom:338.676133pt;}
.y120{bottom:338.782400pt;}
.y131{bottom:341.292133pt;}
.y51{bottom:342.521733pt;}
.yd4{bottom:342.607733pt;}
.y4b{bottom:348.310667pt;}
.yfa{bottom:348.451733pt;}
.ye8{bottom:349.511733pt;}
.y134{bottom:349.581867pt;}
.y116{bottom:349.799733pt;}
.y11b{bottom:349.978800pt;}
.ya1{bottom:350.052133pt;}
.y7a{bottom:350.676133pt;}
.y175{bottom:350.695733pt;}
.y15a{bottom:351.510000pt;}
.y8{bottom:352.651046pt;}
.y103{bottom:352.842267pt;}
.yff{bottom:354.637200pt;}
.y88{bottom:354.785867pt;}
.y165{bottom:356.031200pt;}
.y11f{bottom:356.382400pt;}
.y130{bottom:358.892133pt;}
.y50{bottom:360.121733pt;}
.yd3{bottom:360.207733pt;}
.y79{bottom:362.676133pt;}
.y4a{bottom:365.910667pt;}
.yf9{bottom:366.051733pt;}
.ye7{bottom:367.111733pt;}
.y133{bottom:367.181867pt;}
.y115{bottom:367.399733pt;}
.y11a{bottom:367.578800pt;}
.y174{bottom:368.295733pt;}
.y159{bottom:369.110000pt;}
.y102{bottom:370.442267pt;}
.y87{bottom:372.119200pt;}
.yfe{bottom:372.237200pt;}
.y141{bottom:372.877467pt;}
.y164{bottom:373.631200pt;}
.y11e{bottom:373.982400pt;}
.ye6{bottom:374.387867pt;}
.y78{bottom:374.676133pt;}
.y43{bottom:376.166400pt;}
.y12f{bottom:376.492133pt;}
.y163{bottom:377.278000pt;}
.y4f{bottom:377.721733pt;}
.yd2{bottom:377.807733pt;}
.y49{bottom:382.273333pt;}
.y132{bottom:383.551067pt;}
.yf8{bottom:383.651733pt;}
.ybc{bottom:383.989067pt;}
.y114{bottom:384.999733pt;}
.y119{bottom:385.178800pt;}
.y157{bottom:385.468533pt;}
.y182{bottom:385.529467pt;}
.y158{bottom:385.715333pt;}
.y173{bottom:385.895733pt;}
.y77{bottom:386.676133pt;}
.y101{bottom:386.811467pt;}
.y191{bottom:387.200267pt;}
.yfd{bottom:389.837200pt;}
.y11d{bottom:390.351600pt;}
.y42{bottom:391.343467pt;}
.ye5{bottom:391.987867pt;}
.y7{bottom:392.651046pt;}
.y162{bottom:393.121867pt;}
.y4e{bottom:394.090933pt;}
.y12e{bottom:394.092133pt;}
.yd1{bottom:394.179733pt;}
.y187{bottom:398.096400pt;}
.y76{bottom:398.676133pt;}
.yb4{bottom:398.839333pt;}
.yf7{bottom:399.348933pt;}
.y113{bottom:401.368933pt;}
.y118{bottom:401.548000pt;}
.ydc{bottom:402.245333pt;}
.y172{bottom:402.264933pt;}
.y181{bottom:402.865467pt;}
.y156{bottom:403.068533pt;}
.y190{bottom:403.436133pt;}
.yc6{bottom:405.165067pt;}
.y86{bottom:406.124400pt;}
.yfc{bottom:406.206400pt;}
.y41{bottom:408.943467pt;}
.ye4{bottom:409.587867pt;}
.y12d{bottom:410.464000pt;}
.y75{bottom:410.676133pt;}
.y161{bottom:410.721867pt;}
.yef{bottom:412.844000pt;}
.y186{bottom:415.432400pt;}
.y140{bottom:416.429200pt;}
.yb3{bottom:416.439333pt;}
.ydb{bottom:418.089200pt;}
.y112{bottom:418.467467pt;}
.y180{bottom:420.201467pt;}
.y155{bottom:420.668533pt;}
.y18f{bottom:420.772133pt;}
.yc5{bottom:421.008933pt;}
.yaf{bottom:421.673067pt;}
.y74{bottom:422.676133pt;}
.y85{bottom:426.124400pt;}
.y40{bottom:426.543467pt;}
.ye3{bottom:427.187867pt;}
.y160{bottom:428.321867pt;}
.yee{bottom:430.444000pt;}
.y13b{bottom:432.381733pt;}
.y6{bottom:432.651046pt;}
.y185{bottom:432.768400pt;}
.y10a{bottom:432.995200pt;}
.y13f{bottom:434.029200pt;}
.yb2{bottom:434.039333pt;}
.y73{bottom:434.676133pt;}
.yda{bottom:435.689200pt;}
.y111{bottom:436.067467pt;}
.y178{bottom:437.316133pt;}
.yae{bottom:437.423733pt;}
.y17f{bottom:437.537467pt;}
.y18e{bottom:438.108133pt;}
.y154{bottom:438.268533pt;}
.yc4{bottom:438.608933pt;}
.y171{bottom:441.190133pt;}
.y84{bottom:443.457733pt;}
.ye2{bottom:443.558933pt;}
.y3f{bottom:444.143467pt;}
.y15f{bottom:445.921867pt;}
.y72{bottom:446.676133pt;}
.yed{bottom:448.044000pt;}
.y13a{bottom:448.301067pt;}
.yf1{bottom:449.181067pt;}
.y184{bottom:450.104400pt;}
.y109{bottom:450.595200pt;}
.y16c{bottom:451.472267pt;}
.y13e{bottom:451.629200pt;}
.yb1{bottom:451.639333pt;}
.ycb{bottom:451.936667pt;}
.yd9{bottom:453.289200pt;}
.y110{bottom:453.667467pt;}
.y17e{bottom:454.310400pt;}
.y153{bottom:454.630533pt;}
.yad{bottom:455.023733pt;}
.y18d{bottom:455.444133pt;}
.yc3{bottom:456.208933pt;}
.y71{bottom:458.676133pt;}
.y170{bottom:458.790133pt;}
.yec{bottom:465.644000pt;}
.y139{bottom:465.901067pt;}
.y183{bottom:466.873600pt;}
.y143{bottom:467.599467pt;}
.yca{bottom:467.780533pt;}
.yb0{bottom:468.012267pt;}
.y108{bottom:468.195200pt;}
.y16b{bottom:469.072267pt;}
.y13d{bottom:469.229200pt;}
.y70{bottom:470.676133pt;}
.yd8{bottom:470.889200pt;}
.y10f{bottom:471.267467pt;}
.yac{bottom:472.623733pt;}
.y5{bottom:472.651046pt;}
.y38{bottom:472.834000pt;}
.yc2{bottom:473.808933pt;}
.y48{bottom:474.447733pt;}
.y16f{bottom:476.390133pt;}
.y83{bottom:479.236933pt;}
.yeb{bottom:482.013200pt;}
.y6f{bottom:482.676133pt;}
.y138{bottom:483.501067pt;}
.yc9{bottom:485.380533pt;}
.y13c{bottom:485.604133pt;}
.y107{bottom:485.795200pt;}
.y37{bottom:486.167333pt;}
.y16a{bottom:486.672267pt;}
.y10e{bottom:487.636667pt;}
.y47{bottom:490.291467pt;}
.y14d{bottom:493.566000pt;}
.y16e{bottom:493.990133pt;}
.y6e{bottom:494.676133pt;}
.y3e{bottom:495.966133pt;}
.y82{bottom:500.572933pt;}
.y137{bottom:501.101067pt;}
.y106{bottom:502.164400pt;}
.yab{bottom:502.356400pt;}
.yc8{bottom:502.980533pt;}
.y169{bottom:504.272267pt;}
.y59{bottom:504.622400pt;}
.y6d{bottom:506.676133pt;}
.y46{bottom:507.891467pt;}
.y152{bottom:508.428933pt;}
.y14c{bottom:509.409733pt;}
.y16d{bottom:510.359333pt;}
.y126{bottom:511.405733pt;}
.y36{bottom:511.500667pt;}
.y4{bottom:512.660667pt;}
.yaa{bottom:518.107067pt;}
.y6c{bottom:518.676133pt;}
.y58{bottom:520.466133pt;}
.yc7{bottom:520.580533pt;}
.y168{bottom:520.641467pt;}
.yd7{bottom:522.104000pt;}
.y35{bottom:523.500667pt;}
.y151{bottom:524.272800pt;}
.y45{bottom:525.491467pt;}
.y14b{bottom:527.009733pt;}
.y125{bottom:527.249467pt;}
.yc1{bottom:530.503600pt;}
.y6b{bottom:530.676133pt;}
.yf6{bottom:534.363333pt;}
.ya9{bottom:535.707067pt;}
.y12c{bottom:536.032000pt;}
.y57{bottom:538.066133pt;}
.y18c{bottom:538.334133pt;}
.y148{bottom:540.554933pt;}
.y150{bottom:541.872800pt;}
.y44{bottom:543.091467pt;}
.yb9{bottom:543.888267pt;}
.y14a{bottom:544.609733pt;}
.y124{bottom:544.849467pt;}
.y10d{bottom:545.187333pt;}
.yc0{bottom:546.347467pt;}
.y34{bottom:548.834000pt;}
.yf5{bottom:550.207200pt;}
.y12b{bottom:551.951333pt;}
.ye1{bottom:553.042133pt;}
.ya8{bottom:553.307067pt;}
.y18b{bottom:554.570000pt;}
.y56{bottom:555.666133pt;}
.y147{bottom:556.398800pt;}
.y14f{bottom:559.472800pt;}
.yb8{bottom:559.732133pt;}
.y33{bottom:560.834000pt;}
.y149{bottom:562.209733pt;}
.y123{bottom:562.449467pt;}
.ya6{bottom:562.921600pt;}
.yd0{bottom:563.149333pt;}
.ybf{bottom:563.947467pt;}
.yf4{bottom:567.807200pt;}
.ye0{bottom:568.486000pt;}
.y11{bottom:569.392133pt;}
.y12a{bottom:569.551333pt;}
.ya7{bottom:570.907067pt;}
.y18a{bottom:571.906000pt;}
.y55{bottom:573.266133pt;}
.y146{bottom:573.998800pt;}
.y14e{bottom:577.072800pt;}
.yb7{bottom:577.332133pt;}
.ya5{bottom:578.765333pt;}
.ycf{bottom:578.993067pt;}
.y15e{bottom:579.216533pt;}
.y122{bottom:580.049467pt;}
.ybe{bottom:581.547467pt;}
.yf3{bottom:585.407200pt;}
.y10{bottom:585.658800pt;}
.ydf{bottom:586.086000pt;}
.y32{bottom:586.167333pt;}
.y129{bottom:587.151333pt;}
.y189{bottom:589.242000pt;}
.y17d{bottom:589.411200pt;}
.y62{bottom:589.942667pt;}
.y145{bottom:591.598800pt;}
.yb6{bottom:594.932133pt;}
.ya4{bottom:596.365333pt;}
.yce{bottom:596.593067pt;}
.y31{bottom:598.167333pt;}
.ybd{bottom:599.147467pt;}
.yf{bottom:601.925467pt;}
.yf2{bottom:603.007200pt;}
.yde{bottom:603.686000pt;}
.y128{bottom:604.751333pt;}
.y17c{bottom:606.174667pt;}
.y188{bottom:606.578000pt;}
.y66{bottom:607.542667pt;}
.y61{bottom:607.542800pt;}
.y144{bottom:609.198800pt;}
.yb5{bottom:612.532133pt;}
.ya3{bottom:613.965333pt;}
.ycd{bottom:614.193067pt;}
.ye{bottom:618.192133pt;}
.ydd{bottom:621.286000pt;}
.y30{bottom:623.500667pt;}
.y17b{bottom:623.510667pt;}
.y65{bottom:625.142667pt;}
.y60{bottom:625.142800pt;}
.ya2{bottom:631.565333pt;}
.ycc{bottom:631.793067pt;}
.y2f{bottom:639.514000pt;}
.y17a{bottom:640.846667pt;}
.y64{bottom:642.742667pt;}
.y5f{bottom:642.742800pt;}
.y179{bottom:658.182667pt;}
.y63{bottom:660.342667pt;}
.y5e{bottom:660.342800pt;}
.y2e{bottom:671.362933pt;}
.y5d{bottom:677.942667pt;}
.y2d{bottom:692.698933pt;}
.y5c{bottom:695.542667pt;}
.y5b{bottom:713.142667pt;}
.y5a{bottom:730.742667pt;}
.y2c{bottom:739.768667pt;}
.y2b{bottom:760.482000pt;}
.y9f{bottom:771.955600pt;}
.y10c{bottom:771.956933pt;}
.yba{bottom:772.906000pt;}
.y2a{bottom:781.194533pt;}
.y3{bottom:781.554667pt;}
.y29{bottom:801.906400pt;}
.ya0{bottom:813.516933pt;}
.yd6{bottom:813.792533pt;}
.ybb{bottom:813.894800pt;}
.y15d{bottom:814.118667pt;}
.y127{bottom:814.122133pt;}
.y10b{bottom:814.272800pt;}
.y177{bottom:814.309867pt;}
.yf0{bottom:814.359333pt;}
.y142{bottom:814.738267pt;}
.y194{bottom:816.080933pt;}
.y28{bottom:822.619733pt;}
.y2{bottom:824.754667pt;}
.y27{bottom:843.333067pt;}
.y1{bottom:872.754667pt;}
.y193{bottom:885.281200pt;}
.y54{bottom:890.005600pt;}
.y192{bottom:915.947867pt;}
.y53{bottom:920.672267pt;}
.y9e{bottom:962.885200pt;}
.y6a{bottom:1008.599333pt;}
.y69{bottom:1021.930000pt;}
.y68{bottom:1043.266000pt;}
.y67{bottom:1065.927333pt;}
.h8{height:18.363281pt;}
.h9{height:25.148438pt;}
.h1c{height:26.357333pt;}
.hd{height:30.122667pt;}
.hc{height:31.769515pt;}
.h7{height:37.653333pt;}
.h16{height:40.665600pt;}
.ha{height:41.418667pt;}
.h1e{height:42.197333pt;}
.h1a{height:43.682549pt;}
.h19{height:43.683616pt;}
.h14{height:45.184000pt;}
.he{height:48.880000pt;}
.hf{height:48.949333pt;}
.h10{height:51.590907pt;}
.h15{height:51.626667pt;}
.h11{height:51.628661pt;}
.h12{height:52.714667pt;}
.h1b{height:55.585984pt;}
.h13{height:55.607317pt;}
.hb{height:58.021333pt;}
.h1d{height:67.680000pt;}
.h1f{height:77.037867pt;}
.h5{height:77.707820pt;}
.h6{height:77.746304pt;}
.h20{height:91.526400pt;}
.h18{height:105.493333pt;}
.h3{height:161.404800pt;}
.h17{height:161.440000pt;}
.h4{height:174.117802pt;}
.h2{height:266.457796pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x13{left:-388.850400pt;}
.x14{left:-373.725067pt;}
.x1a{left:-129.868800pt;}
.x19{left:-115.427067pt;}
.x0{left:0.000000pt;}
.x4{left:37.795200pt;}
.x6c{left:41.851200pt;}
.x1{left:43.805333pt;}
.x5{left:53.822533pt;}
.x6{left:55.564667pt;}
.x16{left:56.692933pt;}
.x17{left:71.811067pt;}
.xf{left:148.289733pt;}
.x10{left:162.599333pt;}
.x4f{left:164.198133pt;}
.x50{left:178.509067pt;}
.x6d{left:181.294800pt;}
.x5e{left:182.407467pt;}
.x66{left:183.657600pt;}
.x47{left:194.039867pt;}
.x5f{left:196.717067pt;}
.x67{left:197.967067pt;}
.x48{left:208.349467pt;}
.x2a{left:210.708667pt;}
.x37{left:213.322933pt;}
.x29{left:225.150533pt;}
.x6a{left:238.886533pt;}
.x51{left:257.742800pt;}
.x3{left:266.827733pt;}
.x3c{left:271.764800pt;}
.x61{left:278.674933pt;}
.x53{left:279.720800pt;}
.x3d{left:286.074400pt;}
.x60{left:293.116800pt;}
.x52{left:294.162533pt;}
.x27{left:305.311867pt;}
.x26{left:318.992133pt;}
.x25{left:320.876400pt;}
.x1b{left:322.777200pt;}
.x12{left:325.191600pt;}
.x46{left:334.578133pt;}
.x1f{left:336.681067pt;}
.x11{left:339.633467pt;}
.x59{left:357.959867pt;}
.x64{left:361.073467pt;}
.x4c{left:369.398533pt;}
.x58{left:372.401733pt;}
.x65{left:375.383067pt;}
.x4e{left:376.382133pt;}
.x33{left:378.103733pt;}
.x3a{left:379.023333pt;}
.x4b{left:383.840400pt;}
.x4d{left:390.824000pt;}
.x34{left:392.410667pt;}
.x3b{left:393.469333pt;}
.x69{left:396.902800pt;}
.x2{left:404.850400pt;}
.x15{left:405.983600pt;}
.xd{left:416.170667pt;}
.x68{left:418.903733pt;}
.x7{left:419.975733pt;}
.x18{left:421.247600pt;}
.xe{left:430.473333pt;}
.x28{left:436.142533pt;}
.x5c{left:453.566000pt;}
.x22{left:461.151067pt;}
.x49{left:463.746267pt;}
.x5b{left:465.244400pt;}
.x5d{left:467.875867pt;}
.x6b{left:468.806133pt;}
.x42{left:469.984267pt;}
.x54{left:471.567600pt;}
.x1e{left:473.196800pt;}
.x23{left:475.465867pt;}
.x4a{left:478.055733pt;}
.x5a{left:479.686267pt;}
.x63{left:481.431733pt;}
.x3e{left:486.328800pt;}
.x1d{left:487.638667pt;}
.x32{left:496.399733pt;}
.x3f{left:500.638400pt;}
.x2c{left:502.960533pt;}
.x8{left:506.397600pt;}
.x31{left:510.841600pt;}
.x2b{left:517.402400pt;}
.x35{left:520.532000pt;}
.x62{left:524.849067pt;}
.x43{left:528.150133pt;}
.x57{left:531.972000pt;}
.x36{left:534.841600pt;}
.x2f{left:536.355200pt;}
.x39{left:538.575333pt;}
.x56{left:546.413867pt;}
.x30{left:550.662267pt;}
.x38{left:553.017200pt;}
.x2e{left:559.294400pt;}
.x55{left:563.587867pt;}
.x44{left:568.874533pt;}
.x24{left:571.123333pt;}
.x2d{left:573.736267pt;}
.x45{left:583.184133pt;}
.xc{left:584.996267pt;}
.xb{left:599.438133pt;}
.x21{left:614.871067pt;}
.x40{left:617.385867pt;}
.x41{left:618.330667pt;}
.x1c{left:632.160533pt;}
.x20{left:636.872000pt;}
.xa{left:663.831867pt;}
.x9{left:678.273733pt;}
}




    .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; }
  