
    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_3c5f1e66703dfa7eadac83ab.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.769531;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_055e384894cd9e4107579bce.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_54c94c261a3d1aa295dd7d88.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.084473;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_def89503c6c7fde85903fcf9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2792ed7f400fc82f6abd86d4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2d898648fdb4bc0e46d2c9dd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084473;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e6e3421bae0fdb98e8f5abc0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_bad0039b4287c42ae0422bb9.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_df862241ab6aac1847cad89e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.064941;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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000001px;}
.lsd{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.720000px;}
.ls7{letter-spacing:6.480000px;}
.lsa{letter-spacing:8.640000px;}
.lsb{letter-spacing:13.680000px;}
.ls9{letter-spacing:26.640000px;}
.ls8{letter-spacing:30.960000px;}
.lsc{letter-spacing:95.184000px;}
.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;}
}
.ws4{word-spacing:-18.532800px;}
.ws3{word-spacing:-15.984000px;}
.ws0{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.696000px;}
.ws5{word-spacing:-15.552000px;}
.ws2{word-spacing:0.000000px;}
._d{margin-left:-4.481280px;}
._4{margin-left:-2.718720px;}
._0{margin-left:-1.457280px;}
._1{width:1.097280px;}
._17{width:2.237280px;}
._1a{width:3.240000px;}
._19{width:4.752000px;}
._9{width:5.832000px;}
._18{width:7.320000px;}
._b{width:9.120000px;}
._c{width:10.158720px;}
._6{width:11.952000px;}
._5{width:13.536000px;}
._21{width:14.633280px;}
._8{width:17.245440px;}
._a{width:18.682560px;}
._7{width:20.160000px;}
._11{width:21.672000px;}
._27{width:22.798560px;}
._1b{width:23.832000px;}
._3{width:26.640000px;}
._2{width:27.839997px;}
._26{width:29.448000px;}
._12{width:31.104000px;}
._13{width:32.238720px;}
._14{width:33.912000px;}
._25{width:34.980000px;}
._1d{width:36.377280px;}
._1c{width:37.560000px;}
._f{width:39.401280px;}
._e{width:40.536000px;}
._1f{width:41.832000px;}
._1e{width:42.984000px;}
._20{width:44.064000px;}
._24{width:45.504000px;}
._23{width:49.337280px;}
._22{width:50.400000px;}
._29{width:53.369280px;}
._28{width:54.432000px;}
._15{width:73.008000px;}
._16{width:74.820000px;}
._10{width:86.832000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(5,57,118);}
.fs0{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:21.240000px;}
.y5{bottom:54.396000px;}
.y4{bottom:75.636000px;}
.y32{bottom:102.276000px;}
.y6f{bottom:106.416000px;}
.y4e{bottom:115.236000px;}
.y31{bottom:126.576000px;}
.y6e{bottom:130.716000px;}
.y4d{bottom:139.536000px;}
.y30{bottom:150.870000px;}
.y6d{bottom:154.830000px;}
.y4c{bottom:163.830000px;}
.y2f{bottom:175.170000px;}
.y6c{bottom:179.130000px;}
.y4b{bottom:188.130000px;}
.y2e{bottom:199.470000px;}
.y6b{bottom:203.430000px;}
.y4a{bottom:212.430000px;}
.y83{bottom:219.630000px;}
.y2d{bottom:223.590000px;}
.y6a{bottom:227.730000px;}
.y49{bottom:236.550000px;}
.y82{bottom:243.930000px;}
.y2c{bottom:247.890000px;}
.y69{bottom:252.030000px;}
.y48{bottom:260.850000px;}
.y81{bottom:268.230000px;}
.y2b{bottom:272.190000px;}
.y68{bottom:276.330000px;}
.y47{bottom:285.195000px;}
.y80{bottom:292.395000px;}
.y2a{bottom:296.535000px;}
.y67{bottom:300.495000px;}
.y46{bottom:309.495000px;}
.y7f{bottom:316.695000px;}
.y29{bottom:320.835000px;}
.y66{bottom:324.795000px;}
.y45{bottom:333.795000px;}
.y7e{bottom:340.995000px;}
.y28{bottom:345.135000px;}
.y65{bottom:349.095000px;}
.y44{bottom:357.915000px;}
.y7d{bottom:365.295000px;}
.y27{bottom:369.255000px;}
.y64{bottom:373.395000px;}
.y43{bottom:382.215000px;}
.y7c{bottom:389.595000px;}
.y26{bottom:393.555000px;}
.y63{bottom:397.695000px;}
.y42{bottom:406.515000px;}
.y7b{bottom:413.895000px;}
.y25{bottom:417.855000px;}
.y62{bottom:421.995000px;}
.y41{bottom:430.815000px;}
.y7a{bottom:438.015000px;}
.y24{bottom:442.155000px;}
.y61{bottom:446.115000px;}
.y40{bottom:455.115000px;}
.y79{bottom:462.315000px;}
.y23{bottom:466.455000px;}
.y60{bottom:470.415000px;}
.y3f{bottom:479.415000px;}
.y78{bottom:486.615000px;}
.y22{bottom:490.755000px;}
.y5f{bottom:494.715000px;}
.y3e{bottom:499.575000px;}
.y77{bottom:510.915000px;}
.y21{bottom:514.875000px;}
.y5e{bottom:519.015000px;}
.y76{bottom:535.215000px;}
.y20{bottom:539.175000px;}
.y5d{bottom:543.315000px;}
.y75{bottom:559.515000px;}
.y1f{bottom:563.475000px;}
.y5c{bottom:567.465000px;}
.y74{bottom:583.665000px;}
.y1e{bottom:587.805000px;}
.y5b{bottom:591.765000px;}
.y73{bottom:607.965000px;}
.y1d{bottom:612.105000px;}
.y5a{bottom:616.065000px;}
.y72{bottom:632.265000px;}
.y1c{bottom:636.225000px;}
.y59{bottom:640.365000px;}
.y71{bottom:657.645000px;}
.y1b{bottom:660.525000px;}
.y58{bottom:664.665000px;}
.y1a{bottom:684.825000px;}
.y70{bottom:686.085000px;}
.y57{bottom:688.965000px;}
.y19{bottom:709.125000px;}
.y56{bottom:713.085000px;}
.y18{bottom:733.425000px;}
.y55{bottom:737.385000px;}
.y17{bottom:757.725000px;}
.y54{bottom:761.685000px;}
.y16{bottom:781.845000px;}
.y53{bottom:785.985000px;}
.y15{bottom:806.145000px;}
.y52{bottom:810.285000px;}
.y14{bottom:830.445000px;}
.y51{bottom:834.585000px;}
.y13{bottom:854.790000px;}
.y50{bottom:858.750000px;}
.y12{bottom:879.090000px;}
.y4f{bottom:883.050000px;}
.y11{bottom:903.390000px;}
.y3d{bottom:907.350000px;}
.y10{bottom:927.510000px;}
.y3c{bottom:931.650000px;}
.yf{bottom:951.810000px;}
.y3b{bottom:955.950000px;}
.ye{bottom:976.110000px;}
.y3a{bottom:980.070000px;}
.yd{bottom:1000.410000px;}
.y39{bottom:1004.370000px;}
.yc{bottom:1024.710000px;}
.y38{bottom:1028.670000px;}
.yb{bottom:1048.830000px;}
.y37{bottom:1052.970000px;}
.ya{bottom:1073.130000px;}
.y36{bottom:1077.270000px;}
.y9{bottom:1097.430000px;}
.y35{bottom:1101.570000px;}
.y8{bottom:1121.730000px;}
.y34{bottom:1125.690000px;}
.y7{bottom:1147.140000px;}
.y33{bottom:1150.020000px;}
.y3{bottom:1174.320000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1223.820000px;}
.h6{height:36.720000px;}
.h2{height:48.138750px;}
.h3{height:60.960938px;}
.h4{height:62.367188px;}
.h7{height:65.010937px;}
.h5{height:65.884219px;}
.h8{height:71.324297px;}
.h9{height:74.004654px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:16.560000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:84.959987px;}
.x6{left:91.259987px;}
.xc{left:127.475987px;}
.xe{left:260.309987px;}
.x5{left:438.195000px;}
.xb{left:447.014987px;}
.x7{left:492.764987px;}
.x8{left:504.644987px;}
.x9{left:532.364987px;}
.x2{left:539.744987px;}
.x3{left:584.384987px;}
.xa{left:597.344987px;}
.x1{left:681.044987px;}
.xd{left:732.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000001pt;}
.lsd{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls7{letter-spacing:5.760000pt;}
.lsa{letter-spacing:7.680000pt;}
.lsb{letter-spacing:12.160000pt;}
.ls9{letter-spacing:23.680000pt;}
.ls8{letter-spacing:27.520000pt;}
.lsc{letter-spacing:84.608000pt;}
.ws4{word-spacing:-16.473600pt;}
.ws3{word-spacing:-14.208000pt;}
.ws0{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.952000pt;}
.ws5{word-spacing:-13.824000pt;}
.ws2{word-spacing:0.000000pt;}
._d{margin-left:-3.983360pt;}
._4{margin-left:-2.416640pt;}
._0{margin-left:-1.295360pt;}
._1{width:0.975360pt;}
._17{width:1.988693pt;}
._1a{width:2.880000pt;}
._19{width:4.224000pt;}
._9{width:5.184000pt;}
._18{width:6.506667pt;}
._b{width:8.106667pt;}
._c{width:9.029973pt;}
._6{width:10.624000pt;}
._5{width:12.032000pt;}
._21{width:13.007360pt;}
._8{width:15.329280pt;}
._a{width:16.606720pt;}
._7{width:17.920000pt;}
._11{width:19.264000pt;}
._27{width:20.265387pt;}
._1b{width:21.184000pt;}
._3{width:23.680000pt;}
._2{width:24.746664pt;}
._26{width:26.176000pt;}
._12{width:27.648000pt;}
._13{width:28.656640pt;}
._14{width:30.144000pt;}
._25{width:31.093333pt;}
._1d{width:32.335360pt;}
._1c{width:33.386667pt;}
._f{width:35.023360pt;}
._e{width:36.032000pt;}
._1f{width:37.184000pt;}
._1e{width:38.208000pt;}
._20{width:39.168000pt;}
._24{width:40.448000pt;}
._23{width:43.855360pt;}
._22{width:44.800000pt;}
._29{width:47.439360pt;}
._28{width:48.384000pt;}
._15{width:64.896000pt;}
._16{width:66.506667pt;}
._10{width:77.184000pt;}
.fs0{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:18.880000pt;}
.y5{bottom:48.352000pt;}
.y4{bottom:67.232000pt;}
.y32{bottom:90.912000pt;}
.y6f{bottom:94.592000pt;}
.y4e{bottom:102.432000pt;}
.y31{bottom:112.512000pt;}
.y6e{bottom:116.192000pt;}
.y4d{bottom:124.032000pt;}
.y30{bottom:134.106667pt;}
.y6d{bottom:137.626667pt;}
.y4c{bottom:145.626667pt;}
.y2f{bottom:155.706667pt;}
.y6c{bottom:159.226667pt;}
.y4b{bottom:167.226667pt;}
.y2e{bottom:177.306667pt;}
.y6b{bottom:180.826667pt;}
.y4a{bottom:188.826667pt;}
.y83{bottom:195.226667pt;}
.y2d{bottom:198.746667pt;}
.y6a{bottom:202.426667pt;}
.y49{bottom:210.266667pt;}
.y82{bottom:216.826667pt;}
.y2c{bottom:220.346667pt;}
.y69{bottom:224.026667pt;}
.y48{bottom:231.866667pt;}
.y81{bottom:238.426667pt;}
.y2b{bottom:241.946667pt;}
.y68{bottom:245.626667pt;}
.y47{bottom:253.506667pt;}
.y80{bottom:259.906667pt;}
.y2a{bottom:263.586667pt;}
.y67{bottom:267.106667pt;}
.y46{bottom:275.106667pt;}
.y7f{bottom:281.506667pt;}
.y29{bottom:285.186667pt;}
.y66{bottom:288.706667pt;}
.y45{bottom:296.706667pt;}
.y7e{bottom:303.106667pt;}
.y28{bottom:306.786667pt;}
.y65{bottom:310.306667pt;}
.y44{bottom:318.146667pt;}
.y7d{bottom:324.706667pt;}
.y27{bottom:328.226667pt;}
.y64{bottom:331.906667pt;}
.y43{bottom:339.746667pt;}
.y7c{bottom:346.306667pt;}
.y26{bottom:349.826667pt;}
.y63{bottom:353.506667pt;}
.y42{bottom:361.346667pt;}
.y7b{bottom:367.906667pt;}
.y25{bottom:371.426667pt;}
.y62{bottom:375.106667pt;}
.y41{bottom:382.946667pt;}
.y7a{bottom:389.346667pt;}
.y24{bottom:393.026667pt;}
.y61{bottom:396.546667pt;}
.y40{bottom:404.546667pt;}
.y79{bottom:410.946667pt;}
.y23{bottom:414.626667pt;}
.y60{bottom:418.146667pt;}
.y3f{bottom:426.146667pt;}
.y78{bottom:432.546667pt;}
.y22{bottom:436.226667pt;}
.y5f{bottom:439.746667pt;}
.y3e{bottom:444.066667pt;}
.y77{bottom:454.146667pt;}
.y21{bottom:457.666667pt;}
.y5e{bottom:461.346667pt;}
.y76{bottom:475.746667pt;}
.y20{bottom:479.266667pt;}
.y5d{bottom:482.946667pt;}
.y75{bottom:497.346667pt;}
.y1f{bottom:500.866667pt;}
.y5c{bottom:504.413333pt;}
.y74{bottom:518.813333pt;}
.y1e{bottom:522.493333pt;}
.y5b{bottom:526.013333pt;}
.y73{bottom:540.413333pt;}
.y1d{bottom:544.093333pt;}
.y5a{bottom:547.613333pt;}
.y72{bottom:562.013333pt;}
.y1c{bottom:565.533333pt;}
.y59{bottom:569.213333pt;}
.y71{bottom:584.573333pt;}
.y1b{bottom:587.133333pt;}
.y58{bottom:590.813333pt;}
.y1a{bottom:608.733333pt;}
.y70{bottom:609.853333pt;}
.y57{bottom:612.413333pt;}
.y19{bottom:630.333333pt;}
.y56{bottom:633.853333pt;}
.y18{bottom:651.933333pt;}
.y55{bottom:655.453333pt;}
.y17{bottom:673.533333pt;}
.y54{bottom:677.053333pt;}
.y16{bottom:694.973333pt;}
.y53{bottom:698.653333pt;}
.y15{bottom:716.573333pt;}
.y52{bottom:720.253333pt;}
.y14{bottom:738.173333pt;}
.y51{bottom:741.853333pt;}
.y13{bottom:759.813333pt;}
.y50{bottom:763.333333pt;}
.y12{bottom:781.413333pt;}
.y4f{bottom:784.933333pt;}
.y11{bottom:803.013333pt;}
.y3d{bottom:806.533333pt;}
.y10{bottom:824.453333pt;}
.y3c{bottom:828.133333pt;}
.yf{bottom:846.053333pt;}
.y3b{bottom:849.733333pt;}
.ye{bottom:867.653333pt;}
.y3a{bottom:871.173333pt;}
.yd{bottom:889.253333pt;}
.y39{bottom:892.773333pt;}
.yc{bottom:910.853333pt;}
.y38{bottom:914.373333pt;}
.yb{bottom:932.293333pt;}
.y37{bottom:935.973333pt;}
.ya{bottom:953.893333pt;}
.y36{bottom:957.573333pt;}
.y9{bottom:975.493333pt;}
.y35{bottom:979.173333pt;}
.y8{bottom:997.093333pt;}
.y34{bottom:1000.613333pt;}
.y7{bottom:1019.680000pt;}
.y33{bottom:1022.240000pt;}
.y3{bottom:1043.840000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1087.840000pt;}
.h6{height:32.640000pt;}
.h2{height:42.790000pt;}
.h3{height:54.187500pt;}
.h4{height:55.437500pt;}
.h7{height:57.787500pt;}
.h5{height:58.563750pt;}
.h8{height:63.399375pt;}
.h9{height:65.781915pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:14.720000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:75.519988pt;}
.x6{left:81.119988pt;}
.xc{left:113.311988pt;}
.xe{left:231.386655pt;}
.x5{left:389.506667pt;}
.xb{left:397.346655pt;}
.x7{left:438.013322pt;}
.x8{left:448.573322pt;}
.x9{left:473.213322pt;}
.x2{left:479.773322pt;}
.x3{left:519.453322pt;}
.xa{left:530.973322pt;}
.x1{left:605.373322pt;}
.xd{left:651.333322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  