
    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_8f943ee4e70cc788b6d054a5.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_cb7d21806b06fa23b38cb881.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f59eec32ef1c6939c53fe1fa.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_1897a2853b93f00615d92644.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3f15e0ad7d8c5a3f0e0427a0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.043945;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.120000px;}
.v2{vertical-align:-67.680000px;}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-1.440000px;}
.ls7{letter-spacing:-1.422000px;}
.ls5{letter-spacing:-0.954000px;}
.lse{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.466800px;}
.ls2{letter-spacing:-0.447600px;}
.ls1{letter-spacing:-0.363000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.020400px;}
.ls3{letter-spacing:0.720000px;}
.lsa{letter-spacing:12.360000px;}
.lsc{letter-spacing:19.186560px;}
.lsb{letter-spacing:47.965680px;}
.ls9{letter-spacing:516.396000px;}
.ls6{letter-spacing:516.540000px;}
.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;}
}
.ws5{word-spacing:-15.140400px;}
.ws0{word-spacing:-15.120000px;}
.ws3{word-spacing:-14.653200px;}
.ws1{word-spacing:-14.166000px;}
.ws4{word-spacing:-13.680000px;}
.ws2{word-spacing:0.000000px;}
._2{margin-left:-3.265920px;}
._0{margin-left:-1.995840px;}
._1{width:1.753920px;}
._14{width:3.084480px;}
._7{width:4.112640px;}
._6{width:5.140800px;}
._b{width:6.350400px;}
._a{width:7.378560px;}
._3{width:8.830080px;}
._4{width:10.281600px;}
._1a{width:11.309760px;}
._5{width:12.640320px;}
._10{width:14.091840px;}
._1e{width:16.148160px;}
._9{width:17.539200px;}
._8{width:18.567360px;}
._1b{width:19.716480px;}
._21{width:21.107520px;}
._20{width:22.498560px;}
._23{width:23.647680px;}
._11{width:24.675840px;}
._12{width:26.006400px;}
._17{width:27.881280px;}
._16{width:28.969920px;}
._15{width:30.461280px;}
._19{width:31.933440px;}
._18{width:32.961600px;}
._13{width:34.473600px;}
._d{width:36.167040px;}
._c{width:37.558080px;}
._1d{width:38.707200px;}
._1c{width:39.856320px;}
._f{width:41.368320px;}
._e{width:43.001280px;}
._25{width:48.625920px;}
._24{width:49.775040px;}
._26{width:51.468480px;}
._27{width:144.015120px;}
._22{width:292.368480px;}
._1f{width:586.142880px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:60.480000px;}
.fs1{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y92{bottom:3.960000px;}
.yba{bottom:4.005000px;}
.y3{bottom:57.600000px;}
.y8e{bottom:114.156000px;}
.ye2{bottom:114.876000px;}
.yac{bottom:115.236000px;}
.y3d{bottom:119.916000px;}
.y5d{bottom:131.076000px;}
.y8d{bottom:131.436000px;}
.ye1{bottom:132.156000px;}
.yab{bottom:132.516000px;}
.y3c{bottom:136.836000px;}
.y5c{bottom:148.356000px;}
.ye0{bottom:149.436000px;}
.yaa{bottom:149.796000px;}
.y3b{bottom:154.110000px;}
.y8c{bottom:162.030000px;}
.y5b{bottom:165.630000px;}
.ydf{bottom:166.710000px;}
.ya9{bottom:167.430000px;}
.y3a{bottom:171.390000px;}
.y5a{bottom:182.910000px;}
.yde{bottom:183.990000px;}
.ya8{bottom:184.710000px;}
.y39{bottom:188.670000px;}
.y59{bottom:199.875000px;}
.ydd{bottom:201.315000px;}
.ya7{bottom:202.035000px;}
.y38{bottom:205.995000px;}
.y58{bottom:217.155000px;}
.ydc{bottom:218.595000px;}
.ya6{bottom:219.315000px;}
.y37{bottom:223.275000px;}
.y57{bottom:234.435000px;}
.ydb{bottom:235.875000px;}
.ya5{bottom:236.595000px;}
.y36{bottom:240.555000px;}
.y56{bottom:251.715000px;}
.yda{bottom:252.795000px;}
.ya4{bottom:253.875000px;}
.y35{bottom:257.835000px;}
.y55{bottom:268.635000px;}
.yd9{bottom:270.075000px;}
.ya3{bottom:271.155000px;}
.y34{bottom:275.115000px;}
.y54{bottom:286.275000px;}
.yd8{bottom:287.355000px;}
.ya2{bottom:288.075000px;}
.y33{bottom:292.395000px;}
.y53{bottom:303.555000px;}
.yd7{bottom:304.635000px;}
.ya1{bottom:305.355000px;}
.y32{bottom:309.675000px;}
.y52{bottom:320.835000px;}
.yd6{bottom:321.915000px;}
.ya0{bottom:322.635000px;}
.y31{bottom:326.985000px;}
.y51{bottom:338.145000px;}
.yd5{bottom:339.225000px;}
.y9f{bottom:339.945000px;}
.y30{bottom:343.905000px;}
.y50{bottom:355.425000px;}
.yd4{bottom:356.505000px;}
.y9e{bottom:357.225000px;}
.y2f{bottom:361.185000px;}
.y8b{bottom:364.785000px;}
.y4f{bottom:372.705000px;}
.yd3{bottom:373.785000px;}
.y9d{bottom:374.505000px;}
.y2e{bottom:378.465000px;}
.y8a{bottom:382.065000px;}
.y4e{bottom:389.985000px;}
.yd2{bottom:391.065000px;}
.y9c{bottom:391.785000px;}
.y2d{bottom:395.745000px;}
.y89{bottom:399.345000px;}
.y4d{bottom:406.905000px;}
.yd1{bottom:408.345000px;}
.y9b{bottom:409.065000px;}
.y2c{bottom:413.025000px;}
.y88{bottom:416.625000px;}
.y9a{bottom:423.105000px;}
.y4c{bottom:424.185000px;}
.yd0{bottom:425.625000px;}
.y2b{bottom:430.305000px;}
.y87{bottom:433.905000px;}
.y99{bottom:441.105000px;}
.y4b{bottom:441.465000px;}
.ycf{bottom:442.905000px;}
.y2a{bottom:447.585000px;}
.y86{bottom:450.870000px;}
.y4a{bottom:458.790000px;}
.y98{bottom:459.150000px;}
.yce{bottom:459.870000px;}
.y29{bottom:464.910000px;}
.y85{bottom:468.150000px;}
.y49{bottom:476.070000px;}
.y97{bottom:477.150000px;}
.y28{bottom:482.190000px;}
.y84{bottom:485.430000px;}
.y48{bottom:493.350000px;}
.ycd{bottom:494.430000px;}
.y96{bottom:495.150000px;}
.y27{bottom:499.470000px;}
.y83{bottom:502.710000px;}
.y47{bottom:510.630000px;}
.ycc{bottom:511.710000px;}
.y95{bottom:513.150000px;}
.y26{bottom:516.750000px;}
.y82{bottom:519.990000px;}
.y46{bottom:527.910000px;}
.ycb{bottom:528.990000px;}
.y94{bottom:531.150000px;}
.y25{bottom:533.670000px;}
.y81{bottom:537.270000px;}
.y45{bottom:545.190000px;}
.yca{bottom:546.270000px;}
.y93{bottom:549.150000px;}
.y24{bottom:550.590000px;}
.y80{bottom:554.550000px;}
.y44{bottom:562.470000px;}
.yc9{bottom:563.550000px;}
.y91{bottom:567.150000px;}
.y23{bottom:568.230000px;}
.y7f{bottom:571.830000px;}
.y43{bottom:579.420000px;}
.yc8{bottom:580.860000px;}
.y22{bottom:585.540000px;}
.y7e{bottom:588.780000px;}
.y90{bottom:589.140000px;}
.y42{bottom:593.100000px;}
.yc7{bottom:598.140000px;}
.y21{bottom:602.820000px;}
.y7d{bottom:606.420000px;}
.yc6{bottom:615.420000px;}
.y20{bottom:620.100000px;}
.y7c{bottom:623.700000px;}
.yc5{bottom:632.700000px;}
.y1f{bottom:637.020000px;}
.y7b{bottom:640.980000px;}
.yc4{bottom:649.980000px;}
.y1e{bottom:654.660000px;}
.y7a{bottom:657.900000px;}
.yc3{bottom:666.900000px;}
.y1d{bottom:671.940000px;}
.y79{bottom:675.180000px;}
.yc2{bottom:684.180000px;}
.y1c{bottom:689.220000px;}
.y78{bottom:692.460000px;}
.yc1{bottom:701.490000px;}
.y1b{bottom:706.530000px;}
.y77{bottom:709.770000px;}
.yc0{bottom:718.770000px;}
.y1a{bottom:723.810000px;}
.y76{bottom:727.050000px;}
.ybf{bottom:736.050000px;}
.y19{bottom:740.730000px;}
.y75{bottom:744.330000px;}
.ybe{bottom:753.330000px;}
.y18{bottom:758.010000px;}
.y8f{bottom:761.250000px;}
.y74{bottom:761.610000px;}
.ybd{bottom:767.370000px;}
.y17{bottom:775.290000px;}
.y73{bottom:778.890000px;}
.ybc{bottom:785.370000px;}
.y16{bottom:792.570000px;}
.y72{bottom:796.170000px;}
.ybb{bottom:803.370000px;}
.y15{bottom:809.850000px;}
.y71{bottom:813.450000px;}
.yb9{bottom:821.370000px;}
.y14{bottom:827.175000px;}
.y70{bottom:830.775000px;}
.yb8{bottom:839.415000px;}
.y13{bottom:844.455000px;}
.y6f{bottom:847.695000px;}
.y41{bottom:861.375000px;}
.y12{bottom:861.735000px;}
.y6e{bottom:864.975000px;}
.y40{bottom:878.655000px;}
.y11{bottom:879.015000px;}
.ye4{bottom:881.895000px;}
.y6d{bottom:882.255000px;}
.yb7{bottom:895.575000px;}
.y3f{bottom:895.935000px;}
.y10{bottom:896.295000px;}
.y6c{bottom:899.535000px;}
.yb6{bottom:912.855000px;}
.yf{bottom:913.575000px;}
.y6b{bottom:916.815000px;}
.ye{bottom:930.495000px;}
.y6a{bottom:934.095000px;}
.yd{bottom:947.415000px;}
.y3e{bottom:947.775000px;}
.y69{bottom:951.405000px;}
.yb5{bottom:964.725000px;}
.yc{bottom:965.085000px;}
.y68{bottom:968.685000px;}
.yb4{bottom:982.005000px;}
.yb{bottom:982.365000px;}
.y67{bottom:985.965000px;}
.yb3{bottom:999.285000px;}
.y66{bottom:1003.245000px;}
.yb2{bottom:1016.565000px;}
.ya{bottom:1016.925000px;}
.ye3{bottom:1020.165000px;}
.y65{bottom:1020.525000px;}
.yb1{bottom:1033.845000px;}
.y9{bottom:1034.205000px;}
.y64{bottom:1037.805000px;}
.yb0{bottom:1047.885000px;}
.y8{bottom:1051.125000px;}
.y63{bottom:1054.725000px;}
.yaf{bottom:1065.885000px;}
.y7{bottom:1068.765000px;}
.y62{bottom:1072.005000px;}
.yae{bottom:1083.930000px;}
.y6{bottom:1086.090000px;}
.y61{bottom:1089.330000px;}
.yad{bottom:1101.930000px;}
.y5{bottom:1104.810000px;}
.y60{bottom:1106.610000px;}
.y5f{bottom:1123.890000px;}
.y4{bottom:1132.530000px;}
.y5e{bottom:1141.170000px;}
.y2{bottom:1177.890000px;}
.y1{bottom:1195.170000px;}
.h7{height:17.280000px;}
.h6{height:17.316000px;}
.h5{height:41.993438px;}
.h2{height:59.357813px;}
.h4{height:60.952500px;}
.h8{height:62.163910px;}
.h3{height:97.233750px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:34.200000px;}
.w7{width:34.920000px;}
.w9{width:36.000000px;}
.w8{width:36.036000px;}
.w3{width:37.476000px;}
.w5{width:43.920000px;}
.wa{width:48.636000px;}
.w6{width:50.436000px;}
.w2{width:50.796000px;}
.wc{width:60.156000px;}
.w13{width:61.956000px;}
.w12{width:62.280000px;}
.w11{width:75.996000px;}
.wf{width:87.156000px;}
.w10{width:87.516000px;}
.wd{width:96.156000px;}
.we{width:109.476000px;}
.wb{width:109.836000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:2.520000px;}
.x1f{left:4.320000px;}
.x1b{left:5.400000px;}
.x1d{left:8.640000px;}
.x22{left:10.080000px;}
.x21{left:11.910000px;}
.x33{left:15.840000px;}
.x1c{left:16.920000px;}
.x20{left:18.720000px;}
.x30{left:21.243000px;}
.x2a{left:22.320000px;}
.x23{left:24.150000px;}
.x1e{left:25.230000px;}
.x27{left:28.800000px;}
.x2d{left:29.880000px;}
.x36{left:31.320000px;}
.x29{left:32.760000px;}
.x2c{left:34.560000px;}
.x35{left:38.160000px;}
.x2e{left:41.760000px;}
.x37{left:43.563000px;}
.x2b{left:47.880000px;}
.xa{left:54.036000px;}
.x11{left:68.076000px;}
.x4{left:82.116000px;}
.x1{left:94.716000px;}
.x5{left:110.916000px;}
.x2f{left:141.192000px;}
.x25{left:163.875000px;}
.x24{left:186.915000px;}
.x9{left:193.395000px;}
.x26{left:224.745000px;}
.x31{left:229.425000px;}
.x10{left:242.025000px;}
.x2{left:260.745000px;}
.x7{left:294.225000px;}
.x32{left:306.150000px;}
.x28{left:321.630000px;}
.x8{left:343.590000px;}
.x34{left:369.150000px;}
.xf{left:425.700000px;}
.x3{left:431.820000px;}
.x6{left:446.580000px;}
.xb{left:462.780000px;}
.x39{left:469.650000px;}
.x38{left:503.490000px;}
.x12{left:513.570000px;}
.xe{left:520.770000px;}
.x14{left:551.775000px;}
.x15{left:586.695000px;}
.x16{left:631.335000px;}
.xd{left:650.805000px;}
.x17{left:682.485000px;}
.x18{left:718.125000px;}
.x19{left:754.890000px;}
.x1a{left:791.610000px;}
.xc{left:833.400000px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v2{vertical-align:-60.160000pt;}
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-1.280000pt;}
.ls7{letter-spacing:-1.264000pt;}
.ls5{letter-spacing:-0.848000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.414933pt;}
.ls2{letter-spacing:-0.397867pt;}
.ls1{letter-spacing:-0.322667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.018133pt;}
.ls3{letter-spacing:0.640000pt;}
.lsa{letter-spacing:10.986667pt;}
.lsc{letter-spacing:17.054720pt;}
.lsb{letter-spacing:42.636160pt;}
.ls9{letter-spacing:459.018667pt;}
.ls6{letter-spacing:459.146667pt;}
.ws5{word-spacing:-13.458133pt;}
.ws0{word-spacing:-13.440000pt;}
.ws3{word-spacing:-13.025067pt;}
.ws1{word-spacing:-12.592000pt;}
.ws4{word-spacing:-12.160000pt;}
.ws2{word-spacing:0.000000pt;}
._2{margin-left:-2.903040pt;}
._0{margin-left:-1.774080pt;}
._1{width:1.559040pt;}
._14{width:2.741760pt;}
._7{width:3.655680pt;}
._6{width:4.569600pt;}
._b{width:5.644800pt;}
._a{width:6.558720pt;}
._3{width:7.848960pt;}
._4{width:9.139200pt;}
._1a{width:10.053120pt;}
._5{width:11.235840pt;}
._10{width:12.526080pt;}
._1e{width:14.353920pt;}
._9{width:15.590400pt;}
._8{width:16.504320pt;}
._1b{width:17.525760pt;}
._21{width:18.762240pt;}
._20{width:19.998720pt;}
._23{width:21.020160pt;}
._11{width:21.934080pt;}
._12{width:23.116800pt;}
._17{width:24.783360pt;}
._16{width:25.751040pt;}
._15{width:27.076693pt;}
._19{width:28.385280pt;}
._18{width:29.299200pt;}
._13{width:30.643200pt;}
._d{width:32.148480pt;}
._c{width:33.384960pt;}
._1d{width:34.406400pt;}
._1c{width:35.427840pt;}
._f{width:36.771840pt;}
._e{width:38.223360pt;}
._25{width:43.223040pt;}
._24{width:44.244480pt;}
._26{width:45.749760pt;}
._27{width:128.013440pt;}
._22{width:259.883093pt;}
._1f{width:521.015893pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y92{bottom:3.520000pt;}
.yba{bottom:3.560000pt;}
.y3{bottom:51.200000pt;}
.y8e{bottom:101.472000pt;}
.ye2{bottom:102.112000pt;}
.yac{bottom:102.432000pt;}
.y3d{bottom:106.592000pt;}
.y5d{bottom:116.512000pt;}
.y8d{bottom:116.832000pt;}
.ye1{bottom:117.472000pt;}
.yab{bottom:117.792000pt;}
.y3c{bottom:121.632000pt;}
.y5c{bottom:131.872000pt;}
.ye0{bottom:132.832000pt;}
.yaa{bottom:133.152000pt;}
.y3b{bottom:136.986667pt;}
.y8c{bottom:144.026667pt;}
.y5b{bottom:147.226667pt;}
.ydf{bottom:148.186667pt;}
.ya9{bottom:148.826667pt;}
.y3a{bottom:152.346667pt;}
.y5a{bottom:162.586667pt;}
.yde{bottom:163.546667pt;}
.ya8{bottom:164.186667pt;}
.y39{bottom:167.706667pt;}
.y59{bottom:177.666667pt;}
.ydd{bottom:178.946667pt;}
.ya7{bottom:179.586667pt;}
.y38{bottom:183.106667pt;}
.y58{bottom:193.026667pt;}
.ydc{bottom:194.306667pt;}
.ya6{bottom:194.946667pt;}
.y37{bottom:198.466667pt;}
.y57{bottom:208.386667pt;}
.ydb{bottom:209.666667pt;}
.ya5{bottom:210.306667pt;}
.y36{bottom:213.826667pt;}
.y56{bottom:223.746667pt;}
.yda{bottom:224.706667pt;}
.ya4{bottom:225.666667pt;}
.y35{bottom:229.186667pt;}
.y55{bottom:238.786667pt;}
.yd9{bottom:240.066667pt;}
.ya3{bottom:241.026667pt;}
.y34{bottom:244.546667pt;}
.y54{bottom:254.466667pt;}
.yd8{bottom:255.426667pt;}
.ya2{bottom:256.066667pt;}
.y33{bottom:259.906667pt;}
.y53{bottom:269.826667pt;}
.yd7{bottom:270.786667pt;}
.ya1{bottom:271.426667pt;}
.y32{bottom:275.266667pt;}
.y52{bottom:285.186667pt;}
.yd6{bottom:286.146667pt;}
.ya0{bottom:286.786667pt;}
.y31{bottom:290.653333pt;}
.y51{bottom:300.573333pt;}
.yd5{bottom:301.533333pt;}
.y9f{bottom:302.173333pt;}
.y30{bottom:305.693333pt;}
.y50{bottom:315.933333pt;}
.yd4{bottom:316.893333pt;}
.y9e{bottom:317.533333pt;}
.y2f{bottom:321.053333pt;}
.y8b{bottom:324.253333pt;}
.y4f{bottom:331.293333pt;}
.yd3{bottom:332.253333pt;}
.y9d{bottom:332.893333pt;}
.y2e{bottom:336.413333pt;}
.y8a{bottom:339.613333pt;}
.y4e{bottom:346.653333pt;}
.yd2{bottom:347.613333pt;}
.y9c{bottom:348.253333pt;}
.y2d{bottom:351.773333pt;}
.y89{bottom:354.973333pt;}
.y4d{bottom:361.693333pt;}
.yd1{bottom:362.973333pt;}
.y9b{bottom:363.613333pt;}
.y2c{bottom:367.133333pt;}
.y88{bottom:370.333333pt;}
.y9a{bottom:376.093333pt;}
.y4c{bottom:377.053333pt;}
.yd0{bottom:378.333333pt;}
.y2b{bottom:382.493333pt;}
.y87{bottom:385.693333pt;}
.y99{bottom:392.093333pt;}
.y4b{bottom:392.413333pt;}
.ycf{bottom:393.693333pt;}
.y2a{bottom:397.853333pt;}
.y86{bottom:400.773333pt;}
.y4a{bottom:407.813333pt;}
.y98{bottom:408.133333pt;}
.yce{bottom:408.773333pt;}
.y29{bottom:413.253333pt;}
.y85{bottom:416.133333pt;}
.y49{bottom:423.173333pt;}
.y97{bottom:424.133333pt;}
.y28{bottom:428.613333pt;}
.y84{bottom:431.493333pt;}
.y48{bottom:438.533333pt;}
.ycd{bottom:439.493333pt;}
.y96{bottom:440.133333pt;}
.y27{bottom:443.973333pt;}
.y83{bottom:446.853333pt;}
.y47{bottom:453.893333pt;}
.ycc{bottom:454.853333pt;}
.y95{bottom:456.133333pt;}
.y26{bottom:459.333333pt;}
.y82{bottom:462.213333pt;}
.y46{bottom:469.253333pt;}
.ycb{bottom:470.213333pt;}
.y94{bottom:472.133333pt;}
.y25{bottom:474.373333pt;}
.y81{bottom:477.573333pt;}
.y45{bottom:484.613333pt;}
.yca{bottom:485.573333pt;}
.y93{bottom:488.133333pt;}
.y24{bottom:489.413333pt;}
.y80{bottom:492.933333pt;}
.y44{bottom:499.973333pt;}
.yc9{bottom:500.933333pt;}
.y91{bottom:504.133333pt;}
.y23{bottom:505.093333pt;}
.y7f{bottom:508.293333pt;}
.y43{bottom:515.040000pt;}
.yc8{bottom:516.320000pt;}
.y22{bottom:520.480000pt;}
.y7e{bottom:523.360000pt;}
.y90{bottom:523.680000pt;}
.y42{bottom:527.200000pt;}
.yc7{bottom:531.680000pt;}
.y21{bottom:535.840000pt;}
.y7d{bottom:539.040000pt;}
.yc6{bottom:547.040000pt;}
.y20{bottom:551.200000pt;}
.y7c{bottom:554.400000pt;}
.yc5{bottom:562.400000pt;}
.y1f{bottom:566.240000pt;}
.y7b{bottom:569.760000pt;}
.yc4{bottom:577.760000pt;}
.y1e{bottom:581.920000pt;}
.y7a{bottom:584.800000pt;}
.yc3{bottom:592.800000pt;}
.y1d{bottom:597.280000pt;}
.y79{bottom:600.160000pt;}
.yc2{bottom:608.160000pt;}
.y1c{bottom:612.640000pt;}
.y78{bottom:615.520000pt;}
.yc1{bottom:623.546667pt;}
.y1b{bottom:628.026667pt;}
.y77{bottom:630.906667pt;}
.yc0{bottom:638.906667pt;}
.y1a{bottom:643.386667pt;}
.y76{bottom:646.266667pt;}
.ybf{bottom:654.266667pt;}
.y19{bottom:658.426667pt;}
.y75{bottom:661.626667pt;}
.ybe{bottom:669.626667pt;}
.y18{bottom:673.786667pt;}
.y8f{bottom:676.666667pt;}
.y74{bottom:676.986667pt;}
.ybd{bottom:682.106667pt;}
.y17{bottom:689.146667pt;}
.y73{bottom:692.346667pt;}
.ybc{bottom:698.106667pt;}
.y16{bottom:704.506667pt;}
.y72{bottom:707.706667pt;}
.ybb{bottom:714.106667pt;}
.y15{bottom:719.866667pt;}
.y71{bottom:723.066667pt;}
.yb9{bottom:730.106667pt;}
.y14{bottom:735.266667pt;}
.y70{bottom:738.466667pt;}
.yb8{bottom:746.146667pt;}
.y13{bottom:750.626667pt;}
.y6f{bottom:753.506667pt;}
.y41{bottom:765.666667pt;}
.y12{bottom:765.986667pt;}
.y6e{bottom:768.866667pt;}
.y40{bottom:781.026667pt;}
.y11{bottom:781.346667pt;}
.ye4{bottom:783.906667pt;}
.y6d{bottom:784.226667pt;}
.yb7{bottom:796.066667pt;}
.y3f{bottom:796.386667pt;}
.y10{bottom:796.706667pt;}
.y6c{bottom:799.586667pt;}
.yb6{bottom:811.426667pt;}
.yf{bottom:812.066667pt;}
.y6b{bottom:814.946667pt;}
.ye{bottom:827.106667pt;}
.y6a{bottom:830.306667pt;}
.yd{bottom:842.146667pt;}
.y3e{bottom:842.466667pt;}
.y69{bottom:845.693333pt;}
.yb5{bottom:857.533333pt;}
.yc{bottom:857.853333pt;}
.y68{bottom:861.053333pt;}
.yb4{bottom:872.893333pt;}
.yb{bottom:873.213333pt;}
.y67{bottom:876.413333pt;}
.yb3{bottom:888.253333pt;}
.y66{bottom:891.773333pt;}
.yb2{bottom:903.613333pt;}
.ya{bottom:903.933333pt;}
.ye3{bottom:906.813333pt;}
.y65{bottom:907.133333pt;}
.yb1{bottom:918.973333pt;}
.y9{bottom:919.293333pt;}
.y64{bottom:922.493333pt;}
.yb0{bottom:931.453333pt;}
.y8{bottom:934.333333pt;}
.y63{bottom:937.533333pt;}
.yaf{bottom:947.453333pt;}
.y7{bottom:950.013333pt;}
.y62{bottom:952.893333pt;}
.yae{bottom:963.493333pt;}
.y6{bottom:965.413333pt;}
.y61{bottom:968.293333pt;}
.yad{bottom:979.493333pt;}
.y5{bottom:982.053333pt;}
.y60{bottom:983.653333pt;}
.y5f{bottom:999.013333pt;}
.y4{bottom:1006.693333pt;}
.y5e{bottom:1014.373333pt;}
.y2{bottom:1047.013333pt;}
.y1{bottom:1062.373333pt;}
.h7{height:15.360000pt;}
.h6{height:15.392000pt;}
.h5{height:37.327500pt;}
.h2{height:52.762500pt;}
.h4{height:54.180000pt;}
.h8{height:55.256809pt;}
.h3{height:86.430000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:30.400000pt;}
.w7{width:31.040000pt;}
.w9{width:32.000000pt;}
.w8{width:32.032000pt;}
.w3{width:33.312000pt;}
.w5{width:39.040000pt;}
.wa{width:43.232000pt;}
.w6{width:44.832000pt;}
.w2{width:45.152000pt;}
.wc{width:53.472000pt;}
.w13{width:55.072000pt;}
.w12{width:55.360000pt;}
.w11{width:67.552000pt;}
.wf{width:77.472000pt;}
.w10{width:77.792000pt;}
.wd{width:85.472000pt;}
.we{width:97.312000pt;}
.wb{width:97.632000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:2.240000pt;}
.x1f{left:3.840000pt;}
.x1b{left:4.800000pt;}
.x1d{left:7.680000pt;}
.x22{left:8.960000pt;}
.x21{left:10.586667pt;}
.x33{left:14.080000pt;}
.x1c{left:15.040000pt;}
.x20{left:16.640000pt;}
.x30{left:18.882667pt;}
.x2a{left:19.840000pt;}
.x23{left:21.466667pt;}
.x1e{left:22.426667pt;}
.x27{left:25.600000pt;}
.x2d{left:26.560000pt;}
.x36{left:27.840000pt;}
.x29{left:29.120000pt;}
.x2c{left:30.720000pt;}
.x35{left:33.920000pt;}
.x2e{left:37.120000pt;}
.x37{left:38.722667pt;}
.x2b{left:42.560000pt;}
.xa{left:48.032000pt;}
.x11{left:60.512000pt;}
.x4{left:72.992000pt;}
.x1{left:84.192000pt;}
.x5{left:98.592000pt;}
.x2f{left:125.504000pt;}
.x25{left:145.666667pt;}
.x24{left:166.146667pt;}
.x9{left:171.906667pt;}
.x26{left:199.773333pt;}
.x31{left:203.933333pt;}
.x10{left:215.133333pt;}
.x2{left:231.773333pt;}
.x7{left:261.533333pt;}
.x32{left:272.133333pt;}
.x28{left:285.893333pt;}
.x8{left:305.413333pt;}
.x34{left:328.133333pt;}
.xf{left:378.400000pt;}
.x3{left:383.840000pt;}
.x6{left:396.960000pt;}
.xb{left:411.360000pt;}
.x39{left:417.466667pt;}
.x38{left:447.546667pt;}
.x12{left:456.506667pt;}
.xe{left:462.906667pt;}
.x14{left:490.466667pt;}
.x15{left:521.506667pt;}
.x16{left:561.186667pt;}
.xd{left:578.493333pt;}
.x17{left:606.653333pt;}
.x18{left:638.333333pt;}
.x19{left:671.013333pt;}
.x1a{left:703.653333pt;}
.xc{left:740.800000pt;}
}




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