
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
.ff4{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3fa688b10b7a66c3d268e02f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.771973;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_651446e9bdc3b531b932e298.woff')format("woff");}.ff6{font-family:ff6;line-height:0.973145;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_0dfa8bb1b8cb8ebdc54907e8.woff')format("woff");}.ff7{font-family:ff7;line-height:0.973145;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_2485c2d3aa699eb25fc93924.woff')format("woff");}.ff8{font-family:ff8;line-height:0.972656;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_06aa6077bd4fd8e5dbef3fde.woff')format("woff");}.ff9{font-family:ff9;line-height:0.972656;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_26b9892427ab0d29011c6430.woff')format("woff");}.ffa{font-family:ffa;line-height:0.904785;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:ffb;src:url('chunks/assets/font_8fbf86a5f9d664f1754e0107.woff')format("woff");}.ffb{font-family:ffb;line-height:0.712000;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:ffc;src:url('chunks/assets/font_12db86b94869eb5ea4dac150.woff')format("woff");}.ffc{font-family:ffc;line-height:0.748000;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:ffd;src:url('chunks/assets/font_43168d738308817497a0e42f.woff')format("woff");}.ffd{font-family:ffd;line-height:0.772461;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:ffe;src:url('chunks/assets/font_34f3ea47240df28434bf2e39.woff')format("woff");}.ffe{font-family:ffe;line-height:1.128906;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:fff;src:url('chunks/assets/font_ac52b6c9a44fd16e3e49f2a8.woff')format("woff");}.fff{font-family:fff;line-height:0.973145;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:ff10;src:url('chunks/assets/font_12cf90aefa38113ea8653065.woff')format("woff");}.ff10{font-family:ff10;line-height:0.928711;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:ff11;src:url('chunks/assets/font_05c2fb7bb5bec1d1bbd12f26.woff')format("woff");}.ff11{font-family:ff11;line-height:0.973145;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;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:56.355163px;}
.ls2{letter-spacing:57.339538px;}
.ls1{letter-spacing:60.855162px;}
.ls4{letter-spacing:91.581746px;}
.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;}
}
.ws2{word-spacing:-18.452636px;}
.ws7{word-spacing:-13.013999px;}
.ws1{word-spacing:-11.992499px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:336.548869px;}
.ws4{word-spacing:337.562610px;}
.ws3{word-spacing:341.066910px;}
.ws6{word-spacing:371.864252px;}
._3{margin-left:-4.716182px;}
._1{margin-left:-3.115597px;}
._0{margin-left:-1.406250px;}
._2{width:2.249989px;}
.fc7{color:rgb(187,68,68);}
.fc5{color:rgb(33,37,41);}
.fc4{color:transparent;}
.fc8{color:rgb(51,51,51);}
.fc6{color:rgb(171,171,171);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(102,102,102);}
.fc1{color:rgb(37,37,37);}
.fc0{color:rgb(0,133,0);}
.fs5{font-size:47.969997px;}
.fs6{font-size:53.999998px;}
.fs3{font-size:62.999997px;}
.fs4{font-size:67.499997px;}
.fs0{font-size:71.999997px;}
.fs2{font-size:76.499997px;}
.fs9{font-size:80.999997px;}
.fs8{font-size:98.999996px;}
.fs7{font-size:125.999995px;}
.fs1{font-size:134.999994px;}
.y0{bottom:0.000000px;}
.y1f{bottom:3.375000px;}
.y20{bottom:23.805073px;}
.y1d{bottom:31.218767px;}
.y4{bottom:39.093766px;}
.y1{bottom:43.211305px;}
.y1c{bottom:62.718765px;}
.y3{bottom:75.093765px;}
.y5c{bottom:82.968765px;}
.y1b{bottom:94.218764px;}
.y5b{bottom:106.593764px;}
.y2{bottom:111.093763px;}
.y1a{bottom:125.718763px;}
.y5a{bottom:130.218763px;}
.y59{bottom:154.968762px;}
.y19{bottom:177.468761px;}
.y18{bottom:208.968759px;}
.y17{bottom:240.468758px;}
.y16{bottom:292.218756px;}
.y48{bottom:302.343755px;}
.y15{bottom:323.718755px;}
.y14{bottom:355.218753px;}
.y47{bottom:360.843753px;}
.y13{bottom:386.718752px;}
.y46{bottom:392.343752px;}
.y45{bottom:423.843750px;}
.y12{bottom:438.468750px;}
.y44{bottom:455.343749px;}
.y11{bottom:469.968748px;}
.y43{bottom:486.843748px;}
.y10{bottom:501.468747px;}
.y4f{bottom:511.593747px;}
.y42{bottom:518.343746px;}
.yf{bottom:532.968746px;}
.ye{bottom:564.468744px;}
.y41{bottom:570.093744px;}
.yd{bottom:595.968743px;}
.y40{bottom:601.593743px;}
.y58{bottom:606.093743px;}
.y57{bottom:631.968742px;}
.y3f{bottom:633.093742px;}
.yc{bottom:647.718741px;}
.y3e{bottom:664.593740px;}
.y56{bottom:665.718740px;}
.yb{bottom:679.218740px;}
.y3d{bottom:696.093739px;}
.y55{bottom:700.593739px;}
.ya{bottom:710.718738px;}
.y54{bottom:725.343738px;}
.y3c{bottom:727.593738px;}
.y9{bottom:742.218737px;}
.y53{bottom:760.218736px;}
.y3b{bottom:779.343736px;}
.y52{bottom:793.968735px;}
.y8{bottom:808.593734px;}
.y3a{bottom:810.843734px;}
.y51{bottom:819.843734px;}
.y39{bottom:842.343733px;}
.y50{bottom:853.593732px;}
.y38{bottom:873.843732px;}
.y37{bottom:905.343730px;}
.y36{bottom:957.093728px;}
.y35{bottom:988.593727px;}
.y34{bottom:1020.093725px;}
.y33{bottom:1051.593724px;}
.y32{bottom:1083.093723px;}
.y31{bottom:1114.593722px;}
.y30{bottom:1146.093720px;}
.y2f{bottom:1197.843718px;}
.y2e{bottom:1229.343717px;}
.y2d{bottom:1260.843715px;}
.y2c{bottom:1292.343714px;}
.y2b{bottom:1323.843713px;}
.y2a{bottom:1375.593711px;}
.y29{bottom:1407.093709px;}
.y28{bottom:1438.593708px;}
.y27{bottom:1470.093707px;}
.y7{bottom:1476.843706px;}
.y4e{bottom:1493.718706px;}
.y26{bottom:1501.593705px;}
.y6{bottom:1527.468704px;}
.y25{bottom:1533.093704px;}
.y4d{bottom:1539.843704px;}
.y5{bottom:1566.843703px;}
.y4c{bottom:1570.218703px;}
.y24{bottom:1584.843702px;}
.y4b{bottom:1600.593701px;}
.y23{bottom:1616.343701px;}
.y4a{bottom:1630.968700px;}
.y22{bottom:1647.843699px;}
.y49{bottom:1670.343698px;}
.y21{bottom:1679.343698px;}
.y1e{bottom:1749.555002px;}
.h8{height:14.624999px;}
.h9{height:32.955950px;}
.ha{height:39.473998px;}
.h6{height:47.649900px;}
.h7{height:51.020506px;}
.hd{height:54.457029px;}
.h5{height:57.860593px;}
.hf{height:61.264158px;}
.hc{height:61.567380px;}
.h3{height:68.399997px;}
.he{height:90.298824px;}
.hb{height:95.238277px;}
.h4{height:102.041011px;}
.h2{height:1701.843697px;}
.h1{height:1786.500000px;}
.h0{height:1786.680000px;}
.w6{width:59.624998px;}
.w3{width:132.749994px;}
.w4{width:1129.499953px;}
.w2{width:1178.841731px;}
.w5{width:1202.624950px;}
.w0{width:1262.879970px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x10{left:8.841802px;}
.x2{left:22.324218px;}
.x5{left:31.623046px;}
.x3{left:32.695311px;}
.x6{left:35.411131px;}
.x1{left:41.624998px;}
.x7{left:44.991209px;}
.x4{left:47.496092px;}
.x8{left:53.393552px;}
.x16{left:57.322263px;}
.x15{left:59.501951px;}
.x9{left:63.325193px;}
.x17{left:75.374997px;}
.xd{left:132.749994px;}
.x18{left:164.039056px;}
.x11{left:202.869138px;}
.xb{left:285.908197px;}
.xa{left:306.175768px;}
.x14{left:418.394514px;}
.x12{left:420.363264px;}
.xc{left:429.468732px;}
.x13{left:431.384753px;}
.xe{left:455.871075px;}
.x19{left:613.494121px;}
.x1b{left:627.169901px;}
.x1a{left:635.290995px;}
.x1c{left:793.757779px;}
.xf{left:1202.624950px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:50.093478pt;}
.ls2{letter-spacing:50.968478pt;}
.ls1{letter-spacing:54.093478pt;}
.ls4{letter-spacing:81.405997pt;}
.ws2{word-spacing:-16.402343pt;}
.ws7{word-spacing:-11.568000pt;}
.ws1{word-spacing:-10.659999pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:299.154550pt;}
.ws4{word-spacing:300.055653pt;}
.ws3{word-spacing:303.170587pt;}
.ws6{word-spacing:330.546002pt;}
._3{margin-left:-4.192161pt;}
._1{margin-left:-2.769419pt;}
._0{margin-left:-1.250000pt;}
._2{width:1.999990pt;}
.fs5{font-size:42.639997pt;}
.fs6{font-size:47.999998pt;}
.fs3{font-size:55.999998pt;}
.fs4{font-size:59.999998pt;}
.fs0{font-size:63.999997pt;}
.fs2{font-size:67.999997pt;}
.fs9{font-size:71.999997pt;}
.fs8{font-size:87.999996pt;}
.fs7{font-size:111.999995pt;}
.fs1{font-size:119.999995pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:3.000000pt;}
.y20{bottom:21.160065pt;}
.y1d{bottom:27.750015pt;}
.y4{bottom:34.750015pt;}
.y1{bottom:38.410049pt;}
.y1c{bottom:55.750014pt;}
.y3{bottom:66.750013pt;}
.y5c{bottom:73.750013pt;}
.y1b{bottom:83.750013pt;}
.y5b{bottom:94.750012pt;}
.y2{bottom:98.750012pt;}
.y1a{bottom:111.750011pt;}
.y5a{bottom:115.750011pt;}
.y59{bottom:137.750010pt;}
.y19{bottom:157.750009pt;}
.y18{bottom:185.750008pt;}
.y17{bottom:213.750007pt;}
.y16{bottom:259.750005pt;}
.y48{bottom:268.750005pt;}
.y15{bottom:287.750004pt;}
.y14{bottom:315.750003pt;}
.y47{bottom:320.750003pt;}
.y13{bottom:343.750002pt;}
.y46{bottom:348.750001pt;}
.y45{bottom:376.750000pt;}
.y12{bottom:389.750000pt;}
.y44{bottom:404.749999pt;}
.y11{bottom:417.749999pt;}
.y43{bottom:432.749998pt;}
.y10{bottom:445.749997pt;}
.y4f{bottom:454.749997pt;}
.y42{bottom:460.749997pt;}
.yf{bottom:473.749996pt;}
.ye{bottom:501.749995pt;}
.y41{bottom:506.749995pt;}
.yd{bottom:529.749994pt;}
.y40{bottom:534.749994pt;}
.y58{bottom:538.749994pt;}
.y57{bottom:561.749993pt;}
.y3f{bottom:562.749993pt;}
.yc{bottom:575.749992pt;}
.y3e{bottom:590.749991pt;}
.y56{bottom:591.749991pt;}
.yb{bottom:603.749991pt;}
.y3d{bottom:618.749990pt;}
.y55{bottom:622.749990pt;}
.ya{bottom:631.749990pt;}
.y54{bottom:644.749989pt;}
.y3c{bottom:646.749989pt;}
.y9{bottom:659.749989pt;}
.y53{bottom:675.749988pt;}
.y3b{bottom:692.749987pt;}
.y52{bottom:705.749987pt;}
.y8{bottom:718.749986pt;}
.y3a{bottom:720.749986pt;}
.y51{bottom:728.749986pt;}
.y39{bottom:748.749985pt;}
.y50{bottom:758.749984pt;}
.y38{bottom:776.749984pt;}
.y37{bottom:804.749982pt;}
.y36{bottom:850.749981pt;}
.y35{bottom:878.749979pt;}
.y34{bottom:906.749978pt;}
.y33{bottom:934.749977pt;}
.y32{bottom:962.749976pt;}
.y31{bottom:990.749975pt;}
.y30{bottom:1018.749974pt;}
.y2f{bottom:1064.749972pt;}
.y2e{bottom:1092.749970pt;}
.y2d{bottom:1120.749969pt;}
.y2c{bottom:1148.749968pt;}
.y2b{bottom:1176.749967pt;}
.y2a{bottom:1222.749965pt;}
.y29{bottom:1250.749964pt;}
.y28{bottom:1278.749963pt;}
.y27{bottom:1306.749962pt;}
.y7{bottom:1312.749961pt;}
.y4e{bottom:1327.749961pt;}
.y26{bottom:1334.749960pt;}
.y6{bottom:1357.749959pt;}
.y25{bottom:1362.749959pt;}
.y4d{bottom:1368.749959pt;}
.y5{bottom:1392.749958pt;}
.y4c{bottom:1395.749958pt;}
.y24{bottom:1408.749957pt;}
.y4b{bottom:1422.749957pt;}
.y23{bottom:1436.749956pt;}
.y4a{bottom:1449.749956pt;}
.y22{bottom:1464.749955pt;}
.y49{bottom:1484.749954pt;}
.y21{bottom:1492.749954pt;}
.y1e{bottom:1555.160001pt;}
.h8{height:12.999999pt;}
.h9{height:29.294178pt;}
.ha{height:35.087999pt;}
.h6{height:42.355467pt;}
.h7{height:45.351561pt;}
.hd{height:48.406248pt;}
.h5{height:51.431638pt;}
.hf{height:54.457029pt;}
.hc{height:54.726560pt;}
.h3{height:60.799997pt;}
.he{height:80.265622pt;}
.hb{height:84.656246pt;}
.h4{height:90.703121pt;}
.h2{height:1512.749953pt;}
.h1{height:1588.000000pt;}
.h0{height:1588.160000pt;}
.w6{width:52.999998pt;}
.w3{width:117.999995pt;}
.w4{width:1003.999958pt;}
.w2{width:1047.859316pt;}
.w5{width:1068.999955pt;}
.w0{width:1122.559973pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x10{left:7.859380pt;}
.x2{left:19.843749pt;}
.x5{left:28.109374pt;}
.x3{left:29.062499pt;}
.x6{left:31.476561pt;}
.x1{left:36.999998pt;}
.x7{left:39.992186pt;}
.x4{left:42.218748pt;}
.x8{left:47.460936pt;}
.x16{left:50.953123pt;}
.x15{left:52.890623pt;}
.x9{left:56.289060pt;}
.x17{left:66.999997pt;}
.xd{left:117.999995pt;}
.x18{left:145.812494pt;}
.x11{left:180.328122pt;}
.xb{left:254.140619pt;}
.xa{left:272.156239pt;}
.x14{left:371.906235pt;}
.x12{left:373.656234pt;}
.xc{left:381.749984pt;}
.x13{left:383.453114pt;}
.xe{left:405.218733pt;}
.x19{left:545.328107pt;}
.x1b{left:557.484357pt;}
.x1a{left:564.703106pt;}
.x1c{left:705.562471pt;}
.xf{left:1068.999955pt;}
}




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