
    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_880feac9b138740e2b8f73bf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936523;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_12cb70c5ca85142e4afc0f1e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.932129;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_0eca8e1e18d065552b92e8db.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b83c2a5bb41249938f2b136d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.932129;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_d8cdc074cf3b9a33a9d23fe8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.240195,0.069329,-0.069329,0.240195,0,0);-ms-transform:matrix(0.240195,0.069329,-0.069329,0.240195,0,0);-webkit-transform:matrix(0.240195,0.069329,-0.069329,0.240195,0,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);}
.m3{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);}
.v5{vertical-align:-93.546000px;}
.v7{vertical-align:-68.712000px;}
.v9{vertical-align:-65.304000px;}
.v8{vertical-align:-63.426000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:4.254000px;}
.v6{vertical-align:59.532000px;}
.v1{vertical-align:95.052000px;}
.v2{vertical-align:97.944000px;}
.v3{vertical-align:208.686000px;}
.v4{vertical-align:245.250000px;}
.va{vertical-align:260.562000px;}
.lsd{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.050115px;}
.lsb{letter-spacing:0.051779px;}
.ls9{letter-spacing:0.055880px;}
.ls1{letter-spacing:0.077184px;}
.ls8{letter-spacing:0.100032px;}
.ls0{letter-spacing:0.101184px;}
.ls3{letter-spacing:0.176958px;}
.ls2{letter-spacing:0.179184px;}
.ls4{letter-spacing:0.282971px;}
.lsa{letter-spacing:0.500353px;}
.lsc{letter-spacing:0.502017px;}
.ls7{letter-spacing:0.516462px;}
.ls5{letter-spacing:0.518126px;}
.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;}
}
.ws3{word-spacing:-119.664000px;}
.ws2{word-spacing:-79.761042px;}
.ws1{word-spacing:-78.110676px;}
.wse{word-spacing:-53.188986px;}
.ws0{word-spacing:-46.213572px;}
.ws8{word-spacing:-30.896580px;}
.ws7{word-spacing:-0.129600px;}
.wsf{word-spacing:0.000000px;}
.ws9{word-spacing:942.743760px;}
.ws6{word-spacing:978.998790px;}
.ws5{word-spacing:1114.850808px;}
.ws4{word-spacing:1179.095790px;}
.wsd{word-spacing:1288.688958px;}
.wsb{word-spacing:1298.333940px;}
.wsa{word-spacing:1418.234904px;}
.wsc{word-spacing:1474.802934px;}
._9{margin-left:-21.958416px;}
._2{margin-left:-13.442880px;}
._8{margin-left:-11.107212px;}
._a{margin-left:-9.024846px;}
._1{margin-left:-6.553404px;}
._0{margin-left:-3.996000px;}
._3{margin-left:-1.344288px;}
._4{width:1.691922px;}
._5{width:3.147696px;}
._7{width:5.508438px;}
._b{width:330.614808px;}
._c{width:925.673946px;}
._6{width:938.217438px;}
.fc3{color:rgb(95,72,209);}
.fc2{color:rgb(255,250,240);}
.fc4{color:transparent;}
.fc1{color:rgb(0,47,86);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:108.000000px;}
.fs8{font-size:111.540000px;}
.fsa{font-size:120.078000px;}
.fs7{font-size:129.600000px;}
.fs4{font-size:166.836000px;}
.fs1{font-size:168.036000px;}
.fs9{font-size:192.018000px;}
.fs6{font-size:281.988000px;}
.fs3{font-size:287.946000px;}
.fs5{font-size:432.000000px;}
.fs2{font-size:576.054000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y3{bottom:72.411000px;}
.y5{bottom:73.558500px;}
.y35{bottom:73.728000px;}
.y4{bottom:103.534500px;}
.y34{bottom:103.960500px;}
.y2{bottom:104.811000px;}
.y1b{bottom:178.624500px;}
.y1a{bottom:208.855500px;}
.y19{bottom:239.088000px;}
.yf{bottom:543.358500px;}
.ye{bottom:635.839500px;}
.yd{bottom:728.319000px;}
.y43{bottom:766.842000px;}
.y42{bottom:831.982500px;}
.yc{bottom:913.279500px;}
.y41{bottom:969.448500px;}
.y44{bottom:992.494500px;}
.yb{bottom:1005.760500px;}
.ya{bottom:1098.240000px;}
.y21{bottom:1168.228500px;}
.y9{bottom:1222.653000px;}
.y20{bottom:1248.675000px;}
.y14{bottom:1395.835500px;}
.y13{bottom:1488.316500px;}
.y12{bottom:1580.796000px;}
.y24{bottom:1652.314500px;}
.y11{bottom:1673.277000px;}
.y10{bottom:1765.756500px;}
.y22{bottom:1873.714500px;}
.y3f{bottom:1917.594000px;}
.y3e{bottom:2038.648500px;}
.y23{bottom:2251.842000px;}
.y40{bottom:2265.108000px;}
.y3d{bottom:2379.954000px;}
.y1f{bottom:2388.117000px;}
.y1e{bottom:2468.565000px;}
.y1d{bottom:2587.875000px;}
.y3c{bottom:2635.455000px;}
.y1c{bottom:2708.503500px;}
.y3b{bottom:2755.275000px;}
.y33{bottom:2912.556000px;}
.y17{bottom:2930.328000px;}
.y32{bottom:3005.035500px;}
.y31{bottom:3097.516500px;}
.y30{bottom:3189.996000px;}
.y2f{bottom:3282.477000px;}
.y16{bottom:3387.585000px;}
.y2e{bottom:3392.134500px;}
.y2d{bottom:3467.437500px;}
.y2c{bottom:3559.917000px;}
.y2b{bottom:3652.398000px;}
.y2a{bottom:3762.055500px;}
.y18{bottom:3774.345000px;}
.y29{bottom:3837.358500px;}
.y15{bottom:3924.567000px;}
.y28{bottom:3929.839500px;}
.y27{bottom:4022.319000px;}
.y3a{bottom:4060.033500px;}
.y39{bottom:4130.190000px;}
.y26{bottom:4131.978000px;}
.y38{bottom:4183.537500px;}
.y37{bottom:4237.353000px;}
.y25{bottom:4239.211500px;}
.y36{bottom:4291.210500px;}
.y8{bottom:4437.651000px;}
.y7{bottom:4636.728000px;}
.y6{bottom:4797.666000px;}
.h3{height:78.257812px;}
.hc{height:80.822930px;}
.hf{height:82.080000px;}
.he{height:87.009645px;}
.h4{height:121.760461px;}
.hd{height:139.138043px;}
.h12{height:139.224680px;}
.hb{height:139.936371px;}
.h9{height:204.331148px;}
.h8{height:208.648371px;}
.h11{height:212.902371px;}
.h6{height:218.834930px;}
.h7{height:313.031250px;}
.h5{height:417.414129px;}
.ha{height:453.898371px;}
.h10{height:469.210371px;}
.h2{height:5055.547500px;}
.h0{height:5055.590551px;}
.h1{height:5055.750000px;}
.w2{width:3575.862000px;}
.w0{width:3575.905512px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x1{left:77.980500px;}
.x9{left:80.787000px;}
.x4{left:114.802500px;}
.x3{left:127.558500px;}
.xe{left:140.314500px;}
.x12{left:225.525000px;}
.x13{left:231.477000px;}
.x14{left:514.615500px;}
.x16{left:518.824500px;}
.x15{left:548.079000px;}
.x17{left:555.562500px;}
.x11{left:670.833000px;}
.x2{left:1131.874500px;}
.xf{left:1802.835000px;}
.xd{left:1896.378000px;}
.x5{left:1900.630500px;}
.x10{left:1906.995000px;}
.x19{left:1926.141000px;}
.x1a{left:1930.393500px;}
.x6{left:1954.417500px;}
.xc{left:1965.132000px;}
.xa{left:1986.307500px;}
.xb{left:2002.336500px;}
.x7{left:2219.187000px;}
.x18{left:2474.646000px;}
.x1b{left:2494.969500px;}
.x8{left:2842.398000px;}
.x1c{left:3008.437500px;}
@media print{
.v5{vertical-align:-83.152000pt;}
.v7{vertical-align:-61.077333pt;}
.v9{vertical-align:-58.048000pt;}
.v8{vertical-align:-56.378667pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:3.781333pt;}
.v6{vertical-align:52.917333pt;}
.v1{vertical-align:84.490667pt;}
.v2{vertical-align:87.061333pt;}
.v3{vertical-align:185.498667pt;}
.v4{vertical-align:218.000000pt;}
.va{vertical-align:231.610667pt;}
.lsd{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.044547pt;}
.lsb{letter-spacing:0.046026pt;}
.ls9{letter-spacing:0.049671pt;}
.ls1{letter-spacing:0.068608pt;}
.ls8{letter-spacing:0.088917pt;}
.ls0{letter-spacing:0.089941pt;}
.ls3{letter-spacing:0.157296pt;}
.ls2{letter-spacing:0.159275pt;}
.ls4{letter-spacing:0.251530pt;}
.lsa{letter-spacing:0.444758pt;}
.lsc{letter-spacing:0.446237pt;}
.ls7{letter-spacing:0.459077pt;}
.ls5{letter-spacing:0.460556pt;}
.ws3{word-spacing:-106.368000pt;}
.ws2{word-spacing:-70.898704pt;}
.ws1{word-spacing:-69.431712pt;}
.wse{word-spacing:-47.279099pt;}
.ws0{word-spacing:-41.078731pt;}
.ws8{word-spacing:-27.463627pt;}
.ws7{word-spacing:-0.115200pt;}
.wsf{word-spacing:0.000000pt;}
.ws9{word-spacing:837.994453pt;}
.ws6{word-spacing:870.221147pt;}
.ws5{word-spacing:990.978496pt;}
.ws4{word-spacing:1048.085147pt;}
.wsd{word-spacing:1145.501296pt;}
.wsb{word-spacing:1154.074613pt;}
.wsa{word-spacing:1260.653248pt;}
.wsc{word-spacing:1310.935941pt;}
._9{margin-left:-19.518592pt;}
._2{margin-left:-11.949227pt;}
._8{margin-left:-9.873077pt;}
._a{margin-left:-8.022085pt;}
._1{margin-left:-5.825248pt;}
._0{margin-left:-3.552000pt;}
._3{margin-left:-1.194923pt;}
._4{width:1.503931pt;}
._5{width:2.797952pt;}
._7{width:4.896389pt;}
._b{width:293.879829pt;}
._c{width:822.821285pt;}
._6{width:833.971056pt;}
.fs0{font-size:96.000000pt;}
.fs8{font-size:99.146667pt;}
.fsa{font-size:106.736000pt;}
.fs7{font-size:115.200000pt;}
.fs4{font-size:148.298667pt;}
.fs1{font-size:149.365333pt;}
.fs9{font-size:170.682667pt;}
.fs6{font-size:250.656000pt;}
.fs3{font-size:255.952000pt;}
.fs5{font-size:384.000000pt;}
.fs2{font-size:512.048000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y3{bottom:64.365333pt;}
.y5{bottom:65.385333pt;}
.y35{bottom:65.536000pt;}
.y4{bottom:92.030667pt;}
.y34{bottom:92.409333pt;}
.y2{bottom:93.165333pt;}
.y1b{bottom:158.777333pt;}
.y1a{bottom:185.649333pt;}
.y19{bottom:212.522667pt;}
.yf{bottom:482.985333pt;}
.ye{bottom:565.190667pt;}
.yd{bottom:647.394667pt;}
.y43{bottom:681.637333pt;}
.y42{bottom:739.540000pt;}
.yc{bottom:811.804000pt;}
.y41{bottom:861.732000pt;}
.y44{bottom:882.217333pt;}
.yb{bottom:894.009333pt;}
.ya{bottom:976.213333pt;}
.y21{bottom:1038.425333pt;}
.y9{bottom:1086.802667pt;}
.y20{bottom:1109.933333pt;}
.y14{bottom:1240.742667pt;}
.y13{bottom:1322.948000pt;}
.y12{bottom:1405.152000pt;}
.y24{bottom:1468.724000pt;}
.y11{bottom:1487.357333pt;}
.y10{bottom:1569.561333pt;}
.y22{bottom:1665.524000pt;}
.y3f{bottom:1704.528000pt;}
.y3e{bottom:1812.132000pt;}
.y23{bottom:2001.637333pt;}
.y40{bottom:2013.429333pt;}
.y3d{bottom:2115.514667pt;}
.y1f{bottom:2122.770667pt;}
.y1e{bottom:2194.280000pt;}
.y1d{bottom:2300.333333pt;}
.y3c{bottom:2342.626667pt;}
.y1c{bottom:2407.558667pt;}
.y3b{bottom:2449.133333pt;}
.y33{bottom:2588.938667pt;}
.y17{bottom:2604.736000pt;}
.y32{bottom:2671.142667pt;}
.y31{bottom:2753.348000pt;}
.y30{bottom:2835.552000pt;}
.y2f{bottom:2917.757333pt;}
.y16{bottom:3011.186667pt;}
.y2e{bottom:3015.230667pt;}
.y2d{bottom:3082.166667pt;}
.y2c{bottom:3164.370667pt;}
.y2b{bottom:3246.576000pt;}
.y2a{bottom:3344.049333pt;}
.y18{bottom:3354.973333pt;}
.y29{bottom:3410.985333pt;}
.y15{bottom:3488.504000pt;}
.y28{bottom:3493.190667pt;}
.y27{bottom:3575.394667pt;}
.y3a{bottom:3608.918667pt;}
.y39{bottom:3671.280000pt;}
.y26{bottom:3672.869333pt;}
.y38{bottom:3718.700000pt;}
.y37{bottom:3766.536000pt;}
.y25{bottom:3768.188000pt;}
.y36{bottom:3814.409333pt;}
.y8{bottom:3944.578667pt;}
.y7{bottom:4121.536000pt;}
.y6{bottom:4264.592000pt;}
.h3{height:69.562500pt;}
.hc{height:71.842604pt;}
.hf{height:72.960000pt;}
.he{height:77.341906pt;}
.h4{height:108.231521pt;}
.hd{height:123.678260pt;}
.h12{height:123.755271pt;}
.hb{height:124.387885pt;}
.h9{height:181.627688pt;}
.h8{height:185.465219pt;}
.h11{height:189.246552pt;}
.h6{height:194.519937pt;}
.h7{height:278.250000pt;}
.h5{height:371.034781pt;}
.ha{height:403.465219pt;}
.h10{height:417.075885pt;}
.h2{height:4493.820000pt;}
.h0{height:4493.858268pt;}
.h1{height:4494.000000pt;}
.w2{width:3178.544000pt;}
.w0{width:3178.582677pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x1{left:69.316000pt;}
.x9{left:71.810667pt;}
.x4{left:102.046667pt;}
.x3{left:113.385333pt;}
.xe{left:124.724000pt;}
.x12{left:200.466667pt;}
.x13{left:205.757333pt;}
.x14{left:457.436000pt;}
.x16{left:461.177333pt;}
.x15{left:487.181333pt;}
.x17{left:493.833333pt;}
.x11{left:596.296000pt;}
.x2{left:1006.110667pt;}
.xf{left:1602.520000pt;}
.xd{left:1685.669333pt;}
.x5{left:1689.449333pt;}
.x10{left:1695.106667pt;}
.x19{left:1712.125333pt;}
.x1a{left:1715.905333pt;}
.x6{left:1737.260000pt;}
.xc{left:1746.784000pt;}
.xa{left:1765.606667pt;}
.xb{left:1779.854667pt;}
.x7{left:1972.610667pt;}
.x18{left:2199.685333pt;}
.x1b{left:2217.750667pt;}
.x8{left:2526.576000pt;}
.x1c{left:2674.166667pt;}
}




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