
    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_f819ef2532ccf10eb7b2bda3.woff')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_8fcc8154dae0865fb29b2cf0.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_027d838947547e4f3917d1d3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_ac32aab93b042ba6631e4e13.woff')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_1feba4e72142ed844d04d917.woff')format("woff");}.ff5{font-family:ff5;line-height:1.097168;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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-1.440000px;}
.ls7{letter-spacing:-0.936000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.322560px;}
.ls2{letter-spacing:1.105920px;}
.ls5{letter-spacing:1.440000px;}
.ls4{letter-spacing:30.960000px;}
.ls6{letter-spacing:52.560000px;}
.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:-20.880000px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.064000px;}
.ws3{word-spacing:-13.680000px;}
.ws4{word-spacing:-12.240000px;}
.ws2{word-spacing:0.000000px;}
._37{margin-left:-9.048960px;}
._38{margin-left:-6.997440px;}
._31{margin-left:-5.876160px;}
._2a{margin-left:-4.815360px;}
._d{margin-left:-3.525120px;}
._3{margin-left:-2.221920px;}
._1{margin-left:-1.075680px;}
._0{width:1.553760px;}
._2{width:3.315360px;}
._12{width:4.616640px;}
._14{width:5.748000px;}
._13{width:6.992640px;}
._1b{width:8.136000px;}
._21{width:10.088640px;}
._20{width:11.442240px;}
._9{width:12.862080px;}
._b{width:13.932960px;}
._a{width:15.484320px;}
._c{width:17.372160px;}
._e{width:18.650400px;}
._23{width:19.809600px;}
._2b{width:21.838080px;}
._1f{width:22.991040px;}
._11{width:24.385920px;}
._7{width:25.582560px;}
._8{width:27.237120px;}
._1c{width:28.921440px;}
._1d{width:30.945120px;}
._15{width:32.648640px;}
._16{width:33.681600px;}
._17{width:34.703520px;}
._24{width:36.115200px;}
._2e{width:37.154880px;}
._36{width:38.206560px;}
._18{width:39.504960px;}
._1a{width:40.707360px;}
._19{width:41.909760px;}
._35{width:43.376640px;}
._2f{width:44.716320px;}
._1e{width:45.955200px;}
._6{width:47.760000px;}
._4{width:49.049280px;}
._5{width:50.061600px;}
._30{width:51.698880px;}
._22{width:52.784640px;}
._2c{width:54.753120px;}
._2d{width:55.854720px;}
._34{width:59.130720px;}
._33{width:60.151680px;}
._32{width:61.866720px;}
._f{width:68.592960px;}
._25{width:70.289280px;}
._10{width:71.916480px;}
._28{width:95.320320px;}
._3a{width:98.913120px;}
._26{width:114.492000px;}
._27{width:127.251840px;}
._39{width:132.636000px;}
._29{width:396.218880px;}
.fc3{color:transparent;}
.fc2{color:rgb(65,0,130);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:54.720000px;}
.fs5{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.fs0{font-size:119.520000px;}
.y70{bottom:-59.040000px;}
.y6f{bottom:-37.800000px;}
.y6b{bottom:-7.560000px;}
.y6d{bottom:-3.600000px;}
.y72{bottom:-1.080000px;}
.y0{bottom:0.000000px;}
.y64{bottom:2.160000px;}
.y28{bottom:2.880000px;}
.y2f{bottom:3.240000px;}
.y7{bottom:3.600000px;}
.y54{bottom:3.960000px;}
.y68{bottom:7.560000px;}
.y66{bottom:10.080000px;}
.y26{bottom:10.800000px;}
.y39{bottom:10.830000px;}
.y2d{bottom:11.160000px;}
.y6a{bottom:13.320000px;}
.y6c{bottom:17.280000px;}
.y27{bottom:18.360000px;}
.y2b{bottom:18.720000px;}
.y37{bottom:18.750000px;}
.y33{bottom:19.080000px;}
.y40{bottom:19.125000px;}
.y6{bottom:22.320000px;}
.y31{bottom:26.640000px;}
.y38{bottom:26.670000px;}
.y2c{bottom:26.685000px;}
.y43{bottom:34.194000px;}
.y3d{bottom:34.200000px;}
.y3a{bottom:34.230000px;}
.y2e{bottom:34.245000px;}
.y32{bottom:34.560000px;}
.y5e{bottom:34.590000px;}
.y3f{bottom:34.605000px;}
.y34{bottom:42.120000px;}
.y58{bottom:42.150000px;}
.y44{bottom:49.674000px;}
.y57{bottom:49.710000px;}
.y35{bottom:50.040000px;}
.y5f{bottom:50.070000px;}
.y41{bottom:50.085000px;}
.y6e{bottom:62.280000px;}
.y5b{bottom:65.565000px;}
.y45{bottom:68.076000px;}
.y52{bottom:79.596000px;}
.y21{bottom:93.276000px;}
.y71{bottom:103.716000px;}
.y51{bottom:115.596000px;}
.y42{bottom:116.316000px;}
.y20{bottom:129.636000px;}
.y69{bottom:136.116000px;}
.y50{bottom:151.950000px;}
.y1f{bottom:165.630000px;}
.y3e{bottom:179.670000px;}
.y67{bottom:185.790000px;}
.y4f{bottom:188.310000px;}
.y1e{bottom:202.035000px;}
.y4e{bottom:224.355000px;}
.y65{bottom:230.115000px;}
.y1d{bottom:238.395000px;}
.y3c{bottom:243.435000px;}
.y4d{bottom:260.715000px;}
.y1c{bottom:274.395000px;}
.y63{bottom:277.635000px;}
.y3b{bottom:291.675000px;}
.y4c{bottom:297.075000px;}
.y36{bottom:309.315000px;}
.y1b{bottom:310.755000px;}
.y4b{bottom:333.105000px;}
.y1a{bottom:347.145000px;}
.y30{bottom:357.225000px;}
.y4a{bottom:369.465000px;}
.y19{bottom:383.145000px;}
.y49{bottom:405.465000px;}
.y18{bottom:419.505000px;}
.y2a{bottom:420.945000px;}
.y48{bottom:441.825000px;}
.y17{bottom:455.550000px;}
.y29{bottom:469.230000px;}
.y47{bottom:478.230000px;}
.y25{bottom:486.150000px;}
.y16{bottom:491.910000px;}
.y46{bottom:514.230000px;}
.y15{bottom:528.270000px;}
.y62{bottom:534.750000px;}
.y14{bottom:564.270000px;}
.y61{bottom:583.020000px;}
.y13{bottom:600.660000px;}
.y60{bottom:630.900000px;}
.y12{bottom:636.660000px;}
.y11{bottom:673.020000px;}
.y5d{bottom:694.620000px;}
.y10{bottom:709.410000px;}
.yf{bottom:745.410000px;}
.y5c{bottom:758.370000px;}
.y5a{bottom:776.010000px;}
.ye{bottom:781.770000px;}
.yd{bottom:818.130000px;}
.yc{bottom:854.175000px;}
.y59{bottom:855.255000px;}
.yb{bottom:890.535000px;}
.y56{bottom:918.975000px;}
.ya{bottom:926.175000px;}
.y24{bottom:926.535000px;}
.y9{bottom:962.565000px;}
.y23{bottom:962.925000px;}
.y55{bottom:982.365000px;}
.y8{bottom:998.925000px;}
.y22{bottom:999.285000px;}
.y53{bottom:1000.365000px;}
.y5{bottom:1099.050000px;}
.y4{bottom:1117.410000px;}
.y3{bottom:1137.210000px;}
.y2{bottom:1157.730000px;}
.y1{bottom:1181.490000px;}
.h1f{height:12.600000px;}
.hb{height:15.480000px;}
.hf{height:16.200000px;}
.h14{height:16.560000px;}
.h18{height:19.080000px;}
.h1e{height:20.196000px;}
.h1c{height:24.156000px;}
.h1a{height:29.520000px;}
.h9{height:30.960000px;}
.h1d{height:33.839925px;}
.h10{height:46.440000px;}
.hc{height:46.476000px;}
.h13{height:46.800000px;}
.h17{height:46.836000px;}
.hd{height:53.704687px;}
.ha{height:55.147500px;}
.h20{height:59.357813px;}
.h12{height:61.920000px;}
.h15{height:61.956000px;}
.he{height:62.280000px;}
.h11{height:62.316000px;}
.h4{height:64.978594px;}
.h5{height:65.010937px;}
.h3{height:70.628906px;}
.h1b{height:70.664062px;}
.h19{height:72.562500px;}
.h8{height:73.610156px;}
.h16{height:77.796000px;}
.h7{height:81.970312px;}
.h6{height:84.172500px;}
.h2{height:117.302344px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:30.276000px;}
.w4{width:126.036000px;}
.w5{width:136.872000px;}
.w9{width:391.830000px;}
.w6{width:392.190000px;}
.wd{width:571.575000px;}
.w8{width:689.685000px;}
.w7{width:690.045000px;}
.wc{width:722.805000px;}
.wa{width:723.525000px;}
.wb{width:725.325000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:7.200000px;}
.x24{left:8.280000px;}
.x26{left:9.360000px;}
.x16{left:11.556000px;}
.x19{left:12.960000px;}
.x23{left:14.040000px;}
.x20{left:15.480000px;}
.x25{left:16.920000px;}
.x1c{left:18.720000px;}
.x1a{left:19.800000px;}
.x1f{left:21.240000px;}
.x1e{left:23.400000px;}
.x1d{left:24.840000px;}
.x18{left:28.440000px;}
.x1b{left:29.520000px;}
.x27{left:33.525000px;}
.x22{left:35.685000px;}
.xf{left:37.800000px;}
.x31{left:47.190000px;}
.xd{left:49.719000px;}
.x2e{left:51.159000px;}
.x12{left:53.685000px;}
.x11{left:60.165000px;}
.x2b{left:115.596000px;}
.x29{left:117.396000px;}
.xc{left:120.276000px;}
.x14{left:123.510000px;}
.x5{left:127.475987px;}
.x6{left:142.631987px;}
.xe{left:152.355000px;}
.x2c{left:159.549000px;}
.x2d{left:163.149000px;}
.x28{left:169.994987px;}
.x30{left:192.315000px;}
.x32{left:197.355000px;}
.x33{left:198.474000px;}
.x34{left:228.354000px;}
.xa{left:264.344987px;}
.x15{left:271.554000px;}
.x10{left:279.825000px;}
.x21{left:303.624000px;}
.x2a{left:311.544000px;}
.x9{left:312.989987px;}
.x2f{left:317.664000px;}
.xb{left:367.349987px;}
.x8{left:389.309987px;}
.x13{left:418.140000px;}
.x7{left:478.259987px;}
.x1{left:554.969987px;}
.x3{left:571.169987px;}
.x2{left:601.454987px;}
.x4{left:829.409987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-1.280000pt;}
.ls7{letter-spacing:-0.832000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.286720pt;}
.ls2{letter-spacing:0.983040pt;}
.ls5{letter-spacing:1.280000pt;}
.ls4{letter-spacing:27.520000pt;}
.ls6{letter-spacing:46.720000pt;}
.ws1{word-spacing:-18.560000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.168000pt;}
.ws3{word-spacing:-12.160000pt;}
.ws4{word-spacing:-10.880000pt;}
.ws2{word-spacing:0.000000pt;}
._37{margin-left:-8.043520pt;}
._38{margin-left:-6.219947pt;}
._31{margin-left:-5.223253pt;}
._2a{margin-left:-4.280320pt;}
._d{margin-left:-3.133440pt;}
._3{margin-left:-1.975040pt;}
._1{margin-left:-0.956160pt;}
._0{width:1.381120pt;}
._2{width:2.946987pt;}
._12{width:4.103680pt;}
._14{width:5.109333pt;}
._13{width:6.215680pt;}
._1b{width:7.232000pt;}
._21{width:8.967680pt;}
._20{width:10.170880pt;}
._9{width:11.432960pt;}
._b{width:12.384853pt;}
._a{width:13.763840pt;}
._c{width:15.441920pt;}
._e{width:16.578133pt;}
._23{width:17.608533pt;}
._2b{width:19.411627pt;}
._1f{width:20.436480pt;}
._11{width:21.676373pt;}
._7{width:22.740053pt;}
._8{width:24.210773pt;}
._1c{width:25.707947pt;}
._1d{width:27.506773pt;}
._15{width:29.021013pt;}
._16{width:29.939200pt;}
._17{width:30.847573pt;}
._24{width:32.102400pt;}
._2e{width:33.026560pt;}
._36{width:33.961387pt;}
._18{width:35.115520pt;}
._1a{width:36.184320pt;}
._19{width:37.253120pt;}
._35{width:38.557013pt;}
._2f{width:39.747840pt;}
._1e{width:40.849067pt;}
._6{width:42.453333pt;}
._4{width:43.599360pt;}
._5{width:44.499200pt;}
._30{width:45.954560pt;}
._22{width:46.919680pt;}
._2c{width:48.669440pt;}
._2d{width:49.648640pt;}
._34{width:52.560640pt;}
._33{width:53.468160pt;}
._32{width:54.992640pt;}
._f{width:60.971520pt;}
._25{width:62.479360pt;}
._10{width:63.925760pt;}
._28{width:84.729173pt;}
._3a{width:87.922773pt;}
._26{width:101.770667pt;}
._27{width:113.112747pt;}
._39{width:117.898667pt;}
._29{width:352.194560pt;}
.fs4{font-size:48.640000pt;}
.fs5{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.fs0{font-size:106.240000pt;}
.y70{bottom:-52.480000pt;}
.y6f{bottom:-33.600000pt;}
.y6b{bottom:-6.720000pt;}
.y6d{bottom:-3.200000pt;}
.y72{bottom:-0.960000pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:1.920000pt;}
.y28{bottom:2.560000pt;}
.y2f{bottom:2.880000pt;}
.y7{bottom:3.200000pt;}
.y54{bottom:3.520000pt;}
.y68{bottom:6.720000pt;}
.y66{bottom:8.960000pt;}
.y26{bottom:9.600000pt;}
.y39{bottom:9.626667pt;}
.y2d{bottom:9.920000pt;}
.y6a{bottom:11.840000pt;}
.y6c{bottom:15.360000pt;}
.y27{bottom:16.320000pt;}
.y2b{bottom:16.640000pt;}
.y37{bottom:16.666667pt;}
.y33{bottom:16.960000pt;}
.y40{bottom:17.000000pt;}
.y6{bottom:19.840000pt;}
.y31{bottom:23.680000pt;}
.y38{bottom:23.706667pt;}
.y2c{bottom:23.720000pt;}
.y43{bottom:30.394667pt;}
.y3d{bottom:30.400000pt;}
.y3a{bottom:30.426667pt;}
.y2e{bottom:30.440000pt;}
.y32{bottom:30.720000pt;}
.y5e{bottom:30.746667pt;}
.y3f{bottom:30.760000pt;}
.y34{bottom:37.440000pt;}
.y58{bottom:37.466667pt;}
.y44{bottom:44.154667pt;}
.y57{bottom:44.186667pt;}
.y35{bottom:44.480000pt;}
.y5f{bottom:44.506667pt;}
.y41{bottom:44.520000pt;}
.y6e{bottom:55.360000pt;}
.y5b{bottom:58.280000pt;}
.y45{bottom:60.512000pt;}
.y52{bottom:70.752000pt;}
.y21{bottom:82.912000pt;}
.y71{bottom:92.192000pt;}
.y51{bottom:102.752000pt;}
.y42{bottom:103.392000pt;}
.y20{bottom:115.232000pt;}
.y69{bottom:120.992000pt;}
.y50{bottom:135.066667pt;}
.y1f{bottom:147.226667pt;}
.y3e{bottom:159.706667pt;}
.y67{bottom:165.146667pt;}
.y4f{bottom:167.386667pt;}
.y1e{bottom:179.586667pt;}
.y4e{bottom:199.426667pt;}
.y65{bottom:204.546667pt;}
.y1d{bottom:211.906667pt;}
.y3c{bottom:216.386667pt;}
.y4d{bottom:231.746667pt;}
.y1c{bottom:243.906667pt;}
.y63{bottom:246.786667pt;}
.y3b{bottom:259.266667pt;}
.y4c{bottom:264.066667pt;}
.y36{bottom:274.946667pt;}
.y1b{bottom:276.226667pt;}
.y4b{bottom:296.093333pt;}
.y1a{bottom:308.573333pt;}
.y30{bottom:317.533333pt;}
.y4a{bottom:328.413333pt;}
.y19{bottom:340.573333pt;}
.y49{bottom:360.413333pt;}
.y18{bottom:372.893333pt;}
.y2a{bottom:374.173333pt;}
.y48{bottom:392.733333pt;}
.y17{bottom:404.933333pt;}
.y29{bottom:417.093333pt;}
.y47{bottom:425.093333pt;}
.y25{bottom:432.133333pt;}
.y16{bottom:437.253333pt;}
.y46{bottom:457.093333pt;}
.y15{bottom:469.573333pt;}
.y62{bottom:475.333333pt;}
.y14{bottom:501.573333pt;}
.y61{bottom:518.240000pt;}
.y13{bottom:533.920000pt;}
.y60{bottom:560.800000pt;}
.y12{bottom:565.920000pt;}
.y11{bottom:598.240000pt;}
.y5d{bottom:617.440000pt;}
.y10{bottom:630.586667pt;}
.yf{bottom:662.586667pt;}
.y5c{bottom:674.106667pt;}
.y5a{bottom:689.786667pt;}
.ye{bottom:694.906667pt;}
.yd{bottom:727.226667pt;}
.yc{bottom:759.266667pt;}
.y59{bottom:760.226667pt;}
.yb{bottom:791.586667pt;}
.y56{bottom:816.866667pt;}
.ya{bottom:823.266667pt;}
.y24{bottom:823.586667pt;}
.y9{bottom:855.613333pt;}
.y23{bottom:855.933333pt;}
.y55{bottom:873.213333pt;}
.y8{bottom:887.933333pt;}
.y22{bottom:888.253333pt;}
.y53{bottom:889.213333pt;}
.y5{bottom:976.933333pt;}
.y4{bottom:993.253333pt;}
.y3{bottom:1010.853333pt;}
.y2{bottom:1029.093333pt;}
.y1{bottom:1050.213333pt;}
.h1f{height:11.200000pt;}
.hb{height:13.760000pt;}
.hf{height:14.400000pt;}
.h14{height:14.720000pt;}
.h18{height:16.960000pt;}
.h1e{height:17.952000pt;}
.h1c{height:21.472000pt;}
.h1a{height:26.240000pt;}
.h9{height:27.520000pt;}
.h1d{height:30.079933pt;}
.h10{height:41.280000pt;}
.hc{height:41.312000pt;}
.h13{height:41.600000pt;}
.h17{height:41.632000pt;}
.hd{height:47.737500pt;}
.ha{height:49.020000pt;}
.h20{height:52.762500pt;}
.h12{height:55.040000pt;}
.h15{height:55.072000pt;}
.he{height:55.360000pt;}
.h11{height:55.392000pt;}
.h4{height:57.758750pt;}
.h5{height:57.787500pt;}
.h3{height:62.781250pt;}
.h1b{height:62.812500pt;}
.h19{height:64.500000pt;}
.h8{height:65.431250pt;}
.h16{height:69.152000pt;}
.h7{height:72.862500pt;}
.h6{height:74.820000pt;}
.h2{height:104.268750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:26.912000pt;}
.w4{width:112.032000pt;}
.w5{width:121.664000pt;}
.w9{width:348.293333pt;}
.w6{width:348.613333pt;}
.wd{width:508.066667pt;}
.w8{width:613.053333pt;}
.w7{width:613.373333pt;}
.wc{width:642.493333pt;}
.wa{width:643.133333pt;}
.wb{width:644.733333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:6.400000pt;}
.x24{left:7.360000pt;}
.x26{left:8.320000pt;}
.x16{left:10.272000pt;}
.x19{left:11.520000pt;}
.x23{left:12.480000pt;}
.x20{left:13.760000pt;}
.x25{left:15.040000pt;}
.x1c{left:16.640000pt;}
.x1a{left:17.600000pt;}
.x1f{left:18.880000pt;}
.x1e{left:20.800000pt;}
.x1d{left:22.080000pt;}
.x18{left:25.280000pt;}
.x1b{left:26.240000pt;}
.x27{left:29.800000pt;}
.x22{left:31.720000pt;}
.xf{left:33.600000pt;}
.x31{left:41.946667pt;}
.xd{left:44.194667pt;}
.x2e{left:45.474667pt;}
.x12{left:47.720000pt;}
.x11{left:53.480000pt;}
.x2b{left:102.752000pt;}
.x29{left:104.352000pt;}
.xc{left:106.912000pt;}
.x14{left:109.786667pt;}
.x5{left:113.311988pt;}
.x6{left:126.783988pt;}
.xe{left:135.426667pt;}
.x2c{left:141.821333pt;}
.x2d{left:145.021333pt;}
.x28{left:151.106655pt;}
.x30{left:170.946667pt;}
.x32{left:175.426667pt;}
.x33{left:176.421333pt;}
.x34{left:202.981333pt;}
.xa{left:234.973322pt;}
.x15{left:241.381333pt;}
.x10{left:248.733333pt;}
.x21{left:269.888000pt;}
.x2a{left:276.928000pt;}
.x9{left:278.213322pt;}
.x2f{left:282.368000pt;}
.xb{left:326.533322pt;}
.x8{left:346.053322pt;}
.x13{left:371.680000pt;}
.x7{left:425.119988pt;}
.x1{left:493.306655pt;}
.x3{left:507.706655pt;}
.x2{left:534.626655pt;}
.x4{left:737.253322pt;}
}




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