
    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_b6b505bdb596a4ef9c5f7558.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.856934;font-style:normal;font-weight: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_cd7153138b0791471be22c0b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.861816;font-style:normal;font-weight: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_2169c71821179caaa4b0daa6.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_9d95c379a49c2bb0e8051cdc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.761000;font-style:normal;font-weight: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_e2385799d4e102bb0d830df6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;font-style:normal;font-weight: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_3e5b84bca09b328fcbabcab7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.861816;font-style:normal;font-weight: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_bb32d67b55e33c793a8d679d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.854980;font-style:normal;font-weight: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_87be048798a2b62421888d0b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.760254;font-style:normal;font-weight: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_12f3fd775f8f81e16d7d2ade.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e5a41fbdb9ebc2b0d0d324d0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.871094;font-style:normal;font-weight: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_bbd4ea90896ee8c97bd7c509.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6d0a7a6f5be6f8d341528ed1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.871094;font-style:normal;font-weight: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_15a48ddd6f9cd5c7829cb88d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.858398;font-style:normal;font-weight: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_0230969ee21ca875bad0e2df.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_d7550e17164cbdd5800950cd.woff2')format("woff");}.fff{font-family:fff;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_539ad0ba5391d5ea8e0c11ff.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_68ea10139d3ea62c475f60ab.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_01a5a0a668bb84778ed5357b.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_5b6452762b771679ee7291b4.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.871094;font-style:normal;font-weight: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_af5e11d6a2f1b8c6db733517.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.692871;font-style:normal;font-weight: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_3b6e38698788fd922dfe6cb0.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.926758;font-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(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.040000px;}
.ls2f{letter-spacing:-2.600400px;}
.ls30{letter-spacing:-2.019600px;}
.ls37{letter-spacing:-1.894200px;}
.ls36{letter-spacing:-1.405800px;}
.ls3c{letter-spacing:-1.341600px;}
.ls38{letter-spacing:-1.247400px;}
.ls31{letter-spacing:-0.976800px;}
.ls4a{letter-spacing:-0.356400px;}
.ls47{letter-spacing:-0.330600px;}
.ls4b{letter-spacing:-0.330000px;}
.ls3e{letter-spacing:-0.303600px;}
.ls2e{letter-spacing:-0.250800px;}
.ls15{letter-spacing:-0.249600px;}
.ls12{letter-spacing:-0.248400px;}
.lsf{letter-spacing:-0.230400px;}
.ls8{letter-spacing:-0.218400px;}
.ls1e{letter-spacing:-0.180000px;}
.ls14{letter-spacing:-0.172800px;}
.ls1c{letter-spacing:-0.100800px;}
.ls3f{letter-spacing:-0.084000px;}
.ls4e{letter-spacing:-0.022800px;}
.ls46{letter-spacing:-0.011400px;}
.lsa{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.021600px;}
.ls7{letter-spacing:0.033600px;}
.ls32{letter-spacing:0.034200px;}
.ls1b{letter-spacing:0.084000px;}
.ls10{letter-spacing:0.086400px;}
.ls49{letter-spacing:0.093600px;}
.ls44{letter-spacing:0.099000px;}
.ls42{letter-spacing:0.102600px;}
.ls20{letter-spacing:0.108003px;}
.ls25{letter-spacing:0.114000px;}
.ls3{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.125400px;}
.ls48{letter-spacing:0.136800px;}
.ls2b{letter-spacing:0.145200px;}
.ls27{letter-spacing:0.148200px;}
.ls2a{letter-spacing:0.158400px;}
.ls4{letter-spacing:0.159600px;}
.ls3b{letter-spacing:0.163200px;}
.ls50{letter-spacing:0.171000px;}
.ls13{letter-spacing:0.183600px;}
.ls1a{letter-spacing:0.186000px;}
.lsb{letter-spacing:0.187200px;}
.ls3a{letter-spacing:0.205200px;}
.ls4f{letter-spacing:0.211200px;}
.ls4c{letter-spacing:0.218400px;}
.ls33{letter-spacing:0.228000px;}
.ls35{letter-spacing:0.239400px;}
.ls43{letter-spacing:0.244800px;}
.ls29{letter-spacing:0.250800px;}
.ls6{letter-spacing:0.259200px;}
.ls3d{letter-spacing:0.264000px;}
.ls2d{letter-spacing:0.277200px;}
.ls34{letter-spacing:0.285000px;}
.ls19{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.302400px;}
.ls39{letter-spacing:0.307800px;}
.ls40{letter-spacing:0.316800px;}
.ls5{letter-spacing:0.324000px;}
.ls23{letter-spacing:0.336000px;}
.ls1{letter-spacing:0.341985px;}
.lsc{letter-spacing:0.344400px;}
.ls9{letter-spacing:0.352800px;}
.ls45{letter-spacing:0.356400px;}
.ls28{letter-spacing:0.366003px;}
.ls2c{letter-spacing:0.369600px;}
.ls16{letter-spacing:1.985882px;}
.ls21{letter-spacing:15.228003px;}
.ls22{letter-spacing:15.804003px;}
.ls26{letter-spacing:25.866003px;}
.ls18{letter-spacing:32.274000px;}
.ls1d{letter-spacing:64.140002px;}
.ls41{letter-spacing:66.888004px;}
.lse{letter-spacing:75.132004px;}
.ls17{letter-spacing:97.391883px;}
.ls1f{letter-spacing:97.391943px;}
.lsd{letter-spacing:97.392003px;}
.ls4d{letter-spacing:109.787884px;}
.ls24{letter-spacing:109.788004px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,255),0 0.015em rgb(0,0,255),0.015em 0 rgb(0,0,255),0 -0.015em  rgb(0,0,255);}
.sc1{text-shadow:-0.015em 0 rgb(255,158,0),0 0.015em rgb(255,158,0),0.015em 0 rgb(255,158,0),0 -0.015em  rgb(255,158,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,158,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws22{word-spacing:-38.337611px;}
.ws1a{word-spacing:-37.968011px;}
.ws1b{word-spacing:-37.884011px;}
.ws9{word-spacing:-32.443200px;}
.wsd{word-spacing:-30.109198px;}
.ws20{word-spacing:-30.043198px;}
.wsb{word-spacing:-29.977198px;}
.wsc{word-spacing:-29.831998px;}
.ws1f{word-spacing:-29.501998px;}
.ws14{word-spacing:-26.048998px;}
.ws12{word-spacing:-25.991998px;}
.ws13{word-spacing:-25.912198px;}
.ws11{word-spacing:-25.798198px;}
.ws17{word-spacing:-25.763998px;}
.ws7{word-spacing:-24.429600px;}
.ws3{word-spacing:-19.143599px;}
.ws1e{word-spacing:-18.093600px;}
.ws10{word-spacing:-17.371199px;}
.wsf{word-spacing:-16.328399px;}
.ws1d{word-spacing:-15.232799px;}
.ws8{word-spacing:-2.080000px;}
.ws1c{word-spacing:-0.746388px;}
.ws16{word-spacing:-0.447586px;}
.ws2{word-spacing:-0.327600px;}
.ws21{word-spacing:-0.266344px;}
.ws1{word-spacing:-0.240000px;}
.ws4{word-spacing:0.000000px;}
.ws19{word-spacing:0.000030px;}
.ws5{word-spacing:0.134400px;}
.ws6{word-spacing:0.225660px;}
.wsa{word-spacing:0.480007px;}
.ws0{word-spacing:0.969600px;}
.ws15{word-spacing:1.405211px;}
.wse{word-spacing:2.625610px;}
.ws18{word-spacing:27.584410px;}
._6{margin-left:-1007.507388px;}
._3{margin-left:-992.176450px;}
._0{margin-left:-1.103820px;}
._1{width:1.103820px;}
._2{width:10.270500px;}
._4{width:1104.957026px;}
._5{width:1950.200727px;}
.fc9{color:rgb(255,158,2);}
.fc8{color:transparent;}
.fc4{color:rgb(255,158,0);}
.fc6{color:rgb(255,173,0);}
.fc3{color:rgb(0,0,255);}
.fc7{color:rgb(179,179,179);}
.fc5{color:rgb(89,89,89);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(32,50,91);}
.fs4{font-size:65.999995px;}
.fs5{font-size:72.000000px;}
.fsd{font-size:77.999990px;}
.fs6{font-size:83.999995px;}
.fsa{font-size:94.117637px;}
.fs7{font-size:95.999990px;}
.fs8{font-size:101.999995px;}
.fs9{font-size:108.000000px;}
.fs2{font-size:113.999990px;}
.fs3{font-size:119.999995px;}
.fsc{font-size:131.999990px;}
.fsb{font-size:144.000000px;}
.fs1{font-size:168.000048px;}
.fs0{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:8.820000px;}
.ya{bottom:28.980000px;}
.y5{bottom:52.740000px;}
.y9{bottom:54.540000px;}
.y3e{bottom:79.740000px;}
.y1e{bottom:111.780000px;}
.y21{bottom:115.020000px;}
.y3d{bottom:138.060000px;}
.y37{bottom:147.060000px;}
.y1d{bottom:147.780000px;}
.y32{bottom:150.300000px;}
.y36{bottom:168.300000px;}
.y31{bottom:171.180000px;}
.y26{bottom:177.660000px;}
.y16{bottom:189.540000px;}
.y3c{bottom:196.740000px;}
.y8{bottom:202.140000px;}
.y1c{bottom:207.900000px;}
.y28{bottom:212.220000px;}
.y30{bottom:215.460000px;}
.y25{bottom:219.780000px;}
.y7{bottom:224.820000px;}
.y15{bottom:233.100000px;}
.y24{bottom:249.660000px;}
.y2f{bottom:250.020000px;}
.y27{bottom:252.900000px;}
.y3b{bottom:255.060000px;}
.y14{bottom:261.540000px;}
.y4{bottom:261.900000px;}
.y1b{bottom:269.100000px;}
.y35{bottom:270.900000px;}
.y20{bottom:293.220000px;}
.y13{bottom:306.540000px;}
.y2e{bottom:308.340000px;}
.y34{bottom:311.580000px;}
.y3{bottom:316.620000px;}
.yd{bottom:318.060000px;}
.y3a{bottom:333.180000px;}
.y1a{bottom:333.900000px;}
.y12{bottom:338.220000px;}
.y2d{bottom:342.900000px;}
.y33{bottom:350.460000px;}
.y23{bottom:358.020000px;}
.y2a{bottom:369.540000px;}
.y2{bottom:370.620000px;}
.y11{bottom:386.100000px;}
.y39{bottom:391.500000px;}
.ye{bottom:394.020000px;}
.y19{bottom:396.900000px;}
.y17{bottom:397.943640px;}
.y22{bottom:398.700000px;}
.y2c{bottom:401.580000px;}
.y10{bottom:419.220000px;}
.y2b{bottom:428.220000px;}
.y1{bottom:435.060000px;}
.y1f{bottom:437.220000px;}
.y38{bottom:450.180000px;}
.yf{bottom:465.660015px;}
.y29{bottom:466.380015px;}
.yc{bottom:541.620015px;}
.y18{bottom:543.060015px;}
.yb{bottom:548.820015px;}
.h5{height:48.082028px;}
.h6{height:49.218750px;}
.h13{height:54.000000px;}
.h7{height:60.292965px;}
.hb{height:66.515618px;}
.ha{height:69.374993px;}
.hc{height:70.588228px;}
.h8{height:71.999993px;}
.h9{height:74.830078px;}
.h4{height:81.599997px;}
.h3{height:81.826165px;}
.h12{height:82.382806px;}
.h10{height:86.132809px;}
.hf{height:86.718747px;}
.h11{height:94.746087px;}
.he{height:97.945313px;}
.hd{height:104.062500px;}
.h2{height:114.843783px;}
.h1{height:146.812500px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x5{left:10.800000px;}
.xf{left:16.344450px;}
.xc{left:22.322835px;}
.x17{left:33.166185px;}
.x6{left:41.483025px;}
.x1e{left:46.316700px;}
.x10{left:56.094450px;}
.x11{left:57.369450px;}
.x26{left:60.801855px;}
.x21{left:66.994845px;}
.x2a{left:77.989845px;}
.x12{left:87.144450px;}
.x1b{left:92.505705px;}
.x18{left:93.562200px;}
.x1{left:110.343705px;}
.x14{left:112.402080px;}
.x2b{left:119.014830px;}
.x1c{left:133.005705px;}
.x2{left:138.746220px;}
.x15{left:153.427050px;}
.x16{left:183.202050px;}
.x8{left:292.312500px;}
.x7{left:329.062500px;}
.x3{left:335.808750px;}
.x19{left:390.562200px;}
.x4{left:468.750000px;}
.x22{left:594.311100px;}
.x27{left:615.437550px;}
.x23{left:635.336100px;}
.x28{left:655.187550px;}
.x24{left:665.111100px;}
.x1d{left:686.505750px;}
.x1a{left:687.562200px;}
.x1f{left:697.230300px;}
.x13{left:701.006400px;}
.x29{left:835.016850px;}
.xa{left:855.292200px;}
.xe{left:885.210300px;}
.x25{left:901.437450px;}
.x9{left:950.917200px;}
.xd{left:957.995550px;}
.x20{left:1053.411900px;}
.xb{left:1062.599400px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.480000pt;}
.ls2f{letter-spacing:-2.311466pt;}
.ls30{letter-spacing:-1.795200pt;}
.ls37{letter-spacing:-1.683733pt;}
.ls36{letter-spacing:-1.249600pt;}
.ls3c{letter-spacing:-1.192533pt;}
.ls38{letter-spacing:-1.108800pt;}
.ls31{letter-spacing:-0.868267pt;}
.ls4a{letter-spacing:-0.316800pt;}
.ls47{letter-spacing:-0.293867pt;}
.ls4b{letter-spacing:-0.293333pt;}
.ls3e{letter-spacing:-0.269867pt;}
.ls2e{letter-spacing:-0.222933pt;}
.ls15{letter-spacing:-0.221867pt;}
.ls12{letter-spacing:-0.220800pt;}
.lsf{letter-spacing:-0.204800pt;}
.ls8{letter-spacing:-0.194133pt;}
.ls1e{letter-spacing:-0.160000pt;}
.ls14{letter-spacing:-0.153600pt;}
.ls1c{letter-spacing:-0.089600pt;}
.ls3f{letter-spacing:-0.074667pt;}
.ls4e{letter-spacing:-0.020267pt;}
.ls46{letter-spacing:-0.010133pt;}
.lsa{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.019200pt;}
.ls7{letter-spacing:0.029867pt;}
.ls32{letter-spacing:0.030400pt;}
.ls1b{letter-spacing:0.074667pt;}
.ls10{letter-spacing:0.076800pt;}
.ls49{letter-spacing:0.083200pt;}
.ls44{letter-spacing:0.088000pt;}
.ls42{letter-spacing:0.091200pt;}
.ls20{letter-spacing:0.096003pt;}
.ls25{letter-spacing:0.101333pt;}
.ls3{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.111467pt;}
.ls48{letter-spacing:0.121600pt;}
.ls2b{letter-spacing:0.129067pt;}
.ls27{letter-spacing:0.131733pt;}
.ls2a{letter-spacing:0.140800pt;}
.ls4{letter-spacing:0.141867pt;}
.ls3b{letter-spacing:0.145067pt;}
.ls50{letter-spacing:0.152000pt;}
.ls13{letter-spacing:0.163200pt;}
.ls1a{letter-spacing:0.165333pt;}
.lsb{letter-spacing:0.166400pt;}
.ls3a{letter-spacing:0.182400pt;}
.ls4f{letter-spacing:0.187733pt;}
.ls4c{letter-spacing:0.194133pt;}
.ls33{letter-spacing:0.202667pt;}
.ls35{letter-spacing:0.212800pt;}
.ls43{letter-spacing:0.217600pt;}
.ls29{letter-spacing:0.222933pt;}
.ls6{letter-spacing:0.230400pt;}
.ls3d{letter-spacing:0.234667pt;}
.ls2d{letter-spacing:0.246400pt;}
.ls34{letter-spacing:0.253333pt;}
.ls19{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.268800pt;}
.ls39{letter-spacing:0.273600pt;}
.ls40{letter-spacing:0.281600pt;}
.ls5{letter-spacing:0.288000pt;}
.ls23{letter-spacing:0.298667pt;}
.ls1{letter-spacing:0.303987pt;}
.lsc{letter-spacing:0.306133pt;}
.ls9{letter-spacing:0.313600pt;}
.ls45{letter-spacing:0.316800pt;}
.ls28{letter-spacing:0.325336pt;}
.ls2c{letter-spacing:0.328533pt;}
.ls16{letter-spacing:1.765229pt;}
.ls21{letter-spacing:13.536003pt;}
.ls22{letter-spacing:14.048002pt;}
.ls26{letter-spacing:22.992003pt;}
.ls18{letter-spacing:28.688000pt;}
.ls1d{letter-spacing:57.013335pt;}
.ls41{letter-spacing:59.456004pt;}
.lse{letter-spacing:66.784004pt;}
.ls17{letter-spacing:86.570563pt;}
.ls1f{letter-spacing:86.570616pt;}
.lsd{letter-spacing:86.570669pt;}
.ls4d{letter-spacing:97.589231pt;}
.ls24{letter-spacing:97.589337pt;}
.ws22{word-spacing:-34.077876pt;}
.ws1a{word-spacing:-33.749343pt;}
.ws1b{word-spacing:-33.674676pt;}
.ws9{word-spacing:-28.838400pt;}
.wsd{word-spacing:-26.763731pt;}
.ws20{word-spacing:-26.705065pt;}
.wsb{word-spacing:-26.646398pt;}
.wsc{word-spacing:-26.517331pt;}
.ws1f{word-spacing:-26.223998pt;}
.ws14{word-spacing:-23.154665pt;}
.ws12{word-spacing:-23.103998pt;}
.ws13{word-spacing:-23.033065pt;}
.ws11{word-spacing:-22.931731pt;}
.ws17{word-spacing:-22.901331pt;}
.ws7{word-spacing:-21.715200pt;}
.ws3{word-spacing:-17.016532pt;}
.ws1e{word-spacing:-16.083200pt;}
.ws10{word-spacing:-15.441066pt;}
.wsf{word-spacing:-14.514132pt;}
.ws1d{word-spacing:-13.540266pt;}
.ws8{word-spacing:-1.848889pt;}
.ws1c{word-spacing:-0.663456pt;}
.ws16{word-spacing:-0.397855pt;}
.ws2{word-spacing:-0.291200pt;}
.ws21{word-spacing:-0.236750pt;}
.ws1{word-spacing:-0.213333pt;}
.ws4{word-spacing:0.000000pt;}
.ws19{word-spacing:0.000027pt;}
.ws5{word-spacing:0.119467pt;}
.ws6{word-spacing:0.200587pt;}
.wsa{word-spacing:0.426673pt;}
.ws0{word-spacing:0.861867pt;}
.ws15{word-spacing:1.249077pt;}
.wse{word-spacing:2.333875pt;}
.ws18{word-spacing:24.519476pt;}
._6{margin-left:-895.562123pt;}
._3{margin-left:-881.934622pt;}
._0{margin-left:-0.981173pt;}
._1{width:0.981173pt;}
._2{width:9.129333pt;}
._4{width:982.184023pt;}
._5{width:1733.511757pt;}
.fs4{font-size:58.666662pt;}
.fs5{font-size:64.000000pt;}
.fsd{font-size:69.333325pt;}
.fs6{font-size:74.666662pt;}
.fsa{font-size:83.660122pt;}
.fs7{font-size:85.333325pt;}
.fs8{font-size:90.666662pt;}
.fs9{font-size:96.000000pt;}
.fs2{font-size:101.333325pt;}
.fs3{font-size:106.666662pt;}
.fsc{font-size:117.333325pt;}
.fsb{font-size:128.000000pt;}
.fs1{font-size:149.333376pt;}
.fs0{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:7.840000pt;}
.ya{bottom:25.760000pt;}
.y5{bottom:46.880000pt;}
.y9{bottom:48.480000pt;}
.y3e{bottom:70.880000pt;}
.y1e{bottom:99.360000pt;}
.y21{bottom:102.240000pt;}
.y3d{bottom:122.720000pt;}
.y37{bottom:130.720000pt;}
.y1d{bottom:131.360000pt;}
.y32{bottom:133.600000pt;}
.y36{bottom:149.600000pt;}
.y31{bottom:152.160000pt;}
.y26{bottom:157.920000pt;}
.y16{bottom:168.480000pt;}
.y3c{bottom:174.880000pt;}
.y8{bottom:179.680000pt;}
.y1c{bottom:184.800000pt;}
.y28{bottom:188.640000pt;}
.y30{bottom:191.520000pt;}
.y25{bottom:195.360000pt;}
.y7{bottom:199.840000pt;}
.y15{bottom:207.200000pt;}
.y24{bottom:221.920000pt;}
.y2f{bottom:222.240000pt;}
.y27{bottom:224.800000pt;}
.y3b{bottom:226.720000pt;}
.y14{bottom:232.480000pt;}
.y4{bottom:232.800000pt;}
.y1b{bottom:239.200000pt;}
.y35{bottom:240.800000pt;}
.y20{bottom:260.640000pt;}
.y13{bottom:272.480000pt;}
.y2e{bottom:274.080000pt;}
.y34{bottom:276.960000pt;}
.y3{bottom:281.440000pt;}
.yd{bottom:282.720000pt;}
.y3a{bottom:296.160000pt;}
.y1a{bottom:296.800000pt;}
.y12{bottom:300.640000pt;}
.y2d{bottom:304.800000pt;}
.y33{bottom:311.520000pt;}
.y23{bottom:318.240000pt;}
.y2a{bottom:328.480000pt;}
.y2{bottom:329.440000pt;}
.y11{bottom:343.200000pt;}
.y39{bottom:348.000000pt;}
.ye{bottom:350.240000pt;}
.y19{bottom:352.800000pt;}
.y17{bottom:353.727680pt;}
.y22{bottom:354.400000pt;}
.y2c{bottom:356.960000pt;}
.y10{bottom:372.640000pt;}
.y2b{bottom:380.640000pt;}
.y1{bottom:386.720000pt;}
.y1f{bottom:388.640000pt;}
.y38{bottom:400.160000pt;}
.yf{bottom:413.920013pt;}
.y29{bottom:414.560013pt;}
.yc{bottom:481.440013pt;}
.y18{bottom:482.720013pt;}
.yb{bottom:487.840013pt;}
.h5{height:42.739580pt;}
.h6{height:43.750000pt;}
.h13{height:48.000000pt;}
.h7{height:53.593747pt;}
.hb{height:59.124994pt;}
.ha{height:61.666661pt;}
.hc{height:62.745091pt;}
.h8{height:63.999994pt;}
.h9{height:66.515625pt;}
.h4{height:72.533330pt;}
.h3{height:72.734369pt;}
.h12{height:73.229161pt;}
.h10{height:76.562497pt;}
.hf{height:77.083330pt;}
.h11{height:84.218744pt;}
.he{height:87.062500pt;}
.hd{height:92.500000pt;}
.h2{height:102.083363pt;}
.h1{height:130.500000pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x5{left:9.600000pt;}
.xf{left:14.528400pt;}
.xc{left:19.842520pt;}
.x17{left:29.481053pt;}
.x6{left:36.873800pt;}
.x1e{left:41.170400pt;}
.x10{left:49.861733pt;}
.x11{left:50.995067pt;}
.x26{left:54.046093pt;}
.x21{left:59.550973pt;}
.x2a{left:69.324307pt;}
.x12{left:77.461733pt;}
.x1b{left:82.227293pt;}
.x18{left:83.166400pt;}
.x1{left:98.083293pt;}
.x14{left:99.912960pt;}
.x2b{left:105.790960pt;}
.x1c{left:118.227293pt;}
.x2{left:123.329973pt;}
.x15{left:136.379600pt;}
.x16{left:162.846267pt;}
.x8{left:259.833333pt;}
.x7{left:292.500000pt;}
.x3{left:298.496667pt;}
.x19{left:347.166400pt;}
.x4{left:416.666667pt;}
.x22{left:528.276533pt;}
.x27{left:547.055600pt;}
.x23{left:564.743200pt;}
.x28{left:582.388933pt;}
.x24{left:591.209867pt;}
.x1d{left:610.227333pt;}
.x1a{left:611.166400pt;}
.x1f{left:619.760267pt;}
.x13{left:623.116800pt;}
.x29{left:742.237200pt;}
.xa{left:760.259733pt;}
.xe{left:786.853600pt;}
.x25{left:801.277733pt;}
.x9{left:845.259733pt;}
.xd{left:851.551600pt;}
.x20{left:936.366133pt;}
.xb{left:944.532800pt;}
}




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