
    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_00cd772b788df32d0464df4c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_c74512b0e5cc7376e8d94da9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ae336e43aaac884f8f621eef.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_3bdb70d68f5491261ff823a3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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);}
.v1{vertical-align:-66.601080px;}
.v2{vertical-align:-60.480000px;}
.v0{vertical-align:0.000000px;}
.ls27{letter-spacing:-0.737352px;}
.ls1c{letter-spacing:-0.210420px;}
.ls24{letter-spacing:-0.144288px;}
.ls22{letter-spacing:-0.090180px;}
.ls20{letter-spacing:-0.084168px;}
.ls1e{letter-spacing:-0.060120px;}
.ls18{letter-spacing:-0.050400px;}
.ls1b{letter-spacing:-0.043200px;}
.ls21{letter-spacing:-0.042084px;}
.ls1f{letter-spacing:-0.036072px;}
.ls19{letter-spacing:-0.036000px;}
.ls1a{letter-spacing:-0.028800px;}
.ls23{letter-spacing:-0.024048px;}
.ls15{letter-spacing:-0.023940px;}
.ls16{letter-spacing:-0.014400px;}
.ls13{letter-spacing:-0.012024px;}
.ls17{letter-spacing:-0.007200px;}
.ls1d{letter-spacing:-0.006012px;}
.ls14{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.006012px;}
.ls1{letter-spacing:0.008388px;}
.lse{letter-spacing:0.012024px;}
.lsb{letter-spacing:0.018036px;}
.ls11{letter-spacing:0.019152px;}
.lsd{letter-spacing:0.024048px;}
.ls2{letter-spacing:0.025164px;}
.ls3{letter-spacing:0.028728px;}
.lsa{letter-spacing:0.030060px;}
.ls5{letter-spacing:0.033516px;}
.lsf{letter-spacing:0.038304px;}
.ls0{letter-spacing:0.041940px;}
.ls12{letter-spacing:0.047880px;}
.lsc{letter-spacing:0.048096px;}
.ls6{letter-spacing:0.058716px;}
.ls10{letter-spacing:0.062244px;}
.ls7{letter-spacing:0.066132px;}
.ls25{letter-spacing:0.339948px;}
.ls26{letter-spacing:0.378252px;}
.ls8{letter-spacing:63.565308px;}
.ls4{letter-spacing:1480.689000px;}
.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:-72.000000px;}
.ws2{word-spacing:-13.358520px;}
.ws1{word-spacing:-12.573288px;}
.ws24{word-spacing:-0.168336px;}
.ws29{word-spacing:-0.156312px;}
.ws1c{word-spacing:-0.144288px;}
.ws1f{word-spacing:-0.138276px;}
.ws5{word-spacing:-0.132264px;}
.ws2c{word-spacing:-0.043092px;}
.ws2b{word-spacing:-0.019152px;}
.ws8{word-spacing:-0.014364px;}
.ws7{word-spacing:-0.009576px;}
.ws3{word-spacing:-0.008388px;}
.ws4{word-spacing:0.000000px;}
.ws2a{word-spacing:0.038304px;}
.wsb{word-spacing:0.041940px;}
.ws6{word-spacing:0.043092px;}
.ws15{word-spacing:0.172800px;}
.ws10{word-spacing:0.187200px;}
.ws11{word-spacing:0.266400px;}
.ws1d{word-spacing:1.659312px;}
.ws28{word-spacing:2.350692px;}
.ws27{word-spacing:2.398788px;}
.ws14{word-spacing:3.787200px;}
.ws13{word-spacing:3.801600px;}
.ws12{word-spacing:3.880800px;}
.ws20{word-spacing:6.012000px;}
.ws21{word-spacing:6.060096px;}
.wsc{word-spacing:6.724800px;}
.wsd{word-spacing:6.732000px;}
.wsf{word-spacing:8.834400px;}
.ws1e{word-spacing:8.837640px;}
.wse{word-spacing:8.848800px;}
.ws22{word-spacing:9.979920px;}
.ws23{word-spacing:10.028016px;}
.ws26{word-spacing:12.048048px;}
.ws25{word-spacing:12.072096px;}
.ws1b{word-spacing:14.206356px;}
.ws17{word-spacing:14.224392px;}
.ws1a{word-spacing:14.236416px;}
.ws18{word-spacing:14.260464px;}
.ws19{word-spacing:14.314572px;}
.ws9{word-spacing:27.755892px;}
.ws16{word-spacing:27.931752px;}
.wsa{word-spacing:27.940428px;}
._1{margin-left:-1.148292px;}
._2{width:1.000692px;}
._4{width:48.168000px;}
._0{width:409.745412px;}
._3{width:2071.080000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(128,128,128);}
.fc1{color:rgb(170,170,170);}
.fc0{color:rgb(131,131,131);}
.fs4{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y6{bottom:74.639460px;}
.y5{bottom:91.199955px;}
.y4{bottom:107.760450px;}
.y3{bottom:140.070450px;}
.y2e{bottom:177.241620px;}
.y2d{bottom:197.851566px;}
.y2c{bottom:218.551287px;}
.y2b{bottom:239.251008px;}
.y31{bottom:253.020162px;}
.y2a{bottom:259.950729px;}
.y30{bottom:266.791584px;}
.y2f{bottom:280.561872px;}
.y29{bottom:280.650450px;}
.y28{bottom:298.471890px;}
.y27{bottom:328.531890px;}
.y26{bottom:345.721701px;}
.y25{bottom:363.001692px;}
.y24{bottom:380.281683px;}
.y23{bottom:397.471494px;}
.y22{bottom:414.751485px;}
.y21{bottom:432.031476px;}
.y20{bottom:449.221287px;}
.y1f{bottom:466.501278px;}
.y1e{bottom:483.781269px;}
.y1d{bottom:500.971080px;}
.y1c{bottom:518.251071px;}
.y1b{bottom:535.531062px;}
.y1a{bottom:552.720873px;}
.y19{bottom:570.000864px;}
.y18{bottom:587.280855px;}
.y17{bottom:604.470666px;}
.y16{bottom:621.750657px;}
.y15{bottom:638.940468px;}
.y14{bottom:656.220459px;}
.y13{bottom:673.500450px;}
.y12{bottom:706.890621px;}
.y11{bottom:734.610450px;}
.y10{bottom:770.610600px;}
.yf{bottom:794.460450px;}
.ye{bottom:833.250450px;}
.yd{bottom:857.010450px;}
.yc{bottom:880.860600px;}
.yb{bottom:903.180450px;}
.ya{bottom:927.390450px;}
.y9{bottom:951.510450px;}
.y8{bottom:984.450450px;}
.y7{bottom:1014.780450px;}
.y32{bottom:1018.830450px;}
.y2{bottom:1035.930108px;}
.y1{bottom:1099.020450px;}
.h5{height:43.929844px;}
.h3{height:49.937344px;}
.h7{height:56.320312px;}
.h2{height:62.703281px;}
.h4{height:70.664062px;}
.h6{height:75.093750px;}
.h1{height:87.484219px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x4{left:72.000000px;}
.x5{left:82.620000px;}
.x2{left:84.961944px;}
.x6{left:99.000000px;}
.x7{left:126.000000px;}
.x1{left:282.600000px;}
.x8{left:450.720027px;}
.x3{left:499.860000px;}
@media print{
.v1{vertical-align:-59.200960pt;}
.v2{vertical-align:-53.760000pt;}
.v0{vertical-align:0.000000pt;}
.ls27{letter-spacing:-0.655424pt;}
.ls1c{letter-spacing:-0.187040pt;}
.ls24{letter-spacing:-0.128256pt;}
.ls22{letter-spacing:-0.080160pt;}
.ls20{letter-spacing:-0.074816pt;}
.ls1e{letter-spacing:-0.053440pt;}
.ls18{letter-spacing:-0.044800pt;}
.ls1b{letter-spacing:-0.038400pt;}
.ls21{letter-spacing:-0.037408pt;}
.ls1f{letter-spacing:-0.032064pt;}
.ls19{letter-spacing:-0.032000pt;}
.ls1a{letter-spacing:-0.025600pt;}
.ls23{letter-spacing:-0.021376pt;}
.ls15{letter-spacing:-0.021280pt;}
.ls16{letter-spacing:-0.012800pt;}
.ls13{letter-spacing:-0.010688pt;}
.ls17{letter-spacing:-0.006400pt;}
.ls1d{letter-spacing:-0.005344pt;}
.ls14{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.005344pt;}
.ls1{letter-spacing:0.007456pt;}
.lse{letter-spacing:0.010688pt;}
.lsb{letter-spacing:0.016032pt;}
.ls11{letter-spacing:0.017024pt;}
.lsd{letter-spacing:0.021376pt;}
.ls2{letter-spacing:0.022368pt;}
.ls3{letter-spacing:0.025536pt;}
.lsa{letter-spacing:0.026720pt;}
.ls5{letter-spacing:0.029792pt;}
.lsf{letter-spacing:0.034048pt;}
.ls0{letter-spacing:0.037280pt;}
.ls12{letter-spacing:0.042560pt;}
.lsc{letter-spacing:0.042752pt;}
.ls6{letter-spacing:0.052192pt;}
.ls10{letter-spacing:0.055328pt;}
.ls7{letter-spacing:0.058784pt;}
.ls25{letter-spacing:0.302176pt;}
.ls26{letter-spacing:0.336224pt;}
.ls8{letter-spacing:56.502496pt;}
.ls4{letter-spacing:1316.168000pt;}
.ws0{word-spacing:-64.000000pt;}
.ws2{word-spacing:-11.874240pt;}
.ws1{word-spacing:-11.176256pt;}
.ws24{word-spacing:-0.149632pt;}
.ws29{word-spacing:-0.138944pt;}
.ws1c{word-spacing:-0.128256pt;}
.ws1f{word-spacing:-0.122912pt;}
.ws5{word-spacing:-0.117568pt;}
.ws2c{word-spacing:-0.038304pt;}
.ws2b{word-spacing:-0.017024pt;}
.ws8{word-spacing:-0.012768pt;}
.ws7{word-spacing:-0.008512pt;}
.ws3{word-spacing:-0.007456pt;}
.ws4{word-spacing:0.000000pt;}
.ws2a{word-spacing:0.034048pt;}
.wsb{word-spacing:0.037280pt;}
.ws6{word-spacing:0.038304pt;}
.ws15{word-spacing:0.153600pt;}
.ws10{word-spacing:0.166400pt;}
.ws11{word-spacing:0.236800pt;}
.ws1d{word-spacing:1.474944pt;}
.ws28{word-spacing:2.089504pt;}
.ws27{word-spacing:2.132256pt;}
.ws14{word-spacing:3.366400pt;}
.ws13{word-spacing:3.379200pt;}
.ws12{word-spacing:3.449600pt;}
.ws20{word-spacing:5.344000pt;}
.ws21{word-spacing:5.386752pt;}
.wsc{word-spacing:5.977600pt;}
.wsd{word-spacing:5.984000pt;}
.wsf{word-spacing:7.852800pt;}
.ws1e{word-spacing:7.855680pt;}
.wse{word-spacing:7.865600pt;}
.ws22{word-spacing:8.871040pt;}
.ws23{word-spacing:8.913792pt;}
.ws26{word-spacing:10.709376pt;}
.ws25{word-spacing:10.730752pt;}
.ws1b{word-spacing:12.627872pt;}
.ws17{word-spacing:12.643904pt;}
.ws1a{word-spacing:12.654592pt;}
.ws18{word-spacing:12.675968pt;}
.ws19{word-spacing:12.724064pt;}
.ws9{word-spacing:24.671904pt;}
.ws16{word-spacing:24.828224pt;}
.wsa{word-spacing:24.835936pt;}
._1{margin-left:-1.020704pt;}
._2{width:0.889504pt;}
._4{width:42.816000pt;}
._0{width:364.218144pt;}
._3{width:1840.960000pt;}
.fs4{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:66.346187pt;}
.y5{bottom:81.066627pt;}
.y4{bottom:95.787067pt;}
.y3{bottom:124.507067pt;}
.y2e{bottom:157.548107pt;}
.y2d{bottom:175.868059pt;}
.y2c{bottom:194.267811pt;}
.y2b{bottom:212.667563pt;}
.y31{bottom:224.906811pt;}
.y2a{bottom:231.067315pt;}
.y30{bottom:237.148075pt;}
.y2f{bottom:249.388331pt;}
.y29{bottom:249.467067pt;}
.y28{bottom:265.308347pt;}
.y27{bottom:292.028347pt;}
.y26{bottom:307.308179pt;}
.y25{bottom:322.668171pt;}
.y24{bottom:338.028163pt;}
.y23{bottom:353.307995pt;}
.y22{bottom:368.667987pt;}
.y21{bottom:384.027979pt;}
.y20{bottom:399.307811pt;}
.y1f{bottom:414.667803pt;}
.y1e{bottom:430.027795pt;}
.y1d{bottom:445.307627pt;}
.y1c{bottom:460.667619pt;}
.y1b{bottom:476.027611pt;}
.y1a{bottom:491.307443pt;}
.y19{bottom:506.667435pt;}
.y18{bottom:522.027427pt;}
.y17{bottom:537.307259pt;}
.y16{bottom:552.667251pt;}
.y15{bottom:567.947083pt;}
.y14{bottom:583.307075pt;}
.y13{bottom:598.667067pt;}
.y12{bottom:628.347219pt;}
.y11{bottom:652.987067pt;}
.y10{bottom:684.987200pt;}
.yf{bottom:706.187067pt;}
.ye{bottom:740.667067pt;}
.yd{bottom:761.787067pt;}
.yc{bottom:782.987200pt;}
.yb{bottom:802.827067pt;}
.ya{bottom:824.347067pt;}
.y9{bottom:845.787067pt;}
.y8{bottom:875.067067pt;}
.y7{bottom:902.027067pt;}
.y32{bottom:905.627067pt;}
.y2{bottom:920.826763pt;}
.y1{bottom:976.907067pt;}
.h5{height:39.048750pt;}
.h3{height:44.388750pt;}
.h7{height:50.062500pt;}
.h2{height:55.736250pt;}
.h4{height:62.812500pt;}
.h6{height:66.750000pt;}
.h1{height:77.763750pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x4{left:64.000000pt;}
.x5{left:73.440000pt;}
.x2{left:75.521728pt;}
.x6{left:88.000000pt;}
.x7{left:112.000000pt;}
.x1{left:251.200000pt;}
.x8{left:400.640024pt;}
.x3{left:444.320000pt;}
}




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