
    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_d3321ae4236406c6ee3e59c3.woff')format("woff");}.ff1{font-family:ff1;line-height:0.724609;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_6c1aed9a3ad8bb45a06ce848.woff')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_aaeea1d2c4185fcc0e00ce70.woff')format("woff");}.ff3{font-family:ff3;line-height:0.893066;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_1c784c98946eaea8da7f2276.woff')format("woff");}.ff4{font-family:ff4;line-height:0.863281;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_eb7db36752ea3288b78d912f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7{word-spacing:-55.944000px;}
.ws6{word-spacing:-40.968000px;}
.ws9{word-spacing:-38.798100px;}
.ws2c{word-spacing:-38.661000px;}
.ws2f{word-spacing:-38.655600px;}
.ws32{word-spacing:-38.577300px;}
.ws2b{word-spacing:-38.437200px;}
.ws30{word-spacing:-38.359800px;}
.ws35{word-spacing:-38.160000px;}
.ws13{word-spacing:-38.149200px;}
.ws0{word-spacing:-38.096400px;}
.ws1{word-spacing:-37.944000px;}
.ws26{word-spacing:-37.935600px;}
.ws3{word-spacing:-37.931400px;}
.wsc{word-spacing:-37.864800px;}
.wsb{word-spacing:-37.850700px;}
.wsa{word-spacing:-37.204200px;}
.ws19{word-spacing:-36.498000px;}
.ws29{word-spacing:-36.000000px;}
.ws2d{word-spacing:-35.053200px;}
.ws1e{word-spacing:-34.835400px;}
.ws22{word-spacing:-34.121400px;}
.ws18{word-spacing:-33.609600px;}
.ws8{word-spacing:-33.547800px;}
.ws1c{word-spacing:-32.175000px;}
.ws23{word-spacing:-32.173800px;}
.ws10{word-spacing:-31.453200px;}
.ws1a{word-spacing:-30.733200px;}
.ws16{word-spacing:-30.013200px;}
.ws17{word-spacing:-27.630000px;}
.ws12{word-spacing:-27.108000px;}
.ws34{word-spacing:-25.920000px;}
.ws28{word-spacing:-23.743800px;}
.wsd{word-spacing:-23.741100px;}
.ws5{word-spacing:-23.687700px;}
.wse{word-spacing:-23.544000px;}
.ws27{word-spacing:-22.815600px;}
.ws2a{word-spacing:-22.320000px;}
.ws33{word-spacing:-22.100400px;}
.ws1b{word-spacing:-21.587400px;}
.ws31{word-spacing:-20.670000px;}
.ws2e{word-spacing:-18.502800px;}
.ws1d{word-spacing:-17.268300px;}
.ws11{word-spacing:-15.832800px;}
.wsf{word-spacing:-5.535000px;}
.ws4{word-spacing:-5.177700px;}
.ws20{word-spacing:6.485400px;}
.ws1f{word-spacing:8.136000px;}
.ws24{word-spacing:12.249600px;}
.ws15{word-spacing:19.667700px;}
.ws14{word-spacing:20.168100px;}
.ws25{word-spacing:33.348600px;}
.ws21{word-spacing:40.342500px;}
.ws2{word-spacing:537.269400px;}
._16{margin-left:-2.329200px;}
._0{margin-left:-1.228800px;}
._3{width:1.089900px;}
._4{width:18.775200px;}
._15{width:20.146500px;}
._f{width:22.157400px;}
._b{width:23.524500px;}
._d{width:24.840000px;}
._7{width:26.104500px;}
._a{width:27.596700px;}
._8{width:30.266100px;}
._18{width:31.464000px;}
._5{width:33.821100px;}
._c{width:35.555400px;}
._17{width:37.314000px;}
._e{width:39.943200px;}
._6{width:51.885000px;}
._11{width:63.576000px;}
._10{width:65.366100px;}
._13{width:69.704700px;}
._1{width:71.928000px;}
._9{width:76.702500px;}
._14{width:90.491400px;}
._12{width:97.698600px;}
._2{width:432.072000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:66.300000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.300000px;}
.y0{bottom:0.000000px;}
.yb{bottom:4.486500px;}
.y8{bottom:34.725000px;}
.y9{bottom:42.571500px;}
.y32{bottom:143.715000px;}
.y31{bottom:179.536500px;}
.y30{bottom:200.236500px;}
.y2f{bottom:220.936500px;}
.y2e{bottom:256.575000px;}
.y2d{bottom:292.215000px;}
.y2c{bottom:312.915000px;}
.y2b{bottom:333.615000px;}
.y2a{bottom:354.315000px;}
.y29{bottom:375.015000px;}
.y28{bottom:395.715000px;}
.y27{bottom:416.415000px;}
.y26{bottom:437.115000px;}
.y25{bottom:457.815000px;}
.y24{bottom:478.515000px;}
.y23{bottom:499.215000px;}
.y22{bottom:519.915000px;}
.y21{bottom:540.615000px;}
.y20{bottom:561.315000px;}
.y1f{bottom:582.015000px;}
.y1e{bottom:602.715000px;}
.y1d{bottom:623.415000px;}
.y1c{bottom:644.115000px;}
.y1b{bottom:664.815000px;}
.y1a{bottom:685.515000px;}
.y19{bottom:706.215000px;}
.y18{bottom:726.915000px;}
.y17{bottom:762.736500px;}
.y16{bottom:783.436500px;}
.y15{bottom:819.075000px;}
.y14{bottom:839.775000px;}
.y13{bottom:860.475000px;}
.y12{bottom:881.175000px;}
.y11{bottom:901.875000px;}
.y10{bottom:922.575000px;}
.y37{bottom:931.936500px;}
.yf{bottom:958.215000px;}
.y36{bottom:967.575000px;}
.y35{bottom:988.275000px;}
.ye{bottom:994.036500px;}
.y34{bottom:1008.975000px;}
.yd{bottom:1029.675000px;}
.y33{bottom:1044.615000px;}
.yc{bottom:1065.315000px;}
.y7{bottom:1106.715000px;}
.y6{bottom:1127.415000px;}
.y5{bottom:1148.115000px;}
.y4{bottom:1168.815000px;}
.y3{bottom:1189.515000px;}
.y2{bottom:1210.215000px;}
.y1{bottom:1231.275000px;}
.ya{bottom:1231.650000px;}
.h7{height:20.175000px;}
.h4{height:48.761719px;}
.h3{height:48.796875px;}
.h6{height:49.304150px;}
.h8{height:50.027344px;}
.h5{height:58.275000px;}
.h2{height:60.467139px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:16.725000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.620000px;}
.x9{left:132.120000px;}
.x8{left:150.120000px;}
.x1{left:201.060000px;}
.x4{left:287.280000px;}
.x3{left:465.675000px;}
.x6{left:544.138500px;}
.x5{left:624.960000px;}
.x7{left:715.138500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws7{word-spacing:-49.728000pt;}
.ws6{word-spacing:-36.416000pt;}
.ws9{word-spacing:-34.487200pt;}
.ws2c{word-spacing:-34.365333pt;}
.ws2f{word-spacing:-34.360533pt;}
.ws32{word-spacing:-34.290933pt;}
.ws2b{word-spacing:-34.166400pt;}
.ws30{word-spacing:-34.097600pt;}
.ws35{word-spacing:-33.920000pt;}
.ws13{word-spacing:-33.910400pt;}
.ws0{word-spacing:-33.863467pt;}
.ws1{word-spacing:-33.728000pt;}
.ws26{word-spacing:-33.720533pt;}
.ws3{word-spacing:-33.716800pt;}
.wsc{word-spacing:-33.657600pt;}
.wsb{word-spacing:-33.645067pt;}
.wsa{word-spacing:-33.070400pt;}
.ws19{word-spacing:-32.442667pt;}
.ws29{word-spacing:-32.000000pt;}
.ws2d{word-spacing:-31.158400pt;}
.ws1e{word-spacing:-30.964800pt;}
.ws22{word-spacing:-30.330133pt;}
.ws18{word-spacing:-29.875200pt;}
.ws8{word-spacing:-29.820267pt;}
.ws1c{word-spacing:-28.600000pt;}
.ws23{word-spacing:-28.598933pt;}
.ws10{word-spacing:-27.958400pt;}
.ws1a{word-spacing:-27.318400pt;}
.ws16{word-spacing:-26.678400pt;}
.ws17{word-spacing:-24.560000pt;}
.ws12{word-spacing:-24.096000pt;}
.ws34{word-spacing:-23.040000pt;}
.ws28{word-spacing:-21.105600pt;}
.wsd{word-spacing:-21.103200pt;}
.ws5{word-spacing:-21.055733pt;}
.wse{word-spacing:-20.928000pt;}
.ws27{word-spacing:-20.280533pt;}
.ws2a{word-spacing:-19.840000pt;}
.ws33{word-spacing:-19.644800pt;}
.ws1b{word-spacing:-19.188800pt;}
.ws31{word-spacing:-18.373333pt;}
.ws2e{word-spacing:-16.446933pt;}
.ws1d{word-spacing:-15.349600pt;}
.ws11{word-spacing:-14.073600pt;}
.wsf{word-spacing:-4.920000pt;}
.ws4{word-spacing:-4.602400pt;}
.ws20{word-spacing:5.764800pt;}
.ws1f{word-spacing:7.232000pt;}
.ws24{word-spacing:10.888533pt;}
.ws15{word-spacing:17.482400pt;}
.ws14{word-spacing:17.927200pt;}
.ws25{word-spacing:29.643200pt;}
.ws21{word-spacing:35.860000pt;}
.ws2{word-spacing:477.572800pt;}
._16{margin-left:-2.070400pt;}
._0{margin-left:-1.092267pt;}
._3{width:0.968800pt;}
._4{width:16.689067pt;}
._15{width:17.908000pt;}
._f{width:19.695467pt;}
._b{width:20.910667pt;}
._d{width:22.080000pt;}
._7{width:23.204000pt;}
._a{width:24.530400pt;}
._8{width:26.903200pt;}
._18{width:27.968000pt;}
._5{width:30.063200pt;}
._c{width:31.604800pt;}
._17{width:33.168000pt;}
._e{width:35.505067pt;}
._6{width:46.120000pt;}
._11{width:56.512000pt;}
._10{width:58.103200pt;}
._13{width:61.959733pt;}
._1{width:63.936000pt;}
._9{width:68.180000pt;}
._14{width:80.436800pt;}
._12{width:86.843200pt;}
._2{width:384.064000pt;}
.fs2{font-size:58.933333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.933333pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:3.988000pt;}
.y8{bottom:30.866667pt;}
.y9{bottom:37.841333pt;}
.y32{bottom:127.746667pt;}
.y31{bottom:159.588000pt;}
.y30{bottom:177.988000pt;}
.y2f{bottom:196.388000pt;}
.y2e{bottom:228.066667pt;}
.y2d{bottom:259.746667pt;}
.y2c{bottom:278.146667pt;}
.y2b{bottom:296.546667pt;}
.y2a{bottom:314.946667pt;}
.y29{bottom:333.346667pt;}
.y28{bottom:351.746667pt;}
.y27{bottom:370.146667pt;}
.y26{bottom:388.546667pt;}
.y25{bottom:406.946667pt;}
.y24{bottom:425.346667pt;}
.y23{bottom:443.746667pt;}
.y22{bottom:462.146667pt;}
.y21{bottom:480.546667pt;}
.y20{bottom:498.946667pt;}
.y1f{bottom:517.346667pt;}
.y1e{bottom:535.746667pt;}
.y1d{bottom:554.146667pt;}
.y1c{bottom:572.546667pt;}
.y1b{bottom:590.946667pt;}
.y1a{bottom:609.346667pt;}
.y19{bottom:627.746667pt;}
.y18{bottom:646.146667pt;}
.y17{bottom:677.988000pt;}
.y16{bottom:696.388000pt;}
.y15{bottom:728.066667pt;}
.y14{bottom:746.466667pt;}
.y13{bottom:764.866667pt;}
.y12{bottom:783.266667pt;}
.y11{bottom:801.666667pt;}
.y10{bottom:820.066667pt;}
.y37{bottom:828.388000pt;}
.yf{bottom:851.746667pt;}
.y36{bottom:860.066667pt;}
.y35{bottom:878.466667pt;}
.ye{bottom:883.588000pt;}
.y34{bottom:896.866667pt;}
.yd{bottom:915.266667pt;}
.y33{bottom:928.546667pt;}
.yc{bottom:946.946667pt;}
.y7{bottom:983.746667pt;}
.y6{bottom:1002.146667pt;}
.y5{bottom:1020.546667pt;}
.y4{bottom:1038.946667pt;}
.y3{bottom:1057.346667pt;}
.y2{bottom:1075.746667pt;}
.y1{bottom:1094.466667pt;}
.ya{bottom:1094.800000pt;}
.h7{height:17.933333pt;}
.h4{height:43.343750pt;}
.h3{height:43.375000pt;}
.h6{height:43.825911pt;}
.h8{height:44.468750pt;}
.h5{height:51.800000pt;}
.h2{height:53.748568pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:14.866667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.440000pt;}
.x9{left:117.440000pt;}
.x8{left:133.440000pt;}
.x1{left:178.720000pt;}
.x4{left:255.360000pt;}
.x3{left:413.933333pt;}
.x6{left:483.678667pt;}
.x5{left:555.520000pt;}
.x7{left:635.678667pt;}
}




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