
    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_391136f9590290481a6f73d9.woff')format("woff");}.ff1{font-family:ff1;line-height:0.944000;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_1a4d74e4a31733eb3b39ec07.woff')format("woff");}.ff2{font-family:ff2;line-height:0.946000;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_d7c02d08bb4012aa09eb88af.woff')format("woff");}.ff3{font-family:ff3;line-height:0.924000;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_bc4a49a705f02e21bb3f5dc3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.946000;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_c86336f96c988db7be8b1325.woff')format("woff");}.ff5{font-family:ff5;line-height:0.946000;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_b04f29e7b79a6edc8a69f62d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938000;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_a599e393ee0303a5a93d948b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.410000;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_8ea5079fcce5a578251941cc.woff')format("woff");}.ff8{font-family:ff8;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;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5{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:23.910000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:11.956683px;}
.ls1{letter-spacing:13.448438px;}
.ls0{letter-spacing:13.450762px;}
.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;}
}
.ws4{word-spacing:-13.449600px;}
.ws8{word-spacing:-0.753178px;}
.wsb{word-spacing:-0.143462px;}
.ws5{word-spacing:-0.000912px;}
.ws1{word-spacing:0.000000px;}
.wsd{word-spacing:0.095641px;}
.wsc{word-spacing:0.191282px;}
.ws3{word-spacing:0.268992px;}
.ws7{word-spacing:0.645581px;}
.wsa{word-spacing:4.250074px;}
.ws10{word-spacing:10.418857px;}
.ws9{word-spacing:12.642624px;}
.ws6{word-spacing:13.395802px;}
.ws2{word-spacing:16.298195px;}
.ws0{word-spacing:21.433223px;}
.ws13{word-spacing:286.372123px;}
.ws17{word-spacing:341.060663px;}
.ws16{word-spacing:378.844711px;}
.ws14{word-spacing:385.121131px;}
.ws12{word-spacing:394.201019px;}
.ws18{word-spacing:394.242862px;}
.ws11{word-spacing:403.950391px;}
.ws15{word-spacing:413.657921px;}
.wsf{word-spacing:440.676298px;}
.wse{word-spacing:2227.715600px;}
._3{margin-left:-5.422864px;}
._5{margin-left:-4.055768px;}
._2{margin-left:-2.926625px;}
._1{margin-left:-1.291158px;}
._0{width:1.291158px;}
._4{width:2.701573px;}
._9{width:12.977349px;}
._8{width:14.193735px;}
._a{width:27.189703px;}
._6{width:36.044928px;}
._7{width:59.775600px;}
._b{width:127.659399px;}
._18{width:404.996461px;}
._e{width:414.668117px;}
._1b{width:424.034935px;}
._15{width:429.809242px;}
._c{width:439.935199px;}
._1a{width:441.106798px;}
._1d{width:461.902669px;}
._1c{width:467.509604px;}
._1f{width:474.832094px;}
._19{width:480.229816px;}
._24{width:488.593633px;}
._12{width:491.527372px;}
._23{width:501.862543px;}
._d{width:506.967365px;}
._1e{width:530.357490px;}
._20{width:534.960198px;}
._21{width:537.010495px;}
._11{width:543.245072px;}
._13{width:561.404848px;}
._17{width:567.388368px;}
._22{width:576.049828px;}
._f{width:580.987278px;}
._16{width:583.874431px;}
._14{width:617.348671px;}
._10{width:645.843618px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs2{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y18{bottom:59.328000px;}
.y17{bottom:95.193000px;}
.y16{bottom:110.137500px;}
.y15{bottom:125.080500px;}
.y14{bottom:141.519000px;}
.y13{bottom:156.463500px;}
.y12{bottom:171.408000px;}
.y11{bottom:186.351000px;}
.y10{bottom:201.295500px;}
.yf{bottom:226.281000px;}
.y37{bottom:375.304500px;}
.y36{bottom:394.464000px;}
.y35{bottom:413.623500px;}
.y34{bottom:432.783000px;}
.y33{bottom:451.942500px;}
.y32{bottom:471.100500px;}
.y31{bottom:490.260000px;}
.y30{bottom:509.419500px;}
.y2f{bottom:528.579000px;}
.y2e{bottom:547.738500px;}
.y2d{bottom:566.898000px;}
.y2c{bottom:586.056000px;}
.y2b{bottom:605.215500px;}
.ye{bottom:618.864000px;}
.y2a{bottom:624.375000px;}
.y29{bottom:643.534500px;}
.yd{bottom:649.348500px;}
.y28{bottom:662.694000px;}
.yc{bottom:665.787000px;}
.y27{bottom:681.853500px;}
.yb{bottom:682.225500px;}
.ya{bottom:698.664000px;}
.y26{bottom:701.011500px;}
.y25{bottom:720.171000px;}
.y9{bottom:721.378500px;}
.y8{bottom:737.817000px;}
.y24{bottom:739.330500px;}
.y23{bottom:758.490000px;}
.y7{bottom:760.531500px;}
.y22{bottom:777.649500px;}
.y6{bottom:783.247500px;}
.y21{bottom:796.809000px;}
.y5{bottom:799.686000px;}
.y20{bottom:815.968500px;}
.y4{bottom:826.278000px;}
.y1f{bottom:835.126500px;}
.y1e{bottom:854.286000px;}
.y3{bottom:861.838500px;}
.y1d{bottom:873.445500px;}
.y2{bottom:887.242500px;}
.y1c{bottom:892.903500px;}
.y1b{bottom:898.881000px;}
.y1{bottom:938.052000px;}
.y1a{bottom:941.469000px;}
.y19{bottom:978.381000px;}
.h8{height:29.289960px;}
.h9{height:29.624702px;}
.h6{height:33.856985px;}
.h4{height:37.658880px;}
.h3{height:38.089267px;}
.h5{height:42.321125px;}
.h2{height:46.341857px;}
.h7{height:53.199960px;}
.h1{height:60.942658px;}
.h0{height:1080.000000px;}
.w0{width:729.000000px;}
.x0{left:0.000000px;}
.x1{left:67.279500px;}
.x2{left:68.742000px;}
.x4{left:115.239000px;}
.x9{left:147.402000px;}
.x14{left:161.074500px;}
.x12{left:172.957500px;}
.xb{left:174.522000px;}
.x10{left:180.855000px;}
.x7{left:183.105000px;}
.x15{left:188.571000px;}
.x13{left:193.147500px;}
.x16{left:194.418000px;}
.xd{left:196.159500px;}
.x19{left:200.950500px;}
.x8{left:202.263000px;}
.xc{left:208.848000px;}
.x17{left:209.968500px;}
.xe{left:213.546000px;}
.x11{left:214.968000px;}
.x18{left:219.643500px;}
.xa{left:220.873500px;}
.xf{left:227.532000px;}
.x5{left:235.518000px;}
.x6{left:372.126000px;}
.x3{left:395.154000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.253333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:10.628163pt;}
.ls1{letter-spacing:11.954167pt;}
.ls0{letter-spacing:11.956233pt;}
.ws4{word-spacing:-11.955200pt;}
.ws8{word-spacing:-0.669491pt;}
.wsb{word-spacing:-0.127522pt;}
.ws5{word-spacing:-0.000811pt;}
.ws1{word-spacing:0.000000pt;}
.wsd{word-spacing:0.085014pt;}
.wsc{word-spacing:0.170029pt;}
.ws3{word-spacing:0.239104pt;}
.ws7{word-spacing:0.573850pt;}
.wsa{word-spacing:3.777843pt;}
.ws10{word-spacing:9.261206pt;}
.ws9{word-spacing:11.237888pt;}
.ws6{word-spacing:11.907379pt;}
.ws2{word-spacing:14.487285pt;}
.ws0{word-spacing:19.051754pt;}
.ws13{word-spacing:254.552998pt;}
.ws17{word-spacing:303.165034pt;}
.ws16{word-spacing:336.750854pt;}
.ws14{word-spacing:342.329894pt;}
.ws12{word-spacing:350.400906pt;}
.ws18{word-spacing:350.438099pt;}
.ws11{word-spacing:359.067014pt;}
.ws15{word-spacing:367.695930pt;}
.wsf{word-spacing:391.712265pt;}
.wse{word-spacing:1980.191645pt;}
._3{margin-left:-4.820323pt;}
._5{margin-left:-3.605127pt;}
._2{margin-left:-2.601444pt;}
._1{margin-left:-1.147696pt;}
._0{width:1.147696pt;}
._4{width:2.401398pt;}
._9{width:11.535421pt;}
._8{width:12.616653pt;}
._a{width:24.168625pt;}
._6{width:32.039936pt;}
._7{width:53.133867pt;}
._b{width:113.475021pt;}
._18{width:359.996854pt;}
._e{width:368.593882pt;}
._1b{width:376.919942pt;}
._15{width:382.052659pt;}
._c{width:391.053510pt;}
._1a{width:392.094931pt;}
._1d{width:410.580150pt;}
._1c{width:415.564093pt;}
._1f{width:422.072973pt;}
._19{width:426.870947pt;}
._24{width:434.305452pt;}
._12{width:436.913219pt;}
._23{width:446.100038pt;}
._d{width:450.637658pt;}
._1e{width:471.428880pt;}
._20{width:475.520176pt;}
._21{width:477.342662pt;}
._11{width:482.884509pt;}
._13{width:499.026531pt;}
._17{width:504.345216pt;}
._22{width:512.044291pt;}
._f{width:516.433136pt;}
._16{width:518.999494pt;}
._14{width:548.754374pt;}
._10{width:574.083216pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs2{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:52.736000pt;}
.y17{bottom:84.616000pt;}
.y16{bottom:97.900000pt;}
.y15{bottom:111.182667pt;}
.y14{bottom:125.794667pt;}
.y13{bottom:139.078667pt;}
.y12{bottom:152.362667pt;}
.y11{bottom:165.645333pt;}
.y10{bottom:178.929333pt;}
.yf{bottom:201.138667pt;}
.y37{bottom:333.604000pt;}
.y36{bottom:350.634667pt;}
.y35{bottom:367.665333pt;}
.y34{bottom:384.696000pt;}
.y33{bottom:401.726667pt;}
.y32{bottom:418.756000pt;}
.y31{bottom:435.786667pt;}
.y30{bottom:452.817333pt;}
.y2f{bottom:469.848000pt;}
.y2e{bottom:486.878667pt;}
.y2d{bottom:503.909333pt;}
.y2c{bottom:520.938667pt;}
.y2b{bottom:537.969333pt;}
.ye{bottom:550.101333pt;}
.y2a{bottom:555.000000pt;}
.y29{bottom:572.030667pt;}
.yd{bottom:577.198667pt;}
.y28{bottom:589.061333pt;}
.yc{bottom:591.810667pt;}
.y27{bottom:606.092000pt;}
.yb{bottom:606.422667pt;}
.ya{bottom:621.034667pt;}
.y26{bottom:623.121333pt;}
.y25{bottom:640.152000pt;}
.y9{bottom:641.225333pt;}
.y8{bottom:655.837333pt;}
.y24{bottom:657.182667pt;}
.y23{bottom:674.213333pt;}
.y7{bottom:676.028000pt;}
.y22{bottom:691.244000pt;}
.y6{bottom:696.220000pt;}
.y21{bottom:708.274667pt;}
.y5{bottom:710.832000pt;}
.y20{bottom:725.305333pt;}
.y4{bottom:734.469333pt;}
.y1f{bottom:742.334667pt;}
.y1e{bottom:759.365333pt;}
.y3{bottom:766.078667pt;}
.y1d{bottom:776.396000pt;}
.y2{bottom:788.660000pt;}
.y1c{bottom:793.692000pt;}
.y1b{bottom:799.005333pt;}
.y1{bottom:833.824000pt;}
.y1a{bottom:836.861333pt;}
.y19{bottom:869.672000pt;}
.h8{height:26.035520pt;}
.h9{height:26.333069pt;}
.h6{height:30.095098pt;}
.h4{height:33.474560pt;}
.h3{height:33.857126pt;}
.h5{height:37.618778pt;}
.h2{height:41.192762pt;}
.h7{height:47.288853pt;}
.h1{height:54.171251pt;}
.h0{height:960.000000pt;}
.w0{width:648.000000pt;}
.x0{left:0.000000pt;}
.x1{left:59.804000pt;}
.x2{left:61.104000pt;}
.x4{left:102.434667pt;}
.x9{left:131.024000pt;}
.x14{left:143.177333pt;}
.x12{left:153.740000pt;}
.xb{left:155.130667pt;}
.x10{left:160.760000pt;}
.x7{left:162.760000pt;}
.x15{left:167.618667pt;}
.x13{left:171.686667pt;}
.x16{left:172.816000pt;}
.xd{left:174.364000pt;}
.x19{left:178.622667pt;}
.x8{left:179.789333pt;}
.xc{left:185.642667pt;}
.x17{left:186.638667pt;}
.xe{left:189.818667pt;}
.x11{left:191.082667pt;}
.x18{left:195.238667pt;}
.xa{left:196.332000pt;}
.xf{left:202.250667pt;}
.x5{left:209.349333pt;}
.x6{left:330.778667pt;}
.x3{left:351.248000pt;}
}




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