
    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_717d68d8ea5782cefb64a914.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_1ced599f135ccae8a907de76.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_28a250cbca2d2b3b2a6166b1.woff')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_0fb2dfae073d4abd9781c792.woff')format("woff");}.ff4{font-family:ff4;line-height:0.942383;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_cee5f28f90bbc1042fd09f0a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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);}
.v2{vertical-align:-75.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:75.600000px;}
.v1{vertical-align:100.800000px;}
.lsa{letter-spacing:-2.880000px;}
.ls9{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.232560px;}
.ls6{letter-spacing:174.960000px;}
.ls4{letter-spacing:194.400000px;}
.ls5{letter-spacing:213.789600px;}
.ls2{letter-spacing:213.840000px;}
.ls1{letter-spacing:223.200000px;}
.ls7{letter-spacing:231.516000px;}
.ls8{letter-spacing:231.540000px;}
.ls3{letter-spacing:233.280000px;}
.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;}
}
.ws7{word-spacing:-81.360000px;}
.ws5{word-spacing:-73.458720px;}
.ws3{word-spacing:-65.120544px;}
.ws2{word-spacing:-65.088000px;}
.ws1{word-spacing:-62.208000px;}
.ws4{word-spacing:-59.718240px;}
.ws6{word-spacing:-48.816000px;}
.ws0{word-spacing:-37.913760px;}
.ws8{word-spacing:0.000000px;}
._c{margin-left:-23.328000px;}
._d{margin-left:-22.248000px;}
._b{margin-left:-18.232560px;}
._a{margin-left:-14.639280px;}
._7{margin-left:-12.384000px;}
._0{margin-left:-9.707040px;}
._8{margin-left:-7.997760px;}
._9{margin-left:-6.112080px;}
._1{margin-left:-5.084640px;}
._3{margin-left:-3.153600px;}
._2{margin-left:-1.848960px;}
._5{width:1.533840px;}
._4{width:2.906160px;}
._6{width:10835.718240px;}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(89,89,89);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(192,0,0);}
.fs3{font-size:167.760000px;}
.fs9{font-size:216.000000px;}
.fs2{font-size:223.920000px;}
.fsa{font-size:239.760000px;}
.fs4{font-size:252.000000px;}
.fs8{font-size:264.240000px;}
.fsd{font-size:264.384000px;}
.fs6{font-size:288.000000px;}
.fs7{font-size:288.144000px;}
.fsb{font-size:324.000000px;}
.fs1{font-size:336.240000px;}
.fs5{font-size:360.000000px;}
.fs0{font-size:462.240000px;}
.fsc{font-size:518.400000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:25.230000px;}
.y2d{bottom:33.450000px;}
.y1f{bottom:59.940000px;}
.y2a{bottom:63.540000px;}
.y29{bottom:127.185000px;}
.y2c{bottom:141.915000px;}
.y1e{bottom:151.020000px;}
.y28{bottom:207.030000px;}
.y3d{bottom:245.700000px;}
.y37{bottom:301.710000px;}
.y27{bottom:329.370000px;}
.y3c{bottom:332.130000px;}
.y36{bottom:380.910000px;}
.y2e{bottom:422.670000px;}
.y35{bottom:460.110000px;}
.y26{bottom:479.415000px;}
.y1d{bottom:508.710000px;}
.y34{bottom:539.310000px;}
.y1c{bottom:587.910000px;}
.y33{bottom:618.510000px;}
.y25{bottom:639.105000px;}
.y1b{bottom:667.110000px;}
.y32{bottom:697.710000px;}
.y1a{bottom:746.310000px;}
.y24{bottom:789.150000px;}
.y19{bottom:825.510000px;}
.y18{bottom:904.710000px;}
.y23{bottom:911.490000px;}
.y22{bottom:991.335000px;}
.y21{bottom:1055.010000px;}
.y31{bottom:1109.370000px;}
.y17{bottom:1358.490000px;}
.y16{bottom:1444.890000px;}
.y15{bottom:1531.290000px;}
.y14{bottom:1617.690000px;}
.y3b{bottom:1651.500000px;}
.y13{bottom:1704.090000px;}
.y3a{bottom:1730.730000px;}
.y12{bottom:1790.490000px;}
.y39{bottom:1809.930000px;}
.y11{bottom:1876.935000px;}
.y38{bottom:1936.290000px;}
.y20{bottom:1992.420000px;}
.y10{bottom:2049.735000px;}
.yf{bottom:2136.135000px;}
.ye{bottom:2222.535000px;}
.yd{bottom:2308.935000px;}
.yc{bottom:2395.335000px;}
.yb{bottom:2481.735000px;}
.ya{bottom:2568.135000px;}
.y9{bottom:2740.965000px;}
.y8{bottom:2827.365000px;}
.y7{bottom:2913.765000px;}
.y6{bottom:3000.165000px;}
.y5{bottom:3086.565000px;}
.y30{bottom:3123.690000px;}
.y4{bottom:3212.130000px;}
.y2f{bottom:3231.690000px;}
.y3{bottom:3483.030000px;}
.y2{bottom:3541.320000px;}
.y1{bottom:3656.235000px;}
.h3{height:175.046484px;}
.h9{height:193.148086px;}
.hb{height:214.839844px;}
.h6{height:219.937500px;}
.hc{height:238.472227px;}
.h8{height:262.820742px;}
.h10{height:262.963969px;}
.h5{height:286.453125px;}
.hd{height:286.596352px;}
.h7{height:295.038070px;}
.he{height:322.259766px;}
.h2{height:344.284805px;}
.h4{height:368.613281px;}
.h1{height:473.299453px;}
.hf{height:515.615625px;}
.ha{height:1249.560000px;}
.h0{height:3888.000000px;}
.w2{width:1634.400000px;}
.w1{width:5183.999923px;}
.w0{width:5184.000000px;}
.x0{left:0.000000px;}
.x1d{left:6.015000px;}
.x1a{left:10.515000px;}
.x1b{left:114.630000px;}
.xe{left:127.799923px;}
.x2{left:131.111923px;}
.x1{left:137.303923px;}
.x19{left:200.190000px;}
.x18{left:216.900000px;}
.x23{left:218.309923px;}
.x1c{left:258.870000px;}
.x17{left:262.695000px;}
.x16{left:323.670000px;}
.x3{left:705.029923px;}
.x15{left:747.570000px;}
.x10{left:755.310000px;}
.x11{left:974.625000px;}
.x12{left:1112.940000px;}
.x13{left:1215.570000px;}
.x14{left:1270.185000px;}
.x1e{left:1487.085000px;}
.xf{left:1781.820000px;}
.x25{left:1805.549923px;}
.x24{left:1889.249923px;}
.x20{left:2079.569923px;}
.x26{left:2136.059923px;}
.x21{left:2473.229923px;}
.x27{left:3463.484923px;}
.x4{left:3493.949923px;}
.x8{left:3498.809923px;}
.xc{left:3538.949923px;}
.x5{left:3574.949923px;}
.x7{left:3577.469923px;}
.xd{left:3619.949923px;}
.x1f{left:3630.704923px;}
.x6{left:3636.149923px;}
.x9{left:3705.089923px;}
.x22{left:3881.774923px;}
.xa{left:3895.349923px;}
.xb{left:3964.289923px;}
@media print{
.v2{vertical-align:-67.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:67.200000pt;}
.v1{vertical-align:89.600000pt;}
.lsa{letter-spacing:-2.560000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.206720pt;}
.ls6{letter-spacing:155.520000pt;}
.ls4{letter-spacing:172.800000pt;}
.ls5{letter-spacing:190.035200pt;}
.ls2{letter-spacing:190.080000pt;}
.ls1{letter-spacing:198.400000pt;}
.ls7{letter-spacing:205.792000pt;}
.ls8{letter-spacing:205.813333pt;}
.ls3{letter-spacing:207.360000pt;}
.ws7{word-spacing:-72.320000pt;}
.ws5{word-spacing:-65.296640pt;}
.ws3{word-spacing:-57.884928pt;}
.ws2{word-spacing:-57.856000pt;}
.ws1{word-spacing:-55.296000pt;}
.ws4{word-spacing:-53.082880pt;}
.ws6{word-spacing:-43.392000pt;}
.ws0{word-spacing:-33.701120pt;}
.ws8{word-spacing:0.000000pt;}
._c{margin-left:-20.736000pt;}
._d{margin-left:-19.776000pt;}
._b{margin-left:-16.206720pt;}
._a{margin-left:-13.012693pt;}
._7{margin-left:-11.008000pt;}
._0{margin-left:-8.628480pt;}
._8{margin-left:-7.109120pt;}
._9{margin-left:-5.432960pt;}
._1{margin-left:-4.519680pt;}
._3{margin-left:-2.803200pt;}
._2{margin-left:-1.643520pt;}
._5{width:1.363413pt;}
._4{width:2.583253pt;}
._6{width:9631.749547pt;}
.fs3{font-size:149.120000pt;}
.fs9{font-size:192.000000pt;}
.fs2{font-size:199.040000pt;}
.fsa{font-size:213.120000pt;}
.fs4{font-size:224.000000pt;}
.fs8{font-size:234.880000pt;}
.fsd{font-size:235.008000pt;}
.fs6{font-size:256.000000pt;}
.fs7{font-size:256.128000pt;}
.fsb{font-size:288.000000pt;}
.fs1{font-size:298.880000pt;}
.fs5{font-size:320.000000pt;}
.fs0{font-size:410.880000pt;}
.fsc{font-size:460.800000pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:22.426667pt;}
.y2d{bottom:29.733333pt;}
.y1f{bottom:53.280000pt;}
.y2a{bottom:56.480000pt;}
.y29{bottom:113.053333pt;}
.y2c{bottom:126.146667pt;}
.y1e{bottom:134.240000pt;}
.y28{bottom:184.026667pt;}
.y3d{bottom:218.400000pt;}
.y37{bottom:268.186667pt;}
.y27{bottom:292.773333pt;}
.y3c{bottom:295.226667pt;}
.y36{bottom:338.586667pt;}
.y2e{bottom:375.706667pt;}
.y35{bottom:408.986667pt;}
.y26{bottom:426.146667pt;}
.y1d{bottom:452.186667pt;}
.y34{bottom:479.386667pt;}
.y1c{bottom:522.586667pt;}
.y33{bottom:549.786667pt;}
.y25{bottom:568.093333pt;}
.y1b{bottom:592.986667pt;}
.y32{bottom:620.186667pt;}
.y1a{bottom:663.386667pt;}
.y24{bottom:701.466667pt;}
.y19{bottom:733.786667pt;}
.y18{bottom:804.186667pt;}
.y23{bottom:810.213333pt;}
.y22{bottom:881.186667pt;}
.y21{bottom:937.786667pt;}
.y31{bottom:986.106667pt;}
.y17{bottom:1207.546667pt;}
.y16{bottom:1284.346667pt;}
.y15{bottom:1361.146667pt;}
.y14{bottom:1437.946667pt;}
.y3b{bottom:1468.000000pt;}
.y13{bottom:1514.746667pt;}
.y3a{bottom:1538.426667pt;}
.y12{bottom:1591.546667pt;}
.y39{bottom:1608.826667pt;}
.y11{bottom:1668.386667pt;}
.y38{bottom:1721.146667pt;}
.y20{bottom:1771.040000pt;}
.y10{bottom:1821.986667pt;}
.yf{bottom:1898.786667pt;}
.ye{bottom:1975.586667pt;}
.yd{bottom:2052.386667pt;}
.yc{bottom:2129.186667pt;}
.yb{bottom:2205.986667pt;}
.ya{bottom:2282.786667pt;}
.y9{bottom:2436.413333pt;}
.y8{bottom:2513.213333pt;}
.y7{bottom:2590.013333pt;}
.y6{bottom:2666.813333pt;}
.y5{bottom:2743.613333pt;}
.y30{bottom:2776.613333pt;}
.y4{bottom:2855.226667pt;}
.y2f{bottom:2872.613333pt;}
.y3{bottom:3096.026667pt;}
.y2{bottom:3147.840000pt;}
.y1{bottom:3249.986667pt;}
.h3{height:155.596875pt;}
.h9{height:171.687187pt;}
.hb{height:190.968750pt;}
.h6{height:195.500000pt;}
.hc{height:211.975312pt;}
.h8{height:233.618437pt;}
.h10{height:233.745750pt;}
.h5{height:254.625000pt;}
.hd{height:254.752312pt;}
.h7{height:262.256062pt;}
.he{height:286.453125pt;}
.h2{height:306.030937pt;}
.h4{height:327.656250pt;}
.h1{height:420.710625pt;}
.hf{height:458.325000pt;}
.ha{height:1110.720000pt;}
.h0{height:3456.000000pt;}
.w2{width:1452.800000pt;}
.w1{width:4607.999931pt;}
.w0{width:4608.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:5.346667pt;}
.x1a{left:9.346667pt;}
.x1b{left:101.893333pt;}
.xe{left:113.599931pt;}
.x2{left:116.543931pt;}
.x1{left:122.047931pt;}
.x19{left:177.946667pt;}
.x18{left:192.800000pt;}
.x23{left:194.053265pt;}
.x1c{left:230.106667pt;}
.x17{left:233.506667pt;}
.x16{left:287.706667pt;}
.x3{left:626.693265pt;}
.x15{left:664.506667pt;}
.x10{left:671.386667pt;}
.x11{left:866.333333pt;}
.x12{left:989.280000pt;}
.x13{left:1080.506667pt;}
.x14{left:1129.053333pt;}
.x1e{left:1321.853333pt;}
.xf{left:1583.840000pt;}
.x25{left:1604.933265pt;}
.x24{left:1679.333265pt;}
.x20{left:1848.506598pt;}
.x26{left:1898.719931pt;}
.x21{left:2198.426598pt;}
.x27{left:3078.653265pt;}
.x4{left:3105.733265pt;}
.x8{left:3110.053265pt;}
.xc{left:3145.733265pt;}
.x5{left:3177.733265pt;}
.x7{left:3179.973265pt;}
.xd{left:3217.733265pt;}
.x1f{left:3227.293265pt;}
.x6{left:3232.133265pt;}
.x9{left:3293.413265pt;}
.x22{left:3450.466598pt;}
.xa{left:3462.533265pt;}
.xb{left:3523.813265pt;}
}




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