
    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_041f89304ed8c78f7382b4b9.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0168a5f25b97610e14043d47.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.718750;font-style:normal;font-weight: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_1565e9022a2213503c902765.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c95b9d12f9ee6cd8ed80e24b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_cd97f72679051d612162ced3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_38237c59be49421822bd4270.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_29f06447150835d41b6d2627.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_57ce53aacf4dbe6dd99eb635.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.984863;font-style:normal;font-weight: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_a1cadcd20376882898690df4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.979980;font-style:normal;font-weight: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_53edd57c57b225515a72be73.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.717285;font-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);}
.v0{vertical-align:0.000000px;}
.ls17{letter-spacing:-0.014400px;}
.ls12{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000600px;}
.ls1{letter-spacing:0.014400px;}
.ls21{letter-spacing:0.170496px;}
.ls33{letter-spacing:0.181152px;}
.lsb{letter-spacing:0.190560px;}
.ls27{letter-spacing:0.191100px;}
.lsc{letter-spacing:0.191160px;}
.ls22{letter-spacing:0.191808px;}
.ls19{letter-spacing:0.194832px;}
.ls29{letter-spacing:0.223320px;}
.ls18{letter-spacing:0.224352px;}
.ls11{letter-spacing:0.239760px;}
.lsd{letter-spacing:0.240360px;}
.ls16{letter-spacing:0.253872px;}
.ls2f{letter-spacing:0.256680px;}
.ls26{letter-spacing:0.275400px;}
.ls1c{letter-spacing:0.318816px;}
.ls35{letter-spacing:0.324480px;}
.ls34{letter-spacing:0.325080px;}
.ls3b{letter-spacing:0.354240px;}
.ls32{letter-spacing:0.360000px;}
.ls1f{letter-spacing:0.362304px;}
.lsf{letter-spacing:0.410256px;}
.ls1e{letter-spacing:0.431568px;}
.ls36{letter-spacing:0.442800px;}
.ls1a{letter-spacing:0.478224px;}
.ls1d{letter-spacing:0.479520px;}
.ls1b{letter-spacing:0.507744px;}
.ls2{letter-spacing:0.525456px;}
.ls20{letter-spacing:0.527472px;}
.ls3{letter-spacing:0.531360px;}
.ls28{letter-spacing:0.542760px;}
.ls5{letter-spacing:0.543168px;}
.ls2e{letter-spacing:0.543360px;}
.ls23{letter-spacing:0.548784px;}
.ls3a{letter-spacing:0.578592px;}
.ls30{letter-spacing:0.628704px;}
.ls14{letter-spacing:0.637632px;}
.ls4{letter-spacing:0.639900px;}
.ls39{letter-spacing:0.678960px;}
.ls15{letter-spacing:0.702576px;}
.ls8{letter-spacing:0.703320px;}
.ls37{letter-spacing:0.720288px;}
.ls38{letter-spacing:0.738000px;}
.ls13{letter-spacing:0.826560px;}
.ls2c{letter-spacing:0.829680px;}
.ls24{letter-spacing:3.182760px;}
.ls2a{letter-spacing:4.697880px;}
.ls2b{letter-spacing:4.698480px;}
.ls31{letter-spacing:5.160096px;}
.ls2d{letter-spacing:5.161080px;}
.ls10{letter-spacing:11.441160px;}
.lse{letter-spacing:13.355760px;}
.lsa{letter-spacing:14.985480px;}
.ls7{letter-spacing:20.272080px;}
.ls25{letter-spacing:20.393160px;}
.ls9{letter-spacing:23.857080px;}
.ls6{letter-spacing:30.262680px;}
.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;}
}
.ws0{word-spacing:-20.030400px;}
.ws4{word-spacing:-20.001600px;}
.ws3{word-spacing:-17.239680px;}
.ws1{word-spacing:-17.050752px;}
.ws5{word-spacing:-16.956288px;}
.wsc{word-spacing:-16.891344px;}
.ws2{word-spacing:-16.413120px;}
.wsb{word-spacing:-15.360624px;}
.ws7{word-spacing:-15.339312px;}
.ws9{word-spacing:-15.291360px;}
.ws6{word-spacing:-15.243408px;}
.ws8{word-spacing:-14.982336px;}
.wsa{word-spacing:0.000000px;}
._13{margin-left:-2055.292560px;}
._0{margin-left:-1.180800px;}
._2{width:1.062720px;}
._d{width:2.409120px;}
._f{width:3.507840px;}
._1{width:5.136480px;}
._11{width:6.612480px;}
._12{width:7.852320px;}
._10{width:8.916120px;}
._b{width:10.176480px;}
._c{width:11.629224px;}
._9{width:12.744288px;}
._a{width:13.937928px;}
._7{width:15.350400px;}
._e{width:16.365600px;}
._6{width:18.137088px;}
._5{width:19.365120px;}
._4{width:23.380176px;}
._3{width:29.697120px;}
._8{width:101.880120px;}
._14{width:152.487360px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:53.280000px;}
.fs1{font-size:59.040000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y7a{bottom:3.240000px;}
.y4{bottom:3.600000px;}
.y64{bottom:12.240000px;}
.y60{bottom:12.600000px;}
.y98{bottom:13.320000px;}
.y70{bottom:13.679985px;}
.y5c{bottom:13.680000px;}
.y59{bottom:18.000000px;}
.y1{bottom:18.368595px;}
.y79{bottom:18.720000px;}
.y93{bottom:21.600000px;}
.y63{bottom:33.480000px;}
.y5f{bottom:33.840000px;}
.y2{bottom:38.457585px;}
.y97{bottom:38.520000px;}
.y84{bottom:38.880000px;}
.y6f{bottom:43.199985px;}
.ya0{bottom:43.200000px;}
.y92{bottom:51.120000px;}
.y3{bottom:56.466180px;}
.y6e{bottom:73.079970px;}
.y9f{bottom:73.080000px;}
.y85{bottom:73.200030px;}
.y91{bottom:80.639970px;}
.y99{bottom:93.720030px;}
.y7b{bottom:94.800030px;}
.y9e{bottom:98.280000px;}
.y68{bottom:101.280030px;}
.y6d{bottom:102.599970px;}
.y90{bottom:110.519970px;}
.y37{bottom:126.297585px;}
.y6c{bottom:132.479970px;}
.y8f{bottom:140.039970px;}
.y36{bottom:149.337555px;}
.y6b{bottom:161.999970px;}
.y8e{bottom:169.919970px;}
.y35{bottom:172.737555px;}
.y9b{bottom:187.199970px;}
.y6a{bottom:191.519970px;}
.y34{bottom:196.137555px;}
.y8d{bottom:199.439970px;}
.y67{bottom:204.120000px;}
.y33{bottom:219.177555px;}
.y69{bottom:221.399970px;}
.y5e{bottom:222.480000px;}
.y66{bottom:224.640000px;}
.y8c{bottom:229.319970px;}
.y32{bottom:242.577555px;}
.y78{bottom:257.040000px;}
.yb8{bottom:257.520000px;}
.y8b{bottom:258.839970px;}
.y31{bottom:265.977555px;}
.yb7{bottom:277.680000px;}
.y8a{bottom:288.359970px;}
.y30{bottom:289.017555px;}
.y7f{bottom:293.040000px;}
.yb6{bottom:294.960000px;}
.y77{bottom:296.280000px;}
.y62{bottom:301.680000px;}
.y7d{bottom:304.559970px;}
.yb5{bottom:312.240000px;}
.y2f{bottom:312.417555px;}
.y89{bottom:318.239970px;}
.y76{bottom:319.680000px;}
.y7c{bottom:325.079970px;}
.y83{bottom:325.080000px;}
.yb4{bottom:329.520000px;}
.y2e{bottom:335.817555px;}
.y65{bottom:339.600000px;}
.yb3{bottom:346.800000px;}
.y88{bottom:347.759970px;}
.y74{bottom:349.920000px;}
.y82{bottom:354.960000px;}
.y2d{bottom:358.857555px;}
.yb2{bottom:364.080000px;}
.y73{bottom:370.800000px;}
.y81{bottom:375.480000px;}
.y87{bottom:377.639970px;}
.yb1{bottom:381.000000px;}
.y2c{bottom:382.257555px;}
.y86{bottom:398.159970px;}
.yb0{bottom:398.280000px;}
.y72{bottom:400.320000px;}
.y2b{bottom:405.657555px;}
.y58{bottom:409.977555px;}
.yaf{bottom:415.560000px;}
.y2a{bottom:428.697555px;}
.y96{bottom:430.200000px;}
.yae{bottom:432.840000px;}
.y75{bottom:436.800000px;}
.y57{bottom:438.777555px;}
.yad{bottom:450.120000px;}
.y95{bottom:450.720000px;}
.y29{bottom:452.097555px;}
.y56{bottom:464.697555px;}
.yac{bottom:467.400000px;}
.y28{bottom:470.097555px;}
.y9d{bottom:478.080000px;}
.yab{bottom:484.680000px;}
.y80{bottom:488.280000px;}
.y27{bottom:489.897555px;}
.y55{bottom:490.617555px;}
.yaa{bottom:501.600000px;}
.y26{bottom:509.697555px;}
.y54{bottom:515.457555px;}
.ya9{bottom:518.880000px;}
.y25{bottom:529.497555px;}
.ya8{bottom:536.160000px;}
.y53{bottom:539.577555px;}
.y24{bottom:549.657555px;}
.ya7{bottom:553.440000px;}
.y52{bottom:563.697555px;}
.y23{bottom:569.457555px;}
.ya6{bottom:570.720000px;}
.y61{bottom:581.520000px;}
.y51{bottom:583.497555px;}
.ya5{bottom:588.000000px;}
.y22{bottom:589.257555px;}
.y50{bottom:603.297555px;}
.ya4{bottom:604.920000px;}
.y21{bottom:609.057555px;}
.y9a{bottom:612.359970px;}
.ya3{bottom:622.200000px;}
.y4f{bottom:623.097555px;}
.y20{bottom:628.857555px;}
.ya2{bottom:640.200000px;}
.y4e{bottom:642.897555px;}
.y1f{bottom:648.657555px;}
.ya1{bottom:660.720000px;}
.y4d{bottom:662.697555px;}
.y1e{bottom:668.457555px;}
.y4c{bottom:682.857555px;}
.y1d{bottom:688.257555px;}
.y9c{bottom:695.640000px;}
.y4b{bottom:702.657555px;}
.y1c{bottom:708.057555px;}
.y94{bottom:723.000000px;}
.y1b{bottom:727.857555px;}
.y1a{bottom:746.217555px;}
.y4a{bottom:751.617555px;}
.y19{bottom:767.457555px;}
.y49{bottom:769.617555px;}
.y71{bottom:773.400000px;}
.y18{bottom:787.257555px;}
.y48{bottom:794.097555px;}
.y17{bottom:805.257555px;}
.y47{bottom:813.897555px;}
.y16{bottom:825.417555px;}
.y46{bottom:833.697555px;}
.y15{bottom:842.697555px;}
.y45{bottom:853.497555px;}
.y14{bottom:859.977555px;}
.y44{bottom:873.297555px;}
.y13{bottom:877.257555px;}
.y7e{bottom:880.680000px;}
.y12{bottom:894.537555px;}
.y43{bottom:899.577555px;}
.y5d{bottom:900.120000px;}
.y11{bottom:911.457555px;}
.y42{bottom:924.417555px;}
.y10{bottom:928.737555px;}
.yf{bottom:946.737555px;}
.ye{bottom:967.257555px;}
.y41{bottom:969.057555px;}
.y40{bottom:987.057555px;}
.yd{bottom:988.137555px;}
.yc{bottom:1008.657555px;}
.y3f{bottom:1011.537555px;}
.yb{bottom:1029.537555px;}
.y3e{bottom:1037.097555px;}
.ya{bottom:1050.057555px;}
.y3d{bottom:1062.297555px;}
.y9{bottom:1070.937555px;}
.y3c{bottom:1085.697555px;}
.y8{bottom:1091.457555px;}
.y3b{bottom:1108.737555px;}
.y7{bottom:1112.337555px;}
.y3a{bottom:1132.137555px;}
.y6{bottom:1134.657555px;}
.y5b{bottom:1139.520000px;}
.y39{bottom:1155.537555px;}
.y5a{bottom:1156.080000px;}
.y5{bottom:1165.617555px;}
.y38{bottom:1178.577555px;}
.h4{height:17.280000px;}
.he{height:29.879970px;}
.hb{height:38.789297px;}
.ha{height:38.841328px;}
.h9{height:39.350391px;}
.h15{height:39.960000px;}
.h5{height:42.435000px;}
.h8{height:43.040391px;}
.h1e{height:44.280000px;}
.h3{height:47.988281px;}
.hd{height:48.761719px;}
.h7{height:52.488281px;}
.hf{height:54.000000px;}
.h6{height:71.982422px;}
.h13{height:237.600000px;}
.h10{height:238.680000px;}
.h12{height:240.840000px;}
.h18{height:309.240000px;}
.h11{height:317.880000px;}
.h16{height:335.880000px;}
.h17{height:341.280000px;}
.h19{height:391.680000px;}
.h1a{height:414.360000px;}
.h14{height:416.520000px;}
.h1b{height:466.920000px;}
.h1d{height:494.280000px;}
.h1c{height:628.560000px;}
.h2{height:1226.097600px;}
.hc{height:1227.000000px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w3{width:6.839997px;}
.w6{width:762.120000px;}
.w2{width:856.176300px;}
.w5{width:856.500000px;}
.w4{width:892.500000px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:7.559970px;}
.x1{left:18.368550px;}
.x9{left:45.719970px;}
.xa{left:56.160000px;}
.x18{left:88.245120px;}
.x2{left:109.439940px;}
.x5{left:258.942600px;}
.x7{left:339.571650px;}
.x6{left:383.448450px;}
.x13{left:391.560000px;}
.x14{left:407.520150px;}
.x4{left:428.640000px;}
.x15{left:439.784850px;}
.xe{left:471.547350px;}
.x11{left:513.376350px;}
.x10{left:517.680150px;}
.x12{left:550.447500px;}
.xd{left:554.947500px;}
.xc{left:556.447500px;}
.x16{left:562.560000px;}
.x17{left:628.784850px;}
.x8{left:729.000000px;}
.xf{left:754.335000px;}
.x3{left:758.888550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-0.012800pt;}
.ls12{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000533pt;}
.ls1{letter-spacing:0.012800pt;}
.ls21{letter-spacing:0.151552pt;}
.ls33{letter-spacing:0.161024pt;}
.lsb{letter-spacing:0.169387pt;}
.ls27{letter-spacing:0.169867pt;}
.lsc{letter-spacing:0.169920pt;}
.ls22{letter-spacing:0.170496pt;}
.ls19{letter-spacing:0.173184pt;}
.ls29{letter-spacing:0.198507pt;}
.ls18{letter-spacing:0.199424pt;}
.ls11{letter-spacing:0.213120pt;}
.lsd{letter-spacing:0.213653pt;}
.ls16{letter-spacing:0.225664pt;}
.ls2f{letter-spacing:0.228160pt;}
.ls26{letter-spacing:0.244800pt;}
.ls1c{letter-spacing:0.283392pt;}
.ls35{letter-spacing:0.288427pt;}
.ls34{letter-spacing:0.288960pt;}
.ls3b{letter-spacing:0.314880pt;}
.ls32{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:0.322048pt;}
.lsf{letter-spacing:0.364672pt;}
.ls1e{letter-spacing:0.383616pt;}
.ls36{letter-spacing:0.393600pt;}
.ls1a{letter-spacing:0.425088pt;}
.ls1d{letter-spacing:0.426240pt;}
.ls1b{letter-spacing:0.451328pt;}
.ls2{letter-spacing:0.467072pt;}
.ls20{letter-spacing:0.468864pt;}
.ls3{letter-spacing:0.472320pt;}
.ls28{letter-spacing:0.482453pt;}
.ls5{letter-spacing:0.482816pt;}
.ls2e{letter-spacing:0.482987pt;}
.ls23{letter-spacing:0.487808pt;}
.ls3a{letter-spacing:0.514304pt;}
.ls30{letter-spacing:0.558848pt;}
.ls14{letter-spacing:0.566784pt;}
.ls4{letter-spacing:0.568800pt;}
.ls39{letter-spacing:0.603520pt;}
.ls15{letter-spacing:0.624512pt;}
.ls8{letter-spacing:0.625173pt;}
.ls37{letter-spacing:0.640256pt;}
.ls38{letter-spacing:0.656000pt;}
.ls13{letter-spacing:0.734720pt;}
.ls2c{letter-spacing:0.737493pt;}
.ls24{letter-spacing:2.829120pt;}
.ls2a{letter-spacing:4.175893pt;}
.ls2b{letter-spacing:4.176427pt;}
.ls31{letter-spacing:4.586752pt;}
.ls2d{letter-spacing:4.587627pt;}
.ls10{letter-spacing:10.169920pt;}
.lse{letter-spacing:11.871787pt;}
.lsa{letter-spacing:13.320427pt;}
.ls7{letter-spacing:18.019627pt;}
.ls25{letter-spacing:18.127253pt;}
.ls9{letter-spacing:21.206293pt;}
.ls6{letter-spacing:26.900160pt;}
.ws0{word-spacing:-17.804800pt;}
.ws4{word-spacing:-17.779200pt;}
.ws3{word-spacing:-15.324160pt;}
.ws1{word-spacing:-15.156224pt;}
.ws5{word-spacing:-15.072256pt;}
.wsc{word-spacing:-15.014528pt;}
.ws2{word-spacing:-14.589440pt;}
.wsb{word-spacing:-13.653888pt;}
.ws7{word-spacing:-13.634944pt;}
.ws9{word-spacing:-13.592320pt;}
.ws6{word-spacing:-13.549696pt;}
.ws8{word-spacing:-13.317632pt;}
.wsa{word-spacing:0.000000pt;}
._13{margin-left:-1826.926720pt;}
._0{margin-left:-1.049600pt;}
._2{width:0.944640pt;}
._d{width:2.141440pt;}
._f{width:3.118080pt;}
._1{width:4.565760pt;}
._11{width:5.877760pt;}
._12{width:6.979840pt;}
._10{width:7.925440pt;}
._b{width:9.045760pt;}
._c{width:10.337088pt;}
._9{width:11.328256pt;}
._a{width:12.389269pt;}
._7{width:13.644800pt;}
._e{width:14.547200pt;}
._6{width:16.121856pt;}
._5{width:17.213440pt;}
._4{width:20.782379pt;}
._3{width:26.397440pt;}
._8{width:90.560107pt;}
._14{width:135.544320pt;}
.fs3{font-size:47.360000pt;}
.fs1{font-size:52.480000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y7a{bottom:2.880000pt;}
.y4{bottom:3.200000pt;}
.y64{bottom:10.880000pt;}
.y60{bottom:11.200000pt;}
.y98{bottom:11.840000pt;}
.y70{bottom:12.159987pt;}
.y5c{bottom:12.160000pt;}
.y59{bottom:16.000000pt;}
.y1{bottom:16.327640pt;}
.y79{bottom:16.640000pt;}
.y93{bottom:19.200000pt;}
.y63{bottom:29.760000pt;}
.y5f{bottom:30.080000pt;}
.y2{bottom:34.184520pt;}
.y97{bottom:34.240000pt;}
.y84{bottom:34.560000pt;}
.y6f{bottom:38.399987pt;}
.ya0{bottom:38.400000pt;}
.y92{bottom:45.440000pt;}
.y3{bottom:50.192160pt;}
.y6e{bottom:64.959973pt;}
.y9f{bottom:64.960000pt;}
.y85{bottom:65.066693pt;}
.y91{bottom:71.679973pt;}
.y99{bottom:83.306693pt;}
.y7b{bottom:84.266693pt;}
.y9e{bottom:87.360000pt;}
.y68{bottom:90.026693pt;}
.y6d{bottom:91.199973pt;}
.y90{bottom:98.239973pt;}
.y37{bottom:112.264520pt;}
.y6c{bottom:117.759973pt;}
.y8f{bottom:124.479973pt;}
.y36{bottom:132.744493pt;}
.y6b{bottom:143.999973pt;}
.y8e{bottom:151.039973pt;}
.y35{bottom:153.544493pt;}
.y9b{bottom:166.399973pt;}
.y6a{bottom:170.239973pt;}
.y34{bottom:174.344493pt;}
.y8d{bottom:177.279973pt;}
.y67{bottom:181.440000pt;}
.y33{bottom:194.824493pt;}
.y69{bottom:196.799973pt;}
.y5e{bottom:197.760000pt;}
.y66{bottom:199.680000pt;}
.y8c{bottom:203.839973pt;}
.y32{bottom:215.624493pt;}
.y78{bottom:228.480000pt;}
.yb8{bottom:228.906667pt;}
.y8b{bottom:230.079973pt;}
.y31{bottom:236.424493pt;}
.yb7{bottom:246.826667pt;}
.y8a{bottom:256.319973pt;}
.y30{bottom:256.904493pt;}
.y7f{bottom:260.480000pt;}
.yb6{bottom:262.186667pt;}
.y77{bottom:263.360000pt;}
.y62{bottom:268.160000pt;}
.y7d{bottom:270.719973pt;}
.yb5{bottom:277.546667pt;}
.y2f{bottom:277.704493pt;}
.y89{bottom:282.879973pt;}
.y76{bottom:284.160000pt;}
.y7c{bottom:288.959973pt;}
.y83{bottom:288.960000pt;}
.yb4{bottom:292.906667pt;}
.y2e{bottom:298.504493pt;}
.y65{bottom:301.866667pt;}
.yb3{bottom:308.266667pt;}
.y88{bottom:309.119973pt;}
.y74{bottom:311.040000pt;}
.y82{bottom:315.520000pt;}
.y2d{bottom:318.984493pt;}
.yb2{bottom:323.626667pt;}
.y73{bottom:329.600000pt;}
.y81{bottom:333.760000pt;}
.y87{bottom:335.679973pt;}
.yb1{bottom:338.666667pt;}
.y2c{bottom:339.784493pt;}
.y86{bottom:353.919973pt;}
.yb0{bottom:354.026667pt;}
.y72{bottom:355.840000pt;}
.y2b{bottom:360.584493pt;}
.y58{bottom:364.424493pt;}
.yaf{bottom:369.386667pt;}
.y2a{bottom:381.064493pt;}
.y96{bottom:382.400000pt;}
.yae{bottom:384.746667pt;}
.y75{bottom:388.266667pt;}
.y57{bottom:390.024493pt;}
.yad{bottom:400.106667pt;}
.y95{bottom:400.640000pt;}
.y29{bottom:401.864493pt;}
.y56{bottom:413.064493pt;}
.yac{bottom:415.466667pt;}
.y28{bottom:417.864493pt;}
.y9d{bottom:424.960000pt;}
.yab{bottom:430.826667pt;}
.y80{bottom:434.026667pt;}
.y27{bottom:435.464493pt;}
.y55{bottom:436.104493pt;}
.yaa{bottom:445.866667pt;}
.y26{bottom:453.064493pt;}
.y54{bottom:458.184493pt;}
.ya9{bottom:461.226667pt;}
.y25{bottom:470.664493pt;}
.ya8{bottom:476.586667pt;}
.y53{bottom:479.624493pt;}
.y24{bottom:488.584493pt;}
.ya7{bottom:491.946667pt;}
.y52{bottom:501.064493pt;}
.y23{bottom:506.184493pt;}
.ya6{bottom:507.306667pt;}
.y61{bottom:516.906667pt;}
.y51{bottom:518.664493pt;}
.ya5{bottom:522.666667pt;}
.y22{bottom:523.784493pt;}
.y50{bottom:536.264493pt;}
.ya4{bottom:537.706667pt;}
.y21{bottom:541.384493pt;}
.y9a{bottom:544.319973pt;}
.ya3{bottom:553.066667pt;}
.y4f{bottom:553.864493pt;}
.y20{bottom:558.984493pt;}
.ya2{bottom:569.066667pt;}
.y4e{bottom:571.464493pt;}
.y1f{bottom:576.584493pt;}
.ya1{bottom:587.306667pt;}
.y4d{bottom:589.064493pt;}
.y1e{bottom:594.184493pt;}
.y4c{bottom:606.984493pt;}
.y1d{bottom:611.784493pt;}
.y9c{bottom:618.346667pt;}
.y4b{bottom:624.584493pt;}
.y1c{bottom:629.384493pt;}
.y94{bottom:642.666667pt;}
.y1b{bottom:646.984493pt;}
.y1a{bottom:663.304493pt;}
.y4a{bottom:668.104493pt;}
.y19{bottom:682.184493pt;}
.y49{bottom:684.104493pt;}
.y71{bottom:687.466667pt;}
.y18{bottom:699.784493pt;}
.y48{bottom:705.864493pt;}
.y17{bottom:715.784493pt;}
.y47{bottom:723.464493pt;}
.y16{bottom:733.704493pt;}
.y46{bottom:741.064493pt;}
.y15{bottom:749.064493pt;}
.y45{bottom:758.664493pt;}
.y14{bottom:764.424493pt;}
.y44{bottom:776.264493pt;}
.y13{bottom:779.784493pt;}
.y7e{bottom:782.826667pt;}
.y12{bottom:795.144493pt;}
.y43{bottom:799.624493pt;}
.y5d{bottom:800.106667pt;}
.y11{bottom:810.184493pt;}
.y42{bottom:821.704493pt;}
.y10{bottom:825.544493pt;}
.yf{bottom:841.544493pt;}
.ye{bottom:859.784493pt;}
.y41{bottom:861.384493pt;}
.y40{bottom:877.384493pt;}
.yd{bottom:878.344493pt;}
.yc{bottom:896.584493pt;}
.y3f{bottom:899.144493pt;}
.yb{bottom:915.144493pt;}
.y3e{bottom:921.864493pt;}
.ya{bottom:933.384493pt;}
.y3d{bottom:944.264493pt;}
.y9{bottom:951.944493pt;}
.y3c{bottom:965.064493pt;}
.y8{bottom:970.184493pt;}
.y3b{bottom:985.544493pt;}
.y7{bottom:988.744493pt;}
.y3a{bottom:1006.344493pt;}
.y6{bottom:1008.584493pt;}
.y5b{bottom:1012.906667pt;}
.y39{bottom:1027.144493pt;}
.y5a{bottom:1027.626667pt;}
.y5{bottom:1036.104493pt;}
.y38{bottom:1047.624493pt;}
.h4{height:15.360000pt;}
.he{height:26.559973pt;}
.hb{height:34.479375pt;}
.ha{height:34.525625pt;}
.h9{height:34.978125pt;}
.h15{height:35.520000pt;}
.h5{height:37.720000pt;}
.h8{height:38.258125pt;}
.h1e{height:39.360000pt;}
.h3{height:42.656250pt;}
.hd{height:43.343750pt;}
.h7{height:46.656250pt;}
.hf{height:48.000000pt;}
.h6{height:63.984375pt;}
.h13{height:211.200000pt;}
.h10{height:212.160000pt;}
.h12{height:214.080000pt;}
.h18{height:274.880000pt;}
.h11{height:282.560000pt;}
.h16{height:298.560000pt;}
.h17{height:303.360000pt;}
.h19{height:348.160000pt;}
.h1a{height:368.320000pt;}
.h14{height:370.240000pt;}
.h1b{height:415.040000pt;}
.h1d{height:439.360000pt;}
.h1c{height:558.720000pt;}
.h2{height:1089.864533pt;}
.hc{height:1090.666667pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w3{width:6.079997pt;}
.w6{width:677.440000pt;}
.w2{width:761.045600pt;}
.w5{width:761.333333pt;}
.w4{width:793.333333pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:6.719973pt;}
.x1{left:16.327600pt;}
.x9{left:40.639973pt;}
.xa{left:49.920000pt;}
.x18{left:78.440107pt;}
.x2{left:97.279947pt;}
.x5{left:230.171200pt;}
.x7{left:301.841467pt;}
.x6{left:340.843067pt;}
.x13{left:348.053333pt;}
.x14{left:362.240133pt;}
.x4{left:381.013333pt;}
.x15{left:390.919867pt;}
.xe{left:419.153200pt;}
.x11{left:456.334533pt;}
.x10{left:460.160133pt;}
.x12{left:489.286667pt;}
.xd{left:493.286667pt;}
.xc{left:494.620000pt;}
.x16{left:500.053333pt;}
.x17{left:558.919867pt;}
.x8{left:648.000000pt;}
.xf{left:670.520000pt;}
.x3{left:674.567600pt;}
}




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