
    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_2d95523eab1003a8ac11431b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_47e17ff5625f7752c3a17f62.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_77ff969969d9d8bd374edfa6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_d24b181a8625f0b8d1f67fa7.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3ae56ea69bdce438670655f4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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;}
.v1{vertical-align:27.000000px;}
.ls21{letter-spacing:-1.251720px;}
.ls14{letter-spacing:-0.131760px;}
.ls15{letter-spacing:-0.072000px;}
.ls13{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.131760px;}
.ls0{letter-spacing:0.197640px;}
.ls16{letter-spacing:0.239400px;}
.ls22{letter-spacing:0.263520px;}
.ls1c{letter-spacing:0.335988px;}
.ls1{letter-spacing:0.395280px;}
.ls23{letter-spacing:0.482292px;}
.ls5{letter-spacing:1.106784px;}
.ls6{letter-spacing:1.152900px;}
.ls3{letter-spacing:1.185840px;}
.ls2{letter-spacing:1.515240px;}
.ls10{letter-spacing:1.910520px;}
.ls4{letter-spacing:1.976400px;}
.ls7{letter-spacing:2.220156px;}
.ls12{letter-spacing:2.239920px;}
.lsf{letter-spacing:2.582496px;}
.lsb{letter-spacing:2.635200px;}
.lsc{letter-spacing:2.648376px;}
.lse{letter-spacing:2.964600px;}
.ls8{letter-spacing:3.201768px;}
.lsd{letter-spacing:3.359880px;}
.ls20{letter-spacing:3.689280px;}
.ls1e{letter-spacing:4.084560px;}
.ls1f{letter-spacing:6.192720px;}
.lsa{letter-spacing:6.917400px;}
.ls9{letter-spacing:7.312680px;}
.ls1d{letter-spacing:9.091440px;}
.ls11{letter-spacing:9.816120px;}
.ls1b{letter-spacing:24.243840px;}
.ls19{letter-spacing:26.720928px;}
.ls18{letter-spacing:27.076680px;}
.ls1a{letter-spacing:27.834300px;}
.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;}
}
.ws1d{word-spacing:-15.284160px;}
.ws2{word-spacing:-15.218280px;}
.ws4{word-spacing:-15.152400px;}
.ws1{word-spacing:-15.020640px;}
.ws0{word-spacing:-14.888880px;}
.ws3{word-spacing:-11.156040px;}
.ws5{word-spacing:0.000000px;}
.ws10{word-spacing:0.131760px;}
.ws7{word-spacing:0.216000px;}
.ws6{word-spacing:0.263520px;}
.ws2a{word-spacing:0.592920px;}
.ws21{word-spacing:0.922320px;}
.ws22{word-spacing:1.251720px;}
.ws28{word-spacing:1.647000px;}
.ws27{word-spacing:2.042280px;}
.wsc{word-spacing:2.371680px;}
.ws18{word-spacing:2.766960px;}
.ws11{word-spacing:3.491640px;}
.ws1b{word-spacing:3.821040px;}
.wsf{word-spacing:4.216320px;}
.wsb{word-spacing:4.545720px;}
.ws14{word-spacing:5.270400px;}
.ws13{word-spacing:5.599800px;}
.ws19{word-spacing:6.324480px;}
.wsa{word-spacing:6.719760px;}
.wse{word-spacing:7.049160px;}
.ws16{word-spacing:8.169120px;}
.ws17{word-spacing:8.498520px;}
.ws15{word-spacing:9.618480px;}
.ws12{word-spacing:9.947880px;}
.ws20{word-spacing:10.343160px;}
.wsd{word-spacing:11.001960px;}
.ws29{word-spacing:12.121920px;}
.ws26{word-spacing:12.451320px;}
.ws8{word-spacing:12.846600px;}
.ws9{word-spacing:13.176000px;}
.ws1a{word-spacing:15.745320px;}
.ws1c{word-spacing:17.524080px;}
.ws23{word-spacing:18.973440px;}
.ws24{word-spacing:19.698120px;}
.ws25{word-spacing:24.705000px;}
.ws1e{word-spacing:33.005880px;}
.ws1f{word-spacing:39.462120px;}
._4{margin-left:-4.084560px;}
._5{margin-left:-2.253096px;}
._1{margin-left:-1.146312px;}
._0{width:1.330776px;}
._3{width:3.214944px;}
._2{width:8.090064px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(45,116,181);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:47.880000px;}
.fs3{font-size:60.120000px;}
.fs0{font-size:65.880000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:74.880000px;}
.fs5{font-size:81.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:4.860000px;}
.y7{bottom:24.030000px;}
.ya{bottom:35.191260px;}
.y8{bottom:48.960000px;}
.y9{bottom:54.000000px;}
.y4{bottom:57.789720px;}
.y3{bottom:72.991530px;}
.y5{bottom:73.080000px;}
.y2{bottom:99.360000px;}
.y3d{bottom:128.895300px;}
.y3c{bottom:149.416920px;}
.y3b{bottom:169.839720px;}
.y3a{bottom:190.262520px;}
.y27{bottom:201.996720px;}
.y39{bottom:210.685320px;}
.y26{bottom:222.419520px;}
.y38{bottom:231.108120px;}
.y25{bottom:242.842320px;}
.y37{bottom:251.530920px;}
.y24{bottom:263.265120px;}
.y36{bottom:271.953720px;}
.y23{bottom:283.687920px;}
.y35{bottom:292.376520px;}
.y22{bottom:304.110720px;}
.y34{bottom:312.799320px;}
.y21{bottom:324.533520px;}
.y33{bottom:333.222120px;}
.y20{bottom:345.055140px;}
.y32{bottom:353.644920px;}
.y1f{bottom:365.477940px;}
.y31{bottom:374.067720px;}
.y1e{bottom:385.900740px;}
.y30{bottom:394.490520px;}
.y1d{bottom:406.323540px;}
.y2f{bottom:414.913320px;}
.y1c{bottom:426.746340px;}
.y2e{bottom:435.336120px;}
.y1b{bottom:447.169140px;}
.y2d{bottom:455.758920px;}
.y1a{bottom:467.591940px;}
.y2c{bottom:474.930000px;}
.y19{bottom:488.014740px;}
.y2b{bottom:501.120000px;}
.y18{bottom:508.437540px;}
.y2a{bottom:520.650000px;}
.y17{bottom:528.860340px;}
.y16{bottom:549.283140px;}
.y15{bottom:569.705940px;}
.y14{bottom:590.128740px;}
.y13{bottom:610.551540px;}
.y12{bottom:629.623800px;}
.y11{bottom:648.350190px;}
.y10{bottom:667.883610px;}
.yf{bottom:686.610000px;}
.y42{bottom:713.629980px;}
.ye{bottom:717.480000px;}
.y41{bottom:734.052780px;}
.yd{bottom:738.180000px;}
.y40{bottom:754.475580px;}
.yc{bottom:771.210000px;}
.y3f{bottom:774.898380px;}
.y29{bottom:775.980000px;}
.y3e{bottom:795.420000px;}
.y28{bottom:796.680000px;}
.yb{bottom:799.020000px;}
.y1{bottom:824.040000px;}
.h2{height:22.500000px;}
.h6{height:34.904707px;}
.ha{height:43.827715px;}
.h1{height:43.909277px;}
.h5{height:47.962441px;}
.h9{height:47.994609px;}
.h3{height:48.026777px;}
.h8{height:52.453125px;}
.hb{height:54.587812px;}
.hc{height:59.049316px;}
.h7{height:61.904707px;}
.h4{height:64.350000px;}
.h0{height:893.250000px;}
.w1{width:66.780000px;}
.w2{width:368.370000px;}
.w0{width:630.000000px;}
.x0{left:0.000000px;}
.x3{left:25.830000px;}
.x5{left:63.090000px;}
.x1{left:67.500000px;}
.x8{left:85.140000px;}
.xa{left:92.700000px;}
.x9{left:109.980000px;}
.x2{left:134.368200px;}
.x4{left:192.420000px;}
.xd{left:233.995860px;}
.xc{left:238.146300px;}
.x6{left:344.160000px;}
.x7{left:376.572960px;}
.xb{left:512.190000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.000000pt;}
.ls21{letter-spacing:-1.112640pt;}
.ls14{letter-spacing:-0.117120pt;}
.ls15{letter-spacing:-0.064000pt;}
.ls13{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.117120pt;}
.ls0{letter-spacing:0.175680pt;}
.ls16{letter-spacing:0.212800pt;}
.ls22{letter-spacing:0.234240pt;}
.ls1c{letter-spacing:0.298656pt;}
.ls1{letter-spacing:0.351360pt;}
.ls23{letter-spacing:0.428704pt;}
.ls5{letter-spacing:0.983808pt;}
.ls6{letter-spacing:1.024800pt;}
.ls3{letter-spacing:1.054080pt;}
.ls2{letter-spacing:1.346880pt;}
.ls10{letter-spacing:1.698240pt;}
.ls4{letter-spacing:1.756800pt;}
.ls7{letter-spacing:1.973472pt;}
.ls12{letter-spacing:1.991040pt;}
.lsf{letter-spacing:2.295552pt;}
.lsb{letter-spacing:2.342400pt;}
.lsc{letter-spacing:2.354112pt;}
.lse{letter-spacing:2.635200pt;}
.ls8{letter-spacing:2.846016pt;}
.lsd{letter-spacing:2.986560pt;}
.ls20{letter-spacing:3.279360pt;}
.ls1e{letter-spacing:3.630720pt;}
.ls1f{letter-spacing:5.504640pt;}
.lsa{letter-spacing:6.148800pt;}
.ls9{letter-spacing:6.500160pt;}
.ls1d{letter-spacing:8.081280pt;}
.ls11{letter-spacing:8.725440pt;}
.ls1b{letter-spacing:21.550080pt;}
.ls19{letter-spacing:23.751936pt;}
.ls18{letter-spacing:24.068160pt;}
.ls1a{letter-spacing:24.741600pt;}
.ws1d{word-spacing:-13.585920pt;}
.ws2{word-spacing:-13.527360pt;}
.ws4{word-spacing:-13.468800pt;}
.ws1{word-spacing:-13.351680pt;}
.ws0{word-spacing:-13.234560pt;}
.ws3{word-spacing:-9.916480pt;}
.ws5{word-spacing:0.000000pt;}
.ws10{word-spacing:0.117120pt;}
.ws7{word-spacing:0.192000pt;}
.ws6{word-spacing:0.234240pt;}
.ws2a{word-spacing:0.527040pt;}
.ws21{word-spacing:0.819840pt;}
.ws22{word-spacing:1.112640pt;}
.ws28{word-spacing:1.464000pt;}
.ws27{word-spacing:1.815360pt;}
.wsc{word-spacing:2.108160pt;}
.ws18{word-spacing:2.459520pt;}
.ws11{word-spacing:3.103680pt;}
.ws1b{word-spacing:3.396480pt;}
.wsf{word-spacing:3.747840pt;}
.wsb{word-spacing:4.040640pt;}
.ws14{word-spacing:4.684800pt;}
.ws13{word-spacing:4.977600pt;}
.ws19{word-spacing:5.621760pt;}
.wsa{word-spacing:5.973120pt;}
.wse{word-spacing:6.265920pt;}
.ws16{word-spacing:7.261440pt;}
.ws17{word-spacing:7.554240pt;}
.ws15{word-spacing:8.549760pt;}
.ws12{word-spacing:8.842560pt;}
.ws20{word-spacing:9.193920pt;}
.wsd{word-spacing:9.779520pt;}
.ws29{word-spacing:10.775040pt;}
.ws26{word-spacing:11.067840pt;}
.ws8{word-spacing:11.419200pt;}
.ws9{word-spacing:11.712000pt;}
.ws1a{word-spacing:13.995840pt;}
.ws1c{word-spacing:15.576960pt;}
.ws23{word-spacing:16.865280pt;}
.ws24{word-spacing:17.509440pt;}
.ws25{word-spacing:21.960000pt;}
.ws1e{word-spacing:29.338560pt;}
.ws1f{word-spacing:35.077440pt;}
._4{margin-left:-3.630720pt;}
._5{margin-left:-2.002752pt;}
._1{margin-left:-1.018944pt;}
._0{width:1.182912pt;}
._3{width:2.857728pt;}
._2{width:7.191168pt;}
.fs1{font-size:42.560000pt;}
.fs3{font-size:53.440000pt;}
.fs0{font-size:58.560000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:66.560000pt;}
.fs5{font-size:72.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:4.320000pt;}
.y7{bottom:21.360000pt;}
.ya{bottom:31.281120pt;}
.y8{bottom:43.520000pt;}
.y9{bottom:48.000000pt;}
.y4{bottom:51.368640pt;}
.y3{bottom:64.881360pt;}
.y5{bottom:64.960000pt;}
.y2{bottom:88.320000pt;}
.y3d{bottom:114.573600pt;}
.y3c{bottom:132.815040pt;}
.y3b{bottom:150.968640pt;}
.y3a{bottom:169.122240pt;}
.y27{bottom:179.552640pt;}
.y39{bottom:187.275840pt;}
.y26{bottom:197.706240pt;}
.y38{bottom:205.429440pt;}
.y25{bottom:215.859840pt;}
.y37{bottom:223.583040pt;}
.y24{bottom:234.013440pt;}
.y36{bottom:241.736640pt;}
.y23{bottom:252.167040pt;}
.y35{bottom:259.890240pt;}
.y22{bottom:270.320640pt;}
.y34{bottom:278.043840pt;}
.y21{bottom:288.474240pt;}
.y33{bottom:296.197440pt;}
.y20{bottom:306.715680pt;}
.y32{bottom:314.351040pt;}
.y1f{bottom:324.869280pt;}
.y31{bottom:332.504640pt;}
.y1e{bottom:343.022880pt;}
.y30{bottom:350.658240pt;}
.y1d{bottom:361.176480pt;}
.y2f{bottom:368.811840pt;}
.y1c{bottom:379.330080pt;}
.y2e{bottom:386.965440pt;}
.y1b{bottom:397.483680pt;}
.y2d{bottom:405.119040pt;}
.y1a{bottom:415.637280pt;}
.y2c{bottom:422.160000pt;}
.y19{bottom:433.790880pt;}
.y2b{bottom:445.440000pt;}
.y18{bottom:451.944480pt;}
.y2a{bottom:462.800000pt;}
.y17{bottom:470.098080pt;}
.y16{bottom:488.251680pt;}
.y15{bottom:506.405280pt;}
.y14{bottom:524.558880pt;}
.y13{bottom:542.712480pt;}
.y12{bottom:559.665600pt;}
.y11{bottom:576.311280pt;}
.y10{bottom:593.674320pt;}
.yf{bottom:610.320000pt;}
.y42{bottom:634.337760pt;}
.ye{bottom:637.760000pt;}
.y41{bottom:652.491360pt;}
.yd{bottom:656.160000pt;}
.y40{bottom:670.644960pt;}
.yc{bottom:685.520000pt;}
.y3f{bottom:688.798560pt;}
.y29{bottom:689.760000pt;}
.y3e{bottom:707.040000pt;}
.y28{bottom:708.160000pt;}
.yb{bottom:710.240000pt;}
.y1{bottom:732.480000pt;}
.h2{height:20.000000pt;}
.h6{height:31.026406pt;}
.ha{height:38.957969pt;}
.h1{height:39.030469pt;}
.h5{height:42.633281pt;}
.h9{height:42.661875pt;}
.h3{height:42.690469pt;}
.h8{height:46.625000pt;}
.hb{height:48.522500pt;}
.hc{height:52.488281pt;}
.h7{height:55.026406pt;}
.h4{height:57.200000pt;}
.h0{height:794.000000pt;}
.w1{width:59.360000pt;}
.w2{width:327.440000pt;}
.w0{width:560.000000pt;}
.x0{left:0.000000pt;}
.x3{left:22.960000pt;}
.x5{left:56.080000pt;}
.x1{left:60.000000pt;}
.x8{left:75.680000pt;}
.xa{left:82.400000pt;}
.x9{left:97.760000pt;}
.x2{left:119.438400pt;}
.x4{left:171.040000pt;}
.xd{left:207.996320pt;}
.xc{left:211.685600pt;}
.x6{left:305.920000pt;}
.x7{left:334.731520pt;}
.xb{left:455.280000pt;}
}




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