
    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_08b00652ab6709bf4e5c09e1.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_86178ff2961c328eb3decc04.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.115234;font-style:normal;font-weight: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_44e3db294fb169d575bfe82a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight: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_85c0c961ae37e466ca9cf735.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;font-style:normal;font-weight: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_b344d5647e8b84ad5e74d49b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight: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_ac7a8d903435b73082b719b0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.689453;font-style:normal;font-weight: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_60c9c9f02e634a13a8e2fba5.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5f4dcfc2eed4acfdfb9e4714.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104004;font-style:normal;font-weight: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_f7f85134d26b21b506e12718.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.689941;font-style:normal;font-weight: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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.003906;font-style:normal;font-weight: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_2aa93c0e1949c2cb21845c45.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.112305;font-style:normal;font-weight: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_591cd8dfa056d887a2581a27.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.689453;font-style:normal;font-weight: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_228265ab272371ec4dc4b38e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.689941;font-style:normal;font-weight: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_e323624912125694a40c0ac9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.689453;font-style:normal;font-weight: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_8c30a8df32d31ae232b47587.woff2')format("woff");}.fff{font-family:fff;line-height:0.689453;font-style:normal;font-weight: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_5560bd4e4a57f7732812f8ac.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.689453;font-style:normal;font-weight: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_8c30a8df32d31ae232b47587.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.689453;font-style:normal;font-weight: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_22405fd9cd95c1bf89dd4a15.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.689453;font-style:normal;font-weight: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_953b29bedaed0ecb71b854cf.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.689453;font-style:normal;font-weight: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_1c3711789ad33db62d31bf2d.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.966000;font-style:normal;font-weight: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_5223bd78e962756ec39f2587.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.745000;font-style:normal;font-weight: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_ec931ec7567b431ab7f81636.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_a28ba6167a41b3ec1ffdc7a0.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.739746;font-style:normal;font-weight: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_a664178e2c9b8c394f59e72b.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.055000;font-style:normal;font-weight: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_9b651635a1e2eedab5f7a424.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.093000;font-style:normal;font-weight: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_ae1e08a5608c0c77e388adc1.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.018000;font-style:normal;font-weight: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_962e2d75c0abd2af7d64d95a.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.474000;font-style:normal;font-weight: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_f7062deb6783d3588e703aea.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.055000;font-style:normal;font-weight: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_3e9833b7c2247fea4f2042a3.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.900000;font-style:normal;font-weight: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_b051a3e602e418767354e51c.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.093000;font-style:normal;font-weight: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_ff7a0dd617829fba63758c5c.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.018000;font-style:normal;font-weight: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_4a0c7478a4bf717b88d2b9ed.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.474000;font-style:normal;font-weight: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_1b7aacf61a5e6466ae506be9.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.068000;font-style:normal;font-weight: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_a1596f2be913091e95a77068.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.744000;font-style:normal;font-weight: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_6ceed009812656ca8adc4573.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.055000;font-style:normal;font-weight: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_28af8c924e590e9cf96312d1.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.018000;font-style:normal;font-weight: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_1573e1f2c2b6df821c86ec12.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.093000;font-style:normal;font-weight: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_235da8c9b61723b5c41f2c1f.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.474000;font-style:normal;font-weight: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_a3daf0a6a9aeed35fb8497b1.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.000000;font-style:normal;font-weight: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_a695b68872531b49e4f816d5.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.090000;font-style:normal;font-weight: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_6eda5caa2258e5ec837d158f.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.900000;font-style:normal;font-weight: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_ee60c7f881792331e844225a.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.055000;font-style:normal;font-weight: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_2879f051d00387af37fb6af1.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.018000;font-style:normal;font-weight: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_b8ea3007da656d41aa86e68d.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.093000;font-style:normal;font-weight: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_718339035ffc5369f559c8ab.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.474000;font-style:normal;font-weight: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_12659e59f40c114d71a6e19c.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.000000;font-style:normal;font-weight: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_171cd0f0ef23572c220487f4.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.090000;font-style:normal;font-weight: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_996157e6487bb2d1da489524.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.900000;font-style:normal;font-weight: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_48eb0acaf668e7e817285ecb.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.055000;font-style:normal;font-weight: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_5475d164e945b0e985e179df.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.018000;font-style:normal;font-weight: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_cdc9a398b5b81b9729e1f6a9.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.093000;font-style:normal;font-weight: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_a3e0d311a4a01d8ec7d03643.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.474000;font-style:normal;font-weight: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_e1df0150ec436b6e12e2a9ae.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.000000;font-style:normal;font-weight: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_2ec0d1a030a27ce0e69cb902.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.090000;font-style:normal;font-weight: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_4350f66ba5b7982a0e19ec61.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.900000;font-style:normal;font-weight: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_29f576f1a2930350236d99f0.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.055000;font-style:normal;font-weight: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_1ec0a8ea8a70bdd8f4199961.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.090000;font-style:normal;font-weight: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_4a61a54c67168c81f4ba280c.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:1.474000;font-style:normal;font-weight: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_17c8e9390cfe79c7b0c6b1a7.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.093000;font-style:normal;font-weight: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_012e3f32493ec176339ff3fc.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.000000;font-style:normal;font-weight: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_65b6cbe28ec1da8eebfb3af8.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:1.055000;font-style:normal;font-weight: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_181c4caac40ae34cb32fcede.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:1.093000;font-style:normal;font-weight: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_012e3f32493ec176339ff3fc.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.000000;font-style:normal;font-weight: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_197ae73d4b60108d92b0eb75.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.474000;font-style:normal;font-weight: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_4c2e52242443c23dd59acc08.woff2')format("woff");}.ff41{font-family:ff41;line-height:1.090000;font-style:normal;font-weight: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_b3f5a83b9a9def585f27f86e.woff2')format("woff");}.ff42{font-family:ff42;line-height:1.018000;font-style:normal;font-weight: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_d0760c4f1007795fc1300d35.woff2')format("woff");}.ff43{font-family:ff43;line-height:1.055000;font-style:normal;font-weight: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_8c4441d276a8d926a7ac10af.woff2')format("woff");}.ff44{font-family:ff44;line-height:1.093000;font-style:normal;font-weight: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_d00e3cbc462dfff5530ea79d.woff2')format("woff");}.ff45{font-family:ff45;line-height:1.090000;font-style:normal;font-weight: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_b3f5a83b9a9def585f27f86e.woff2')format("woff");}.ff46{font-family:ff46;line-height:1.018000;font-style:normal;font-weight: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_c14dea48f5209448237f5964.woff2')format("woff");}.ff47{font-family:ff47;line-height:1.068000;font-style:normal;font-weight: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_3d607612a71089ce74a97716.woff2')format("woff");}.ff48{font-family:ff48;line-height:0.967000;font-style:normal;font-weight: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_0d0e28df4c3a11bbe353a959.woff2')format("woff");}.ff49{font-family:ff49;line-height:0.928000;font-style:normal;font-weight: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_7f79a20681064b92a6177074.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.744000;font-style:normal;font-weight: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_8735a2c405d675c620caca06.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_5560bd4e4a57f7732812f8ac.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:0.689453;font-style:normal;font-weight: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_0ac8e5d83352831e750bfac9.woff2')format("woff");}.ff4d{font-family:ff4d;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:ff4e;src:url('chunks/assets/font_c90ff91326839a94d78b568a.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:1.104004;font-style:normal;font-weight: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_9901a4befa7edf09a470dbfc.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:0.976562;font-style:normal;font-weight: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_4f6dc0825e0f0aa2d21d8a9d.woff2')format("woff");}.ff50{font-family:ff50;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:ff51;src:url('chunks/assets/font_d2e8bf39cbae4b7e225fa078.woff2')format("woff");}.ff51{font-family:ff51;line-height:1.112305;font-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);}
.v5{vertical-align:-5.431921px;}
.v8{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.800000px;}
.v7{vertical-align:9.777458px;}
.v3{vertical-align:10.943359px;}
.v6{vertical-align:15.209379px;}
.v4{vertical-align:82.075194px;}
.v2{vertical-align:83.082000px;}
.ls23{letter-spacing:-41.965246px;}
.ls2a{letter-spacing:-41.456484px;}
.ls22{letter-spacing:-40.913400px;}
.ls33{letter-spacing:-39.337506px;}
.ls32{letter-spacing:-35.863304px;}
.ls2f{letter-spacing:-17.082849px;}
.ls13{letter-spacing:-0.288000px;}
.ls1d{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.109200px;}
.ls21{letter-spacing:-0.014400px;}
.ls5{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.014400px;}
.ls18{letter-spacing:0.120000px;}
.ls12{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.262080px;}
.ls1a{letter-spacing:0.264000px;}
.ls2c{letter-spacing:0.271596px;}
.lsa{letter-spacing:0.282720px;}
.ls31{letter-spacing:0.289267px;}
.ls26{letter-spacing:0.303982px;}
.ls1{letter-spacing:0.305280px;}
.ls14{letter-spacing:0.306720px;}
.ls20{letter-spacing:0.338484px;}
.ls9{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.420000px;}
.lsc{letter-spacing:0.432000px;}
.ls11{letter-spacing:0.720000px;}
.ls0{letter-spacing:0.738720px;}
.ls19{letter-spacing:1.440000px;}
.ls1b{letter-spacing:2.880000px;}
.lsb{letter-spacing:7.920000px;}
.lse{letter-spacing:10.080000px;}
.lsf{letter-spacing:10.800000px;}
.ls10{letter-spacing:12.240000px;}
.ls2d{letter-spacing:12.873653px;}
.ls2e{letter-spacing:13.090930px;}
.ls15{letter-spacing:13.680000px;}
.ls28{letter-spacing:14.651942px;}
.ls1c{letter-spacing:18.720000px;}
.lsd{letter-spacing:20.160000px;}
.ls4{letter-spacing:23.345280px;}
.ls16{letter-spacing:25.938720px;}
.ls27{letter-spacing:27.966362px;}
.ls17{letter-spacing:29.520000px;}
.ls25{letter-spacing:41.706358px;}
.ls30{letter-spacing:53.435476px;}
.ls2b{letter-spacing:55.188319px;}
.ls1f{letter-spacing:88.940796px;}
.ls1e{letter-spacing:92.018196px;}
.ls29{letter-spacing:131.028487px;}
.ls2{letter-spacing:150.245280px;}
.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;}
}
.ws8f{word-spacing:-120.240000px;}
.ws90{word-spacing:-95.760000px;}
.ws2b{word-spacing:-83.059995px;}
.ws41{word-spacing:-82.272174px;}
.ws19{word-spacing:-80.978400px;}
.ws7e{word-spacing:-77.859290px;}
.ws57{word-spacing:-73.350491px;}
.ws67{word-spacing:-71.020796px;}
.ws39{word-spacing:-69.539835px;}
.ws46{word-spacing:-68.760774px;}
.ws26{word-spacing:-67.923000px;}
.ws23{word-spacing:-67.797000px;}
.ws3a{word-spacing:-67.696800px;}
.ws4a{word-spacing:-66.876084px;}
.ws29{word-spacing:-66.000000px;}
.ws7f{word-spacing:-65.306755px;}
.ws86{word-spacing:-65.246182px;}
.ws81{word-spacing:-63.457825px;}
.ws2d{word-spacing:-61.542600px;}
.ws4f{word-spacing:-60.796440px;}
.ws58{word-spacing:-59.751133px;}
.ws7b{word-spacing:-59.404891px;}
.ws7c{word-spacing:-57.853369px;}
.ws32{word-spacing:-55.410405px;}
.ws5f{word-spacing:-54.319212px;}
.ws6b{word-spacing:-52.593972px;}
.ws8a{word-spacing:-51.940807px;}
.ws3b{word-spacing:-51.564653px;}
.ws30{word-spacing:-51.375102px;}
.ws3c{word-spacing:-51.334483px;}
.ws3f{word-spacing:-51.226169px;}
.ws2f{word-spacing:-51.165241px;}
.ws33{word-spacing:-51.111084px;}
.ws38{word-spacing:-51.104314px;}
.ws3d{word-spacing:-51.097545px;}
.ws36{word-spacing:-51.084005px;}
.ws37{word-spacing:-51.077236px;}
.ws31{word-spacing:-51.070466px;}
.ws3e{word-spacing:-51.063696px;}
.ws35{word-spacing:-51.056927px;}
.ws34{word-spacing:-50.759061px;}
.ws44{word-spacing:-50.752260px;}
.ws49{word-spacing:-50.585070px;}
.ws43{word-spacing:-50.544944px;}
.ws4c{word-spacing:-50.491443px;}
.ws47{word-spacing:-50.458005px;}
.ws4b{word-spacing:-50.451318px;}
.ws48{word-spacing:-50.437943px;}
.ws1f{word-spacing:-50.252400px;}
.ws28{word-spacing:-50.206200px;}
.ws45{word-spacing:-50.143688px;}
.ws21{word-spacing:-50.087400px;}
.ws2a{word-spacing:-49.975200px;}
.ws1d{word-spacing:-49.882800px;}
.ws22{word-spacing:-49.830000px;}
.ws1a{word-spacing:-49.823400px;}
.ws1b{word-spacing:-49.816800px;}
.ws25{word-spacing:-49.797000px;}
.ws24{word-spacing:-49.790400px;}
.ws1e{word-spacing:-49.783800px;}
.ws20{word-spacing:-49.651800px;}
.ws27{word-spacing:-49.486800px;}
.ws82{word-spacing:-48.234293px;}
.ws85{word-spacing:-48.158144px;}
.ws8c{word-spacing:-48.001230px;}
.ws84{word-spacing:-47.961424px;}
.ws88{word-spacing:-47.904312px;}
.ws80{word-spacing:-47.878929px;}
.ws87{word-spacing:-47.872583px;}
.ws89{word-spacing:-47.865661px;}
.ws8b{word-spacing:-47.859892px;}
.ws2c{word-spacing:-46.156950px;}
.ws56{word-spacing:-46.144498px;}
.ws50{word-spacing:-46.083702px;}
.ws51{word-spacing:-46.022905px;}
.ws4e{word-spacing:-45.962109px;}
.ws54{word-spacing:-45.901312px;}
.ws55{word-spacing:-45.718923px;}
.ws53{word-spacing:-45.658126px;}
.ws4d{word-spacing:-45.597330px;}
.ws52{word-spacing:-45.475737px;}
.ws77{word-spacing:-44.049555px;}
.ws73{word-spacing:-43.904922px;}
.ws72{word-spacing:-43.725576px;}
.ws78{word-spacing:-43.679820px;}
.ws7d{word-spacing:-43.673508px;}
.ws74{word-spacing:-43.667723px;}
.ws75{word-spacing:-43.656152px;}
.ws76{word-spacing:-43.650367px;}
.ws79{word-spacing:-43.637219px;}
.ws7a{word-spacing:-43.633011px;}
.ws62{word-spacing:-41.228282px;}
.ws60{word-spacing:-41.173963px;}
.ws66{word-spacing:-41.119643px;}
.ws61{word-spacing:-41.065324px;}
.ws65{word-spacing:-41.011005px;}
.ws64{word-spacing:-40.902367px;}
.ws63{word-spacing:-40.848047px;}
.ws5e{word-spacing:-40.793728px;}
.ws5c{word-spacing:-40.739409px;}
.ws5d{word-spacing:-40.630771px;}
.ws11{word-spacing:-40.608000px;}
.ws6d{word-spacing:-39.866231px;}
.ws6f{word-spacing:-39.655855px;}
.ws6e{word-spacing:-39.550667px;}
.ws6c{word-spacing:-39.498073px;}
.ws69{word-spacing:-39.445479px;}
.ws6a{word-spacing:-39.340291px;}
.ws70{word-spacing:-39.077321px;}
.ws7{word-spacing:-34.423200px;}
.ws6{word-spacing:-34.064640px;}
.ws16{word-spacing:-30.420000px;}
.ws0{word-spacing:-26.621280px;}
.ws5a{word-spacing:-26.373607px;}
.ws59{word-spacing:-25.830415px;}
.ws12{word-spacing:-23.940000px;}
.ws14{word-spacing:-18.720000px;}
.ws1{word-spacing:-18.414720px;}
.ws8e{word-spacing:-18.348000px;}
.ws2{word-spacing:-18.305520px;}
.ws15{word-spacing:-18.144000px;}
.ws13{word-spacing:-18.000000px;}
.ws17{word-spacing:-17.784000px;}
.ws4{word-spacing:-15.120000px;}
.wsc{word-spacing:-14.190000px;}
.ws9{word-spacing:-1.140000px;}
.wsf{word-spacing:-0.720000px;}
.wsd{word-spacing:-0.606000px;}
.ws10{word-spacing:-0.540000px;}
.ws8{word-spacing:-0.456000px;}
.wse{word-spacing:-0.420000px;}
.ws3{word-spacing:0.000000px;}
.wsa{word-spacing:0.360000px;}
.ws8d{word-spacing:18.768000px;}
.ws40{word-spacing:40.006800px;}
.ws18{word-spacing:40.032000px;}
.wsb{word-spacing:53.910000px;}
.ws91{word-spacing:67.944000px;}
.ws5{word-spacing:83.136000px;}
.ws71{word-spacing:85.242732px;}
.ws83{word-spacing:93.500490px;}
.ws1c{word-spacing:97.264200px;}
.ws42{word-spacing:98.537046px;}
.ws2e{word-spacing:99.764774px;}
.ws68{word-spacing:431.901698px;}
.ws5b{word-spacing:446.069369px;}
._18{margin-left:-100.036800px;}
._7{margin-left:-53.904240px;}
._33{margin-left:-6.353327px;}
._9{margin-left:-4.459920px;}
._12{margin-left:-3.384240px;}
._1{margin-left:-1.584828px;}
._0{width:1.268353px;}
._d{width:2.756292px;}
._6{width:3.841854px;}
._5{width:5.721815px;}
._c{width:7.320000px;}
._b{width:8.652828px;}
._10{width:9.720000px;}
._f{width:11.172828px;}
._a{width:13.104000px;}
._8{width:14.504400px;}
._11{width:15.726047px;}
._1a{width:17.196919px;}
._e{width:19.872000px;}
._15{width:21.246852px;}
._3{width:22.388988px;}
._4{width:23.973881px;}
._16{width:25.824000px;}
._17{width:27.144000px;}
._13{width:28.488000px;}
._14{width:29.511647px;}
._27{width:54.753766px;}
._1f{width:56.220384px;}
._21{width:67.301504px;}
._28{width:68.550846px;}
._1e{width:84.194779px;}
._26{width:104.673122px;}
._2d{width:126.488503px;}
._20{width:144.271827px;}
._2c{width:146.842370px;}
._2b{width:150.892106px;}
._25{width:162.686040px;}
._24{width:179.036123px;}
._23{width:182.077999px;}
._30{width:188.864953px;}
._22{width:190.008604px;}
._29{width:193.647991px;}
._2e{width:211.901113px;}
._2f{width:226.837801px;}
._31{width:263.338018px;}
._2{width:351.058080px;}
._2a{width:2652.118358px;}
._1d{width:2739.115794px;}
._32{width:3386.204163px;}
._19{width:3521.858400px;}
._1c{width:3536.434072px;}
._1b{width:3612.396147px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(0,118,186);}
.fc4{color:rgb(154,154,154);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs1a{font-size:52.593972px;}
.fs17{font-size:54.319212px;}
.fs19{font-size:57.853369px;}
.fs16{font-size:59.751133px;}
.fs4{font-size:59.760000px;}
.fs13{font-size:60.796440px;}
.fsd{font-size:61.542600px;}
.fs1d{font-size:63.457825px;}
.fs8{font-size:66.000000px;}
.fs2{font-size:66.240000px;}
.fs11{font-size:66.876084px;}
.fsb{font-size:67.696800px;}
.fs1f{font-size:69.226718px;}
.fs0{font-size:72.000000px;}
.fse{font-size:73.851000px;}
.fs1b{font-size:78.890958px;}
.fs1e{font-size:86.533398px;}
.fs9{font-size:90.000000px;}
.fs12{font-size:91.194660px;}
.fsf{font-size:92.313600px;}
.fs18{font-size:94.669150px;}
.fs1{font-size:95.760000px;}
.fs20{font-size:96.000000px;}
.fs15{font-size:97.774582px;}
.fs1c{font-size:103.840078px;}
.fs7{font-size:108.000000px;}
.fs10{font-size:109.433592px;}
.fsa{font-size:110.776200px;}
.fs3{font-size:120.240000px;}
.fs14{font-size:145.911456px;}
.fsc{font-size:147.702000px;}
.fs6{font-size:180.000000px;}
.yd3{bottom:-331.759177px;}
.yd2{bottom:-315.040156px;}
.yd1{bottom:-293.761402px;}
.yd0{bottom:-275.218487px;}
.yf1{bottom:-263.059199px;}
.yf0{bottom:-237.220712px;}
.yef{bottom:-208.646386px;}
.yee{bottom:-194.663204px;}
.yed{bottom:-149.369857px;}
.yec{bottom:-132.650836px;}
.yeb{bottom:-115.931815px;}
.yea{bottom:-94.653061px;}
.ye9{bottom:-77.934040px;}
.ye8{bottom:-61.215019px;}
.ye6{bottom:-48.295775px;}
.ye7{bottom:-44.495998px;}
.y67{bottom:-34.930500px;}
.y194{bottom:-29.219975px;}
.y66{bottom:-15.873000px;}
.y193{bottom:-10.471072px;}
.y104{bottom:-2.144972px;}
.y0{bottom:0.000000px;}
.y8b{bottom:6.433819px;}
.y192{bottom:7.845164px;}
.y181{bottom:8.782050px;}
.y8d{bottom:9.430650px;}
.y4d{bottom:9.431250px;}
.y175{bottom:9.960633px;}
.ya2{bottom:14.392723px;}
.y103{bottom:14.574049px;}
.ye5{bottom:14.628540px;}
.y65{bottom:15.774000px;}
.y127{bottom:20.895633px;}
.y174{bottom:27.053674px;}
.y8a{bottom:27.978326px;}
.y14d{bottom:28.364525px;}
.ya1{bottom:31.111744px;}
.y102{bottom:35.852803px;}
.ye4{bottom:35.907294px;}
.y123{bottom:36.732540px;}
.y191{bottom:38.276075px;}
.y64{bottom:39.781500px;}
.y14c{bottom:40.857944px;}
.y173{bottom:44.146714px;}
.y126{bottom:46.425663px;}
.y89{bottom:47.982730px;}
.y7c{bottom:51.536250px;}
.ya0{bottom:52.390498px;}
.y101{bottom:54.395717px;}
.y7d{bottom:55.382685px;}
.y190{bottom:55.582755px;}
.ye3{bottom:57.186048px;}
.y172{bottom:61.239755px;}
.y63{bottom:63.789000px;}
.y14b{bottom:66.387973px;}
.y122{bottom:66.555005px;}
.y88{bottom:67.987135px;}
.y9f{bottom:70.933412px;}
.ye2{bottom:73.905069px;}
.ycf{bottom:74.209051px;}
.y14e{bottom:76.891755px;}
.y171{bottom:78.332796px;}
.y14a{bottom:78.881392px;}
.yc0{bottom:83.092700px;}
.y180{bottom:84.155025px;}
.y8e{bottom:84.460620px;}
.y48{bottom:85.039500px;}
.y1{bottom:86.040000px;}
.y62{bottom:87.796500px;}
.y18f{bottom:90.628781px;}
.y121{bottom:92.393492px;}
.yce{bottom:92.447983px;}
.y87{bottom:94.135024px;}
.ye1{bottom:95.183823px;}
.y170{bottom:95.425837px;}
.y148{bottom:104.411422px;}
.y8f{bottom:107.476530px;}
.ybf{bottom:108.931187px;}
.y17f{bottom:110.678089px;}
.y61{bottom:111.804000px;}
.y16f{bottom:112.518878px;}
.y86{bottom:114.139428px;}
.y7b{bottom:115.688041px;}
.ye0{bottom:116.462577px;}
.y147{bottom:116.904841px;}
.ycd{bottom:119.198417px;}
.y149{bottom:119.349205px;}
.y120{bottom:120.967819px;}
.y17e{bottom:125.141431px;}
.y182{bottom:125.185980px;}
.y4e{bottom:125.649000px;}
.y16e{bottom:129.611919px;}
.y90{bottom:132.335625px;}
.yd{bottom:132.516000px;}
.y11f{bottom:134.951000px;}
.y7a{bottom:135.692446px;}
.y60{bottom:135.811500px;}
.ycc{bottom:137.437349px;}
.ybe{bottom:137.505514px;}
.ydf{bottom:137.741331px;}
.y85{bottom:138.764139px;}
.y146{bottom:139.990506px;}
.y17d{bottom:141.182593px;}
.y16d{bottom:146.704960px;}
.ybd{bottom:151.488695px;}
.y79{bottom:155.696850px;}
.y18e{bottom:157.836387px;}
.y84{bottom:158.768543px;}
.y5f{bottom:159.819000px;}
.yde{bottom:160.539996px;}
.yc{bottom:160.950000px;}
.y16c{bottom:163.798001px;}
.ycb{bottom:164.187783px;}
.y144{bottom:165.520535px;}
.y17c{bottom:165.901760px;}
.ydd{bottom:174.523177px;}
.y18d{bottom:176.585290px;}
.y143{bottom:178.013954px;}
.y11e{bottom:180.244348px;}
.y145{bottom:180.458319px;}
.y16b{bottom:180.496587px;}
.yca{bottom:182.426715px;}
.y5e{bottom:183.826500px;}
.yb{bottom:189.390000px;}
.y77{bottom:192.930000px;}
.y18c{bottom:194.901526px;}
.y78{bottom:196.776285px;}
.ybc{bottom:196.782043px;}
.y11d{bottom:196.963369px;}
.yc9{bottom:200.665647px;}
.ydc{bottom:203.097504px;}
.y142{bottom:203.543984px;}
.y4b{bottom:213.463200px;}
.ybb{bottom:213.501064px;}
.y11c{bottom:213.682390px;}
.y141{bottom:216.037402px;}
.ydb{bottom:217.080685px;}
.yc8{bottom:218.904579px;}
.y169{bottom:224.281069px;}
.yf2{bottom:224.335950px;}
.yba{bottom:230.220085px;}
.ya{bottom:232.950000px;}
.y11b{bottom:234.961144px;}
.y168{bottom:236.377682px;}
.yc7{bottom:237.143511px;}
.y16a{bottom:238.744411px;}
.y140{bottom:241.567432px;}
.y68{bottom:245.616000px;}
.yda{bottom:245.655012px;}
.yb9{bottom:251.498839px;}
.y11a{bottom:251.680165px;}
.y13f{bottom:254.060851px;}
.y76{bottom:257.075132px;}
.yd9{bottom:259.638193px;}
.y166{bottom:261.096849px;}
.yb8{bottom:268.217860px;}
.y119{bottom:268.399186px;}
.y4a{bottom:268.948200px;}
.y165{bottom:273.193463px;}
.yc6{bottom:274.077348px;}
.y167{bottom:275.560191px;}
.y9{bottom:276.690000px;}
.y75{bottom:277.079537px;}
.y13e{bottom:279.590881px;}
.y117{bottom:281.318429px;}
.yb7{bottom:284.936881px;}
.y118{bottom:285.118207px;}
.yd8{bottom:288.212520px;}
.y13d{bottom:292.084299px;}
.y74{bottom:297.083941px;}
.yb5{bottom:297.856124px;}
.y164{bottom:297.912629px;}
.y8{bottom:298.470000px;}
.y3e{bottom:300.630000px;}
.yb6{bottom:301.655902px;}
.yd7{bottom:302.195701px;}
.y163{bottom:310.009243px;}
.y19c{bottom:311.721613px;}
.y13c{bottom:315.169964px;}
.y49{bottom:324.433200px;}
.y3d{bottom:325.470000px;}
.yd6{bottom:328.034188px;}
.y19b{bottom:331.912739px;}
.y162{bottom:334.728410px;}
.y13b{bottom:340.699994px;}
.y7{bottom:342.030000px;}
.y116{bottom:344.242745px;}
.yc5{bottom:344.905201px;}
.y161{bottom:346.825023px;}
.y19a{bottom:350.661642px;}
.y13a{bottom:353.193413px;}
.yd5{bottom:353.872675px;}
.yb4{bottom:360.780440px;}
.y6{bottom:364.035000px;}
.yc4{bottom:364.664044px;}
.y115{bottom:365.521499px;}
.y199{bottom:369.410545px;}
.y15f{bottom:371.544190px;}
.y3c{bottom:375.195000px;}
.y5a{bottom:375.828000px;}
.y139{bottom:378.723442px;}
.yd4{bottom:379.711162px;}
.yb3{bottom:382.059194px;}
.yc3{bottom:383.966913px;}
.y15e{bottom:386.007532px;}
.y114{bottom:386.800253px;}
.yc1{bottom:387.420450px;}
.y198{bottom:388.159448px;}
.y138{bottom:393.661226px;}
.y59{bottom:393.829500px;}
.y15d{bottom:398.104146px;}
.y3b{bottom:400.035000px;}
.y160{bottom:400.470875px;}
.yb2{bottom:403.337948px;}
.y113{bottom:403.519274px;}
.y100{bottom:403.823256px;}
.y137{bottom:406.154645px;}
.y5{bottom:407.595000px;}
.y22{bottom:418.575000px;}
.yb1{bottom:420.056969px;}
.y9e{bottom:420.360951px;}
.yff{bottom:422.062188px;}
.y15c{bottom:422.823313px;}
.y112{bottom:424.798028px;}
.y3a{bottom:424.875000px;}
.y4{bottom:429.375000px;}
.y58{bottom:430.279500px;}
.y136{bottom:431.684674px;}
.y15b{bottom:437.286655px;}
.y9d{bottom:438.599883px;}
.yb0{bottom:441.335723px;}
.y111{bottom:446.076782px;}
.y135{bottom:446.622457px;}
.yfe{bottom:448.812622px;}
.y15a{bottom:449.383269px;}
.y39{bottom:449.715000px;}
.yc2{bottom:458.746534px;}
.y134{bottom:461.560241px;}
.yaf{bottom:462.614477px;}
.y9c{bottom:465.350317px;}
.yfd{bottom:467.051554px;}
.y110{bottom:467.355536px;}
.y159{bottom:474.102436px;}
.y38{bottom:474.555000px;}
.y73{bottom:477.868246px;}
.y133{bottom:480.571965px;}
.y18b{bottom:482.913519px;}
.y9b{bottom:483.589249px;}
.yae{bottom:483.893231px;}
.y17b{bottom:484.358260px;}
.y158{bottom:488.565778px;}
.y10f{bottom:490.154201px;}
.y132{bottom:493.065384px;}
.yfc{bottom:493.801987px;}
.y72{bottom:497.872650px;}
.y37{bottom:499.395000px;}
.y17a{bottom:500.136452px;}
.y57{bottom:500.157000px;}
.y18a{bottom:501.662422px;}
.y10e{bottom:504.137382px;}
.y157{bottom:504.606939px;}
.yad{bottom:506.691896px;}
.y9a{bottom:510.339682px;}
.yfb{bottom:512.040919px;}
.y130{bottom:518.595413px;}
.y56{bottom:519.660000px;}
.yac{bottom:520.675077px;}
.y179{bottom:523.277799px;}
.y36{bottom:524.235000px;}
.y189{bottom:524.737995px;}
.y156{bottom:526.959377px;}
.y99{bottom:528.578614px;}
.yfa{bottom:530.279851px;}
.y71{bottom:530.951700px;}
.y12f{bottom:531.088832px;}
.y10d{bottom:532.711709px;}
.y131{bottom:533.533197px;}
.y55{bottom:539.163000px;}
.y188{bottom:543.486897px;}
.y10c{bottom:546.694890px;}
.y98{bottom:546.817546px;}
.yf9{bottom:548.518783px;}
.y35{bottom:549.075000px;}
.yab{bottom:549.249404px;}
.y154{bottom:551.678544px;}
.y178{bottom:555.228637px;}
.y12e{bottom:556.618862px;}
.y54{bottom:558.666000px;}
.y83{bottom:559.567448px;}
.y187{bottom:562.235800px;}
.yaa{bottom:563.232585px;}
.y153{bottom:563.775158px;}
.y97{bottom:565.056478px;}
.y155{bottom:566.141887px;}
.yf8{bottom:566.757715px;}
.y12c{bottom:571.556645px;}
.y10b{bottom:575.269217px;}
.y82{bottom:578.031750px;}
.y53{bottom:578.169000px;}
.y1a0{bottom:578.476530px;}
.y70{bottom:578.787040px;}
.y5d{bottom:582.978000px;}
.y96{bottom:583.295410px;}
.y12b{bottom:584.050064px;}
.y186{bottom:585.311373px;}
.y152{bottom:586.127596px;}
.y12d{bottom:586.494428px;}
.y10a{bottom:589.252398px;}
.ya9{bottom:591.806912px;}
.y197{bottom:593.964713px;}
.y19f{bottom:596.476530px;}
.y52{bottom:597.226500px;}
.y34{bottom:598.755000px;}
.y6f{bottom:598.791445px;}
.y5c{bottom:600.979500px;}
.yf7{bottom:603.691552px;}
.y185{bottom:604.060276px;}
.ya8{bottom:605.790093px;}
.y12a{bottom:607.135729px;}
.y151{bottom:608.480034px;}
.y196{bottom:612.713616px;}
.y19e{bottom:615.226530px;}
.y81{bottom:615.418650px;}
.y177{bottom:616.500615px;}
.y109{bottom:617.826725px;}
.y6e{bottom:618.795849px;}
.y95{bottom:620.229247px;}
.y33{bottom:623.625000px;}
.y51{bottom:628.873500px;}
.y129{bottom:630.221394px;}
.y108{bottom:631.809906px;}
.y150{bottom:633.199201px;}
.y176{bottom:633.593656px;}
.ya7{bottom:634.364420px;}
.y5b{bottom:637.429500px;}
.y6d{bottom:638.343300px;}
.y184{bottom:640.548526px;}
.y195{bottom:643.721417px;}
.y50{bottom:646.875000px;}
.ya6{bottom:648.347601px;}
.y32{bottom:648.465000px;}
.y19d{bottom:653.904030px;}
.y128{bottom:655.751424px;}
.y125{bottom:657.516798px;}
.y107{bottom:657.648393px;}
.ya5{bottom:674.186088px;}
.yf6{bottom:674.519405px;}
.y106{bottom:683.486880px;}
.y6c{bottom:684.192255px;}
.y80{bottom:687.104845px;}
.y94{bottom:691.057100px;}
.yf5{bottom:694.278248px;}
.y31{bottom:698.145000px;}
.y6a{bottom:698.808750px;}
.y14f{bottom:699.204636px;}
.ya4{bottom:700.024575px;}
.y6b{bottom:702.655035px;}
.y7f{bottom:707.109249px;}
.y105{bottom:709.325367px;}
.y93{bottom:710.815943px;}
.yf4{bottom:713.581118px;}
.y183{bottom:720.159252px;}
.y4f{bottom:720.229500px;}
.y30{bottom:722.985000px;}
.y124{bottom:723.922035px;}
.ya3{bottom:725.863062px;}
.y7e{bottom:726.656700px;}
.y92{bottom:730.118813px;}
.y3{bottom:740.085000px;}
.y2f{bottom:747.825000px;}
.y21{bottom:760.425000px;}
.y2e{bottom:772.665000px;}
.y2{bottom:781.485000px;}
.y20{bottom:785.265000px;}
.yf3{bottom:788.360739px;}
.y69{bottom:802.353750px;}
.y2d{bottom:804.705000px;}
.y91{bottom:804.898434px;}
.y1f{bottom:810.105000px;}
.y4c{bottom:813.322500px;}
.y8c{bottom:813.323100px;}
.y1e{bottom:834.945000px;}
.y1a9{bottom:846.645000px;}
.y1d{bottom:859.785000px;}
.y2c{bottom:862.125000px;}
.y1a8{bottom:870.405000px;}
.y1c{bottom:884.670000px;}
.y2b{bottom:887.010000px;}
.y1a7{bottom:894.210000px;}
.y47{bottom:906.990000px;}
.y1b{bottom:909.510000px;}
.y2a{bottom:911.850000px;}
.y14{bottom:913.290000px;}
.y1a6{bottom:917.970000px;}
.y46{bottom:931.830000px;}
.y1a{bottom:934.350000px;}
.y29{bottom:936.690000px;}
.y1a5{bottom:941.910000px;}
.y13{bottom:942.990000px;}
.y45{bottom:956.670000px;}
.y19{bottom:959.190000px;}
.y28{bottom:961.530000px;}
.y1a4{bottom:965.670000px;}
.y12{bottom:972.690000px;}
.y44{bottom:981.510000px;}
.y18{bottom:984.030000px;}
.y27{bottom:986.370000px;}
.y1a3{bottom:989.430000px;}
.y11{bottom:993.390000px;}
.y43{bottom:1006.350000px;}
.y17{bottom:1008.870000px;}
.y26{bottom:1011.210000px;}
.y1a2{bottom:1013.190000px;}
.y10{bottom:1023.090000px;}
.y42{bottom:1031.190000px;}
.y16{bottom:1033.710000px;}
.y25{bottom:1036.050000px;}
.y1a1{bottom:1037.130000px;}
.yf{bottom:1052.790000px;}
.y41{bottom:1056.030000px;}
.y24{bottom:1060.890000px;}
.y15{bottom:1072.770000px;}
.y40{bottom:1080.870000px;}
.ye{bottom:1089.150000px;}
.y23{bottom:1107.150000px;}
.y3f{bottom:1112.910000px;}
.hd{height:31.054500px;}
.h1f{height:31.054680px;}
.h3a{height:43.968561px;}
.h3d{height:44.441906px;}
.h33{height:45.410861px;}
.h36{height:45.899734px;}
.h3e{height:48.249710px;}
.h21{height:48.312000px;}
.h3f{height:48.365417px;}
.h5{height:48.656250px;}
.h4c{height:50.820000px;}
.h29{height:50.825824px;}
.h2b{height:51.372992px;}
.h18{height:51.449614px;}
.he{height:52.417969px;}
.h48{height:52.923826px;}
.h46{height:53.050742px;}
.h3b{height:53.435476px;}
.h47{height:53.621862px;}
.h12{height:55.044000px;}
.h11{height:55.176000px;}
.h34{height:55.188319px;}
.h37{height:55.677192px;}
.h24{height:55.774654px;}
.h3c{height:55.802204px;}
.h25{height:55.908406px;}
.h19{height:56.459131px;}
.h1a{height:56.594525px;}
.h35{height:57.632684px;}
.h49{height:57.735083px;}
.h41{height:61.382425px;}
.h1b{height:61.591734px;}
.h28{height:61.769183px;}
.h32{height:63.395952px;}
.h2c{height:64.505023px;}
.h9{height:64.546875px;}
.h40{height:65.795059px;}
.h7{height:65.884219px;}
.h4{height:69.086250px;}
.h14{height:70.026000px;}
.h2{height:70.664062px;}
.h27{height:70.955525px;}
.h1e{height:71.826305px;}
.h45{height:72.168854px;}
.h13{height:75.060000px;}
.h4b{height:75.360000px;}
.h2a{height:75.448382px;}
.h26{height:76.056346px;}
.h1d{height:76.989542px;}
.h39{height:78.954071px;}
.h31{height:81.544001px;}
.h44{height:86.602625px;}
.h10{height:90.072000px;}
.h23{height:91.267616px;}
.h16{height:92.387351px;}
.h3{height:99.874688px;}
.h8{height:106.795195px;}
.h6{height:121.179375px;}
.h2d{height:133.448186px;}
.h17{height:134.531614px;}
.h1c{height:134.532214px;}
.hc{height:141.300000px;}
.h2f{height:163.084500px;}
.h2e{height:398.793300px;}
.h15{height:562.144500px;}
.h22{height:672.724950px;}
.hf{height:682.111500px;}
.h43{height:682.274700px;}
.h20{height:723.000000px;}
.h42{height:723.305550px;}
.hb{height:727.227000px;}
.h4a{height:727.805550px;}
.h38{height:738.716550px;}
.h30{height:770.728050px;}
.ha{height:892.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:46.579095px;}
.w6{width:46.579500px;}
.w5{width:256.611000px;}
.wa{width:256.611300px;}
.w9{width:337.576200px;}
.w4{width:337.576500px;}
.we{width:539.328600px;}
.wf{width:556.989450px;}
.w7{width:574.011000px;}
.wd{width:604.219500px;}
.w8{width:608.439000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w11{width:1041.406200px;}
.w10{width:1063.449150px;}
.wc{width:1097.726850px;}
.w12{width:1102.532400px;}
.w14{width:1107.225300px;}
.w13{width:1112.943900px;}
.w3{width:1119.741000px;}
.w2{width:1263.000000px;}
.x36{left:-616.732605px;}
.x34{left:-615.516676px;}
.x40{left:-608.168069px;}
.x3e{left:-606.952140px;}
.x35{left:-595.301860px;}
.x37{left:-590.742127px;}
.x3f{left:-586.737324px;}
.x41{left:-582.177591px;}
.x16{left:-580.245450px;}
.x14{left:-579.045450px;}
.x38{left:-564.447667px;}
.x15{left:-559.092450px;}
.x42{left:-555.883130px;}
.x0{left:0.000000px;}
.xf{left:5.027850px;}
.x17{left:7.604550px;}
.x43{left:13.475530px;}
.x53{left:14.898105px;}
.x12{left:16.537950px;}
.x2b{left:21.636970px;}
.x29{left:22.852899px;}
.x1a{left:25.654500px;}
.x18{left:28.754550px;}
.x39{left:31.205454px;}
.x1e{left:33.654900px;}
.x54{left:35.233454px;}
.x44{left:39.769990px;}
.x2a{left:43.067715px;}
.x3a{left:44.124697px;}
.x1d{left:46.117350px;}
.x2c{left:47.627448px;}
.x45{left:52.689234px;}
.x1b{left:55.964100px;}
.x1f{left:59.199757px;}
.x28{left:65.985255px;}
.x20{left:68.272650px;}
.x4d{left:70.559917px;}
.xa{left:71.629500px;}
.x2d{left:73.921909px;}
.x13{left:76.039500px;}
.x57{left:77.887365px;}
.xe{left:80.011500px;}
.x3b{left:82.578446px;}
.x26{left:85.039380px;}
.x46{left:91.142982px;}
.x4{left:95.796000px;}
.x48{left:99.773430px;}
.x4c{left:110.796930px;}
.x21{left:134.892300px;}
.x1c{left:136.430902px;}
.x7{left:148.896000px;}
.xb{left:154.758000px;}
.x3d{left:159.181960px;}
.x8{left:166.890000px;}
.x3c{left:172.101204px;}
.x47{left:180.665740px;}
.x58{left:191.370000px;}
.x2{left:194.430000px;}
.x4e{left:197.311389px;}
.xc{left:216.723000px;}
.x5{left:255.315000px;}
.xd{left:309.783000px;}
.x3{left:345.315000px;}
.x1{left:455.505000px;}
.x10{left:503.194500px;}
.x50{left:536.279539px;}
.x4f{left:554.818914px;}
.x51{left:558.763462px;}
.x49{left:584.604395px;}
.x55{left:588.758756px;}
.x56{left:600.440765px;}
.x27{left:603.165420px;}
.x4a{left:612.578789px;}
.x19{left:622.500000px;}
.x24{left:627.385500px;}
.x2e{left:643.280569px;}
.x22{left:649.079100px;}
.x23{left:662.161507px;}
.x2f{left:669.575029px;}
.x25{left:675.260837px;}
.x30{left:682.494273px;}
.x52{left:712.600830px;}
.x31{left:720.948021px;}
.x4b{left:743.488090px;}
.x9{left:768.780000px;}
.x6{left:777.780000px;}
.x33{left:797.551536px;}
.x32{left:810.470779px;}
.x11{left:1136.409000px;}
@media print{
.v5{vertical-align:-4.828374pt;}
.v8{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.600000pt;}
.v7{vertical-align:8.691074pt;}
.v3{vertical-align:9.727430pt;}
.v6{vertical-align:13.519448pt;}
.v4{vertical-align:72.955728pt;}
.v2{vertical-align:73.850667pt;}
.ls23{letter-spacing:-37.302441pt;}
.ls2a{letter-spacing:-36.850208pt;}
.ls22{letter-spacing:-36.367467pt;}
.ls33{letter-spacing:-34.966672pt;}
.ls32{letter-spacing:-31.878492pt;}
.ls2f{letter-spacing:-15.184755pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls1d{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.097067pt;}
.ls21{letter-spacing:-0.012800pt;}
.ls5{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.012800pt;}
.ls18{letter-spacing:0.106667pt;}
.ls12{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.232960pt;}
.ls1a{letter-spacing:0.234667pt;}
.ls2c{letter-spacing:0.241419pt;}
.lsa{letter-spacing:0.251307pt;}
.ls31{letter-spacing:0.257126pt;}
.ls26{letter-spacing:0.270206pt;}
.ls1{letter-spacing:0.271360pt;}
.ls14{letter-spacing:0.272640pt;}
.ls20{letter-spacing:0.300875pt;}
.ls9{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.373333pt;}
.lsc{letter-spacing:0.384000pt;}
.ls11{letter-spacing:0.640000pt;}
.ls0{letter-spacing:0.656640pt;}
.ls19{letter-spacing:1.280000pt;}
.ls1b{letter-spacing:2.560000pt;}
.lsb{letter-spacing:7.040000pt;}
.lse{letter-spacing:8.960000pt;}
.lsf{letter-spacing:9.600000pt;}
.ls10{letter-spacing:10.880000pt;}
.ls2d{letter-spacing:11.443247pt;}
.ls2e{letter-spacing:11.636382pt;}
.ls15{letter-spacing:12.160000pt;}
.ls28{letter-spacing:13.023948pt;}
.ls1c{letter-spacing:16.640000pt;}
.lsd{letter-spacing:17.920000pt;}
.ls4{letter-spacing:20.751360pt;}
.ls16{letter-spacing:23.056640pt;}
.ls27{letter-spacing:24.858989pt;}
.ls17{letter-spacing:26.240000pt;}
.ls25{letter-spacing:37.072318pt;}
.ls30{letter-spacing:47.498200pt;}
.ls2b{letter-spacing:49.056284pt;}
.ls1f{letter-spacing:79.058485pt;}
.ls1e{letter-spacing:81.793952pt;}
.ls29{letter-spacing:116.469767pt;}
.ls2{letter-spacing:133.551360pt;}
.ws8f{word-spacing:-106.880000pt;}
.ws90{word-spacing:-85.120000pt;}
.ws2b{word-spacing:-73.831106pt;}
.ws41{word-spacing:-73.130822pt;}
.ws19{word-spacing:-71.980800pt;}
.ws7e{word-spacing:-69.208258pt;}
.ws57{word-spacing:-65.200437pt;}
.ws67{word-spacing:-63.129596pt;}
.ws39{word-spacing:-61.813187pt;}
.ws46{word-spacing:-61.120688pt;}
.ws26{word-spacing:-60.376000pt;}
.ws23{word-spacing:-60.264000pt;}
.ws3a{word-spacing:-60.174933pt;}
.ws4a{word-spacing:-59.445408pt;}
.ws29{word-spacing:-58.666667pt;}
.ws7f{word-spacing:-58.050449pt;}
.ws86{word-spacing:-57.996606pt;}
.ws81{word-spacing:-56.406956pt;}
.ws2d{word-spacing:-54.704533pt;}
.ws4f{word-spacing:-54.041280pt;}
.ws58{word-spacing:-53.112118pt;}
.ws7b{word-spacing:-52.804348pt;}
.ws7c{word-spacing:-51.425217pt;}
.ws32{word-spacing:-49.253694pt;}
.ws5f{word-spacing:-48.283744pt;}
.ws6b{word-spacing:-46.750197pt;}
.ws8a{word-spacing:-46.169606pt;}
.ws3b{word-spacing:-45.835247pt;}
.ws30{word-spacing:-45.666757pt;}
.ws3c{word-spacing:-45.630652pt;}
.ws3f{word-spacing:-45.534372pt;}
.ws2f{word-spacing:-45.480215pt;}
.ws33{word-spacing:-45.432075pt;}
.ws38{word-spacing:-45.426057pt;}
.ws3d{word-spacing:-45.420040pt;}
.ws36{word-spacing:-45.408005pt;}
.ws37{word-spacing:-45.401987pt;}
.ws31{word-spacing:-45.395970pt;}
.ws3e{word-spacing:-45.389952pt;}
.ws35{word-spacing:-45.383935pt;}
.ws34{word-spacing:-45.119165pt;}
.ws44{word-spacing:-45.113120pt;}
.ws49{word-spacing:-44.964507pt;}
.ws43{word-spacing:-44.928839pt;}
.ws4c{word-spacing:-44.881283pt;}
.ws47{word-spacing:-44.851560pt;}
.ws4b{word-spacing:-44.845616pt;}
.ws48{word-spacing:-44.833727pt;}
.ws1f{word-spacing:-44.668800pt;}
.ws28{word-spacing:-44.627733pt;}
.ws45{word-spacing:-44.572167pt;}
.ws21{word-spacing:-44.522133pt;}
.ws2a{word-spacing:-44.422400pt;}
.ws1d{word-spacing:-44.340267pt;}
.ws22{word-spacing:-44.293333pt;}
.ws1a{word-spacing:-44.287467pt;}
.ws1b{word-spacing:-44.281600pt;}
.ws25{word-spacing:-44.264000pt;}
.ws24{word-spacing:-44.258133pt;}
.ws1e{word-spacing:-44.252267pt;}
.ws20{word-spacing:-44.134933pt;}
.ws27{word-spacing:-43.988267pt;}
.ws82{word-spacing:-42.874927pt;}
.ws85{word-spacing:-42.807239pt;}
.ws8c{word-spacing:-42.667760pt;}
.ws84{word-spacing:-42.632377pt;}
.ws88{word-spacing:-42.581611pt;}
.ws80{word-spacing:-42.559048pt;}
.ws87{word-spacing:-42.553407pt;}
.ws89{word-spacing:-42.547254pt;}
.ws8b{word-spacing:-42.542126pt;}
.ws2c{word-spacing:-41.028400pt;}
.ws56{word-spacing:-41.017332pt;}
.ws50{word-spacing:-40.963290pt;}
.ws51{word-spacing:-40.909249pt;}
.ws4e{word-spacing:-40.855208pt;}
.ws54{word-spacing:-40.801166pt;}
.ws55{word-spacing:-40.639043pt;}
.ws53{word-spacing:-40.585001pt;}
.ws4d{word-spacing:-40.530960pt;}
.ws52{word-spacing:-40.422877pt;}
.ws77{word-spacing:-39.155160pt;}
.ws73{word-spacing:-39.026597pt;}
.ws72{word-spacing:-38.867179pt;}
.ws78{word-spacing:-38.826506pt;}
.ws7d{word-spacing:-38.820896pt;}
.ws74{word-spacing:-38.815754pt;}
.ws75{word-spacing:-38.805469pt;}
.ws76{word-spacing:-38.800326pt;}
.ws79{word-spacing:-38.788639pt;}
.ws7a{word-spacing:-38.784899pt;}
.ws62{word-spacing:-36.647362pt;}
.ws60{word-spacing:-36.599078pt;}
.ws66{word-spacing:-36.550794pt;}
.ws61{word-spacing:-36.502510pt;}
.ws65{word-spacing:-36.454227pt;}
.ws64{word-spacing:-36.357659pt;}
.ws63{word-spacing:-36.309375pt;}
.ws5e{word-spacing:-36.261092pt;}
.ws5c{word-spacing:-36.212808pt;}
.ws5d{word-spacing:-36.116241pt;}
.ws11{word-spacing:-36.096000pt;}
.ws6d{word-spacing:-35.436650pt;}
.ws6f{word-spacing:-35.249649pt;}
.ws6e{word-spacing:-35.156148pt;}
.ws6c{word-spacing:-35.109398pt;}
.ws69{word-spacing:-35.062648pt;}
.ws6a{word-spacing:-34.969148pt;}
.ws70{word-spacing:-34.735397pt;}
.ws7{word-spacing:-30.598400pt;}
.ws6{word-spacing:-30.279680pt;}
.ws16{word-spacing:-27.040000pt;}
.ws0{word-spacing:-23.663360pt;}
.ws5a{word-spacing:-23.443206pt;}
.ws59{word-spacing:-22.960369pt;}
.ws12{word-spacing:-21.280000pt;}
.ws14{word-spacing:-16.640000pt;}
.ws1{word-spacing:-16.368640pt;}
.ws8e{word-spacing:-16.309333pt;}
.ws2{word-spacing:-16.271573pt;}
.ws15{word-spacing:-16.128000pt;}
.ws13{word-spacing:-16.000000pt;}
.ws17{word-spacing:-15.808000pt;}
.ws4{word-spacing:-13.440000pt;}
.wsc{word-spacing:-12.613333pt;}
.ws9{word-spacing:-1.013333pt;}
.wsf{word-spacing:-0.640000pt;}
.wsd{word-spacing:-0.538667pt;}
.ws10{word-spacing:-0.480000pt;}
.ws8{word-spacing:-0.405333pt;}
.wse{word-spacing:-0.373333pt;}
.ws3{word-spacing:0.000000pt;}
.wsa{word-spacing:0.320000pt;}
.ws8d{word-spacing:16.682667pt;}
.ws40{word-spacing:35.561600pt;}
.ws18{word-spacing:35.584000pt;}
.wsb{word-spacing:47.920000pt;}
.ws91{word-spacing:60.394667pt;}
.ws5{word-spacing:73.898667pt;}
.ws71{word-spacing:75.771317pt;}
.ws83{word-spacing:83.111547pt;}
.ws1c{word-spacing:86.457067pt;}
.ws42{word-spacing:87.588485pt;}
.ws2e{word-spacing:88.679799pt;}
.ws68{word-spacing:383.912621pt;}
.ws5b{word-spacing:396.506106pt;}
._18{margin-left:-88.921600pt;}
._7{margin-left:-47.914880pt;}
._33{margin-left:-5.647402pt;}
._9{margin-left:-3.964373pt;}
._12{margin-left:-3.008213pt;}
._1{margin-left:-1.408736pt;}
._0{width:1.127425pt;}
._d{width:2.450038pt;}
._6{width:3.414981pt;}
._5{width:5.086058pt;}
._c{width:6.506667pt;}
._b{width:7.691402pt;}
._10{width:8.640000pt;}
._f{width:9.931402pt;}
._a{width:11.648000pt;}
._8{width:12.892800pt;}
._11{width:13.978709pt;}
._1a{width:15.286150pt;}
._e{width:17.664000pt;}
._15{width:18.886091pt;}
._3{width:19.901322pt;}
._4{width:21.310117pt;}
._16{width:22.954667pt;}
._17{width:24.128000pt;}
._13{width:25.322667pt;}
._14{width:26.232575pt;}
._27{width:48.670014pt;}
._1f{width:49.973675pt;}
._21{width:59.823559pt;}
._28{width:60.934085pt;}
._1e{width:74.839803pt;}
._26{width:93.042775pt;}
._2d{width:112.434225pt;}
._20{width:128.241624pt;}
._2c{width:130.526551pt;}
._2b{width:134.126316pt;}
._25{width:144.609813pt;}
._24{width:159.143220pt;}
._23{width:161.847110pt;}
._30{width:167.879959pt;}
._22{width:168.896537pt;}
._29{width:172.131547pt;}
._2e{width:188.356545pt;}
._2f{width:201.633601pt;}
._31{width:234.078238pt;}
._2{width:312.051627pt;}
._2a{width:2357.438541pt;}
._1d{width:2434.769594pt;}
._32{width:3009.959256pt;}
._19{width:3130.540800pt;}
._1c{width:3143.496953pt;}
._1b{width:3211.018797pt;}
.fs5{font-size:42.880000pt;}
.fs1a{font-size:46.750197pt;}
.fs17{font-size:48.283744pt;}
.fs19{font-size:51.425217pt;}
.fs16{font-size:53.112118pt;}
.fs4{font-size:53.120000pt;}
.fs13{font-size:54.041280pt;}
.fsd{font-size:54.704533pt;}
.fs1d{font-size:56.406956pt;}
.fs8{font-size:58.666667pt;}
.fs2{font-size:58.880000pt;}
.fs11{font-size:59.445408pt;}
.fsb{font-size:60.174933pt;}
.fs1f{font-size:61.534861pt;}
.fs0{font-size:64.000000pt;}
.fse{font-size:65.645333pt;}
.fs1b{font-size:70.125296pt;}
.fs1e{font-size:76.918576pt;}
.fs9{font-size:80.000000pt;}
.fs12{font-size:81.061920pt;}
.fsf{font-size:82.056533pt;}
.fs18{font-size:84.150355pt;}
.fs1{font-size:85.120000pt;}
.fs20{font-size:85.333333pt;}
.fs15{font-size:86.910739pt;}
.fs1c{font-size:92.302291pt;}
.fs7{font-size:96.000000pt;}
.fs10{font-size:97.274304pt;}
.fsa{font-size:98.467733pt;}
.fs3{font-size:106.880000pt;}
.fs14{font-size:129.699072pt;}
.fsc{font-size:131.290667pt;}
.fs6{font-size:160.000000pt;}
.yd3{bottom:-294.897046pt;}
.yd2{bottom:-280.035694pt;}
.yd1{bottom:-261.121246pt;}
.yd0{bottom:-244.638655pt;}
.yf1{bottom:-233.830399pt;}
.yf0{bottom:-210.862855pt;}
.yef{bottom:-185.463454pt;}
.yee{bottom:-173.033959pt;}
.yed{bottom:-132.773206pt;}
.yec{bottom:-117.911854pt;}
.yeb{bottom:-103.050502pt;}
.yea{bottom:-84.136054pt;}
.ye9{bottom:-69.274702pt;}
.ye8{bottom:-54.413350pt;}
.ye6{bottom:-42.929578pt;}
.ye7{bottom:-39.551998pt;}
.y67{bottom:-31.049333pt;}
.y194{bottom:-25.973311pt;}
.y66{bottom:-14.109333pt;}
.y193{bottom:-9.307620pt;}
.y104{bottom:-1.906642pt;}
.y0{bottom:0.000000pt;}
.y8b{bottom:5.718950pt;}
.y192{bottom:6.973479pt;}
.y181{bottom:7.806267pt;}
.y8d{bottom:8.382800pt;}
.y4d{bottom:8.383333pt;}
.y175{bottom:8.853896pt;}
.ya2{bottom:12.793531pt;}
.y103{bottom:12.954710pt;}
.ye5{bottom:13.003147pt;}
.y65{bottom:14.021333pt;}
.y127{bottom:18.573896pt;}
.y174{bottom:24.047710pt;}
.y8a{bottom:24.869623pt;}
.y14d{bottom:25.212911pt;}
.ya1{bottom:27.654883pt;}
.y102{bottom:31.869158pt;}
.ye4{bottom:31.917595pt;}
.y123{bottom:32.651147pt;}
.y191{bottom:34.023178pt;}
.y64{bottom:35.361333pt;}
.y14c{bottom:36.318172pt;}
.y173{bottom:39.241524pt;}
.y126{bottom:41.267256pt;}
.y89{bottom:42.651316pt;}
.y7c{bottom:45.810000pt;}
.ya0{bottom:46.569331pt;}
.y101{bottom:48.351749pt;}
.y7d{bottom:49.229053pt;}
.y190{bottom:49.406893pt;}
.ye3{bottom:50.832043pt;}
.y172{bottom:54.435338pt;}
.y63{bottom:56.701333pt;}
.y14b{bottom:59.011532pt;}
.y122{bottom:59.160005pt;}
.y88{bottom:60.433009pt;}
.y9f{bottom:63.051922pt;}
.ye2{bottom:65.693395pt;}
.ycf{bottom:65.963601pt;}
.y14e{bottom:68.348227pt;}
.y171{bottom:69.629152pt;}
.y14a{bottom:70.116793pt;}
.yc0{bottom:73.860178pt;}
.y180{bottom:74.804467pt;}
.y8e{bottom:75.076107pt;}
.y48{bottom:75.590667pt;}
.y1{bottom:76.480000pt;}
.y62{bottom:78.041333pt;}
.y18f{bottom:80.558917pt;}
.y121{bottom:82.127549pt;}
.yce{bottom:82.175985pt;}
.y87{bottom:83.675577pt;}
.ye1{bottom:84.607843pt;}
.y170{bottom:84.822966pt;}
.y148{bottom:92.810153pt;}
.y8f{bottom:95.534693pt;}
.ybf{bottom:96.827722pt;}
.y17f{bottom:98.380524pt;}
.y61{bottom:99.381333pt;}
.y16f{bottom:100.016780pt;}
.y86{bottom:101.457269pt;}
.y7b{bottom:102.833814pt;}
.ye0{bottom:103.522291pt;}
.y147{bottom:103.915414pt;}
.ycd{bottom:105.954149pt;}
.y149{bottom:106.088182pt;}
.y120{bottom:107.526950pt;}
.y17e{bottom:111.236828pt;}
.y182{bottom:111.276427pt;}
.y4e{bottom:111.688000pt;}
.y16e{bottom:115.210595pt;}
.y90{bottom:117.631667pt;}
.yd{bottom:117.792000pt;}
.y11f{bottom:119.956445pt;}
.y7a{bottom:120.615507pt;}
.y60{bottom:120.721333pt;}
.ycc{bottom:122.166533pt;}
.ybe{bottom:122.227123pt;}
.ydf{bottom:122.436739pt;}
.y85{bottom:123.345901pt;}
.y146{bottom:124.436005pt;}
.y17d{bottom:125.495638pt;}
.y16d{bottom:130.404409pt;}
.ybd{bottom:134.656618pt;}
.y79{bottom:138.397200pt;}
.y18e{bottom:140.299011pt;}
.y84{bottom:141.127594pt;}
.y5f{bottom:142.061333pt;}
.yde{bottom:142.702219pt;}
.yc{bottom:143.066667pt;}
.y16c{bottom:145.598223pt;}
.ycb{bottom:145.944696pt;}
.y144{bottom:147.129365pt;}
.y17c{bottom:147.468231pt;}
.ydd{bottom:155.131713pt;}
.y18d{bottom:156.964702pt;}
.y143{bottom:158.234626pt;}
.y11e{bottom:160.217198pt;}
.y145{bottom:160.407394pt;}
.y16b{bottom:160.441411pt;}
.yca{bottom:162.157080pt;}
.y5e{bottom:163.401333pt;}
.yb{bottom:168.346667pt;}
.y77{bottom:171.493333pt;}
.y18c{bottom:173.245801pt;}
.y78{bottom:174.912253pt;}
.ybc{bottom:174.917371pt;}
.y11d{bottom:175.078550pt;}
.yc9{bottom:178.369464pt;}
.ydc{bottom:180.531115pt;}
.y142{bottom:180.927986pt;}
.y4b{bottom:189.745067pt;}
.ybb{bottom:189.778723pt;}
.y11c{bottom:189.939902pt;}
.y141{bottom:192.033247pt;}
.ydb{bottom:192.960609pt;}
.yc8{bottom:194.581848pt;}
.y169{bottom:199.360950pt;}
.yf2{bottom:199.409733pt;}
.yba{bottom:204.640075pt;}
.ya{bottom:207.066667pt;}
.y11b{bottom:208.854350pt;}
.y168{bottom:210.113495pt;}
.yc7{bottom:210.794232pt;}
.y16a{bottom:212.217254pt;}
.y140{bottom:214.726606pt;}
.y68{bottom:218.325333pt;}
.yda{bottom:218.360011pt;}
.yb9{bottom:223.554523pt;}
.y11a{bottom:223.715702pt;}
.y13f{bottom:225.831867pt;}
.y76{bottom:228.511229pt;}
.yd9{bottom:230.789505pt;}
.y166{bottom:232.086088pt;}
.yb8{bottom:238.415875pt;}
.y119{bottom:238.577054pt;}
.y4a{bottom:239.065067pt;}
.y165{bottom:242.838633pt;}
.yc6{bottom:243.624309pt;}
.y167{bottom:244.942392pt;}
.y9{bottom:245.946667pt;}
.y75{bottom:246.292922pt;}
.y13e{bottom:248.525227pt;}
.y117{bottom:250.060826pt;}
.yb7{bottom:253.277227pt;}
.y118{bottom:253.438406pt;}
.yd8{bottom:256.188907pt;}
.y13d{bottom:259.630488pt;}
.y74{bottom:264.074614pt;}
.yb5{bottom:264.760999pt;}
.y164{bottom:264.811226pt;}
.y8{bottom:265.306667pt;}
.y3e{bottom:267.226667pt;}
.yb6{bottom:268.138579pt;}
.yd7{bottom:268.618401pt;}
.y163{bottom:275.563771pt;}
.y19c{bottom:277.085878pt;}
.y13c{bottom:280.151079pt;}
.y49{bottom:288.385067pt;}
.y3d{bottom:289.306667pt;}
.yd6{bottom:291.585945pt;}
.y19b{bottom:295.033546pt;}
.y162{bottom:297.536364pt;}
.y13b{bottom:302.844439pt;}
.y7{bottom:304.026667pt;}
.y116{bottom:305.993551pt;}
.yc5{bottom:306.582401pt;}
.y161{bottom:308.288910pt;}
.y19a{bottom:311.699238pt;}
.y13a{bottom:313.949700pt;}
.yd5{bottom:314.553489pt;}
.yb4{bottom:320.693724pt;}
.y6{bottom:323.586667pt;}
.yc4{bottom:324.145817pt;}
.y115{bottom:324.907999pt;}
.y199{bottom:328.364929pt;}
.y15f{bottom:330.261502pt;}
.y3c{bottom:333.506667pt;}
.y5a{bottom:334.069333pt;}
.y139{bottom:336.643060pt;}
.yd4{bottom:337.521033pt;}
.yb3{bottom:339.608172pt;}
.yc3{bottom:341.303923pt;}
.y15e{bottom:343.117807pt;}
.y114{bottom:343.822447pt;}
.yc1{bottom:344.373733pt;}
.y198{bottom:345.030620pt;}
.y138{bottom:349.921090pt;}
.y59{bottom:350.070667pt;}
.y15d{bottom:353.870352pt;}
.y3b{bottom:355.586667pt;}
.y160{bottom:355.974111pt;}
.yb2{bottom:358.522620pt;}
.y113{bottom:358.683799pt;}
.y100{bottom:358.954005pt;}
.y137{bottom:361.026351pt;}
.y5{bottom:362.306667pt;}
.y22{bottom:372.066667pt;}
.yb1{bottom:373.383972pt;}
.y9e{bottom:373.654179pt;}
.yff{bottom:375.166389pt;}
.y15c{bottom:375.842945pt;}
.y112{bottom:377.598247pt;}
.y3a{bottom:377.666667pt;}
.y4{bottom:381.666667pt;}
.y58{bottom:382.470667pt;}
.y136{bottom:383.719710pt;}
.y15b{bottom:388.699249pt;}
.y9d{bottom:389.866563pt;}
.yb0{bottom:392.298420pt;}
.y111{bottom:396.512695pt;}
.y135{bottom:396.997740pt;}
.yfe{bottom:398.944553pt;}
.y15a{bottom:399.451794pt;}
.y39{bottom:399.746667pt;}
.yc2{bottom:407.774697pt;}
.y134{bottom:410.275770pt;}
.yaf{bottom:411.212868pt;}
.y9c{bottom:413.644726pt;}
.yfd{bottom:415.156937pt;}
.y110{bottom:415.427143pt;}
.y159{bottom:421.424387pt;}
.y38{bottom:421.826667pt;}
.y73{bottom:424.771774pt;}
.y133{bottom:427.175080pt;}
.y18b{bottom:429.256461pt;}
.y9b{bottom:429.857110pt;}
.yae{bottom:430.127316pt;}
.y17b{bottom:430.540676pt;}
.y158{bottom:434.280691pt;}
.y10f{bottom:435.692623pt;}
.y132{bottom:438.280341pt;}
.yfc{bottom:438.935100pt;}
.y72{bottom:442.553467pt;}
.y37{bottom:443.906667pt;}
.y17a{bottom:444.565735pt;}
.y57{bottom:444.584000pt;}
.y18a{bottom:445.922153pt;}
.y10e{bottom:448.122117pt;}
.y157{bottom:448.539502pt;}
.yad{bottom:450.392796pt;}
.y9a{bottom:453.635273pt;}
.yfb{bottom:455.147484pt;}
.y130{bottom:460.973701pt;}
.y56{bottom:461.920000pt;}
.yac{bottom:462.822291pt;}
.y179{bottom:465.135822pt;}
.y36{bottom:465.986667pt;}
.y189{bottom:466.433773pt;}
.y156{bottom:468.408335pt;}
.y99{bottom:469.847657pt;}
.yfa{bottom:471.359868pt;}
.y71{bottom:471.957067pt;}
.y12f{bottom:472.078962pt;}
.y10d{bottom:473.521519pt;}
.y131{bottom:474.251730pt;}
.y55{bottom:479.256000pt;}
.y188{bottom:483.099464pt;}
.y10c{bottom:485.951013pt;}
.y98{bottom:486.060041pt;}
.yf9{bottom:487.572252pt;}
.y35{bottom:488.066667pt;}
.yab{bottom:488.221692pt;}
.y154{bottom:490.380928pt;}
.y178{bottom:493.536567pt;}
.y12e{bottom:494.772322pt;}
.y54{bottom:496.592000pt;}
.y83{bottom:497.393287pt;}
.y187{bottom:499.765156pt;}
.yaa{bottom:500.651187pt;}
.y153{bottom:501.133474pt;}
.y97{bottom:502.272425pt;}
.y155{bottom:503.237232pt;}
.yf8{bottom:503.784636pt;}
.y12c{bottom:508.050351pt;}
.y10b{bottom:511.350415pt;}
.y82{bottom:513.806000pt;}
.y53{bottom:513.928000pt;}
.y1a0{bottom:514.201360pt;}
.y70{bottom:514.477369pt;}
.y5d{bottom:518.202667pt;}
.y96{bottom:518.484809pt;}
.y12b{bottom:519.155612pt;}
.y186{bottom:520.276776pt;}
.y152{bottom:521.002307pt;}
.y12d{bottom:521.328381pt;}
.y10a{bottom:523.779909pt;}
.ya9{bottom:526.050588pt;}
.y197{bottom:527.968634pt;}
.y19f{bottom:530.201360pt;}
.y52{bottom:530.868000pt;}
.y34{bottom:532.226667pt;}
.y6f{bottom:532.259062pt;}
.y5c{bottom:534.204000pt;}
.yf7{bottom:536.614713pt;}
.y185{bottom:536.942468pt;}
.ya8{bottom:538.480083pt;}
.y12a{bottom:539.676203pt;}
.y151{bottom:540.871141pt;}
.y196{bottom:544.634325pt;}
.y19e{bottom:546.868027pt;}
.y81{bottom:547.038800pt;}
.y177{bottom:548.000546pt;}
.y109{bottom:549.179311pt;}
.y6e{bottom:550.040755pt;}
.y95{bottom:551.314887pt;}
.y33{bottom:554.333333pt;}
.y51{bottom:558.998667pt;}
.y129{bottom:560.196795pt;}
.y108{bottom:561.608805pt;}
.y150{bottom:562.843734pt;}
.y176{bottom:563.194361pt;}
.ya7{bottom:563.879484pt;}
.y5b{bottom:566.604000pt;}
.y6d{bottom:567.416267pt;}
.y184{bottom:569.376467pt;}
.y195{bottom:572.196815pt;}
.y50{bottom:575.000000pt;}
.ya6{bottom:576.308979pt;}
.y32{bottom:576.413333pt;}
.y19d{bottom:581.248027pt;}
.y128{bottom:582.890154pt;}
.y125{bottom:584.459376pt;}
.y107{bottom:584.576349pt;}
.ya5{bottom:599.276523pt;}
.yf6{bottom:599.572805pt;}
.y106{bottom:607.543893pt;}
.y6c{bottom:608.170893pt;}
.y80{bottom:610.759862pt;}
.y94{bottom:614.272978pt;}
.yf5{bottom:617.136221pt;}
.y31{bottom:620.573333pt;}
.y6a{bottom:621.163333pt;}
.y14f{bottom:621.515232pt;}
.ya4{bottom:622.244067pt;}
.y6b{bottom:624.582253pt;}
.y7f{bottom:628.541555pt;}
.y105{bottom:630.511437pt;}
.y93{bottom:631.836394pt;}
.yf4{bottom:634.294327pt;}
.y183{bottom:640.141557pt;}
.y4f{bottom:640.204000pt;}
.y30{bottom:642.653333pt;}
.y124{bottom:643.486253pt;}
.ya3{bottom:645.211611pt;}
.y7e{bottom:645.917067pt;}
.y92{bottom:648.994500pt;}
.y3{bottom:657.853333pt;}
.y2f{bottom:664.733333pt;}
.y21{bottom:675.933333pt;}
.y2e{bottom:686.813333pt;}
.y2{bottom:694.653333pt;}
.y20{bottom:698.013333pt;}
.yf3{bottom:700.765101pt;}
.y69{bottom:713.203333pt;}
.y2d{bottom:715.293333pt;}
.y91{bottom:715.465275pt;}
.y1f{bottom:720.093333pt;}
.y4c{bottom:722.953333pt;}
.y8c{bottom:722.953867pt;}
.y1e{bottom:742.173333pt;}
.y1a9{bottom:752.573333pt;}
.y1d{bottom:764.253333pt;}
.y2c{bottom:766.333333pt;}
.y1a8{bottom:773.693333pt;}
.y1c{bottom:786.373333pt;}
.y2b{bottom:788.453333pt;}
.y1a7{bottom:794.853333pt;}
.y47{bottom:806.213333pt;}
.y1b{bottom:808.453333pt;}
.y2a{bottom:810.533333pt;}
.y14{bottom:811.813333pt;}
.y1a6{bottom:815.973333pt;}
.y46{bottom:828.293333pt;}
.y1a{bottom:830.533333pt;}
.y29{bottom:832.613333pt;}
.y1a5{bottom:837.253333pt;}
.y13{bottom:838.213333pt;}
.y45{bottom:850.373333pt;}
.y19{bottom:852.613333pt;}
.y28{bottom:854.693333pt;}
.y1a4{bottom:858.373333pt;}
.y12{bottom:864.613333pt;}
.y44{bottom:872.453333pt;}
.y18{bottom:874.693333pt;}
.y27{bottom:876.773333pt;}
.y1a3{bottom:879.493333pt;}
.y11{bottom:883.013333pt;}
.y43{bottom:894.533333pt;}
.y17{bottom:896.773333pt;}
.y26{bottom:898.853333pt;}
.y1a2{bottom:900.613333pt;}
.y10{bottom:909.413333pt;}
.y42{bottom:916.613333pt;}
.y16{bottom:918.853333pt;}
.y25{bottom:920.933333pt;}
.y1a1{bottom:921.893333pt;}
.yf{bottom:935.813333pt;}
.y41{bottom:938.693333pt;}
.y24{bottom:943.013333pt;}
.y15{bottom:953.573333pt;}
.y40{bottom:960.773333pt;}
.ye{bottom:968.133333pt;}
.y23{bottom:984.133333pt;}
.y3f{bottom:989.253333pt;}
.hd{height:27.604000pt;}
.h1f{height:27.604160pt;}
.h3a{height:39.083165pt;}
.h3d{height:39.503917pt;}
.h33{height:40.365210pt;}
.h36{height:40.799764pt;}
.h3e{height:42.888631pt;}
.h21{height:42.944000pt;}
.h3f{height:42.991481pt;}
.h5{height:43.250000pt;}
.h4c{height:45.173333pt;}
.h29{height:45.178510pt;}
.h2b{height:45.664882pt;}
.h18{height:45.732990pt;}
.he{height:46.593750pt;}
.h48{height:47.043401pt;}
.h46{height:47.156215pt;}
.h3b{height:47.498200pt;}
.h47{height:47.663878pt;}
.h12{height:48.928000pt;}
.h11{height:49.045333pt;}
.h34{height:49.056284pt;}
.h37{height:49.490838pt;}
.h24{height:49.577470pt;}
.h3c{height:49.601959pt;}
.h25{height:49.696361pt;}
.h19{height:50.185894pt;}
.h1a{height:50.306244pt;}
.h35{height:51.229052pt;}
.h49{height:51.320074pt;}
.h41{height:54.562155pt;}
.h1b{height:54.748208pt;}
.h28{height:54.905940pt;}
.h32{height:56.351958pt;}
.h2c{height:57.337798pt;}
.h9{height:57.375000pt;}
.h40{height:58.484497pt;}
.h7{height:58.563750pt;}
.h4{height:61.410000pt;}
.h14{height:62.245333pt;}
.h2{height:62.812500pt;}
.h27{height:63.071578pt;}
.h1e{height:63.845604pt;}
.h45{height:64.150092pt;}
.h13{height:66.720000pt;}
.h4b{height:66.986667pt;}
.h2a{height:67.065228pt;}
.h26{height:67.605641pt;}
.h1d{height:68.435149pt;}
.h39{height:70.181396pt;}
.h31{height:72.483556pt;}
.h44{height:76.980111pt;}
.h10{height:80.064000pt;}
.h23{height:81.126770pt;}
.h16{height:82.122090pt;}
.h3{height:88.777500pt;}
.h8{height:94.929063pt;}
.h6{height:107.715000pt;}
.h2d{height:118.620610pt;}
.h17{height:119.583657pt;}
.h1c{height:119.584190pt;}
.hc{height:125.600000pt;}
.h2f{height:144.964000pt;}
.h2e{height:354.482933pt;}
.h15{height:499.684000pt;}
.h22{height:597.977733pt;}
.hf{height:606.321333pt;}
.h43{height:606.466400pt;}
.h20{height:642.666667pt;}
.h42{height:642.938267pt;}
.hb{height:646.424000pt;}
.h4a{height:646.938267pt;}
.h38{height:656.636933pt;}
.h30{height:685.091600pt;}
.ha{height:793.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:41.403640pt;}
.w6{width:41.404000pt;}
.w5{width:228.098667pt;}
.wa{width:228.098933pt;}
.w9{width:300.067733pt;}
.w4{width:300.068000pt;}
.we{width:479.403200pt;}
.wf{width:495.101733pt;}
.w7{width:510.232000pt;}
.wd{width:537.084000pt;}
.w8{width:540.834667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w11{width:925.694400pt;}
.w10{width:945.288133pt;}
.wc{width:975.757200pt;}
.w12{width:980.028800pt;}
.w14{width:984.200267pt;}
.w13{width:989.283467pt;}
.w3{width:995.325333pt;}
.w2{width:1122.666667pt;}
.x36{left:-548.206760pt;}
.x34{left:-547.125935pt;}
.x40{left:-540.593839pt;}
.x3e{left:-539.513013pt;}
.x35{left:-529.157209pt;}
.x37{left:-525.104113pt;}
.x3f{left:-521.544288pt;}
.x41{left:-517.491192pt;}
.x16{left:-515.773733pt;}
.x14{left:-514.707067pt;}
.x38{left:-501.731259pt;}
.x15{left:-496.971067pt;}
.x42{left:-494.118338pt;}
.x0{left:0.000000pt;}
.xf{left:4.469200pt;}
.x17{left:6.759600pt;}
.x43{left:11.978249pt;}
.x53{left:13.242760pt;}
.x12{left:14.700400pt;}
.x2b{left:19.232862pt;}
.x29{left:20.313688pt;}
.x1a{left:22.804000pt;}
.x18{left:25.559600pt;}
.x39{left:27.738181pt;}
.x1e{left:29.915467pt;}
.x54{left:31.318625pt;}
.x44{left:35.351103pt;}
.x2a{left:38.282414pt;}
.x3a{left:39.221953pt;}
.x1d{left:40.993200pt;}
.x2c{left:42.335510pt;}
.x45{left:46.834875pt;}
.x1b{left:49.745867pt;}
.x1f{left:52.622006pt;}
.x28{left:58.653560pt;}
.x20{left:60.686800pt;}
.x4d{left:62.719926pt;}
.xa{left:63.670667pt;}
.x2d{left:65.708363pt;}
.x13{left:67.590667pt;}
.x57{left:69.233213pt;}
.xe{left:71.121333pt;}
.x3b{left:73.403063pt;}
.x26{left:75.590560pt;}
.x46{left:81.015984pt;}
.x4{left:85.152000pt;}
.x48{left:88.687493pt;}
.x4c{left:98.486160pt;}
.x21{left:119.904267pt;}
.x1c{left:121.271913pt;}
.x7{left:132.352000pt;}
.xb{left:137.562667pt;}
.x3d{left:141.495076pt;}
.x8{left:148.346667pt;}
.x3c{left:152.978848pt;}
.x47{left:160.591769pt;}
.x58{left:170.106667pt;}
.x2{left:172.826667pt;}
.x4e{left:175.387902pt;}
.xc{left:192.642667pt;}
.x5{left:226.946667pt;}
.xd{left:275.362667pt;}
.x3{left:306.946667pt;}
.x1{left:404.893333pt;}
.x10{left:447.284000pt;}
.x50{left:476.692923pt;}
.x4f{left:493.172368pt;}
.x51{left:496.678633pt;}
.x49{left:519.648351pt;}
.x55{left:523.341117pt;}
.x56{left:533.725124pt;}
.x27{left:536.147040pt;}
.x4a{left:544.514479pt;}
.x19{left:553.333333pt;}
.x24{left:557.676000pt;}
.x2e{left:571.804950pt;}
.x22{left:576.959200pt;}
.x23{left:588.588006pt;}
.x2f{left:595.177804pt;}
.x25{left:600.231855pt;}
.x30{left:606.661576pt;}
.x52{left:633.422960pt;}
.x31{left:640.842686pt;}
.x4b{left:660.878302pt;}
.x9{left:683.360000pt;}
.x6{left:691.360000pt;}
.x33{left:708.934698pt;}
.x32{left:720.418470pt;}
.x11{left:1010.141333pt;}
}




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