
    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_61063e98453c26759f555a06.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.850586;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_35c8b0b97f0ca3ddd7e79ad2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_a70646e852b49fa1f4e042d3.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e4cb5394eba58115cfe4460c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_9779f04c008a41d848a3223a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.854004;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_38600a2c7f455e57f5ab27c9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.975586;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:ff9;src:url('chunks/assets/font_870832e927280fdeebced5db.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.975586;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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-0.414600px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.066240px;}
.ls4{letter-spacing:0.305400px;}
.ls6{letter-spacing:5.959152px;}
.ls5{letter-spacing:6.007680px;}
.ls1{letter-spacing:59.321280px;}
.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;}
}
.ws2{word-spacing:-66.240000px;}
.ws4{word-spacing:-16.865400px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.145400px;}
.ws3{word-spacing:0.000000px;}
._2{margin-left:-2.386560px;}
._1{margin-left:-1.161600px;}
._0{width:1.845360px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:63.360000px;}
.fs4{font-size:63.504000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y7c{bottom:20.775000px;}
.y7b{bottom:37.725000px;}
.y7a{bottom:57.525000px;}
.y79{bottom:74.625000px;}
.y78{bottom:91.545000px;}
.y77{bottom:108.645000px;}
.y29{bottom:113.976000px;}
.y5c{bottom:115.956000px;}
.y6a{bottom:122.976000px;}
.y76{bottom:125.565000px;}
.y28{bottom:133.056000px;}
.y5b{bottom:134.856000px;}
.y69{bottom:141.876000px;}
.y27{bottom:151.950000px;}
.y5a{bottom:153.750000px;}
.y68{bottom:160.770000px;}
.y26{bottom:171.030000px;}
.y59{bottom:172.830000px;}
.y67{bottom:179.850000px;}
.y25{bottom:189.930000px;}
.y74{bottom:190.980000px;}
.y58{bottom:191.730000px;}
.y66{bottom:198.750000px;}
.y73{bottom:208.080000px;}
.y24{bottom:208.830000px;}
.y57{bottom:210.810000px;}
.y65{bottom:217.830000px;}
.y72{bottom:225.000000px;}
.y23{bottom:227.910000px;}
.y56{bottom:229.710000px;}
.y64{bottom:236.730000px;}
.y22{bottom:246.810000px;}
.y55{bottom:248.610000px;}
.y75{bottom:253.185000px;}
.y63{bottom:255.630000px;}
.y21{bottom:265.890000px;}
.y54{bottom:267.690000px;}
.y20{bottom:284.790000px;}
.y53{bottom:286.590000px;}
.y70{bottom:290.370000px;}
.y62{bottom:292.575000px;}
.y1f{bottom:303.915000px;}
.y52{bottom:305.715000px;}
.y6f{bottom:307.470000px;}
.y1e{bottom:322.815000px;}
.y6e{bottom:324.390000px;}
.y51{bottom:324.615000px;}
.y61{bottom:329.655000px;}
.y1d{bottom:341.715000px;}
.y50{bottom:343.695000px;}
.y60{bottom:348.735000px;}
.y71{bottom:352.620000px;}
.y1c{bottom:360.795000px;}
.y4f{bottom:362.595000px;}
.y5f{bottom:367.635000px;}
.y1b{bottom:379.695000px;}
.y4e{bottom:381.495000px;}
.y5e{bottom:386.535000px;}
.y4d{bottom:400.575000px;}
.y5d{bottom:401.835000px;}
.y1a{bottom:416.595000px;}
.y4c{bottom:419.475000px;}
.y4b{bottom:438.555000px;}
.y19{bottom:453.675000px;}
.y4a{bottom:457.455000px;}
.y18{bottom:472.575000px;}
.y49{bottom:476.355000px;}
.y17{bottom:491.655000px;}
.y48{bottom:495.435000px;}
.y16{bottom:510.555000px;}
.y47{bottom:514.335000px;}
.y15{bottom:529.635000px;}
.y46{bottom:533.415000px;}
.y14{bottom:548.565000px;}
.y45{bottom:552.345000px;}
.y13{bottom:568.725000px;}
.y44{bottom:571.245000px;}
.y12{bottom:588.885000px;}
.y43{bottom:590.325000px;}
.y11{bottom:609.045000px;}
.y42{bottom:609.225000px;}
.y41{bottom:628.305000px;}
.y10{bottom:629.205000px;}
.y40{bottom:647.205000px;}
.yf{bottom:648.105000px;}
.y6c{bottom:665.025000px;}
.y6d{bottom:665.100000px;}
.y3f{bottom:666.105000px;}
.ye{bottom:667.185000px;}
.y3e{bottom:685.185000px;}
.yd{bottom:686.085000px;}
.y3d{bottom:704.085000px;}
.yc{bottom:705.165000px;}
.y3c{bottom:723.165000px;}
.yb{bottom:724.065000px;}
.y3b{bottom:742.065000px;}
.ya{bottom:745.845000px;}
.y3a{bottom:760.965000px;}
.y9{bottom:767.805000px;}
.y39{bottom:780.045000px;}
.y8{bottom:789.765000px;}
.y38{bottom:798.945000px;}
.y37{bottom:818.070000px;}
.y7{bottom:823.830000px;}
.y36{bottom:836.970000px;}
.y6{bottom:845.790000px;}
.y35{bottom:856.050000px;}
.y5{bottom:867.750000px;}
.y34{bottom:874.950000px;}
.y4{bottom:889.710000px;}
.y33{bottom:893.850000px;}
.y32{bottom:912.930000px;}
.y31{bottom:931.830000px;}
.y3{bottom:941.550000px;}
.y30{bottom:950.910000px;}
.y2f{bottom:969.810000px;}
.y2e{bottom:988.710000px;}
.y2{bottom:990.870000px;}
.y2d{bottom:1007.790000px;}
.y2c{bottom:1026.690000px;}
.y1{bottom:1040.010000px;}
.y2b{bottom:1045.770000px;}
.y6b{bottom:1064.490000px;}
.y2a{bottom:1064.670000px;}
.h3{height:46.251562px;}
.h2{height:46.736719px;}
.h4{height:48.224531px;}
.h7{height:48.262500px;}
.h8{height:48.372187px;}
.h5{height:60.855469px;}
.h1{height:141.383672px;}
.h6{height:378.000000px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:108.035986px;}
.x5{left:111.995986px;}
.x7{left:119.195986px;}
.x6{left:120.275986px;}
.x3{left:135.035986px;}
.x2{left:140.435986px;}
.xa{left:158.324986px;}
.xb{left:165.164986px;}
.x8{left:420.554986px;}
.x9{left:758.309986px;}
.x4{left:810.149986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.368533pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.058880pt;}
.ls4{letter-spacing:0.271467pt;}
.ls6{letter-spacing:5.297024pt;}
.ls5{letter-spacing:5.340160pt;}
.ls1{letter-spacing:52.730027pt;}
.ws2{word-spacing:-58.880000pt;}
.ws4{word-spacing:-14.991467pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.351467pt;}
.ws3{word-spacing:0.000000pt;}
._2{margin-left:-2.121387pt;}
._1{margin-left:-1.032533pt;}
._0{width:1.640320pt;}
.fs3{font-size:56.320000pt;}
.fs4{font-size:56.448000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:18.466667pt;}
.y7b{bottom:33.533333pt;}
.y7a{bottom:51.133333pt;}
.y79{bottom:66.333333pt;}
.y78{bottom:81.373333pt;}
.y77{bottom:96.573333pt;}
.y29{bottom:101.312000pt;}
.y5c{bottom:103.072000pt;}
.y6a{bottom:109.312000pt;}
.y76{bottom:111.613333pt;}
.y28{bottom:118.272000pt;}
.y5b{bottom:119.872000pt;}
.y69{bottom:126.112000pt;}
.y27{bottom:135.066667pt;}
.y5a{bottom:136.666667pt;}
.y68{bottom:142.906667pt;}
.y26{bottom:152.026667pt;}
.y59{bottom:153.626667pt;}
.y67{bottom:159.866667pt;}
.y25{bottom:168.826667pt;}
.y74{bottom:169.760000pt;}
.y58{bottom:170.426667pt;}
.y66{bottom:176.666667pt;}
.y73{bottom:184.960000pt;}
.y24{bottom:185.626667pt;}
.y57{bottom:187.386667pt;}
.y65{bottom:193.626667pt;}
.y72{bottom:200.000000pt;}
.y23{bottom:202.586667pt;}
.y56{bottom:204.186667pt;}
.y64{bottom:210.426667pt;}
.y22{bottom:219.386667pt;}
.y55{bottom:220.986667pt;}
.y75{bottom:225.053333pt;}
.y63{bottom:227.226667pt;}
.y21{bottom:236.346667pt;}
.y54{bottom:237.946667pt;}
.y20{bottom:253.146667pt;}
.y53{bottom:254.746667pt;}
.y70{bottom:258.106667pt;}
.y62{bottom:260.066667pt;}
.y1f{bottom:270.146667pt;}
.y52{bottom:271.746667pt;}
.y6f{bottom:273.306667pt;}
.y1e{bottom:286.946667pt;}
.y6e{bottom:288.346667pt;}
.y51{bottom:288.546667pt;}
.y61{bottom:293.026667pt;}
.y1d{bottom:303.746667pt;}
.y50{bottom:305.506667pt;}
.y60{bottom:309.986667pt;}
.y71{bottom:313.440000pt;}
.y1c{bottom:320.706667pt;}
.y4f{bottom:322.306667pt;}
.y5f{bottom:326.786667pt;}
.y1b{bottom:337.506667pt;}
.y4e{bottom:339.106667pt;}
.y5e{bottom:343.586667pt;}
.y4d{bottom:356.066667pt;}
.y5d{bottom:357.186667pt;}
.y1a{bottom:370.306667pt;}
.y4c{bottom:372.866667pt;}
.y4b{bottom:389.826667pt;}
.y19{bottom:403.266667pt;}
.y4a{bottom:406.626667pt;}
.y18{bottom:420.066667pt;}
.y49{bottom:423.426667pt;}
.y17{bottom:437.026667pt;}
.y48{bottom:440.386667pt;}
.y16{bottom:453.826667pt;}
.y47{bottom:457.186667pt;}
.y15{bottom:470.786667pt;}
.y46{bottom:474.146667pt;}
.y14{bottom:487.613333pt;}
.y45{bottom:490.973333pt;}
.y13{bottom:505.533333pt;}
.y44{bottom:507.773333pt;}
.y12{bottom:523.453333pt;}
.y43{bottom:524.733333pt;}
.y11{bottom:541.373333pt;}
.y42{bottom:541.533333pt;}
.y41{bottom:558.493333pt;}
.y10{bottom:559.293333pt;}
.y40{bottom:575.293333pt;}
.yf{bottom:576.093333pt;}
.y6c{bottom:591.133333pt;}
.y6d{bottom:591.200000pt;}
.y3f{bottom:592.093333pt;}
.ye{bottom:593.053333pt;}
.y3e{bottom:609.053333pt;}
.yd{bottom:609.853333pt;}
.y3d{bottom:625.853333pt;}
.yc{bottom:626.813333pt;}
.y3c{bottom:642.813333pt;}
.yb{bottom:643.613333pt;}
.y3b{bottom:659.613333pt;}
.ya{bottom:662.973333pt;}
.y3a{bottom:676.413333pt;}
.y9{bottom:682.493333pt;}
.y39{bottom:693.373333pt;}
.y8{bottom:702.013333pt;}
.y38{bottom:710.173333pt;}
.y37{bottom:727.173333pt;}
.y7{bottom:732.293333pt;}
.y36{bottom:743.973333pt;}
.y6{bottom:751.813333pt;}
.y35{bottom:760.933333pt;}
.y5{bottom:771.333333pt;}
.y34{bottom:777.733333pt;}
.y4{bottom:790.853333pt;}
.y33{bottom:794.533333pt;}
.y32{bottom:811.493333pt;}
.y31{bottom:828.293333pt;}
.y3{bottom:836.933333pt;}
.y30{bottom:845.253333pt;}
.y2f{bottom:862.053333pt;}
.y2e{bottom:878.853333pt;}
.y2{bottom:880.773333pt;}
.y2d{bottom:895.813333pt;}
.y2c{bottom:912.613333pt;}
.y1{bottom:924.453333pt;}
.y2b{bottom:929.573333pt;}
.y6b{bottom:946.213333pt;}
.y2a{bottom:946.373333pt;}
.h3{height:41.112500pt;}
.h2{height:41.543750pt;}
.h4{height:42.866250pt;}
.h7{height:42.900000pt;}
.h8{height:42.997500pt;}
.h5{height:54.093750pt;}
.h1{height:125.674375pt;}
.h6{height:336.000000pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.x5{left:99.551988pt;}
.x7{left:105.951988pt;}
.x6{left:106.911988pt;}
.x3{left:120.031988pt;}
.x2{left:124.831988pt;}
.xa{left:140.733321pt;}
.xb{left:146.813321pt;}
.x8{left:373.826655pt;}
.x9{left:674.053321pt;}
.x4{left:720.133321pt;}
}




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