
    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_23e5b05a27eea3af3a11fc94.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_3cec9d293f94dfd0b9c4c1ae.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_dd18db309f8e5a02619ce221.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_d1c90a35eb3db153c3615be9.woff2')format("woff");}.ff4{font-family:ff4;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;}
.m0{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,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:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.723433px;}
.ls1{letter-spacing:0.724033px;}
.ls3{letter-spacing:6.484321px;}
.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;}
}
.ws0{word-spacing:-16.559850px;}
.ws2{word-spacing:-15.120000px;}
.ws3{word-spacing:-9.720000px;}
.ws1{word-spacing:0.000000px;}
._13{margin-left:-5.306863px;}
._d{margin-left:-3.816025px;}
._2{margin-left:-2.473895px;}
._0{margin-left:-1.391040px;}
._1{width:1.149120px;}
._4{width:2.252152px;}
._3{width:3.326555px;}
._9{width:4.353133px;}
._a{width:5.497895px;}
._b{width:6.707784px;}
._c{width:7.933583px;}
._11{width:10.238045px;}
._e{width:11.480059px;}
._5{width:12.939721px;}
._7{width:14.151305px;}
._6{width:15.387680px;}
._12{width:16.511040px;}
._f{width:18.132431px;}
._10{width:19.579349px;}
._16{width:81.207286px;}
._14{width:82.373760px;}
._15{width:83.759015px;}
._8{width:849.052835px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs4{font-size:54.719400px;}
.fs1{font-size:60.480000px;}
.fs2{font-size:66.239400px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.600000px;}
.y1{bottom:78.480000px;}
.y6c{bottom:123.479850px;}
.y48{bottom:132.479850px;}
.y6b{bottom:149.760000px;}
.y47{bottom:158.400000px;}
.y6a{bottom:175.680000px;}
.y71{bottom:183.600000px;}
.y46{bottom:184.320000px;}
.y69{bottom:197.640000px;}
.y45{bottom:210.240000px;}
.y44{bottom:236.160000px;}
.y43{bottom:261.720000px;}
.y62{bottom:274.320000px;}
.y42{bottom:287.640000px;}
.y61{bottom:300.240000px;}
.y41{bottom:313.560000px;}
.y55{bottom:317.520000px;}
.y2b{bottom:324.720000px;}
.y60{bottom:326.160000px;}
.y70{bottom:339.120000px;}
.y40{bottom:339.480000px;}
.y54{bottom:343.080000px;}
.y2a{bottom:351.360000px;}
.y5f{bottom:351.720000px;}
.y3f{bottom:365.400000px;}
.y53{bottom:369.000000px;}
.y29{bottom:376.920000px;}
.y5e{bottom:377.640000px;}
.y3e{bottom:391.320000px;}
.y52{bottom:394.919850px;}
.y28{bottom:402.840000px;}
.y5d{bottom:403.560000px;}
.y3d{bottom:417.240000px;}
.y51{bottom:420.840000px;}
.y27{bottom:428.759850px;}
.y5c{bottom:429.480000px;}
.y3c{bottom:443.160000px;}
.y50{bottom:446.759850px;}
.y26{bottom:454.680000px;}
.y5b{bottom:455.400000px;}
.y3b{bottom:468.720000px;}
.y4f{bottom:472.680000px;}
.y25{bottom:480.600000px;}
.y5a{bottom:481.320000px;}
.y3a{bottom:494.280000px;}
.y6f{bottom:494.640000px;}
.y4e{bottom:498.600000px;}
.y68{bottom:499.320000px;}
.y24{bottom:506.520000px;}
.y59{bottom:506.880000px;}
.y39{bottom:520.200000px;}
.y6e{bottom:520.560000px;}
.y4d{bottom:524.160000px;}
.y67{bottom:525.240000px;}
.y23{bottom:532.440000px;}
.y38{bottom:546.480000px;}
.y66{bottom:547.560000px;}
.y4c{bottom:550.080000px;}
.y22{bottom:558.360000px;}
.y58{bottom:559.800000px;}
.y37{bottom:572.400000px;}
.y4b{bottom:575.640000px;}
.y21{bottom:583.919850px;}
.y36{bottom:598.320000px;}
.y4a{bottom:601.919850px;}
.y20{bottom:609.840000px;}
.y35{bottom:624.240000px;}
.y1f{bottom:636.480000px;}
.y34{bottom:649.800000px;}
.y1e{bottom:669.240000px;}
.y33{bottom:675.720000px;}
.y80{bottom:680.760000px;}
.yc{bottom:697.320000px;}
.y1d{bottom:701.640000px;}
.y7f{bottom:707.040000px;}
.y1c{bottom:727.560000px;}
.yb{bottom:727.920000px;}
.y7e{bottom:732.240000px;}
.y1b{bottom:753.480000px;}
.ya{bottom:758.520000px;}
.y65{bottom:760.680000px;}
.y1a{bottom:779.400000px;}
.y7d{bottom:784.440000px;}
.y64{bottom:786.600000px;}
.y9{bottom:789.839850px;}
.y73{bottom:804.600000px;}
.y32{bottom:805.320000px;}
.y63{bottom:808.560000px;}
.y7c{bottom:810.360000px;}
.y8{bottom:810.720000px;}
.y72{bottom:830.880000px;}
.y7{bottom:831.240000px;}
.y7b{bottom:836.280000px;}
.y19{bottom:836.640000px;}
.y6{bottom:851.760000px;}
.y31{bottom:856.800000px;}
.y7a{bottom:861.839850px;}
.y18{bottom:862.200000px;}
.y30{bottom:882.720000px;}
.y5{bottom:883.080000px;}
.y79{bottom:886.680000px;}
.y17{bottom:888.120000px;}
.y2f{bottom:908.640000px;}
.y78{bottom:911.160000px;}
.y4{bottom:913.680000px;}
.y16{bottom:914.040000px;}
.y57{bottom:916.200000px;}
.y2e{bottom:934.560000px;}
.y77{bottom:936.720000px;}
.y15{bottom:939.960000px;}
.y3{bottom:941.400000px;}
.y56{bottom:943.560000px;}
.y2d{bottom:960.480000px;}
.y76{bottom:961.560000px;}
.y14{bottom:965.880000px;}
.y13{bottom:986.400000px;}
.y75{bottom:1011.960000px;}
.y12{bottom:1012.320000px;}
.y74{bottom:1037.880000px;}
.y11{bottom:1038.240000px;}
.y10{bottom:1063.800000px;}
.y2c{bottom:1089.360000px;}
.yf{bottom:1089.720000px;}
.ye{bottom:1115.280000px;}
.y6d{bottom:1115.640000px;}
.yd{bottom:1141.200000px;}
.y49{bottom:1141.560000px;}
.h6{height:38.158594px;}
.h9{height:53.704099px;}
.h8{height:55.146895px;}
.h4{height:59.357813px;}
.h5{height:59.758594px;}
.h2{height:60.952500px;}
.h3{height:65.010349px;}
.h7{height:66.756895px;}
.h1{height:70.664062px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:108.000000px;}
.x5{left:112.680000px;}
.x9{left:135.360000px;}
.x4{left:150.479850px;}
.x3{left:270.000000px;}
.xa{left:298.440000px;}
.x6{left:303.480000px;}
.x13{left:407.520000px;}
.x14{left:411.480000px;}
.x12{left:412.560000px;}
.x8{left:415.440000px;}
.xb{left:421.200000px;}
.xc{left:423.000000px;}
.x7{left:446.400000px;}
.x11{left:681.480000px;}
.xe{left:733.320000px;}
.xf{left:738.000000px;}
.xd{left:754.560000px;}
.x15{left:766.800000px;}
.x1{left:775.800000px;}
.x10{left:794.160000px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.643051pt;}
.ls1{letter-spacing:0.643585pt;}
.ls3{letter-spacing:5.763841pt;}
.ws0{word-spacing:-14.719867pt;}
.ws2{word-spacing:-13.440000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws1{word-spacing:0.000000pt;}
._13{margin-left:-4.717212pt;}
._d{margin-left:-3.392022pt;}
._2{margin-left:-2.199018pt;}
._0{margin-left:-1.236480pt;}
._1{width:1.021440pt;}
._4{width:2.001913pt;}
._3{width:2.956938pt;}
._9{width:3.869451pt;}
._a{width:4.887018pt;}
._b{width:5.962475pt;}
._c{width:7.052074pt;}
._11{width:9.100485pt;}
._e{width:10.204497pt;}
._5{width:11.501974pt;}
._7{width:12.578937pt;}
._6{width:13.677938pt;}
._12{width:14.676480pt;}
._f{width:16.117716pt;}
._10{width:17.403865pt;}
._16{width:72.184254pt;}
._14{width:73.221120pt;}
._15{width:74.452458pt;}
._8{width:754.713631pt;}
.fs3{font-size:34.560000pt;}
.fs4{font-size:48.639467pt;}
.fs1{font-size:53.760000pt;}
.fs2{font-size:58.879467pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.200000pt;}
.y1{bottom:69.760000pt;}
.y6c{bottom:109.759867pt;}
.y48{bottom:117.759867pt;}
.y6b{bottom:133.120000pt;}
.y47{bottom:140.800000pt;}
.y6a{bottom:156.160000pt;}
.y71{bottom:163.200000pt;}
.y46{bottom:163.840000pt;}
.y69{bottom:175.680000pt;}
.y45{bottom:186.880000pt;}
.y44{bottom:209.920000pt;}
.y43{bottom:232.640000pt;}
.y62{bottom:243.840000pt;}
.y42{bottom:255.680000pt;}
.y61{bottom:266.880000pt;}
.y41{bottom:278.720000pt;}
.y55{bottom:282.240000pt;}
.y2b{bottom:288.640000pt;}
.y60{bottom:289.920000pt;}
.y70{bottom:301.440000pt;}
.y40{bottom:301.760000pt;}
.y54{bottom:304.960000pt;}
.y2a{bottom:312.320000pt;}
.y5f{bottom:312.640000pt;}
.y3f{bottom:324.800000pt;}
.y53{bottom:328.000000pt;}
.y29{bottom:335.040000pt;}
.y5e{bottom:335.680000pt;}
.y3e{bottom:347.840000pt;}
.y52{bottom:351.039867pt;}
.y28{bottom:358.080000pt;}
.y5d{bottom:358.720000pt;}
.y3d{bottom:370.880000pt;}
.y51{bottom:374.080000pt;}
.y27{bottom:381.119867pt;}
.y5c{bottom:381.760000pt;}
.y3c{bottom:393.920000pt;}
.y50{bottom:397.119867pt;}
.y26{bottom:404.160000pt;}
.y5b{bottom:404.800000pt;}
.y3b{bottom:416.640000pt;}
.y4f{bottom:420.160000pt;}
.y25{bottom:427.200000pt;}
.y5a{bottom:427.840000pt;}
.y3a{bottom:439.360000pt;}
.y6f{bottom:439.680000pt;}
.y4e{bottom:443.200000pt;}
.y68{bottom:443.840000pt;}
.y24{bottom:450.240000pt;}
.y59{bottom:450.560000pt;}
.y39{bottom:462.400000pt;}
.y6e{bottom:462.720000pt;}
.y4d{bottom:465.920000pt;}
.y67{bottom:466.880000pt;}
.y23{bottom:473.280000pt;}
.y38{bottom:485.760000pt;}
.y66{bottom:486.720000pt;}
.y4c{bottom:488.960000pt;}
.y22{bottom:496.320000pt;}
.y58{bottom:497.600000pt;}
.y37{bottom:508.800000pt;}
.y4b{bottom:511.680000pt;}
.y21{bottom:519.039867pt;}
.y36{bottom:531.840000pt;}
.y4a{bottom:535.039867pt;}
.y20{bottom:542.080000pt;}
.y35{bottom:554.880000pt;}
.y1f{bottom:565.760000pt;}
.y34{bottom:577.600000pt;}
.y1e{bottom:594.880000pt;}
.y33{bottom:600.640000pt;}
.y80{bottom:605.120000pt;}
.yc{bottom:619.840000pt;}
.y1d{bottom:623.680000pt;}
.y7f{bottom:628.480000pt;}
.y1c{bottom:646.720000pt;}
.yb{bottom:647.040000pt;}
.y7e{bottom:650.880000pt;}
.y1b{bottom:669.760000pt;}
.ya{bottom:674.240000pt;}
.y65{bottom:676.160000pt;}
.y1a{bottom:692.800000pt;}
.y7d{bottom:697.280000pt;}
.y64{bottom:699.200000pt;}
.y9{bottom:702.079867pt;}
.y73{bottom:715.200000pt;}
.y32{bottom:715.840000pt;}
.y63{bottom:718.720000pt;}
.y7c{bottom:720.320000pt;}
.y8{bottom:720.640000pt;}
.y72{bottom:738.560000pt;}
.y7{bottom:738.880000pt;}
.y7b{bottom:743.360000pt;}
.y19{bottom:743.680000pt;}
.y6{bottom:757.120000pt;}
.y31{bottom:761.600000pt;}
.y7a{bottom:766.079867pt;}
.y18{bottom:766.400000pt;}
.y30{bottom:784.640000pt;}
.y5{bottom:784.960000pt;}
.y79{bottom:788.160000pt;}
.y17{bottom:789.440000pt;}
.y2f{bottom:807.680000pt;}
.y78{bottom:809.920000pt;}
.y4{bottom:812.160000pt;}
.y16{bottom:812.480000pt;}
.y57{bottom:814.400000pt;}
.y2e{bottom:830.720000pt;}
.y77{bottom:832.640000pt;}
.y15{bottom:835.520000pt;}
.y3{bottom:836.800000pt;}
.y56{bottom:838.720000pt;}
.y2d{bottom:853.760000pt;}
.y76{bottom:854.720000pt;}
.y14{bottom:858.560000pt;}
.y13{bottom:876.800000pt;}
.y75{bottom:899.520000pt;}
.y12{bottom:899.840000pt;}
.y74{bottom:922.560000pt;}
.y11{bottom:922.880000pt;}
.y10{bottom:945.600000pt;}
.y2c{bottom:968.320000pt;}
.yf{bottom:968.640000pt;}
.ye{bottom:991.360000pt;}
.y6d{bottom:991.680000pt;}
.yd{bottom:1014.400000pt;}
.y49{bottom:1014.720000pt;}
.h6{height:33.918750pt;}
.h9{height:47.736977pt;}
.h8{height:49.019462pt;}
.h4{height:52.762500pt;}
.h5{height:53.118750pt;}
.h2{height:54.180000pt;}
.h3{height:57.786977pt;}
.h7{height:59.339462pt;}
.h1{height:62.812500pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:96.000000pt;}
.x5{left:100.160000pt;}
.x9{left:120.320000pt;}
.x4{left:133.759867pt;}
.x3{left:240.000000pt;}
.xa{left:265.280000pt;}
.x6{left:269.760000pt;}
.x13{left:362.240000pt;}
.x14{left:365.760000pt;}
.x12{left:366.720000pt;}
.x8{left:369.280000pt;}
.xb{left:374.400000pt;}
.xc{left:376.000000pt;}
.x7{left:396.800000pt;}
.x11{left:605.760000pt;}
.xe{left:651.840000pt;}
.xf{left:656.000000pt;}
.xd{left:670.720000pt;}
.x15{left:681.600000pt;}
.x1{left:689.600000pt;}
.x10{left:705.920000pt;}
}




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