
    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_c8c88c664d7eaf603d8da3e1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_21f1efa9bbe7ddf692fcefc8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_15b38cfb54808b4ed6b42bdc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_52e5a5110aaa7979796ec563.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.913086;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_b527f03dab7c94dd1501f064.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927734;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;}
.v1{vertical-align:9.624015px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.011332px;}
.ls3{letter-spacing:0.126817px;}
.ls4{letter-spacing:0.151060px;}
.ls1{letter-spacing:81.010551px;}
.ls5{letter-spacing:108.008242px;}
.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;}
}
.ws0{word-spacing:-62.158806px;}
.ws5{word-spacing:-46.536000px;}
.ws4{word-spacing:-29.916001px;}
.ws2{word-spacing:-23.268000px;}
.ws3{word-spacing:-19.944001px;}
.ws1{word-spacing:0.000000px;}
._c{margin-left:-21.840000px;}
._d{margin-left:-18.480000px;}
._6{margin-left:-12.432000px;}
._9{margin-left:-11.188800px;}
._3{margin-left:-9.240000px;}
._2{margin-left:-7.548000px;}
._7{margin-left:-6.216000px;}
._0{margin-left:-4.039200px;}
._5{margin-left:-3.024000px;}
._1{margin-left:-2.019600px;}
._b{width:1.139850px;}
._a{width:4.881150px;}
._4{width:108.008242px;}
._8{width:775.963009px;}
.fc4{color:rgb(68,114,196);}
.fc2{color:rgb(5,99,193);}
.fc1{color:transparent;}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:72.000002px;}
.fs8{font-size:84.000000px;}
.fsd{font-size:96.000006px;}
.fs0{font-size:102.000000px;}
.fs9{font-size:108.000003px;}
.fs4{font-size:112.200007px;}
.fsb{font-size:120.000001px;}
.fs3{font-size:122.400017px;}
.fs2{font-size:132.600006px;}
.fsa{font-size:151.200005px;}
.fs5{font-size:167.999999px;}
.fsc{font-size:216.000007px;}
.fs1{font-size:224.400022px;}
.fs7{font-size:240.000002px;}
.fse{font-size:291.599987px;}
.y0{bottom:0.000000px;}
.y48{bottom:5.379099px;}
.y2b{bottom:11.859094px;}
.y1{bottom:22.060890px;}
.y47{bottom:30.579097px;}
.y2a{bottom:33.459095px;}
.y44{bottom:79.427564px;}
.y3d{bottom:91.869322px;}
.y18{bottom:98.761974px;}
.y15{bottom:103.849258px;}
.y43{bottom:108.227576px;}
.y3c{bottom:120.669334px;}
.y29{bottom:135.592898px;}
.y42{bottom:137.027588px;}
.y3b{bottom:149.469324px;}
.y41{bottom:165.827578px;}
.y28{bottom:171.592900px;}
.ya{bottom:175.588180px;}
.y3a{bottom:178.269316px;}
.y1d{bottom:183.960250px;}
.y40{bottom:194.627570px;}
.y39{bottom:207.069314px;}
.y27{bottom:207.592901px;}
.y3f{bottom:223.427569px;}
.y31{bottom:224.305139px;}
.y9{bottom:239.462487px;}
.y26{bottom:243.592904px;}
.y8{bottom:265.717288px;}
.y19{bottom:282.736178px;}
.y1c{bottom:304.680325px;}
.y38{bottom:308.709906px;}
.y2c{bottom:317.620483px;}
.y20{bottom:318.148466px;}
.y34{bottom:332.553641px;}
.y30{bottom:336.857947px;}
.y37{bottom:337.509896px;}
.y7{bottom:347.567471px;}
.y3e{bottom:354.045439px;}
.y1f{bottom:355.855024px;}
.y25{bottom:362.485369px;}
.y36{bottom:366.309888px;}
.y33{bottom:368.553642px;}
.y4e{bottom:370.855021px;}
.y2f{bottom:372.857949px;}
.y13{bottom:382.948463px;}
.y35{bottom:395.109887px;}
.y6{bottom:396.833463px;}
.y24{bottom:398.485371px;}
.yf{bottom:399.844449px;}
.y4d{bottom:400.855026px;}
.y32{bottom:404.553646px;}
.y2e{bottom:408.857952px;}
.y1e{bottom:416.215011px;}
.y1b{bottom:425.400310px;}
.y23{bottom:434.485374px;}
.y4c{bottom:446.215016px;}
.ye{bottom:460.204436px;}
.y46{bottom:466.057913px;}
.y17{bottom:476.575004px;}
.y50{bottom:487.020916px;}
.y4b{bottom:491.575006px;}
.y5{bottom:497.859245px;}
.yd{bottom:505.564432px;}
.y2d{bottom:515.692671px;}
.y45{bottom:516.457908px;}
.y4a{bottom:520.734996px;}
.y4f{bottom:528.610461px;}
.y16{bottom:536.935000px;}
.y1a{bottom:546.120299px;}
.y49{bottom:549.894999px;}
.y4{bottom:558.447236px;}
.yc{bottom:565.924428px;}
.y22{bottom:600.197033px;}
.y3{bottom:619.035220px;}
.y14{bottom:637.392227px;}
.y21{bottom:641.021028px;}
.yb{bottom:644.205660px;}
.y10{bottom:644.205778px;}
.y2{bottom:679.623217px;}
.y11{bottom:759.426613px;}
.y12{bottom:760.074564px;}
.ha{height:52.453127px;}
.hc{height:61.195312px;}
.h11{height:69.890629px;}
.h12{height:69.937504px;}
.hd{height:70.819328px;}
.h1{height:74.258789px;}
.h7{height:74.308594px;}
.h13{height:78.679690px;}
.h6{height:81.684673px;}
.hf{height:87.421876px;}
.h5{height:89.170325px;}
.h4{height:96.536430px;}
.he{height:110.077738px;}
.h8{height:122.308593px;}
.h9{height:122.390625px;}
.h14{height:122.800781px;}
.h10{height:157.359380px;}
.h3{height:163.369352px;}
.h2{height:163.478922px;}
.hb{height:174.726564px;}
.h15{height:213.147061px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x3{left:43.384843px;}
.x2{left:53.943898px;}
.xa{left:73.647286px;}
.x4{left:77.025003px;}
.xd{left:80.328862px;}
.x1c{left:85.944992px;}
.x5{left:89.322944px;}
.x15{left:109.125003px;}
.x1{left:116.665873px;}
.x17{left:125.168393px;}
.x6{left:131.025005px;}
.x10{left:232.734810px;}
.x14{left:269.904339px;}
.x18{left:271.516194px;}
.x11{left:276.597526px;}
.x13{left:284.495094px;}
.x16{left:289.373286px;}
.x1b{left:303.032372px;}
.x1d{left:378.770671px;}
.x9{left:414.865183px;}
.xb{left:638.171120px;}
.xf{left:644.574002px;}
.x1a{left:865.516348px;}
.x19{left:871.777265px;}
.x12{left:1357.238203px;}
.x8{left:1367.248949px;}
.xc{left:1375.418767px;}
.xe{left:1376.754704px;}
.x7{left:1385.429512px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:8.554680pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.010073pt;}
.ls3{letter-spacing:0.112726pt;}
.ls4{letter-spacing:0.134276pt;}
.ls1{letter-spacing:72.009378pt;}
.ls5{letter-spacing:96.007326pt;}
.ws0{word-spacing:-55.252272pt;}
.ws5{word-spacing:-41.365333pt;}
.ws4{word-spacing:-26.592001pt;}
.ws2{word-spacing:-20.682667pt;}
.ws3{word-spacing:-17.728001pt;}
.ws1{word-spacing:0.000000pt;}
._c{margin-left:-19.413333pt;}
._d{margin-left:-16.426667pt;}
._6{margin-left:-11.050667pt;}
._9{margin-left:-9.945600pt;}
._3{margin-left:-8.213333pt;}
._2{margin-left:-6.709333pt;}
._7{margin-left:-5.525333pt;}
._0{margin-left:-3.590400pt;}
._5{margin-left:-2.688000pt;}
._1{margin-left:-1.795200pt;}
._b{width:1.013200pt;}
._a{width:4.338800pt;}
._4{width:96.007326pt;}
._8{width:689.744897pt;}
.fs6{font-size:64.000002pt;}
.fs8{font-size:74.666666pt;}
.fsd{font-size:85.333339pt;}
.fs0{font-size:90.666667pt;}
.fs9{font-size:96.000003pt;}
.fs4{font-size:99.733339pt;}
.fsb{font-size:106.666667pt;}
.fs3{font-size:108.800015pt;}
.fs2{font-size:117.866672pt;}
.fsa{font-size:134.400004pt;}
.fs5{font-size:149.333333pt;}
.fsc{font-size:192.000006pt;}
.fs1{font-size:199.466686pt;}
.fs7{font-size:213.333335pt;}
.fse{font-size:259.199988pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:4.781421pt;}
.y2b{bottom:10.541417pt;}
.y1{bottom:19.609680pt;}
.y47{bottom:27.181420pt;}
.y2a{bottom:29.741418pt;}
.y44{bottom:70.602279pt;}
.y3d{bottom:81.661620pt;}
.y18{bottom:87.788422pt;}
.y15{bottom:92.310452pt;}
.y43{bottom:96.202290pt;}
.y3c{bottom:107.261630pt;}
.y29{bottom:120.527021pt;}
.y42{bottom:121.802301pt;}
.y3b{bottom:132.861621pt;}
.y41{bottom:147.402292pt;}
.y28{bottom:152.527022pt;}
.ya{bottom:156.078382pt;}
.y3a{bottom:158.461614pt;}
.y1d{bottom:163.520222pt;}
.y40{bottom:173.002284pt;}
.y39{bottom:184.061613pt;}
.y27{bottom:184.527023pt;}
.y3f{bottom:198.602283pt;}
.y31{bottom:199.382345pt;}
.y9{bottom:212.855544pt;}
.y26{bottom:216.527026pt;}
.y8{bottom:236.193145pt;}
.y19{bottom:251.321047pt;}
.y1c{bottom:270.826956pt;}
.y38{bottom:274.408806pt;}
.y2c{bottom:282.329318pt;}
.y20{bottom:282.798636pt;}
.y34{bottom:295.603236pt;}
.y30{bottom:299.429287pt;}
.y37{bottom:300.008797pt;}
.y7{bottom:308.948863pt;}
.y3e{bottom:314.707057pt;}
.y1f{bottom:316.315577pt;}
.y25{bottom:322.209217pt;}
.y36{bottom:325.608789pt;}
.y33{bottom:327.603237pt;}
.y4e{bottom:329.648908pt;}
.y2f{bottom:331.429288pt;}
.y13{bottom:340.398634pt;}
.y35{bottom:351.208788pt;}
.y6{bottom:352.740856pt;}
.y24{bottom:354.209218pt;}
.yf{bottom:355.417288pt;}
.y4d{bottom:356.315578pt;}
.y32{bottom:359.603240pt;}
.y2e{bottom:363.429291pt;}
.y1e{bottom:369.968899pt;}
.y1b{bottom:378.133609pt;}
.y23{bottom:386.209221pt;}
.y4c{bottom:396.635570pt;}
.ye{bottom:409.070610pt;}
.y46{bottom:414.273700pt;}
.y17{bottom:423.622226pt;}
.y50{bottom:432.907481pt;}
.y4b{bottom:436.955561pt;}
.y5{bottom:442.541551pt;}
.yd{bottom:449.390606pt;}
.y2d{bottom:458.393486pt;}
.y45{bottom:459.073696pt;}
.y4a{bottom:462.875552pt;}
.y4f{bottom:469.875965pt;}
.y16{bottom:477.275555pt;}
.y1a{bottom:485.440265pt;}
.y49{bottom:488.795555pt;}
.y4{bottom:496.397543pt;}
.yc{bottom:503.043936pt;}
.y22{bottom:533.508474pt;}
.y3{bottom:550.253529pt;}
.y14{bottom:566.570868pt;}
.y21{bottom:569.796469pt;}
.yb{bottom:572.627253pt;}
.y10{bottom:572.627358pt;}
.y2{bottom:604.109526pt;}
.y11{bottom:675.045879pt;}
.y12{bottom:675.621835pt;}
.ha{height:46.625001pt;}
.hc{height:54.395833pt;}
.h11{height:62.125004pt;}
.h12{height:62.166671pt;}
.hd{height:62.950513pt;}
.h1{height:66.007813pt;}
.h7{height:66.052084pt;}
.h13{height:69.937502pt;}
.h6{height:72.608598pt;}
.hf{height:77.708334pt;}
.h5{height:79.262511pt;}
.h4{height:85.810160pt;}
.he{height:97.846878pt;}
.h8{height:108.718750pt;}
.h9{height:108.791666pt;}
.h14{height:109.156250pt;}
.h10{height:139.875004pt;}
.h3{height:145.217202pt;}
.h2{height:145.314598pt;}
.hb{height:155.312501pt;}
.h15{height:189.464054pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x3{left:38.564305pt;}
.x2{left:47.950132pt;}
.xa{left:65.464254pt;}
.x4{left:68.466669pt;}
.xd{left:71.403433pt;}
.x1c{left:76.395548pt;}
.x5{left:79.398173pt;}
.x15{left:97.000003pt;}
.x1{left:103.702998pt;}
.x17{left:111.260794pt;}
.x6{left:116.466671pt;}
.x10{left:206.875387pt;}
.x14{left:239.914968pt;}
.x18{left:241.347728pt;}
.x11{left:245.864468pt;}
.x13{left:252.884528pt;}
.x16{left:257.220698pt;}
.x1b{left:269.362109pt;}
.x1d{left:336.685041pt;}
.x9{left:368.769052pt;}
.xb{left:567.263218pt;}
.xf{left:572.954668pt;}
.x1a{left:769.347865pt;}
.x19{left:774.913125pt;}
.x12{left:1206.433959pt;}
.x8{left:1215.332399pt;}
.xc{left:1222.594459pt;}
.xe{left:1223.781959pt;}
.x7{left:1231.492899pt;}
}




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