
    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_c012cdc78cd19ba8fe1aa221.woff')format("woff");}.ff1{font-family:ff1;line-height:1.105469;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_f30c5f20a62b8d504d0a9b7f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.899414;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_372723903b12fe08cc032f51.woff')format("woff");}.ff3{font-family:ff3;line-height:0.899902;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_4accbb576e098c6b669a3a53.woff')format("woff");}.ff4{font-family:ff4;line-height:1.046000;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_d155c3d875c265437f23cedb.woff')format("woff");}.ff5{font-family:ff5;line-height:1.183105;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_99c2f0b3c97fe5c08ef7d384.woff')format("woff");}.ff6{font-family:ff6;line-height:1.045000;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_9a7ff109d525cd85e4b113ee.woff')format("woff");}.ff7{font-family:ff7;line-height:0.899414;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_42f2eba05d3f32c731e605d1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.899902;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;}
.ls13{letter-spacing:-5.400000px;}
.ls22{letter-spacing:-4.320000px;}
.ls15{letter-spacing:-3.528000px;}
.ls1a{letter-spacing:-3.312000px;}
.ls19{letter-spacing:-3.240000px;}
.ls17{letter-spacing:-2.592000px;}
.ls1b{letter-spacing:-2.448000px;}
.ls16{letter-spacing:-2.088000px;}
.ls18{letter-spacing:-2.016000px;}
.ls20{letter-spacing:-1.944000px;}
.ls10{letter-spacing:-1.872000px;}
.ls2b{letter-spacing:-1.800000px;}
.ls23{letter-spacing:-1.728000px;}
.ls1e{letter-spacing:-1.512000px;}
.ls14{letter-spacing:-1.224000px;}
.ls28{letter-spacing:-1.152000px;}
.lsd{letter-spacing:-0.936000px;}
.ls29{letter-spacing:-0.864000px;}
.ls24{letter-spacing:-0.792000px;}
.lsf{letter-spacing:-0.720000px;}
.ls21{letter-spacing:-0.648000px;}
.ls26{letter-spacing:-0.504000px;}
.lsc{letter-spacing:-0.360000px;}
.ls1f{letter-spacing:-0.288000px;}
.ls35{letter-spacing:-0.240000px;}
.ls9{letter-spacing:-0.180000px;}
.ls2d{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.054000px;}
.ls2e{letter-spacing:0.192000px;}
.ls12{letter-spacing:0.288000px;}
.ls25{letter-spacing:0.360000px;}
.ls2f{letter-spacing:0.480000px;}
.ls11{letter-spacing:0.864000px;}
.lse{letter-spacing:1.008000px;}
.ls34{letter-spacing:1.260000px;}
.ls2{letter-spacing:1.320000px;}
.ls27{letter-spacing:1.368000px;}
.ls30{letter-spacing:1.392000px;}
.ls4{letter-spacing:2.376000px;}
.ls33{letter-spacing:3.780000px;}
.ls32{letter-spacing:4.704000px;}
.ls2c{letter-spacing:4.752000px;}
.ls31{letter-spacing:4.800000px;}
.lsa{letter-spacing:5.568000px;}
.ls7{letter-spacing:5.664000px;}
.lsb{letter-spacing:5.700000px;}
.ls2a{letter-spacing:5.880000px;}
.ls1c{letter-spacing:6.000000px;}
.ls5{letter-spacing:10.692000px;}
.ls3{letter-spacing:10.956000px;}
.ls6{letter-spacing:10.962000px;}
.ls8{letter-spacing:12.474000px;}
.ls1d{letter-spacing:49.248000px;}
.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;}
}
.ws2{word-spacing:-35.040000px;}
.wsa{word-spacing:-27.648000px;}
.ws4{word-spacing:-26.136000px;}
.wsc{word-spacing:-22.560000px;}
.ws2b{word-spacing:-21.600000px;}
.ws3b{word-spacing:-20.640000px;}
.ws2e{word-spacing:-19.368000px;}
.ws25{word-spacing:-19.296000px;}
.ws16{word-spacing:-19.008000px;}
.ws15{word-spacing:-18.546000px;}
.ws17{word-spacing:-18.144000px;}
.ws3{word-spacing:-17.550000px;}
.ws22{word-spacing:-17.496000px;}
.ws21{word-spacing:-17.064000px;}
.ws30{word-spacing:-16.992000px;}
.wsb{word-spacing:-16.680000px;}
.ws2f{word-spacing:-16.056000px;}
.ws33{word-spacing:-15.984000px;}
.ws24{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.228000px;}
.ws26{word-spacing:-15.192000px;}
.ws39{word-spacing:-14.880000px;}
.ws38{word-spacing:-13.968000px;}
.ws37{word-spacing:-13.488000px;}
.ws34{word-spacing:-12.336000px;}
.ws36{word-spacing:-12.048000px;}
.ws35{word-spacing:-11.712000px;}
.ws1f{word-spacing:-6.000000px;}
.ws32{word-spacing:-5.880000px;}
.ws8{word-spacing:-5.664000px;}
.ws3e{word-spacing:-1.260000px;}
.ws10{word-spacing:-1.008000px;}
.ws13{word-spacing:-0.864000px;}
.wsd{word-spacing:-0.768000px;}
.ws3c{word-spacing:-0.720000px;}
.ws3d{word-spacing:-0.624000px;}
.ws6{word-spacing:-0.396000px;}
.ws2c{word-spacing:-0.360000px;}
.ws14{word-spacing:-0.288000px;}
.ws7{word-spacing:-0.132000px;}
.ws9{word-spacing:-0.066000px;}
.ws5{word-spacing:0.000000px;}
.ws3f{word-spacing:0.240000px;}
.ws3a{word-spacing:0.288000px;}
.wse{word-spacing:0.360000px;}
.ws2d{word-spacing:0.504000px;}
.ws27{word-spacing:0.648000px;}
.ws11{word-spacing:0.720000px;}
.ws2a{word-spacing:0.792000px;}
.wsf{word-spacing:0.936000px;}
.ws31{word-spacing:1.152000px;}
.ws23{word-spacing:1.512000px;}
.ws29{word-spacing:1.728000px;}
.ws12{word-spacing:1.872000px;}
.ws1b{word-spacing:2.016000px;}
.ws1e{word-spacing:2.448000px;}
.ws1a{word-spacing:2.592000px;}
.ws1c{word-spacing:3.240000px;}
.ws1d{word-spacing:3.312000px;}
.ws19{word-spacing:3.528000px;}
.ws28{word-spacing:4.320000px;}
.ws18{word-spacing:5.400000px;}
.ws20{word-spacing:701.772000px;}
.ws0{word-spacing:715.866000px;}
._1a{margin-left:-867.331800px;}
._b{margin-left:-865.107600px;}
._1c{margin-left:-862.784400px;}
._1b{margin-left:-861.583200px;}
._12{margin-left:-860.401800px;}
._18{margin-left:-708.475800px;}
._1{margin-left:-704.089800px;}
._19{margin-left:-58.565400px;}
._7{margin-left:-10.260000px;}
._a{margin-left:-7.695000px;}
._3{margin-left:-5.437800px;}
._9{margin-left:-3.512400px;}
._0{margin-left:-2.494800px;}
._4{margin-left:-1.252800px;}
._2{width:1.306800px;}
._5{width:2.419200px;}
._8{width:3.550800px;}
._13{width:4.652400px;}
._6{width:5.671200px;}
._14{width:6.684000px;}
._10{width:7.779600px;}
._d{width:9.014400px;}
._c{width:10.029600px;}
._e{width:11.109600px;}
._f{width:12.549600px;}
._11{width:13.633200px;}
._17{width:29.232000px;}
._16{width:31.297200px;}
._15{width:33.939600px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.521900px;}
.y3{bottom:55.533000px;}
.y1{bottom:72.000000px;}
.y4a{bottom:117.000000px;}
.y24{bottom:118.500000px;}
.y23{bottom:137.250000px;}
.y49{bottom:139.500000px;}
.y48{bottom:162.000000px;}
.y22{bottom:165.000000px;}
.y9c{bottom:170.250000px;}
.y21{bottom:183.750000px;}
.y47{bottom:184.500000px;}
.y9b{bottom:189.000000px;}
.y20{bottom:202.500000px;}
.y46{bottom:207.000000px;}
.y9a{bottom:207.750000px;}
.y1f{bottom:221.250000px;}
.y99{bottom:226.500000px;}
.y45{bottom:229.500000px;}
.y5a{bottom:235.500000px;}
.y1e{bottom:240.000000px;}
.y98{bottom:245.250000px;}
.y44{bottom:252.000000px;}
.y1d{bottom:258.750000px;}
.y97{bottom:264.000000px;}
.y78{bottom:271.500000px;}
.y43{bottom:274.500000px;}
.y1c{bottom:277.500000px;}
.y77{bottom:286.500000px;}
.y96{bottom:293.250000px;}
.y1b{bottom:296.250000px;}
.y42{bottom:297.000000px;}
.y76{bottom:301.500000px;}
.y95{bottom:312.000000px;}
.y1a{bottom:315.000000px;}
.y75{bottom:316.500000px;}
.y41{bottom:319.500000px;}
.y5b{bottom:325.500000px;}
.y94{bottom:330.750000px;}
.y74{bottom:331.500000px;}
.y19{bottom:333.750000px;}
.y40{bottom:342.000000px;}
.y73{bottom:346.500000px;}
.y93{bottom:349.500000px;}
.y18{bottom:352.500000px;}
.y72{bottom:361.500000px;}
.y3f{bottom:364.500000px;}
.y92{bottom:368.250000px;}
.y17{bottom:371.250000px;}
.y71{bottom:376.500000px;}
.y3e{bottom:387.000000px;}
.y16{bottom:390.000000px;}
.y70{bottom:391.500000px;}
.y6f{bottom:406.500000px;}
.y15{bottom:408.750000px;}
.y3d{bottom:409.500000px;}
.y91{bottom:416.250000px;}
.y6e{bottom:421.500000px;}
.y14{bottom:427.500000px;}
.y3c{bottom:432.000000px;}
.y6d{bottom:436.500000px;}
.y13{bottom:446.250000px;}
.y6c{bottom:451.500000px;}
.y3b{bottom:454.500000px;}
.y90{bottom:457.500000px;}
.y12{bottom:465.000000px;}
.y6b{bottom:466.500000px;}
.y8f{bottom:476.250000px;}
.y3a{bottom:477.000000px;}
.y6a{bottom:481.500000px;}
.y11{bottom:483.750000px;}
.y8e{bottom:495.000000px;}
.y69{bottom:496.500000px;}
.y59{bottom:499.500000px;}
.y10{bottom:502.500000px;}
.y39{bottom:506.250000px;}
.y68{bottom:511.500000px;}
.y8d{bottom:513.750000px;}
.yf{bottom:521.250000px;}
.y58{bottom:522.000000px;}
.y67{bottom:526.500000px;}
.y8c{bottom:532.500000px;}
.y66{bottom:541.500000px;}
.y57{bottom:544.500000px;}
.ye{bottom:549.000000px;}
.y8b{bottom:551.250000px;}
.y38{bottom:555.750000px;}
.y65{bottom:556.500000px;}
.y56{bottom:567.000000px;}
.y8a{bottom:570.000000px;}
.y64{bottom:571.500000px;}
.y37{bottom:574.500000px;}
.y63{bottom:586.500000px;}
.y89{bottom:588.750000px;}
.y55{bottom:589.500000px;}
.yd{bottom:592.500000px;}
.y62{bottom:601.500000px;}
.y36{bottom:602.250000px;}
.y88{bottom:607.500000px;}
.yc{bottom:612.000000px;}
.y61{bottom:616.500000px;}
.y35{bottom:621.000000px;}
.y87{bottom:626.250000px;}
.y60{bottom:631.500000px;}
.y54{bottom:634.500000px;}
.yb{bottom:637.500000px;}
.y34{bottom:639.750000px;}
.y86{bottom:645.000000px;}
.y5f{bottom:646.500000px;}
.y53{bottom:657.000000px;}
.y33{bottom:658.500000px;}
.y5e{bottom:661.500000px;}
.y5c{bottom:663.000000px;}
.y85{bottom:663.750000px;}
.y32{bottom:677.250000px;}
.y52{bottom:679.500000px;}
.y84{bottom:682.500000px;}
.y5d{bottom:684.000000px;}
.y31{bottom:696.000000px;}
.y83{bottom:701.250000px;}
.y51{bottom:702.000000px;}
.ya{bottom:705.000000px;}
.y30{bottom:714.750000px;}
.y82{bottom:720.000000px;}
.y9{bottom:724.500000px;}
.y2f{bottom:733.500000px;}
.y81{bottom:738.750000px;}
.y8{bottom:747.000000px;}
.y2e{bottom:752.250000px;}
.y80{bottom:757.500000px;}
.y50{bottom:769.500000px;}
.y2d{bottom:771.000000px;}
.y7f{bottom:776.250000px;}
.y2c{bottom:789.750000px;}
.y4f{bottom:792.000000px;}
.y7e{bottom:795.000000px;}
.y2b{bottom:808.500000px;}
.y7d{bottom:813.750000px;}
.y7{bottom:814.500000px;}
.y2a{bottom:827.250000px;}
.y7c{bottom:832.500000px;}
.y4e{bottom:837.000000px;}
.y6{bottom:844.500000px;}
.y29{bottom:846.000000px;}
.y7b{bottom:851.250000px;}
.y4d{bottom:859.500000px;}
.y28{bottom:864.750000px;}
.y5{bottom:874.500000px;}
.y4c{bottom:882.000000px;}
.y27{bottom:883.500000px;}
.y26{bottom:902.250000px;}
.y4b{bottom:904.500000px;}
.y7a{bottom:913.500000px;}
.y4{bottom:927.000000px;}
.y25{bottom:930.000000px;}
.y79{bottom:931.500000px;}
.h2{height:35.991211px;}
.ha{height:39.888000px;}
.hd{height:40.464000px;}
.hc{height:40.757812px;}
.h7{height:43.989258px;}
.hb{height:44.460938px;}
.h1{height:45.852539px;}
.h6{height:50.947266px;}
.h4{height:55.638000px;}
.h9{height:56.041992px;}
.h8{height:61.136719px;}
.h5{height:66.691406px;}
.h3{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x4{left:67.500000px;}
.x5{left:69.164850px;}
.x11{left:82.500000px;}
.xb{left:90.000000px;}
.x6{left:99.000000px;}
.xe{left:100.195350px;}
.x8{left:112.500000px;}
.xa{left:135.000000px;}
.x9{left:144.000000px;}
.xf{left:145.195350px;}
.x10{left:157.500000px;}
.xd{left:162.000000px;}
.x3{left:169.025550px;}
.x1{left:181.422150px;}
.x2{left:263.250000px;}
.xc{left:635.907600px;}
.x7{left:637.084050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-4.800000pt;}
.ls22{letter-spacing:-3.840000pt;}
.ls15{letter-spacing:-3.136000pt;}
.ls1a{letter-spacing:-2.944000pt;}
.ls19{letter-spacing:-2.880000pt;}
.ls17{letter-spacing:-2.304000pt;}
.ls1b{letter-spacing:-2.176000pt;}
.ls16{letter-spacing:-1.856000pt;}
.ls18{letter-spacing:-1.792000pt;}
.ls20{letter-spacing:-1.728000pt;}
.ls10{letter-spacing:-1.664000pt;}
.ls2b{letter-spacing:-1.600000pt;}
.ls23{letter-spacing:-1.536000pt;}
.ls1e{letter-spacing:-1.344000pt;}
.ls14{letter-spacing:-1.088000pt;}
.ls28{letter-spacing:-1.024000pt;}
.lsd{letter-spacing:-0.832000pt;}
.ls29{letter-spacing:-0.768000pt;}
.ls24{letter-spacing:-0.704000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls21{letter-spacing:-0.576000pt;}
.ls26{letter-spacing:-0.448000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls1f{letter-spacing:-0.256000pt;}
.ls35{letter-spacing:-0.213333pt;}
.ls9{letter-spacing:-0.160000pt;}
.ls2d{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.048000pt;}
.ls2e{letter-spacing:0.170667pt;}
.ls12{letter-spacing:0.256000pt;}
.ls25{letter-spacing:0.320000pt;}
.ls2f{letter-spacing:0.426667pt;}
.ls11{letter-spacing:0.768000pt;}
.lse{letter-spacing:0.896000pt;}
.ls34{letter-spacing:1.120000pt;}
.ls2{letter-spacing:1.173333pt;}
.ls27{letter-spacing:1.216000pt;}
.ls30{letter-spacing:1.237333pt;}
.ls4{letter-spacing:2.112000pt;}
.ls33{letter-spacing:3.360000pt;}
.ls32{letter-spacing:4.181333pt;}
.ls2c{letter-spacing:4.224000pt;}
.ls31{letter-spacing:4.266667pt;}
.lsa{letter-spacing:4.949333pt;}
.ls7{letter-spacing:5.034667pt;}
.lsb{letter-spacing:5.066667pt;}
.ls2a{letter-spacing:5.226667pt;}
.ls1c{letter-spacing:5.333333pt;}
.ls5{letter-spacing:9.504000pt;}
.ls3{letter-spacing:9.738667pt;}
.ls6{letter-spacing:9.744000pt;}
.ls8{letter-spacing:11.088000pt;}
.ls1d{letter-spacing:43.776000pt;}
.ws2{word-spacing:-31.146667pt;}
.wsa{word-spacing:-24.576000pt;}
.ws4{word-spacing:-23.232000pt;}
.wsc{word-spacing:-20.053333pt;}
.ws2b{word-spacing:-19.200000pt;}
.ws3b{word-spacing:-18.346667pt;}
.ws2e{word-spacing:-17.216000pt;}
.ws25{word-spacing:-17.152000pt;}
.ws16{word-spacing:-16.896000pt;}
.ws15{word-spacing:-16.485333pt;}
.ws17{word-spacing:-16.128000pt;}
.ws3{word-spacing:-15.600000pt;}
.ws22{word-spacing:-15.552000pt;}
.ws21{word-spacing:-15.168000pt;}
.ws30{word-spacing:-15.104000pt;}
.wsb{word-spacing:-14.826667pt;}
.ws2f{word-spacing:-14.272000pt;}
.ws33{word-spacing:-14.208000pt;}
.ws24{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.536000pt;}
.ws26{word-spacing:-13.504000pt;}
.ws39{word-spacing:-13.226667pt;}
.ws38{word-spacing:-12.416000pt;}
.ws37{word-spacing:-11.989333pt;}
.ws34{word-spacing:-10.965333pt;}
.ws36{word-spacing:-10.709333pt;}
.ws35{word-spacing:-10.410667pt;}
.ws1f{word-spacing:-5.333333pt;}
.ws32{word-spacing:-5.226667pt;}
.ws8{word-spacing:-5.034667pt;}
.ws3e{word-spacing:-1.120000pt;}
.ws10{word-spacing:-0.896000pt;}
.ws13{word-spacing:-0.768000pt;}
.wsd{word-spacing:-0.682667pt;}
.ws3c{word-spacing:-0.640000pt;}
.ws3d{word-spacing:-0.554667pt;}
.ws6{word-spacing:-0.352000pt;}
.ws2c{word-spacing:-0.320000pt;}
.ws14{word-spacing:-0.256000pt;}
.ws7{word-spacing:-0.117333pt;}
.ws9{word-spacing:-0.058667pt;}
.ws5{word-spacing:0.000000pt;}
.ws3f{word-spacing:0.213333pt;}
.ws3a{word-spacing:0.256000pt;}
.wse{word-spacing:0.320000pt;}
.ws2d{word-spacing:0.448000pt;}
.ws27{word-spacing:0.576000pt;}
.ws11{word-spacing:0.640000pt;}
.ws2a{word-spacing:0.704000pt;}
.wsf{word-spacing:0.832000pt;}
.ws31{word-spacing:1.024000pt;}
.ws23{word-spacing:1.344000pt;}
.ws29{word-spacing:1.536000pt;}
.ws12{word-spacing:1.664000pt;}
.ws1b{word-spacing:1.792000pt;}
.ws1e{word-spacing:2.176000pt;}
.ws1a{word-spacing:2.304000pt;}
.ws1c{word-spacing:2.880000pt;}
.ws1d{word-spacing:2.944000pt;}
.ws19{word-spacing:3.136000pt;}
.ws28{word-spacing:3.840000pt;}
.ws18{word-spacing:4.800000pt;}
.ws20{word-spacing:623.797333pt;}
.ws0{word-spacing:636.325333pt;}
._1a{margin-left:-770.961600pt;}
._b{margin-left:-768.984533pt;}
._1c{margin-left:-766.919467pt;}
._1b{margin-left:-765.851733pt;}
._12{margin-left:-764.801600pt;}
._18{margin-left:-629.756267pt;}
._1{margin-left:-625.857600pt;}
._19{margin-left:-52.058133pt;}
._7{margin-left:-9.120000pt;}
._a{margin-left:-6.840000pt;}
._3{margin-left:-4.833600pt;}
._9{margin-left:-3.122133pt;}
._0{margin-left:-2.217600pt;}
._4{margin-left:-1.113600pt;}
._2{width:1.161600pt;}
._5{width:2.150400pt;}
._8{width:3.156267pt;}
._13{width:4.135467pt;}
._6{width:5.041067pt;}
._14{width:5.941333pt;}
._10{width:6.915200pt;}
._d{width:8.012800pt;}
._c{width:8.915200pt;}
._e{width:9.875200pt;}
._f{width:11.155200pt;}
._11{width:12.118400pt;}
._17{width:25.984000pt;}
._16{width:27.819733pt;}
._15{width:30.168533pt;}
.fs5{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.352800pt;}
.y3{bottom:49.362667pt;}
.y1{bottom:64.000000pt;}
.y4a{bottom:104.000000pt;}
.y24{bottom:105.333333pt;}
.y23{bottom:122.000000pt;}
.y49{bottom:124.000000pt;}
.y48{bottom:144.000000pt;}
.y22{bottom:146.666667pt;}
.y9c{bottom:151.333333pt;}
.y21{bottom:163.333333pt;}
.y47{bottom:164.000000pt;}
.y9b{bottom:168.000000pt;}
.y20{bottom:180.000000pt;}
.y46{bottom:184.000000pt;}
.y9a{bottom:184.666667pt;}
.y1f{bottom:196.666667pt;}
.y99{bottom:201.333333pt;}
.y45{bottom:204.000000pt;}
.y5a{bottom:209.333333pt;}
.y1e{bottom:213.333333pt;}
.y98{bottom:218.000000pt;}
.y44{bottom:224.000000pt;}
.y1d{bottom:230.000000pt;}
.y97{bottom:234.666667pt;}
.y78{bottom:241.333333pt;}
.y43{bottom:244.000000pt;}
.y1c{bottom:246.666667pt;}
.y77{bottom:254.666667pt;}
.y96{bottom:260.666667pt;}
.y1b{bottom:263.333333pt;}
.y42{bottom:264.000000pt;}
.y76{bottom:268.000000pt;}
.y95{bottom:277.333333pt;}
.y1a{bottom:280.000000pt;}
.y75{bottom:281.333333pt;}
.y41{bottom:284.000000pt;}
.y5b{bottom:289.333333pt;}
.y94{bottom:294.000000pt;}
.y74{bottom:294.666667pt;}
.y19{bottom:296.666667pt;}
.y40{bottom:304.000000pt;}
.y73{bottom:308.000000pt;}
.y93{bottom:310.666667pt;}
.y18{bottom:313.333333pt;}
.y72{bottom:321.333333pt;}
.y3f{bottom:324.000000pt;}
.y92{bottom:327.333333pt;}
.y17{bottom:330.000000pt;}
.y71{bottom:334.666667pt;}
.y3e{bottom:344.000000pt;}
.y16{bottom:346.666667pt;}
.y70{bottom:348.000000pt;}
.y6f{bottom:361.333333pt;}
.y15{bottom:363.333333pt;}
.y3d{bottom:364.000000pt;}
.y91{bottom:370.000000pt;}
.y6e{bottom:374.666667pt;}
.y14{bottom:380.000000pt;}
.y3c{bottom:384.000000pt;}
.y6d{bottom:388.000000pt;}
.y13{bottom:396.666667pt;}
.y6c{bottom:401.333333pt;}
.y3b{bottom:404.000000pt;}
.y90{bottom:406.666667pt;}
.y12{bottom:413.333333pt;}
.y6b{bottom:414.666667pt;}
.y8f{bottom:423.333333pt;}
.y3a{bottom:424.000000pt;}
.y6a{bottom:428.000000pt;}
.y11{bottom:430.000000pt;}
.y8e{bottom:440.000000pt;}
.y69{bottom:441.333333pt;}
.y59{bottom:444.000000pt;}
.y10{bottom:446.666667pt;}
.y39{bottom:450.000000pt;}
.y68{bottom:454.666667pt;}
.y8d{bottom:456.666667pt;}
.yf{bottom:463.333333pt;}
.y58{bottom:464.000000pt;}
.y67{bottom:468.000000pt;}
.y8c{bottom:473.333333pt;}
.y66{bottom:481.333333pt;}
.y57{bottom:484.000000pt;}
.ye{bottom:488.000000pt;}
.y8b{bottom:490.000000pt;}
.y38{bottom:494.000000pt;}
.y65{bottom:494.666667pt;}
.y56{bottom:504.000000pt;}
.y8a{bottom:506.666667pt;}
.y64{bottom:508.000000pt;}
.y37{bottom:510.666667pt;}
.y63{bottom:521.333333pt;}
.y89{bottom:523.333333pt;}
.y55{bottom:524.000000pt;}
.yd{bottom:526.666667pt;}
.y62{bottom:534.666667pt;}
.y36{bottom:535.333333pt;}
.y88{bottom:540.000000pt;}
.yc{bottom:544.000000pt;}
.y61{bottom:548.000000pt;}
.y35{bottom:552.000000pt;}
.y87{bottom:556.666667pt;}
.y60{bottom:561.333333pt;}
.y54{bottom:564.000000pt;}
.yb{bottom:566.666667pt;}
.y34{bottom:568.666667pt;}
.y86{bottom:573.333333pt;}
.y5f{bottom:574.666667pt;}
.y53{bottom:584.000000pt;}
.y33{bottom:585.333333pt;}
.y5e{bottom:588.000000pt;}
.y5c{bottom:589.333333pt;}
.y85{bottom:590.000000pt;}
.y32{bottom:602.000000pt;}
.y52{bottom:604.000000pt;}
.y84{bottom:606.666667pt;}
.y5d{bottom:608.000000pt;}
.y31{bottom:618.666667pt;}
.y83{bottom:623.333333pt;}
.y51{bottom:624.000000pt;}
.ya{bottom:626.666667pt;}
.y30{bottom:635.333333pt;}
.y82{bottom:640.000000pt;}
.y9{bottom:644.000000pt;}
.y2f{bottom:652.000000pt;}
.y81{bottom:656.666667pt;}
.y8{bottom:664.000000pt;}
.y2e{bottom:668.666667pt;}
.y80{bottom:673.333333pt;}
.y50{bottom:684.000000pt;}
.y2d{bottom:685.333333pt;}
.y7f{bottom:690.000000pt;}
.y2c{bottom:702.000000pt;}
.y4f{bottom:704.000000pt;}
.y7e{bottom:706.666667pt;}
.y2b{bottom:718.666667pt;}
.y7d{bottom:723.333333pt;}
.y7{bottom:724.000000pt;}
.y2a{bottom:735.333333pt;}
.y7c{bottom:740.000000pt;}
.y4e{bottom:744.000000pt;}
.y6{bottom:750.666667pt;}
.y29{bottom:752.000000pt;}
.y7b{bottom:756.666667pt;}
.y4d{bottom:764.000000pt;}
.y28{bottom:768.666667pt;}
.y5{bottom:777.333333pt;}
.y4c{bottom:784.000000pt;}
.y27{bottom:785.333333pt;}
.y26{bottom:802.000000pt;}
.y4b{bottom:804.000000pt;}
.y7a{bottom:812.000000pt;}
.y4{bottom:824.000000pt;}
.y25{bottom:826.666667pt;}
.y79{bottom:828.000000pt;}
.h2{height:31.992188pt;}
.ha{height:35.456000pt;}
.hd{height:35.968000pt;}
.hc{height:36.229167pt;}
.h7{height:39.101562pt;}
.hb{height:39.520833pt;}
.h1{height:40.757812pt;}
.h6{height:45.286458pt;}
.h4{height:49.456000pt;}
.h9{height:49.815104pt;}
.h8{height:54.343750pt;}
.h5{height:59.281250pt;}
.h3{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x4{left:60.000000pt;}
.x5{left:61.479867pt;}
.x11{left:73.333333pt;}
.xb{left:80.000000pt;}
.x6{left:88.000000pt;}
.xe{left:89.062533pt;}
.x8{left:100.000000pt;}
.xa{left:120.000000pt;}
.x9{left:128.000000pt;}
.xf{left:129.062533pt;}
.x10{left:140.000000pt;}
.xd{left:144.000000pt;}
.x3{left:150.244933pt;}
.x1{left:161.264133pt;}
.x2{left:234.000000pt;}
.xc{left:565.251200pt;}
.x7{left:566.296933pt;}
}




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