
    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_ec2e5bc1482fc79c1ade2fce.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_9f5c55bbe2c3d47cac2c02ee.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_237d8178258809b504e020f4.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_6bcff15d2202023132399737.woff')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_7c6afe3e695df4a60a4e70db.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_5c1e78c550ed569ab62c242a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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;}
.ls4{letter-spacing:-0.005754px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.357000px;}
.ls0{letter-spacing:0.720000px;}
.ls5{letter-spacing:18.120000px;}
.ls6{letter-spacing:21.421440px;}
.ls1{letter-spacing:26.652000px;}
.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;}
}
.ws1{word-spacing:-30.600000px;}
.ws0{word-spacing:-29.880000px;}
.ws2{word-spacing:-24.120000px;}
.ws3{word-spacing:-21.237000px;}
.ws6{word-spacing:-20.880000px;}
.ws5{word-spacing:-20.874246px;}
.ws4{word-spacing:0.000000px;}
._2b{margin-left:-4.302240px;}
._3{margin-left:-2.781600px;}
._1{margin-left:-1.601280px;}
._0{width:1.450080px;}
._4{width:2.475360px;}
._2{width:3.896160px;}
._20{width:5.040480px;}
._12{width:6.066720px;}
._13{width:7.152480px;}
._1e{width:8.352000px;}
._d{width:9.407520px;}
._2d{width:10.785120px;}
._2a{width:12.276960px;}
._b{width:13.446720px;}
._6{width:15.200640px;}
._7{width:17.038080px;}
._1f{width:18.594720px;}
._24{width:19.671360px;}
._14{width:22.884480px;}
._1a{width:23.993280px;}
._8{width:26.513520px;}
._5{width:28.563840px;}
._29{width:30.719520px;}
._1c{width:31.760640px;}
._1b{width:32.823360px;}
._1d{width:34.356960px;}
._9{width:35.632800px;}
._10{width:36.736308px;}
._11{width:37.745784px;}
._26{width:39.878880px;}
._30{width:41.575200px;}
._a{width:45.655200px;}
._25{width:48.080160px;}
._21{width:49.443840px;}
._c{width:50.954880px;}
._e{width:52.420320px;}
._f{width:53.445120px;}
._27{width:57.471360px;}
._2e{width:58.930080px;}
._28{width:60.611040px;}
._2f{width:62.081280px;}
._22{width:70.528320px;}
._23{width:71.578080px;}
._18{width:80.817120px;}
._19{width:82.206720px;}
._15{width:86.944320px;}
._2c{width:88.873440px;}
._17{width:102.601440px;}
._16{width:103.632480px;}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:66.240000px;}
.fs3{font-size:83.520000px;}
.fs2{font-size:96.480000px;}
.fs0{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y4{bottom:21.240000px;}
.y3{bottom:51.120000px;}
.y9{bottom:56.880000px;}
.y8{bottom:75.636000px;}
.y2{bottom:85.710000px;}
.y7{bottom:94.716000px;}
.y60{bottom:119.916000px;}
.y37{bottom:131.796000px;}
.y46{bottom:143.676000px;}
.y4c{bottom:155.910000px;}
.y36{bottom:168.150000px;}
.y45{bottom:180.030000px;}
.y4b{bottom:191.910000px;}
.y1f{bottom:192.630000px;}
.y35{bottom:204.195000px;}
.y44{bottom:216.435000px;}
.y4a{bottom:228.315000px;}
.y1e{bottom:229.035000px;}
.y5f{bottom:240.555000px;}
.y34{bottom:252.435000px;}
.y49{bottom:264.675000px;}
.y1d{bottom:265.035000px;}
.y5e{bottom:276.915000px;}
.y33{bottom:288.795000px;}
.y43{bottom:300.675000px;}
.y5d{bottom:312.915000px;}
.y1c{bottom:313.275000px;}
.y32{bottom:325.185000px;}
.y42{bottom:337.065000px;}
.y5c{bottom:349.305000px;}
.y1b{bottom:349.665000px;}
.y31{bottom:361.185000px;}
.y41{bottom:373.065000px;}
.y5b{bottom:385.305000px;}
.y1a{bottom:386.025000px;}
.y30{bottom:397.545000px;}
.y40{bottom:409.425000px;}
.y5a{bottom:421.665000px;}
.y19{bottom:422.025000px;}
.y2f{bottom:433.545000px;}
.y3f{bottom:445.785000px;}
.y59{bottom:458.070000px;}
.y18{bottom:458.430000px;}
.y2e{bottom:469.950000px;}
.y3e{bottom:481.830000px;}
.y58{bottom:494.070000px;}
.y17{bottom:494.430000px;}
.y2d{bottom:506.310000px;}
.y3d{bottom:518.190000px;}
.y48{bottom:530.070000px;}
.y57{bottom:530.430000px;}
.y16{bottom:530.790000px;}
.y2c{bottom:542.310000px;}
.y3c{bottom:554.550000px;}
.y47{bottom:566.430000px;}
.y15{bottom:567.150000px;}
.y2b{bottom:590.580000px;}
.y3b{bottom:602.460000px;}
.y56{bottom:602.820000px;}
.y14{bottom:603.180000px;}
.y2a{bottom:626.940000px;}
.y3a{bottom:638.820000px;}
.y55{bottom:639.180000px;}
.y13{bottom:651.420000px;}
.y29{bottom:662.940000px;}
.y39{bottom:675.180000px;}
.y28{bottom:699.330000px;}
.y12{bottom:699.690000px;}
.y38{bottom:711.210000px;}
.y54{bottom:711.570000px;}
.y27{bottom:747.570000px;}
.y11{bottom:747.930000px;}
.y53{bottom:759.810000px;}
.y26{bottom:783.930000px;}
.y10{bottom:795.810000px;}
.y52{bottom:808.050000px;}
.y25{bottom:819.930000px;}
.yf{bottom:844.095000px;}
.y24{bottom:856.335000px;}
.y51{bottom:880.455000px;}
.ye{bottom:892.335000px;}
.y50{bottom:916.815000px;}
.y23{bottom:928.695000px;}
.yd{bottom:940.575000px;}
.y4f{bottom:952.845000px;}
.y22{bottom:965.085000px;}
.yc{bottom:988.845000px;}
.y4e{bottom:989.205000px;}
.y21{bottom:1001.085000px;}
.yb{bottom:1025.205000px;}
.y4d{bottom:1025.565000px;}
.y20{bottom:1037.445000px;}
.ya{bottom:1073.805000px;}
.y1{bottom:1126.410000px;}
.y6{bottom:1175.730000px;}
.y5{bottom:1194.810000px;}
.ha{height:58.317187px;}
.h5{height:65.010937px;}
.h9{height:68.838750px;}
.h8{height:81.929531px;}
.h6{height:81.970312px;}
.h7{height:84.172500px;}
.hb{height:85.845399px;}
.h4{height:94.689844px;}
.h3{height:117.302344px;}
.h2{height:129.276000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:890.609973px;}
.w1{width:892.500000px;}
.w3{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1{left:75.635973px;}
.x4{left:127.475987px;}
.xe{left:154.514987px;}
.x2{left:161.714973px;}
.xf{left:181.514987px;}
.x6{left:192.674987px;}
.x3{left:271.544973px;}
.x7{left:290.624987px;}
.xd{left:298.184987px;}
.xc{left:309.704987px;}
.xb{left:325.904987px;}
.x9{left:343.949987px;}
.xa{left:349.349987px;}
.x5{left:474.299987px;}
.x8{left:478.259987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.005115pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.317333pt;}
.ls0{letter-spacing:0.640000pt;}
.ls5{letter-spacing:16.106667pt;}
.ls6{letter-spacing:19.041280pt;}
.ls1{letter-spacing:23.690667pt;}
.ws1{word-spacing:-27.200000pt;}
.ws0{word-spacing:-26.560000pt;}
.ws2{word-spacing:-21.440000pt;}
.ws3{word-spacing:-18.877333pt;}
.ws6{word-spacing:-18.560000pt;}
.ws5{word-spacing:-18.554885pt;}
.ws4{word-spacing:0.000000pt;}
._2b{margin-left:-3.824213pt;}
._3{margin-left:-2.472533pt;}
._1{margin-left:-1.423360pt;}
._0{width:1.288960pt;}
._4{width:2.200320pt;}
._2{width:3.463253pt;}
._20{width:4.480427pt;}
._12{width:5.392640pt;}
._13{width:6.357760pt;}
._1e{width:7.424000pt;}
._d{width:8.362240pt;}
._2d{width:9.586773pt;}
._2a{width:10.912853pt;}
._b{width:11.952640pt;}
._6{width:13.511680pt;}
._7{width:15.144960pt;}
._1f{width:16.528640pt;}
._24{width:17.485653pt;}
._14{width:20.341760pt;}
._1a{width:21.327360pt;}
._8{width:23.567573pt;}
._5{width:25.390080pt;}
._29{width:27.306240pt;}
._1c{width:28.231680pt;}
._1b{width:29.176320pt;}
._1d{width:30.539520pt;}
._9{width:31.673600pt;}
._10{width:32.654496pt;}
._11{width:33.551808pt;}
._26{width:35.447893pt;}
._30{width:36.955733pt;}
._a{width:40.582400pt;}
._25{width:42.737920pt;}
._21{width:43.950080pt;}
._c{width:45.293227pt;}
._e{width:46.595840pt;}
._f{width:47.506773pt;}
._27{width:51.085653pt;}
._2e{width:52.382293pt;}
._28{width:53.876480pt;}
._2f{width:55.183360pt;}
._22{width:62.691840pt;}
._23{width:63.624960pt;}
._18{width:71.837440pt;}
._19{width:73.072640pt;}
._15{width:77.283840pt;}
._2c{width:78.998613pt;}
._17{width:91.201280pt;}
._16{width:92.117760pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:74.240000pt;}
.fs2{font-size:85.760000pt;}
.fs0{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:18.880000pt;}
.y3{bottom:45.440000pt;}
.y9{bottom:50.560000pt;}
.y8{bottom:67.232000pt;}
.y2{bottom:76.186667pt;}
.y7{bottom:84.192000pt;}
.y60{bottom:106.592000pt;}
.y37{bottom:117.152000pt;}
.y46{bottom:127.712000pt;}
.y4c{bottom:138.586667pt;}
.y36{bottom:149.466667pt;}
.y45{bottom:160.026667pt;}
.y4b{bottom:170.586667pt;}
.y1f{bottom:171.226667pt;}
.y35{bottom:181.506667pt;}
.y44{bottom:192.386667pt;}
.y4a{bottom:202.946667pt;}
.y1e{bottom:203.586667pt;}
.y5f{bottom:213.826667pt;}
.y34{bottom:224.386667pt;}
.y49{bottom:235.266667pt;}
.y1d{bottom:235.586667pt;}
.y5e{bottom:246.146667pt;}
.y33{bottom:256.706667pt;}
.y43{bottom:267.266667pt;}
.y5d{bottom:278.146667pt;}
.y1c{bottom:278.466667pt;}
.y32{bottom:289.053333pt;}
.y42{bottom:299.613333pt;}
.y5c{bottom:310.493333pt;}
.y1b{bottom:310.813333pt;}
.y31{bottom:321.053333pt;}
.y41{bottom:331.613333pt;}
.y5b{bottom:342.493333pt;}
.y1a{bottom:343.133333pt;}
.y30{bottom:353.373333pt;}
.y40{bottom:363.933333pt;}
.y5a{bottom:374.813333pt;}
.y19{bottom:375.133333pt;}
.y2f{bottom:385.373333pt;}
.y3f{bottom:396.253333pt;}
.y59{bottom:407.173333pt;}
.y18{bottom:407.493333pt;}
.y2e{bottom:417.733333pt;}
.y3e{bottom:428.293333pt;}
.y58{bottom:439.173333pt;}
.y17{bottom:439.493333pt;}
.y2d{bottom:450.053333pt;}
.y3d{bottom:460.613333pt;}
.y48{bottom:471.173333pt;}
.y57{bottom:471.493333pt;}
.y16{bottom:471.813333pt;}
.y2c{bottom:482.053333pt;}
.y3c{bottom:492.933333pt;}
.y47{bottom:503.493333pt;}
.y15{bottom:504.133333pt;}
.y2b{bottom:524.960000pt;}
.y3b{bottom:535.520000pt;}
.y56{bottom:535.840000pt;}
.y14{bottom:536.160000pt;}
.y2a{bottom:557.280000pt;}
.y3a{bottom:567.840000pt;}
.y55{bottom:568.160000pt;}
.y13{bottom:579.040000pt;}
.y29{bottom:589.280000pt;}
.y39{bottom:600.160000pt;}
.y28{bottom:621.626667pt;}
.y12{bottom:621.946667pt;}
.y38{bottom:632.186667pt;}
.y54{bottom:632.506667pt;}
.y27{bottom:664.506667pt;}
.y11{bottom:664.826667pt;}
.y53{bottom:675.386667pt;}
.y26{bottom:696.826667pt;}
.y10{bottom:707.386667pt;}
.y52{bottom:718.266667pt;}
.y25{bottom:728.826667pt;}
.yf{bottom:750.306667pt;}
.y24{bottom:761.186667pt;}
.y51{bottom:782.626667pt;}
.ye{bottom:793.186667pt;}
.y50{bottom:814.946667pt;}
.y23{bottom:825.506667pt;}
.yd{bottom:836.066667pt;}
.y4f{bottom:846.973333pt;}
.y22{bottom:857.853333pt;}
.yc{bottom:878.973333pt;}
.y4e{bottom:879.293333pt;}
.y21{bottom:889.853333pt;}
.yb{bottom:911.293333pt;}
.y4d{bottom:911.613333pt;}
.y20{bottom:922.173333pt;}
.ya{bottom:954.493333pt;}
.y1{bottom:1001.253333pt;}
.y6{bottom:1045.093333pt;}
.y5{bottom:1062.053333pt;}
.ha{height:51.837500pt;}
.h5{height:57.787500pt;}
.h9{height:61.190000pt;}
.h8{height:72.826250pt;}
.h6{height:72.862500pt;}
.h7{height:74.820000pt;}
.hb{height:76.307021pt;}
.h4{height:84.168750pt;}
.h3{height:104.268750pt;}
.h2{height:114.912000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:791.653310pt;}
.w1{width:793.333333pt;}
.w3{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1{left:67.231976pt;}
.x4{left:113.311988pt;}
.xe{left:137.346655pt;}
.x2{left:143.746643pt;}
.xf{left:161.346655pt;}
.x6{left:171.266655pt;}
.x3{left:241.373310pt;}
.x7{left:258.333322pt;}
.xd{left:265.053322pt;}
.xc{left:275.293322pt;}
.xb{left:289.693322pt;}
.x9{left:305.733322pt;}
.xa{left:310.533322pt;}
.x5{left:421.599988pt;}
.x8{left:425.119988pt;}
}




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