
    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_0e8ccc7c98741a56ec7992e6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.132000;font-style:normal;font-weight: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_4097d6eba77c27f83a44540b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.960000;font-style:normal;font-weight: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_54b3c9cce95ee907f028b2f6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;font-style:normal;font-weight: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_c12e028122e8cc5c4144714a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.940000;font-style:normal;font-weight: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_00789a02ef809bc931dd650b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.723000;font-style:normal;font-weight: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_40c81acc1735a3f322f086e6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.049805;font-style:normal;font-weight: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_7c4f5c02bca937b22a871ec3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940000;font-style:normal;font-weight: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_78dc23fe4ab72150d3929b8e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.882324;font-style:normal;font-weight: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_70388067143ae08406e36aef.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.082000;font-style:normal;font-weight: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_80988ba0d67ef66f0e974a8b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682129;font-style:normal;font-weight: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_8bef4c4c8339c34834997b88.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.926000;font-style:normal;font-weight: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_19921cf8f02d30f28d54ada6.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.049805;font-style:normal;font-weight: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_560344f74b2be3c13b57e9ce.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.692383;font-style:normal;font-weight: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_7f47c36af9644182e41aaed7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_8635cd30ad18645b87e0e7a4.woff2')format("woff");}.fff{font-family:fff;line-height:1.106000;font-style:normal;font-weight: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_0b65119fe40bf8f022ab1879.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_c95bbd16f9e7db3f3b9c82d4.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_613ca9955445f3a7ed1f3a06.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.051758;font-style:normal;font-weight: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_4278fc4500549e655002e437.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.692383;font-style:normal;font-weight: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_654ee84aefe369af1b921c70.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_dde0ab6d26f8e6592cbe8bda.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.808105;font-style:normal;font-weight: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_a9968af85089e7816ab80c68.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_1307fc46e7edf7e19d236809.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.706055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.625920px;}
.v2{vertical-align:27.285120px;}
.ls18{letter-spacing:-0.985824px;}
.ls13{letter-spacing:-0.937440px;}
.ls19{letter-spacing:-0.858816px;}
.ls14{letter-spacing:-0.840672px;}
.ls2c{letter-spacing:-0.834624px;}
.ls16{letter-spacing:-0.822528px;}
.ls21{letter-spacing:-0.801504px;}
.ls1b{letter-spacing:-0.780192px;}
.ls17{letter-spacing:-0.762048px;}
.ls1e{letter-spacing:-0.761760px;}
.ls20{letter-spacing:-0.755136px;}
.ls15{letter-spacing:-0.743904px;}
.ls47{letter-spacing:-0.735264px;}
.ls1f{letter-spacing:-0.722016px;}
.ls1a{letter-spacing:-0.719712px;}
.ls23{letter-spacing:-0.715392px;}
.ls22{letter-spacing:-0.682272px;}
.ls30{letter-spacing:-0.675648px;}
.ls29{letter-spacing:-0.662400px;}
.ls10{letter-spacing:-0.633600px;}
.lsf{letter-spacing:-0.604800px;}
.lse{letter-spacing:-0.597600px;}
.ls4b{letter-spacing:-0.542880px;}
.ls1c{letter-spacing:-0.467712px;}
.ls32{letter-spacing:-0.342432px;}
.ls2a{letter-spacing:-0.334080px;}
.ls11{letter-spacing:-0.325728px;}
.ls2b{letter-spacing:-0.317376px;}
.ls12{letter-spacing:-0.300672px;}
.ls1d{letter-spacing:-0.292320px;}
.lsd{letter-spacing:-0.266112px;}
.ls31{letter-spacing:-0.242208px;}
.ls7{letter-spacing:-0.185472px;}
.ls8{letter-spacing:-0.158976px;}
.lsa{letter-spacing:-0.125856px;}
.ls9{letter-spacing:-0.052992px;}
.ls0{letter-spacing:0.000000px;}
.ls36{letter-spacing:0.132480px;}
.ls2{letter-spacing:0.133056px;}
.lsc{letter-spacing:0.156816px;}
.ls3{letter-spacing:0.161568px;}
.ls44{letter-spacing:0.198720px;}
.ls4{letter-spacing:0.266112px;}
.ls1{letter-spacing:0.285120px;}
.lsb{letter-spacing:0.346896px;}
.ls33{letter-spacing:0.377568px;}
.ls49{letter-spacing:0.463680px;}
.ls42{letter-spacing:0.655776px;}
.ls2f{letter-spacing:0.662400px;}
.ls3e{letter-spacing:0.794880px;}
.ls39{letter-spacing:0.927360px;}
.ls3b{letter-spacing:1.258560px;}
.ls43{letter-spacing:1.523520px;}
.ls45{letter-spacing:1.854720px;}
.ls24{letter-spacing:2.298528px;}
.ls28{letter-spacing:2.742336px;}
.ls2d{letter-spacing:2.762208px;}
.ls2e{letter-spacing:2.782080px;}
.ls41{letter-spacing:2.967552px;}
.ls5{letter-spacing:3.405024px;}
.ls48{letter-spacing:3.810240px;}
.ls6{letter-spacing:3.974400px;}
.ls40{letter-spacing:4.199616px;}
.ls37{letter-spacing:4.570560px;}
.ls38{letter-spacing:4.968000px;}
.ls3c{letter-spacing:5.729760px;}
.ls26{letter-spacing:5.815872px;}
.ls46{letter-spacing:5.829120px;}
.ls25{letter-spacing:6.094080px;}
.ls27{letter-spacing:6.769728px;}
.ls3f{letter-spacing:7.253280px;}
.ls4a{letter-spacing:8.207136px;}
.ls34{letter-spacing:11.817216px;}
.ls35{letter-spacing:11.856960px;}
.ls3d{letter-spacing:14.109120px;}
.ls3a{letter-spacing:14.440320px;}
.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;}
}
.wsa{word-spacing:-23.218560px;}
.ws1c{word-spacing:-22.976352px;}
.ws22{word-spacing:-22.901184px;}
.ws23{word-spacing:-22.892832px;}
.ws1d{word-spacing:-22.884480px;}
.ws11{word-spacing:-20.016000px;}
.ws24{word-spacing:-19.411200px;}
.ws2{word-spacing:-18.288864px;}
.ws16{word-spacing:-18.255744px;}
.ws7{word-spacing:-17.402400px;}
.ws14{word-spacing:-16.560000px;}
.ws6{word-spacing:-16.547328px;}
.ws21{word-spacing:-15.884352px;}
.ws1e{word-spacing:-15.877728px;}
.ws15{word-spacing:-15.844608px;}
.ws17{word-spacing:-15.837984px;}
.ws1a{word-spacing:-15.804864px;}
.ws18{word-spacing:-15.798240px;}
.ws19{word-spacing:-15.758496px;}
.ws20{word-spacing:-15.725376px;}
.wsc{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.113228px;}
.ws12{word-spacing:-14.339808px;}
.wsf{word-spacing:-14.297472px;}
.wsb{word-spacing:-14.279328px;}
.wsd{word-spacing:-14.182560px;}
.ws4{word-spacing:-13.476672px;}
.ws3{word-spacing:-13.367376px;}
.ws5{word-spacing:-13.210560px;}
.ws8{word-spacing:-0.072000px;}
.ws1f{word-spacing:-0.066240px;}
.ws1b{word-spacing:-0.041760px;}
.wse{word-spacing:-0.038880px;}
.ws1{word-spacing:0.000000px;}
.ws25{word-spacing:0.501120px;}
.ws9{word-spacing:0.561600px;}
.ws10{word-spacing:0.798336px;}
.ws13{word-spacing:0.925344px;}
._14{margin-left:-4.595616px;}
._b{margin-left:-3.556224px;}
._a{margin-left:-2.358720px;}
._9{margin-left:-1.140480px;}
._5{width:1.698879px;}
._8{width:3.669579px;}
._c{width:4.738880px;}
._3{width:6.727561px;}
._6{width:7.950754px;}
._10{width:9.538560px;}
._f{width:10.598400px;}
._e{width:12.038703px;}
._2{width:13.794897px;}
._13{width:14.851008px;}
._16{width:18.480960px;}
._4{width:24.158059px;}
._15{width:25.607721px;}
._1{width:29.152764px;}
._d{width:30.867840px;}
._12{width:37.506240px;}
._11{width:38.617920px;}
._7{width:46.549285px;}
._17{width:101.750697px;}
._0{width:845.197156px;}
.fc4{color:transparent;}
.fc2{color:rgb(65,160,17);}
.fc1{color:rgb(255,101,0);}
.fc3{color:rgb(56,56,56);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:33.977580px;}
.fs3{font-size:38.831520px;}
.fsd{font-size:38.880000px;}
.fse{font-size:41.760000px;}
.fs6{font-size:42.714672px;}
.fs7{font-size:43.685460px;}
.fsa{font-size:47.520000px;}
.fs2{font-size:48.539400px;}
.fs1{font-size:53.393340px;}
.fs5{font-size:54.364128px;}
.fs9{font-size:60.480000px;}
.fs8{font-size:66.240000px;}
.fs0{font-size:67.955160px;}
.fsb{font-size:72.000000px;}
.fsc{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.307155px;}
.y1e{bottom:3.780000px;}
.y49{bottom:3.960000px;}
.y23{bottom:4.260000px;}
.y46{bottom:4.500000px;}
.y1f{bottom:5.220000px;}
.y48{bottom:49.818900px;}
.y22{bottom:51.318900px;}
.y1c{bottom:51.755135px;}
.y47{bottom:52.340340px;}
.y21{bottom:58.458900px;}
.y1b{bottom:65.516055px;}
.y1a{bottom:79.276975px;}
.y19{bottom:93.037895px;}
.y45{bottom:98.087700px;}
.yb6{bottom:98.482260px;}
.y10e{bottom:98.547060px;}
.ya4{bottom:98.781780px;}
.y17b{bottom:101.987940px;}
.y8b{bottom:102.076500px;}
.y18{bottom:104.796565px;}
.y6e{bottom:107.071860px;}
.yd6{bottom:107.155380px;}
.y132{bottom:111.751860px;}
.y44{bottom:116.800500px;}
.yb5{bottom:117.559380px;}
.y10d{bottom:117.624180px;}
.ya3{bottom:117.858900px;}
.y17a{bottom:119.988660px;}
.ye9{bottom:120.037620px;}
.y8a{bottom:121.153620px;}
.y6d{bottom:125.784660px;}
.yd5{bottom:125.868180px;}
.y17{bottom:127.076149px;}
.y14f{bottom:127.199460px;}
.y131{bottom:130.828980px;}
.y43{bottom:135.877620px;}
.yb4{bottom:136.636500px;}
.y10c{bottom:136.701300px;}
.y179{bottom:137.989380px;}
.ye8{bottom:139.114740px;}
.y89{bottom:139.866420px;}
.y6c{bottom:144.861780px;}
.yd4{bottom:144.945300px;}
.y14e{bottom:145.200180px;}
.y130{bottom:149.906100px;}
.ya2{bottom:154.938900px;}
.y42{bottom:154.954740px;}
.yb3{bottom:155.349300px;}
.y10b{bottom:155.414100px;}
.y178{bottom:155.990100px;}
.ye7{bottom:158.191860px;}
.y88{bottom:158.943540px;}
.y14d{bottom:163.200900px;}
.y6b{bottom:163.938900px;}
.yd3{bottom:164.022420px;}
.y12f{bottom:168.618900px;}
.y177{bottom:173.990820px;}
.y41{bottom:174.031860px;}
.y199{bottom:174.371700px;}
.yb2{bottom:174.426420px;}
.y10a{bottom:174.491220px;}
.ye6{bottom:176.904660px;}
.y87{bottom:178.020660px;}
.y14c{bottom:181.201620px;}
.yd2{bottom:183.099540px;}
.y16{bottom:191.803439px;}
.y176{bottom:191.991540px;}
.ya1{bottom:192.101700px;}
.y40{bottom:192.744660px;}
.yb1{bottom:193.503540px;}
.y109{bottom:193.568340px;}
.ye5{bottom:195.981780px;}
.y86{bottom:196.733460px;}
.y14b{bottom:199.202340px;}
.y6a{bottom:201.378900px;}
.yd1{bottom:201.812340px;}
.y15{bottom:202.118062px;}
.y198{bottom:202.457460px;}
.y12e{bottom:206.778900px;}
.y175{bottom:209.992260px;}
.ya0{bottom:211.178820px;}
.y14{bottom:211.583245px;}
.y3f{bottom:211.821780px;}
.yb0{bottom:212.580660px;}
.y108{bottom:212.645460px;}
.ye4{bottom:215.058900px;}
.y85{bottom:215.810580px;}
.y14a{bottom:217.203060px;}
.y13{bottom:220.174718px;}
.yd0{bottom:220.889460px;}
.y174{bottom:227.992980px;}
.y12{bottom:228.778327px;}
.y9f{bottom:230.255940px;}
.y197{bottom:230.543220px;}
.y3e{bottom:230.898900px;}
.yaf{bottom:231.293460px;}
.y107{bottom:231.358260px;}
.ye3{bottom:234.138900px;}
.y84{bottom:234.887700px;}
.y149{bottom:235.203780px;}
.y11{bottom:237.381936px;}
.y69{bottom:238.159380px;}
.ycf{bottom:239.966580px;}
.y10{bottom:245.973410px;}
.y173{bottom:245.993700px;}
.y196{bottom:249.256020px;}
.y9e{bottom:249.333060px;}
.yae{bottom:250.370580px;}
.y106{bottom:250.435380px;}
.y148{bottom:253.204500px;}
.y83{bottom:253.964820px;}
.yf{bottom:254.577018px;}
.y12d{bottom:255.440820px;}
.y68{bottom:257.236500px;}
.y3d{bottom:258.250260px;}
.yce{bottom:258.679380px;}
.ye2{bottom:261.496740px;}
.y172{bottom:263.994420px;}
.y9d{bottom:268.045860px;}
.y195{bottom:268.333140px;}
.yad{bottom:269.447700px;}
.y105{bottom:269.512500px;}
.y147{bottom:271.205220px;}
.ye{bottom:272.269629px;}
.y82{bottom:272.677620px;}
.y12c{bottom:274.153620px;}
.y3c{bottom:275.532420px;}
.y67{bottom:276.313620px;}
.ycd{bottom:277.756500px;}
.ye1{bottom:278.778900px;}
.y171{bottom:281.995140px;}
.y9c{bottom:287.122980px;}
.yac{bottom:288.160500px;}
.y104{bottom:288.225300px;}
.y146{bottom:289.205940px;}
.y81{bottom:291.754740px;}
.y3b{bottom:292.814580px;}
.y12b{bottom:293.230740px;}
.y66{bottom:295.390740px;}
.y194{bottom:296.418900px;}
.ycc{bottom:296.833620px;}
.y170{bottom:299.995860px;}
.ye0{bottom:301.831140px;}
.y9b{bottom:306.200100px;}
.y145{bottom:307.206660px;}
.yab{bottom:307.237620px;}
.y103{bottom:307.302420px;}
.y3a{bottom:310.096740px;}
.y80{bottom:310.831860px;}
.y12a{bottom:312.307860px;}
.y65{bottom:314.103540px;}
.ycb{bottom:315.546420px;}
.y16f{bottom:317.996580px;}
.y193{bottom:324.140340px;}
.y9a{bottom:324.912900px;}
.y144{bottom:325.207380px;}
.yaa{bottom:326.314740px;}
.y102{bottom:326.379540px;}
.y39{bottom:327.378900px;}
.y7f{bottom:329.544660px;}
.y129{bottom:331.020660px;}
.y64{bottom:333.180660px;}
.yca{bottom:334.623540px;}
.y16e{bottom:335.997300px;}
.y143{bottom:343.208100px;}
.y192{bottom:343.217460px;}
.y99{bottom:343.990020px;}
.ya9{bottom:345.391860px;}
.y101{bottom:345.456660px;}
.y7e{bottom:348.621780px;}
.y128{bottom:350.097780px;}
.y63{bottom:352.257780px;}
.yc9{bottom:353.700660px;}
.y16d{bottom:353.998020px;}
.y142{bottom:361.208820px;}
.y98{bottom:363.067140px;}
.y38{bottom:363.738900px;}
.ya8{bottom:364.104660px;}
.y100{bottom:364.169460px;}
.y7d{bottom:367.698900px;}
.y127{bottom:369.174900px;}
.y191{bottom:371.303220px;}
.y62{bottom:371.334900px;}
.y16c{bottom:371.998740px;}
.yc8{bottom:372.777780px;}
.y141{bottom:379.209540px;}
.y97{bottom:381.779940px;}
.ya7{bottom:383.181780px;}
.yff{bottom:383.246580px;}
.y126{bottom:387.887700px;}
.y16b{bottom:389.999460px;}
.y61{bottom:390.047700px;}
.y190{bottom:390.380340px;}
.yc7{bottom:391.490580px;}
.y140{bottom:397.210260px;}
.y96{bottom:400.857060px;}
.ya6{bottom:402.258900px;}
.yfe{bottom:402.323700px;}
.y7c{bottom:405.503220px;}
.y125{bottom:406.964820px;}
.y16a{bottom:408.000180px;}
.yd{bottom:408.774557px;}
.y18f{bottom:409.093140px;}
.y60{bottom:409.124820px;}
.yc6{bottom:410.567700px;}
.y37{bottom:412.698900px;}
.y13f{bottom:415.210980px;}
.y95{bottom:421.010580px;}
.yfd{bottom:421.036500px;}
.y169{bottom:426.000900px;}
.y124{bottom:426.041940px;}
.y7b{bottom:428.178900px;}
.y5f{bottom:428.201940px;}
.yc5{bottom:429.644820px;}
.y36{bottom:432.851700px;}
.y13e{bottom:433.211700px;}
.y18e{bottom:437.187540px;}
.ya5{bottom:439.698900px;}
.y94{bottom:440.087700px;}
.yfc{bottom:440.113620px;}
.y168{bottom:444.001620px;}
.y123{bottom:445.119060px;}
.y5e{bottom:446.914740px;}
.yc4{bottom:448.357620px;}
.y35{bottom:450.133860px;}
.y13d{bottom:451.212420px;}
.y18d{bottom:456.264660px;}
.y93{bottom:459.164820px;}
.yfb{bottom:459.190740px;}
.y167{bottom:462.002340px;}
.y122{bottom:463.831860px;}
.y5d{bottom:465.991860px;}
.yc3{bottom:467.434740px;}
.y13c{bottom:469.213140px;}
.y18c{bottom:474.977460px;}
.y34{bottom:476.412420px;}
.y7a{bottom:476.869620px;}
.y92{bottom:477.877620px;}
.yfa{bottom:477.903540px;}
.y166{bottom:480.003060px;}
.y121{bottom:482.908980px;}
.y5c{bottom:485.068980px;}
.yc2{bottom:486.511860px;}
.y13b{bottom:487.213860px;}
.y33{bottom:493.694580px;}
.y79{bottom:495.582420px;}
.y91{bottom:496.954740px;}
.yf9{bottom:496.980660px;}
.y165{bottom:498.003780px;}
.y120{bottom:501.986100px;}
.y18b{bottom:503.063220px;}
.y5b{bottom:504.146100px;}
.y13a{bottom:505.214580px;}
.yc1{bottom:505.224660px;}
.y32{bottom:510.976740px;}
.y78{bottom:514.659540px;}
.y164{bottom:516.004500px;}
.y90{bottom:516.031860px;}
.yf8{bottom:516.057780px;}
.y11f{bottom:520.698900px;}
.y18a{bottom:522.140340px;}
.y5a{bottom:522.877620px;}
.y139{bottom:523.215300px;}
.yc0{bottom:524.301780px;}
.y31{bottom:528.258900px;}
.y77{bottom:533.736660px;}
.y163{bottom:534.005220px;}
.y8f{bottom:535.108980px;}
.ydf{bottom:535.111860px;}
.yf7{bottom:535.134900px;}
.y138{bottom:541.216020px;}
.y189{bottom:541.217460px;}
.y59{bottom:541.954740px;}
.ybf{bottom:543.378900px;}
.y162{bottom:552.005940px;}
.y76{bottom:552.449460px;}
.y8e{bottom:553.821780px;}
.yde{bottom:553.824660px;}
.yf6{bottom:553.847700px;}
.y11e{bottom:558.858900px;}
.y137{bottom:559.216740px;}
.y58{bottom:561.031860px;}
.y30{bottom:563.898900px;}
.y188{bottom:568.938900px;}
.y161{bottom:570.006660px;}
.y75{bottom:571.526580px;}
.y8d{bottom:572.898900px;}
.ydd{bottom:572.901780px;}
.yf5{bottom:572.924820px;}
.y136{bottom:577.217460px;}
.y57{bottom:579.744660px;}
.ybe{bottom:580.818900px;}
.y2f{bottom:586.218900px;}
.y160{bottom:588.007380px;}
.y74{bottom:590.603700px;}
.yc{bottom:591.440454px;}
.ydc{bottom:591.978900px;}
.yf4{bottom:592.001940px;}
.y135{bottom:595.218180px;}
.y56{bottom:598.821780px;}
.y15f{bottom:606.008100px;}
.y187{bottom:606.018900px;}
.y11d{bottom:607.500660px;}
.y73{bottom:609.316500px;}
.y8c{bottom:610.338900px;}
.ydb{bottom:610.701780px;}
.yf3{bottom:610.714740px;}
.y134{bottom:613.218900px;}
.y2e{bottom:616.096020px;}
.y55{bottom:617.898900px;}
.ybd{bottom:617.921940px;}
.yb{bottom:617.967236px;}
.y15e{bottom:624.008820px;}
.y11c{bottom:626.213460px;}
.y72{bottom:628.393620px;}
.yda{bottom:629.778900px;}
.yf2{bottom:629.791860px;}
.ya{bottom:631.728156px;}
.y2d{bottom:633.378180px;}
.ybc{bottom:636.634740px;}
.y15d{bottom:642.009540px;}
.y186{bottom:642.011700px;}
.y11b{bottom:645.290580px;}
.y71{bottom:647.470740px;}
.yd9{bottom:648.866100px;}
.yf1{bottom:648.868980px;}
.y133{bottom:649.218900px;}
.y54{bottom:655.698900px;}
.ybb{bottom:655.711860px;}
.y9{bottom:658.521905px;}
.y2c{bottom:659.656740px;}
.y15c{bottom:660.010260px;}
.y185{bottom:660.012420px;}
.y11a{bottom:664.367700px;}
.y70{bottom:666.547860px;}
.yd8{bottom:667.578900px;}
.yf0{bottom:667.581780px;}
.y8{bottom:672.282825px;}
.yba{bottom:674.788980px;}
.y2b{bottom:676.932420px;}
.y15b{bottom:678.010980px;}
.y184{bottom:678.013140px;}
.y119{bottom:683.080500px;}
.y6f{bottom:685.260660px;}
.y7{bottom:686.043745px;}
.yef{bottom:686.658900px;}
.yb9{bottom:693.866100px;}
.y2a{bottom:694.214580px;}
.y15a{bottom:696.011700px;}
.y183{bottom:696.013860px;}
.y6{bottom:699.804665px;}
.y118{bottom:702.157620px;}
.y53{bottom:704.337780px;}
.yd7{bottom:705.018900px;}
.y29{bottom:711.496740px;}
.yb8{bottom:712.578900px;}
.y159{bottom:714.012420px;}
.y182{bottom:714.014580px;}
.y117{bottom:721.234740px;}
.y52{bottom:723.414900px;}
.yee{bottom:724.098900px;}
.y28{bottom:728.778900px;}
.y158{bottom:732.013140px;}
.y181{bottom:732.015300px;}
.y116{bottom:740.311860px;}
.y51{bottom:742.127700px;}
.y157{bottom:750.013860px;}
.y180{bottom:750.016020px;}
.yb7{bottom:750.378900px;}
.y115{bottom:759.024660px;}
.yed{bottom:761.191860px;}
.y50{bottom:761.204820px;}
.y5{bottom:763.925212px;}
.y27{bottom:765.146820px;}
.y156{bottom:768.014580px;}
.y17f{bottom:768.016740px;}
.y114{bottom:778.101780px;}
.yec{bottom:780.268980px;}
.y4f{bottom:780.281940px;}
.y4{bottom:784.336030px;}
.y155{bottom:786.015300px;}
.y17e{bottom:786.017460px;}
.y26{bottom:791.058900px;}
.y113{bottom:797.178900px;}
.yeb{bottom:798.981780px;}
.y4e{bottom:798.994740px;}
.y154{bottom:804.016020px;}
.y17d{bottom:804.018180px;}
.y3{bottom:808.411572px;}
.yea{bottom:818.058900px;}
.y4d{bottom:818.071860px;}
.y153{bottom:822.016740px;}
.y17c{bottom:822.018900px;}
.y112{bottom:824.532420px;}
.y2{bottom:832.499249px;}
.y25{bottom:833.898900px;}
.y4c{bottom:837.148980px;}
.y152{bottom:840.017460px;}
.y111{bottom:841.814580px;}
.y4b{bottom:856.226100px;}
.y151{bottom:858.018180px;}
.y110{bottom:859.096740px;}
.y24{bottom:873.498900px;}
.y4a{bottom:874.938900px;}
.y150{bottom:876.018900px;}
.y10f{bottom:876.378900px;}
.y20{bottom:894.018900px;}
.y1d{bottom:909.318900px;}
.he{height:19.500000px;}
.h7{height:28.774156px;}
.h9{height:31.055508px;}
.h12{height:34.737120px;}
.h8{height:35.967695px;}
.h5{height:39.564465px;}
.hb{height:39.928510px;}
.h10{height:43.061760px;}
.h6{height:44.365012px;}
.h19{height:44.893125px;}
.h13{height:47.988281px;}
.hf{height:48.421440px;}
.ha{height:49.688813px;}
.h4{height:50.354774px;}
.h16{height:50.439375px;}
.h17{height:50.465295px;}
.h11{height:55.243125px;}
.h1b{height:55.372500px;}
.h1a{height:55.566917px;}
.h1c{height:56.320909px;}
.h1d{height:56.355469px;}
.h15{height:61.053120px;}
.h3{height:62.111016px;}
.h14{height:62.856000px;}
.h18{height:65.592000px;}
.hc{height:1020.518400px;}
.hd{height:1020.750000px;}
.h2{height:1021.620887px;}
.h0{height:1022.235000px;}
.h1{height:1022.250000px;}
.w8{width:-383.599500px;}
.w5{width:18.000000px;}
.w7{width:84.400500px;}
.w4{width:85.900500px;}
.w6{width:468.000000px;}
.w3{width:552.000000px;}
.w1{width:722.250000px;}
.w0{width:722.355000px;}
.w2{width:722.361150px;}
.x0{left:0.000000px;}
.x6{left:8.280000px;}
.x3{left:37.836462px;}
.x1{left:44.716922px;}
.xc{left:66.272850px;}
.x8{left:84.880650px;}
.x5{left:85.960650px;}
.x12{left:106.178250px;}
.xa{left:110.380650px;}
.x10{left:111.880650px;}
.x2{left:120.389847px;}
.x14{left:131.661930px;}
.xb{left:171.460650px;}
.x9{left:302.329350px;}
.x4{left:354.301215px;}
.xe{left:399.171150px;}
.x13{left:609.617370px;}
.x11{left:619.960650px;}
.x7{left:636.460650px;}
.xd{left:637.960650px;}
.xf{left:1105.960650px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.223040pt;}
.v2{vertical-align:24.253440pt;}
.ls18{letter-spacing:-0.876288pt;}
.ls13{letter-spacing:-0.833280pt;}
.ls19{letter-spacing:-0.763392pt;}
.ls14{letter-spacing:-0.747264pt;}
.ls2c{letter-spacing:-0.741888pt;}
.ls16{letter-spacing:-0.731136pt;}
.ls21{letter-spacing:-0.712448pt;}
.ls1b{letter-spacing:-0.693504pt;}
.ls17{letter-spacing:-0.677376pt;}
.ls1e{letter-spacing:-0.677120pt;}
.ls20{letter-spacing:-0.671232pt;}
.ls15{letter-spacing:-0.661248pt;}
.ls47{letter-spacing:-0.653568pt;}
.ls1f{letter-spacing:-0.641792pt;}
.ls1a{letter-spacing:-0.639744pt;}
.ls23{letter-spacing:-0.635904pt;}
.ls22{letter-spacing:-0.606464pt;}
.ls30{letter-spacing:-0.600576pt;}
.ls29{letter-spacing:-0.588800pt;}
.ls10{letter-spacing:-0.563200pt;}
.lsf{letter-spacing:-0.537600pt;}
.lse{letter-spacing:-0.531200pt;}
.ls4b{letter-spacing:-0.482560pt;}
.ls1c{letter-spacing:-0.415744pt;}
.ls32{letter-spacing:-0.304384pt;}
.ls2a{letter-spacing:-0.296960pt;}
.ls11{letter-spacing:-0.289536pt;}
.ls2b{letter-spacing:-0.282112pt;}
.ls12{letter-spacing:-0.267264pt;}
.ls1d{letter-spacing:-0.259840pt;}
.lsd{letter-spacing:-0.236544pt;}
.ls31{letter-spacing:-0.215296pt;}
.ls7{letter-spacing:-0.164864pt;}
.ls8{letter-spacing:-0.141312pt;}
.lsa{letter-spacing:-0.111872pt;}
.ls9{letter-spacing:-0.047104pt;}
.ls0{letter-spacing:0.000000pt;}
.ls36{letter-spacing:0.117760pt;}
.ls2{letter-spacing:0.118272pt;}
.lsc{letter-spacing:0.139392pt;}
.ls3{letter-spacing:0.143616pt;}
.ls44{letter-spacing:0.176640pt;}
.ls4{letter-spacing:0.236544pt;}
.ls1{letter-spacing:0.253440pt;}
.lsb{letter-spacing:0.308352pt;}
.ls33{letter-spacing:0.335616pt;}
.ls49{letter-spacing:0.412160pt;}
.ls42{letter-spacing:0.582912pt;}
.ls2f{letter-spacing:0.588800pt;}
.ls3e{letter-spacing:0.706560pt;}
.ls39{letter-spacing:0.824320pt;}
.ls3b{letter-spacing:1.118720pt;}
.ls43{letter-spacing:1.354240pt;}
.ls45{letter-spacing:1.648640pt;}
.ls24{letter-spacing:2.043136pt;}
.ls28{letter-spacing:2.437632pt;}
.ls2d{letter-spacing:2.455296pt;}
.ls2e{letter-spacing:2.472960pt;}
.ls41{letter-spacing:2.637824pt;}
.ls5{letter-spacing:3.026688pt;}
.ls48{letter-spacing:3.386880pt;}
.ls6{letter-spacing:3.532800pt;}
.ls40{letter-spacing:3.732992pt;}
.ls37{letter-spacing:4.062720pt;}
.ls38{letter-spacing:4.416000pt;}
.ls3c{letter-spacing:5.093120pt;}
.ls26{letter-spacing:5.169664pt;}
.ls46{letter-spacing:5.181440pt;}
.ls25{letter-spacing:5.416960pt;}
.ls27{letter-spacing:6.017536pt;}
.ls3f{letter-spacing:6.447360pt;}
.ls4a{letter-spacing:7.295232pt;}
.ls34{letter-spacing:10.504192pt;}
.ls35{letter-spacing:10.539520pt;}
.ls3d{letter-spacing:12.541440pt;}
.ls3a{letter-spacing:12.835840pt;}
.wsa{word-spacing:-20.638720pt;}
.ws1c{word-spacing:-20.423424pt;}
.ws22{word-spacing:-20.356608pt;}
.ws23{word-spacing:-20.349184pt;}
.ws1d{word-spacing:-20.341760pt;}
.ws11{word-spacing:-17.792000pt;}
.ws24{word-spacing:-17.254400pt;}
.ws2{word-spacing:-16.256768pt;}
.ws16{word-spacing:-16.227328pt;}
.ws7{word-spacing:-15.468800pt;}
.ws14{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.708736pt;}
.ws21{word-spacing:-14.119424pt;}
.ws1e{word-spacing:-14.113536pt;}
.ws15{word-spacing:-14.084096pt;}
.ws17{word-spacing:-14.078208pt;}
.ws1a{word-spacing:-14.048768pt;}
.ws18{word-spacing:-14.042880pt;}
.ws19{word-spacing:-14.007552pt;}
.ws20{word-spacing:-13.978112pt;}
.wsc{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.433980pt;}
.ws12{word-spacing:-12.746496pt;}
.wsf{word-spacing:-12.708864pt;}
.wsb{word-spacing:-12.692736pt;}
.wsd{word-spacing:-12.606720pt;}
.ws4{word-spacing:-11.979264pt;}
.ws3{word-spacing:-11.882112pt;}
.ws5{word-spacing:-11.742720pt;}
.ws8{word-spacing:-0.064000pt;}
.ws1f{word-spacing:-0.058880pt;}
.ws1b{word-spacing:-0.037120pt;}
.wse{word-spacing:-0.034560pt;}
.ws1{word-spacing:0.000000pt;}
.ws25{word-spacing:0.445440pt;}
.ws9{word-spacing:0.499200pt;}
.ws10{word-spacing:0.709632pt;}
.ws13{word-spacing:0.822528pt;}
._14{margin-left:-4.084992pt;}
._b{margin-left:-3.161088pt;}
._a{margin-left:-2.096640pt;}
._9{margin-left:-1.013760pt;}
._5{width:1.510115pt;}
._8{width:3.261848pt;}
._c{width:4.212338pt;}
._3{width:5.980054pt;}
._6{width:7.067337pt;}
._10{width:8.478720pt;}
._f{width:9.420800pt;}
._e{width:10.701069pt;}
._2{width:12.262131pt;}
._13{width:13.200896pt;}
._16{width:16.427520pt;}
._4{width:21.473831pt;}
._15{width:22.762419pt;}
._1{width:25.913568pt;}
._d{width:27.438080pt;}
._12{width:33.338880pt;}
._11{width:34.327040pt;}
._7{width:41.377142pt;}
._17{width:90.445064pt;}
._0{width:751.286361pt;}
.fs4{font-size:30.202293pt;}
.fs3{font-size:34.516907pt;}
.fsd{font-size:34.560000pt;}
.fse{font-size:37.120000pt;}
.fs6{font-size:37.968597pt;}
.fs7{font-size:38.831520pt;}
.fsa{font-size:42.240000pt;}
.fs2{font-size:43.146133pt;}
.fs1{font-size:47.460747pt;}
.fs5{font-size:48.323669pt;}
.fs9{font-size:53.760000pt;}
.fs8{font-size:58.880000pt;}
.fs0{font-size:60.404587pt;}
.fsb{font-size:64.000000pt;}
.fsc{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.273027pt;}
.y1e{bottom:3.360000pt;}
.y49{bottom:3.520000pt;}
.y23{bottom:3.786667pt;}
.y46{bottom:4.000000pt;}
.y1f{bottom:4.640000pt;}
.y48{bottom:44.283467pt;}
.y22{bottom:45.616800pt;}
.y1c{bottom:46.004565pt;}
.y47{bottom:46.524747pt;}
.y21{bottom:51.963467pt;}
.y1b{bottom:58.236493pt;}
.y1a{bottom:70.468422pt;}
.y19{bottom:82.700351pt;}
.y45{bottom:87.189067pt;}
.yb6{bottom:87.539787pt;}
.y10e{bottom:87.597387pt;}
.ya4{bottom:87.806027pt;}
.y17b{bottom:90.655947pt;}
.y8b{bottom:90.734667pt;}
.y18{bottom:93.152502pt;}
.y6e{bottom:95.174987pt;}
.yd6{bottom:95.249227pt;}
.y132{bottom:99.334987pt;}
.y44{bottom:103.822667pt;}
.yb5{bottom:104.497227pt;}
.y10d{bottom:104.554827pt;}
.ya3{bottom:104.763467pt;}
.y17a{bottom:106.656587pt;}
.ye9{bottom:106.700107pt;}
.y8a{bottom:107.692107pt;}
.y6d{bottom:111.808587pt;}
.yd5{bottom:111.882827pt;}
.y17{bottom:112.956577pt;}
.y14f{bottom:113.066187pt;}
.y131{bottom:116.292427pt;}
.y43{bottom:120.780107pt;}
.yb4{bottom:121.454667pt;}
.y10c{bottom:121.512267pt;}
.y179{bottom:122.657227pt;}
.ye8{bottom:123.657547pt;}
.y89{bottom:124.325707pt;}
.y6c{bottom:128.766027pt;}
.yd4{bottom:128.840267pt;}
.y14e{bottom:129.066827pt;}
.y130{bottom:133.249867pt;}
.ya2{bottom:137.723467pt;}
.y42{bottom:137.737547pt;}
.yb3{bottom:138.088267pt;}
.y10b{bottom:138.145867pt;}
.y178{bottom:138.657867pt;}
.ye7{bottom:140.614987pt;}
.y88{bottom:141.283147pt;}
.y14d{bottom:145.067467pt;}
.y6b{bottom:145.723467pt;}
.yd3{bottom:145.797707pt;}
.y12f{bottom:149.883467pt;}
.y177{bottom:154.658507pt;}
.y41{bottom:154.694987pt;}
.y199{bottom:154.997067pt;}
.yb2{bottom:155.045707pt;}
.y10a{bottom:155.103307pt;}
.ye6{bottom:157.248587pt;}
.y87{bottom:158.240587pt;}
.y14c{bottom:161.068107pt;}
.yd2{bottom:162.755147pt;}
.y16{bottom:170.491946pt;}
.y176{bottom:170.659147pt;}
.ya1{bottom:170.757067pt;}
.y40{bottom:171.328587pt;}
.yb1{bottom:172.003147pt;}
.y109{bottom:172.060747pt;}
.ye5{bottom:174.206027pt;}
.y86{bottom:174.874187pt;}
.y14b{bottom:177.068747pt;}
.y6a{bottom:179.003467pt;}
.yd1{bottom:179.388747pt;}
.y15{bottom:179.660499pt;}
.y198{bottom:179.962187pt;}
.y12e{bottom:183.803467pt;}
.y175{bottom:186.659787pt;}
.ya0{bottom:187.714507pt;}
.y14{bottom:188.073995pt;}
.y3f{bottom:188.286027pt;}
.yb0{bottom:188.960587pt;}
.y108{bottom:189.018187pt;}
.ye4{bottom:191.163467pt;}
.y85{bottom:191.831627pt;}
.y14a{bottom:193.069387pt;}
.y13{bottom:195.710861pt;}
.yd0{bottom:196.346187pt;}
.y174{bottom:202.660427pt;}
.y12{bottom:203.358513pt;}
.y9f{bottom:204.671947pt;}
.y197{bottom:204.927307pt;}
.y3e{bottom:205.243467pt;}
.yaf{bottom:205.594187pt;}
.y107{bottom:205.651787pt;}
.ye3{bottom:208.123467pt;}
.y84{bottom:208.789067pt;}
.y149{bottom:209.070027pt;}
.y11{bottom:211.006165pt;}
.y69{bottom:211.697227pt;}
.ycf{bottom:213.303627pt;}
.y10{bottom:218.643031pt;}
.y173{bottom:218.661067pt;}
.y196{bottom:221.560907pt;}
.y9e{bottom:221.629387pt;}
.yae{bottom:222.551627pt;}
.y106{bottom:222.609227pt;}
.y148{bottom:225.070667pt;}
.y83{bottom:225.746507pt;}
.yf{bottom:226.290683pt;}
.y12d{bottom:227.058507pt;}
.y68{bottom:228.654667pt;}
.y3d{bottom:229.555787pt;}
.yce{bottom:229.937227pt;}
.ye2{bottom:232.441547pt;}
.y172{bottom:234.661707pt;}
.y9d{bottom:238.262987pt;}
.y195{bottom:238.518347pt;}
.yad{bottom:239.509067pt;}
.y105{bottom:239.566667pt;}
.y147{bottom:241.071307pt;}
.ye{bottom:242.017448pt;}
.y82{bottom:242.380107pt;}
.y12c{bottom:243.692107pt;}
.y3c{bottom:244.917707pt;}
.y67{bottom:245.612107pt;}
.ycd{bottom:246.894667pt;}
.ye1{bottom:247.803467pt;}
.y171{bottom:250.662347pt;}
.y9c{bottom:255.220427pt;}
.yac{bottom:256.142667pt;}
.y104{bottom:256.200267pt;}
.y146{bottom:257.071947pt;}
.y81{bottom:259.337547pt;}
.y3b{bottom:260.279627pt;}
.y12b{bottom:260.649547pt;}
.y66{bottom:262.569547pt;}
.y194{bottom:263.483467pt;}
.ycc{bottom:263.852107pt;}
.y170{bottom:266.662987pt;}
.ye0{bottom:268.294347pt;}
.y9b{bottom:272.177867pt;}
.y145{bottom:273.072587pt;}
.yab{bottom:273.100107pt;}
.y103{bottom:273.157707pt;}
.y3a{bottom:275.641547pt;}
.y80{bottom:276.294987pt;}
.y12a{bottom:277.606987pt;}
.y65{bottom:279.203147pt;}
.ycb{bottom:280.485707pt;}
.y16f{bottom:282.663627pt;}
.y193{bottom:288.124747pt;}
.y9a{bottom:288.811467pt;}
.y144{bottom:289.073227pt;}
.yaa{bottom:290.057547pt;}
.y102{bottom:290.115147pt;}
.y39{bottom:291.003467pt;}
.y7f{bottom:292.928587pt;}
.y129{bottom:294.240587pt;}
.y64{bottom:296.160587pt;}
.yca{bottom:297.443147pt;}
.y16e{bottom:298.664267pt;}
.y143{bottom:305.073867pt;}
.y192{bottom:305.082187pt;}
.y99{bottom:305.768907pt;}
.ya9{bottom:307.014987pt;}
.y101{bottom:307.072587pt;}
.y7e{bottom:309.886027pt;}
.y128{bottom:311.198027pt;}
.y63{bottom:313.118027pt;}
.yc9{bottom:314.400587pt;}
.y16d{bottom:314.664907pt;}
.y142{bottom:321.074507pt;}
.y98{bottom:322.726347pt;}
.y38{bottom:323.323467pt;}
.ya8{bottom:323.648587pt;}
.y100{bottom:323.706187pt;}
.y7d{bottom:326.843467pt;}
.y127{bottom:328.155467pt;}
.y191{bottom:330.047307pt;}
.y62{bottom:330.075467pt;}
.y16c{bottom:330.665547pt;}
.yc8{bottom:331.358027pt;}
.y141{bottom:337.075147pt;}
.y97{bottom:339.359947pt;}
.ya7{bottom:340.606027pt;}
.yff{bottom:340.663627pt;}
.y126{bottom:344.789067pt;}
.y16b{bottom:346.666187pt;}
.y61{bottom:346.709067pt;}
.y190{bottom:347.004747pt;}
.yc7{bottom:347.991627pt;}
.y140{bottom:353.075787pt;}
.y96{bottom:356.317387pt;}
.ya6{bottom:357.563467pt;}
.yfe{bottom:357.621067pt;}
.y7c{bottom:360.447307pt;}
.y125{bottom:361.746507pt;}
.y16a{bottom:362.666827pt;}
.yd{bottom:363.355162pt;}
.y18f{bottom:363.638347pt;}
.y60{bottom:363.666507pt;}
.yc6{bottom:364.949067pt;}
.y37{bottom:366.843467pt;}
.y13f{bottom:369.076427pt;}
.y95{bottom:374.231627pt;}
.yfd{bottom:374.254667pt;}
.y169{bottom:378.667467pt;}
.y124{bottom:378.703947pt;}
.y7b{bottom:380.603467pt;}
.y5f{bottom:380.623947pt;}
.yc5{bottom:381.906507pt;}
.y36{bottom:384.757067pt;}
.y13e{bottom:385.077067pt;}
.y18e{bottom:388.611147pt;}
.ya5{bottom:390.843467pt;}
.y94{bottom:391.189067pt;}
.yfc{bottom:391.212107pt;}
.y168{bottom:394.668107pt;}
.y123{bottom:395.661387pt;}
.y5e{bottom:397.257547pt;}
.yc4{bottom:398.540107pt;}
.y35{bottom:400.118987pt;}
.y13d{bottom:401.077707pt;}
.y18d{bottom:405.568587pt;}
.y93{bottom:408.146507pt;}
.yfb{bottom:408.169547pt;}
.y167{bottom:410.668747pt;}
.y122{bottom:412.294987pt;}
.y5d{bottom:414.214987pt;}
.yc3{bottom:415.497547pt;}
.y13c{bottom:417.078347pt;}
.y18c{bottom:422.202187pt;}
.y34{bottom:423.477707pt;}
.y7a{bottom:423.884107pt;}
.y92{bottom:424.780107pt;}
.yfa{bottom:424.803147pt;}
.y166{bottom:426.669387pt;}
.y121{bottom:429.252427pt;}
.y5c{bottom:431.172427pt;}
.yc2{bottom:432.454987pt;}
.y13b{bottom:433.078987pt;}
.y33{bottom:438.839627pt;}
.y79{bottom:440.517707pt;}
.y91{bottom:441.737547pt;}
.yf9{bottom:441.760587pt;}
.y165{bottom:442.670027pt;}
.y120{bottom:446.209867pt;}
.y18b{bottom:447.167307pt;}
.y5b{bottom:448.129867pt;}
.y13a{bottom:449.079627pt;}
.yc1{bottom:449.088587pt;}
.y32{bottom:454.201547pt;}
.y78{bottom:457.475147pt;}
.y164{bottom:458.670667pt;}
.y90{bottom:458.694987pt;}
.yf8{bottom:458.718027pt;}
.y11f{bottom:462.843467pt;}
.y18a{bottom:464.124747pt;}
.y5a{bottom:464.780107pt;}
.y139{bottom:465.080267pt;}
.yc0{bottom:466.046027pt;}
.y31{bottom:469.563467pt;}
.y77{bottom:474.432587pt;}
.y163{bottom:474.671307pt;}
.y8f{bottom:475.652427pt;}
.ydf{bottom:475.654987pt;}
.yf7{bottom:475.675467pt;}
.y138{bottom:481.080907pt;}
.y189{bottom:481.082187pt;}
.y59{bottom:481.737547pt;}
.ybf{bottom:483.003467pt;}
.y162{bottom:490.671947pt;}
.y76{bottom:491.066187pt;}
.y8e{bottom:492.286027pt;}
.yde{bottom:492.288587pt;}
.yf6{bottom:492.309067pt;}
.y11e{bottom:496.763467pt;}
.y137{bottom:497.081547pt;}
.y58{bottom:498.694987pt;}
.y30{bottom:501.243467pt;}
.y188{bottom:505.723467pt;}
.y161{bottom:506.672587pt;}
.y75{bottom:508.023627pt;}
.y8d{bottom:509.243467pt;}
.ydd{bottom:509.246027pt;}
.yf5{bottom:509.266507pt;}
.y136{bottom:513.082187pt;}
.y57{bottom:515.328587pt;}
.ybe{bottom:516.283467pt;}
.y2f{bottom:521.083467pt;}
.y160{bottom:522.673227pt;}
.y74{bottom:524.981067pt;}
.yc{bottom:525.724848pt;}
.ydc{bottom:526.203467pt;}
.yf4{bottom:526.223947pt;}
.y135{bottom:529.082827pt;}
.y56{bottom:532.286027pt;}
.y15f{bottom:538.673867pt;}
.y187{bottom:538.683467pt;}
.y11d{bottom:540.000587pt;}
.y73{bottom:541.614667pt;}
.y8c{bottom:542.523467pt;}
.ydb{bottom:542.846027pt;}
.yf3{bottom:542.857547pt;}
.y134{bottom:545.083467pt;}
.y2e{bottom:547.640907pt;}
.y55{bottom:549.243467pt;}
.ybd{bottom:549.263947pt;}
.yb{bottom:549.304210pt;}
.y15e{bottom:554.674507pt;}
.y11c{bottom:556.634187pt;}
.y72{bottom:558.572107pt;}
.yda{bottom:559.803467pt;}
.yf2{bottom:559.814987pt;}
.ya{bottom:561.536139pt;}
.y2d{bottom:563.002827pt;}
.ybc{bottom:565.897547pt;}
.y15d{bottom:570.675147pt;}
.y186{bottom:570.677067pt;}
.y11b{bottom:573.591627pt;}
.y71{bottom:575.529547pt;}
.yd9{bottom:576.769867pt;}
.yf1{bottom:576.772427pt;}
.y133{bottom:577.083467pt;}
.y54{bottom:582.843467pt;}
.ybb{bottom:582.854987pt;}
.y9{bottom:585.352804pt;}
.y2c{bottom:586.361547pt;}
.y15c{bottom:586.675787pt;}
.y185{bottom:586.677707pt;}
.y11a{bottom:590.549067pt;}
.y70{bottom:592.486987pt;}
.yd8{bottom:593.403467pt;}
.yf0{bottom:593.406027pt;}
.y8{bottom:597.584733pt;}
.yba{bottom:599.812427pt;}
.y2b{bottom:601.717707pt;}
.y15b{bottom:602.676427pt;}
.y184{bottom:602.678347pt;}
.y119{bottom:607.182667pt;}
.y6f{bottom:609.120587pt;}
.y7{bottom:609.816662pt;}
.yef{bottom:610.363467pt;}
.yb9{bottom:616.769867pt;}
.y2a{bottom:617.079627pt;}
.y15a{bottom:618.677067pt;}
.y183{bottom:618.678987pt;}
.y6{bottom:622.048591pt;}
.y118{bottom:624.140107pt;}
.y53{bottom:626.078027pt;}
.yd7{bottom:626.683467pt;}
.y29{bottom:632.441547pt;}
.yb8{bottom:633.403467pt;}
.y159{bottom:634.677707pt;}
.y182{bottom:634.679627pt;}
.y117{bottom:641.097547pt;}
.y52{bottom:643.035467pt;}
.yee{bottom:643.643467pt;}
.y28{bottom:647.803467pt;}
.y158{bottom:650.678347pt;}
.y181{bottom:650.680267pt;}
.y116{bottom:658.054987pt;}
.y51{bottom:659.669067pt;}
.y157{bottom:666.678987pt;}
.y180{bottom:666.680907pt;}
.yb7{bottom:667.003467pt;}
.y115{bottom:674.688587pt;}
.yed{bottom:676.614987pt;}
.y50{bottom:676.626507pt;}
.y5{bottom:679.044633pt;}
.y27{bottom:680.130507pt;}
.y156{bottom:682.679627pt;}
.y17f{bottom:682.681547pt;}
.y114{bottom:691.646027pt;}
.yec{bottom:693.572427pt;}
.y4f{bottom:693.583947pt;}
.y4{bottom:697.187582pt;}
.y155{bottom:698.680267pt;}
.y17e{bottom:698.682187pt;}
.y26{bottom:703.163467pt;}
.y113{bottom:708.603467pt;}
.yeb{bottom:710.206027pt;}
.y4e{bottom:710.217547pt;}
.y154{bottom:714.680907pt;}
.y17d{bottom:714.682827pt;}
.y3{bottom:718.588064pt;}
.yea{bottom:727.163467pt;}
.y4d{bottom:727.174987pt;}
.y153{bottom:730.681547pt;}
.y17c{bottom:730.683467pt;}
.y112{bottom:732.917707pt;}
.y2{bottom:739.999333pt;}
.y25{bottom:741.243467pt;}
.y4c{bottom:744.132427pt;}
.y152{bottom:746.682187pt;}
.y111{bottom:748.279627pt;}
.y4b{bottom:761.089867pt;}
.y151{bottom:762.682827pt;}
.y110{bottom:763.641547pt;}
.y24{bottom:776.443467pt;}
.y4a{bottom:777.723467pt;}
.y150{bottom:778.683467pt;}
.y10f{bottom:779.003467pt;}
.y20{bottom:794.683467pt;}
.y1d{bottom:808.283467pt;}
.he{height:17.333333pt;}
.h7{height:25.577028pt;}
.h9{height:27.604896pt;}
.h12{height:30.877440pt;}
.h8{height:31.971285pt;}
.h5{height:35.168413pt;}
.hb{height:35.492009pt;}
.h10{height:38.277120pt;}
.h6{height:39.435566pt;}
.h19{height:39.905000pt;}
.h13{height:42.656250pt;}
.hf{height:43.041280pt;}
.ha{height:44.167834pt;}
.h4{height:44.759799pt;}
.h16{height:44.835000pt;}
.h17{height:44.858040pt;}
.h11{height:49.105000pt;}
.h1b{height:49.220000pt;}
.h1a{height:49.392815pt;}
.h1c{height:50.063030pt;}
.h1d{height:50.093750pt;}
.h15{height:54.269440pt;}
.h3{height:55.209792pt;}
.h14{height:55.872000pt;}
.h18{height:58.304000pt;}
.hc{height:907.127467pt;}
.hd{height:907.333333pt;}
.h2{height:908.107455pt;}
.h0{height:908.653333pt;}
.h1{height:908.666667pt;}
.w8{width:-340.977333pt;}
.w5{width:16.000000pt;}
.w7{width:75.022667pt;}
.w4{width:76.356000pt;}
.w6{width:416.000000pt;}
.w3{width:490.666667pt;}
.w1{width:642.000000pt;}
.w0{width:642.093333pt;}
.w2{width:642.098800pt;}
.x0{left:0.000000pt;}
.x6{left:7.360000pt;}
.x3{left:33.632411pt;}
.x1{left:39.748375pt;}
.xc{left:58.909200pt;}
.x8{left:75.449467pt;}
.x5{left:76.409467pt;}
.x12{left:94.380667pt;}
.xa{left:98.116133pt;}
.x10{left:99.449467pt;}
.x2{left:107.013197pt;}
.x14{left:117.032827pt;}
.xb{left:152.409467pt;}
.x9{left:268.737200pt;}
.x4{left:314.934414pt;}
.xe{left:354.818800pt;}
.x13{left:541.882107pt;}
.x11{left:551.076133pt;}
.x7{left:565.742800pt;}
.xd{left:567.076133pt;}
.xf{left:983.076133pt;}
}




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