
    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_412fc87a769d7d1c4189a232.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_ce195530e272344ade07a682.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_30621e94f5ecdf155b05c8fe.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_59a680f22adbcd3fafa99ae0.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_8e4117539bbbc52b7a20ea8c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c7dfb1633b932b7cd3b2ee3d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e902232d2fd9a8e310d39f8e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9a24e51480a367b289d5251f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.116699;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_a55598fe2d22a0f6eeaeb7ad.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_fb798299d2cd3e2d10b6abee.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;}
.lse{letter-spacing:-0.612000px;}
.lsa{letter-spacing:-0.058320px;}
.ls9{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.lsf{letter-spacing:0.331800px;}
.ls0{letter-spacing:0.360000px;}
.ls6{letter-spacing:16.020000px;}
.ls5{letter-spacing:23.940000px;}
.lsb{letter-spacing:26.100000px;}
.ls7{letter-spacing:26.820000px;}
.ls3{letter-spacing:31.860000px;}
.ls8{letter-spacing:78.660000px;}
.ls1{letter-spacing:950.760000px;}
.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;}
.ws5{word-spacing:-15.271800px;}
.ws3{word-spacing:-14.940000px;}
.ws1{word-spacing:-13.447440px;}
.ws4{word-spacing:0.000000px;}
._29{margin-left:-77.691600px;}
._2c{margin-left:-25.855200px;}
._3a{margin-left:-11.033280px;}
._7{margin-left:-2.509920px;}
._6{margin-left:-1.434240px;}
._0{width:1.075680px;}
._1{width:2.412480px;}
._8{width:3.758400px;}
._b{width:4.853520px;}
._5{width:5.856480px;}
._4{width:7.589520px;}
._f{width:9.442080px;}
._10{width:10.458000px;}
._a{width:11.832480px;}
._9{width:13.446000px;}
._1d{width:16.034400px;}
._1c{width:17.127120px;}
._1e{width:18.654000px;}
._16{width:19.720800px;}
._15{width:20.856240px;}
._2d{width:21.931920px;}
._13{width:23.754960px;}
._25{width:24.856080px;}
._1f{width:25.880160px;}
._e{width:27.429840px;}
._d{width:28.505520px;}
._14{width:29.820240px;}
._17{width:30.895920px;}
._c{width:32.270400px;}
._11{width:33.644880px;}
._20{width:35.258400px;}
._24{width:37.051200px;}
._23{width:38.844000px;}
._19{width:40.218480px;}
._18{width:41.413680px;}
._2b{width:43.744320px;}
._2f{width:45.118800px;}
._2e{width:46.493280px;}
._33{width:47.568960px;}
._37{width:49.003200px;}
._26{width:50.317920px;}
._2a{width:51.632640px;}
._22{width:53.843760px;}
._21{width:54.919440px;}
._30{width:57.907440px;}
._1b{width:59.700240px;}
._1a{width:60.716160px;}
._27{width:61.791840px;}
._12{width:74.819520px;}
._32{width:75.954960px;}
._31{width:77.329440px;}
._28{width:79.002720px;}
._38{width:87.428880px;}
._35{width:98.544240px;}
._36{width:99.679680px;}
._34{width:123.583680px;}
._39{width:849.216000px;}
._3{width:949.449360px;}
._2{width:1308.763920px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760000px;}
.y0{bottom:0.000000px;}
.y5a{bottom:3.240000px;}
.y66{bottom:11.700000px;}
.y5c{bottom:11.880000px;}
.y67{bottom:20.340000px;}
.y5d{bottom:20.520000px;}
.y60{bottom:29.160000px;}
.y62{bottom:37.800000px;}
.y69{bottom:37.845000px;}
.y61{bottom:54.900000px;}
.y64{bottom:55.080000px;}
.y3f{bottom:88.380000px;}
.y3e{bottom:105.660000px;}
.y3d{bottom:122.940000px;}
.y3c{bottom:140.076000px;}
.y3b{bottom:157.350000px;}
.y3a{bottom:174.630000px;}
.y39{bottom:191.910000px;}
.y38{bottom:209.190000px;}
.y37{bottom:226.470000px;}
.y36{bottom:243.570000px;}
.y35{bottom:260.850000px;}
.y58{bottom:265.350000px;}
.y34{bottom:278.130000px;}
.y57{bottom:282.630000px;}
.y33{bottom:295.410000px;}
.y56{bottom:299.910000px;}
.y32{bottom:312.690000px;}
.y55{bottom:317.190000px;}
.y31{bottom:329.970000px;}
.y54{bottom:334.290000px;}
.y30{bottom:347.070000px;}
.y53{bottom:351.570000px;}
.y85{bottom:358.410000px;}
.y2f{bottom:364.350000px;}
.y52{bottom:368.850000px;}
.y84{bottom:375.690000px;}
.y2e{bottom:381.630000px;}
.y51{bottom:386.130000px;}
.y83{bottom:392.835000px;}
.y2d{bottom:398.955000px;}
.y50{bottom:403.455000px;}
.y82{bottom:410.115000px;}
.y2c{bottom:416.235000px;}
.y4f{bottom:420.735000px;}
.y81{bottom:427.395000px;}
.y2b{bottom:433.335000px;}
.y4e{bottom:437.835000px;}
.y80{bottom:444.675000px;}
.y2a{bottom:450.615000px;}
.y4d{bottom:455.115000px;}
.y7f{bottom:461.955000px;}
.y29{bottom:467.895000px;}
.y4c{bottom:472.395000px;}
.y7e{bottom:479.235000px;}
.y28{bottom:485.175000px;}
.y4b{bottom:489.675000px;}
.y7d{bottom:496.335000px;}
.y27{bottom:502.455000px;}
.y4a{bottom:506.955000px;}
.y7c{bottom:513.615000px;}
.y26{bottom:519.735000px;}
.y49{bottom:524.055000px;}
.y7b{bottom:530.895000px;}
.y25{bottom:536.835000px;}
.y48{bottom:541.335000px;}
.y7a{bottom:548.175000px;}
.y24{bottom:554.115000px;}
.y47{bottom:558.615000px;}
.y79{bottom:565.455000px;}
.y23{bottom:571.395000px;}
.y46{bottom:575.895000px;}
.y78{bottom:582.735000px;}
.y22{bottom:588.675000px;}
.y45{bottom:593.175000px;}
.y77{bottom:599.835000px;}
.y21{bottom:605.955000px;}
.y44{bottom:610.455000px;}
.y76{bottom:617.115000px;}
.y20{bottom:623.235000px;}
.y43{bottom:627.555000px;}
.y75{bottom:634.395000px;}
.y1f{bottom:640.365000px;}
.y42{bottom:641.625000px;}
.y74{bottom:651.705000px;}
.y1e{bottom:657.645000px;}
.y73{bottom:668.985000px;}
.y1d{bottom:674.925000px;}
.y72{bottom:686.265000px;}
.y1c{bottom:692.205000px;}
.y71{bottom:703.365000px;}
.y1b{bottom:709.485000px;}
.y70{bottom:720.645000px;}
.y1a{bottom:726.585000px;}
.y6f{bottom:737.925000px;}
.y19{bottom:743.865000px;}
.y6e{bottom:755.205000px;}
.y18{bottom:761.145000px;}
.y6d{bottom:772.485000px;}
.y17{bottom:778.425000px;}
.y6c{bottom:789.585000px;}
.y16{bottom:795.705000px;}
.y6b{bottom:806.865000px;}
.y15{bottom:812.985000px;}
.y6a{bottom:824.145000px;}
.y14{bottom:830.085000px;}
.y13{bottom:847.365000px;}
.y68{bottom:856.185000px;}
.y12{bottom:864.645000px;}
.y11{bottom:881.925000px;}
.y10{bottom:899.250000px;}
.y65{bottom:908.790000px;}
.yf{bottom:916.530000px;}
.ye{bottom:933.630000px;}
.y63{bottom:943.890000px;}
.yd{bottom:950.910000px;}
.yc{bottom:968.190000px;}
.yb{bottom:985.470000px;}
.ya{bottom:1002.750000px;}
.y5f{bottom:1013.730000px;}
.y41{bottom:1020.030000px;}
.y9{bottom:1037.130000px;}
.y8{bottom:1054.410000px;}
.y7{bottom:1071.690000px;}
.y5e{bottom:1083.390000px;}
.y6{bottom:1088.970000px;}
.y5{bottom:1106.250000px;}
.y5b{bottom:1118.670000px;}
.y4{bottom:1123.350000px;}
.y40{bottom:1140.630000px;}
.y59{bottom:1153.980000px;}
.y3{bottom:1157.940000px;}
.y2{bottom:1175.220000px;}
.y1{bottom:1195.560000px;}
.ha{height:17.280000px;}
.hf{height:34.380000px;}
.hc{height:34.560000px;}
.hb{height:34.596000px;}
.h9{height:49.868086px;}
.h7{height:50.218242px;}
.h10{height:51.696000px;}
.h8{height:52.027383px;}
.h5{height:52.290000px;}
.h4{height:58.621992px;}
.h6{height:58.651172px;}
.h2{height:59.439023px;}
.h3{height:60.226875px;}
.h11{height:61.423863px;}
.hd{height:68.940000px;}
.he{height:69.120000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:233.130000px;}
.w4{width:445.035000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:7.740000px;}
.x16{left:12.960000px;}
.x1a{left:26.460000px;}
.x14{left:35.640000px;}
.x17{left:41.040000px;}
.x11{left:44.994000px;}
.x18{left:56.694000px;}
.x19{left:93.954000px;}
.x1{left:106.415987px;}
.xc{left:136.115987px;}
.x13{left:144.750000px;}
.x2{left:146.555987px;}
.x7{left:158.429987px;}
.x8{left:306.434987px;}
.x12{left:340.995000px;}
.x3{left:347.114987px;}
.x10{left:384.554987px;}
.x5{left:441.824987px;}
.xd{left:457.304987px;}
.x9{left:461.444987px;}
.xa{left:465.224987px;}
.xe{left:487.004987px;}
.xb{left:537.944987px;}
.x1c{left:557.564987px;}
.x1b{left:599.324987px;}
.x4{left:710.069987px;}
.xf{left:731.129987px;}
.x6{left:786.749987px;}
@media print{
.v1{vertical-align:-61.546667pt;}
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.544000pt;}
.lsa{letter-spacing:-0.051840pt;}
.ls9{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.lsf{letter-spacing:0.294933pt;}
.ls0{letter-spacing:0.320000pt;}
.ls6{letter-spacing:14.240000pt;}
.ls5{letter-spacing:21.280000pt;}
.lsb{letter-spacing:23.200000pt;}
.ls7{letter-spacing:23.840000pt;}
.ls3{letter-spacing:28.320000pt;}
.ls8{letter-spacing:69.920000pt;}
.ls1{letter-spacing:845.120000pt;}
.ws0{word-spacing:-53.120000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.574933pt;}
.ws3{word-spacing:-13.280000pt;}
.ws1{word-spacing:-11.953280pt;}
.ws4{word-spacing:0.000000pt;}
._29{margin-left:-69.059200pt;}
._2c{margin-left:-22.982400pt;}
._3a{margin-left:-9.807360pt;}
._7{margin-left:-2.231040pt;}
._6{margin-left:-1.274880pt;}
._0{width:0.956160pt;}
._1{width:2.144427pt;}
._8{width:3.340800pt;}
._b{width:4.314240pt;}
._5{width:5.205760pt;}
._4{width:6.746240pt;}
._f{width:8.392960pt;}
._10{width:9.296000pt;}
._a{width:10.517760pt;}
._9{width:11.952000pt;}
._1d{width:14.252800pt;}
._1c{width:15.224107pt;}
._1e{width:16.581333pt;}
._16{width:17.529600pt;}
._15{width:18.538880pt;}
._2d{width:19.495040pt;}
._13{width:21.115520pt;}
._25{width:22.094293pt;}
._1f{width:23.004587pt;}
._e{width:24.382080pt;}
._d{width:25.338240pt;}
._14{width:26.506880pt;}
._17{width:27.463040pt;}
._c{width:28.684800pt;}
._11{width:29.906560pt;}
._20{width:31.340800pt;}
._24{width:32.934400pt;}
._23{width:34.528000pt;}
._19{width:35.749760pt;}
._18{width:36.812160pt;}
._2b{width:38.883840pt;}
._2f{width:40.105600pt;}
._2e{width:41.327360pt;}
._33{width:42.283520pt;}
._37{width:43.558400pt;}
._26{width:44.727040pt;}
._2a{width:45.895680pt;}
._22{width:47.861120pt;}
._21{width:48.817280pt;}
._30{width:51.473280pt;}
._1b{width:53.066880pt;}
._1a{width:53.969920pt;}
._27{width:54.926080pt;}
._12{width:66.506240pt;}
._32{width:67.515520pt;}
._31{width:68.737280pt;}
._28{width:70.224640pt;}
._38{width:77.714560pt;}
._35{width:87.594880pt;}
._36{width:88.604160pt;}
._34{width:109.852160pt;}
._39{width:754.858667pt;}
._3{width:843.954987pt;}
._2{width:1163.345707pt;}
.fs0{font-size:53.120000pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:2.880000pt;}
.y66{bottom:10.400000pt;}
.y5c{bottom:10.560000pt;}
.y67{bottom:18.080000pt;}
.y5d{bottom:18.240000pt;}
.y60{bottom:25.920000pt;}
.y62{bottom:33.600000pt;}
.y69{bottom:33.640000pt;}
.y61{bottom:48.800000pt;}
.y64{bottom:48.960000pt;}
.y3f{bottom:78.560000pt;}
.y3e{bottom:93.920000pt;}
.y3d{bottom:109.280000pt;}
.y3c{bottom:124.512000pt;}
.y3b{bottom:139.866667pt;}
.y3a{bottom:155.226667pt;}
.y39{bottom:170.586667pt;}
.y38{bottom:185.946667pt;}
.y37{bottom:201.306667pt;}
.y36{bottom:216.506667pt;}
.y35{bottom:231.866667pt;}
.y58{bottom:235.866667pt;}
.y34{bottom:247.226667pt;}
.y57{bottom:251.226667pt;}
.y33{bottom:262.586667pt;}
.y56{bottom:266.586667pt;}
.y32{bottom:277.946667pt;}
.y55{bottom:281.946667pt;}
.y31{bottom:293.306667pt;}
.y54{bottom:297.146667pt;}
.y30{bottom:308.506667pt;}
.y53{bottom:312.506667pt;}
.y85{bottom:318.586667pt;}
.y2f{bottom:323.866667pt;}
.y52{bottom:327.866667pt;}
.y84{bottom:333.946667pt;}
.y2e{bottom:339.226667pt;}
.y51{bottom:343.226667pt;}
.y83{bottom:349.186667pt;}
.y2d{bottom:354.626667pt;}
.y50{bottom:358.626667pt;}
.y82{bottom:364.546667pt;}
.y2c{bottom:369.986667pt;}
.y4f{bottom:373.986667pt;}
.y81{bottom:379.906667pt;}
.y2b{bottom:385.186667pt;}
.y4e{bottom:389.186667pt;}
.y80{bottom:395.266667pt;}
.y2a{bottom:400.546667pt;}
.y4d{bottom:404.546667pt;}
.y7f{bottom:410.626667pt;}
.y29{bottom:415.906667pt;}
.y4c{bottom:419.906667pt;}
.y7e{bottom:425.986667pt;}
.y28{bottom:431.266667pt;}
.y4b{bottom:435.266667pt;}
.y7d{bottom:441.186667pt;}
.y27{bottom:446.626667pt;}
.y4a{bottom:450.626667pt;}
.y7c{bottom:456.546667pt;}
.y26{bottom:461.986667pt;}
.y49{bottom:465.826667pt;}
.y7b{bottom:471.906667pt;}
.y25{bottom:477.186667pt;}
.y48{bottom:481.186667pt;}
.y7a{bottom:487.266667pt;}
.y24{bottom:492.546667pt;}
.y47{bottom:496.546667pt;}
.y79{bottom:502.626667pt;}
.y23{bottom:507.906667pt;}
.y46{bottom:511.906667pt;}
.y78{bottom:517.986667pt;}
.y22{bottom:523.266667pt;}
.y45{bottom:527.266667pt;}
.y77{bottom:533.186667pt;}
.y21{bottom:538.626667pt;}
.y44{bottom:542.626667pt;}
.y76{bottom:548.546667pt;}
.y20{bottom:553.986667pt;}
.y43{bottom:557.826667pt;}
.y75{bottom:563.906667pt;}
.y1f{bottom:569.213333pt;}
.y42{bottom:570.333333pt;}
.y74{bottom:579.293333pt;}
.y1e{bottom:584.573333pt;}
.y73{bottom:594.653333pt;}
.y1d{bottom:599.933333pt;}
.y72{bottom:610.013333pt;}
.y1c{bottom:615.293333pt;}
.y71{bottom:625.213333pt;}
.y1b{bottom:630.653333pt;}
.y70{bottom:640.573333pt;}
.y1a{bottom:645.853333pt;}
.y6f{bottom:655.933333pt;}
.y19{bottom:661.213333pt;}
.y6e{bottom:671.293333pt;}
.y18{bottom:676.573333pt;}
.y6d{bottom:686.653333pt;}
.y17{bottom:691.933333pt;}
.y6c{bottom:701.853333pt;}
.y16{bottom:707.293333pt;}
.y6b{bottom:717.213333pt;}
.y15{bottom:722.653333pt;}
.y6a{bottom:732.573333pt;}
.y14{bottom:737.853333pt;}
.y13{bottom:753.213333pt;}
.y68{bottom:761.053333pt;}
.y12{bottom:768.573333pt;}
.y11{bottom:783.933333pt;}
.y10{bottom:799.333333pt;}
.y65{bottom:807.813333pt;}
.yf{bottom:814.693333pt;}
.ye{bottom:829.893333pt;}
.y63{bottom:839.013333pt;}
.yd{bottom:845.253333pt;}
.yc{bottom:860.613333pt;}
.yb{bottom:875.973333pt;}
.ya{bottom:891.333333pt;}
.y5f{bottom:901.093333pt;}
.y41{bottom:906.693333pt;}
.y9{bottom:921.893333pt;}
.y8{bottom:937.253333pt;}
.y7{bottom:952.613333pt;}
.y5e{bottom:963.013333pt;}
.y6{bottom:967.973333pt;}
.y5{bottom:983.333333pt;}
.y5b{bottom:994.373333pt;}
.y4{bottom:998.533333pt;}
.y40{bottom:1013.893333pt;}
.y59{bottom:1025.760000pt;}
.y3{bottom:1029.280000pt;}
.y2{bottom:1044.640000pt;}
.y1{bottom:1062.720000pt;}
.ha{height:15.360000pt;}
.hf{height:30.560000pt;}
.hc{height:30.720000pt;}
.hb{height:30.752000pt;}
.h9{height:44.327188pt;}
.h7{height:44.638438pt;}
.h10{height:45.952000pt;}
.h8{height:46.246563pt;}
.h5{height:46.480000pt;}
.h4{height:52.108438pt;}
.h6{height:52.134375pt;}
.h2{height:52.834688pt;}
.h3{height:53.535000pt;}
.h11{height:54.598989pt;}
.hd{height:61.280000pt;}
.he{height:61.440000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:207.226667pt;}
.w4{width:395.586667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:6.880000pt;}
.x16{left:11.520000pt;}
.x1a{left:23.520000pt;}
.x14{left:31.680000pt;}
.x17{left:36.480000pt;}
.x11{left:39.994667pt;}
.x18{left:50.394667pt;}
.x19{left:83.514667pt;}
.x1{left:94.591988pt;}
.xc{left:120.991988pt;}
.x13{left:128.666667pt;}
.x2{left:130.271988pt;}
.x7{left:140.826655pt;}
.x8{left:272.386655pt;}
.x12{left:303.106667pt;}
.x3{left:308.546655pt;}
.x10{left:341.826655pt;}
.x5{left:392.733322pt;}
.xd{left:406.493322pt;}
.x9{left:410.173322pt;}
.xa{left:413.533322pt;}
.xe{left:432.893322pt;}
.xb{left:478.173322pt;}
.x1c{left:495.613322pt;}
.x1b{left:532.733322pt;}
.x4{left:631.173322pt;}
.xf{left:649.893322pt;}
.x6{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; }
  