
    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_e3250119fa97405e05b7ed31.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight: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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight: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_34d8b61848c77049614b2bcc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;font-style:normal;font-weight: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_61d2bf8ad755862aebc996ca.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight: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_d9170b766a0a57ad1d37f8f3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939453;font-style:normal;font-weight: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_e2ab01f955c08340486e845d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.727539;font-style:normal;font-weight: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_1187b37bb5a7a17407e89515.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;font-style:normal;font-weight: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_0ac14cea0266d64415aa35ee.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.130371;font-style:normal;font-weight: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_73442015f7fad32f262f5e90.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;font-style:normal;font-weight: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_47f9b5570f5ea1052b469a2c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172852;font-style:normal;font-weight: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_219930d8b4f0f9b07cdc1323.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921387;font-style:normal;font-weight: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_913d4f6d4845b811961686c2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284668;font-style:normal;font-weight: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_73649b01498ad2a5c2e6d78b.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.172852;font-style:normal;font-weight: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_b0f9fe9da573adec640e566a.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.172852;font-style:normal;font-weight: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_02d333d8e6da5a6a346e5f4b.woff2')format("woff");}.fff{font-family:fff;line-height:1.311035;font-style:normal;font-weight: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_668baded3555281a068b9420.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284668;font-style:normal;font-weight: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_8d174a9c05ee278f6ff19327.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.914062;font-style:normal;font-weight: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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.910156;font-style:normal;font-weight: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_e31469a97c454c2a4d6578db.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.172852;font-style:normal;font-weight: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_73c5bc53257689dee3605579.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.284668;font-style:normal;font-weight: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_5068c48dd2af65e653836c17.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.311035;font-style:normal;font-weight: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_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.682617;font-style:normal;font-weight: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_355a368092f995c39206fb84.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.172852;font-style:normal;font-weight: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_ccc065d738d2fd22ddcdc074.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.921387;font-style:normal;font-weight: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_cc2b6812c0df44f3448444ba.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.284668;font-style:normal;font-weight: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_2ac61d41eebc317d8b5a2546.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.311035;font-style:normal;font-weight: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_92b3757e649686c3b02c7aa0.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.914062;font-style:normal;font-weight: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_a3cb6c653c35ea44a0059645.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.172852;font-style:normal;font-weight: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_5f7680f1a7cd920cb2062d6a.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.284668;font-style:normal;font-weight: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_77700117b70bb68fc487b551.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.914062;font-style:normal;font-weight: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_045cfdb895aec9b49018e6d2.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.921387;font-style:normal;font-weight: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_79ffa8396b3b6b0082481cb1.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.311035;font-style:normal;font-weight: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_2cb532034f43478559d5a0c9.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.172852;font-style:normal;font-weight: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_a097d6fc8e03420a37d1a6c2.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.311035;font-style:normal;font-weight: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_6236615cc9830d3954bf3ea8.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.284668;font-style:normal;font-weight: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_12285c46316b03fe0bb42e2f.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.914062;font-style:normal;font-weight: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_8bda251e5a431e436766ac5e.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.172852;font-style:normal;font-weight: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_970b082a9d2bebc161be8851.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.921387;font-style:normal;font-weight: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_87164372e7f32d1306de958d.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.284668;font-style:normal;font-weight: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_cca4323cae2b0902bf01a667.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.130371;font-style:normal;font-weight: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_3704be37d75d8d7e5bbdd372.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.172852;font-style:normal;font-weight: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_c221bd573904df8fd817e9b3.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.172852;font-style:normal;font-weight: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_7d9212af89edc4016edbc3e7.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.921387;font-style:normal;font-weight: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_82abd624dea742e0accbe82a.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.284668;font-style:normal;font-weight: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_6b81debd3eb4db0167d62a24.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.172852;font-style:normal;font-weight: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_abc51ad6d68bc6e4f6b83884.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.172852;font-style:normal;font-weight: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_ba9bdd061b4022dbba9a8d1d.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.311035;font-style:normal;font-weight: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_2bc965547ea910df7bcdc495.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.284668;font-style:normal;font-weight: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_bb4836009b4aaff27b3e5c81.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.914062;font-style:normal;font-weight: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_7365c36fcd894791c599f509.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.172852;font-style:normal;font-weight: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_493f65e2902c99467e1dc648.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.311035;font-style:normal;font-weight: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_2f2e3f725b1a1d8a8673c00e.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.914062;font-style:normal;font-weight: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_546b48c8e58358790d1a17f3.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.284668;font-style:normal;font-weight: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_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.682617;font-style:normal;font-weight: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_aa420f5aa39762c0052e27aa.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.172852;font-style:normal;font-weight: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_7562fdd53cef79df701e14b5.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.284668;font-style:normal;font-weight: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_1173a7f94214a25886a70029.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.914062;font-style:normal;font-weight: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_ac4278fd23d5695899a5fc00.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:1.311035;font-style:normal;font-weight: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_f27175befb0b042cb45b92fd.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.921387;font-style:normal;font-weight: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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.910156;font-style:normal;font-weight: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_534306c2c9f27ff863a940e3.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:1.172852;font-style:normal;font-weight: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_ca35e0e5d25f848b9a41f05e.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:1.284668;font-style:normal;font-weight: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_272e017f9aad460a9c4a0956.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.311035;font-style:normal;font-weight: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_dbf1ac66bc6f7eefaeb8bc5d.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.172852;font-style:normal;font-weight: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_4fc5371976101c9f01f1d437.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.921387;font-style:normal;font-weight: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_c7040520801efcfc36a8a643.woff2')format("woff");}.ff42{font-family:ff42;line-height:1.284668;font-style:normal;font-weight: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_0584c1891844ee9a90ba34e9.woff2')format("woff");}.ff43{font-family:ff43;line-height:1.172852;font-style:normal;font-weight: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_ce4dfc0c8a9d021d65119871.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.921387;font-style:normal;font-weight: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_d8ba01964666ad27c334fc50.woff2')format("woff");}.ff45{font-family:ff45;line-height:1.284668;font-style:normal;font-weight: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_0b7a9661bc777e99e828af88.woff2')format("woff");}.ff46{font-family:ff46;line-height:1.311035;font-style:normal;font-weight: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_4ecd38348f1db988f2436114.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.914062;font-style:normal;font-weight: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_b4fca6facda5289cb85c9179.woff2')format("woff");}.ff48{font-family:ff48;line-height:1.284180;font-style:normal;font-weight: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_246d59d61e7dad0b2a9658e1.woff2')format("woff");}.ff49{font-family:ff49;line-height:1.172852;font-style:normal;font-weight: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_2bb2e2f0c068135606e6b854.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:1.311035;font-style:normal;font-weight: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_1dcee21c2870f9f62081ab7e.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:1.284668;font-style:normal;font-weight: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_8bb2621265d840ea57c6c231.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:0.914062;font-style:normal;font-weight: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_7891456a7a33076b6a1724ef.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:1.172852;font-style:normal;font-weight: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_df0d84528182ede00b855350.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:1.311035;font-style:normal;font-weight: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_98043f295e876282735bd9f3.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:1.284668;font-style:normal;font-weight: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_ad0ec6b6432289d5c8d57596.woff2')format("woff");}.ff50{font-family:ff50;line-height:1.172852;font-style:normal;font-weight: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_096bb3c646be3e2330aa1c3b.woff2')format("woff");}.ff51{font-family:ff51;line-height:1.311035;font-style:normal;font-weight: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_a517055897e35a6c1bbc3b1a.woff2')format("woff");}.ff52{font-family:ff52;line-height:1.284668;font-style:normal;font-weight: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_2ed07e2ed54beeca83a1ff70.woff2')format("woff");}.ff53{font-family:ff53;line-height:0.893555;font-style:normal;font-weight: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_55b124a79bbdf584a1d5a15c.woff2')format("woff");}.ff54{font-family:ff54;line-height:0.910645;font-style:normal;font-weight: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_08555e1a3f70fb1ba82d59de.woff2')format("woff");}.ff55{font-family:ff55;line-height:0.861328;font-style:normal;font-weight: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_abb9eb6d06eeafcf3b86d797.woff2')format("woff");}.ff56{font-family:ff56;line-height:0.722656;font-style:normal;font-weight: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_14a8472aefb8e24199213102.woff2')format("woff");}.ff57{font-family:ff57;line-height:0.910645;font-style:normal;font-weight: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_5f69477c6c9009266358ce6a.woff2')format("woff");}.ff58{font-family:ff58;line-height:0.893555;font-style:normal;font-weight: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_99e72ffd42e099226603c77f.woff2')format("woff");}.ff59{font-family:ff59;line-height:0.666504;font-style:normal;font-weight: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_40f0331710cae90a698a11ae.woff2')format("woff");}.ff5a{font-family:ff5a;line-height:0.910645;font-style:normal;font-weight: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_7d7d90466b1a47036f0b3bc7.woff2')format("woff");}.ff5b{font-family:ff5b;line-height:0.893555;font-style:normal;font-weight: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_126a39ef4232f777c7fd1400.woff2')format("woff");}.ff5c{font-family:ff5c;line-height:0.910156;font-style:normal;font-weight: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_58d38f92f6448a5bd2b4b6f2.woff2')format("woff");}.ff5d{font-family:ff5d;line-height:0.910645;font-style:normal;font-weight: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_5d9cb11a960e62f1ae3ab9c0.woff2')format("woff");}.ff5e{font-family:ff5e;line-height:0.893555;font-style:normal;font-weight: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_c9dee118c4d3e44ea416ffe0.woff2')format("woff");}.ff5f{font-family:ff5f;line-height:0.680176;font-style:normal;font-weight: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_dcf0f3cb2b9e13e8e04d286c.woff2')format("woff");}.ff60{font-family:ff60;line-height:0.910645;font-style:normal;font-weight: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_2a6eb461d63b157e0b45cdbe.woff2')format("woff");}.ff61{font-family:ff61;line-height:0.893555;font-style:normal;font-weight: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_abb9eb6d06eeafcf3b86d797.woff2')format("woff");}.ff62{font-family:ff62;line-height:0.722656;font-style:normal;font-weight: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_60427cbdf141c95b036f711b.woff2')format("woff");}.ff63{font-family:ff63;line-height:0.910645;font-style:normal;font-weight: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_5f69477c6c9009266358ce6a.woff2')format("woff");}.ff64{font-family:ff64;line-height:0.893555;font-style:normal;font-weight: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_99e72ffd42e099226603c77f.woff2')format("woff");}.ff65{font-family:ff65;line-height:0.666504;font-style:normal;font-weight: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_551930a2524f5cffd6094926.woff2')format("woff");}.ff66{font-family:ff66;line-height:0.910645;font-style:normal;font-weight: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_cd1efebecfa851f8115526ff.woff2')format("woff");}.ff67{font-family:ff67;line-height:0.893555;font-style:normal;font-weight: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_22fed7270beead84cc8499d9.woff2')format("woff");}.ff68{font-family:ff68;line-height:0.910645;font-style:normal;font-weight: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_221fc69ec55eb3871d966d77.woff2')format("woff");}.ff69{font-family:ff69;line-height:0.893555;font-style:normal;font-weight: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_126a39ef4232f777c7fd1400.woff2')format("woff");}.ff6a{font-family:ff6a;line-height:0.910156;font-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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls8a{letter-spacing:-7.977600px;}
.ls8c{letter-spacing:-6.609600px;}
.ls8b{letter-spacing:-5.342400px;}
.ls9d{letter-spacing:-3.236688px;}
.lsb9{letter-spacing:-1.008000px;}
.lsab{letter-spacing:-0.936000px;}
.lsb8{letter-spacing:-0.864000px;}
.lsb1{letter-spacing:-0.771840px;}
.lsaa{letter-spacing:-0.720000px;}
.lsb7{letter-spacing:-0.675360px;}
.lsac{letter-spacing:-0.504000px;}
.lsb5{letter-spacing:-0.482400px;}
.lsb2{letter-spacing:-0.434160px;}
.ls9a{letter-spacing:-0.432000px;}
.lsb0{letter-spacing:-0.337680px;}
.ls91{letter-spacing:-0.288000px;}
.lsb4{letter-spacing:-0.241200px;}
.ls92{letter-spacing:-0.216000px;}
.ls9c{letter-spacing:-0.144000px;}
.lsb6{letter-spacing:-0.096480px;}
.lsa3{letter-spacing:-0.072000px;}
.ls9b{letter-spacing:-0.043416px;}
.ls9e{letter-spacing:-0.038304px;}
.ls52{letter-spacing:0.000000px;}
.ls8e{letter-spacing:0.072000px;}
.ls8f{letter-spacing:0.144000px;}
.lsad{letter-spacing:0.192960px;}
.ls99{letter-spacing:0.216000px;}
.lsaf{letter-spacing:0.241200px;}
.lsa1{letter-spacing:0.258336px;}
.ls90{letter-spacing:0.288000px;}
.lsae{letter-spacing:0.289440px;}
.ls96{letter-spacing:0.360000px;}
.lsb3{letter-spacing:0.385920px;}
.ls95{letter-spacing:0.408000px;}
.lsa0{letter-spacing:0.432000px;}
.lsba{letter-spacing:0.504000px;}
.ls98{letter-spacing:0.576000px;}
.lsa7{letter-spacing:0.720000px;}
.ls97{letter-spacing:0.804000px;}
.ls63{letter-spacing:1.858784px;}
.ls6c{letter-spacing:1.906595px;}
.ls66{letter-spacing:1.907157px;}
.ls61{letter-spacing:1.908282px;}
.ls53{letter-spacing:1.908846px;}
.ls89{letter-spacing:1.917564px;}
.ls78{letter-spacing:1.920377px;}
.ls68{letter-spacing:1.944000px;}
.ls7d{letter-spacing:1.945125px;}
.ls73{letter-spacing:1.945689px;}
.ls69{letter-spacing:1.966501px;}
.ls55{letter-spacing:1.967063px;}
.ls85{letter-spacing:1.967625px;}
.ls49{letter-spacing:1.968188px;}
.ls35{letter-spacing:1.968752px;}
.ls1d{letter-spacing:1.969314px;}
.ls41{letter-spacing:1.969875px;}
.ls64{letter-spacing:1.969878px;}
.ls24{letter-spacing:1.971001px;}
.ls2b{letter-spacing:1.972125px;}
.ls37{letter-spacing:1.972126px;}
.ls40{letter-spacing:1.972689px;}
.ls3e{letter-spacing:1.974656px;}
.lsc{letter-spacing:1.978032px;}
.ls20{letter-spacing:1.978595px;}
.ls39{letter-spacing:1.978596px;}
.ls71{letter-spacing:1.979720px;}
.ls50{letter-spacing:1.980282px;}
.ls7{letter-spacing:1.980845px;}
.ls47{letter-spacing:1.980846px;}
.ls74{letter-spacing:1.981406px;}
.ls6{letter-spacing:1.981408px;}
.ls4d{letter-spacing:1.981969px;}
.ls19{letter-spacing:1.982026px;}
.ls11{letter-spacing:1.982532px;}
.ls28{letter-spacing:1.982534px;}
.ls1b{letter-spacing:1.983095px;}
.ls4c{letter-spacing:1.983658px;}
.ls3c{letter-spacing:1.984220px;}
.ls3f{letter-spacing:1.984783px;}
.ls51{letter-spacing:1.985908px;}
.ls26{letter-spacing:1.988721px;}
.ls44{letter-spacing:1.990127px;}
.ls58{letter-spacing:1.991195px;}
.ls3d{letter-spacing:1.991250px;}
.ls2a{letter-spacing:1.992601px;}
.ls1c{letter-spacing:1.992938px;}
.ls4f{letter-spacing:1.992940px;}
.ls2f{letter-spacing:1.993501px;}
.ls18{letter-spacing:1.994064px;}
.ls21{letter-spacing:1.994627px;}
.ls54{letter-spacing:1.995188px;}
.ls2c{letter-spacing:1.995190px;}
.ls27{letter-spacing:1.996314px;}
.ls43{letter-spacing:2.002782px;}
.ls3b{letter-spacing:2.003288px;}
.lsb{letter-spacing:2.003346px;}
.ls31{letter-spacing:2.003906px;}
.ls45{letter-spacing:2.003908px;}
.lsa{letter-spacing:2.004469px;}
.ls4a{letter-spacing:2.005032px;}
.ls30{letter-spacing:2.005033px;}
.ls33{letter-spacing:2.005595px;}
.ls36{letter-spacing:2.006157px;}
.ls7f{letter-spacing:2.006158px;}
.ls14{letter-spacing:2.006719px;}
.ls3a{letter-spacing:2.007283px;}
.ls2e{letter-spacing:2.007845px;}
.ls22{letter-spacing:2.008970px;}
.ls23{letter-spacing:2.010658px;}
.ls16{letter-spacing:2.014875px;}
.ls32{letter-spacing:2.015438px;}
.ls13{letter-spacing:2.016001px;}
.ls1f{letter-spacing:2.016563px;}
.ls4b{letter-spacing:2.016564px;}
.lsd{letter-spacing:2.017125px;}
.ls6a{letter-spacing:2.017688px;}
.ls67{letter-spacing:2.017689px;}
.ls4e{letter-spacing:2.018252px;}
.ls9{letter-spacing:2.018306px;}
.ls5a{letter-spacing:2.018813px;}
.ls17{letter-spacing:2.019488px;}
.ls25{letter-spacing:2.019940px;}
.ls5b{letter-spacing:2.022189px;}
.ls88{letter-spacing:2.022191px;}
.ls34{letter-spacing:2.025283px;}
.lse{letter-spacing:2.026408px;}
.ls12{letter-spacing:2.026969px;}
.ls65{letter-spacing:2.027532px;}
.ls2d{letter-spacing:2.027533px;}
.lsf{letter-spacing:2.028095px;}
.ls7c{letter-spacing:2.028658px;}
.ls46{letter-spacing:2.029219px;}
.ls42{letter-spacing:2.029783px;}
.ls38{letter-spacing:2.030346px;}
.ls7b{letter-spacing:2.030908px;}
.ls57{letter-spacing:2.031470px;}
.ls62{letter-spacing:2.032032px;}
.ls1a{letter-spacing:2.032033px;}
.ls70{letter-spacing:2.032595px;}
.ls7e{letter-spacing:2.033158px;}
.ls29{letter-spacing:2.033720px;}
.ls8{letter-spacing:2.035408px;}
.ls1e{letter-spacing:2.039063px;}
.ls10{letter-spacing:2.039064px;}
.ls48{letter-spacing:2.039625px;}
.ls15{letter-spacing:2.039628px;}
.ls72{letter-spacing:2.040188px;}
.ls5d{letter-spacing:2.040750px;}
.ls5c{letter-spacing:2.041313px;}
.ls59{letter-spacing:2.043001px;}
.ls7a{letter-spacing:2.044126px;}
.ls5e{letter-spacing:2.045251px;}
.ls76{letter-spacing:2.045814px;}
.ls77{letter-spacing:2.077032px;}
.ls84{letter-spacing:2.077595px;}
.ls60{letter-spacing:2.079845px;}
.ls87{letter-spacing:2.082658px;}
.ls6b{letter-spacing:2.089125px;}
.ls79{letter-spacing:2.093064px;}
.ls75{letter-spacing:2.101219px;}
.ls5f{letter-spacing:2.101782px;}
.ls83{letter-spacing:2.104033px;}
.ls81{letter-spacing:2.113875px;}
.ls86{letter-spacing:2.115564px;}
.ls82{letter-spacing:2.132721px;}
.ls56{letter-spacing:2.151845px;}
.ls6f{letter-spacing:2.166189px;}
.ls80{letter-spacing:2.176032px;}
.ls6e{letter-spacing:2.277284px;}
.ls0{letter-spacing:2.969580px;}
.ls1{letter-spacing:2.969581px;}
.ls5{letter-spacing:2.972954px;}
.ls3{letter-spacing:3.003331px;}
.ls4{letter-spacing:3.030077px;}
.ls2{letter-spacing:3.031596px;}
.ls6d{letter-spacing:22.012314px;}
.ls93{letter-spacing:46.800000px;}
.ls8d{letter-spacing:56.856000px;}
.ls94{letter-spacing:56.880000px;}
.lsa5{letter-spacing:60.966600px;}
.lsa6{letter-spacing:60.969600px;}
.lsbc{letter-spacing:60.990000px;}
.lsbd{letter-spacing:60.998400px;}
.lsa2{letter-spacing:75.024000px;}
.lsa9{letter-spacing:75.744000px;}
.lsbe{letter-spacing:77.650680px;}
.lsbb{letter-spacing:77.662080px;}
.lsa4{letter-spacing:78.382080px;}
.lsa8{letter-spacing:78.385080px;}
.ls9f{letter-spacing:125.976000px;}
.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;}
}
.ws5{word-spacing:-95.760000px;}
.wsd{word-spacing:-92.523312px;}
.ws0{word-spacing:-54.000000px;}
.ws10{word-spacing:-40.608000px;}
.ws1{word-spacing:-36.000000px;}
.ws7{word-spacing:-24.408000px;}
.ws43{word-spacing:-18.720000px;}
.ws11{word-spacing:-18.432000px;}
.wse{word-spacing:-18.288000px;}
.ws16{word-spacing:-18.216000px;}
.ws9{word-spacing:-18.144000px;}
.ws1b{word-spacing:-18.072000px;}
.ws6{word-spacing:-18.000000px;}
.ws12{word-spacing:-17.928000px;}
.wsf{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.wsb{word-spacing:-17.568000px;}
.ws1c{word-spacing:-17.496000px;}
.ws2e{word-spacing:-17.280000px;}
.ws37{word-spacing:-17.136000px;}
.ws42{word-spacing:-17.064000px;}
.ws38{word-spacing:-16.992000px;}
.ws2c{word-spacing:-12.445920px;}
.ws27{word-spacing:-12.349440px;}
.ws23{word-spacing:-12.301200px;}
.ws29{word-spacing:-12.252960px;}
.ws24{word-spacing:-12.060000px;}
.wsc{word-spacing:-12.016584px;}
.ws2b{word-spacing:-11.963520px;}
.ws28{word-spacing:-11.818800px;}
.ws25{word-spacing:-11.722320px;}
.ws2a{word-spacing:-11.625840px;}
.ws2d{word-spacing:-11.384640px;}
.ws26{word-spacing:-11.288160px;}
.ws31{word-spacing:-0.916560px;}
.ws44{word-spacing:-0.864000px;}
.ws47{word-spacing:-0.720000px;}
.ws40{word-spacing:-0.576000px;}
.ws39{word-spacing:-0.360000px;}
.ws35{word-spacing:-0.289440px;}
.ws3e{word-spacing:-0.288000px;}
.ws32{word-spacing:-0.216000px;}
.ws2f{word-spacing:-0.192960px;}
.ws19{word-spacing:-0.144000px;}
.ws30{word-spacing:-0.096480px;}
.ws45{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
.ws4{word-spacing:0.014400px;}
.ws3{word-spacing:0.021600px;}
.ws33{word-spacing:0.072000px;}
.ws3d{word-spacing:0.144000px;}
.ws1a{word-spacing:0.216000px;}
.ws17{word-spacing:0.288000px;}
.ws3c{word-spacing:0.360000px;}
.ws3f{word-spacing:0.432000px;}
.ws36{word-spacing:0.530640px;}
.ws3a{word-spacing:0.576000px;}
.ws3b{word-spacing:0.648000px;}
.ws34{word-spacing:0.675360px;}
.ws18{word-spacing:0.720000px;}
.ws41{word-spacing:0.864000px;}
.ws46{word-spacing:0.936000px;}
.ws1d{word-spacing:1.008000px;}
.ws1f{word-spacing:1.296000px;}
.ws20{word-spacing:1.440000px;}
.ws1e{word-spacing:1.656000px;}
.ws22{word-spacing:4.176000px;}
.ws21{word-spacing:4.320000px;}
.ws14{word-spacing:30.024000px;}
.ws13{word-spacing:32.760000px;}
.ws15{word-spacing:36.262080px;}
._d{margin-left:-18.576000px;}
._c{margin-left:-16.953600px;}
._8{margin-left:-11.386800px;}
._0{margin-left:-8.035200px;}
._5{margin-left:-6.609600px;}
._1{margin-left:-5.342400px;}
._2{margin-left:-3.924000px;}
._4{margin-left:-2.685600px;}
._3{margin-left:-1.324800px;}
._6{width:1.036800px;}
._9{width:2.236800px;}
._b{width:3.355200px;}
._a{width:19.108800px;}
._7{width:35.976000px;}
._e{width:846.000000px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:48.240000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fs6{font-size:90.000000px;}
.fs9{font-size:90.144000px;}
.fs5{font-size:95.760000px;}
.fs0{font-size:108.000000px;}
.fs4{font-size:156.240000px;}
.fs3{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y1d9{bottom:5.400000px;}
.y54{bottom:5.940000px;}
.ye6{bottom:19.080000px;}
.y38{bottom:19.800000px;}
.y1d7{bottom:36.180000px;}
.y37{bottom:38.340000px;}
.y4f{bottom:41.190000px;}
.yf0{bottom:43.740000px;}
.y53{bottom:43.920000px;}
.ye4{bottom:53.094000px;}
.y50{bottom:53.490000px;}
.ye5{bottom:54.180000px;}
.y36{bottom:59.934000px;}
.y4e{bottom:65.850000px;}
.y1d8{bottom:72.720000px;}
.y220{bottom:78.120000px;}
.y32{bottom:78.480000px;}
.y33{bottom:91.656000px;}
.y1d6{bottom:102.240000px;}
.ye1{bottom:107.496000px;}
.y18{bottom:112.558800px;}
.y215{bottom:121.140000px;}
.y142{bottom:123.156000px;}
.ye3{bottom:125.454000px;}
.y35{bottom:131.574000px;}
.yba{bottom:131.796000px;}
.yd8{bottom:132.696000px;}
.y17{bottom:136.354800px;}
.yed{bottom:138.060000px;}
.y241{bottom:142.740000px;}
.y76{bottom:143.136000px;}
.y47{bottom:145.980000px;}
.y141{bottom:147.276000px;}
.y1d5{bottom:147.960000px;}
.y107{bottom:152.670000px;}
.yb9{bottom:155.370000px;}
.y12a{bottom:155.550000px;}
.yd7{bottom:157.890000px;}
.y1fe{bottom:158.580000px;}
.y253{bottom:158.760000px;}
.y240{bottom:166.500000px;}
.y75{bottom:166.890000px;}
.y140{bottom:171.390000px;}
.y106{bottom:176.430000px;}
.y129{bottom:179.310000px;}
.yb8{bottom:180.570000px;}
.y1fd{bottom:182.340000px;}
.y252{bottom:182.520000px;}
.yd6{bottom:183.090000px;}
.y16{bottom:183.964800px;}
.y26b{bottom:188.100000px;}
.y23f{bottom:190.260000px;}
.y74{bottom:190.830000px;}
.y1d4{bottom:193.500000px;}
.y13f{bottom:195.150000px;}
.y105{bottom:200.190000px;}
.y128{bottom:203.250000px;}
.yb7{bottom:204.330000px;}
.ye2{bottom:204.654000px;}
.y99{bottom:204.690000px;}
.y1fc{bottom:206.280000px;}
.yd5{bottom:206.850000px;}
.y214{bottom:210.420000px;}
.y34{bottom:210.774000px;}
.y23e{bottom:214.200000px;}
.y73{bottom:214.410000px;}
.y1d3{bottom:217.440000px;}
.y13e{bottom:219.270000px;}
.y104{bottom:223.950000px;}
.y127{bottom:227.010000px;}
.y98{bottom:228.450000px;}
.y26a{bottom:229.500000px;}
.yb6{bottom:229.530000px;}
.y1fb{bottom:230.220000px;}
.yd4{bottom:230.790000px;}
.y15{bottom:231.574800px;}
.y31{bottom:233.244000px;}
.y23d{bottom:237.960000px;}
.y72{bottom:239.610000px;}
.y167{bottom:240.150000px;}
.y1d2{bottom:241.200000px;}
.y103{bottom:247.890000px;}
.y213{bottom:250.739460px;}
.y126{bottom:250.770000px;}
.yee{bottom:251.970000px;}
.y4d{bottom:252.000000px;}
.y97{bottom:252.210000px;}
.yb5{bottom:253.110000px;}
.y1fa{bottom:253.980000px;}
.yd3{bottom:254.370000px;}
.y23c{bottom:261.720000px;}
.y71{bottom:263.370000px;}
.y1d1{bottom:264.960000px;}
.y13d{bottom:270.030000px;}
.y269{bottom:270.900000px;}
.y102{bottom:271.650000px;}
.y125{bottom:274.530000px;}
.y212{bottom:274.678560px;}
.y96{bottom:275.970000px;}
.yef{bottom:276.150000px;}
.y51{bottom:276.585000px;}
.y4c{bottom:276.660000px;}
.y251{bottom:277.740000px;}
.yb4{bottom:278.310000px;}
.y14{bottom:279.184800px;}
.yd2{bottom:279.390000px;}
.y30{bottom:280.854000px;}
.y166{bottom:281.550000px;}
.y52{bottom:284.070000px;}
.y17d{bottom:286.410000px;}
.y70{bottom:287.130000px;}
.y1d0{bottom:288.720000px;}
.y13c{bottom:293.790000px;}
.y101{bottom:295.410000px;}
.y200{bottom:298.080900px;}
.y124{bottom:298.470000px;}
.y95{bottom:299.910000px;}
.y4b{bottom:301.320000px;}
.y1f9{bottom:301.500000px;}
.y165{bottom:302.250000px;}
.yb3{bottom:303.510000px;}
.yd1{bottom:304.590000px;}
.y23b{bottom:307.440000px;}
.y17c{bottom:310.170000px;}
.y268{bottom:312.300000px;}
.y6f{bottom:312.330000px;}
.y13b{bottom:317.370000px;}
.y100{bottom:319.170000px;}
.y1ff{bottom:322.020000px;}
.y123{bottom:322.230000px;}
.y164{bottom:322.950000px;}
.y94{bottom:323.670000px;}
.y250{bottom:325.440000px;}
.y13{bottom:326.794800px;}
.yb2{bottom:327.090000px;}
.y2f{bottom:328.464000px;}
.yd0{bottom:329.610000px;}
.y17b{bottom:333.930000px;}
.y6e{bottom:335.910000px;}
.y1cf{bottom:336.420000px;}
.y13a{bottom:342.615000px;}
.yff{bottom:343.155000px;}
.y163{bottom:344.955000px;}
.y122{bottom:346.035000px;}
.y93{bottom:347.295000px;}
.y1f8{bottom:349.200000px;}
.y211{bottom:349.740000px;}
.y12{bottom:350.590800px;}
.y2e{bottom:352.260000px;}
.yb1{bottom:352.515000px;}
.y267{bottom:353.700000px;}
.ycf{bottom:354.855000px;}
.y23a{bottom:354.960000px;}
.y17a{bottom:357.735000px;}
.y1ce{bottom:360.180000px;}
.y6d{bottom:361.335000px;}
.y210{bottom:364.680000px;}
.y162{bottom:365.835000px;}
.y139{bottom:366.555000px;}
.yfe{bottom:366.915000px;}
.y121{bottom:369.795000px;}
.y92{bottom:372.495000px;}
.y1f7{bottom:372.956400px;}
.y24f{bottom:372.960000px;}
.y2d{bottom:376.056000px;}
.yb0{bottom:376.275000px;}
.y239{bottom:378.720000px;}
.yce{bottom:380.055000px;}
.y179{bottom:381.675000px;}
.y1cd{bottom:383.940000px;}
.y6c{bottom:385.095000px;}
.y161{bottom:387.795000px;}
.y4a{bottom:389.880000px;}
.y138{bottom:390.315000px;}
.yfd{bottom:390.675000px;}
.y120{bottom:393.735000px;}
.y20f{bottom:394.020000px;}
.y266{bottom:395.100000px;}
.y91{bottom:396.255000px;}
.y24e{bottom:396.714300px;}
.y1f6{bottom:396.720000px;}
.y11{bottom:398.200800px;}
.yaf{bottom:399.855000px;}
.y238{bottom:402.660000px;}
.ycd{bottom:403.815000px;}
.y178{bottom:405.435000px;}
.y197{bottom:407.775000px;}
.y1cc{bottom:407.880000px;}
.y6b{bottom:408.855000px;}
.y160{bottom:409.755000px;}
.y137{bottom:414.075000px;}
.yfc{bottom:414.435000px;}
.y49{bottom:414.540000px;}
.y11f{bottom:417.495000px;}
.y1f5{bottom:420.480000px;}
.y24d{bottom:420.660000px;}
.y90{bottom:421.455000px;}
.y255{bottom:422.640000px;}
.y20e{bottom:423.540000px;}
.y2c{bottom:423.666000px;}
.yae{bottom:425.055000px;}
.y237{bottom:426.420000px;}
.y177{bottom:429.195000px;}
.y15f{bottom:430.455000px;}
.y196{bottom:431.535000px;}
.y6a{bottom:432.615000px;}
.y265{bottom:436.500000px;}
.y136{bottom:437.835000px;}
.yfb{bottom:438.195000px;}
.y48{bottom:439.200000px;}
.y11e{bottom:441.255000px;}
.y1f4{bottom:444.420000px;}
.y8f{bottom:445.215000px;}
.y10{bottom:445.810800px;}
.y2b{bottom:447.462000px;}
.y236{bottom:450.180000px;}
.yad{bottom:450.255000px;}
.ycc{bottom:451.515000px;}
.y15e{bottom:452.415000px;}
.y176{bottom:452.955000px;}
.y195{bottom:455.295000px;}
.y1cb{bottom:455.400000px;}
.y69{bottom:457.815000px;}
.y1b6{bottom:458.355000px;}
.yfa{bottom:462.135000px;}
.y135{bottom:463.035000px;}
.y11d{bottom:465.015000px;}
.y24c{bottom:468.176400px;}
.y1f3{bottom:468.180000px;}
.y8e{bottom:470.235000px;}
.y20d{bottom:471.240000px;}
.y2a{bottom:471.258000px;}
.yac{bottom:473.835000px;}
.y235{bottom:473.940000px;}
.y15d{bottom:474.375000px;}
.ycb{bottom:475.275000px;}
.y264{bottom:477.900000px;}
.y1ca{bottom:478.800000px;}
.y194{bottom:479.055000px;}
.y175{bottom:479.775000px;}
.y68{bottom:481.575000px;}
.y1b5{bottom:482.115000px;}
.yf9{bottom:485.895000px;}
.y134{bottom:486.795000px;}
.y11c{bottom:488.955000px;}
.y1f2{bottom:491.940000px;}
.yf{bottom:493.420800px;}
.y15c{bottom:495.075000px;}
.y8d{bottom:495.255000px;}
.y234{bottom:497.880000px;}
.yab{bottom:499.215000px;}
.y21f{bottom:500.220000px;}
.y1c9{bottom:502.380000px;}
.y193{bottom:502.995000px;}
.y174{bottom:503.715000px;}
.y67{bottom:505.335000px;}
.y1b4{bottom:505.875000px;}
.yf8{bottom:509.655000px;}
.y133{bottom:510.375000px;}
.y11b{bottom:512.715000px;}
.y1f1{bottom:515.700000px;}
.y24b{bottom:515.876400px;}
.y254{bottom:515.880000px;}
.ye{bottom:517.216800px;}
.y29{bottom:518.868000px;}
.y15b{bottom:520.275000px;}
.y8c{bottom:520.455000px;}
.y233{bottom:521.640000px;}
.yaa{bottom:522.795000px;}
.y1aa{bottom:525.315000px;}
.y263{bottom:525.600000px;}
.y1c8{bottom:525.960000px;}
.y192{bottom:526.755000px;}
.y173{bottom:527.475000px;}
.y66{bottom:529.275000px;}
.y1b3{bottom:529.815000px;}
.y20c{bottom:530.280000px;}
.yf7{bottom:533.415000px;}
.y11a{bottom:536.475000px;}
.y1f0{bottom:539.460000px;}
.y24a{bottom:539.640000px;}
.y15a{bottom:543.855000px;}
.y232{bottom:545.400000px;}
.yca{bottom:546.735000px;}
.y8b{bottom:547.455000px;}
.ya9{bottom:547.995000px;}
.y1a9{bottom:549.075000px;}
.y262{bottom:549.360000px;}
.y1c7{bottom:549.540000px;}
.y191{bottom:550.515000px;}
.y172{bottom:551.235000px;}
.y65{bottom:553.035000px;}
.y1b2{bottom:553.575000px;}
.yf6{bottom:557.355000px;}
.y132{bottom:557.715000px;}
.y119{bottom:560.235000px;}
.y20b{bottom:560.340000px;}
.y21e{bottom:562.320000px;}
.y249{bottom:563.396400px;}
.y1ef{bottom:563.400000px;}
.yd{bottom:564.826800px;}
.y28{bottom:566.478000px;}
.y159{bottom:569.055000px;}
.y231{bottom:569.160000px;}
.y8a{bottom:571.035000px;}
.ydc{bottom:571.575000px;}
.ya8{bottom:571.755000px;}
.y1a8{bottom:572.835000px;}
.y1c6{bottom:573.120000px;}
.y190{bottom:574.455000px;}
.y171{bottom:574.995000px;}
.y64{bottom:576.795000px;}
.y1b1{bottom:577.335000px;}
.yf5{bottom:581.115000px;}
.y118{bottom:584.205000px;}
.y1ee{bottom:587.156400px;}
.y248{bottom:587.160000px;}
.y27{bottom:590.274000px;}
.yc9{bottom:592.485000px;}
.y158{bottom:592.845000px;}
.y230{bottom:592.920000px;}
.y20a{bottom:593.100000px;}
.ydb{bottom:595.545000px;}
.ya7{bottom:595.725000px;}
.y89{bottom:596.265000px;}
.y1a7{bottom:596.625000px;}
.y261{bottom:596.880000px;}
.y170{bottom:598.965000px;}
.y63{bottom:600.405000px;}
.y1b0{bottom:601.125000px;}
.yf4{bottom:604.905000px;}
.y117{bottom:607.965000px;}
.y131{bottom:610.845000px;}
.y1ed{bottom:610.920000px;}
.yc{bottom:612.436800px;}
.y22f{bottom:616.860000px;}
.y157{bottom:617.865000px;}
.yda{bottom:619.305000px;}
.y88{bottom:620.025000px;}
.y1a6{bottom:620.385000px;}
.y260{bottom:620.820000px;}
.y16f{bottom:622.725000px;}
.y21d{bottom:624.420000px;}
.y1af{bottom:625.065000px;}
.y62{bottom:625.605000px;}
.yf3{bottom:628.665000px;}
.ye0{bottom:631.005000px;}
.y116{bottom:631.725000px;}
.y209{bottom:634.500000px;}
.y1ec{bottom:634.680000px;}
.y130{bottom:634.785000px;}
.y247{bottom:634.860000px;}
.y26{bottom:637.884000px;}
.ya6{bottom:641.445000px;}
.yd9{bottom:643.065000px;}
.y1c5{bottom:644.580000px;}
.y87{bottom:645.045000px;}
.y16e{bottom:646.485000px;}
.y1a5{bottom:647.205000px;}
.y1ae{bottom:648.825000px;}
.y46{bottom:649.185000px;}
.yc8{bottom:649.545000px;}
.yf2{bottom:652.605000px;}
.y18f{bottom:653.325000px;}
.ydf{bottom:654.765000px;}
.y115{bottom:655.485000px;}
.y208{bottom:658.260000px;}
.y12f{bottom:658.545000px;}
.y1eb{bottom:658.620000px;}
.yb{bottom:660.046800px;}
.y25{bottom:661.680000px;}
.y1c4{bottom:664.380000px;}
.yec{bottom:665.025000px;}
.y156{bottom:666.825000px;}
.y86{bottom:670.065000px;}
.y16d{bottom:670.245000px;}
.y1a4{bottom:671.145000px;}
.y1ad{bottom:672.585000px;}
.yc7{bottom:673.305000px;}
.y61{bottom:676.365000px;}
.y18e{bottom:677.085000px;}
.yde{bottom:678.525000px;}
.y114{bottom:679.425000px;}
.y207{bottom:682.020000px;}
.y12e{bottom:682.305000px;}
.y1ea{bottom:682.380000px;}
.ya{bottom:683.842800px;}
.y21c{bottom:686.520000px;}
.y22e{bottom:688.140000px;}
.y155{bottom:691.845000px;}
.y16c{bottom:694.185000px;}
.y1a3{bottom:694.905000px;}
.y85{bottom:695.445000px;}
.y1ac{bottom:696.345000px;}
.yc6{bottom:696.885000px;}
.y18d{bottom:700.845000px;}
.y45{bottom:702.285000px;}
.y113{bottom:703.185000px;}
.y1e9{bottom:705.960000px;}
.y12d{bottom:706.065000px;}
.y246{bottom:706.140000px;}
.y24{bottom:709.290000px;}
.y22d{bottom:712.080000px;}
.y25f{bottom:712.800000px;}
.y154{bottom:717.045000px;}
.y16b{bottom:717.945000px;}
.yeb{bottom:718.125000px;}
.y84{bottom:719.025000px;}
.y1a2{bottom:721.725000px;}
.ya5{bottom:722.265000px;}
.yf1{bottom:723.885000px;}
.y18c{bottom:724.605000px;}
.y44{bottom:726.225000px;}
.y60{bottom:726.945000px;}
.y206{bottom:729.720000px;}
.y12c{bottom:730.005000px;}
.y1e8{bottom:730.080000px;}
.y9{bottom:731.452800px;}
.y23{bottom:733.086000px;}
.y22c{bottom:735.840000px;}
.y1c3{bottom:736.020000px;}
.y153{bottom:740.805000px;}
.yea{bottom:742.065000px;}
.y83{bottom:744.225000px;}
.y1a1{bottom:745.485000px;}
.ya4{bottom:746.025000px;}
.y18b{bottom:748.545000px;}
.y21b{bottom:748.800000px;}
.y43{bottom:749.985000px;}
.y5f{bottom:750.705000px;}
.y205{bottom:753.480000px;}
.y1e7{bottom:753.660000px;}
.y12b{bottom:753.765000px;}
.y245{bottom:753.840000px;}
.y22b{bottom:759.600000px;}
.y1c2{bottom:759.780000px;}
.ye9{bottom:765.825000px;}
.y152{bottom:766.005000px;}
.y82{bottom:768.165000px;}
.y1a0{bottom:769.245000px;}
.yc5{bottom:769.605000px;}
.ya3{bottom:769.785000px;}
.y16a{bottom:770.685000px;}
.y25e{bottom:772.200000px;}
.y18a{bottom:772.305000px;}
.y42{bottom:773.745000px;}
.y5e{bottom:774.465000px;}
.y1ab{bottom:775.365000px;}
.y204{bottom:777.240000px;}
.y112{bottom:777.525000px;}
.y244{bottom:777.600000px;}
.y1e6{bottom:777.780000px;}
.y8{bottom:779.062800px;}
.y22{bottom:780.696000px;}
.y22a{bottom:783.360000px;}
.y1c1{bottom:783.540000px;}
.ye8{bottom:789.585000px;}
.y81{bottom:791.925000px;}
.y25d{bottom:792.900000px;}
.y19f{bottom:793.185000px;}
.y169{bottom:794.625000px;}
.yc4{bottom:794.805000px;}
.ya2{bottom:794.985000px;}
.y41{bottom:797.505000px;}
.y5d{bottom:798.405000px;}
.y189{bottom:799.125000px;}
.y203{bottom:801.180000px;}
.y111{bottom:801.285000px;}
.y243{bottom:801.360000px;}
.y1e5{bottom:801.540000px;}
.y21{bottom:804.492000px;}
.y229{bottom:807.300000px;}
.y1c0{bottom:807.480000px;}
.y21a{bottom:810.900000px;}
.y151{bottom:814.965000px;}
.y80{bottom:815.505000px;}
.ye7{bottom:815.865000px;}
.y19e{bottom:816.945000px;}
.y168{bottom:818.385000px;}
.yc3{bottom:818.565000px;}
.ya1{bottom:818.745000px;}
.y40{bottom:821.445000px;}
.y5c{bottom:822.165000px;}
.y188{bottom:822.885000px;}
.y110{bottom:825.225000px;}
.y1e4{bottom:825.300000px;}
.y7{bottom:826.672800px;}
.y20{bottom:828.288000px;}
.y228{bottom:831.060000px;}
.y1bf{bottom:831.240000px;}
.y25c{bottom:837.540000px;}
.y150{bottom:838.770000px;}
.y7f{bottom:840.750000px;}
.ya0{bottom:842.550000px;}
.y149{bottom:842.730000px;}
.yc2{bottom:843.810000px;}
.ydd{bottom:845.250000px;}
.y5b{bottom:845.970000px;}
.y187{bottom:846.690000px;}
.y10f{bottom:849.030000px;}
.y1e3{bottom:849.060000px;}
.y227{bottom:854.820000px;}
.y1be{bottom:855.000000px;}
.y14f{bottom:862.350000px;}
.y19d{bottom:864.510000px;}
.y7e{bottom:865.950000px;}
.y9f{bottom:866.490000px;}
.yc1{bottom:867.570000px;}
.y3f{bottom:869.010000px;}
.y186{bottom:870.630000px;}
.y10e{bottom:872.790000px;}
.y202{bottom:872.820000px;}
.y1e2{bottom:873.000000px;}
.y6{bottom:874.282800px;}
.y1f{bottom:875.898000px;}
.y226{bottom:878.580000px;}
.y1bd{bottom:878.760000px;}
.y14e{bottom:887.550000px;}
.y19c{bottom:888.270000px;}
.y9e{bottom:890.070000px;}
.y148{bottom:890.250000px;}
.y3e{bottom:892.770000px;}
.y5a{bottom:893.670000px;}
.y185{bottom:894.390000px;}
.y10d{bottom:896.550000px;}
.y201{bottom:896.580000px;}
.y1e1{bottom:896.760000px;}
.y25b{bottom:896.940000px;}
.y1e{bottom:899.694000px;}
.y225{bottom:902.520000px;}
.y1bc{bottom:902.700000px;}
.y14d{bottom:912.570000px;}
.y147{bottom:914.010000px;}
.y19b{bottom:915.090000px;}
.y9d{bottom:915.270000px;}
.y7d{bottom:916.350000px;}
.yc0{bottom:916.530000px;}
.y59{bottom:917.430000px;}
.y184{bottom:918.150000px;}
.y10c{bottom:920.490000px;}
.y1e0{bottom:920.520000px;}
.y5{bottom:921.892800px;}
.y224{bottom:926.280000px;}
.y1bb{bottom:926.460000px;}
.y25a{bottom:926.640000px;}
.y146{bottom:937.770000px;}
.y19a{bottom:939.030000px;}
.y9c{bottom:939.210000px;}
.ybf{bottom:940.110000px;}
.y3d{bottom:940.470000px;}
.y58{bottom:941.190000px;}
.y7c{bottom:941.550000px;}
.y183{bottom:941.910000px;}
.y10b{bottom:944.250000px;}
.y1df{bottom:944.280000px;}
.y219{bottom:944.316000px;}
.y1d{bottom:947.304000px;}
.y223{bottom:950.040000px;}
.y1ba{bottom:950.220000px;}
.y259{bottom:956.340000px;}
.y14c{bottom:961.530000px;}
.y9b{bottom:962.790000px;}
.y3c{bottom:964.230000px;}
.y57{bottom:964.950000px;}
.y7b{bottom:965.310000px;}
.ybe{bottom:965.490000px;}
.y182{bottom:965.850000px;}
.y10a{bottom:968.010000px;}
.y1de{bottom:968.040000px;}
.y218{bottom:968.112000px;}
.y4{bottom:969.502800px;}
.y222{bottom:973.800000px;}
.y1b9{bottom:973.980000px;}
.y258{bottom:980.100000px;}
.y199{bottom:986.550000px;}
.y14b{bottom:986.730000px;}
.y3b{bottom:987.990000px;}
.y145{bottom:988.530000px;}
.y56{bottom:988.890000px;}
.ybd{bottom:989.070000px;}
.y181{bottom:989.610000px;}
.y7a{bottom:990.510000px;}
.y109{bottom:991.770000px;}
.y242{bottom:991.800000px;}
.y217{bottom:991.908000px;}
.y1dd{bottom:991.980000px;}
.y1c{bottom:994.914000px;}
.y1b8{bottom:997.740000px;}
.y257{bottom:1000.800000px;}
.y3{bottom:1001.268300px;}
.y9a{bottom:1010.130000px;}
.y14a{bottom:1010.310000px;}
.y3a{bottom:1011.750000px;}
.y144{bottom:1012.290000px;}
.y180{bottom:1013.370000px;}
.y79{bottom:1014.270000px;}
.y216{bottom:1015.704000px;}
.y108{bottom:1015.710000px;}
.y1dc{bottom:1015.740000px;}
.y221{bottom:1021.500000px;}
.y256{bottom:1030.500000px;}
.y198{bottom:1034.070000px;}
.y55{bottom:1036.410000px;}
.y17f{bottom:1037.130000px;}
.ybc{bottom:1038.210000px;}
.y78{bottom:1039.470000px;}
.y1db{bottom:1039.500000px;}
.y2{bottom:1041.471300px;}
.y1b{bottom:1042.524000px;}
.y1b7{bottom:1045.260000px;}
.y39{bottom:1057.650000px;}
.y17e{bottom:1061.070000px;}
.ybb{bottom:1061.790000px;}
.y143{bottom:1062.870000px;}
.y77{bottom:1063.230000px;}
.y1da{bottom:1063.260000px;}
.y1a{bottom:1066.320000px;}
.y1{bottom:1081.674300px;}
.y19{bottom:1090.116000px;}
.h18{height:22.860000px;}
.h1b{height:33.518320px;}
.h15{height:48.796875px;}
.h1c{height:49.992188px;}
.h16{height:50.027344px;}
.h1a{height:50.041744px;}
.h1d{height:50.050144px;}
.hf{height:50.273438px;}
.h17{height:52.031250px;}
.h7{height:53.316000px;}
.h19{height:65.010937px;}
.h3{height:65.884219px;}
.h13{height:69.696000px;}
.hb{height:69.876000px;}
.h14{height:70.628906px;}
.h2{height:70.664062px;}
.hd{height:72.562500px;}
.he{height:74.704922px;}
.h11{height:83.787539px;}
.ha{height:89.516602px;}
.h12{height:89.659828px;}
.h8{height:93.983203px;}
.h1{height:105.996094px;}
.hc{height:107.419922px;}
.h6{height:153.341016px;}
.h10{height:155.400820px;}
.h5{height:274.218750px;}
.h4{height:324.030000px;}
.h9{height:474.120000px;}
.h0{height:1188.000000px;}
.w7{width:84.420000px;}
.w4{width:213.510000px;}
.w6{width:269.355000px;}
.w2{width:269.715000px;}
.w3{width:269.895000px;}
.w5{width:270.075000px;}
.w1{width:809.460000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2b{left:1.440000px;}
.x1d{left:20.700000px;}
.x23{left:49.896000px;}
.x9{left:54.360000px;}
.xa{left:59.616000px;}
.x1e{left:61.380000px;}
.x4{left:81.000000px;}
.xe{left:108.036000px;}
.x2e{left:130.140000px;}
.xf{left:135.036000px;}
.x24{left:139.365000px;}
.xc{left:147.285000px;}
.xd{left:153.390000px;}
.x28{left:157.500000px;}
.x10{left:162.030000px;}
.x2d{left:164.880000px;}
.x25{left:177.330000px;}
.x1f{left:189.030000px;}
.x20{left:216.030000px;}
.x26{left:217.650000px;}
.x1b{left:224.745000px;}
.x22{left:243.030000px;}
.x21{left:249.150000px;}
.x2{left:253.430850px;}
.x1a{left:278.535000px;}
.x1{left:279.755850px;}
.x5{left:324.666000px;}
.x6{left:332.730000px;}
.x3{left:337.697850px;}
.x7{left:366.048000px;}
.x2c{left:377.280000px;}
.x12{left:394.920000px;}
.x11{left:402.195000px;}
.x14{left:406.980000px;}
.x2a{left:416.700000px;}
.x29{left:418.320000px;}
.x2f{left:426.420000px;}
.x13{left:430.020000px;}
.x27{left:450.645000px;}
.x8{left:454.965000px;}
.x30{left:459.000000px;}
.x31{left:486.000000px;}
.x18{left:527.910000px;}
.x19{left:538.710000px;}
.x17{left:590.475000px;}
.xb{left:593.925000px;}
.x16{left:610.455000px;}
.x15{left:618.735000px;}
.x1c{left:673.530000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls8a{letter-spacing:-7.091200pt;}
.ls8c{letter-spacing:-5.875200pt;}
.ls8b{letter-spacing:-4.748800pt;}
.ls9d{letter-spacing:-2.877056pt;}
.lsb9{letter-spacing:-0.896000pt;}
.lsab{letter-spacing:-0.832000pt;}
.lsb8{letter-spacing:-0.768000pt;}
.lsb1{letter-spacing:-0.686080pt;}
.lsaa{letter-spacing:-0.640000pt;}
.lsb7{letter-spacing:-0.600320pt;}
.lsac{letter-spacing:-0.448000pt;}
.lsb5{letter-spacing:-0.428800pt;}
.lsb2{letter-spacing:-0.385920pt;}
.ls9a{letter-spacing:-0.384000pt;}
.lsb0{letter-spacing:-0.300160pt;}
.ls91{letter-spacing:-0.256000pt;}
.lsb4{letter-spacing:-0.214400pt;}
.ls92{letter-spacing:-0.192000pt;}
.ls9c{letter-spacing:-0.128000pt;}
.lsb6{letter-spacing:-0.085760pt;}
.lsa3{letter-spacing:-0.064000pt;}
.ls9b{letter-spacing:-0.038592pt;}
.ls9e{letter-spacing:-0.034048pt;}
.ls52{letter-spacing:0.000000pt;}
.ls8e{letter-spacing:0.064000pt;}
.ls8f{letter-spacing:0.128000pt;}
.lsad{letter-spacing:0.171520pt;}
.ls99{letter-spacing:0.192000pt;}
.lsaf{letter-spacing:0.214400pt;}
.lsa1{letter-spacing:0.229632pt;}
.ls90{letter-spacing:0.256000pt;}
.lsae{letter-spacing:0.257280pt;}
.ls96{letter-spacing:0.320000pt;}
.lsb3{letter-spacing:0.343040pt;}
.ls95{letter-spacing:0.362667pt;}
.lsa0{letter-spacing:0.384000pt;}
.lsba{letter-spacing:0.448000pt;}
.ls98{letter-spacing:0.512000pt;}
.lsa7{letter-spacing:0.640000pt;}
.ls97{letter-spacing:0.714667pt;}
.ls63{letter-spacing:1.652252pt;}
.ls6c{letter-spacing:1.694751pt;}
.ls66{letter-spacing:1.695251pt;}
.ls61{letter-spacing:1.696251pt;}
.ls53{letter-spacing:1.696752pt;}
.ls89{letter-spacing:1.704501pt;}
.ls78{letter-spacing:1.707002pt;}
.ls68{letter-spacing:1.728000pt;}
.ls7d{letter-spacing:1.729000pt;}
.ls73{letter-spacing:1.729501pt;}
.ls69{letter-spacing:1.748001pt;}
.ls55{letter-spacing:1.748500pt;}
.ls85{letter-spacing:1.749000pt;}
.ls49{letter-spacing:1.749500pt;}
.ls35{letter-spacing:1.750002pt;}
.ls1d{letter-spacing:1.750502pt;}
.ls41{letter-spacing:1.751000pt;}
.ls64{letter-spacing:1.751002pt;}
.ls24{letter-spacing:1.752001pt;}
.ls2b{letter-spacing:1.753000pt;}
.ls37{letter-spacing:1.753001pt;}
.ls40{letter-spacing:1.753501pt;}
.ls3e{letter-spacing:1.755250pt;}
.lsc{letter-spacing:1.758250pt;}
.ls20{letter-spacing:1.758751pt;}
.ls39{letter-spacing:1.758752pt;}
.ls71{letter-spacing:1.759751pt;}
.ls50{letter-spacing:1.760250pt;}
.ls7{letter-spacing:1.760751pt;}
.ls47{letter-spacing:1.760752pt;}
.ls74{letter-spacing:1.761250pt;}
.ls6{letter-spacing:1.761251pt;}
.ls4d{letter-spacing:1.761750pt;}
.ls19{letter-spacing:1.761801pt;}
.ls11{letter-spacing:1.762251pt;}
.ls28{letter-spacing:1.762252pt;}
.ls1b{letter-spacing:1.762751pt;}
.ls4c{letter-spacing:1.763251pt;}
.ls3c{letter-spacing:1.763751pt;}
.ls3f{letter-spacing:1.764252pt;}
.ls51{letter-spacing:1.765251pt;}
.ls26{letter-spacing:1.767752pt;}
.ls44{letter-spacing:1.769002pt;}
.ls58{letter-spacing:1.769951pt;}
.ls3d{letter-spacing:1.770000pt;}
.ls2a{letter-spacing:1.771201pt;}
.ls1c{letter-spacing:1.771500pt;}
.ls4f{letter-spacing:1.771502pt;}
.ls2f{letter-spacing:1.772001pt;}
.ls18{letter-spacing:1.772501pt;}
.ls21{letter-spacing:1.773002pt;}
.ls54{letter-spacing:1.773501pt;}
.ls2c{letter-spacing:1.773502pt;}
.ls27{letter-spacing:1.774501pt;}
.ls43{letter-spacing:1.780251pt;}
.ls3b{letter-spacing:1.780700pt;}
.lsb{letter-spacing:1.780752pt;}
.ls31{letter-spacing:1.781250pt;}
.ls45{letter-spacing:1.781251pt;}
.lsa{letter-spacing:1.781750pt;}
.ls4a{letter-spacing:1.782250pt;}
.ls30{letter-spacing:1.782252pt;}
.ls33{letter-spacing:1.782751pt;}
.ls36{letter-spacing:1.783251pt;}
.ls7f{letter-spacing:1.783252pt;}
.ls14{letter-spacing:1.783750pt;}
.ls3a{letter-spacing:1.784252pt;}
.ls2e{letter-spacing:1.784751pt;}
.ls22{letter-spacing:1.785751pt;}
.ls23{letter-spacing:1.787252pt;}
.ls16{letter-spacing:1.791000pt;}
.ls32{letter-spacing:1.791500pt;}
.ls13{letter-spacing:1.792001pt;}
.ls1f{letter-spacing:1.792500pt;}
.ls4b{letter-spacing:1.792502pt;}
.lsd{letter-spacing:1.793000pt;}
.ls6a{letter-spacing:1.793500pt;}
.ls67{letter-spacing:1.793501pt;}
.ls4e{letter-spacing:1.794002pt;}
.ls9{letter-spacing:1.794050pt;}
.ls5a{letter-spacing:1.794500pt;}
.ls17{letter-spacing:1.795101pt;}
.ls25{letter-spacing:1.795502pt;}
.ls5b{letter-spacing:1.797501pt;}
.ls88{letter-spacing:1.797503pt;}
.ls34{letter-spacing:1.800252pt;}
.lse{letter-spacing:1.801252pt;}
.ls12{letter-spacing:1.801750pt;}
.ls65{letter-spacing:1.802250pt;}
.ls2d{letter-spacing:1.802252pt;}
.lsf{letter-spacing:1.802751pt;}
.ls7c{letter-spacing:1.803251pt;}
.ls46{letter-spacing:1.803750pt;}
.ls42{letter-spacing:1.804252pt;}
.ls38{letter-spacing:1.804752pt;}
.ls7b{letter-spacing:1.805251pt;}
.ls57{letter-spacing:1.805751pt;}
.ls62{letter-spacing:1.806250pt;}
.ls1a{letter-spacing:1.806252pt;}
.ls70{letter-spacing:1.806751pt;}
.ls7e{letter-spacing:1.807251pt;}
.ls29{letter-spacing:1.807751pt;}
.ls8{letter-spacing:1.809252pt;}
.ls1e{letter-spacing:1.812500pt;}
.ls10{letter-spacing:1.812502pt;}
.ls48{letter-spacing:1.813000pt;}
.ls15{letter-spacing:1.813002pt;}
.ls72{letter-spacing:1.813501pt;}
.ls5d{letter-spacing:1.814000pt;}
.ls5c{letter-spacing:1.814500pt;}
.ls59{letter-spacing:1.816001pt;}
.ls7a{letter-spacing:1.817001pt;}
.ls5e{letter-spacing:1.818001pt;}
.ls76{letter-spacing:1.818502pt;}
.ls77{letter-spacing:1.846250pt;}
.ls84{letter-spacing:1.846751pt;}
.ls60{letter-spacing:1.848751pt;}
.ls87{letter-spacing:1.851252pt;}
.ls6b{letter-spacing:1.857000pt;}
.ls79{letter-spacing:1.860501pt;}
.ls75{letter-spacing:1.867750pt;}
.ls5f{letter-spacing:1.868250pt;}
.ls83{letter-spacing:1.870252pt;}
.ls81{letter-spacing:1.879000pt;}
.ls86{letter-spacing:1.880501pt;}
.ls82{letter-spacing:1.895752pt;}
.ls56{letter-spacing:1.912751pt;}
.ls6f{letter-spacing:1.925501pt;}
.ls80{letter-spacing:1.934251pt;}
.ls6e{letter-spacing:2.024253pt;}
.ls0{letter-spacing:2.639627pt;}
.ls1{letter-spacing:2.639628pt;}
.ls5{letter-spacing:2.642626pt;}
.ls3{letter-spacing:2.669628pt;}
.ls4{letter-spacing:2.693402pt;}
.ls2{letter-spacing:2.694752pt;}
.ls6d{letter-spacing:19.566501pt;}
.ls93{letter-spacing:41.600000pt;}
.ls8d{letter-spacing:50.538667pt;}
.ls94{letter-spacing:50.560000pt;}
.lsa5{letter-spacing:54.192533pt;}
.lsa6{letter-spacing:54.195200pt;}
.lsbc{letter-spacing:54.213333pt;}
.lsbd{letter-spacing:54.220800pt;}
.lsa2{letter-spacing:66.688000pt;}
.lsa9{letter-spacing:67.328000pt;}
.lsbe{letter-spacing:69.022827pt;}
.lsbb{letter-spacing:69.032960pt;}
.lsa4{letter-spacing:69.672960pt;}
.lsa8{letter-spacing:69.675627pt;}
.ls9f{letter-spacing:111.978667pt;}
.ws5{word-spacing:-85.120000pt;}
.wsd{word-spacing:-82.242944pt;}
.ws0{word-spacing:-48.000000pt;}
.ws10{word-spacing:-36.096000pt;}
.ws1{word-spacing:-32.000000pt;}
.ws7{word-spacing:-21.696000pt;}
.ws43{word-spacing:-16.640000pt;}
.ws11{word-spacing:-16.384000pt;}
.wse{word-spacing:-16.256000pt;}
.ws16{word-spacing:-16.192000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws1b{word-spacing:-16.064000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws12{word-spacing:-15.936000pt;}
.wsf{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.wsb{word-spacing:-15.616000pt;}
.ws1c{word-spacing:-15.552000pt;}
.ws2e{word-spacing:-15.360000pt;}
.ws37{word-spacing:-15.232000pt;}
.ws42{word-spacing:-15.168000pt;}
.ws38{word-spacing:-15.104000pt;}
.ws2c{word-spacing:-11.063040pt;}
.ws27{word-spacing:-10.977280pt;}
.ws23{word-spacing:-10.934400pt;}
.ws29{word-spacing:-10.891520pt;}
.ws24{word-spacing:-10.720000pt;}
.wsc{word-spacing:-10.681408pt;}
.ws2b{word-spacing:-10.634240pt;}
.ws28{word-spacing:-10.505600pt;}
.ws25{word-spacing:-10.419840pt;}
.ws2a{word-spacing:-10.334080pt;}
.ws2d{word-spacing:-10.119680pt;}
.ws26{word-spacing:-10.033920pt;}
.ws31{word-spacing:-0.814720pt;}
.ws44{word-spacing:-0.768000pt;}
.ws47{word-spacing:-0.640000pt;}
.ws40{word-spacing:-0.512000pt;}
.ws39{word-spacing:-0.320000pt;}
.ws35{word-spacing:-0.257280pt;}
.ws3e{word-spacing:-0.256000pt;}
.ws32{word-spacing:-0.192000pt;}
.ws2f{word-spacing:-0.171520pt;}
.ws19{word-spacing:-0.128000pt;}
.ws30{word-spacing:-0.085760pt;}
.ws45{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
.ws4{word-spacing:0.012800pt;}
.ws3{word-spacing:0.019200pt;}
.ws33{word-spacing:0.064000pt;}
.ws3d{word-spacing:0.128000pt;}
.ws1a{word-spacing:0.192000pt;}
.ws17{word-spacing:0.256000pt;}
.ws3c{word-spacing:0.320000pt;}
.ws3f{word-spacing:0.384000pt;}
.ws36{word-spacing:0.471680pt;}
.ws3a{word-spacing:0.512000pt;}
.ws3b{word-spacing:0.576000pt;}
.ws34{word-spacing:0.600320pt;}
.ws18{word-spacing:0.640000pt;}
.ws41{word-spacing:0.768000pt;}
.ws46{word-spacing:0.832000pt;}
.ws1d{word-spacing:0.896000pt;}
.ws1f{word-spacing:1.152000pt;}
.ws20{word-spacing:1.280000pt;}
.ws1e{word-spacing:1.472000pt;}
.ws22{word-spacing:3.712000pt;}
.ws21{word-spacing:3.840000pt;}
.ws14{word-spacing:26.688000pt;}
.ws13{word-spacing:29.120000pt;}
.ws15{word-spacing:32.232960pt;}
._d{margin-left:-16.512000pt;}
._c{margin-left:-15.069867pt;}
._8{margin-left:-10.121600pt;}
._0{margin-left:-7.142400pt;}
._5{margin-left:-5.875200pt;}
._1{margin-left:-4.748800pt;}
._2{margin-left:-3.488000pt;}
._4{margin-left:-2.387200pt;}
._3{margin-left:-1.177600pt;}
._6{width:0.921600pt;}
._9{width:1.988267pt;}
._b{width:2.982400pt;}
._a{width:16.985600pt;}
._7{width:31.978667pt;}
._e{width:752.000000pt;}
.fs7{font-size:42.880000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fs6{font-size:80.000000pt;}
.fs9{font-size:80.128000pt;}
.fs5{font-size:85.120000pt;}
.fs0{font-size:96.000000pt;}
.fs4{font-size:138.880000pt;}
.fs3{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y1d9{bottom:4.800000pt;}
.y54{bottom:5.280000pt;}
.ye6{bottom:16.960000pt;}
.y38{bottom:17.600000pt;}
.y1d7{bottom:32.160000pt;}
.y37{bottom:34.080000pt;}
.y4f{bottom:36.613333pt;}
.yf0{bottom:38.880000pt;}
.y53{bottom:39.040000pt;}
.ye4{bottom:47.194667pt;}
.y50{bottom:47.546667pt;}
.ye5{bottom:48.160000pt;}
.y36{bottom:53.274667pt;}
.y4e{bottom:58.533333pt;}
.y1d8{bottom:64.640000pt;}
.y220{bottom:69.440000pt;}
.y32{bottom:69.760000pt;}
.y33{bottom:81.472000pt;}
.y1d6{bottom:90.880000pt;}
.ye1{bottom:95.552000pt;}
.y18{bottom:100.052267pt;}
.y215{bottom:107.680000pt;}
.y142{bottom:109.472000pt;}
.ye3{bottom:111.514667pt;}
.y35{bottom:116.954667pt;}
.yba{bottom:117.152000pt;}
.yd8{bottom:117.952000pt;}
.y17{bottom:121.204267pt;}
.yed{bottom:122.720000pt;}
.y241{bottom:126.880000pt;}
.y76{bottom:127.232000pt;}
.y47{bottom:129.760000pt;}
.y141{bottom:130.912000pt;}
.y1d5{bottom:131.520000pt;}
.y107{bottom:135.706667pt;}
.yb9{bottom:138.106667pt;}
.y12a{bottom:138.266667pt;}
.yd7{bottom:140.346667pt;}
.y1fe{bottom:140.960000pt;}
.y253{bottom:141.120000pt;}
.y240{bottom:148.000000pt;}
.y75{bottom:148.346667pt;}
.y140{bottom:152.346667pt;}
.y106{bottom:156.826667pt;}
.y129{bottom:159.386667pt;}
.yb8{bottom:160.506667pt;}
.y1fd{bottom:162.080000pt;}
.y252{bottom:162.240000pt;}
.yd6{bottom:162.746667pt;}
.y16{bottom:163.524267pt;}
.y26b{bottom:167.200000pt;}
.y23f{bottom:169.120000pt;}
.y74{bottom:169.626667pt;}
.y1d4{bottom:172.000000pt;}
.y13f{bottom:173.466667pt;}
.y105{bottom:177.946667pt;}
.y128{bottom:180.666667pt;}
.yb7{bottom:181.626667pt;}
.ye2{bottom:181.914667pt;}
.y99{bottom:181.946667pt;}
.y1fc{bottom:183.360000pt;}
.yd5{bottom:183.866667pt;}
.y214{bottom:187.040000pt;}
.y34{bottom:187.354667pt;}
.y23e{bottom:190.400000pt;}
.y73{bottom:190.586667pt;}
.y1d3{bottom:193.280000pt;}
.y13e{bottom:194.906667pt;}
.y104{bottom:199.066667pt;}
.y127{bottom:201.786667pt;}
.y98{bottom:203.066667pt;}
.y26a{bottom:204.000000pt;}
.yb6{bottom:204.026667pt;}
.y1fb{bottom:204.640000pt;}
.yd4{bottom:205.146667pt;}
.y15{bottom:205.844267pt;}
.y31{bottom:207.328000pt;}
.y23d{bottom:211.520000pt;}
.y72{bottom:212.986667pt;}
.y167{bottom:213.466667pt;}
.y1d2{bottom:214.400000pt;}
.y103{bottom:220.346667pt;}
.y213{bottom:222.879520pt;}
.y126{bottom:222.906667pt;}
.yee{bottom:223.973333pt;}
.y4d{bottom:224.000000pt;}
.y97{bottom:224.186667pt;}
.yb5{bottom:224.986667pt;}
.y1fa{bottom:225.760000pt;}
.yd3{bottom:226.106667pt;}
.y23c{bottom:232.640000pt;}
.y71{bottom:234.106667pt;}
.y1d1{bottom:235.520000pt;}
.y13d{bottom:240.026667pt;}
.y269{bottom:240.800000pt;}
.y102{bottom:241.466667pt;}
.y125{bottom:244.026667pt;}
.y212{bottom:244.158720pt;}
.y96{bottom:245.306667pt;}
.yef{bottom:245.466667pt;}
.y51{bottom:245.853333pt;}
.y4c{bottom:245.920000pt;}
.y251{bottom:246.880000pt;}
.yb4{bottom:247.386667pt;}
.y14{bottom:248.164267pt;}
.yd2{bottom:248.346667pt;}
.y30{bottom:249.648000pt;}
.y166{bottom:250.266667pt;}
.y52{bottom:252.506667pt;}
.y17d{bottom:254.586667pt;}
.y70{bottom:255.226667pt;}
.y1d0{bottom:256.640000pt;}
.y13c{bottom:261.146667pt;}
.y101{bottom:262.586667pt;}
.y200{bottom:264.960800pt;}
.y124{bottom:265.306667pt;}
.y95{bottom:266.586667pt;}
.y4b{bottom:267.840000pt;}
.y1f9{bottom:268.000000pt;}
.y165{bottom:268.666667pt;}
.yb3{bottom:269.786667pt;}
.yd1{bottom:270.746667pt;}
.y23b{bottom:273.280000pt;}
.y17c{bottom:275.706667pt;}
.y268{bottom:277.600000pt;}
.y6f{bottom:277.626667pt;}
.y13b{bottom:282.106667pt;}
.y100{bottom:283.706667pt;}
.y1ff{bottom:286.240000pt;}
.y123{bottom:286.426667pt;}
.y164{bottom:287.066667pt;}
.y94{bottom:287.706667pt;}
.y250{bottom:289.280000pt;}
.y13{bottom:290.484267pt;}
.yb2{bottom:290.746667pt;}
.y2f{bottom:291.968000pt;}
.yd0{bottom:292.986667pt;}
.y17b{bottom:296.826667pt;}
.y6e{bottom:298.586667pt;}
.y1cf{bottom:299.040000pt;}
.y13a{bottom:304.546667pt;}
.yff{bottom:305.026667pt;}
.y163{bottom:306.626667pt;}
.y122{bottom:307.586667pt;}
.y93{bottom:308.706667pt;}
.y1f8{bottom:310.400000pt;}
.y211{bottom:310.880000pt;}
.y12{bottom:311.636267pt;}
.y2e{bottom:313.120000pt;}
.yb1{bottom:313.346667pt;}
.y267{bottom:314.400000pt;}
.ycf{bottom:315.426667pt;}
.y23a{bottom:315.520000pt;}
.y17a{bottom:317.986667pt;}
.y1ce{bottom:320.160000pt;}
.y6d{bottom:321.186667pt;}
.y210{bottom:324.160000pt;}
.y162{bottom:325.186667pt;}
.y139{bottom:325.826667pt;}
.yfe{bottom:326.146667pt;}
.y121{bottom:328.706667pt;}
.y92{bottom:331.106667pt;}
.y1f7{bottom:331.516800pt;}
.y24f{bottom:331.520000pt;}
.y2d{bottom:334.272000pt;}
.yb0{bottom:334.466667pt;}
.y239{bottom:336.640000pt;}
.yce{bottom:337.826667pt;}
.y179{bottom:339.266667pt;}
.y1cd{bottom:341.280000pt;}
.y6c{bottom:342.306667pt;}
.y161{bottom:344.706667pt;}
.y4a{bottom:346.560000pt;}
.y138{bottom:346.946667pt;}
.yfd{bottom:347.266667pt;}
.y120{bottom:349.986667pt;}
.y20f{bottom:350.240000pt;}
.y266{bottom:351.200000pt;}
.y91{bottom:352.226667pt;}
.y24e{bottom:352.634933pt;}
.y1f6{bottom:352.640000pt;}
.y11{bottom:353.956267pt;}
.yaf{bottom:355.426667pt;}
.y238{bottom:357.920000pt;}
.ycd{bottom:358.946667pt;}
.y178{bottom:360.386667pt;}
.y197{bottom:362.466667pt;}
.y1cc{bottom:362.560000pt;}
.y6b{bottom:363.426667pt;}
.y160{bottom:364.226667pt;}
.y137{bottom:368.066667pt;}
.yfc{bottom:368.386667pt;}
.y49{bottom:368.480000pt;}
.y11f{bottom:371.106667pt;}
.y1f5{bottom:373.760000pt;}
.y24d{bottom:373.920000pt;}
.y90{bottom:374.626667pt;}
.y255{bottom:375.680000pt;}
.y20e{bottom:376.480000pt;}
.y2c{bottom:376.592000pt;}
.yae{bottom:377.826667pt;}
.y237{bottom:379.040000pt;}
.y177{bottom:381.506667pt;}
.y15f{bottom:382.626667pt;}
.y196{bottom:383.586667pt;}
.y6a{bottom:384.546667pt;}
.y265{bottom:388.000000pt;}
.y136{bottom:389.186667pt;}
.yfb{bottom:389.506667pt;}
.y48{bottom:390.400000pt;}
.y11e{bottom:392.226667pt;}
.y1f4{bottom:395.040000pt;}
.y8f{bottom:395.746667pt;}
.y10{bottom:396.276267pt;}
.y2b{bottom:397.744000pt;}
.y236{bottom:400.160000pt;}
.yad{bottom:400.226667pt;}
.ycc{bottom:401.346667pt;}
.y15e{bottom:402.146667pt;}
.y176{bottom:402.626667pt;}
.y195{bottom:404.706667pt;}
.y1cb{bottom:404.800000pt;}
.y69{bottom:406.946667pt;}
.y1b6{bottom:407.426667pt;}
.yfa{bottom:410.786667pt;}
.y135{bottom:411.586667pt;}
.y11d{bottom:413.346667pt;}
.y24c{bottom:416.156800pt;}
.y1f3{bottom:416.160000pt;}
.y8e{bottom:417.986667pt;}
.y20d{bottom:418.880000pt;}
.y2a{bottom:418.896000pt;}
.yac{bottom:421.186667pt;}
.y235{bottom:421.280000pt;}
.y15d{bottom:421.666667pt;}
.ycb{bottom:422.466667pt;}
.y264{bottom:424.800000pt;}
.y1ca{bottom:425.600000pt;}
.y194{bottom:425.826667pt;}
.y175{bottom:426.466667pt;}
.y68{bottom:428.066667pt;}
.y1b5{bottom:428.546667pt;}
.yf9{bottom:431.906667pt;}
.y134{bottom:432.706667pt;}
.y11c{bottom:434.626667pt;}
.y1f2{bottom:437.280000pt;}
.yf{bottom:438.596267pt;}
.y15c{bottom:440.066667pt;}
.y8d{bottom:440.226667pt;}
.y234{bottom:442.560000pt;}
.yab{bottom:443.746667pt;}
.y21f{bottom:444.640000pt;}
.y1c9{bottom:446.560000pt;}
.y193{bottom:447.106667pt;}
.y174{bottom:447.746667pt;}
.y67{bottom:449.186667pt;}
.y1b4{bottom:449.666667pt;}
.yf8{bottom:453.026667pt;}
.y133{bottom:453.666667pt;}
.y11b{bottom:455.746667pt;}
.y1f1{bottom:458.400000pt;}
.y24b{bottom:458.556800pt;}
.y254{bottom:458.560000pt;}
.ye{bottom:459.748267pt;}
.y29{bottom:461.216000pt;}
.y15b{bottom:462.466667pt;}
.y8c{bottom:462.626667pt;}
.y233{bottom:463.680000pt;}
.yaa{bottom:464.706667pt;}
.y1aa{bottom:466.946667pt;}
.y263{bottom:467.200000pt;}
.y1c8{bottom:467.520000pt;}
.y192{bottom:468.226667pt;}
.y173{bottom:468.866667pt;}
.y66{bottom:470.466667pt;}
.y1b3{bottom:470.946667pt;}
.y20c{bottom:471.360000pt;}
.yf7{bottom:474.146667pt;}
.y11a{bottom:476.866667pt;}
.y1f0{bottom:479.520000pt;}
.y24a{bottom:479.680000pt;}
.y15a{bottom:483.426667pt;}
.y232{bottom:484.800000pt;}
.yca{bottom:485.986667pt;}
.y8b{bottom:486.626667pt;}
.ya9{bottom:487.106667pt;}
.y1a9{bottom:488.066667pt;}
.y262{bottom:488.320000pt;}
.y1c7{bottom:488.480000pt;}
.y191{bottom:489.346667pt;}
.y172{bottom:489.986667pt;}
.y65{bottom:491.586667pt;}
.y1b2{bottom:492.066667pt;}
.yf6{bottom:495.426667pt;}
.y132{bottom:495.746667pt;}
.y119{bottom:497.986667pt;}
.y20b{bottom:498.080000pt;}
.y21e{bottom:499.840000pt;}
.y249{bottom:500.796800pt;}
.y1ef{bottom:500.800000pt;}
.yd{bottom:502.068267pt;}
.y28{bottom:503.536000pt;}
.y159{bottom:505.826667pt;}
.y231{bottom:505.920000pt;}
.y8a{bottom:507.586667pt;}
.ydc{bottom:508.066667pt;}
.ya8{bottom:508.226667pt;}
.y1a8{bottom:509.186667pt;}
.y1c6{bottom:509.440000pt;}
.y190{bottom:510.626667pt;}
.y171{bottom:511.106667pt;}
.y64{bottom:512.706667pt;}
.y1b1{bottom:513.186667pt;}
.yf5{bottom:516.546667pt;}
.y118{bottom:519.293333pt;}
.y1ee{bottom:521.916800pt;}
.y248{bottom:521.920000pt;}
.y27{bottom:524.688000pt;}
.yc9{bottom:526.653333pt;}
.y158{bottom:526.973333pt;}
.y230{bottom:527.040000pt;}
.y20a{bottom:527.200000pt;}
.ydb{bottom:529.373333pt;}
.ya7{bottom:529.533333pt;}
.y89{bottom:530.013333pt;}
.y1a7{bottom:530.333333pt;}
.y261{bottom:530.560000pt;}
.y170{bottom:532.413333pt;}
.y63{bottom:533.693333pt;}
.y1b0{bottom:534.333333pt;}
.yf4{bottom:537.693333pt;}
.y117{bottom:540.413333pt;}
.y131{bottom:542.973333pt;}
.y1ed{bottom:543.040000pt;}
.yc{bottom:544.388267pt;}
.y22f{bottom:548.320000pt;}
.y157{bottom:549.213333pt;}
.yda{bottom:550.493333pt;}
.y88{bottom:551.133333pt;}
.y1a6{bottom:551.453333pt;}
.y260{bottom:551.840000pt;}
.y16f{bottom:553.533333pt;}
.y21d{bottom:555.040000pt;}
.y1af{bottom:555.613333pt;}
.y62{bottom:556.093333pt;}
.yf3{bottom:558.813333pt;}
.ye0{bottom:560.893333pt;}
.y116{bottom:561.533333pt;}
.y209{bottom:564.000000pt;}
.y1ec{bottom:564.160000pt;}
.y130{bottom:564.253333pt;}
.y247{bottom:564.320000pt;}
.y26{bottom:567.008000pt;}
.ya6{bottom:570.173333pt;}
.yd9{bottom:571.613333pt;}
.y1c5{bottom:572.960000pt;}
.y87{bottom:573.373333pt;}
.y16e{bottom:574.653333pt;}
.y1a5{bottom:575.293333pt;}
.y1ae{bottom:576.733333pt;}
.y46{bottom:577.053333pt;}
.yc8{bottom:577.373333pt;}
.yf2{bottom:580.093333pt;}
.y18f{bottom:580.733333pt;}
.ydf{bottom:582.013333pt;}
.y115{bottom:582.653333pt;}
.y208{bottom:585.120000pt;}
.y12f{bottom:585.373333pt;}
.y1eb{bottom:585.440000pt;}
.yb{bottom:586.708267pt;}
.y25{bottom:588.160000pt;}
.y1c4{bottom:590.560000pt;}
.yec{bottom:591.133333pt;}
.y156{bottom:592.733333pt;}
.y86{bottom:595.613333pt;}
.y16d{bottom:595.773333pt;}
.y1a4{bottom:596.573333pt;}
.y1ad{bottom:597.853333pt;}
.yc7{bottom:598.493333pt;}
.y61{bottom:601.213333pt;}
.y18e{bottom:601.853333pt;}
.yde{bottom:603.133333pt;}
.y114{bottom:603.933333pt;}
.y207{bottom:606.240000pt;}
.y12e{bottom:606.493333pt;}
.y1ea{bottom:606.560000pt;}
.ya{bottom:607.860267pt;}
.y21c{bottom:610.240000pt;}
.y22e{bottom:611.680000pt;}
.y155{bottom:614.973333pt;}
.y16c{bottom:617.053333pt;}
.y1a3{bottom:617.693333pt;}
.y85{bottom:618.173333pt;}
.y1ac{bottom:618.973333pt;}
.yc6{bottom:619.453333pt;}
.y18d{bottom:622.973333pt;}
.y45{bottom:624.253333pt;}
.y113{bottom:625.053333pt;}
.y1e9{bottom:627.520000pt;}
.y12d{bottom:627.613333pt;}
.y246{bottom:627.680000pt;}
.y24{bottom:630.480000pt;}
.y22d{bottom:632.960000pt;}
.y25f{bottom:633.600000pt;}
.y154{bottom:637.373333pt;}
.y16b{bottom:638.173333pt;}
.yeb{bottom:638.333333pt;}
.y84{bottom:639.133333pt;}
.y1a2{bottom:641.533333pt;}
.ya5{bottom:642.013333pt;}
.yf1{bottom:643.453333pt;}
.y18c{bottom:644.093333pt;}
.y44{bottom:645.533333pt;}
.y60{bottom:646.173333pt;}
.y206{bottom:648.640000pt;}
.y12c{bottom:648.893333pt;}
.y1e8{bottom:648.960000pt;}
.y9{bottom:650.180267pt;}
.y23{bottom:651.632000pt;}
.y22c{bottom:654.080000pt;}
.y1c3{bottom:654.240000pt;}
.y153{bottom:658.493333pt;}
.yea{bottom:659.613333pt;}
.y83{bottom:661.533333pt;}
.y1a1{bottom:662.653333pt;}
.ya4{bottom:663.133333pt;}
.y18b{bottom:665.373333pt;}
.y21b{bottom:665.600000pt;}
.y43{bottom:666.653333pt;}
.y5f{bottom:667.293333pt;}
.y205{bottom:669.760000pt;}
.y1e7{bottom:669.920000pt;}
.y12b{bottom:670.013333pt;}
.y245{bottom:670.080000pt;}
.y22b{bottom:675.200000pt;}
.y1c2{bottom:675.360000pt;}
.ye9{bottom:680.733333pt;}
.y152{bottom:680.893333pt;}
.y82{bottom:682.813333pt;}
.y1a0{bottom:683.773333pt;}
.yc5{bottom:684.093333pt;}
.ya3{bottom:684.253333pt;}
.y16a{bottom:685.053333pt;}
.y25e{bottom:686.400000pt;}
.y18a{bottom:686.493333pt;}
.y42{bottom:687.773333pt;}
.y5e{bottom:688.413333pt;}
.y1ab{bottom:689.213333pt;}
.y204{bottom:690.880000pt;}
.y112{bottom:691.133333pt;}
.y244{bottom:691.200000pt;}
.y1e6{bottom:691.360000pt;}
.y8{bottom:692.500267pt;}
.y22{bottom:693.952000pt;}
.y22a{bottom:696.320000pt;}
.y1c1{bottom:696.480000pt;}
.ye8{bottom:701.853333pt;}
.y81{bottom:703.933333pt;}
.y25d{bottom:704.800000pt;}
.y19f{bottom:705.053333pt;}
.y169{bottom:706.333333pt;}
.yc4{bottom:706.493333pt;}
.ya2{bottom:706.653333pt;}
.y41{bottom:708.893333pt;}
.y5d{bottom:709.693333pt;}
.y189{bottom:710.333333pt;}
.y203{bottom:712.160000pt;}
.y111{bottom:712.253333pt;}
.y243{bottom:712.320000pt;}
.y1e5{bottom:712.480000pt;}
.y21{bottom:715.104000pt;}
.y229{bottom:717.600000pt;}
.y1c0{bottom:717.760000pt;}
.y21a{bottom:720.800000pt;}
.y151{bottom:724.413333pt;}
.y80{bottom:724.893333pt;}
.ye7{bottom:725.213333pt;}
.y19e{bottom:726.173333pt;}
.y168{bottom:727.453333pt;}
.yc3{bottom:727.613333pt;}
.ya1{bottom:727.773333pt;}
.y40{bottom:730.173333pt;}
.y5c{bottom:730.813333pt;}
.y188{bottom:731.453333pt;}
.y110{bottom:733.533333pt;}
.y1e4{bottom:733.600000pt;}
.y7{bottom:734.820267pt;}
.y20{bottom:736.256000pt;}
.y228{bottom:738.720000pt;}
.y1bf{bottom:738.880000pt;}
.y25c{bottom:744.480000pt;}
.y150{bottom:745.573333pt;}
.y7f{bottom:747.333333pt;}
.ya0{bottom:748.933333pt;}
.y149{bottom:749.093333pt;}
.yc2{bottom:750.053333pt;}
.ydd{bottom:751.333333pt;}
.y5b{bottom:751.973333pt;}
.y187{bottom:752.613333pt;}
.y10f{bottom:754.693333pt;}
.y1e3{bottom:754.720000pt;}
.y227{bottom:759.840000pt;}
.y1be{bottom:760.000000pt;}
.y14f{bottom:766.533333pt;}
.y19d{bottom:768.453333pt;}
.y7e{bottom:769.733333pt;}
.y9f{bottom:770.213333pt;}
.yc1{bottom:771.173333pt;}
.y3f{bottom:772.453333pt;}
.y186{bottom:773.893333pt;}
.y10e{bottom:775.813333pt;}
.y202{bottom:775.840000pt;}
.y1e2{bottom:776.000000pt;}
.y6{bottom:777.140267pt;}
.y1f{bottom:778.576000pt;}
.y226{bottom:780.960000pt;}
.y1bd{bottom:781.120000pt;}
.y14e{bottom:788.933333pt;}
.y19c{bottom:789.573333pt;}
.y9e{bottom:791.173333pt;}
.y148{bottom:791.333333pt;}
.y3e{bottom:793.573333pt;}
.y5a{bottom:794.373333pt;}
.y185{bottom:795.013333pt;}
.y10d{bottom:796.933333pt;}
.y201{bottom:796.960000pt;}
.y1e1{bottom:797.120000pt;}
.y25b{bottom:797.280000pt;}
.y1e{bottom:799.728000pt;}
.y225{bottom:802.240000pt;}
.y1bc{bottom:802.400000pt;}
.y14d{bottom:811.173333pt;}
.y147{bottom:812.453333pt;}
.y19b{bottom:813.413333pt;}
.y9d{bottom:813.573333pt;}
.y7d{bottom:814.533333pt;}
.yc0{bottom:814.693333pt;}
.y59{bottom:815.493333pt;}
.y184{bottom:816.133333pt;}
.y10c{bottom:818.213333pt;}
.y1e0{bottom:818.240000pt;}
.y5{bottom:819.460267pt;}
.y224{bottom:823.360000pt;}
.y1bb{bottom:823.520000pt;}
.y25a{bottom:823.680000pt;}
.y146{bottom:833.573333pt;}
.y19a{bottom:834.693333pt;}
.y9c{bottom:834.853333pt;}
.ybf{bottom:835.653333pt;}
.y3d{bottom:835.973333pt;}
.y58{bottom:836.613333pt;}
.y7c{bottom:836.933333pt;}
.y183{bottom:837.253333pt;}
.y10b{bottom:839.333333pt;}
.y1df{bottom:839.360000pt;}
.y219{bottom:839.392000pt;}
.y1d{bottom:842.048000pt;}
.y223{bottom:844.480000pt;}
.y1ba{bottom:844.640000pt;}
.y259{bottom:850.080000pt;}
.y14c{bottom:854.693333pt;}
.y9b{bottom:855.813333pt;}
.y3c{bottom:857.093333pt;}
.y57{bottom:857.733333pt;}
.y7b{bottom:858.053333pt;}
.ybe{bottom:858.213333pt;}
.y182{bottom:858.533333pt;}
.y10a{bottom:860.453333pt;}
.y1de{bottom:860.480000pt;}
.y218{bottom:860.544000pt;}
.y4{bottom:861.780267pt;}
.y222{bottom:865.600000pt;}
.y1b9{bottom:865.760000pt;}
.y258{bottom:871.200000pt;}
.y199{bottom:876.933333pt;}
.y14b{bottom:877.093333pt;}
.y3b{bottom:878.213333pt;}
.y145{bottom:878.693333pt;}
.y56{bottom:879.013333pt;}
.ybd{bottom:879.173333pt;}
.y181{bottom:879.653333pt;}
.y7a{bottom:880.453333pt;}
.y109{bottom:881.573333pt;}
.y242{bottom:881.600000pt;}
.y217{bottom:881.696000pt;}
.y1dd{bottom:881.760000pt;}
.y1c{bottom:884.368000pt;}
.y1b8{bottom:886.880000pt;}
.y257{bottom:889.600000pt;}
.y3{bottom:890.016267pt;}
.y9a{bottom:897.893333pt;}
.y14a{bottom:898.053333pt;}
.y3a{bottom:899.333333pt;}
.y144{bottom:899.813333pt;}
.y180{bottom:900.773333pt;}
.y79{bottom:901.573333pt;}
.y216{bottom:902.848000pt;}
.y108{bottom:902.853333pt;}
.y1dc{bottom:902.880000pt;}
.y221{bottom:908.000000pt;}
.y256{bottom:916.000000pt;}
.y198{bottom:919.173333pt;}
.y55{bottom:921.253333pt;}
.y17f{bottom:921.893333pt;}
.ybc{bottom:922.853333pt;}
.y78{bottom:923.973333pt;}
.y1db{bottom:924.000000pt;}
.y2{bottom:925.752267pt;}
.y1b{bottom:926.688000pt;}
.y1b7{bottom:929.120000pt;}
.y39{bottom:940.133333pt;}
.y17e{bottom:943.173333pt;}
.ybb{bottom:943.813333pt;}
.y143{bottom:944.773333pt;}
.y77{bottom:945.093333pt;}
.y1da{bottom:945.120000pt;}
.y1a{bottom:947.840000pt;}
.y1{bottom:961.488267pt;}
.y19{bottom:968.992000pt;}
.h18{height:20.320000pt;}
.h1b{height:29.794062pt;}
.h15{height:43.375000pt;}
.h1c{height:44.437500pt;}
.h16{height:44.468750pt;}
.h1a{height:44.481550pt;}
.h1d{height:44.489017pt;}
.hf{height:44.687500pt;}
.h17{height:46.250000pt;}
.h7{height:47.392000pt;}
.h19{height:57.787500pt;}
.h3{height:58.563750pt;}
.h13{height:61.952000pt;}
.hb{height:62.112000pt;}
.h14{height:62.781250pt;}
.h2{height:62.812500pt;}
.hd{height:64.500000pt;}
.he{height:66.404375pt;}
.h11{height:74.477812pt;}
.ha{height:79.570312pt;}
.h12{height:79.697625pt;}
.h8{height:83.540625pt;}
.h1{height:94.218750pt;}
.hc{height:95.484375pt;}
.h6{height:136.303125pt;}
.h10{height:138.134062pt;}
.h5{height:243.750000pt;}
.h4{height:288.026667pt;}
.h9{height:421.440000pt;}
.h0{height:1056.000000pt;}
.w7{width:75.040000pt;}
.w4{width:189.786667pt;}
.w6{width:239.426667pt;}
.w2{width:239.746667pt;}
.w3{width:239.906667pt;}
.w5{width:240.066667pt;}
.w1{width:719.520000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:1.280000pt;}
.x1d{left:18.400000pt;}
.x23{left:44.352000pt;}
.x9{left:48.320000pt;}
.xa{left:52.992000pt;}
.x1e{left:54.560000pt;}
.x4{left:72.000000pt;}
.xe{left:96.032000pt;}
.x2e{left:115.680000pt;}
.xf{left:120.032000pt;}
.x24{left:123.880000pt;}
.xc{left:130.920000pt;}
.xd{left:136.346667pt;}
.x28{left:140.000000pt;}
.x10{left:144.026667pt;}
.x2d{left:146.560000pt;}
.x25{left:157.626667pt;}
.x1f{left:168.026667pt;}
.x20{left:192.026667pt;}
.x26{left:193.466667pt;}
.x1b{left:199.773333pt;}
.x22{left:216.026667pt;}
.x21{left:221.466667pt;}
.x2{left:225.271867pt;}
.x1a{left:247.586667pt;}
.x1{left:248.671867pt;}
.x5{left:288.592000pt;}
.x6{left:295.760000pt;}
.x3{left:300.175867pt;}
.x7{left:325.376000pt;}
.x2c{left:335.360000pt;}
.x12{left:351.040000pt;}
.x11{left:357.506667pt;}
.x14{left:361.760000pt;}
.x2a{left:370.400000pt;}
.x29{left:371.840000pt;}
.x2f{left:379.040000pt;}
.x13{left:382.240000pt;}
.x27{left:400.573333pt;}
.x8{left:404.413333pt;}
.x30{left:408.000000pt;}
.x31{left:432.000000pt;}
.x18{left:469.253333pt;}
.x19{left:478.853333pt;}
.x17{left:524.866667pt;}
.xb{left:527.933333pt;}
.x16{left:542.626667pt;}
.x15{left:549.986667pt;}
.x1c{left:598.693333pt;}
}




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