
    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_cf5d7e48cb19817f2e10f2d1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_431ff14a63fd78c1db3e17da.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_ea8ac07bc03e40931934f7df.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_a6f65cb3bee05b8fb52f131b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.975000;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_878b80ea2b2374807cce1aed.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.136230;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_0d75a2221f5cd77110a49594.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.975098;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_55a780bb8420ccb8e1c5e3ec.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_00ef653d7bb7eaeeadae5147.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.005371;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_391bab798bed9be66d713f39.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.975098;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_91978b6fd9a7d36f9e5fa652.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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;}
.m1{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,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);}
.m2{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;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws3{word-spacing:-24.344599px;}
.ws0{word-spacing:-18.984000px;}
.ws4{word-spacing:-15.901415px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:2046.351401px;}
._5{margin-left:-1662.434510px;}
._2{margin-left:-7.353600px;}
._3{margin-left:-4.284000px;}
._1{margin-left:-1.996800px;}
._6{width:1.110302px;}
._0{width:5.587200px;}
._4{width:847.078087px;}
.fc4{color:rgb(12,71,140);}
.fc3{color:rgb(245,120,20);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:47.999996px;}
.fs5{font-size:61.214467px;}
.fs7{font-size:63.098428px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:84.000000px;}
.fs8{font-size:91.844662px;}
.fs0{font-size:96.000000px;}
.fs6{font-size:97.952332px;}
.fs4{font-size:183.689324px;}
.y0{bottom:0.000000px;}
.y68{bottom:5.740214px;}
.yc{bottom:8.040000px;}
.y6a{bottom:13.776696px;}
.y64{bottom:17.220904px;}
.y19{bottom:25.380071px;}
.y67{bottom:27.553321px;}
.y1c{bottom:27.553400px;}
.y63{bottom:39.034012px;}
.y66{bottom:71.179536px;}
.y1b{bottom:72.327673px;}
.y62{bottom:75.771876px;}
.y39{bottom:80.364067px;}
.y3a{bottom:82.392100px;}
.y20{bottom:82.392128px;}
.y1d{bottom:82.392132px;}
.y13{bottom:99.795000px;}
.y38{bottom:112.509699px;}
.y61{bottom:112.509741px;}
.y60{bottom:134.322848px;}
.y16{bottom:135.750000px;}
.y14{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y5f{bottom:156.135956px;}
.y15{bottom:157.830000px;}
.y37{bottom:158.432030px;}
.y5e{bottom:177.949063px;}
.y36{bottom:180.245137px;}
.y5d{bottom:199.762170px;}
.y35{bottom:202.058245px;}
.y5c{bottom:221.575277px;}
.y34{bottom:239.944168px;}
.y5b{bottom:243.388385px;}
.y33{bottom:261.757275px;}
.y5a{bottom:265.201492px;}
.y32{bottom:283.570382px;}
.y59{bottom:303.087415px;}
.y31{bottom:305.383490px;}
.y30{bottom:327.196597px;}
.y58{bottom:339.825280px;}
.ya{bottom:344.680500px;}
.y2f{bottom:349.009704px;}
.y57{bottom:361.638387px;}
.y2e{bottom:370.822811px;}
.y56{bottom:383.451494px;}
.yd{bottom:386.490000px;}
.y9{bottom:395.689500px;}
.y55{bottom:405.264602px;}
.y2d{bottom:407.560676px;}
.y2c{bottom:429.373783px;}
.yb{bottom:434.850000px;}
.y54{bottom:442.002466px;}
.y8{bottom:446.698500px;}
.y2b{bottom:451.186891px;}
.y53{bottom:463.815574px;}
.y2a{bottom:472.999998px;}
.y52{bottom:485.628681px;}
.y10{bottom:488.055000px;}
.y7{bottom:497.707500px;}
.y51{bottom:507.441788px;}
.y29{bottom:510.885921px;}
.y50{bottom:529.254895px;}
.y11{bottom:538.230000px;}
.y28{bottom:543.031553px;}
.y6{bottom:548.716500px;}
.y4f{bottom:568.288877px;}
.y17{bottom:589.605000px;}
.y5{bottom:599.725500px;}
.y4e{bottom:614.211208px;}
.y27{bottom:621.099515px;}
.ye{bottom:631.920000px;}
.y4d{bottom:636.024315px;}
.y26{bottom:642.912623px;}
.y4c{bottom:657.837422px;}
.y25{bottom:664.725730px;}
.y4b{bottom:679.650530px;}
.y24{bottom:686.538837px;}
.y4a{bottom:701.463637px;}
.y23{bottom:708.351944px;}
.y49{bottom:723.276744px;}
.y22{bottom:730.165052px;}
.y48{bottom:745.089851px;}
.y21{bottom:751.978159px;}
.y47{bottom:766.902959px;}
.y4{bottom:778.225500px;}
.y1f{bottom:804.788836px;}
.y46{bottom:804.788882px;}
.y12{bottom:815.670000px;}
.y1e{bottom:840.378643px;}
.y45{bottom:851.859271px;}
.y44{bottom:873.672378px;}
.y43{bottom:895.485486px;}
.y3{bottom:905.716500px;}
.y42{bottom:917.298593px;}
.y41{bottom:939.111700px;}
.y40{bottom:960.924807px;}
.y2{bottom:964.228500px;}
.y3f{bottom:982.737915px;}
.y1{bottom:989.716500px;}
.y3e{bottom:1019.475779px;}
.y3d{bottom:1041.288887px;}
.y1a{bottom:1060.537766px;}
.y3c{bottom:1063.101994px;}
.y69{bottom:1066.278143px;}
.y3b{bottom:1084.915101px;}
.y65{bottom:1096.127732px;}
.y18{bottom:1229.879973px;}
.h4{height:33.000000px;}
.ha{height:34.945310px;}
.h12{height:40.799681px;}
.h1a{height:44.565806px;}
.h18{height:46.508648px;}
.h15{height:46.837436px;}
.h16{height:48.278924px;}
.hd{height:54.847923px;}
.h11{height:56.535945px;}
.h3{height:58.406250px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.h13{height:69.959801px;}
.hf{height:74.612128px;}
.h17{height:87.252271px;}
.h7{height:115.215000px;}
.h19{height:117.101861px;}
.hb{height:122.842237px;}
.hc{height:142.359226px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h10{height:784.123815px;}
.he{height:873.672336px;}
.h14{height:1100.987882px;}
.h0{height:1262.835000px;}
.h9{height:1262.879970px;}
.h1{height:1263.000000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.wb{width:716.388342px;}
.wc{width:756.570388px;}
.w9{width:892.439940px;}
.wa{width:892.500000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.xa{left:39.679684px;}
.xb{left:52.499996px;}
.xd{left:67.424754px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.xc{left:168.369922px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.xe{left:322.586443px;}
.x11{left:615.484374px;}
.x12{left:623.136171px;}
.xf{left:701.029021px;}
.x10{left:708.680806px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-21.639643pt;}
.ws0{word-spacing:-16.874667pt;}
.ws4{word-spacing:-14.134591pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:1818.979023pt;}
._5{margin-left:-1477.719565pt;}
._2{margin-left:-6.536533pt;}
._3{margin-left:-3.808000pt;}
._1{margin-left:-1.774933pt;}
._6{width:0.986935pt;}
._0{width:4.966400pt;}
._4{width:752.958300pt;}
.fs3{font-size:42.666663pt;}
.fs5{font-size:54.412859pt;}
.fs7{font-size:56.087492pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:74.666667pt;}
.fs8{font-size:81.639700pt;}
.fs0{font-size:85.333333pt;}
.fs6{font-size:87.068740pt;}
.fs4{font-size:163.279399pt;}
.y0{bottom:0.000000pt;}
.y68{bottom:5.102413pt;}
.yc{bottom:7.146667pt;}
.y6a{bottom:12.245952pt;}
.y64{bottom:15.307470pt;}
.y19{bottom:22.560063pt;}
.y67{bottom:24.491841pt;}
.y1c{bottom:24.491911pt;}
.y63{bottom:34.696899pt;}
.y66{bottom:63.270699pt;}
.y1b{bottom:64.291265pt;}
.y62{bottom:67.352779pt;}
.y39{bottom:71.434727pt;}
.y3a{bottom:73.237422pt;}
.y20{bottom:73.237447pt;}
.y1d{bottom:73.237451pt;}
.y13{bottom:88.706667pt;}
.y38{bottom:100.008621pt;}
.y61{bottom:100.008659pt;}
.y60{bottom:119.398088pt;}
.y16{bottom:120.666667pt;}
.y14{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y5f{bottom:138.787516pt;}
.y15{bottom:140.293333pt;}
.y37{bottom:140.828471pt;}
.y5e{bottom:158.176945pt;}
.y36{bottom:160.217900pt;}
.y5d{bottom:177.566374pt;}
.y35{bottom:179.607329pt;}
.y5c{bottom:196.955802pt;}
.y34{bottom:213.283705pt;}
.y5b{bottom:216.345231pt;}
.y33{bottom:232.673133pt;}
.y5a{bottom:235.734660pt;}
.y32{bottom:252.062562pt;}
.y59{bottom:269.411036pt;}
.y31{bottom:271.451991pt;}
.y30{bottom:290.841419pt;}
.y58{bottom:302.066915pt;}
.ya{bottom:306.382667pt;}
.y2f{bottom:310.230848pt;}
.y57{bottom:321.456344pt;}
.y2e{bottom:329.620277pt;}
.y56{bottom:340.845773pt;}
.yd{bottom:343.546667pt;}
.y9{bottom:351.724000pt;}
.y55{bottom:360.235201pt;}
.y2d{bottom:362.276157pt;}
.y2c{bottom:381.665585pt;}
.yb{bottom:386.533333pt;}
.y54{bottom:392.891081pt;}
.y8{bottom:397.065333pt;}
.y2b{bottom:401.055014pt;}
.y53{bottom:412.280510pt;}
.y2a{bottom:420.444443pt;}
.y52{bottom:431.669939pt;}
.y10{bottom:433.826667pt;}
.y7{bottom:442.406667pt;}
.y51{bottom:451.059367pt;}
.y29{bottom:454.120819pt;}
.y50{bottom:470.448796pt;}
.y11{bottom:478.426667pt;}
.y28{bottom:482.694714pt;}
.y6{bottom:487.748000pt;}
.y4f{bottom:505.145668pt;}
.y17{bottom:524.093333pt;}
.y5{bottom:533.089333pt;}
.y4e{bottom:545.965518pt;}
.y27{bottom:552.088458pt;}
.ye{bottom:561.706667pt;}
.y4d{bottom:565.354947pt;}
.y26{bottom:571.477887pt;}
.y4c{bottom:584.744375pt;}
.y25{bottom:590.867316pt;}
.y4b{bottom:604.133804pt;}
.y24{bottom:610.256744pt;}
.y4a{bottom:623.523233pt;}
.y23{bottom:629.646173pt;}
.y49{bottom:642.912661pt;}
.y22{bottom:649.035602pt;}
.y48{bottom:662.302090pt;}
.y21{bottom:668.425030pt;}
.y47{bottom:681.691519pt;}
.y4{bottom:691.756000pt;}
.y1f{bottom:715.367854pt;}
.y46{bottom:715.367895pt;}
.y12{bottom:725.040000pt;}
.y1e{bottom:747.003238pt;}
.y45{bottom:757.208241pt;}
.y44{bottom:776.597670pt;}
.y43{bottom:795.987098pt;}
.y3{bottom:805.081333pt;}
.y42{bottom:815.376527pt;}
.y41{bottom:834.765956pt;}
.y40{bottom:854.155384pt;}
.y2{bottom:857.092000pt;}
.y3f{bottom:873.544813pt;}
.y1{bottom:879.748000pt;}
.y3e{bottom:906.200693pt;}
.y3d{bottom:925.590121pt;}
.y1a{bottom:942.700237pt;}
.y3c{bottom:944.979550pt;}
.y69{bottom:947.802793pt;}
.y3b{bottom:964.368979pt;}
.y65{bottom:974.335762pt;}
.y18{bottom:1093.226642pt;}
.h4{height:29.333333pt;}
.ha{height:31.062497pt;}
.h12{height:36.266383pt;}
.h1a{height:39.614049pt;}
.h18{height:41.341020pt;}
.h15{height:41.633277pt;}
.h16{height:42.914599pt;}
.hd{height:48.753709pt;}
.h11{height:50.254173pt;}
.h3{height:51.916667pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.h13{height:62.186490pt;}
.hf{height:66.321892pt;}
.h17{height:77.557574pt;}
.h7{height:102.413333pt;}
.h19{height:104.090543pt;}
.hb{height:109.193099pt;}
.hc{height:126.541534pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h10{height:696.998947pt;}
.he{height:776.597632pt;}
.h14{height:978.655895pt;}
.h0{height:1122.520000pt;}
.h9{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.wb{width:636.789637pt;}
.wc{width:672.507012pt;}
.w9{width:793.279947pt;}
.wa{width:793.333333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.xa{left:35.270830pt;}
.xb{left:46.666663pt;}
.xd{left:59.933114pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.xc{left:149.662153pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.xe{left:286.743505pt;}
.x11{left:547.097222pt;}
.x12{left:553.898819pt;}
.xf{left:623.136907pt;}
.x10{left:629.938494pt;}
}




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