
    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_bc4cc376aa85dbcc32c63fcc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_5ab0838eb65b055d3aa0582d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_2bdbacffd66b2fc14c5e49ce.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_2dd1ee8f89fcf422c531264a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893066;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_457325fa092d8eb760b15092.woff2')format("woff");}.ff5{font-family:ff5;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;}
.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);}
.v2{vertical-align:-17.822400px;}
.v3{vertical-align:-1.347600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.604400px;}
.ls7{letter-spacing:-2.000000px;}
.ls8{letter-spacing:-1.015200px;}
.lsf{letter-spacing:-0.014400px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000401px;}
.lsd{letter-spacing:0.000600px;}
.lsc{letter-spacing:0.010800px;}
.ls4{letter-spacing:0.011400px;}
.ls5{letter-spacing:0.011520px;}
.ls9{letter-spacing:0.012000px;}
.ls0{letter-spacing:0.013200px;}
.ls3{letter-spacing:0.237600px;}
.lsa{letter-spacing:1.065600px;}
.lse{letter-spacing:2.404800px;}
.ls2{letter-spacing:3.441600px;}
.lsb{letter-spacing:7.266000px;}
.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:-18.000000px;}
.wsa{word-spacing:-17.985600px;}
.ws4{word-spacing:-16.500000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-14.411520px;}
.ws6{word-spacing:-14.400000px;}
.ws8{word-spacing:-13.500000px;}
.ws9{word-spacing:-0.066000px;}
.ws5{word-spacing:0.000000px;}
.ws2{word-spacing:70.200000px;}
.ws7{word-spacing:138.300000px;}
._25{margin-left:-18.050950px;}
._27{margin-left:-9.094517px;}
._b{margin-left:-7.996800px;}
._26{margin-left:-6.718800px;}
._f{margin-left:-5.505519px;}
._4{margin-left:-4.310400px;}
._10{margin-left:-3.207000px;}
._6{margin-left:-1.411200px;}
._11{width:1.376481px;}
._2{width:2.467200px;}
._13{width:3.480956px;}
._0{width:4.560000px;}
._7{width:6.000000px;}
._14{width:7.002244px;}
._c{width:8.457600px;}
._12{width:9.458400px;}
._9{width:10.636800px;}
._d{width:12.076800px;}
._e{width:13.486719px;}
._a{width:14.995200px;}
._8{width:16.464000px;}
._1{width:18.470400px;}
._15{width:19.476000px;}
._3{width:20.534400px;}
._1c{width:21.716319px;}
._22{width:23.084481px;}
._21{width:24.546925px;}
._20{width:25.578325px;}
._5{width:27.379200px;}
._1e{width:28.425600px;}
._1f{width:29.808000px;}
._24{width:30.829556px;}
._1d{width:32.080719px;}
._23{width:33.170400px;}
._16{width:34.263519px;}
._19{width:35.531837px;}
._1b{width:36.923187px;}
._17{width:38.224800px;}
._1a{width:39.338237px;}
._18{width:42.331993px;}
.fc6{color:rgb(0,0,69);}
.fc5{color:rgb(217,0,0);}
.fc4{color:rgb(126,15,0);}
.fc3{color:rgb(17,22,4);}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(12,16,22);}
.fs3{font-size:40.000002px;}
.fs2{font-size:43.999998px;}
.fs7{font-size:54.000000px;}
.fs6{font-size:57.600000px;}
.fs4{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y7c{bottom:5.250000px;}
.y7e{bottom:8.250000px;}
.y8b{bottom:11.250000px;}
.y4f{bottom:45.000000px;}
.y4d{bottom:133.500000px;}
.y8a{bottom:135.000000px;}
.y1f{bottom:147.000000px;}
.y4c{bottom:156.000000px;}
.y89{bottom:159.000000px;}
.y8d{bottom:160.500000px;}
.y1e{bottom:169.500000px;}
.y61{bottom:174.000000px;}
.y4b{bottom:178.500000px;}
.y88{bottom:183.000000px;}
.y1d{bottom:192.000000px;}
.y60{bottom:196.500000px;}
.y4a{bottom:201.000000px;}
.y8c{bottom:205.500000px;}
.y87{bottom:207.000000px;}
.y5f{bottom:219.000000px;}
.y1c{bottom:223.500000px;}
.y9f{bottom:228.000000px;}
.y86{bottom:231.000000px;}
.y5e{bottom:241.500000px;}
.y1b{bottom:246.000000px;}
.y9e{bottom:250.500000px;}
.y49{bottom:255.000000px;}
.y5d{bottom:264.000000px;}
.y1a{bottom:268.500000px;}
.y9d{bottom:273.000000px;}
.y48{bottom:277.500000px;}
.y85{bottom:279.000000px;}
.y5c{bottom:286.500000px;}
.y6e{bottom:291.000000px;}
.y9c{bottom:295.500000px;}
.y19{bottom:300.000000px;}
.y84{bottom:303.000000px;}
.ybe{bottom:304.500000px;}
.y5b{bottom:309.000000px;}
.y6d{bottom:313.500000px;}
.y9b{bottom:318.000000px;}
.y47{bottom:322.500000px;}
.y83{bottom:327.000000px;}
.ybd{bottom:327.336900px;}
.y5a{bottom:331.500000px;}
.yab{bottom:336.000000px;}
.y46{bottom:345.000000px;}
.y9a{bottom:349.500000px;}
.y82{bottom:351.000000px;}
.y59{bottom:354.000000px;}
.y18{bottom:358.500000px;}
.y45{bottom:367.500000px;}
.y81{bottom:375.000000px;}
.y58{bottom:376.500000px;}
.y17{bottom:381.000000px;}
.ybc{bottom:381.336900px;}
.y44{bottom:390.000000px;}
.y57{bottom:399.000000px;}
.y99{bottom:403.500000px;}
.y43{bottom:412.500000px;}
.y16{bottom:421.500000px;}
.y80{bottom:423.000000px;}
.y98{bottom:426.000000px;}
.y42{bottom:435.000000px;}
.ybb{bottom:435.336900px;}
.y15{bottom:444.000000px;}
.y7f{bottom:447.000000px;}
.y97{bottom:448.500000px;}
.y41{bottom:457.500000px;}
.y14{bottom:466.500000px;}
.y7d{bottom:471.000000px;}
.y40{bottom:480.000000px;}
.y56{bottom:484.500000px;}
.y13{bottom:489.000000px;}
.y96{bottom:493.500000px;}
.y7b{bottom:495.000000px;}
.y3f{bottom:502.500000px;}
.y55{bottom:507.000000px;}
.y6c{bottom:511.500000px;}
.yba{bottom:511.836900px;}
.y95{bottom:516.000000px;}
.y12{bottom:517.500000px;}
.y8f{bottom:525.000000px;}
.y3e{bottom:534.000000px;}
.y7a{bottom:538.500000px;}
.y11{bottom:540.000000px;}
.yb9{bottom:543.000000px;}
.y94{bottom:547.500000px;}
.y3d{bottom:556.500000px;}
.y79{bottom:561.000000px;}
.y10{bottom:562.500000px;}
.yb8{bottom:565.500000px;}
.y93{bottom:570.000000px;}
.y3c{bottom:579.000000px;}
.yb7{bottom:588.336900px;}
.yf{bottom:591.000000px;}
.y78{bottom:592.500000px;}
.y3b{bottom:601.500000px;}
.ye{bottom:613.500000px;}
.y77{bottom:615.000000px;}
.yb6{bottom:619.500000px;}
.y3a{bottom:624.000000px;}
.yd{bottom:636.000000px;}
.y76{bottom:637.500000px;}
.yb5{bottom:642.336900px;}
.y39{bottom:646.500000px;}
.yaa{bottom:655.500000px;}
.yc{bottom:658.500000px;}
.y75{bottom:660.000000px;}
.y38{bottom:669.000000px;}
.yb4{bottom:673.500000px;}
.ya9{bottom:678.000000px;}
.y74{bottom:682.500000px;}
.yb{bottom:687.000000px;}
.y6b{bottom:691.500000px;}
.yb3{bottom:696.336900px;}
.y37{bottom:700.500000px;}
.y73{bottom:705.000000px;}
.ya{bottom:709.500000px;}
.y6a{bottom:714.000000px;}
.ya8{bottom:723.000000px;}
.y72{bottom:727.500000px;}
.y9{bottom:732.000000px;}
.y69{bottom:736.500000px;}
.ya7{bottom:745.500000px;}
.y71{bottom:750.000000px;}
.y8{bottom:754.500000px;}
.y68{bottom:759.000000px;}
.ya6{bottom:768.000000px;}
.y36{bottom:772.500000px;}
.yb2{bottom:772.836900px;}
.y67{bottom:781.500000px;}
.ya5{bottom:790.500000px;}
.y35{bottom:795.000000px;}
.y66{bottom:804.000000px;}
.y7{bottom:810.000000px;}
.ya4{bottom:813.000000px;}
.y34{bottom:817.500000px;}
.y65{bottom:826.500000px;}
.yb1{bottom:826.836900px;}
.y6{bottom:835.500000px;}
.y33{bottom:840.000000px;}
.y64{bottom:849.000000px;}
.y5{bottom:856.455600px;}
.ya3{bottom:858.000000px;}
.y32{bottom:862.500000px;}
.y92{bottom:871.500000px;}
.y4{bottom:877.500000px;}
.y63{bottom:880.500000px;}
.y31{bottom:885.000000px;}
.y91{bottom:894.000000px;}
.ya2{bottom:903.000000px;}
.yb0{bottom:903.336900px;}
.y30{bottom:907.500000px;}
.y8e{bottom:916.500000px;}
.ya1{bottom:925.500000px;}
.y2f{bottom:930.000000px;}
.y3{bottom:934.500000px;}
.y70{bottom:939.000000px;}
.y90{bottom:948.000000px;}
.y2e{bottom:952.500000px;}
.ya0{bottom:957.000000px;}
.y2{bottom:961.500000px;}
.y2d{bottom:975.000000px;}
.yaf{bottom:979.836900px;}
.y54{bottom:984.000000px;}
.y1{bottom:988.500000px;}
.y2c{bottom:997.500000px;}
.y53{bottom:1006.500000px;}
.yae{bottom:1011.000000px;}
.y2b{bottom:1020.000000px;}
.y52{bottom:1029.000000px;}
.yad{bottom:1033.500000px;}
.y2a{bottom:1042.500000px;}
.y51{bottom:1051.500000px;}
.yac{bottom:1056.336900px;}
.y26{bottom:1058.625000px;}
.y29{bottom:1065.000000px;}
.y50{bottom:1074.000000px;}
.y25{bottom:1076.625000px;}
.y6f{bottom:1087.500000px;}
.y24{bottom:1094.625000px;}
.y28{bottom:1096.500000px;}
.y23{bottom:1112.625000px;}
.y27{bottom:1119.000000px;}
.y22{bottom:1130.625000px;}
.y62{bottom:1147.500000px;}
.y21{bottom:1148.625000px;}
.y4e{bottom:1164.000000px;}
.y20{bottom:1166.625000px;}
.hc{height:17.250000px;}
.he{height:23.250000px;}
.h3{height:27.773439px;}
.hd{height:37.494141px;}
.h4{height:41.660156px;}
.h8{height:44.698242px;}
.hf{height:47.381836px;}
.hb{height:48.761719px;}
.ha{height:52.646484px;}
.h9{height:57.911133px;}
.h2{height:58.211820px;}
.h7{height:58.620117px;}
.h10{height:61.828181px;}
.h6{height:63.175781px;}
.h5{height:63.949219px;}
.h1{height:85.265625px;}
.h0{height:1263.000000px;}
.w2{width:116.325030px;}
.w3{width:123.449985px;}
.w4{width:159.300000px;}
.w1{width:230.400000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x15{left:3.803250px;}
.x17{left:7.365750px;}
.x19{left:20.099715px;}
.x1a{left:21.300000px;}
.x1d{left:46.350000px;}
.x22{left:48.037500px;}
.x1b{left:49.725000px;}
.x23{left:51.600000px;}
.x1f{left:53.287500px;}
.x21{left:54.787500px;}
.x13{left:65.069385px;}
.x1c{left:67.837515px;}
.x1e{left:68.964705px;}
.x20{left:71.212515px;}
.x7{left:75.797175px;}
.x2{left:81.235410px;}
.x5{left:89.654595px;}
.x3{left:120.165090px;}
.x1{left:127.575000px;}
.x12{left:129.750000px;}
.x10{left:132.990255px;}
.xd{left:135.260010px;}
.xb{left:138.149430px;}
.x6{left:154.889205px;}
.x24{left:174.329550px;}
.xf{left:178.650000px;}
.x4{left:197.661900px;}
.x8{left:203.164650px;}
.xc{left:262.044450px;}
.x9{left:265.451700px;}
.x11{left:267.054150px;}
.xe{left:288.570600px;}
.x14{left:360.900000px;}
.x25{left:438.750000px;}
.xa{left:442.500000px;}
.x16{left:477.975000px;}
.x18{left:602.175000px;}
@media print{
.v2{vertical-align:-15.842133pt;}
.v3{vertical-align:-1.197867pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.426133pt;}
.ls7{letter-spacing:-1.777778pt;}
.ls8{letter-spacing:-0.902400pt;}
.lsf{letter-spacing:-0.012800pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000356pt;}
.lsd{letter-spacing:0.000533pt;}
.lsc{letter-spacing:0.009600pt;}
.ls4{letter-spacing:0.010133pt;}
.ls5{letter-spacing:0.010240pt;}
.ls9{letter-spacing:0.010667pt;}
.ls0{letter-spacing:0.011733pt;}
.ls3{letter-spacing:0.211200pt;}
.lsa{letter-spacing:0.947200pt;}
.lse{letter-spacing:2.137600pt;}
.ls2{letter-spacing:3.059200pt;}
.lsb{letter-spacing:6.458667pt;}
.ws1{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.987200pt;}
.ws4{word-spacing:-14.666667pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.810240pt;}
.ws6{word-spacing:-12.800000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws9{word-spacing:-0.058667pt;}
.ws5{word-spacing:0.000000pt;}
.ws2{word-spacing:62.400000pt;}
.ws7{word-spacing:122.933333pt;}
._25{margin-left:-16.045289pt;}
._27{margin-left:-8.084015pt;}
._b{margin-left:-7.108267pt;}
._26{margin-left:-5.972267pt;}
._f{margin-left:-4.893794pt;}
._4{margin-left:-3.831467pt;}
._10{margin-left:-2.850667pt;}
._6{margin-left:-1.254400pt;}
._11{width:1.223539pt;}
._2{width:2.193067pt;}
._13{width:3.094183pt;}
._0{width:4.053333pt;}
._7{width:5.333333pt;}
._14{width:6.224217pt;}
._c{width:7.517867pt;}
._12{width:8.407467pt;}
._9{width:9.454933pt;}
._d{width:10.734933pt;}
._e{width:11.988194pt;}
._a{width:13.329067pt;}
._8{width:14.634667pt;}
._1{width:16.418133pt;}
._15{width:17.312000pt;}
._3{width:18.252800pt;}
._1c{width:19.303394pt;}
._22{width:20.519539pt;}
._21{width:21.819489pt;}
._20{width:22.736289pt;}
._5{width:24.337067pt;}
._1e{width:25.267200pt;}
._1f{width:26.496000pt;}
._24{width:27.404050pt;}
._1d{width:28.516194pt;}
._23{width:29.484800pt;}
._16{width:30.456461pt;}
._19{width:31.583855pt;}
._1b{width:32.820611pt;}
._17{width:33.977600pt;}
._1a{width:34.967322pt;}
._18{width:37.628439pt;}
.fs3{font-size:35.555557pt;}
.fs2{font-size:39.111109pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:51.200000pt;}
.fs4{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:4.666667pt;}
.y7e{bottom:7.333333pt;}
.y8b{bottom:10.000000pt;}
.y4f{bottom:40.000000pt;}
.y4d{bottom:118.666667pt;}
.y8a{bottom:120.000000pt;}
.y1f{bottom:130.666667pt;}
.y4c{bottom:138.666667pt;}
.y89{bottom:141.333333pt;}
.y8d{bottom:142.666667pt;}
.y1e{bottom:150.666667pt;}
.y61{bottom:154.666667pt;}
.y4b{bottom:158.666667pt;}
.y88{bottom:162.666667pt;}
.y1d{bottom:170.666667pt;}
.y60{bottom:174.666667pt;}
.y4a{bottom:178.666667pt;}
.y8c{bottom:182.666667pt;}
.y87{bottom:184.000000pt;}
.y5f{bottom:194.666667pt;}
.y1c{bottom:198.666667pt;}
.y9f{bottom:202.666667pt;}
.y86{bottom:205.333333pt;}
.y5e{bottom:214.666667pt;}
.y1b{bottom:218.666667pt;}
.y9e{bottom:222.666667pt;}
.y49{bottom:226.666667pt;}
.y5d{bottom:234.666667pt;}
.y1a{bottom:238.666667pt;}
.y9d{bottom:242.666667pt;}
.y48{bottom:246.666667pt;}
.y85{bottom:248.000000pt;}
.y5c{bottom:254.666667pt;}
.y6e{bottom:258.666667pt;}
.y9c{bottom:262.666667pt;}
.y19{bottom:266.666667pt;}
.y84{bottom:269.333333pt;}
.ybe{bottom:270.666667pt;}
.y5b{bottom:274.666667pt;}
.y6d{bottom:278.666667pt;}
.y9b{bottom:282.666667pt;}
.y47{bottom:286.666667pt;}
.y83{bottom:290.666667pt;}
.ybd{bottom:290.966133pt;}
.y5a{bottom:294.666667pt;}
.yab{bottom:298.666667pt;}
.y46{bottom:306.666667pt;}
.y9a{bottom:310.666667pt;}
.y82{bottom:312.000000pt;}
.y59{bottom:314.666667pt;}
.y18{bottom:318.666667pt;}
.y45{bottom:326.666667pt;}
.y81{bottom:333.333333pt;}
.y58{bottom:334.666667pt;}
.y17{bottom:338.666667pt;}
.ybc{bottom:338.966133pt;}
.y44{bottom:346.666667pt;}
.y57{bottom:354.666667pt;}
.y99{bottom:358.666667pt;}
.y43{bottom:366.666667pt;}
.y16{bottom:374.666667pt;}
.y80{bottom:376.000000pt;}
.y98{bottom:378.666667pt;}
.y42{bottom:386.666667pt;}
.ybb{bottom:386.966133pt;}
.y15{bottom:394.666667pt;}
.y7f{bottom:397.333333pt;}
.y97{bottom:398.666667pt;}
.y41{bottom:406.666667pt;}
.y14{bottom:414.666667pt;}
.y7d{bottom:418.666667pt;}
.y40{bottom:426.666667pt;}
.y56{bottom:430.666667pt;}
.y13{bottom:434.666667pt;}
.y96{bottom:438.666667pt;}
.y7b{bottom:440.000000pt;}
.y3f{bottom:446.666667pt;}
.y55{bottom:450.666667pt;}
.y6c{bottom:454.666667pt;}
.yba{bottom:454.966133pt;}
.y95{bottom:458.666667pt;}
.y12{bottom:460.000000pt;}
.y8f{bottom:466.666667pt;}
.y3e{bottom:474.666667pt;}
.y7a{bottom:478.666667pt;}
.y11{bottom:480.000000pt;}
.yb9{bottom:482.666667pt;}
.y94{bottom:486.666667pt;}
.y3d{bottom:494.666667pt;}
.y79{bottom:498.666667pt;}
.y10{bottom:500.000000pt;}
.yb8{bottom:502.666667pt;}
.y93{bottom:506.666667pt;}
.y3c{bottom:514.666667pt;}
.yb7{bottom:522.966133pt;}
.yf{bottom:525.333333pt;}
.y78{bottom:526.666667pt;}
.y3b{bottom:534.666667pt;}
.ye{bottom:545.333333pt;}
.y77{bottom:546.666667pt;}
.yb6{bottom:550.666667pt;}
.y3a{bottom:554.666667pt;}
.yd{bottom:565.333333pt;}
.y76{bottom:566.666667pt;}
.yb5{bottom:570.966133pt;}
.y39{bottom:574.666667pt;}
.yaa{bottom:582.666667pt;}
.yc{bottom:585.333333pt;}
.y75{bottom:586.666667pt;}
.y38{bottom:594.666667pt;}
.yb4{bottom:598.666667pt;}
.ya9{bottom:602.666667pt;}
.y74{bottom:606.666667pt;}
.yb{bottom:610.666667pt;}
.y6b{bottom:614.666667pt;}
.yb3{bottom:618.966133pt;}
.y37{bottom:622.666667pt;}
.y73{bottom:626.666667pt;}
.ya{bottom:630.666667pt;}
.y6a{bottom:634.666667pt;}
.ya8{bottom:642.666667pt;}
.y72{bottom:646.666667pt;}
.y9{bottom:650.666667pt;}
.y69{bottom:654.666667pt;}
.ya7{bottom:662.666667pt;}
.y71{bottom:666.666667pt;}
.y8{bottom:670.666667pt;}
.y68{bottom:674.666667pt;}
.ya6{bottom:682.666667pt;}
.y36{bottom:686.666667pt;}
.yb2{bottom:686.966133pt;}
.y67{bottom:694.666667pt;}
.ya5{bottom:702.666667pt;}
.y35{bottom:706.666667pt;}
.y66{bottom:714.666667pt;}
.y7{bottom:720.000000pt;}
.ya4{bottom:722.666667pt;}
.y34{bottom:726.666667pt;}
.y65{bottom:734.666667pt;}
.yb1{bottom:734.966133pt;}
.y6{bottom:742.666667pt;}
.y33{bottom:746.666667pt;}
.y64{bottom:754.666667pt;}
.y5{bottom:761.293867pt;}
.ya3{bottom:762.666667pt;}
.y32{bottom:766.666667pt;}
.y92{bottom:774.666667pt;}
.y4{bottom:780.000000pt;}
.y63{bottom:782.666667pt;}
.y31{bottom:786.666667pt;}
.y91{bottom:794.666667pt;}
.ya2{bottom:802.666667pt;}
.yb0{bottom:802.966133pt;}
.y30{bottom:806.666667pt;}
.y8e{bottom:814.666667pt;}
.ya1{bottom:822.666667pt;}
.y2f{bottom:826.666667pt;}
.y3{bottom:830.666667pt;}
.y70{bottom:834.666667pt;}
.y90{bottom:842.666667pt;}
.y2e{bottom:846.666667pt;}
.ya0{bottom:850.666667pt;}
.y2{bottom:854.666667pt;}
.y2d{bottom:866.666667pt;}
.yaf{bottom:870.966133pt;}
.y54{bottom:874.666667pt;}
.y1{bottom:878.666667pt;}
.y2c{bottom:886.666667pt;}
.y53{bottom:894.666667pt;}
.yae{bottom:898.666667pt;}
.y2b{bottom:906.666667pt;}
.y52{bottom:914.666667pt;}
.yad{bottom:918.666667pt;}
.y2a{bottom:926.666667pt;}
.y51{bottom:934.666667pt;}
.yac{bottom:938.966133pt;}
.y26{bottom:941.000000pt;}
.y29{bottom:946.666667pt;}
.y50{bottom:954.666667pt;}
.y25{bottom:957.000000pt;}
.y6f{bottom:966.666667pt;}
.y24{bottom:973.000000pt;}
.y28{bottom:974.666667pt;}
.y23{bottom:989.000000pt;}
.y27{bottom:994.666667pt;}
.y22{bottom:1005.000000pt;}
.y62{bottom:1020.000000pt;}
.y21{bottom:1021.000000pt;}
.y4e{bottom:1034.666667pt;}
.y20{bottom:1037.000000pt;}
.hc{height:15.333333pt;}
.he{height:20.666667pt;}
.h3{height:24.687501pt;}
.hd{height:33.328125pt;}
.h4{height:37.031250pt;}
.h8{height:39.731771pt;}
.hf{height:42.117188pt;}
.hb{height:43.343750pt;}
.ha{height:46.796875pt;}
.h9{height:51.476562pt;}
.h2{height:51.743840pt;}
.h7{height:52.106771pt;}
.h10{height:54.958383pt;}
.h6{height:56.156250pt;}
.h5{height:56.843750pt;}
.h1{height:75.791667pt;}
.h0{height:1122.666667pt;}
.w2{width:103.400027pt;}
.w3{width:109.733320pt;}
.w4{width:141.600000pt;}
.w1{width:204.800000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x15{left:3.380667pt;}
.x17{left:6.547333pt;}
.x19{left:17.866413pt;}
.x1a{left:18.933333pt;}
.x1d{left:41.200000pt;}
.x22{left:42.700000pt;}
.x1b{left:44.200000pt;}
.x23{left:45.866667pt;}
.x1f{left:47.366667pt;}
.x21{left:48.700000pt;}
.x13{left:57.839453pt;}
.x1c{left:60.300013pt;}
.x1e{left:61.301960pt;}
.x20{left:63.300013pt;}
.x7{left:67.375267pt;}
.x2{left:72.209253pt;}
.x5{left:79.692973pt;}
.x3{left:106.813413pt;}
.x1{left:113.400000pt;}
.x12{left:115.333333pt;}
.x10{left:118.213560pt;}
.xd{left:120.231120pt;}
.xb{left:122.799493pt;}
.x6{left:137.679293pt;}
.x24{left:154.959600pt;}
.xf{left:158.800000pt;}
.x4{left:175.699467pt;}
.x8{left:180.590800pt;}
.xc{left:232.928400pt;}
.x9{left:235.957067pt;}
.x11{left:237.381467pt;}
.xe{left:256.507200pt;}
.x14{left:320.800000pt;}
.x25{left:390.000000pt;}
.xa{left:393.333333pt;}
.x16{left:424.866667pt;}
.x18{left:535.266667pt;}
}




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