
    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_666c0e84af493143ef04a1b2.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9f5648c379f35976ce86d3e0.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_40440cea3c3ed737cc8d63a6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.971191;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_f2efb197e8956b7f8bde9147.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.971191;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_6bf823ea4ab89902353207c5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971191;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_87a7e54c1c2ee62b3eeaf6ee.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cca5b655a3b18564ef9319e6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.971191;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_a03937450bccfaa5fbdb9931.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.740234;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_fd12f4639c35d5a6642b004f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.924805;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_537530eb51e0e8b9393bef73.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.194868,0.156595,-0.156567,0.194902,0,0);-ms-transform:matrix(0.194868,0.156595,-0.156567,0.194902,0,0);-webkit-transform:matrix(0.194868,0.156595,-0.156567,0.194902,0,0);}
.m2{transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249959,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249987,0.000000,0.000000,0.250000,0,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);}
.v1{vertical-align:-1.095790px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.311451px;}
.v5{vertical-align:58.150632px;}
.v3{vertical-align:125.381838px;}
.v4{vertical-align:143.751273px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:2894.083096px;}
.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;}
}
.ws1{word-spacing:-59.981251px;}
.ws2{word-spacing:-51.108954px;}
.ws3{word-spacing:0.000000px;}
.ws0{word-spacing:0.048750px;}
._d{margin-left:-1416.499780px;}
._5{margin-left:-1050.248431px;}
._4{margin-left:-13.320001px;}
._7{margin-left:-7.738693px;}
._2{margin-left:-6.600000px;}
._3{margin-left:-4.440000px;}
._6{margin-left:-3.439419px;}
._0{margin-left:-2.160000px;}
._11{margin-left:-1.008000px;}
._e{width:486.029493px;}
._f{width:517.815536px;}
._b{width:530.758424px;}
._a{width:535.286279px;}
._9{width:541.352702px;}
._8{width:632.675647px;}
._10{width:1469.200229px;}
._c{width:1517.534633px;}
._1{width:1881.420240px;}
._12{width:2523.876481px;}
.fcc{color:transparent;}
.fcb{color:rgb(240,153,50);}
.fc9{color:rgb(0,166,80);}
.fc8{color:rgb(255,0,0);}
.fc7{color:rgb(128,0,128);}
.fc6{color:rgb(34,101,176);}
.fc4{color:rgb(227,141,133);}
.fc3{color:rgb(146,165,234);}
.fc2{color:rgb(0,149,255);}
.fc1{color:rgb(142,5,5);}
.fca{color:rgb(49,76,131);}
.fc5{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs13{font-size:24.000000px;}
.fsc{font-size:114.647142px;}
.fse{font-size:114.652596px;}
.fs2{font-size:119.741418px;}
.fs0{font-size:120.000006px;}
.fs9{font-size:124.061058px;}
.fsf{font-size:143.309130px;}
.fs15{font-size:145.376580px;}
.fs10{font-size:149.215188px;}
.fs11{font-size:149.215206px;}
.fsa{font-size:155.076474px;}
.fsb{font-size:157.636500px;}
.fsd{font-size:157.647618px;}
.fs6{font-size:168.000006px;}
.fs7{font-size:168.014292px;}
.fs4{font-size:170.612922px;}
.fs5{font-size:170.613174px;}
.fs8{font-size:170.613336px;}
.fs14{font-size:181.720296px;}
.fs3{font-size:204.735648px;}
.fs12{font-size:216.000006px;}
.fs1{font-size:240.000006px;}
.fs16{font-size:336.000012px;}
.y0{bottom:0.000000px;}
.y1{bottom:17.757341px;}
.y32{bottom:20.502108px;}
.y31{bottom:28.067649px;}
.y55{bottom:31.740254px;}
.y2b{bottom:36.290261px;}
.y33{bottom:58.194696px;}
.y30{bottom:74.645839px;}
.y2a{bottom:74.761876px;}
.y35{bottom:97.789153px;}
.y2f{bottom:121.224029px;}
.y34{bottom:128.071912px;}
.y1e{bottom:139.703552px;}
.y2e{bottom:167.802219px;}
.y20{bottom:188.699085px;}
.y54{bottom:397.504039px;}
.y21{bottom:403.139244px;}
.y39{bottom:465.923559px;}
.y53{bottom:502.504042px;}
.y38{bottom:504.959592px;}
.y3b{bottom:531.470151px;}
.y3a{bottom:563.420407px;}
.y24{bottom:592.809586px;}
.y23{bottom:609.297056px;}
.y25{bottom:674.250478px;}
.y36{bottom:736.482077px;}
.y37{bottom:768.408625px;}
.y2d{bottom:776.274747px;}
.y3d{bottom:803.835672px;}
.y2c{bottom:808.954458px;}
.y3c{bottom:836.520496px;}
.y22{bottom:846.158181px;}
.y29{bottom:964.843831px;}
.y28{bottom:999.237973px;}
.y1f{bottom:1003.627455px;}
.y2{bottom:1029.592736px;}
.y5{bottom:1326.901283px;}
.y1d{bottom:1374.771457px;}
.y27{bottom:1401.997776px;}
.y4{bottom:1483.662713px;}
.y26{bottom:1522.064552px;}
.y3{bottom:1592.353494px;}
.y10{bottom:1832.999245px;}
.yf{bottom:1885.499247px;}
.y1c{bottom:1929.010088px;}
.ye{bottom:1937.999248px;}
.y1b{bottom:1981.510090px;}
.y1a{bottom:2034.010092px;}
.y7{bottom:2050.139915px;}
.ya{bottom:2120.846138px;}
.y9{bottom:2174.162676px;}
.y15{bottom:2317.075041px;}
.y6{bottom:2342.567682px;}
.y14{bottom:2369.575043px;}
.y17{bottom:2412.527478px;}
.y16{bottom:2465.027480px;}
.y13{bottom:2623.277664px;}
.y8{bottom:2664.030440px;}
.y12{bottom:2675.782130px;}
.y11{bottom:2728.286597px;}
.y19{bottom:2792.699866px;}
.yc{bottom:2807.693865px;}
.yb{bottom:2861.010482px;}
.y18{bottom:2940.635960px;}
.yd{bottom:3018.846506px;}
.y3e{bottom:3019.139474px;}
.y3f{bottom:3171.520791px;}
.y41{bottom:3211.728095px;}
.y40{bottom:3758.739984px;}
.y51{bottom:3856.619388px;}
.y48{bottom:3903.467390px;}
.y50{bottom:3905.117612px;}
.y4f{bottom:3925.967386px;}
.y47{bottom:3955.967392px;}
.y4e{bottom:3985.967370px;}
.y46{bottom:4008.467393px;}
.y4d{bottom:4053.467378px;}
.y45{bottom:4068.467378px;}
.y4c{bottom:4113.467363px;}
.y44{bottom:4120.967379px;}
.y4b{bottom:4153.811255px;}
.y43{bottom:4173.467381px;}
.y4a{bottom:4173.467423px;}
.y42{bottom:4202.121906px;}
.y49{bottom:4233.467408px;}
.y52{bottom:4360.792052px;}
.h1a{height:18.351562px;}
.h11{height:83.466254px;}
.h2{height:87.480473px;}
.h13{height:87.668928px;}
.h5{height:91.560088px;}
.h4{height:91.757817px;}
.hd{height:94.863094px;}
.h14{height:103.003437px;}
.h16{height:107.248416px;}
.h17{height:107.248429px;}
.h15{height:108.344206px;}
.he{height:118.578984px;}
.h10{height:120.536503px;}
.h12{height:120.545005px;}
.h9{height:122.308598px;}
.ha{height:122.318999px;}
.h19{height:128.460942px;}
.h7{height:130.458904px;}
.h8{height:130.459097px;}
.hb{height:130.459221px;}
.h1c{height:138.952140px;}
.h6{height:156.550793px;}
.h20{height:165.164067px;}
.h1d{height:169.312607px;}
.h3{height:183.515630px;}
.h18{height:253.842780px;}
.h1f{height:256.921884px;}
.h1b{height:282.703413px;}
.h1e{height:694.798500px;}
.hc{height:1216.875000px;}
.hf{height:1474.735500px;}
.h0{height:5055.590552px;}
.h1{height:5055.750000px;}
.w2{width:1615.752000px;}
.w3{width:1616.449500px;}
.w0{width:3575.905772px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x25{left:16.040783px;}
.x33{left:38.692377px;}
.x26{left:51.292597px;}
.x1{left:85.039389px;}
.x36{left:87.872709px;}
.x38{left:100.732805px;}
.x1a{left:102.842180px;}
.x3e{left:145.154029px;}
.x20{left:171.848442px;}
.x22{left:393.359358px;}
.x2c{left:440.809297px;}
.x21{left:510.456566px;}
.x34{left:546.770008px;}
.x35{left:560.999728px;}
.x2b{left:588.624055px;}
.x3f{left:608.833392px;}
.x3d{left:622.945038px;}
.x2d{left:748.570259px;}
.x2e{left:845.801564px;}
.x27{left:905.031408px;}
.x28{left:917.483847px;}
.x1f{left:949.120883px;}
.x1d{left:972.821508px;}
.x1c{left:978.673220px;}
.x1e{left:988.887973px;}
.x1b{left:999.140565px;}
.x30{left:1117.524220px;}
.x29{left:1122.687230px;}
.x31{left:1134.295503px;}
.x32{left:1170.509467px;}
.x2f{left:1245.336624px;}
.x23{left:1297.192559px;}
.x24{left:1311.550684px;}
.x2a{left:1413.350963px;}
.x39{left:1875.907820px;}
.x2{left:1894.649471px;}
.x11{left:1952.400936px;}
.x12{left:1971.042553px;}
.x6{left:2071.991835px;}
.x7{left:2090.964763px;}
.x3b{left:2204.671445px;}
.x4{left:2228.514177px;}
.x3c{left:2243.466460px;}
.x3{left:2248.296893px;}
.xa{left:2437.712411px;}
.xb{left:2475.537618px;}
.x5{left:2540.613102px;}
.xe{left:2561.298132px;}
.xf{left:2595.883272px;}
.x10{left:2597.052123px;}
.x3a{left:2618.412969px;}
.xd{left:2653.552522px;}
.x8{left:2656.246208px;}
.xc{left:2681.484161px;}
.x9{left:2725.868204px;}
.x13{left:2944.815653px;}
.x14{left:3019.556378px;}
.x15{left:3023.564364px;}
.x37{left:3041.144766px;}
.x17{left:3066.171183px;}
.x18{left:3071.985159px;}
.x19{left:3138.461250px;}
.x16{left:3336.931465px;}
@media print{
.v1{vertical-align:-0.974036pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.165734pt;}
.v5{vertical-align:51.689451pt;}
.v3{vertical-align:111.450523pt;}
.v4{vertical-align:127.778909pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2572.518307pt;}
.ws1{word-spacing:-53.316667pt;}
.ws2{word-spacing:-45.430181pt;}
.ws3{word-spacing:0.000000pt;}
.ws0{word-spacing:0.043333pt;}
._d{margin-left:-1259.110915pt;}
._5{margin-left:-933.554161pt;}
._4{margin-left:-11.840001pt;}
._7{margin-left:-6.878838pt;}
._2{margin-left:-5.866667pt;}
._3{margin-left:-3.946667pt;}
._6{margin-left:-3.057261pt;}
._0{margin-left:-1.920000pt;}
._11{margin-left:-0.896000pt;}
._e{width:432.026216pt;}
._f{width:460.280476pt;}
._b{width:471.785266pt;}
._a{width:475.810026pt;}
._9{width:481.202402pt;}
._8{width:562.378353pt;}
._10{width:1305.955759pt;}
._c{width:1348.919674pt;}
._1{width:1672.373547pt;}
._12{width:2243.445761pt;}
.fs13{font-size:21.333333pt;}
.fsc{font-size:101.908571pt;}
.fse{font-size:101.913419pt;}
.fs2{font-size:106.436816pt;}
.fs0{font-size:106.666672pt;}
.fs9{font-size:110.276496pt;}
.fsf{font-size:127.385893pt;}
.fs15{font-size:129.223627pt;}
.fs10{font-size:132.635723pt;}
.fs11{font-size:132.635739pt;}
.fsa{font-size:137.845755pt;}
.fsb{font-size:140.121333pt;}
.fsd{font-size:140.131216pt;}
.fs6{font-size:149.333339pt;}
.fs7{font-size:149.346037pt;}
.fs4{font-size:151.655931pt;}
.fs5{font-size:151.656155pt;}
.fs8{font-size:151.656299pt;}
.fs14{font-size:161.529152pt;}
.fs3{font-size:181.987243pt;}
.fs12{font-size:192.000005pt;}
.fs1{font-size:213.333339pt;}
.fs16{font-size:298.666677pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:15.784303pt;}
.y32{bottom:18.224096pt;}
.y31{bottom:24.949021pt;}
.y55{bottom:28.213559pt;}
.y2b{bottom:32.258010pt;}
.y33{bottom:51.728619pt;}
.y30{bottom:66.351857pt;}
.y2a{bottom:66.455001pt;}
.y35{bottom:86.923692pt;}
.y2f{bottom:107.754692pt;}
.y34{bottom:113.841700pt;}
.y1e{bottom:124.180935pt;}
.y2e{bottom:149.157528pt;}
.y20{bottom:167.732520pt;}
.y54{bottom:353.336923pt;}
.y21{bottom:358.345995pt;}
.y39{bottom:414.154275pt;}
.y53{bottom:446.670260pt;}
.y38{bottom:448.852971pt;}
.y3b{bottom:472.417912pt;}
.y3a{bottom:500.818140pt;}
.y24{bottom:526.941855pt;}
.y23{bottom:541.597383pt;}
.y25{bottom:599.333758pt;}
.y36{bottom:654.650735pt;}
.y37{bottom:683.029889pt;}
.y2d{bottom:690.021997pt;}
.y3d{bottom:714.520597pt;}
.y2c{bottom:719.070629pt;}
.y3c{bottom:743.573775pt;}
.y22{bottom:752.140605pt;}
.y29{bottom:857.638961pt;}
.y28{bottom:888.211532pt;}
.y1f{bottom:892.113293pt;}
.y2{bottom:915.193543pt;}
.y5{bottom:1179.467807pt;}
.y1d{bottom:1222.019073pt;}
.y27{bottom:1246.220245pt;}
.y4{bottom:1318.811300pt;}
.y26{bottom:1352.946268pt;}
.y3{bottom:1415.425328pt;}
.y10{bottom:1629.332662pt;}
.yf{bottom:1675.999330pt;}
.y1c{bottom:1714.675634pt;}
.ye{bottom:1722.665999pt;}
.y1b{bottom:1761.342302pt;}
.y1a{bottom:1808.008971pt;}
.y7{bottom:1822.346591pt;}
.ya{bottom:1885.196567pt;}
.y9{bottom:1932.589045pt;}
.y15{bottom:2059.622258pt;}
.y6{bottom:2082.282384pt;}
.y14{bottom:2106.288927pt;}
.y17{bottom:2144.468869pt;}
.y16{bottom:2191.135538pt;}
.y13{bottom:2331.802368pt;}
.y8{bottom:2368.027057pt;}
.y12{bottom:2378.473005pt;}
.y11{bottom:2425.143641pt;}
.y19{bottom:2482.399881pt;}
.yc{bottom:2495.727880pt;}
.yb{bottom:2543.120428pt;}
.y18{bottom:2613.898631pt;}
.yd{bottom:2683.419116pt;}
.y3e{bottom:2683.679532pt;}
.y3f{bottom:2819.129592pt;}
.y41{bottom:2854.869417pt;}
.y40{bottom:3341.102208pt;}
.y51{bottom:3428.106123pt;}
.y48{bottom:3469.748791pt;}
.y50{bottom:3471.215655pt;}
.y4f{bottom:3489.748787pt;}
.y47{bottom:3516.415459pt;}
.y4e{bottom:3543.082107pt;}
.y46{bottom:3563.082128pt;}
.y4d{bottom:3603.082114pt;}
.y45{bottom:3616.415447pt;}
.y4c{bottom:3656.415433pt;}
.y44{bottom:3663.082115pt;}
.y4b{bottom:3692.276671pt;}
.y43{bottom:3709.748783pt;}
.y4a{bottom:3709.748821pt;}
.y42{bottom:3735.219472pt;}
.y49{bottom:3763.082140pt;}
.y52{bottom:3876.259601pt;}
.h1a{height:16.312500pt;}
.h11{height:74.192226pt;}
.h2{height:77.760421pt;}
.h13{height:77.927936pt;}
.h5{height:81.386745pt;}
.h4{height:81.562504pt;}
.hd{height:84.322750pt;}
.h14{height:91.558611pt;}
.h16{height:95.331926pt;}
.h17{height:95.331937pt;}
.h15{height:96.305961pt;}
.he{height:105.403541pt;}
.h10{height:107.143559pt;}
.h12{height:107.151115pt;}
.h9{height:108.718754pt;}
.ha{height:108.727999pt;}
.h19{height:114.187504pt;}
.h7{height:115.963470pt;}
.h8{height:115.963642pt;}
.hb{height:115.963752pt;}
.h1c{height:123.513014pt;}
.h6{height:139.156261pt;}
.h20{height:146.812504pt;}
.h1d{height:150.500095pt;}
.h3{height:163.125004pt;}
.h18{height:225.638027pt;}
.h1f{height:228.375008pt;}
.h1b{height:251.291923pt;}
.h1e{height:617.598667pt;}
.hc{height:1081.666667pt;}
.hf{height:1310.876000pt;}
.h0{height:4493.858268pt;}
.h1{height:4494.000000pt;}
.w2{width:1436.224000pt;}
.w3{width:1436.844000pt;}
.w0{width:3178.582908pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x25{left:14.258473pt;}
.x33{left:34.393224pt;}
.x26{left:45.593420pt;}
.x1{left:75.590568pt;}
.x36{left:78.109075pt;}
.x38{left:89.540271pt;}
.x1a{left:91.415271pt;}
.x3e{left:129.025803pt;}
.x20{left:152.754171pt;}
.x22{left:349.652763pt;}
.x2c{left:391.830487pt;}
.x21{left:453.739170pt;}
.x34{left:486.017785pt;}
.x35{left:498.666425pt;}
.x2b{left:523.221383pt;}
.x3f{left:541.185237pt;}
.x3d{left:553.728923pt;}
.x2d{left:665.395785pt;}
.x2e{left:751.823612pt;}
.x27{left:804.472363pt;}
.x28{left:815.541197pt;}
.x1f{left:843.663007pt;}
.x1d{left:864.730229pt;}
.x1c{left:869.931751pt;}
.x1e{left:879.011532pt;}
.x1b{left:888.124947pt;}
.x30{left:993.354863pt;}
.x29{left:997.944204pt;}
.x31{left:1008.262669pt;}
.x32{left:1040.452860pt;}
.x2f{left:1106.965888pt;}
.x23{left:1153.060052pt;}
.x24{left:1165.822830pt;}
.x2a{left:1256.311967pt;}
.x39{left:1667.473617pt;}
.x2{left:1684.132863pt;}
.x11{left:1735.467499pt;}
.x12{left:1752.037825pt;}
.x6{left:1841.770520pt;}
.x7{left:1858.635345pt;}
.x3b{left:1959.707951pt;}
.x4{left:1980.901491pt;}
.x3c{left:1994.192409pt;}
.x3{left:1998.486127pt;}
.xa{left:2166.855476pt;}
.xb{left:2200.477883pt;}
.x5{left:2258.322757pt;}
.xe{left:2276.709451pt;}
.xf{left:2307.451797pt;}
.x10{left:2308.490776pt;}
.x3a{left:2327.478195pt;}
.xd{left:2358.713352pt;}
.x8{left:2361.107740pt;}
.xc{left:2383.541476pt;}
.x9{left:2422.993959pt;}
.x13{left:2617.613914pt;}
.x14{left:2684.050114pt;}
.x15{left:2687.612768pt;}
.x37{left:2703.239792pt;}
.x17{left:2725.485496pt;}
.x18{left:2730.653475pt;}
.x19{left:2789.743333pt;}
.x16{left:2966.161303pt;}
}




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