
    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_4717b2dce89285c35c6a9cfb.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2c5c5288385aa171dd438a75.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e9e316f49ded3c4796d062c7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;font-style:normal;font-weight: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_a527f1dc4fee9e6ccea68b1c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.848000;font-style:normal;font-weight: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_b5c77cd56a54d904badba06b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.677734;font-style:normal;font-weight: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_17e69cad4ec1f2b6f1176fc8.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9afd8c554630ab704d9e689e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.924316;font-style:normal;font-weight: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_f988eb43953e9732629c9f19.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_4777be15d591dd51ee10fa50.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.093262;font-style:normal;font-weight: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_3238c89b8b234d4c1c22ed8a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f3a36cae93f693cd494c7f22.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.679688;font-style:normal;font-weight: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_c92e3b3ad52d2d7136c50f18.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_939212607242b5652b388855.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_fcdf8bdbc1e40bf4422dc0a3.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_b380f9438d5f07f7587f1c99.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_1cec36678786fa922b3473b5.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.075000;font-style:normal;font-weight: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_b2055deade31d883e57c38f9.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.075000;font-style:normal;font-weight: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_203517f52e5f7607cb6b63c5.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.086000;font-style:normal;font-weight: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_5042aac99a5df7a2179f8268.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.700000;font-style:normal;font-weight: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_8ae3642f562d00145c92645a.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.078000;font-style:normal;font-weight: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_c7e232960ae48637f5775328.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.969000;font-style:normal;font-weight: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_03551e662aef2603248dc6f2.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.075000;font-style:normal;font-weight: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_83b819207b43b0f07d5fa1ba.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.085000;font-style:normal;font-weight: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_7a2ae4a529ed40dc1ccf957d.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.078000;font-style:normal;font-weight: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_3c84bf58bc2ebef128e0f360.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.086000;font-style:normal;font-weight: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_823ee34c0a46037a3ca6712b.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.076000;font-style:normal;font-weight: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_ef410d30aa9771f4f7c94b04.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.002930;font-style:normal;font-weight: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_57231e60049f26be63fa0ca2.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_59cd9228781a7187e72122ec.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.076000;font-style:normal;font-weight: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_6421be5b044a5d4200fb22ca.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.870605;font-style:normal;font-weight: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_3579af4af3374a011dd39465.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.075000;font-style:normal;font-weight: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_81b5b8e8c99e416d242ee094.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_a1246ea7320f5a097412ff34.woff2')format("woff");}.ff21{font-family:ff21;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;}
.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;}
.ls24{letter-spacing:-0.569088px;}
.ls27{letter-spacing:-0.530784px;}
.ls25{letter-spacing:-0.366624px;}
.ls28{letter-spacing:-0.350208px;}
.ls26{letter-spacing:-0.344736px;}
.ls3c{letter-spacing:-0.338688px;}
.ls16{letter-spacing:-0.310464px;}
.ls3a{letter-spacing:-0.308448px;}
.lse{letter-spacing:-0.291456px;}
.ls34{letter-spacing:-0.290304px;}
.ls33{letter-spacing:-0.266112px;}
.lsb{letter-spacing:-0.259776px;}
.ls3b{letter-spacing:-0.254016px;}
.ls13{letter-spacing:-0.247104px;}
.ls17{letter-spacing:-0.241920px;}
.ls11{letter-spacing:-0.240768px;}
.ls3d{letter-spacing:-0.235872px;}
.ls40{letter-spacing:-0.229824px;}
.lsc{letter-spacing:-0.228096px;}
.ls1a{letter-spacing:-0.211968px;}
.ls2b{letter-spacing:-0.198720px;}
.ls29{letter-spacing:-0.196992px;}
.ls35{letter-spacing:-0.193536px;}
.ls15{letter-spacing:-0.190080px;}
.ls18{letter-spacing:-0.178848px;}
.lsd{letter-spacing:-0.177408px;}
.ls1d{letter-spacing:-0.172224px;}
.ls6{letter-spacing:-0.165600px;}
.ls23{letter-spacing:-0.163584px;}
.ls3e{letter-spacing:-0.163296px;}
.ls21{letter-spacing:-0.158976px;}
.ls4{letter-spacing:-0.152352px;}
.ls5{letter-spacing:-0.145728px;}
.ls22{letter-spacing:-0.143136px;}
.ls1c{letter-spacing:-0.139104px;}
.ls10{letter-spacing:-0.133056px;}
.ls20{letter-spacing:-0.132480px;}
.ls1f{letter-spacing:-0.125856px;}
.ls12{letter-spacing:-0.120384px;}
.ls19{letter-spacing:-0.119232px;}
.ls1b{letter-spacing:-0.112608px;}
.lsf{letter-spacing:-0.107712px;}
.ls9{letter-spacing:-0.105984px;}
.ls3f{letter-spacing:-0.099360px;}
.ls45{letter-spacing:-0.092736px;}
.ls2f{letter-spacing:-0.086112px;}
.ls1e{letter-spacing:-0.079488px;}
.ls2c{letter-spacing:-0.072864px;}
.ls2a{letter-spacing:-0.066240px;}
.ls46{letter-spacing:-0.059616px;}
.lsa{letter-spacing:-0.052992px;}
.ls36{letter-spacing:-0.046368px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000576px;}
.ls39{letter-spacing:0.035424px;}
.ls1{letter-spacing:0.101088px;}
.ls30{letter-spacing:0.116640px;}
.ls43{letter-spacing:0.155520px;}
.ls2e{letter-spacing:0.171072px;}
.ls42{letter-spacing:0.178848px;}
.ls32{letter-spacing:0.209952px;}
.ls3{letter-spacing:0.275616px;}
.ls0{letter-spacing:0.334080px;}
.ls38{letter-spacing:1.986336px;}
.ls37{letter-spacing:5.025888px;}
.ls8{letter-spacing:16.755840px;}
.ls41{letter-spacing:17.965872px;}
.ls31{letter-spacing:19.803312px;}
.ls2d{letter-spacing:36.728208px;}
.ls44{letter-spacing:838.440000px;}
.ls14{letter-spacing:843.497280px;}
.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;}
}
.ws16{word-spacing:-16.344000px;}
.ws3{word-spacing:-15.840000px;}
.ws2{word-spacing:-15.719616px;}
.ws5{word-spacing:-15.662592px;}
.ws17{word-spacing:-15.624000px;}
.ws4{word-spacing:-15.592896px;}
.ws1a{word-spacing:-15.036480px;}
.ws7{word-spacing:-14.983488px;}
.ws1b{word-spacing:-14.963616px;}
.wsb{word-spacing:-14.956992px;}
.ws8{word-spacing:-14.917248px;}
.wsc{word-spacing:-14.910624px;}
.wse{word-spacing:-14.904000px;}
.wsa{word-spacing:-14.897376px;}
.ws15{word-spacing:-14.890752px;}
.ws6{word-spacing:-14.878080px;}
.wsd{word-spacing:-14.870880px;}
.ws9{word-spacing:-14.864256px;}
.ws19{word-spacing:-13.499136px;}
.ws18{word-spacing:-13.474944px;}
.ws11{word-spacing:-12.530880px;}
.ws14{word-spacing:-12.333888px;}
.ws12{word-spacing:-12.186144px;}
.ws13{word-spacing:-12.180672px;}
.ws10{word-spacing:-12.164256px;}
.wsf{word-spacing:-11.961792px;}
.ws0{word-spacing:-0.178848px;}
.ws1{word-spacing:0.000000px;}
._7{margin-left:-14.816304px;}
._b{margin-left:-13.757760px;}
._6{margin-left:-10.703376px;}
._8{margin-left:-9.695232px;}
._a{margin-left:-5.643360px;}
._9{margin-left:-4.292352px;}
._14{margin-left:-3.197376px;}
._0{margin-left:-1.439424px;}
._1{width:1.059840px;}
._12{width:2.131200px;}
._2{width:3.168000px;}
._1b{width:4.360320px;}
._13{width:5.376960px;}
._4{width:6.399360px;}
._c{width:7.577280px;}
._11{width:9.141120px;}
._d{width:10.465920px;}
._10{width:11.592000px;}
._15{width:13.380480px;}
._1f{width:14.493600px;}
._18{width:16.016832px;}
._3{width:17.124480px;}
._1a{width:18.813600px;}
._16{width:19.872000px;}
._17{width:21.263040px;}
._1c{width:22.730400px;}
._21{width:24.544800px;}
._5{width:25.868160px;}
._19{width:27.527040px;}
._1d{width:28.710720px;}
._f{width:30.139200px;}
._e{width:31.397760px;}
._23{width:32.810400px;}
._22{width:33.868800px;}
._26{width:34.977600px;}
._1e{width:36.309600px;}
._24{width:37.821600px;}
._25{width:40.939200px;}
._28{width:43.538400px;}
._20{width:53.596800px;}
._27{width:1473.064416px;}
.fc9{color:rgb(112,48,160);}
.fc8{color:rgb(112,173,71);}
.fc4{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc1{color:rgb(28,72,86);}
.fc7{color:rgb(0,13,26);}
.fc6{color:rgb(89,89,89);}
.fc5{color:rgb(36,36,36);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs7{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs3{font-size:83.520000px;}
.fs8{font-size:90.720000px;}
.fs9{font-size:102.240000px;}
.fs1{font-size:168.480000px;}
.y19{bottom:-30.840000px;}
.y0{bottom:0.000000px;}
.y194{bottom:10.980000px;}
.y12b{bottom:11.280000px;}
.y114{bottom:11.520000px;}
.y18{bottom:12.000000px;}
.y12c{bottom:13.080000px;}
.y1e{bottom:19.440000px;}
.y17{bottom:37.200000px;}
.y1d{bottom:38.160000px;}
.y1c{bottom:56.520000px;}
.y2{bottom:57.240000px;}
.y1{bottom:74.160000px;}
.y1b{bottom:75.240000px;}
.ycd{bottom:93.240000px;}
.y1a{bottom:94.320000px;}
.ye0{bottom:95.760000px;}
.y86{bottom:96.480000px;}
.ya3{bottom:97.920000px;}
.y180{bottom:98.640000px;}
.y101{bottom:99.000000px;}
.y110{bottom:99.360000px;}
.y133{bottom:99.720000px;}
.y43{bottom:100.440000px;}
.y16c{bottom:101.880000px;}
.y19a{bottom:102.600000px;}
.y13f{bottom:104.040000px;}
.y186{bottom:105.120000px;}
.y1ac{bottom:105.480000px;}
.yf0{bottom:105.840000px;}
.y175{bottom:108.360000px;}
.y116{bottom:110.880000px;}
.y85{bottom:117.720000px;}
.y42{bottom:118.440000px;}
.ya2{bottom:119.160000px;}
.y161{bottom:120.240000px;}
.y127{bottom:122.400000px;}
.ycc{bottom:125.640000px;}
.ydf{bottom:128.160000px;}
.yb9{bottom:128.880000px;}
.y15{bottom:131.400000px;}
.y132{bottom:132.120000px;}
.y16b{bottom:134.280000px;}
.y17f{bottom:134.640000px;}
.y199{bottom:135.000000px;}
.y10f{bottom:135.360000px;}
.y41{bottom:136.440000px;}
.y1ab{bottom:137.880000px;}
.yef{bottom:138.240000px;}
.y160{bottom:138.600000px;}
.y84{bottom:139.320000px;}
.ya1{bottom:140.760000px;}
.y174{bottom:141.480000px;}
.y115{bottom:149.040000px;}
.y149{bottom:153.000000px;}
.y171{bottom:154.440000px;}
.y40{bottom:154.800000px;}
.ycb{bottom:158.040000px;}
.y191{bottom:158.400000px;}
.yde{bottom:160.560000px;}
.yb8{bottom:161.280000px;}
.ya0{bottom:162.000000px;}
.y100{bottom:163.800000px;}
.y16a{bottom:166.680000px;}
.y198{bottom:167.400000px;}
.y83{bottom:168.120000px;}
.y13e{bottom:168.840000px;}
.y1aa{bottom:170.280000px;}
.y17e{bottom:170.640000px;}
.y113{bottom:171.000000px;}
.y15f{bottom:172.440000px;}
.y3f{bottom:172.800000px;}
.y10e{bottom:174.240000px;}
.y170{bottom:181.440000px;}
.y14{bottom:184.320000px;}
.y148{bottom:185.400000px;}
.y126{bottom:187.200000px;}
.y190{bottom:187.920000px;}
.yee{bottom:188.640000px;}
.y82{bottom:189.360000px;}
.y3e{bottom:190.800000px;}
.ydd{bottom:192.960000px;}
.yb7{bottom:193.680000px;}
.yff{bottom:196.200000px;}
.y185{bottom:198.000000px;}
.y118{bottom:199.080000px;}
.yca{bottom:199.440000px;}
.y197{bottom:199.800000px;}
.y9f{bottom:201.240000px;}
.y1a9{bottom:202.680000px;}
.y10d{bottom:206.640000px;}
.y13{bottom:207.000000px;}
.y3d{bottom:208.800000px;}
.y16f{bottom:214.560000px;}
.y65{bottom:217.800000px;}
.y81{bottom:218.520000px;}
.y125{bottom:219.600000px;}
.yed{bottom:221.040000px;}
.y131{bottom:221.760000px;}
.y9e{bottom:222.840000px;}
.ydc{bottom:225.360000px;}
.yb6{bottom:226.080000px;}
.y3c{bottom:227.160000px;}
.y169{bottom:231.480000px;}
.yc9{bottom:231.840000px;}
.y117{bottom:232.560000px;}
.y13d{bottom:233.640000px;}
.y1a8{bottom:235.080000px;}
.y196{bottom:238.320000px;}
.y10c{bottom:239.040000px;}
.y80{bottom:239.760000px;}
.yfe{bottom:240.840000px;}
.y1b9{bottom:241.200000px;}
.y64{bottom:243.720000px;}
.y9d{bottom:244.080000px;}
.y3b{bottom:245.160000px;}
.y17d{bottom:245.520000px;}
.y12{bottom:249.120000px;}
.y147{bottom:250.200000px;}
.y124{bottom:252.000000px;}
.yec{bottom:253.440000px;}
.y130{bottom:254.160000px;}
.ydb{bottom:257.760000px;}
.yb5{bottom:258.480000px;}
.y7f{bottom:261.000000px;}
.y3a{bottom:263.160000px;}
.yc8{bottom:264.240000px;}
.y168{bottom:264.600000px;}
.y9c{bottom:265.320000px;}
.y13c{bottom:266.040000px;}
.y195{bottom:266.760000px;}
.y1a7{bottom:267.480000px;}
.y63{bottom:268.560000px;}
.y10b{bottom:271.440000px;}
.y1b8{bottom:271.800000px;}
.yfd{bottom:273.240000px;}
.y17c{bottom:277.920000px;}
.y146{bottom:282.600000px;}
.y123{bottom:284.400000px;}
.yeb{bottom:285.840000px;}
.y12f{bottom:286.560000px;}
.y9b{bottom:286.920000px;}
.y62{bottom:289.440000px;}
.y7e{bottom:289.800000px;}
.yda{bottom:290.160000px;}
.yb4{bottom:290.880000px;}
.y11{bottom:291.240000px;}
.y193{bottom:292.500000px;}
.yc7{bottom:296.640000px;}
.y13b{bottom:298.440000px;}
.y1a6{bottom:299.880000px;}
.y10a{bottom:303.840000px;}
.y167{bottom:305.280000px;}
.yfc{bottom:305.640000px;}
.y9a{bottom:308.160000px;}
.y61{bottom:309.960000px;}
.y17b{bottom:310.320000px;}
.y7d{bottom:311.400000px;}
.y145{bottom:314.280000px;}
.y155{bottom:315.000000px;}
.yea{bottom:318.240000px;}
.yd9{bottom:322.560000px;}
.yb3{bottom:323.280000px;}
.y12e{bottom:325.080000px;}
.yc6{bottom:329.040000px;}
.y99{bottom:329.400000px;}
.y60{bottom:330.840000px;}
.y1a5{bottom:332.280000px;}
.y7c{bottom:332.640000px;}
.y10{bottom:333.000000px;}
.y122{bottom:334.800000px;}
.yfb{bottom:338.040000px;}
.y39{bottom:338.400000px;}
.y17a{bottom:342.720000px;}
.y154{bottom:347.400000px;}
.ye9{bottom:350.640000px;}
.y98{bottom:351.000000px;}
.y5f{bottom:351.360000px;}
.y12d{bottom:352.800000px;}
.y109{bottom:354.240000px;}
.yd8{bottom:354.960000px;}
.yb2{bottom:355.680000px;}
.y38{bottom:356.760000px;}
.y7b{bottom:361.440000px;}
.y13a{bottom:363.240000px;}
.y1a4{bottom:364.680000px;}
.y1b7{bottom:366.120000px;}
.y121{bottom:367.200000px;}
.yfa{bottom:370.440000px;}
.y5e{bottom:372.240000px;}
.y12a{bottom:375.000000px;}
.yf{bottom:375.120000px;}
.y37{bottom:375.480000px;}
.y153{bottom:379.800000px;}
.y7a{bottom:383.040000px;}
.y108{bottom:386.640000px;}
.yd7{bottom:387.360000px;}
.yb1{bottom:388.080000px;}
.y5d{bottom:392.760000px;}
.y97{bottom:393.480000px;}
.yc5{bottom:393.840000px;}
.y139{bottom:395.640000px;}
.y1b6{bottom:396.000000px;}
.y36{bottom:396.360000px;}
.y120{bottom:399.600000px;}
.ye8{bottom:401.040000px;}
.yf9{bottom:402.840000px;}
.y179{bottom:407.520000px;}
.y79{bottom:411.840000px;}
.y152{bottom:412.200000px;}
.y5c{bottom:413.640000px;}
.y1a3{bottom:415.080000px;}
.y35{bottom:416.880000px;}
.ye{bottom:417.240000px;}
.y107{bottom:419.040000px;}
.yd6{bottom:419.760000px;}
.yb0{bottom:420.480000px;}
.y1b5{bottom:425.520000px;}
.yc4{bottom:426.240000px;}
.y138{bottom:428.040000px;}
.y173{bottom:430.920000px;}
.y11f{bottom:432.000000px;}
.y78{bottom:433.080000px;}
.y5b{bottom:433.440000px;}
.yf8{bottom:435.240000px;}
.y34{bottom:437.760000px;}
.y178{bottom:439.920000px;}
.y96{bottom:442.440000px;}
.y151{bottom:444.600000px;}
.y1a2{bottom:447.480000px;}
.y106{bottom:451.440000px;}
.yaf{bottom:452.880000px;}
.y172{bottom:457.920000px;}
.y33{bottom:458.280000px;}
.yc3{bottom:458.640000px;}
.yd{bottom:459.000000px;}
.y137{bottom:460.440000px;}
.y77{bottom:461.880000px;}
.y5a{bottom:464.400000px;}
.y95{bottom:467.280000px;}
.y177{bottom:469.440000px;}
.yd5{bottom:470.160000px;}
.ye7{bottom:474.480000px;}
.y1b4{bottom:476.280000px;}
.yf7{bottom:476.640000px;}
.y150{bottom:477.000000px;}
.y32{bottom:479.160000px;}
.y1a1{bottom:479.880000px;}
.y18f{bottom:480.960000px;}
.y59{bottom:482.760000px;}
.y76{bottom:483.480000px;}
.y105{bottom:483.840000px;}
.yae{bottom:485.280000px;}
.y192{bottom:489.960000px;}
.y94{bottom:492.480000px;}
.y136{bottom:492.840000px;}
.y184{bottom:494.640000px;}
.y11e{bottom:496.800000px;}
.y31{bottom:499.680000px;}
.yc2{bottom:500.040000px;}
.yc{bottom:501.120000px;}
.yd4{bottom:502.560000px;}
.y75{bottom:504.720000px;}
.y1b3{bottom:506.160000px;}
.y18e{bottom:507.960000px;}
.y14f{bottom:508.680000px;}
.yf6{bottom:509.040000px;}
.y1a0{bottom:512.280000px;}
.y104{bottom:516.240000px;}
.y30{bottom:517.320000px;}
.y93{bottom:517.680000px;}
.y58{bottom:519.120000px;}
.y183{bottom:521.640000px;}
.ye6{bottom:523.440000px;}
.y135{bottom:525.240000px;}
.y11d{bottom:529.200000px;}
.y176{bottom:530.280000px;}
.yc1{bottom:532.440000px;}
.y74{bottom:533.520000px;}
.y2f{bottom:534.960000px;}
.y1b2{bottom:535.680000px;}
.y57{bottom:537.120000px;}
.yf5{bottom:541.440000px;}
.yb{bottom:543.240000px;}
.y19f{bottom:544.680000px;}
.y92{bottom:547.200000px;}
.y103{bottom:548.640000px;}
.yad{bottom:550.080000px;}
.y2e{bottom:552.960000px;}
.y56{bottom:555.480000px;}
.ye5{bottom:555.840000px;}
.y134{bottom:557.280000px;}
.y144{bottom:557.640000px;}
.y11c{bottom:561.600000px;}
.y73{bottom:562.320000px;}
.y91{bottom:564.840000px;}
.y1b1{bottom:565.560000px;}
.yd3{bottom:567.360000px;}
.y2d{bottom:570.960000px;}
.y55{bottom:573.480000px;}
.yf4{bottom:573.840000px;}
.y182{bottom:575.640000px;}
.y19e{bottom:577.080000px;}
.y166{bottom:581.040000px;}
.yac{bottom:582.480000px;}
.y15e{bottom:582.840000px;}
.y72{bottom:583.920000px;}
.ya{bottom:585.000000px;}
.ye4{bottom:588.240000px;}
.y2c{bottom:589.320000px;}
.y102{bottom:589.680000px;}
.y143{bottom:590.040000px;}
.y54{bottom:591.480000px;}
.y90{bottom:594.000000px;}
.yc0{bottom:597.240000px;}
.yd2{bottom:599.760000px;}
.y71{bottom:605.160000px;}
.yf3{bottom:606.240000px;}
.y2b{bottom:608.040000px;}
.y181{bottom:608.760000px;}
.y19d{bottom:609.480000px;}
.y53{bottom:609.840000px;}
.y165{bottom:613.440000px;}
.yab{bottom:614.880000px;}
.y1b0{bottom:616.320000px;}
.y8f{bottom:619.200000px;}
.ye3{bottom:620.640000px;}
.y142{bottom:622.440000px;}
.y15d{bottom:624.600000px;}
.y2a{bottom:626.400000px;}
.y9{bottom:627.120000px;}
.y52{bottom:627.840000px;}
.ybf{bottom:629.640000px;}
.yd1{bottom:632.160000px;}
.y70{bottom:633.960000px;}
.yf2{bottom:638.640000px;}
.y19c{bottom:641.880000px;}
.y29{bottom:645.120000px;}
.y51{bottom:645.840000px;}
.yaa{bottom:647.280000px;}
.ye2{bottom:653.040000px;}
.y141{bottom:654.840000px;}
.y6f{bottom:655.560000px;}
.y15c{bottom:657.000000px;}
.y11b{bottom:658.800000px;}
.y16e{bottom:660.960000px;}
.ybe{bottom:662.040000px;}
.y28{bottom:664.200000px;}
.y8{bottom:669.240000px;}
.yf1{bottom:671.040000px;}
.y8e{bottom:675.000000px;}
.y1af{bottom:675.720000px;}
.y164{bottom:678.240000px;}
.y18d{bottom:679.680000px;}
.y50{bottom:682.200000px;}
.y19b{bottom:683.640000px;}
.yd0{bottom:684.000000px;}
.y6e{bottom:684.360000px;}
.y27{bottom:685.440000px;}
.y140{bottom:686.520000px;}
.y14e{bottom:687.240000px;}
.y15b{bottom:689.400000px;}
.ya9{bottom:690.120000px;}
.y11a{bottom:691.200000px;}
.ybd{bottom:694.440000px;}
.y16d{bottom:696.960000px;}
.y4f{bottom:700.200000px;}
.ye1{bottom:703.440000px;}
.y26{bottom:704.160000px;}
.y1ae{bottom:705.240000px;}
.y6d{bottom:705.600000px;}
.y163{bottom:710.640000px;}
.y7{bottom:711.000000px;}
.y18c{bottom:712.080000px;}
.y4e{bottom:718.560000px;}
.y14d{bottom:719.640000px;}
.y15a{bottom:721.800000px;}
.y25{bottom:722.520000px;}
.y119{bottom:723.600000px;}
.y8d{bottom:726.840000px;}
.y6c{bottom:734.400000px;}
.ycf{bottom:735.840000px;}
.y4d{bottom:736.560000px;}
.ya8{bottom:740.520000px;}
.y18b{bottom:744.480000px;}
.y1ad{bottom:748.800000px;}
.y162{bottom:751.680000px;}
.y14c{bottom:752.040000px;}
.y6{bottom:753.120000px;}
.y159{bottom:753.480000px;}
.y4c{bottom:754.560000px;}
.y6b{bottom:756.000000px;}
.y8c{bottom:759.240000px;}
.y24{bottom:765.720000px;}
.y129{bottom:767.160000px;}
.yce{bottom:768.240000px;}
.ya7{bottom:770.760000px;}
.y4b{bottom:772.560000px;}
.y18a{bottom:776.880000px;}
.y6a{bottom:777.240000px;}
.y14b{bottom:784.440000px;}
.y4a{bottom:790.920000px;}
.y23{bottom:791.280000px;}
.ya6{bottom:792.360000px;}
.y128{bottom:794.160000px;}
.y5{bottom:795.240000px;}
.y8b{bottom:798.840000px;}
.ybc{bottom:800.640000px;}
.y158{bottom:802.440000px;}
.y69{bottom:806.040000px;}
.y49{bottom:808.920000px;}
.ya5{bottom:813.600000px;}
.y14a{bottom:816.120000px;}
.y189{bottom:821.160000px;}
.y48{bottom:826.920000px;}
.y68{bottom:827.640000px;}
.y8a{bottom:829.440000px;}
.ybb{bottom:833.040000px;}
.y157{bottom:834.840000px;}
.ya4{bottom:835.200000px;}
.y22{bottom:835.560000px;}
.y4{bottom:837.000000px;}
.y47{bottom:845.280000px;}
.y188{bottom:853.560000px;}
.y21{bottom:856.440000px;}
.y89{bottom:860.040000px;}
.y46{bottom:863.280000px;}
.yba{bottom:865.440000px;}
.y156{bottom:867.240000px;}
.y112{bottom:873.360000px;}
.y20{bottom:876.960000px;}
.y67{bottom:877.680000px;}
.y3{bottom:879.120000px;}
.y45{bottom:881.280000px;}
.y88{bottom:890.640000px;}
.y187{bottom:896.400000px;}
.y1f{bottom:897.840000px;}
.y66{bottom:899.280000px;}
.y44{bottom:899.640000px;}
.y111{bottom:900.360000px;}
.y16{bottom:933.000000px;}
.y87{bottom:951.480000px;}
.hd{height:37.352813px;}
.h15{height:38.960640px;}
.h2{height:40.310156px;}
.h1c{height:41.284688px;}
.hb{height:42.229688px;}
.hc{height:44.024063px;}
.h9{height:44.149219px;}
.h14{height:44.760960px;}
.h4{height:47.545313px;}
.h1f{height:49.472640px;}
.h19{height:49.533120px;}
.h1b{height:49.878281px;}
.h18{height:50.863680px;}
.h8{height:51.827344px;}
.hf{height:54.184320px;}
.h1e{height:54.250560px;}
.h17{height:55.177920px;}
.h5{height:57.000000px;}
.h10{height:58.896000px;}
.h13{height:59.976000px;}
.he{height:60.465234px;}
.ha{height:63.175781px;}
.h16{height:65.396160px;}
.h6{height:69.572160px;}
.h12{height:71.568000px;}
.h11{height:85.983840px;}
.h3{height:112.292578px;}
.h7{height:112.500000px;}
.h20{height:183.000000px;}
.h1d{height:379.500000px;}
.h1a{height:681.000000px;}
.h0{height:1020.600037px;}
.h1{height:1020.750000px;}
.w3{width:244.500000px;}
.w5{width:277.500000px;}
.w2{width:486.000000px;}
.w6{width:558.000000px;}
.w4{width:562.500000px;}
.w0{width:722.880020px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x8{left:3.000000px;}
.x7{left:10.799928px;}
.xd{left:18.929076px;}
.x5{left:23.892696px;}
.xb{left:33.108756px;}
.xa{left:41.866332px;}
.xc{left:49.693344px;}
.x9{left:61.815300px;}
.x3{left:84.959856px;}
.x30{left:87.000000px;}
.x6{left:101.790540px;}
.x1a{left:112.175892px;}
.x26{left:116.834832px;}
.x4{left:126.000000px;}
.xf{left:128.475972px;}
.x1b{left:131.619852px;}
.x10{left:234.702036px;}
.x15{left:257.743656px;}
.x29{left:267.719964px;}
.x13{left:271.923336px;}
.x1c{left:278.549208px;}
.x12{left:280.680912px;}
.x16{left:285.494760px;}
.x14{left:288.507924px;}
.x11{left:300.629880px;}
.x25{left:319.226076px;}
.x1e{left:322.081056px;}
.x19{left:332.075304px;}
.x18{left:335.590920px;}
.x2{left:339.106536px;}
.x21{left:341.264304px;}
.x2a{left:347.759748px;}
.x23{left:352.211796px;}
.xe{left:359.122176px;}
.x1{left:361.372320px;}
.x2b{left:384.839640px;}
.x1d{left:402.386760px;}
.x20{left:411.835680px;}
.x2e{left:418.680000px;}
.x2d{left:420.119640px;}
.x1f{left:466.002000px;}
.x22{left:469.919880px;}
.x27{left:474.720000px;}
.x17{left:485.403480px;}
.x2f{left:518.040000px;}
.x28{left:523.440000px;}
.x2c{left:525.240000px;}
.x31{left:537.600000px;}
.x24{left:637.785000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls24{letter-spacing:-0.505856pt;}
.ls27{letter-spacing:-0.471808pt;}
.ls25{letter-spacing:-0.325888pt;}
.ls28{letter-spacing:-0.311296pt;}
.ls26{letter-spacing:-0.306432pt;}
.ls3c{letter-spacing:-0.301056pt;}
.ls16{letter-spacing:-0.275968pt;}
.ls3a{letter-spacing:-0.274176pt;}
.lse{letter-spacing:-0.259072pt;}
.ls34{letter-spacing:-0.258048pt;}
.ls33{letter-spacing:-0.236544pt;}
.lsb{letter-spacing:-0.230912pt;}
.ls3b{letter-spacing:-0.225792pt;}
.ls13{letter-spacing:-0.219648pt;}
.ls17{letter-spacing:-0.215040pt;}
.ls11{letter-spacing:-0.214016pt;}
.ls3d{letter-spacing:-0.209664pt;}
.ls40{letter-spacing:-0.204288pt;}
.lsc{letter-spacing:-0.202752pt;}
.ls1a{letter-spacing:-0.188416pt;}
.ls2b{letter-spacing:-0.176640pt;}
.ls29{letter-spacing:-0.175104pt;}
.ls35{letter-spacing:-0.172032pt;}
.ls15{letter-spacing:-0.168960pt;}
.ls18{letter-spacing:-0.158976pt;}
.lsd{letter-spacing:-0.157696pt;}
.ls1d{letter-spacing:-0.153088pt;}
.ls6{letter-spacing:-0.147200pt;}
.ls23{letter-spacing:-0.145408pt;}
.ls3e{letter-spacing:-0.145152pt;}
.ls21{letter-spacing:-0.141312pt;}
.ls4{letter-spacing:-0.135424pt;}
.ls5{letter-spacing:-0.129536pt;}
.ls22{letter-spacing:-0.127232pt;}
.ls1c{letter-spacing:-0.123648pt;}
.ls10{letter-spacing:-0.118272pt;}
.ls20{letter-spacing:-0.117760pt;}
.ls1f{letter-spacing:-0.111872pt;}
.ls12{letter-spacing:-0.107008pt;}
.ls19{letter-spacing:-0.105984pt;}
.ls1b{letter-spacing:-0.100096pt;}
.lsf{letter-spacing:-0.095744pt;}
.ls9{letter-spacing:-0.094208pt;}
.ls3f{letter-spacing:-0.088320pt;}
.ls45{letter-spacing:-0.082432pt;}
.ls2f{letter-spacing:-0.076544pt;}
.ls1e{letter-spacing:-0.070656pt;}
.ls2c{letter-spacing:-0.064768pt;}
.ls2a{letter-spacing:-0.058880pt;}
.ls46{letter-spacing:-0.052992pt;}
.lsa{letter-spacing:-0.047104pt;}
.ls36{letter-spacing:-0.041216pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000512pt;}
.ls39{letter-spacing:0.031488pt;}
.ls1{letter-spacing:0.089856pt;}
.ls30{letter-spacing:0.103680pt;}
.ls43{letter-spacing:0.138240pt;}
.ls2e{letter-spacing:0.152064pt;}
.ls42{letter-spacing:0.158976pt;}
.ls32{letter-spacing:0.186624pt;}
.ls3{letter-spacing:0.244992pt;}
.ls0{letter-spacing:0.296960pt;}
.ls38{letter-spacing:1.765632pt;}
.ls37{letter-spacing:4.467456pt;}
.ls8{letter-spacing:14.894080pt;}
.ls41{letter-spacing:15.969664pt;}
.ls31{letter-spacing:17.602944pt;}
.ls2d{letter-spacing:32.647296pt;}
.ls44{letter-spacing:745.280000pt;}
.ls14{letter-spacing:749.775360pt;}
.ws16{word-spacing:-14.528000pt;}
.ws3{word-spacing:-14.080000pt;}
.ws2{word-spacing:-13.972992pt;}
.ws5{word-spacing:-13.922304pt;}
.ws17{word-spacing:-13.888000pt;}
.ws4{word-spacing:-13.860352pt;}
.ws1a{word-spacing:-13.365760pt;}
.ws7{word-spacing:-13.318656pt;}
.ws1b{word-spacing:-13.300992pt;}
.wsb{word-spacing:-13.295104pt;}
.ws8{word-spacing:-13.259776pt;}
.wsc{word-spacing:-13.253888pt;}
.wse{word-spacing:-13.248000pt;}
.wsa{word-spacing:-13.242112pt;}
.ws15{word-spacing:-13.236224pt;}
.ws6{word-spacing:-13.224960pt;}
.wsd{word-spacing:-13.218560pt;}
.ws9{word-spacing:-13.212672pt;}
.ws19{word-spacing:-11.999232pt;}
.ws18{word-spacing:-11.977728pt;}
.ws11{word-spacing:-11.138560pt;}
.ws14{word-spacing:-10.963456pt;}
.ws12{word-spacing:-10.832128pt;}
.ws13{word-spacing:-10.827264pt;}
.ws10{word-spacing:-10.812672pt;}
.wsf{word-spacing:-10.632704pt;}
.ws0{word-spacing:-0.158976pt;}
.ws1{word-spacing:0.000000pt;}
._7{margin-left:-13.170048pt;}
._b{margin-left:-12.229120pt;}
._6{margin-left:-9.514112pt;}
._8{margin-left:-8.617984pt;}
._a{margin-left:-5.016320pt;}
._9{margin-left:-3.815424pt;}
._14{margin-left:-2.842112pt;}
._0{margin-left:-1.279488pt;}
._1{width:0.942080pt;}
._12{width:1.894400pt;}
._2{width:2.816000pt;}
._1b{width:3.875840pt;}
._13{width:4.779520pt;}
._4{width:5.688320pt;}
._c{width:6.735360pt;}
._11{width:8.125440pt;}
._d{width:9.303040pt;}
._10{width:10.304000pt;}
._15{width:11.893760pt;}
._1f{width:12.883200pt;}
._18{width:14.237184pt;}
._3{width:15.221760pt;}
._1a{width:16.723200pt;}
._16{width:17.664000pt;}
._17{width:18.900480pt;}
._1c{width:20.204800pt;}
._21{width:21.817600pt;}
._5{width:22.993920pt;}
._19{width:24.468480pt;}
._1d{width:25.520640pt;}
._f{width:26.790400pt;}
._e{width:27.909120pt;}
._23{width:29.164800pt;}
._22{width:30.105600pt;}
._26{width:31.091200pt;}
._1e{width:32.275200pt;}
._24{width:33.619200pt;}
._25{width:36.390400pt;}
._28{width:38.700800pt;}
._20{width:47.641600pt;}
._27{width:1309.390592pt;}
.fs5{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs7{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs3{font-size:74.240000pt;}
.fs8{font-size:80.640000pt;}
.fs9{font-size:90.880000pt;}
.fs1{font-size:149.760000pt;}
.y19{bottom:-27.413333pt;}
.y0{bottom:0.000000pt;}
.y194{bottom:9.760000pt;}
.y12b{bottom:10.026667pt;}
.y114{bottom:10.240000pt;}
.y18{bottom:10.666667pt;}
.y12c{bottom:11.626667pt;}
.y1e{bottom:17.280000pt;}
.y17{bottom:33.066667pt;}
.y1d{bottom:33.920000pt;}
.y1c{bottom:50.240000pt;}
.y2{bottom:50.880000pt;}
.y1{bottom:65.920000pt;}
.y1b{bottom:66.880000pt;}
.ycd{bottom:82.880000pt;}
.y1a{bottom:83.840000pt;}
.ye0{bottom:85.120000pt;}
.y86{bottom:85.760000pt;}
.ya3{bottom:87.040000pt;}
.y180{bottom:87.680000pt;}
.y101{bottom:88.000000pt;}
.y110{bottom:88.320000pt;}
.y133{bottom:88.640000pt;}
.y43{bottom:89.280000pt;}
.y16c{bottom:90.560000pt;}
.y19a{bottom:91.200000pt;}
.y13f{bottom:92.480000pt;}
.y186{bottom:93.440000pt;}
.y1ac{bottom:93.760000pt;}
.yf0{bottom:94.080000pt;}
.y175{bottom:96.320000pt;}
.y116{bottom:98.560000pt;}
.y85{bottom:104.640000pt;}
.y42{bottom:105.280000pt;}
.ya2{bottom:105.920000pt;}
.y161{bottom:106.880000pt;}
.y127{bottom:108.800000pt;}
.ycc{bottom:111.680000pt;}
.ydf{bottom:113.920000pt;}
.yb9{bottom:114.560000pt;}
.y15{bottom:116.800000pt;}
.y132{bottom:117.440000pt;}
.y16b{bottom:119.360000pt;}
.y17f{bottom:119.680000pt;}
.y199{bottom:120.000000pt;}
.y10f{bottom:120.320000pt;}
.y41{bottom:121.280000pt;}
.y1ab{bottom:122.560000pt;}
.yef{bottom:122.880000pt;}
.y160{bottom:123.200000pt;}
.y84{bottom:123.840000pt;}
.ya1{bottom:125.120000pt;}
.y174{bottom:125.760000pt;}
.y115{bottom:132.480000pt;}
.y149{bottom:136.000000pt;}
.y171{bottom:137.280000pt;}
.y40{bottom:137.600000pt;}
.ycb{bottom:140.480000pt;}
.y191{bottom:140.800000pt;}
.yde{bottom:142.720000pt;}
.yb8{bottom:143.360000pt;}
.ya0{bottom:144.000000pt;}
.y100{bottom:145.600000pt;}
.y16a{bottom:148.160000pt;}
.y198{bottom:148.800000pt;}
.y83{bottom:149.440000pt;}
.y13e{bottom:150.080000pt;}
.y1aa{bottom:151.360000pt;}
.y17e{bottom:151.680000pt;}
.y113{bottom:152.000000pt;}
.y15f{bottom:153.280000pt;}
.y3f{bottom:153.600000pt;}
.y10e{bottom:154.880000pt;}
.y170{bottom:161.280000pt;}
.y14{bottom:163.840000pt;}
.y148{bottom:164.800000pt;}
.y126{bottom:166.400000pt;}
.y190{bottom:167.040000pt;}
.yee{bottom:167.680000pt;}
.y82{bottom:168.320000pt;}
.y3e{bottom:169.600000pt;}
.ydd{bottom:171.520000pt;}
.yb7{bottom:172.160000pt;}
.yff{bottom:174.400000pt;}
.y185{bottom:176.000000pt;}
.y118{bottom:176.960000pt;}
.yca{bottom:177.280000pt;}
.y197{bottom:177.600000pt;}
.y9f{bottom:178.880000pt;}
.y1a9{bottom:180.160000pt;}
.y10d{bottom:183.680000pt;}
.y13{bottom:184.000000pt;}
.y3d{bottom:185.600000pt;}
.y16f{bottom:190.720000pt;}
.y65{bottom:193.600000pt;}
.y81{bottom:194.240000pt;}
.y125{bottom:195.200000pt;}
.yed{bottom:196.480000pt;}
.y131{bottom:197.120000pt;}
.y9e{bottom:198.080000pt;}
.ydc{bottom:200.320000pt;}
.yb6{bottom:200.960000pt;}
.y3c{bottom:201.920000pt;}
.y169{bottom:205.760000pt;}
.yc9{bottom:206.080000pt;}
.y117{bottom:206.720000pt;}
.y13d{bottom:207.680000pt;}
.y1a8{bottom:208.960000pt;}
.y196{bottom:211.840000pt;}
.y10c{bottom:212.480000pt;}
.y80{bottom:213.120000pt;}
.yfe{bottom:214.080000pt;}
.y1b9{bottom:214.400000pt;}
.y64{bottom:216.640000pt;}
.y9d{bottom:216.960000pt;}
.y3b{bottom:217.920000pt;}
.y17d{bottom:218.240000pt;}
.y12{bottom:221.440000pt;}
.y147{bottom:222.400000pt;}
.y124{bottom:224.000000pt;}
.yec{bottom:225.280000pt;}
.y130{bottom:225.920000pt;}
.ydb{bottom:229.120000pt;}
.yb5{bottom:229.760000pt;}
.y7f{bottom:232.000000pt;}
.y3a{bottom:233.920000pt;}
.yc8{bottom:234.880000pt;}
.y168{bottom:235.200000pt;}
.y9c{bottom:235.840000pt;}
.y13c{bottom:236.480000pt;}
.y195{bottom:237.120000pt;}
.y1a7{bottom:237.760000pt;}
.y63{bottom:238.720000pt;}
.y10b{bottom:241.280000pt;}
.y1b8{bottom:241.600000pt;}
.yfd{bottom:242.880000pt;}
.y17c{bottom:247.040000pt;}
.y146{bottom:251.200000pt;}
.y123{bottom:252.800000pt;}
.yeb{bottom:254.080000pt;}
.y12f{bottom:254.720000pt;}
.y9b{bottom:255.040000pt;}
.y62{bottom:257.280000pt;}
.y7e{bottom:257.600000pt;}
.yda{bottom:257.920000pt;}
.yb4{bottom:258.560000pt;}
.y11{bottom:258.880000pt;}
.y193{bottom:260.000000pt;}
.yc7{bottom:263.680000pt;}
.y13b{bottom:265.280000pt;}
.y1a6{bottom:266.560000pt;}
.y10a{bottom:270.080000pt;}
.y167{bottom:271.360000pt;}
.yfc{bottom:271.680000pt;}
.y9a{bottom:273.920000pt;}
.y61{bottom:275.520000pt;}
.y17b{bottom:275.840000pt;}
.y7d{bottom:276.800000pt;}
.y145{bottom:279.360000pt;}
.y155{bottom:280.000000pt;}
.yea{bottom:282.880000pt;}
.yd9{bottom:286.720000pt;}
.yb3{bottom:287.360000pt;}
.y12e{bottom:288.960000pt;}
.yc6{bottom:292.480000pt;}
.y99{bottom:292.800000pt;}
.y60{bottom:294.080000pt;}
.y1a5{bottom:295.360000pt;}
.y7c{bottom:295.680000pt;}
.y10{bottom:296.000000pt;}
.y122{bottom:297.600000pt;}
.yfb{bottom:300.480000pt;}
.y39{bottom:300.800000pt;}
.y17a{bottom:304.640000pt;}
.y154{bottom:308.800000pt;}
.ye9{bottom:311.680000pt;}
.y98{bottom:312.000000pt;}
.y5f{bottom:312.320000pt;}
.y12d{bottom:313.600000pt;}
.y109{bottom:314.880000pt;}
.yd8{bottom:315.520000pt;}
.yb2{bottom:316.160000pt;}
.y38{bottom:317.120000pt;}
.y7b{bottom:321.280000pt;}
.y13a{bottom:322.880000pt;}
.y1a4{bottom:324.160000pt;}
.y1b7{bottom:325.440000pt;}
.y121{bottom:326.400000pt;}
.yfa{bottom:329.280000pt;}
.y5e{bottom:330.880000pt;}
.y12a{bottom:333.333333pt;}
.yf{bottom:333.440000pt;}
.y37{bottom:333.760000pt;}
.y153{bottom:337.600000pt;}
.y7a{bottom:340.480000pt;}
.y108{bottom:343.680000pt;}
.yd7{bottom:344.320000pt;}
.yb1{bottom:344.960000pt;}
.y5d{bottom:349.120000pt;}
.y97{bottom:349.760000pt;}
.yc5{bottom:350.080000pt;}
.y139{bottom:351.680000pt;}
.y1b6{bottom:352.000000pt;}
.y36{bottom:352.320000pt;}
.y120{bottom:355.200000pt;}
.ye8{bottom:356.480000pt;}
.yf9{bottom:358.080000pt;}
.y179{bottom:362.240000pt;}
.y79{bottom:366.080000pt;}
.y152{bottom:366.400000pt;}
.y5c{bottom:367.680000pt;}
.y1a3{bottom:368.960000pt;}
.y35{bottom:370.560000pt;}
.ye{bottom:370.880000pt;}
.y107{bottom:372.480000pt;}
.yd6{bottom:373.120000pt;}
.yb0{bottom:373.760000pt;}
.y1b5{bottom:378.240000pt;}
.yc4{bottom:378.880000pt;}
.y138{bottom:380.480000pt;}
.y173{bottom:383.040000pt;}
.y11f{bottom:384.000000pt;}
.y78{bottom:384.960000pt;}
.y5b{bottom:385.280000pt;}
.yf8{bottom:386.880000pt;}
.y34{bottom:389.120000pt;}
.y178{bottom:391.040000pt;}
.y96{bottom:393.280000pt;}
.y151{bottom:395.200000pt;}
.y1a2{bottom:397.760000pt;}
.y106{bottom:401.280000pt;}
.yaf{bottom:402.560000pt;}
.y172{bottom:407.040000pt;}
.y33{bottom:407.360000pt;}
.yc3{bottom:407.680000pt;}
.yd{bottom:408.000000pt;}
.y137{bottom:409.280000pt;}
.y77{bottom:410.560000pt;}
.y5a{bottom:412.800000pt;}
.y95{bottom:415.360000pt;}
.y177{bottom:417.280000pt;}
.yd5{bottom:417.920000pt;}
.ye7{bottom:421.760000pt;}
.y1b4{bottom:423.360000pt;}
.yf7{bottom:423.680000pt;}
.y150{bottom:424.000000pt;}
.y32{bottom:425.920000pt;}
.y1a1{bottom:426.560000pt;}
.y18f{bottom:427.520000pt;}
.y59{bottom:429.120000pt;}
.y76{bottom:429.760000pt;}
.y105{bottom:430.080000pt;}
.yae{bottom:431.360000pt;}
.y192{bottom:435.520000pt;}
.y94{bottom:437.760000pt;}
.y136{bottom:438.080000pt;}
.y184{bottom:439.680000pt;}
.y11e{bottom:441.600000pt;}
.y31{bottom:444.160000pt;}
.yc2{bottom:444.480000pt;}
.yc{bottom:445.440000pt;}
.yd4{bottom:446.720000pt;}
.y75{bottom:448.640000pt;}
.y1b3{bottom:449.920000pt;}
.y18e{bottom:451.520000pt;}
.y14f{bottom:452.160000pt;}
.yf6{bottom:452.480000pt;}
.y1a0{bottom:455.360000pt;}
.y104{bottom:458.880000pt;}
.y30{bottom:459.840000pt;}
.y93{bottom:460.160000pt;}
.y58{bottom:461.440000pt;}
.y183{bottom:463.680000pt;}
.ye6{bottom:465.280000pt;}
.y135{bottom:466.880000pt;}
.y11d{bottom:470.400000pt;}
.y176{bottom:471.360000pt;}
.yc1{bottom:473.280000pt;}
.y74{bottom:474.240000pt;}
.y2f{bottom:475.520000pt;}
.y1b2{bottom:476.160000pt;}
.y57{bottom:477.440000pt;}
.yf5{bottom:481.280000pt;}
.yb{bottom:482.880000pt;}
.y19f{bottom:484.160000pt;}
.y92{bottom:486.400000pt;}
.y103{bottom:487.680000pt;}
.yad{bottom:488.960000pt;}
.y2e{bottom:491.520000pt;}
.y56{bottom:493.760000pt;}
.ye5{bottom:494.080000pt;}
.y134{bottom:495.360000pt;}
.y144{bottom:495.680000pt;}
.y11c{bottom:499.200000pt;}
.y73{bottom:499.840000pt;}
.y91{bottom:502.080000pt;}
.y1b1{bottom:502.720000pt;}
.yd3{bottom:504.320000pt;}
.y2d{bottom:507.520000pt;}
.y55{bottom:509.760000pt;}
.yf4{bottom:510.080000pt;}
.y182{bottom:511.680000pt;}
.y19e{bottom:512.960000pt;}
.y166{bottom:516.480000pt;}
.yac{bottom:517.760000pt;}
.y15e{bottom:518.080000pt;}
.y72{bottom:519.040000pt;}
.ya{bottom:520.000000pt;}
.ye4{bottom:522.880000pt;}
.y2c{bottom:523.840000pt;}
.y102{bottom:524.160000pt;}
.y143{bottom:524.480000pt;}
.y54{bottom:525.760000pt;}
.y90{bottom:528.000000pt;}
.yc0{bottom:530.880000pt;}
.yd2{bottom:533.120000pt;}
.y71{bottom:537.920000pt;}
.yf3{bottom:538.880000pt;}
.y2b{bottom:540.480000pt;}
.y181{bottom:541.120000pt;}
.y19d{bottom:541.760000pt;}
.y53{bottom:542.080000pt;}
.y165{bottom:545.280000pt;}
.yab{bottom:546.560000pt;}
.y1b0{bottom:547.840000pt;}
.y8f{bottom:550.400000pt;}
.ye3{bottom:551.680000pt;}
.y142{bottom:553.280000pt;}
.y15d{bottom:555.200000pt;}
.y2a{bottom:556.800000pt;}
.y9{bottom:557.440000pt;}
.y52{bottom:558.080000pt;}
.ybf{bottom:559.680000pt;}
.yd1{bottom:561.920000pt;}
.y70{bottom:563.520000pt;}
.yf2{bottom:567.680000pt;}
.y19c{bottom:570.560000pt;}
.y29{bottom:573.440000pt;}
.y51{bottom:574.080000pt;}
.yaa{bottom:575.360000pt;}
.ye2{bottom:580.480000pt;}
.y141{bottom:582.080000pt;}
.y6f{bottom:582.720000pt;}
.y15c{bottom:584.000000pt;}
.y11b{bottom:585.600000pt;}
.y16e{bottom:587.520000pt;}
.ybe{bottom:588.480000pt;}
.y28{bottom:590.400000pt;}
.y8{bottom:594.880000pt;}
.yf1{bottom:596.480000pt;}
.y8e{bottom:600.000000pt;}
.y1af{bottom:600.640000pt;}
.y164{bottom:602.880000pt;}
.y18d{bottom:604.160000pt;}
.y50{bottom:606.400000pt;}
.y19b{bottom:607.680000pt;}
.yd0{bottom:608.000000pt;}
.y6e{bottom:608.320000pt;}
.y27{bottom:609.280000pt;}
.y140{bottom:610.240000pt;}
.y14e{bottom:610.880000pt;}
.y15b{bottom:612.800000pt;}
.ya9{bottom:613.440000pt;}
.y11a{bottom:614.400000pt;}
.ybd{bottom:617.280000pt;}
.y16d{bottom:619.520000pt;}
.y4f{bottom:622.400000pt;}
.ye1{bottom:625.280000pt;}
.y26{bottom:625.920000pt;}
.y1ae{bottom:626.880000pt;}
.y6d{bottom:627.200000pt;}
.y163{bottom:631.680000pt;}
.y7{bottom:632.000000pt;}
.y18c{bottom:632.960000pt;}
.y4e{bottom:638.720000pt;}
.y14d{bottom:639.680000pt;}
.y15a{bottom:641.600000pt;}
.y25{bottom:642.240000pt;}
.y119{bottom:643.200000pt;}
.y8d{bottom:646.080000pt;}
.y6c{bottom:652.800000pt;}
.ycf{bottom:654.080000pt;}
.y4d{bottom:654.720000pt;}
.ya8{bottom:658.240000pt;}
.y18b{bottom:661.760000pt;}
.y1ad{bottom:665.600000pt;}
.y162{bottom:668.160000pt;}
.y14c{bottom:668.480000pt;}
.y6{bottom:669.440000pt;}
.y159{bottom:669.760000pt;}
.y4c{bottom:670.720000pt;}
.y6b{bottom:672.000000pt;}
.y8c{bottom:674.880000pt;}
.y24{bottom:680.640000pt;}
.y129{bottom:681.920000pt;}
.yce{bottom:682.880000pt;}
.ya7{bottom:685.120000pt;}
.y4b{bottom:686.720000pt;}
.y18a{bottom:690.560000pt;}
.y6a{bottom:690.880000pt;}
.y14b{bottom:697.280000pt;}
.y4a{bottom:703.040000pt;}
.y23{bottom:703.360000pt;}
.ya6{bottom:704.320000pt;}
.y128{bottom:705.920000pt;}
.y5{bottom:706.880000pt;}
.y8b{bottom:710.080000pt;}
.ybc{bottom:711.680000pt;}
.y158{bottom:713.280000pt;}
.y69{bottom:716.480000pt;}
.y49{bottom:719.040000pt;}
.ya5{bottom:723.200000pt;}
.y14a{bottom:725.440000pt;}
.y189{bottom:729.920000pt;}
.y48{bottom:735.040000pt;}
.y68{bottom:735.680000pt;}
.y8a{bottom:737.280000pt;}
.ybb{bottom:740.480000pt;}
.y157{bottom:742.080000pt;}
.ya4{bottom:742.400000pt;}
.y22{bottom:742.720000pt;}
.y4{bottom:744.000000pt;}
.y47{bottom:751.360000pt;}
.y188{bottom:758.720000pt;}
.y21{bottom:761.280000pt;}
.y89{bottom:764.480000pt;}
.y46{bottom:767.360000pt;}
.yba{bottom:769.280000pt;}
.y156{bottom:770.880000pt;}
.y112{bottom:776.320000pt;}
.y20{bottom:779.520000pt;}
.y67{bottom:780.160000pt;}
.y3{bottom:781.440000pt;}
.y45{bottom:783.360000pt;}
.y88{bottom:791.680000pt;}
.y187{bottom:796.800000pt;}
.y1f{bottom:798.080000pt;}
.y66{bottom:799.360000pt;}
.y44{bottom:799.680000pt;}
.y111{bottom:800.320000pt;}
.y16{bottom:829.333333pt;}
.y87{bottom:845.760000pt;}
.hd{height:33.202500pt;}
.h15{height:34.631680pt;}
.h2{height:35.831250pt;}
.h1c{height:36.697500pt;}
.hb{height:37.537500pt;}
.hc{height:39.132500pt;}
.h9{height:39.243750pt;}
.h14{height:39.787520pt;}
.h4{height:42.262500pt;}
.h1f{height:43.975680pt;}
.h19{height:44.029440pt;}
.h1b{height:44.336250pt;}
.h18{height:45.212160pt;}
.h8{height:46.068750pt;}
.hf{height:48.163840pt;}
.h1e{height:48.222720pt;}
.h17{height:49.047040pt;}
.h5{height:50.666667pt;}
.h10{height:52.352000pt;}
.h13{height:53.312000pt;}
.he{height:53.746875pt;}
.ha{height:56.156250pt;}
.h16{height:58.129920pt;}
.h6{height:61.841920pt;}
.h12{height:63.616000pt;}
.h11{height:76.430080pt;}
.h3{height:99.815625pt;}
.h7{height:100.000000pt;}
.h20{height:162.666667pt;}
.h1d{height:337.333333pt;}
.h1a{height:605.333333pt;}
.h0{height:907.200033pt;}
.h1{height:907.333333pt;}
.w3{width:217.333333pt;}
.w5{width:246.666667pt;}
.w2{width:432.000000pt;}
.w6{width:496.000000pt;}
.w4{width:500.000000pt;}
.w0{width:642.560018pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x8{left:2.666667pt;}
.x7{left:9.599936pt;}
.xd{left:16.825845pt;}
.x5{left:21.237952pt;}
.xb{left:29.430005pt;}
.xa{left:37.214517pt;}
.xc{left:44.171861pt;}
.x9{left:54.946933pt;}
.x3{left:75.519872pt;}
.x30{left:77.333333pt;}
.x6{left:90.480480pt;}
.x1a{left:99.711904pt;}
.x26{left:103.853184pt;}
.x4{left:112.000000pt;}
.xf{left:114.200864pt;}
.x1b{left:116.995424pt;}
.x10{left:208.624032pt;}
.x15{left:229.105472pt;}
.x29{left:237.973301pt;}
.x13{left:241.709632pt;}
.x1c{left:247.599296pt;}
.x12{left:249.494144pt;}
.x16{left:253.773120pt;}
.x14{left:256.451488pt;}
.x11{left:267.226560pt;}
.x25{left:283.756512pt;}
.x1e{left:286.294272pt;}
.x19{left:295.178048pt;}
.x18{left:298.303040pt;}
.x2{left:301.428032pt;}
.x21{left:303.346048pt;}
.x2a{left:309.119776pt;}
.x23{left:313.077152pt;}
.xe{left:319.219712pt;}
.x1{left:321.219840pt;}
.x2b{left:342.079680pt;}
.x1d{left:357.677120pt;}
.x20{left:366.076160pt;}
.x2e{left:372.160000pt;}
.x2d{left:373.439680pt;}
.x1f{left:414.224000pt;}
.x22{left:417.706560pt;}
.x27{left:421.973333pt;}
.x17{left:431.469760pt;}
.x2f{left:460.480000pt;}
.x28{left:465.280000pt;}
.x2c{left:466.880000pt;}
.x31{left:477.866667pt;}
.x24{left:566.920000pt;}
}




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