
    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_805849586121210972484fa7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_c8e4bb7bfc8459f0d5ac7f4a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_8fc3182db0bfaf4e12755a93.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_5f0244b502f79634d995f85d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_3324691560f1474b9a727e56.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_6b367dd702c41457773b8bc2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_9ddae26a419c9f789de13df4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.056152;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_3c1214d0c8d5c1be244a0df9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.050293;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_18740fab75e9d41c6e42f795.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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_62f104dedb61674f63adcb50.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.090820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e78adbda85c454c71979b3ca.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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);}
.v1{vertical-align:-69.240000px;}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-0.774000px;}
.ls20{letter-spacing:-0.540000px;}
.ls1a{letter-spacing:-0.460200px;}
.ls24{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.206400px;}
.ls19{letter-spacing:-0.106800px;}
.ls7{letter-spacing:-0.058320px;}
.lsd{letter-spacing:-0.053280px;}
.ls1b{letter-spacing:-0.046800px;}
.ls6{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.053280px;}
.ls18{letter-spacing:0.097800px;}
.ls17{letter-spacing:0.100800px;}
.lsc{letter-spacing:0.106560px;}
.lse{letter-spacing:0.106800px;}
.ls12{letter-spacing:0.119520px;}
.ls5{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.259920px;}
.ls8{letter-spacing:0.298800px;}
.ls25{letter-spacing:0.306600px;}
.ls2{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.540000px;}
.ls1c{letter-spacing:0.900000px;}
.ls15{letter-spacing:1.620000px;}
.ls11{letter-spacing:5.940000px;}
.lsa{letter-spacing:7.380000px;}
.lsb{letter-spacing:8.820000px;}
.ls1f{letter-spacing:10.260000px;}
.ls13{letter-spacing:12.420000px;}
.ls4{letter-spacing:16.020000px;}
.ls16{letter-spacing:18.180000px;}
.ls3{letter-spacing:20.340000px;}
.ls23{letter-spacing:44.100000px;}
.ls1d{letter-spacing:154.980000px;}
.ls14{letter-spacing:158.760000px;}
.ls21{letter-spacing:434.340000px;}
.ls0{letter-spacing:1039.320000px;}
.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:-59.760000px;}
.ws2{word-spacing:-15.300000px;}
.wse{word-spacing:-15.246600px;}
.ws7{word-spacing:-15.199800px;}
.ws6{word-spacing:-15.046800px;}
.wsc{word-spacing:-15.040800px;}
.wsa{word-spacing:-15.037800px;}
.ws3{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.893200px;}
.ws5{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.733600px;}
.wsd{word-spacing:-14.580000px;}
.ws8{word-spacing:-14.166000px;}
.ws1{word-spacing:-13.447440px;}
.ws4{word-spacing:0.000000px;}
._15{margin-left:-13.835520px;}
._12{margin-left:-11.033280px;}
._22{margin-left:-6.871680px;}
._7{margin-left:-4.066560px;}
._4{margin-left:-2.450160px;}
._3{margin-left:-1.075680px;}
._0{width:1.075680px;}
._1{width:2.412480px;}
._8{width:3.884400px;}
._6{width:5.199120px;}
._5{width:6.752880px;}
._e{width:8.545680px;}
._d{width:10.039680px;}
._b{width:11.473920px;}
._a{width:12.549600px;}
._9{width:13.804560px;}
._c{width:16.015680px;}
._10{width:17.503920px;}
._20{width:18.824400px;}
._2e{width:19.884960px;}
._f{width:21.013200px;}
._21{width:23.194080px;}
._13{width:24.304320px;}
._32{width:26.048160px;}
._31{width:27.131040px;}
._25{width:28.488240px;}
._11{width:31.075200px;}
._27{width:41.133360px;}
._34{width:44.503920px;}
._35{width:49.404240px;}
._26{width:57.806400px;}
._1d{width:59.040000px;}
._2c{width:61.033440px;}
._1f{width:67.764960px;}
._2a{width:72.746400px;}
._17{width:79.019760px;}
._29{width:85.953360px;}
._19{width:92.286480px;}
._16{width:107.370720px;}
._24{width:120.757680px;}
._30{width:127.510560px;}
._36{width:137.981520px;}
._23{width:144.064080px;}
._1e{width:145.713360px;}
._1c{width:155.693280px;}
._2b{width:162.901440px;}
._1b{width:171.767280px;}
._2d{width:179.454960px;}
._1a{width:186.109680px;}
._28{width:187.210800px;}
._18{width:191.846640px;}
._14{width:197.460000px;}
._2f{width:198.565200px;}
._33{width:306.344160px;}
._37{width:849.216000px;}
._2{width:1308.763920px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760000px;}
.y0{bottom:0.000000px;}
.y42{bottom:3.240000px;}
.y7b{bottom:20.520000px;}
.y7a{bottom:37.800000px;}
.y44{bottom:39.240000px;}
.y79{bottom:54.936000px;}
.y81{bottom:55.080000px;}
.y78{bottom:72.210000px;}
.y80{bottom:72.360000px;}
.y3f{bottom:88.380000px;}
.y77{bottom:89.490000px;}
.y7f{bottom:89.640000px;}
.y6b{bottom:94.140000px;}
.y3e{bottom:105.660000px;}
.y76{bottom:106.770000px;}
.y3d{bottom:122.940000px;}
.y75{bottom:124.050000px;}
.y3c{bottom:140.076000px;}
.y74{bottom:141.330000px;}
.y3b{bottom:157.350000px;}
.y73{bottom:158.430000px;}
.y3a{bottom:174.630000px;}
.y72{bottom:175.710000px;}
.y39{bottom:191.910000px;}
.y71{bottom:192.990000px;}
.y38{bottom:209.190000px;}
.y70{bottom:210.270000px;}
.y37{bottom:226.470000px;}
.y6f{bottom:227.550000px;}
.y36{bottom:243.570000px;}
.y6e{bottom:244.830000px;}
.y35{bottom:260.850000px;}
.y6d{bottom:261.930000px;}
.y34{bottom:278.130000px;}
.y6c{bottom:279.210000px;}
.y33{bottom:295.410000px;}
.y32{bottom:312.690000px;}
.y31{bottom:329.970000px;}
.y30{bottom:347.070000px;}
.y2f{bottom:364.350000px;}
.y2e{bottom:381.630000px;}
.y6a{bottom:390.675000px;}
.y2d{bottom:398.955000px;}
.y69{bottom:407.955000px;}
.y2c{bottom:416.235000px;}
.y68{bottom:425.235000px;}
.y2b{bottom:433.335000px;}
.y67{bottom:442.335000px;}
.y2a{bottom:450.615000px;}
.y66{bottom:459.615000px;}
.y29{bottom:467.895000px;}
.y65{bottom:476.895000px;}
.y28{bottom:485.175000px;}
.y64{bottom:494.175000px;}
.y27{bottom:502.455000px;}
.y63{bottom:511.455000px;}
.y26{bottom:519.735000px;}
.y62{bottom:528.735000px;}
.y25{bottom:536.835000px;}
.y61{bottom:545.835000px;}
.y24{bottom:554.115000px;}
.y60{bottom:563.115000px;}
.y23{bottom:571.395000px;}
.y5f{bottom:580.395000px;}
.y22{bottom:588.675000px;}
.y5e{bottom:597.675000px;}
.y21{bottom:605.955000px;}
.y5d{bottom:614.955000px;}
.y20{bottom:623.235000px;}
.y5c{bottom:632.235000px;}
.y1f{bottom:640.365000px;}
.y5b{bottom:649.365000px;}
.y1e{bottom:657.645000px;}
.y5a{bottom:666.645000px;}
.y1d{bottom:674.925000px;}
.y59{bottom:683.925000px;}
.y1c{bottom:692.205000px;}
.y58{bottom:701.205000px;}
.y1b{bottom:709.485000px;}
.y57{bottom:718.485000px;}
.y1a{bottom:726.585000px;}
.y56{bottom:735.585000px;}
.y19{bottom:743.865000px;}
.y55{bottom:752.865000px;}
.y18{bottom:761.145000px;}
.y54{bottom:770.145000px;}
.y17{bottom:778.425000px;}
.y53{bottom:787.425000px;}
.y16{bottom:795.705000px;}
.y52{bottom:804.705000px;}
.y7d{bottom:812.985000px;}
.y51{bottom:821.985000px;}
.y15{bottom:830.085000px;}
.y50{bottom:839.085000px;}
.y14{bottom:847.365000px;}
.y4f{bottom:856.365000px;}
.y13{bottom:864.645000px;}
.y4e{bottom:873.645000px;}
.y12{bottom:881.925000px;}
.y4d{bottom:890.925000px;}
.y11{bottom:899.250000px;}
.y10{bottom:916.530000px;}
.y4a{bottom:923.010000px;}
.y7e{bottom:930.390000px;}
.yf{bottom:933.630000px;}
.y4c{bottom:941.010000px;}
.ye{bottom:950.910000px;}
.y4b{bottom:959.010000px;}
.yd{bottom:968.190000px;}
.y47{bottom:977.010000px;}
.yc{bottom:985.470000px;}
.y49{bottom:995.010000px;}
.yb{bottom:1002.750000px;}
.y48{bottom:1013.010000px;}
.ya{bottom:1020.030000px;}
.y43{bottom:1031.010000px;}
.y9{bottom:1037.130000px;}
.y46{bottom:1049.010000px;}
.y8{bottom:1054.410000px;}
.y45{bottom:1067.010000px;}
.y7{bottom:1071.690000px;}
.y41{bottom:1085.010000px;}
.y6{bottom:1088.970000px;}
.y5{bottom:1106.250000px;}
.y4{bottom:1123.350000px;}
.y40{bottom:1140.630000px;}
.y7c{bottom:1154.700000px;}
.y3{bottom:1157.940000px;}
.y2{bottom:1175.220000px;}
.y1{bottom:1195.560000px;}
.h8{height:17.100000px;}
.ha{height:17.280000px;}
.he{height:34.560000px;}
.h6{height:49.868086px;}
.h7{height:50.218242px;}
.h9{height:53.100000px;}
.hb{height:53.280000px;}
.h5{height:58.621992px;}
.h4{height:58.651172px;}
.h2{height:59.439023px;}
.hc{height:59.614102px;}
.h3{height:60.226875px;}
.h10{height:61.423863px;}
.hf{height:103.500000px;}
.hd{height:293.295000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:110.340000px;}
.w5{width:137.196000px;}
.w6{width:137.700000px;}
.wa{width:147.780000px;}
.w9{width:181.290000px;}
.w7{width:276.510000px;}
.w4{width:291.495000px;}
.w8{width:308.415000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:7.740000px;}
.x15{left:37.800000px;}
.x1{left:106.415987px;}
.xa{left:136.115987px;}
.x1d{left:142.055987px;}
.x12{left:148.536000px;}
.x20{left:167.969987px;}
.x21{left:180.029987px;}
.x28{left:186.329987px;}
.x25{left:190.829987px;}
.x2{left:195.689987px;}
.x22{left:216.929987px;}
.xf{left:218.190000px;}
.x1e{left:219.449987px;}
.x26{left:222.509987px;}
.x1f{left:223.589987px;}
.x27{left:226.649987px;}
.x24{left:227.909987px;}
.x23{left:231.689987px;}
.x1c{left:238.889987px;}
.xd{left:354.314987px;}
.x13{left:425.055000px;}
.xc{left:457.304987px;}
.x3{left:461.444987px;}
.x6{left:469.184987px;}
.xb{left:487.004987px;}
.x17{left:491.684987px;}
.x1a{left:495.464987px;}
.x2a{left:503.564987px;}
.x10{left:510.405000px;}
.x8{left:537.944987px;}
.x2e{left:564.944987px;}
.x5{left:569.624987px;}
.x2d{left:574.484987px;}
.x18{left:587.624987px;}
.x2b{left:589.604987px;}
.x19{left:591.764987px;}
.x14{left:595.904987px;}
.x1b{left:602.744987px;}
.x29{left:607.244987px;}
.x2c{left:609.944987px;}
.x7{left:617.144987px;}
.x16{left:638.790000px;}
.x11{left:648.330000px;}
.x4{left:694.589987px;}
.x9{left:786.749987px;}
@media print{
.v1{vertical-align:-61.546667pt;}
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.688000pt;}
.ls20{letter-spacing:-0.480000pt;}
.ls1a{letter-spacing:-0.409067pt;}
.ls24{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.183467pt;}
.ls19{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:-0.051840pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls1b{letter-spacing:-0.041600pt;}
.ls6{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.047360pt;}
.ls18{letter-spacing:0.086933pt;}
.ls17{letter-spacing:0.089600pt;}
.lsc{letter-spacing:0.094720pt;}
.lse{letter-spacing:0.094933pt;}
.ls12{letter-spacing:0.106240pt;}
.ls5{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.231040pt;}
.ls8{letter-spacing:0.265600pt;}
.ls25{letter-spacing:0.272533pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.480000pt;}
.ls1c{letter-spacing:0.800000pt;}
.ls15{letter-spacing:1.440000pt;}
.ls11{letter-spacing:5.280000pt;}
.lsa{letter-spacing:6.560000pt;}
.lsb{letter-spacing:7.840000pt;}
.ls1f{letter-spacing:9.120000pt;}
.ls13{letter-spacing:11.040000pt;}
.ls4{letter-spacing:14.240000pt;}
.ls16{letter-spacing:16.160000pt;}
.ls3{letter-spacing:18.080000pt;}
.ls23{letter-spacing:39.200000pt;}
.ls1d{letter-spacing:137.760000pt;}
.ls14{letter-spacing:141.120000pt;}
.ls21{letter-spacing:386.080000pt;}
.ls0{letter-spacing:923.840000pt;}
.ws0{word-spacing:-53.120000pt;}
.ws2{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.552533pt;}
.ws7{word-spacing:-13.510933pt;}
.ws6{word-spacing:-13.374933pt;}
.wsc{word-spacing:-13.369600pt;}
.wsa{word-spacing:-13.366933pt;}
.ws3{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.238400pt;}
.ws5{word-spacing:-13.232640pt;}
.ws9{word-spacing:-13.096533pt;}
.wsd{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.592000pt;}
.ws1{word-spacing:-11.953280pt;}
.ws4{word-spacing:0.000000pt;}
._15{margin-left:-12.298240pt;}
._12{margin-left:-9.807360pt;}
._22{margin-left:-6.108160pt;}
._7{margin-left:-3.614720pt;}
._4{margin-left:-2.177920pt;}
._3{margin-left:-0.956160pt;}
._0{width:0.956160pt;}
._1{width:2.144427pt;}
._8{width:3.452800pt;}
._6{width:4.621440pt;}
._5{width:6.002560pt;}
._e{width:7.596160pt;}
._d{width:8.924160pt;}
._b{width:10.199040pt;}
._a{width:11.155200pt;}
._9{width:12.270720pt;}
._c{width:14.236160pt;}
._10{width:15.559040pt;}
._20{width:16.732800pt;}
._2e{width:17.675520pt;}
._f{width:18.678400pt;}
._21{width:20.616960pt;}
._13{width:21.603840pt;}
._32{width:23.153920pt;}
._31{width:24.116480pt;}
._25{width:25.322880pt;}
._11{width:27.622400pt;}
._27{width:36.562987pt;}
._34{width:39.559040pt;}
._35{width:43.914880pt;}
._26{width:51.383467pt;}
._1d{width:52.480000pt;}
._2c{width:54.251947pt;}
._1f{width:60.235520pt;}
._2a{width:64.663467pt;}
._17{width:70.239787pt;}
._29{width:76.402987pt;}
._19{width:82.032427pt;}
._16{width:95.440640pt;}
._24{width:107.340160pt;}
._30{width:113.342720pt;}
._36{width:122.650240pt;}
._23{width:128.056960pt;}
._1e{width:129.522987pt;}
._1c{width:138.394027pt;}
._2b{width:144.801280pt;}
._1b{width:152.682027pt;}
._2d{width:159.515520pt;}
._1a{width:165.430827pt;}
._28{width:166.409600pt;}
._18{width:170.530347pt;}
._14{width:175.520000pt;}
._2f{width:176.502400pt;}
._33{width:272.305920pt;}
._37{width:754.858667pt;}
._2{width:1163.345707pt;}
.fs0{font-size:53.120000pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:2.880000pt;}
.y7b{bottom:18.240000pt;}
.y7a{bottom:33.600000pt;}
.y44{bottom:34.880000pt;}
.y79{bottom:48.832000pt;}
.y81{bottom:48.960000pt;}
.y78{bottom:64.186667pt;}
.y80{bottom:64.320000pt;}
.y3f{bottom:78.560000pt;}
.y77{bottom:79.546667pt;}
.y7f{bottom:79.680000pt;}
.y6b{bottom:83.680000pt;}
.y3e{bottom:93.920000pt;}
.y76{bottom:94.906667pt;}
.y3d{bottom:109.280000pt;}
.y75{bottom:110.266667pt;}
.y3c{bottom:124.512000pt;}
.y74{bottom:125.626667pt;}
.y3b{bottom:139.866667pt;}
.y73{bottom:140.826667pt;}
.y3a{bottom:155.226667pt;}
.y72{bottom:156.186667pt;}
.y39{bottom:170.586667pt;}
.y71{bottom:171.546667pt;}
.y38{bottom:185.946667pt;}
.y70{bottom:186.906667pt;}
.y37{bottom:201.306667pt;}
.y6f{bottom:202.266667pt;}
.y36{bottom:216.506667pt;}
.y6e{bottom:217.626667pt;}
.y35{bottom:231.866667pt;}
.y6d{bottom:232.826667pt;}
.y34{bottom:247.226667pt;}
.y6c{bottom:248.186667pt;}
.y33{bottom:262.586667pt;}
.y32{bottom:277.946667pt;}
.y31{bottom:293.306667pt;}
.y30{bottom:308.506667pt;}
.y2f{bottom:323.866667pt;}
.y2e{bottom:339.226667pt;}
.y6a{bottom:347.266667pt;}
.y2d{bottom:354.626667pt;}
.y69{bottom:362.626667pt;}
.y2c{bottom:369.986667pt;}
.y68{bottom:377.986667pt;}
.y2b{bottom:385.186667pt;}
.y67{bottom:393.186667pt;}
.y2a{bottom:400.546667pt;}
.y66{bottom:408.546667pt;}
.y29{bottom:415.906667pt;}
.y65{bottom:423.906667pt;}
.y28{bottom:431.266667pt;}
.y64{bottom:439.266667pt;}
.y27{bottom:446.626667pt;}
.y63{bottom:454.626667pt;}
.y26{bottom:461.986667pt;}
.y62{bottom:469.986667pt;}
.y25{bottom:477.186667pt;}
.y61{bottom:485.186667pt;}
.y24{bottom:492.546667pt;}
.y60{bottom:500.546667pt;}
.y23{bottom:507.906667pt;}
.y5f{bottom:515.906667pt;}
.y22{bottom:523.266667pt;}
.y5e{bottom:531.266667pt;}
.y21{bottom:538.626667pt;}
.y5d{bottom:546.626667pt;}
.y20{bottom:553.986667pt;}
.y5c{bottom:561.986667pt;}
.y1f{bottom:569.213333pt;}
.y5b{bottom:577.213333pt;}
.y1e{bottom:584.573333pt;}
.y5a{bottom:592.573333pt;}
.y1d{bottom:599.933333pt;}
.y59{bottom:607.933333pt;}
.y1c{bottom:615.293333pt;}
.y58{bottom:623.293333pt;}
.y1b{bottom:630.653333pt;}
.y57{bottom:638.653333pt;}
.y1a{bottom:645.853333pt;}
.y56{bottom:653.853333pt;}
.y19{bottom:661.213333pt;}
.y55{bottom:669.213333pt;}
.y18{bottom:676.573333pt;}
.y54{bottom:684.573333pt;}
.y17{bottom:691.933333pt;}
.y53{bottom:699.933333pt;}
.y16{bottom:707.293333pt;}
.y52{bottom:715.293333pt;}
.y7d{bottom:722.653333pt;}
.y51{bottom:730.653333pt;}
.y15{bottom:737.853333pt;}
.y50{bottom:745.853333pt;}
.y14{bottom:753.213333pt;}
.y4f{bottom:761.213333pt;}
.y13{bottom:768.573333pt;}
.y4e{bottom:776.573333pt;}
.y12{bottom:783.933333pt;}
.y4d{bottom:791.933333pt;}
.y11{bottom:799.333333pt;}
.y10{bottom:814.693333pt;}
.y4a{bottom:820.453333pt;}
.y7e{bottom:827.013333pt;}
.yf{bottom:829.893333pt;}
.y4c{bottom:836.453333pt;}
.ye{bottom:845.253333pt;}
.y4b{bottom:852.453333pt;}
.yd{bottom:860.613333pt;}
.y47{bottom:868.453333pt;}
.yc{bottom:875.973333pt;}
.y49{bottom:884.453333pt;}
.yb{bottom:891.333333pt;}
.y48{bottom:900.453333pt;}
.ya{bottom:906.693333pt;}
.y43{bottom:916.453333pt;}
.y9{bottom:921.893333pt;}
.y46{bottom:932.453333pt;}
.y8{bottom:937.253333pt;}
.y45{bottom:948.453333pt;}
.y7{bottom:952.613333pt;}
.y41{bottom:964.453333pt;}
.y6{bottom:967.973333pt;}
.y5{bottom:983.333333pt;}
.y4{bottom:998.533333pt;}
.y40{bottom:1013.893333pt;}
.y7c{bottom:1026.400000pt;}
.y3{bottom:1029.280000pt;}
.y2{bottom:1044.640000pt;}
.y1{bottom:1062.720000pt;}
.h8{height:15.200000pt;}
.ha{height:15.360000pt;}
.he{height:30.720000pt;}
.h6{height:44.327188pt;}
.h7{height:44.638438pt;}
.h9{height:47.200000pt;}
.hb{height:47.360000pt;}
.h5{height:52.108438pt;}
.h4{height:52.134375pt;}
.h2{height:52.834688pt;}
.hc{height:52.990313pt;}
.h3{height:53.535000pt;}
.h10{height:54.598989pt;}
.hf{height:92.000000pt;}
.hd{height:260.706667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:98.080000pt;}
.w5{width:121.952000pt;}
.w6{width:122.400000pt;}
.wa{width:131.360000pt;}
.w9{width:161.146667pt;}
.w7{width:245.786667pt;}
.w4{width:259.106667pt;}
.w8{width:274.146667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:6.880000pt;}
.x15{left:33.600000pt;}
.x1{left:94.591988pt;}
.xa{left:120.991988pt;}
.x1d{left:126.271988pt;}
.x12{left:132.032000pt;}
.x20{left:149.306655pt;}
.x21{left:160.026655pt;}
.x28{left:165.626655pt;}
.x25{left:169.626655pt;}
.x2{left:173.946655pt;}
.x22{left:192.826655pt;}
.xf{left:193.946667pt;}
.x1e{left:195.066655pt;}
.x26{left:197.786655pt;}
.x1f{left:198.746655pt;}
.x27{left:201.466655pt;}
.x24{left:202.586655pt;}
.x23{left:205.946655pt;}
.x1c{left:212.346655pt;}
.xd{left:314.946655pt;}
.x13{left:377.826667pt;}
.xc{left:406.493322pt;}
.x3{left:410.173322pt;}
.x6{left:417.053322pt;}
.xb{left:432.893322pt;}
.x17{left:437.053322pt;}
.x1a{left:440.413322pt;}
.x2a{left:447.613322pt;}
.x10{left:453.693333pt;}
.x8{left:478.173322pt;}
.x2e{left:502.173322pt;}
.x5{left:506.333322pt;}
.x2d{left:510.653322pt;}
.x18{left:522.333322pt;}
.x2b{left:524.093322pt;}
.x19{left:526.013322pt;}
.x14{left:529.693322pt;}
.x1b{left:535.773322pt;}
.x29{left:539.773322pt;}
.x2c{left:542.173322pt;}
.x7{left:548.573322pt;}
.x16{left:567.813333pt;}
.x11{left:576.293333pt;}
.x4{left:617.413322pt;}
.x9{left:699.333322pt;}
}




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