
    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_f5ba86f4551b6d575f2b88db.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.781738;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_5a22eb5afcb9996911652cc3.woff2')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_bf7c9bffdf1d20f094e1465b.woff2')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_17e2020c34e3f734184e1b9f.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f4433d732bc4adee9df05f93.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d8443c7d3f2851d3e7cd6afe.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.764648;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_2bd469353ebdb868892c85a3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.750000;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_46a780e437993fd05c22915b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.770020;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_d8d79afa1a3e24a8f7610b9b.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_1413779f7fb0f9f1a4d15427.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_8d5046374300ac53a226d3b8.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_1ddde250e48d7d34702883ea.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_65aa56520049c6836f1e45c0.woff2')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;}
.ls1{letter-spacing:0.039551px;}
.ls4{letter-spacing:56.355163px;}
.ls3{letter-spacing:57.339538px;}
.ls2{letter-spacing:60.855162px;}
.ls5{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;}
}
.ws6{word-spacing:-13.013999px;}
.ws1{word-spacing:-11.992499px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:336.548869px;}
.ws3{word-spacing:337.562610px;}
.ws2{word-spacing:341.066910px;}
.ws5{word-spacing:371.864252px;}
._5{margin-left:-16.268539px;}
._4{margin-left:-4.716182px;}
._1{margin-left:-3.115597px;}
._0{margin-left:-1.406250px;}
._3{width:2.249989px;}
._2{width:24.741208px;}
.fc8{color:rgb(187,68,68);}
.fc6{color:rgb(33,37,41);}
.fc5{color:rgb(0,123,255);}
.fc4{color:transparent;}
.fc7{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;}
.fs8{font-size:53.999998px;}
.fs7{font-size:57.374998px;}
.fs3{font-size:62.999997px;}
.fs4{font-size:67.499997px;}
.fs0{font-size:71.999997px;}
.fs2{font-size:76.499997px;}
.fs6{font-size:98.999996px;}
.fs9{font-size:125.999995px;}
.fs1{font-size:134.999994px;}
.y0{bottom:0.000000px;}
.y1d{bottom:3.375000px;}
.y1e{bottom:23.805073px;}
.y4{bottom:39.093766px;}
.y1{bottom:43.211305px;}
.y3{bottom:75.093765px;}
.y4b{bottom:89.718764px;}
.y2{bottom:111.093763px;}
.y1b{bottom:118.968763px;}
.y1a{bottom:150.468762px;}
.y4a{bottom:162.843761px;}
.y19{bottom:181.968760px;}
.y49{bottom:194.343760px;}
.y18{bottom:213.468759px;}
.y48{bottom:225.843759px;}
.y17{bottom:244.968758px;}
.y47{bottom:257.343757px;}
.y16{bottom:276.468756px;}
.y46{bottom:309.093755px;}
.y15{bottom:328.218754px;}
.y45{bottom:340.593754px;}
.y14{bottom:359.718753px;}
.y44{bottom:372.093752px;}
.y13{bottom:391.218752px;}
.y43{bottom:403.593751px;}
.y12{bottom:422.718750px;}
.y42{bottom:435.093750px;}
.y11{bottom:454.218749px;}
.y41{bottom:466.593749px;}
.y10{bottom:505.968747px;}
.y40{bottom:518.343746px;}
.yf{bottom:537.468746px;}
.y3f{bottom:549.843745px;}
.y62{bottom:555.468745px;}
.ye{bottom:568.968744px;}
.y3e{bottom:581.343744px;}
.y61{bottom:590.343743px;}
.yd{bottom:600.468743px;}
.y3d{bottom:612.843742px;}
.y60{bottom:615.093742px;}
.yc{bottom:631.968742px;}
.y3c{bottom:644.343741px;}
.y5f{bottom:649.968741px;}
.y5e{bottom:674.718740px;}
.yb{bottom:683.718740px;}
.y3b{bottom:696.093739px;}
.y5d{bottom:709.593738px;}
.ya{bottom:715.218738px;}
.y3a{bottom:727.593738px;}
.y5c{bottom:734.343737px;}
.y39{bottom:759.093736px;}
.y5b{bottom:769.218736px;}
.y9{bottom:781.593735px;}
.y38{bottom:790.593735px;}
.y5a{bottom:793.968735px;}
.y8{bottom:808.593734px;}
.y37{bottom:822.093734px;}
.y59{bottom:828.843733px;}
.y36{bottom:853.593732px;}
.y35{bottom:905.343730px;}
.y34{bottom:936.843729px;}
.y33{bottom:968.343728px;}
.y4c{bottom:975.093727px;}
.y32{bottom:1020.093725px;}
.y31{bottom:1051.593724px;}
.y30{bottom:1083.093723px;}
.y2f{bottom:1134.843721px;}
.y58{bottom:1144.968720px;}
.y2e{bottom:1166.343719px;}
.y57{bottom:1191.093718px;}
.y2d{bottom:1197.843718px;}
.y56{bottom:1221.468717px;}
.y2c{bottom:1229.343717px;}
.y55{bottom:1251.843716px;}
.y2b{bottom:1260.843715px;}
.y54{bottom:1282.218715px;}
.y2a{bottom:1292.343714px;}
.y53{bottom:1321.593713px;}
.y29{bottom:1323.843713px;}
.y28{bottom:1355.343712px;}
.y52{bottom:1400.343710px;}
.y27{bottom:1407.093709px;}
.y26{bottom:1438.593708px;}
.y50{bottom:1458.843707px;}
.y25{bottom:1470.093707px;}
.y7{bottom:1476.843706px;}
.y4f{bottom:1490.343706px;}
.y24{bottom:1501.593705px;}
.y4e{bottom:1521.843705px;}
.y6{bottom:1527.468704px;}
.y23{bottom:1533.093704px;}
.y4d{bottom:1553.343703px;}
.y5{bottom:1566.843703px;}
.y22{bottom:1584.843702px;}
.y21{bottom:1616.343701px;}
.y20{bottom:1647.843699px;}
.y1f{bottom:1679.343698px;}
.y51{bottom:1686.093698px;}
.y1c{bottom:1749.555002px;}
.h8{height:14.624999px;}
.h9{height:32.955950px;}
.hc{height:39.473998px;}
.hb{height:43.031248px;}
.h6{height:47.649900px;}
.h7{height:51.053465px;}
.he{height:54.457029px;}
.h5{height:57.860593px;}
.h3{height:68.399997px;}
.ha{height:74.249997px;}
.hd{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;}
.x12{left:54.544920px;}
.x18{left:57.322263px;}
.x16{left:59.501951px;}
.x9{left:63.325193px;}
.x17{left:75.374997px;}
.xd{left:132.749994px;}
.x13{left:202.869138px;}
.xa{left:345.708976px;}
.xb{left:370.318350px;}
.x14{left:420.363264px;}
.x15{left:431.384753px;}
.xc{left:433.406232px;}
.xe{left:469.388658px;}
.x11{left:604.845684px;}
.xf{left:1202.624950px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.035156pt;}
.ls4{letter-spacing:50.093478pt;}
.ls3{letter-spacing:50.968478pt;}
.ls2{letter-spacing:54.093478pt;}
.ls5{letter-spacing:81.405997pt;}
.ws6{word-spacing:-11.568000pt;}
.ws1{word-spacing:-10.659999pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:299.154550pt;}
.ws3{word-spacing:300.055653pt;}
.ws2{word-spacing:303.170587pt;}
.ws5{word-spacing:330.546002pt;}
._5{margin-left:-14.460924pt;}
._4{margin-left:-4.192161pt;}
._1{margin-left:-2.769419pt;}
._0{margin-left:-1.250000pt;}
._3{width:1.999990pt;}
._2{width:21.992185pt;}
.fs5{font-size:42.639997pt;}
.fs8{font-size:47.999998pt;}
.fs7{font-size:50.999998pt;}
.fs3{font-size:55.999998pt;}
.fs4{font-size:59.999998pt;}
.fs0{font-size:63.999997pt;}
.fs2{font-size:67.999997pt;}
.fs6{font-size:87.999996pt;}
.fs9{font-size:111.999995pt;}
.fs1{font-size:119.999995pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:3.000000pt;}
.y1e{bottom:21.160065pt;}
.y4{bottom:34.750015pt;}
.y1{bottom:38.410049pt;}
.y3{bottom:66.750013pt;}
.y4b{bottom:79.750013pt;}
.y2{bottom:98.750012pt;}
.y1b{bottom:105.750012pt;}
.y1a{bottom:133.750010pt;}
.y4a{bottom:144.750010pt;}
.y19{bottom:161.750009pt;}
.y49{bottom:172.750009pt;}
.y18{bottom:189.750008pt;}
.y48{bottom:200.750008pt;}
.y17{bottom:217.750007pt;}
.y47{bottom:228.750006pt;}
.y16{bottom:245.750006pt;}
.y46{bottom:274.750005pt;}
.y15{bottom:291.750004pt;}
.y45{bottom:302.750003pt;}
.y14{bottom:319.750003pt;}
.y44{bottom:330.750002pt;}
.y13{bottom:347.750002pt;}
.y43{bottom:358.750001pt;}
.y12{bottom:375.750000pt;}
.y42{bottom:386.750000pt;}
.y11{bottom:403.749999pt;}
.y41{bottom:414.749999pt;}
.y10{bottom:449.749997pt;}
.y40{bottom:460.749997pt;}
.yf{bottom:477.749996pt;}
.y3f{bottom:488.749996pt;}
.y62{bottom:493.749995pt;}
.ye{bottom:505.749995pt;}
.y3e{bottom:516.749994pt;}
.y61{bottom:524.749994pt;}
.yd{bottom:533.749994pt;}
.y3d{bottom:544.749993pt;}
.y60{bottom:546.749993pt;}
.yc{bottom:561.749993pt;}
.y3c{bottom:572.749992pt;}
.y5f{bottom:577.749992pt;}
.y5e{bottom:599.749991pt;}
.yb{bottom:607.749991pt;}
.y3b{bottom:618.749990pt;}
.y5d{bottom:630.749990pt;}
.ya{bottom:635.749990pt;}
.y3a{bottom:646.749989pt;}
.y5c{bottom:652.749989pt;}
.y39{bottom:674.749988pt;}
.y5b{bottom:683.749988pt;}
.y9{bottom:694.749987pt;}
.y38{bottom:702.749987pt;}
.y5a{bottom:705.749987pt;}
.y8{bottom:718.749986pt;}
.y37{bottom:730.749986pt;}
.y59{bottom:736.749985pt;}
.y36{bottom:758.749984pt;}
.y35{bottom:804.749982pt;}
.y34{bottom:832.749981pt;}
.y33{bottom:860.749980pt;}
.y4c{bottom:866.749980pt;}
.y32{bottom:906.749978pt;}
.y31{bottom:934.749977pt;}
.y30{bottom:962.749976pt;}
.y2f{bottom:1008.749974pt;}
.y58{bottom:1017.749974pt;}
.y2e{bottom:1036.749973pt;}
.y57{bottom:1058.749972pt;}
.y2d{bottom:1064.749972pt;}
.y56{bottom:1085.749971pt;}
.y2c{bottom:1092.749970pt;}
.y55{bottom:1112.749970pt;}
.y2b{bottom:1120.749969pt;}
.y54{bottom:1139.749969pt;}
.y2a{bottom:1148.749968pt;}
.y53{bottom:1174.749967pt;}
.y29{bottom:1176.749967pt;}
.y28{bottom:1204.749966pt;}
.y52{bottom:1244.749964pt;}
.y27{bottom:1250.749964pt;}
.y26{bottom:1278.749963pt;}
.y50{bottom:1296.749962pt;}
.y25{bottom:1306.749962pt;}
.y7{bottom:1312.749961pt;}
.y4f{bottom:1324.749961pt;}
.y24{bottom:1334.749960pt;}
.y4e{bottom:1352.749960pt;}
.y6{bottom:1357.749959pt;}
.y23{bottom:1362.749959pt;}
.y4d{bottom:1380.749958pt;}
.y5{bottom:1392.749958pt;}
.y22{bottom:1408.749957pt;}
.y21{bottom:1436.749956pt;}
.y20{bottom:1464.749955pt;}
.y1f{bottom:1492.749954pt;}
.y51{bottom:1498.749954pt;}
.y1c{bottom:1555.160001pt;}
.h8{height:12.999999pt;}
.h9{height:29.294178pt;}
.hc{height:35.087999pt;}
.hb{height:38.249998pt;}
.h6{height:42.355467pt;}
.h7{height:45.380857pt;}
.he{height:48.406248pt;}
.h5{height:51.431638pt;}
.h3{height:60.799997pt;}
.ha{height:65.999997pt;}
.hd{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;}
.x12{left:48.484373pt;}
.x18{left:50.953123pt;}
.x16{left:52.890623pt;}
.x9{left:56.289060pt;}
.x17{left:66.999997pt;}
.xd{left:117.999995pt;}
.x13{left:180.328122pt;}
.xa{left:307.296867pt;}
.xb{left:329.171866pt;}
.x14{left:373.656234pt;}
.x15{left:383.453114pt;}
.xc{left:385.249984pt;}
.xe{left:417.234363pt;}
.x11{left:537.640608pt;}
.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; }
  