
    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_e7b63e79bc095ff1c7734e76.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3cc418668b3cdc9514ea1b1e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.858398;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_e57bb84a6d89d422e505e7e9.woff')format("woff");}.ff3{font-family:ff3;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;}
.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;}
}
.ws6{word-spacing:-55.944000px;}
.ws7{word-spacing:-38.784900px;}
.ws42{word-spacing:-38.660400px;}
.ws5{word-spacing:-38.655900px;}
.ws3{word-spacing:-38.652300px;}
.ws3a{word-spacing:-38.645400px;}
.ws10{word-spacing:-38.435400px;}
.ws3e{word-spacing:-38.160600px;}
.ws40{word-spacing:-38.160000px;}
.ws4{word-spacing:-38.157000px;}
.ws37{word-spacing:-38.156400px;}
.ws30{word-spacing:-38.145000px;}
.ws2{word-spacing:-38.081700px;}
.ws0{word-spacing:-37.944000px;}
.ws13{word-spacing:-37.935900px;}
.ws29{word-spacing:-37.933200px;}
.ws2e{word-spacing:-37.920600px;}
.ws3d{word-spacing:-37.918200px;}
.ws32{word-spacing:-37.914600px;}
.ws8{word-spacing:-37.843500px;}
.ws2b{word-spacing:-37.720800px;}
.ws3f{word-spacing:-37.639800px;}
.ws24{word-spacing:-37.422000px;}
.ws12{word-spacing:-35.053200px;}
.ws28{word-spacing:-34.835400px;}
.ws18{word-spacing:-34.326000px;}
.ws11{word-spacing:-33.831900px;}
.ws22{word-spacing:-32.893200px;}
.ws2c{word-spacing:-32.891400px;}
.wsf{word-spacing:-32.400000px;}
.wsd{word-spacing:-32.382000px;}
.ws15{word-spacing:-32.180400px;}
.ws26{word-spacing:-31.455600px;}
.ws19{word-spacing:-30.733200px;}
.ws20{word-spacing:-30.004200px;}
.ws2f{word-spacing:-29.511000px;}
.ws27{word-spacing:-29.293200px;}
.ws1d{word-spacing:-28.795200px;}
.wse{word-spacing:-27.846600px;}
.wsa{word-spacing:-24.480000px;}
.ws23{word-spacing:-23.536200px;}
.ws21{word-spacing:-23.535000px;}
.ws1f{word-spacing:-23.529600px;}
.ws3b{word-spacing:-23.510400px;}
.ws41{word-spacing:-23.020200px;}
.wsc{word-spacing:-22.813200px;}
.ws14{word-spacing:-19.190700px;}
.ws25{word-spacing:-17.268000px;}
.ws39{word-spacing:-16.835400px;}
.wsb{word-spacing:-14.177400px;}
.ws1a{word-spacing:-13.458600px;}
.ws16{word-spacing:-13.240800px;}
.ws2a{word-spacing:-10.063200px;}
.ws2d{word-spacing:-9.144000px;}
.ws1c{word-spacing:-6.480000px;}
.ws17{word-spacing:-6.188400px;}
.ws3c{word-spacing:0.216000px;}
.ws9{word-spacing:6.492000px;}
.ws1b{word-spacing:6.704400px;}
.ws38{word-spacing:18.220800px;}
.ws1e{word-spacing:22.550400px;}
.ws31{word-spacing:23.256000px;}
.ws35{word-spacing:58.039200px;}
.ws33{word-spacing:79.942800px;}
.ws36{word-spacing:102.469200px;}
.ws34{word-spacing:173.964600px;}
.ws1{word-spacing:1037.484900px;}
._2{margin-left:-1.092600px;}
._0{width:1.076400px;}
._1{width:18.968400px;}
._8{width:22.095900px;}
._c{width:23.486400px;}
._6{width:24.894000px;}
._d{width:26.416800px;}
._e{width:28.236600px;}
._7{width:29.520000px;}
._4{width:32.466000px;}
._10{width:33.598800px;}
._9{width:38.054700px;}
._11{width:40.020000px;}
._5{width:42.984000px;}
._a{width:44.132400px;}
._12{width:47.082000px;}
._b{width:51.564600px;}
._1a{width:57.616200px;}
._3{width:64.075800px;}
._19{width:75.310800px;}
._14{width:77.628600px;}
._f{width:79.977600px;}
._13{width:94.840200px;}
._17{width:115.621200px;}
._15{width:137.569200px;}
._18{width:159.480000px;}
._16{width:231.192000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:63.975000px;}
.y29{bottom:135.075000px;}
.y28{bottom:155.775000px;}
.y27{bottom:176.475000px;}
.y48{bottom:202.936500px;}
.y26{bottom:218.236500px;}
.y25{bottom:238.936500px;}
.y47{bottom:244.696500px;}
.y24{bottom:259.636500px;}
.y46{bottom:265.396500px;}
.y23{bottom:280.336500px;}
.y22{bottom:301.036500px;}
.y45{bottom:306.975000px;}
.y21{bottom:321.736500px;}
.y20{bottom:342.436500px;}
.y44{bottom:348.736500px;}
.y1f{bottom:363.136500px;}
.y1e{bottom:383.836500px;}
.y43{bottom:390.496500px;}
.y1d{bottom:404.536500px;}
.y1c{bottom:425.236500px;}
.y42{bottom:432.075000px;}
.y1b{bottom:445.936500px;}
.y1a{bottom:466.636500px;}
.y41{bottom:473.836500px;}
.y19{bottom:487.336500px;}
.y40{bottom:494.536500px;}
.y18{bottom:508.036500px;}
.y3f{bottom:515.236500px;}
.y17{bottom:528.736500px;}
.y3e{bottom:535.936500px;}
.y16{bottom:549.436500px;}
.y3d{bottom:577.695000px;}
.y15{bottom:591.195000px;}
.y14{bottom:611.896500px;}
.y3c{bottom:619.275000px;}
.y3b{bottom:639.975000px;}
.y13{bottom:653.475000px;}
.y3a{bottom:660.675000px;}
.y12{bottom:674.175000px;}
.y11{bottom:694.875000px;}
.y39{bottom:702.436500px;}
.y10{bottom:715.575000px;}
.y38{bottom:723.136500px;}
.yf{bottom:736.275000px;}
.y37{bottom:743.836500px;}
.ye{bottom:756.975000px;}
.y36{bottom:764.536500px;}
.yd{bottom:777.675000px;}
.y35{bottom:785.236500px;}
.yc{bottom:798.375000px;}
.y34{bottom:826.996500px;}
.y33{bottom:847.695000px;}
.yb{bottom:881.895000px;}
.y32{bottom:889.275000px;}
.ya{bottom:902.595000px;}
.y31{bottom:909.975000px;}
.y30{bottom:951.736500px;}
.y2f{bottom:972.436500px;}
.y9{bottom:987.375000px;}
.y2e{bottom:1014.195000px;}
.y8{bottom:1030.395000px;}
.y2d{bottom:1034.895000px;}
.y7{bottom:1073.415000px;}
.y2c{bottom:1076.475000px;}
.y2b{bottom:1097.175000px;}
.y6{bottom:1116.615000px;}
.y2a{bottom:1138.936500px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h3{height:32.700000px;}
.h2{height:48.796875px;}
.h4{height:48.972656px;}
.h5{height:50.027344px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:11.760000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.xa{left:130.138500px;}
.x2{left:160.560000px;}
.xb{left:203.038500px;}
.x8{left:288.720000px;}
.x5{left:297.900000px;}
.x7{left:302.400000px;}
.x6{left:313.020000px;}
.x9{left:358.560000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws6{word-spacing:-49.728000pt;}
.ws7{word-spacing:-34.475467pt;}
.ws42{word-spacing:-34.364800pt;}
.ws5{word-spacing:-34.360800pt;}
.ws3{word-spacing:-34.357600pt;}
.ws3a{word-spacing:-34.351467pt;}
.ws10{word-spacing:-34.164800pt;}
.ws3e{word-spacing:-33.920533pt;}
.ws40{word-spacing:-33.920000pt;}
.ws4{word-spacing:-33.917333pt;}
.ws37{word-spacing:-33.916800pt;}
.ws30{word-spacing:-33.906667pt;}
.ws2{word-spacing:-33.850400pt;}
.ws0{word-spacing:-33.728000pt;}
.ws13{word-spacing:-33.720800pt;}
.ws29{word-spacing:-33.718400pt;}
.ws2e{word-spacing:-33.707200pt;}
.ws3d{word-spacing:-33.705067pt;}
.ws32{word-spacing:-33.701867pt;}
.ws8{word-spacing:-33.638667pt;}
.ws2b{word-spacing:-33.529600pt;}
.ws3f{word-spacing:-33.457600pt;}
.ws24{word-spacing:-33.264000pt;}
.ws12{word-spacing:-31.158400pt;}
.ws28{word-spacing:-30.964800pt;}
.ws18{word-spacing:-30.512000pt;}
.ws11{word-spacing:-30.072800pt;}
.ws22{word-spacing:-29.238400pt;}
.ws2c{word-spacing:-29.236800pt;}
.wsf{word-spacing:-28.800000pt;}
.wsd{word-spacing:-28.784000pt;}
.ws15{word-spacing:-28.604800pt;}
.ws26{word-spacing:-27.960533pt;}
.ws19{word-spacing:-27.318400pt;}
.ws20{word-spacing:-26.670400pt;}
.ws2f{word-spacing:-26.232000pt;}
.ws27{word-spacing:-26.038400pt;}
.ws1d{word-spacing:-25.595733pt;}
.wse{word-spacing:-24.752533pt;}
.wsa{word-spacing:-21.760000pt;}
.ws23{word-spacing:-20.921067pt;}
.ws21{word-spacing:-20.920000pt;}
.ws1f{word-spacing:-20.915200pt;}
.ws3b{word-spacing:-20.898133pt;}
.ws41{word-spacing:-20.462400pt;}
.wsc{word-spacing:-20.278400pt;}
.ws14{word-spacing:-17.058400pt;}
.ws25{word-spacing:-15.349333pt;}
.ws39{word-spacing:-14.964800pt;}
.wsb{word-spacing:-12.602133pt;}
.ws1a{word-spacing:-11.963200pt;}
.ws16{word-spacing:-11.769600pt;}
.ws2a{word-spacing:-8.945067pt;}
.ws2d{word-spacing:-8.128000pt;}
.ws1c{word-spacing:-5.760000pt;}
.ws17{word-spacing:-5.500800pt;}
.ws3c{word-spacing:0.192000pt;}
.ws9{word-spacing:5.770667pt;}
.ws1b{word-spacing:5.959467pt;}
.ws38{word-spacing:16.196267pt;}
.ws1e{word-spacing:20.044800pt;}
.ws31{word-spacing:20.672000pt;}
.ws35{word-spacing:51.590400pt;}
.ws33{word-spacing:71.060267pt;}
.ws36{word-spacing:91.083733pt;}
.ws34{word-spacing:154.635200pt;}
.ws1{word-spacing:922.208800pt;}
._2{margin-left:-0.971200pt;}
._0{width:0.956800pt;}
._1{width:16.860800pt;}
._8{width:19.640800pt;}
._c{width:20.876800pt;}
._6{width:22.128000pt;}
._d{width:23.481600pt;}
._e{width:25.099200pt;}
._7{width:26.240000pt;}
._4{width:28.858667pt;}
._10{width:29.865600pt;}
._9{width:33.826400pt;}
._11{width:35.573333pt;}
._5{width:38.208000pt;}
._a{width:39.228800pt;}
._12{width:41.850667pt;}
._b{width:45.835200pt;}
._1a{width:51.214400pt;}
._3{width:56.956267pt;}
._19{width:66.942933pt;}
._14{width:69.003200pt;}
._f{width:71.091200pt;}
._13{width:84.302400pt;}
._17{width:102.774400pt;}
._15{width:122.283733pt;}
._18{width:141.760000pt;}
._16{width:205.504000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:56.866667pt;}
.y29{bottom:120.066667pt;}
.y28{bottom:138.466667pt;}
.y27{bottom:156.866667pt;}
.y48{bottom:180.388000pt;}
.y26{bottom:193.988000pt;}
.y25{bottom:212.388000pt;}
.y47{bottom:217.508000pt;}
.y24{bottom:230.788000pt;}
.y46{bottom:235.908000pt;}
.y23{bottom:249.188000pt;}
.y22{bottom:267.588000pt;}
.y45{bottom:272.866667pt;}
.y21{bottom:285.988000pt;}
.y20{bottom:304.388000pt;}
.y44{bottom:309.988000pt;}
.y1f{bottom:322.788000pt;}
.y1e{bottom:341.188000pt;}
.y43{bottom:347.108000pt;}
.y1d{bottom:359.588000pt;}
.y1c{bottom:377.988000pt;}
.y42{bottom:384.066667pt;}
.y1b{bottom:396.388000pt;}
.y1a{bottom:414.788000pt;}
.y41{bottom:421.188000pt;}
.y19{bottom:433.188000pt;}
.y40{bottom:439.588000pt;}
.y18{bottom:451.588000pt;}
.y3f{bottom:457.988000pt;}
.y17{bottom:469.988000pt;}
.y3e{bottom:476.388000pt;}
.y16{bottom:488.388000pt;}
.y3d{bottom:513.506667pt;}
.y15{bottom:525.506667pt;}
.y14{bottom:543.908000pt;}
.y3c{bottom:550.466667pt;}
.y3b{bottom:568.866667pt;}
.y13{bottom:580.866667pt;}
.y3a{bottom:587.266667pt;}
.y12{bottom:599.266667pt;}
.y11{bottom:617.666667pt;}
.y39{bottom:624.388000pt;}
.y10{bottom:636.066667pt;}
.y38{bottom:642.788000pt;}
.yf{bottom:654.466667pt;}
.y37{bottom:661.188000pt;}
.ye{bottom:672.866667pt;}
.y36{bottom:679.588000pt;}
.yd{bottom:691.266667pt;}
.y35{bottom:697.988000pt;}
.yc{bottom:709.666667pt;}
.y34{bottom:735.108000pt;}
.y33{bottom:753.506667pt;}
.yb{bottom:783.906667pt;}
.y32{bottom:790.466667pt;}
.ya{bottom:802.306667pt;}
.y31{bottom:808.866667pt;}
.y30{bottom:845.988000pt;}
.y2f{bottom:864.388000pt;}
.y9{bottom:877.666667pt;}
.y2e{bottom:901.506667pt;}
.y8{bottom:915.906667pt;}
.y2d{bottom:919.906667pt;}
.y7{bottom:954.146667pt;}
.y2c{bottom:956.866667pt;}
.y2b{bottom:975.266667pt;}
.y6{bottom:992.546667pt;}
.y2a{bottom:1012.388000pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h3{height:29.066667pt;}
.h2{height:43.375000pt;}
.h4{height:43.531250pt;}
.h5{height:44.468750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:10.453333pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.xa{left:115.678667pt;}
.x2{left:142.720000pt;}
.xb{left:180.478667pt;}
.x8{left:256.640000pt;}
.x5{left:264.800000pt;}
.x7{left:268.800000pt;}
.x6{left:278.240000pt;}
.x9{left:318.720000pt;}
}




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