
    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_63d372884b272164952d5d94.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.945000;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_880855a0a814bcd7f8a8096f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.964000;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_15da053a007f2dee1a6f5a55.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.675000;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_34c03a78530bc46f70b812d8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.936000;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;}
.ff5{font-family:sans-serif;visibility:hidden;}
.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);}
.v1{vertical-align:-10.500000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:16.361988px;}
.ls3{letter-spacing:16.363650px;}
.ls1{letter-spacing:52.664496px;}
.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;}
}
.ws8{word-spacing:-16.363650px;}
.ws5{word-spacing:-0.065455px;}
.ws9{word-spacing:-0.053798px;}
.wsc{word-spacing:-0.004574px;}
.wsb{word-spacing:-0.002370px;}
.wse{word-spacing:-0.002040px;}
.ws4{word-spacing:-0.001247px;}
.ws3{word-spacing:-0.000643px;}
.ws6{word-spacing:-0.000078px;}
.ws0{word-spacing:0.000000px;}
.wsd{word-spacing:0.000613px;}
.ws2{word-spacing:0.001568px;}
.wsf{word-spacing:0.002465px;}
.ws7{word-spacing:16.291937px;}
.ws1{word-spacing:30.557363px;}
.wsa{word-spacing:684.390497px;}
._3{margin-left:-5.236368px;}
._d{margin-left:-2.945457px;}
._0{margin-left:-1.721544px;}
._4{width:1.440001px;}
._7{width:2.848312px;}
._5{width:4.658908px;}
._6{width:7.094247px;}
._1{width:8.181825px;}
._f{width:13.533230px;}
._c{width:19.112743px;}
._2{width:27.294568px;}
._9{width:81.379042px;}
._b{width:527.481082px;}
._e{width:615.968443px;}
._8{width:641.078688px;}
._a{width:785.196218px;}
.fc6{color:rgb(232,103,88);}
.fc5{color:rgb(224,45,48);}
.fc3{color:transparent;}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(82,86,109);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:35.865600px;}
.fs5{font-size:42.351660px;}
.fs2{font-size:47.820600px;}
.fs3{font-size:52.942140px;}
.fs6{font-size:53.798400px;}
.fs7{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.ya{bottom:3.873000px;}
.yd{bottom:16.317131px;}
.y8{bottom:18.151500px;}
.y9{bottom:20.397402px;}
.y5f{bottom:24.399000px;}
.y1b{bottom:25.428000px;}
.y1e{bottom:25.753500px;}
.y41{bottom:26.055000px;}
.y21{bottom:26.850000px;}
.y50{bottom:32.859000px;}
.y25{bottom:37.273500px;}
.y44{bottom:39.766500px;}
.y1a{bottom:45.751500px;}
.y1d{bottom:46.077000px;}
.y20{bottom:47.173500px;}
.y40{bottom:50.862000px;}
.y32{bottom:51.694500px;}
.y5e{bottom:56.889000px;}
.y4f{bottom:57.666000px;}
.y24{bottom:62.080500px;}
.y43{bottom:64.573500px;}
.y31{bottom:68.131500px;}
.y5d{bottom:71.086500px;}
.y3f{bottom:75.669000px;}
.y4e{bottom:80.994000px;}
.y30{bottom:84.570000px;}
.y5c{bottom:85.282500px;}
.y42{bottom:89.301000px;}
.y3e{bottom:98.841000px;}
.y2f{bottom:105.492000px;}
.y5b{bottom:107.544000px;}
.y4d{bottom:119.062500px;}
.y7{bottom:120.576000px;}
.y5a{bottom:121.740000px;}
.y2e{bottom:125.815500px;}
.y59{bottom:135.937500px;}
.y6{bottom:140.901000px;}
.y4c{bottom:143.869500px;}
.y2d{bottom:149.143500px;}
.y58{bottom:157.068000px;}
.y1f{bottom:161.062500px;}
.y5{bottom:161.224500px;}
.y1c{bottom:162.159000px;}
.y19{bottom:162.484500px;}
.y4b{bottom:168.676500px;}
.y57{bottom:171.264000px;}
.y56{bottom:185.461500px;}
.y4a{bottom:193.788000px;}
.y2c{bottom:195.946500px;}
.y4{bottom:200.649000px;}
.yf{bottom:205.792500px;}
.y2b{bottom:216.271500px;}
.y2a{bottom:218.896500px;}
.y55{bottom:225.838500px;}
.ye{bottom:230.520000px;}
.y49{bottom:232.716000px;}
.y3{bottom:234.585000px;}
.y29{bottom:241.078500px;}
.y54{bottom:252.738000px;}
.y48{bottom:257.523000px;}
.y28{bottom:264.027000px;}
.yc{bottom:264.985500px;}
.y47{bottom:277.846500px;}
.y53{bottom:279.636000px;}
.y27{bottom:286.209000px;}
.y2{bottom:298.197000px;}
.y46{bottom:302.653500px;}
.y52{bottom:306.535500px;}
.y26{bottom:309.157500px;}
.y1{bottom:323.899500px;}
.y51{bottom:324.468000px;}
.y45{bottom:327.462000px;}
.yb{bottom:362.751000px;}
.y12{bottom:3025.466685px;}
.y15{bottom:3025.792185px;}
.y3d{bottom:3026.093685px;}
.y36{bottom:3026.095185px;}
.y18{bottom:3026.888685px;}
.y23{bottom:3037.312185px;}
.y39{bottom:3039.805185px;}
.y11{bottom:3045.790185px;}
.y14{bottom:3046.115685px;}
.y17{bottom:3047.212185px;}
.y3c{bottom:3050.900685px;}
.y35{bottom:3050.902185px;}
.y22{bottom:3062.119185px;}
.y38{bottom:3064.612185px;}
.y3b{bottom:3075.707685px;}
.y34{bottom:3075.709185px;}
.y37{bottom:3089.339685px;}
.y3a{bottom:3098.879685px;}
.y33{bottom:3098.881185px;}
.y16{bottom:3161.101185px;}
.y13{bottom:3162.197685px;}
.y10{bottom:3162.523185px;}
.h7{height:25.392845px;}
.h9{height:28.206206px;}
.h11{height:33.856985px;}
.h4{height:34.765576px;}
.h6{height:35.259465px;}
.ha{height:35.841857px;}
.he{height:39.111437px;}
.h10{height:42.321125px;}
.hd{height:45.687311px;}
.h3{height:46.341857px;}
.hb{height:47.585494px;}
.h2{height:60.942658px;}
.hc{height:62.181870px;}
.hf{height:62.578124px;}
.h8{height:72.840146px;}
.h5{height:91.054594px;}
.h1{height:382.500000px;}
.h0{height:382.677000px;}
.w3{width:333.363113px;}
.w2{width:416.724081px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.xb{left:18.136500px;}
.x1f{left:28.347000px;}
.x13{left:36.141000px;}
.xe{left:42.519000px;}
.x18{left:57.912000px;}
.x20{left:61.074000px;}
.x23{left:71.623500px;}
.x17{left:75.247500px;}
.x1{left:93.073500px;}
.xd{left:96.786303px;}
.x9{left:120.988740px;}
.x8{left:131.812500px;}
.xa{left:136.401000px;}
.xf{left:141.831000px;}
.x4{left:168.259500px;}
.xc{left:173.481000px;}
.x7{left:223.501500px;}
.x6{left:241.632000px;}
.x2{left:246.985500px;}
.x14{left:250.866000px;}
.x3{left:278.695500px;}
.x5{left:281.011500px;}
.x21{left:413.862000px;}
.x19{left:431.641500px;}
.x22{left:446.589000px;}
.x1a{left:451.992000px;}
.x15{left:465.591000px;}
.x1b{left:3028.385685px;}
.x10{left:3036.179685px;}
.x1c{left:3061.112685px;}
.x16{left:3075.286185px;}
.x11{left:3250.904685px;}
.x1d{left:3413.900685px;}
.x1e{left:3446.627685px;}
.x12{left:3465.629685px;}
@media print{
.v1{vertical-align:-9.333333pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:14.543989pt;}
.ls3{letter-spacing:14.545467pt;}
.ls1{letter-spacing:46.812885pt;}
.ws8{word-spacing:-14.545467pt;}
.ws5{word-spacing:-0.058182pt;}
.ws9{word-spacing:-0.047821pt;}
.wsc{word-spacing:-0.004066pt;}
.wsb{word-spacing:-0.002107pt;}
.wse{word-spacing:-0.001813pt;}
.ws4{word-spacing:-0.001109pt;}
.ws3{word-spacing:-0.000572pt;}
.ws6{word-spacing:-0.000069pt;}
.ws0{word-spacing:0.000000pt;}
.wsd{word-spacing:0.000545pt;}
.ws2{word-spacing:0.001394pt;}
.wsf{word-spacing:0.002191pt;}
.ws7{word-spacing:14.481722pt;}
.ws1{word-spacing:27.162101pt;}
.wsa{word-spacing:608.347109pt;}
._3{margin-left:-4.654549pt;}
._d{margin-left:-2.618184pt;}
._0{margin-left:-1.530261pt;}
._4{width:1.280001pt;}
._7{width:2.531833pt;}
._5{width:4.141252pt;}
._6{width:6.305997pt;}
._1{width:7.272733pt;}
._f{width:12.029538pt;}
._c{width:16.989105pt;}
._2{width:24.261838pt;}
._9{width:72.336926pt;}
._b{width:468.872073pt;}
._e{width:547.527505pt;}
._8{width:569.847723pt;}
._a{width:697.952194pt;}
.fs4{font-size:31.880533pt;}
.fs5{font-size:37.645920pt;}
.fs2{font-size:42.507200pt;}
.fs3{font-size:47.059680pt;}
.fs6{font-size:47.820800pt;}
.fs7{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:3.442667pt;}
.yd{bottom:14.504117pt;}
.y8{bottom:16.134667pt;}
.y9{bottom:18.131024pt;}
.y5f{bottom:21.688000pt;}
.y1b{bottom:22.602667pt;}
.y1e{bottom:22.892000pt;}
.y41{bottom:23.160000pt;}
.y21{bottom:23.866667pt;}
.y50{bottom:29.208000pt;}
.y25{bottom:33.132000pt;}
.y44{bottom:35.348000pt;}
.y1a{bottom:40.668000pt;}
.y1d{bottom:40.957333pt;}
.y20{bottom:41.932000pt;}
.y40{bottom:45.210667pt;}
.y32{bottom:45.950667pt;}
.y5e{bottom:50.568000pt;}
.y4f{bottom:51.258667pt;}
.y24{bottom:55.182667pt;}
.y43{bottom:57.398667pt;}
.y31{bottom:60.561333pt;}
.y5d{bottom:63.188000pt;}
.y3f{bottom:67.261333pt;}
.y4e{bottom:71.994667pt;}
.y30{bottom:75.173333pt;}
.y5c{bottom:75.806667pt;}
.y42{bottom:79.378667pt;}
.y3e{bottom:87.858667pt;}
.y2f{bottom:93.770667pt;}
.y5b{bottom:95.594667pt;}
.y4d{bottom:105.833333pt;}
.y7{bottom:107.178667pt;}
.y5a{bottom:108.213333pt;}
.y2e{bottom:111.836000pt;}
.y59{bottom:120.833333pt;}
.y6{bottom:125.245333pt;}
.y4c{bottom:127.884000pt;}
.y2d{bottom:132.572000pt;}
.y58{bottom:139.616000pt;}
.y1f{bottom:143.166667pt;}
.y5{bottom:143.310667pt;}
.y1c{bottom:144.141333pt;}
.y19{bottom:144.430667pt;}
.y4b{bottom:149.934667pt;}
.y57{bottom:152.234667pt;}
.y56{bottom:164.854667pt;}
.y4a{bottom:172.256000pt;}
.y2c{bottom:174.174667pt;}
.y4{bottom:178.354667pt;}
.yf{bottom:182.926667pt;}
.y2b{bottom:192.241333pt;}
.y2a{bottom:194.574667pt;}
.y55{bottom:200.745333pt;}
.ye{bottom:204.906667pt;}
.y49{bottom:206.858667pt;}
.y3{bottom:208.520000pt;}
.y29{bottom:214.292000pt;}
.y54{bottom:224.656000pt;}
.y48{bottom:228.909333pt;}
.y28{bottom:234.690667pt;}
.yc{bottom:235.542667pt;}
.y47{bottom:246.974667pt;}
.y53{bottom:248.565333pt;}
.y27{bottom:254.408000pt;}
.y2{bottom:265.064000pt;}
.y46{bottom:269.025333pt;}
.y52{bottom:272.476000pt;}
.y26{bottom:274.806667pt;}
.y1{bottom:287.910667pt;}
.y51{bottom:288.416000pt;}
.y45{bottom:291.077333pt;}
.yb{bottom:322.445333pt;}
.y12{bottom:2689.303720pt;}
.y15{bottom:2689.593053pt;}
.y3d{bottom:2689.861053pt;}
.y36{bottom:2689.862387pt;}
.y18{bottom:2690.567720pt;}
.y23{bottom:2699.833053pt;}
.y39{bottom:2702.049053pt;}
.y11{bottom:2707.369053pt;}
.y14{bottom:2707.658387pt;}
.y17{bottom:2708.633053pt;}
.y3c{bottom:2711.911720pt;}
.y35{bottom:2711.913053pt;}
.y22{bottom:2721.883720pt;}
.y38{bottom:2724.099720pt;}
.y3b{bottom:2733.962387pt;}
.y34{bottom:2733.963720pt;}
.y37{bottom:2746.079720pt;}
.y3a{bottom:2754.559720pt;}
.y33{bottom:2754.561053pt;}
.y16{bottom:2809.867720pt;}
.y13{bottom:2810.842387pt;}
.y10{bottom:2811.131720pt;}
.h7{height:22.571418pt;}
.h9{height:25.072183pt;}
.h11{height:30.095098pt;}
.h4{height:30.902734pt;}
.h6{height:31.341747pt;}
.ha{height:31.859428pt;}
.he{height:34.765722pt;}
.h10{height:37.618778pt;}
.hd{height:40.610943pt;}
.h3{height:41.192762pt;}
.hb{height:42.298217pt;}
.h2{height:54.171251pt;}
.hc{height:55.272773pt;}
.hf{height:55.624999pt;}
.h8{height:64.746796pt;}
.h5{height:80.937417pt;}
.h1{height:340.000000pt;}
.h0{height:340.157333pt;}
.w3{width:296.322767pt;}
.w2{width:370.421406pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.xb{left:16.121333pt;}
.x1f{left:25.197333pt;}
.x13{left:32.125333pt;}
.xe{left:37.794667pt;}
.x18{left:51.477333pt;}
.x20{left:54.288000pt;}
.x23{left:63.665333pt;}
.x17{left:66.886667pt;}
.x1{left:82.732000pt;}
.xd{left:86.032269pt;}
.x9{left:107.545547pt;}
.x8{left:117.166667pt;}
.xa{left:121.245333pt;}
.xf{left:126.072000pt;}
.x4{left:149.564000pt;}
.xc{left:154.205333pt;}
.x7{left:198.668000pt;}
.x6{left:214.784000pt;}
.x2{left:219.542667pt;}
.x14{left:222.992000pt;}
.x3{left:247.729333pt;}
.x5{left:249.788000pt;}
.x21{left:367.877333pt;}
.x19{left:383.681333pt;}
.x22{left:396.968000pt;}
.x1a{left:401.770667pt;}
.x15{left:413.858667pt;}
.x1b{left:2691.898387pt;}
.x10{left:2698.826387pt;}
.x1c{left:2720.989053pt;}
.x16{left:2733.587720pt;}
.x11{left:2889.693053pt;}
.x1d{left:3034.578387pt;}
.x1e{left:3063.669053pt;}
.x12{left:3080.559720pt;}
}




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