
    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_439d8631cd2a4f0ac1416d4e.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_3b09360bff1510a245976d44.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_7ec610a8a2c5fd3b77232bc6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.916992;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_854a1ac4364ac57d5f8cc348.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.884277;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_890b01cd1b6680976daafb98.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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:-96.600000px;}
.v1{vertical-align:-93.600000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-1.440000px;}
.ls5{letter-spacing:0.000000px;}
.lse{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.178800px;}
.ls3{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.357000px;}
.ls12{letter-spacing:0.598800px;}
.ls0{letter-spacing:0.720000px;}
.lsa{letter-spacing:1.440000px;}
.lsb{letter-spacing:3.600000px;}
.ls8{letter-spacing:6.480000px;}
.ls4{letter-spacing:9.360000px;}
.ls11{letter-spacing:18.000000px;}
.ls9{letter-spacing:26.784000px;}
.lsd{letter-spacing:125.221440px;}
.ls10{letter-spacing:161.221440px;}
.lsf{letter-spacing:167.626560px;}
.ls2{letter-spacing:192.396000px;}
.ls1{letter-spacing:777.156000px;}
.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;}
}
.wsa{word-spacing:-60.480000px;}
.ws1{word-spacing:-30.600000px;}
.ws0{word-spacing:-29.880000px;}
.ws2{word-spacing:-24.120000px;}
.ws7{word-spacing:-22.320000px;}
.wsb{word-spacing:-21.478800px;}
.ws3{word-spacing:-21.237000px;}
.ws5{word-spacing:-21.058800px;}
.ws4{word-spacing:-20.880000px;}
.ws8{word-spacing:-16.560000px;}
.ws9{word-spacing:-15.120000px;}
.ws6{word-spacing:0.000000px;}
._14{margin-left:-4.277280px;}
._a{margin-left:-3.229200px;}
._1{margin-left:-1.601280px;}
._0{width:1.450080px;}
._3{width:2.616240px;}
._2{width:3.896160px;}
._9{width:5.859120px;}
._8{width:6.863040px;}
._6{width:8.406960px;}
._7{width:10.086960px;}
._12{width:11.259360px;}
._13{width:12.767280px;}
._1a{width:13.859280px;}
._f{width:15.184800px;}
._c{width:16.492800px;}
._16{width:17.586240px;}
._b{width:18.796800px;}
._1d{width:19.834080px;}
._11{width:22.891680px;}
._10{width:23.901120px;}
._15{width:25.685280px;}
._e{width:27.181440px;}
._d{width:28.631520px;}
._1b{width:34.050240px;}
._1c{width:35.241600px;}
._5{width:40.674240px;}
._4{width:42.409920px;}
._20{width:47.826720px;}
._21{width:50.062320px;}
._18{width:57.402720px;}
._17{width:58.812480px;}
._19{width:61.302240px;}
._1e{width:108.462240px;}
._1f{width:110.594880px;}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:41.760000px;}
.fs4{font-size:54.720000px;}
.fs6{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:83.520000px;}
.fs2{font-size:96.480000px;}
.fs0{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y4{bottom:21.240000px;}
.y3{bottom:51.120000px;}
.y9{bottom:56.880000px;}
.y8{bottom:75.636000px;}
.y2{bottom:85.710000px;}
.y7{bottom:94.716000px;}
.y5d{bottom:113.796000px;}
.y41{bottom:114.156000px;}
.y40{bottom:120.276000px;}
.y72{bottom:131.436000px;}
.y5c{bottom:132.876000px;}
.y3f{bottom:133.956000px;}
.y24{bottom:136.836000px;}
.y5b{bottom:138.996000px;}
.y5a{bottom:152.670000px;}
.y69{bottom:153.030000px;}
.y7d{bottom:155.910000px;}
.y68{bottom:159.150000px;}
.y71{bottom:167.790000px;}
.y59{bottom:171.750000px;}
.y67{bottom:172.110000px;}
.y23{bottom:172.830000px;}
.y66{bottom:178.230000px;}
.y7c{bottom:180.030000px;}
.y58{bottom:191.190000px;}
.y65{bottom:191.910000px;}
.y57{bottom:197.355000px;}
.y3e{bottom:202.035000px;}
.y70{bottom:204.195000px;}
.y22{bottom:209.235000px;}
.y56{bottom:211.035000px;}
.y7b{bottom:228.315000px;}
.y64{bottom:235.875000px;}
.y3d{bottom:238.035000px;}
.y6f{bottom:240.195000px;}
.y21{bottom:245.595000px;}
.y7a{bottom:252.435000px;}
.y55{bottom:272.235000px;}
.y3c{bottom:274.395000px;}
.y6e{bottom:276.555000px;}
.y20{bottom:281.595000px;}
.y79{bottom:300.675000px;}
.y54{bottom:308.235000px;}
.y3b{bottom:310.395000px;}
.y6d{bottom:312.915000px;}
.y1f{bottom:317.955000px;}
.y78{bottom:324.825000px;}
.y53{bottom:344.625000px;}
.y3a{bottom:346.785000px;}
.y6c{bottom:348.945000px;}
.y1e{bottom:354.345000px;}
.y77{bottom:373.065000px;}
.y63{bottom:380.625000px;}
.y51{bottom:382.425000px;}
.y39{bottom:383.145000px;}
.y6b{bottom:385.305000px;}
.y52{bottom:389.265000px;}
.y1d{bottom:390.345000px;}
.y76{bottom:397.185000px;}
.y62{bottom:416.985000px;}
.y50{bottom:419.145000px;}
.y37{bottom:420.585000px;}
.y6a{bottom:421.305000px;}
.y1c{bottom:426.705000px;}
.y38{bottom:427.425000px;}
.y75{bottom:445.425000px;}
.y60{bottom:454.830000px;}
.y4f{bottom:455.550000px;}
.y36{bottom:457.710000px;}
.y61{bottom:461.670000px;}
.y1b{bottom:462.750000px;}
.y74{bottom:469.950000px;}
.y4e{bottom:491.550000px;}
.y35{bottom:494.070000px;}
.y1a{bottom:499.110000px;}
.y4d{bottom:527.910000px;}
.y73{bottom:529.710000px;}
.y34{bottom:530.070000px;}
.y19{bottom:535.470000px;}
.y4c{bottom:564.270000px;}
.y33{bottom:566.430000px;}
.y18{bottom:571.470000px;}
.y4b{bottom:600.300000px;}
.y32{bottom:602.460000px;}
.y17{bottom:607.860000px;}
.y4a{bottom:636.660000px;}
.y31{bottom:638.820000px;}
.y16{bottom:643.860000px;}
.y49{bottom:673.020000px;}
.y30{bottom:675.180000px;}
.y15{bottom:680.220000px;}
.y48{bottom:709.050000px;}
.y2f{bottom:711.210000px;}
.y14{bottom:716.610000px;}
.y47{bottom:745.410000px;}
.y2e{bottom:747.570000px;}
.y13{bottom:752.610000px;}
.y46{bottom:781.410000px;}
.y5e{bottom:783.210000px;}
.y2d{bottom:783.930000px;}
.y12{bottom:788.970000px;}
.y5f{bottom:790.050000px;}
.y45{bottom:817.770000px;}
.y2c{bottom:819.930000px;}
.y11{bottom:825.375000px;}
.y44{bottom:854.175000px;}
.y2b{bottom:856.335000px;}
.y10{bottom:861.375000px;}
.y42{bottom:891.615000px;}
.y2a{bottom:892.335000px;}
.yf{bottom:897.735000px;}
.y43{bottom:898.455000px;}
.y82{bottom:916.455000px;}
.y29{bottom:928.695000px;}
.y81{bottom:952.845000px;}
.ye{bottom:957.885000px;}
.y28{bottom:965.085000px;}
.yd{bottom:982.365000px;}
.y80{bottom:989.205000px;}
.y27{bottom:1001.085000px;}
.yc{bottom:1006.485000px;}
.y7f{bottom:1025.205000px;}
.y26{bottom:1037.445000px;}
.y7e{bottom:1049.325000px;}
.yb{bottom:1053.645000px;}
.ya{bottom:1073.445000px;}
.y25{bottom:1073.805000px;}
.y1{bottom:1126.410000px;}
.y6{bottom:1175.730000px;}
.y5{bottom:1194.810000px;}
.h9{height:31.666641px;}
.h8{height:41.494219px;}
.ha{height:58.561875px;}
.h5{height:65.010937px;}
.h7{height:81.970312px;}
.h6{height:84.172500px;}
.hb{height:85.845399px;}
.h4{height:94.689844px;}
.h3{height:117.302344px;}
.h2{height:129.276000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:890.609973px;}
.w1{width:892.500000px;}
.w4{width:892.799973px;}
.w3{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1{left:75.635973px;}
.x4{left:127.475987px;}
.xc{left:132.875987px;}
.x2{left:161.714973px;}
.x8{left:180.794987px;}
.x6{left:191.594987px;}
.x7{left:268.304987px;}
.x3{left:271.544973px;}
.xb{left:343.589987px;}
.x19{left:429.299987px;}
.x5{left:474.299987px;}
.x11{left:530.489973px;}
.x12{left:537.329987px;}
.x13{left:683.894973px;}
.x14{left:690.734987px;}
.x17{left:697.934973px;}
.x18{left:704.774987px;}
.x15{left:739.724973px;}
.x16{left:746.564987px;}
.xd{left:756.284973px;}
.xe{left:763.124987px;}
.xf{left:793.724973px;}
.x10{left:800.609987px;}
.x9{left:817.169973px;}
.xa{left:824.009987px;}
@media print{
.v2{vertical-align:-85.866667pt;}
.v1{vertical-align:-83.200000pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-1.280000pt;}
.ls5{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.158933pt;}
.ls3{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.317333pt;}
.ls12{letter-spacing:0.532267pt;}
.ls0{letter-spacing:0.640000pt;}
.lsa{letter-spacing:1.280000pt;}
.lsb{letter-spacing:3.200000pt;}
.ls8{letter-spacing:5.760000pt;}
.ls4{letter-spacing:8.320000pt;}
.ls11{letter-spacing:16.000000pt;}
.ls9{letter-spacing:23.808000pt;}
.lsd{letter-spacing:111.307947pt;}
.ls10{letter-spacing:143.307947pt;}
.lsf{letter-spacing:149.001387pt;}
.ls2{letter-spacing:171.018667pt;}
.ls1{letter-spacing:690.805333pt;}
.wsa{word-spacing:-53.760000pt;}
.ws1{word-spacing:-27.200000pt;}
.ws0{word-spacing:-26.560000pt;}
.ws2{word-spacing:-21.440000pt;}
.ws7{word-spacing:-19.840000pt;}
.wsb{word-spacing:-19.092267pt;}
.ws3{word-spacing:-18.877333pt;}
.ws5{word-spacing:-18.718933pt;}
.ws4{word-spacing:-18.560000pt;}
.ws8{word-spacing:-14.720000pt;}
.ws9{word-spacing:-13.440000pt;}
.ws6{word-spacing:0.000000pt;}
._14{margin-left:-3.802027pt;}
._a{margin-left:-2.870400pt;}
._1{margin-left:-1.423360pt;}
._0{width:1.288960pt;}
._3{width:2.325547pt;}
._2{width:3.463253pt;}
._9{width:5.208107pt;}
._8{width:6.100480pt;}
._6{width:7.472853pt;}
._7{width:8.966187pt;}
._12{width:10.008320pt;}
._13{width:11.348693pt;}
._1a{width:12.319360pt;}
._f{width:13.497600pt;}
._c{width:14.660267pt;}
._16{width:15.632213pt;}
._b{width:16.708267pt;}
._1d{width:17.630293pt;}
._11{width:20.348160pt;}
._10{width:21.245440pt;}
._15{width:22.831360pt;}
._e{width:24.161280pt;}
._d{width:25.450240pt;}
._1b{width:30.266880pt;}
._1c{width:31.325867pt;}
._5{width:36.154880pt;}
._4{width:37.697707pt;}
._20{width:42.512640pt;}
._21{width:44.499840pt;}
._18{width:51.024640pt;}
._17{width:52.277760pt;}
._19{width:54.490880pt;}
._1e{width:96.410880pt;}
._1f{width:98.306560pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:48.640000pt;}
.fs6{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:74.240000pt;}
.fs2{font-size:85.760000pt;}
.fs0{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:18.880000pt;}
.y3{bottom:45.440000pt;}
.y9{bottom:50.560000pt;}
.y8{bottom:67.232000pt;}
.y2{bottom:76.186667pt;}
.y7{bottom:84.192000pt;}
.y5d{bottom:101.152000pt;}
.y41{bottom:101.472000pt;}
.y40{bottom:106.912000pt;}
.y72{bottom:116.832000pt;}
.y5c{bottom:118.112000pt;}
.y3f{bottom:119.072000pt;}
.y24{bottom:121.632000pt;}
.y5b{bottom:123.552000pt;}
.y5a{bottom:135.706667pt;}
.y69{bottom:136.026667pt;}
.y7d{bottom:138.586667pt;}
.y68{bottom:141.466667pt;}
.y71{bottom:149.146667pt;}
.y59{bottom:152.666667pt;}
.y67{bottom:152.986667pt;}
.y23{bottom:153.626667pt;}
.y66{bottom:158.426667pt;}
.y7c{bottom:160.026667pt;}
.y58{bottom:169.946667pt;}
.y65{bottom:170.586667pt;}
.y57{bottom:175.426667pt;}
.y3e{bottom:179.586667pt;}
.y70{bottom:181.506667pt;}
.y22{bottom:185.986667pt;}
.y56{bottom:187.586667pt;}
.y7b{bottom:202.946667pt;}
.y64{bottom:209.666667pt;}
.y3d{bottom:211.586667pt;}
.y6f{bottom:213.506667pt;}
.y21{bottom:218.306667pt;}
.y7a{bottom:224.386667pt;}
.y55{bottom:241.986667pt;}
.y3c{bottom:243.906667pt;}
.y6e{bottom:245.826667pt;}
.y20{bottom:250.306667pt;}
.y79{bottom:267.266667pt;}
.y54{bottom:273.986667pt;}
.y3b{bottom:275.906667pt;}
.y6d{bottom:278.146667pt;}
.y1f{bottom:282.626667pt;}
.y78{bottom:288.733333pt;}
.y53{bottom:306.333333pt;}
.y3a{bottom:308.253333pt;}
.y6c{bottom:310.173333pt;}
.y1e{bottom:314.973333pt;}
.y77{bottom:331.613333pt;}
.y63{bottom:338.333333pt;}
.y51{bottom:339.933333pt;}
.y39{bottom:340.573333pt;}
.y6b{bottom:342.493333pt;}
.y52{bottom:346.013333pt;}
.y1d{bottom:346.973333pt;}
.y76{bottom:353.053333pt;}
.y62{bottom:370.653333pt;}
.y50{bottom:372.573333pt;}
.y37{bottom:373.853333pt;}
.y6a{bottom:374.493333pt;}
.y1c{bottom:379.293333pt;}
.y38{bottom:379.933333pt;}
.y75{bottom:395.933333pt;}
.y60{bottom:404.293333pt;}
.y4f{bottom:404.933333pt;}
.y36{bottom:406.853333pt;}
.y61{bottom:410.373333pt;}
.y1b{bottom:411.333333pt;}
.y74{bottom:417.733333pt;}
.y4e{bottom:436.933333pt;}
.y35{bottom:439.173333pt;}
.y1a{bottom:443.653333pt;}
.y4d{bottom:469.253333pt;}
.y73{bottom:470.853333pt;}
.y34{bottom:471.173333pt;}
.y19{bottom:475.973333pt;}
.y4c{bottom:501.573333pt;}
.y33{bottom:503.493333pt;}
.y18{bottom:507.973333pt;}
.y4b{bottom:533.600000pt;}
.y32{bottom:535.520000pt;}
.y17{bottom:540.320000pt;}
.y4a{bottom:565.920000pt;}
.y31{bottom:567.840000pt;}
.y16{bottom:572.320000pt;}
.y49{bottom:598.240000pt;}
.y30{bottom:600.160000pt;}
.y15{bottom:604.640000pt;}
.y48{bottom:630.266667pt;}
.y2f{bottom:632.186667pt;}
.y14{bottom:636.986667pt;}
.y47{bottom:662.586667pt;}
.y2e{bottom:664.506667pt;}
.y13{bottom:668.986667pt;}
.y46{bottom:694.586667pt;}
.y5e{bottom:696.186667pt;}
.y2d{bottom:696.826667pt;}
.y12{bottom:701.306667pt;}
.y5f{bottom:702.266667pt;}
.y45{bottom:726.906667pt;}
.y2c{bottom:728.826667pt;}
.y11{bottom:733.666667pt;}
.y44{bottom:759.266667pt;}
.y2b{bottom:761.186667pt;}
.y10{bottom:765.666667pt;}
.y42{bottom:792.546667pt;}
.y2a{bottom:793.186667pt;}
.yf{bottom:797.986667pt;}
.y43{bottom:798.626667pt;}
.y82{bottom:814.626667pt;}
.y29{bottom:825.506667pt;}
.y81{bottom:846.973333pt;}
.ye{bottom:851.453333pt;}
.y28{bottom:857.853333pt;}
.yd{bottom:873.213333pt;}
.y80{bottom:879.293333pt;}
.y27{bottom:889.853333pt;}
.yc{bottom:894.653333pt;}
.y7f{bottom:911.293333pt;}
.y26{bottom:922.173333pt;}
.y7e{bottom:932.733333pt;}
.yb{bottom:936.573333pt;}
.ya{bottom:954.173333pt;}
.y25{bottom:954.493333pt;}
.y1{bottom:1001.253333pt;}
.y6{bottom:1045.093333pt;}
.y5{bottom:1062.053333pt;}
.h9{height:28.148125pt;}
.h8{height:36.883750pt;}
.ha{height:52.055000pt;}
.h5{height:57.787500pt;}
.h7{height:72.862500pt;}
.h6{height:74.820000pt;}
.hb{height:76.307021pt;}
.h4{height:84.168750pt;}
.h3{height:104.268750pt;}
.h2{height:114.912000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:791.653310pt;}
.w1{width:793.333333pt;}
.w4{width:793.599976pt;}
.w3{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1{left:67.231976pt;}
.x4{left:113.311988pt;}
.xc{left:118.111988pt;}
.x2{left:143.746643pt;}
.x8{left:160.706655pt;}
.x6{left:170.306655pt;}
.x7{left:238.493322pt;}
.x3{left:241.373310pt;}
.xb{left:305.413322pt;}
.x19{left:381.599988pt;}
.x5{left:421.599988pt;}
.x11{left:471.546643pt;}
.x12{left:477.626655pt;}
.x13{left:607.906643pt;}
.x14{left:613.986655pt;}
.x17{left:620.386643pt;}
.x18{left:626.466655pt;}
.x15{left:657.533310pt;}
.x16{left:663.613322pt;}
.xd{left:672.253310pt;}
.xe{left:678.333322pt;}
.xf{left:705.533310pt;}
.x10{left:711.653322pt;}
.x9{left:726.373310pt;}
.xa{left:732.453322pt;}
}




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