
    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_1615c9a8468b6d5cbd0e7ab0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.035645;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_e5611b093a14749cf7b8929f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.034668;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_6c2b48e6a87c176e41ce83aa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.143066;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_df9c3a1d34982a41547e8a52.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.163086;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_a8fa7bad6df969987c588c1d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.205000;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.241482,0.000000,-0.064703,0.241482,0,0);-ms-transform:matrix(0.241482,0.000000,-0.064703,0.241482,0,0);-webkit-transform:matrix(0.241482,0.000000,-0.064703,0.241482,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);}
.v2{vertical-align:-27.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.600000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.288000px;}
.ls2{letter-spacing:22.344000px;}
.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:-25.056000px;}
.ws5{word-spacing:-23.629089px;}
.ws2{word-spacing:-22.824000px;}
.ws1{word-spacing:-13.314000px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:108.000000px;}
.ws8{word-spacing:129.936000px;}
.ws9{word-spacing:155.448000px;}
.ws6{word-spacing:259.056000px;}
.wsa{word-spacing:289.728000px;}
.ws7{word-spacing:304.704000px;}
._33{margin-left:-46.248000px;}
._20{margin-left:-12.744000px;}
._29{margin-left:-11.273660px;}
._2f{margin-left:-9.803254px;}
._30{margin-left:-7.862729px;}
._2e{margin-left:-6.624000px;}
._1f{margin-left:-5.360568px;}
._0{margin-left:-4.032000px;}
._7{margin-left:-2.385271px;}
._2{margin-left:-1.056000px;}
._4{width:1.512000px;}
._c{width:2.922542px;}
._d{width:4.015868px;}
._6{width:5.056132px;}
._5{width:6.124701px;}
._10{width:7.501954px;}
._f{width:8.601271px;}
._e{width:9.916606px;}
._12{width:11.136000px;}
._17{width:12.432000px;}
._b{width:13.656000px;}
._8{width:15.024000px;}
._a{width:16.104000px;}
._14{width:17.145271px;}
._15{width:18.504000px;}
._1d{width:20.378856px;}
._11{width:22.176000px;}
._13{width:24.264000px;}
._18{width:25.344000px;}
._16{width:26.640000px;}
._2c{width:27.720000px;}
._9{width:29.496000px;}
._2b{width:30.897271px;}
._1e{width:31.968000px;}
._1a{width:33.696000px;}
._1b{width:34.800000px;}
._1c{width:36.768000px;}
._28{width:38.388576px;}
._3{width:39.792000px;}
._1{width:41.160000px;}
._27{width:42.873271px;}
._26{width:44.784000px;}
._34{width:46.416000px;}
._32{width:49.248000px;}
._23{width:50.808000px;}
._22{width:55.360375px;}
._21{width:56.514542px;}
._2a{width:58.032000px;}
._3c{width:61.488000px;}
._3d{width:62.712000px;}
._19{width:68.160000px;}
._31{width:101.592000px;}
._2d{width:147.384000px;}
._39{width:180.384000px;}
._38{width:223.992000px;}
._3b{width:226.032000px;}
._3a{width:258.576000px;}
._37{width:282.024000px;}
._35{width:419.400000px;}
._24{width:447.216000px;}
._36{width:496.128000px;}
._25{width:894.840000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs1{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:74.539714px;}
.fs0{font-size:99.000000px;}
.y0{bottom:0.000000px;}
.y39{bottom:131.085000px;}
.y24{bottom:131.835000px;}
.y38{bottom:162.585000px;}
.y23{bottom:163.335000px;}
.y9{bottom:183.186000px;}
.y37{bottom:194.085000px;}
.y22{bottom:194.835000px;}
.y36{bottom:225.585000px;}
.y21{bottom:226.335000px;}
.y35{bottom:257.085000px;}
.y20{bottom:257.835000px;}
.y34{bottom:288.585000px;}
.y1f{bottom:289.335000px;}
.y33{bottom:320.085000px;}
.y1e{bottom:320.835000px;}
.y32{bottom:351.585000px;}
.y1d{bottom:352.335000px;}
.y31{bottom:383.085000px;}
.y2b{bottom:383.835000px;}
.y30{bottom:414.585000px;}
.y1c{bottom:415.335000px;}
.y2f{bottom:446.085000px;}
.y1b{bottom:446.835000px;}
.y2e{bottom:477.585000px;}
.y1a{bottom:478.335000px;}
.y2d{bottom:509.085000px;}
.y19{bottom:509.835000px;}
.y4a{bottom:516.585000px;}
.y2c{bottom:540.585000px;}
.y18{bottom:541.335000px;}
.y8{bottom:542.826000px;}
.y49{bottom:550.335000px;}
.y5b{bottom:560.835000px;}
.y17{bottom:572.835000px;}
.y7{bottom:575.977500px;}
.y48{bottom:581.835000px;}
.y5a{bottom:592.335000px;}
.y2a{bottom:604.335000px;}
.y6{bottom:609.130500px;}
.y67{bottom:609.285000px;}
.y47{bottom:615.585000px;}
.y62{bottom:619.335000px;}
.y16{bottom:635.835000px;}
.y66{bottom:640.785000px;}
.y5{bottom:642.283500px;}
.y46{bottom:647.085000px;}
.y5e{bottom:650.085000px;}
.y61{bottom:650.835000px;}
.y59{bottom:651.585000px;}
.y15{bottom:667.335000px;}
.y65{bottom:672.285000px;}
.y45{bottom:680.835000px;}
.y5d{bottom:681.585000px;}
.y60{bottom:682.335000px;}
.y58{bottom:683.085000px;}
.y4{bottom:694.342500px;}
.y14{bottom:698.835000px;}
.y64{bottom:703.785000px;}
.y44{bottom:712.335000px;}
.y5c{bottom:713.085000px;}
.y5f{bottom:713.835000px;}
.y57{bottom:716.835000px;}
.y3{bottom:727.494000px;}
.y13{bottom:730.335000px;}
.y51{bottom:734.085000px;}
.y63{bottom:735.285000px;}
.y43{bottom:746.085000px;}
.y56{bottom:748.335000px;}
.y2{bottom:760.647000px;}
.y29{bottom:761.835000px;}
.y12{bottom:768.735000px;}
.y50{bottom:770.835000px;}
.y42{bottom:777.585000px;}
.y55{bottom:782.085000px;}
.y28{bottom:793.335000px;}
.y1{bottom:793.800000px;}
.y4f{bottom:802.335000px;}
.y41{bottom:811.335000px;}
.y54{bottom:813.585000px;}
.y11{bottom:824.835000px;}
.y40{bottom:842.835000px;}
.y4e{bottom:845.085000px;}
.y10{bottom:856.335000px;}
.y3f{bottom:876.585000px;}
.y53{bottom:878.835000px;}
.yf{bottom:887.835000px;}
.y3e{bottom:908.085000px;}
.y4d{bottom:910.335000px;}
.y27{bottom:919.335000px;}
.y3d{bottom:941.835000px;}
.ye{bottom:950.835000px;}
.y3c{bottom:973.335000px;}
.y52{bottom:975.585000px;}
.yd{bottom:982.335000px;}
.y4c{bottom:1004.835000px;}
.y3b{bottom:1007.085000px;}
.y26{bottom:1013.835000px;}
.y3a{bottom:1038.585000px;}
.yc{bottom:1045.335000px;}
.y4b{bottom:1070.085000px;}
.yb{bottom:1076.835000px;}
.ya{bottom:1108.335000px;}
.y25{bottom:1139.835000px;}
.h7{height:39.161719px;}
.h3{height:52.722656px;}
.h5{height:66.761719px;}
.h6{height:69.116658px;}
.h2{height:79.180664px;}
.h4{height:1262.685000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:892.500000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:124.950000px;}
.x9{left:127.800000px;}
.x12{left:133.800000px;}
.xa{left:243.750000px;}
.x18{left:253.950000px;}
.x3{left:255.894000px;}
.xb{left:261.150000px;}
.x7{left:269.122500px;}
.xf{left:274.200000px;}
.x2{left:303.933000px;}
.x8{left:306.259500px;}
.x13{left:309.450000px;}
.x5{left:310.530000px;}
.x1{left:316.371000px;}
.x4{left:330.033000px;}
.x6{left:358.272000px;}
.x19{left:370.050000px;}
.x10{left:396.150000px;}
.x15{left:411.150000px;}
.x16{left:512.850000px;}
.x1a{left:545.550000px;}
.x11{left:560.250000px;}
.xc{left:566.400000px;}
.x17{left:614.400000px;}
.x1b{left:668.400000px;}
.xd{left:685.800000px;}
.x14{left:716.400000px;}
@media print{
.v2{vertical-align:-24.533333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.533333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.256000pt;}
.ls2{letter-spacing:19.861333pt;}
.ws3{word-spacing:-22.272000pt;}
.ws5{word-spacing:-21.003635pt;}
.ws2{word-spacing:-20.288000pt;}
.ws1{word-spacing:-11.834667pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:96.000000pt;}
.ws8{word-spacing:115.498667pt;}
.ws9{word-spacing:138.176000pt;}
.ws6{word-spacing:230.272000pt;}
.wsa{word-spacing:257.536000pt;}
.ws7{word-spacing:270.848000pt;}
._33{margin-left:-41.109333pt;}
._20{margin-left:-11.328000pt;}
._29{margin-left:-10.021031pt;}
._2f{margin-left:-8.714004pt;}
._30{margin-left:-6.989093pt;}
._2e{margin-left:-5.888000pt;}
._1f{margin-left:-4.764949pt;}
._0{margin-left:-3.584000pt;}
._7{margin-left:-2.120241pt;}
._2{margin-left:-0.938667pt;}
._4{width:1.344000pt;}
._c{width:2.597815pt;}
._d{width:3.569660pt;}
._6{width:4.494340pt;}
._5{width:5.444178pt;}
._10{width:6.668403pt;}
._f{width:7.645574pt;}
._e{width:8.814761pt;}
._12{width:9.898667pt;}
._17{width:11.050667pt;}
._b{width:12.138667pt;}
._8{width:13.354667pt;}
._a{width:14.314667pt;}
._14{width:15.240241pt;}
._15{width:16.448000pt;}
._1d{width:18.114539pt;}
._11{width:19.712000pt;}
._13{width:21.568000pt;}
._18{width:22.528000pt;}
._16{width:23.680000pt;}
._2c{width:24.640000pt;}
._9{width:26.218667pt;}
._2b{width:27.464241pt;}
._1e{width:28.416000pt;}
._1a{width:29.952000pt;}
._1b{width:30.933333pt;}
._1c{width:32.682667pt;}
._28{width:34.123179pt;}
._3{width:35.370667pt;}
._1{width:36.586667pt;}
._27{width:38.109574pt;}
._26{width:39.808000pt;}
._34{width:41.258667pt;}
._32{width:43.776000pt;}
._23{width:45.162667pt;}
._22{width:49.209222pt;}
._21{width:50.235148pt;}
._2a{width:51.584000pt;}
._3c{width:54.656000pt;}
._3d{width:55.744000pt;}
._19{width:60.586667pt;}
._31{width:90.304000pt;}
._2d{width:131.008000pt;}
._39{width:160.341333pt;}
._38{width:199.104000pt;}
._3b{width:200.917333pt;}
._3a{width:229.845333pt;}
._37{width:250.688000pt;}
._35{width:372.800000pt;}
._24{width:397.525333pt;}
._36{width:441.002667pt;}
._25{width:795.413333pt;}
.fs4{font-size:37.333333pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:66.257523pt;}
.fs0{font-size:88.000000pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:116.520000pt;}
.y24{bottom:117.186667pt;}
.y38{bottom:144.520000pt;}
.y23{bottom:145.186667pt;}
.y9{bottom:162.832000pt;}
.y37{bottom:172.520000pt;}
.y22{bottom:173.186667pt;}
.y36{bottom:200.520000pt;}
.y21{bottom:201.186667pt;}
.y35{bottom:228.520000pt;}
.y20{bottom:229.186667pt;}
.y34{bottom:256.520000pt;}
.y1f{bottom:257.186667pt;}
.y33{bottom:284.520000pt;}
.y1e{bottom:285.186667pt;}
.y32{bottom:312.520000pt;}
.y1d{bottom:313.186667pt;}
.y31{bottom:340.520000pt;}
.y2b{bottom:341.186667pt;}
.y30{bottom:368.520000pt;}
.y1c{bottom:369.186667pt;}
.y2f{bottom:396.520000pt;}
.y1b{bottom:397.186667pt;}
.y2e{bottom:424.520000pt;}
.y1a{bottom:425.186667pt;}
.y2d{bottom:452.520000pt;}
.y19{bottom:453.186667pt;}
.y4a{bottom:459.186667pt;}
.y2c{bottom:480.520000pt;}
.y18{bottom:481.186667pt;}
.y8{bottom:482.512000pt;}
.y49{bottom:489.186667pt;}
.y5b{bottom:498.520000pt;}
.y17{bottom:509.186667pt;}
.y7{bottom:511.980000pt;}
.y48{bottom:517.186667pt;}
.y5a{bottom:526.520000pt;}
.y2a{bottom:537.186667pt;}
.y6{bottom:541.449333pt;}
.y67{bottom:541.586667pt;}
.y47{bottom:547.186667pt;}
.y62{bottom:550.520000pt;}
.y16{bottom:565.186667pt;}
.y66{bottom:569.586667pt;}
.y5{bottom:570.918667pt;}
.y46{bottom:575.186667pt;}
.y5e{bottom:577.853333pt;}
.y61{bottom:578.520000pt;}
.y59{bottom:579.186667pt;}
.y15{bottom:593.186667pt;}
.y65{bottom:597.586667pt;}
.y45{bottom:605.186667pt;}
.y5d{bottom:605.853333pt;}
.y60{bottom:606.520000pt;}
.y58{bottom:607.186667pt;}
.y4{bottom:617.193333pt;}
.y14{bottom:621.186667pt;}
.y64{bottom:625.586667pt;}
.y44{bottom:633.186667pt;}
.y5c{bottom:633.853333pt;}
.y5f{bottom:634.520000pt;}
.y57{bottom:637.186667pt;}
.y3{bottom:646.661333pt;}
.y13{bottom:649.186667pt;}
.y51{bottom:652.520000pt;}
.y63{bottom:653.586667pt;}
.y43{bottom:663.186667pt;}
.y56{bottom:665.186667pt;}
.y2{bottom:676.130667pt;}
.y29{bottom:677.186667pt;}
.y12{bottom:683.320000pt;}
.y50{bottom:685.186667pt;}
.y42{bottom:691.186667pt;}
.y55{bottom:695.186667pt;}
.y28{bottom:705.186667pt;}
.y1{bottom:705.600000pt;}
.y4f{bottom:713.186667pt;}
.y41{bottom:721.186667pt;}
.y54{bottom:723.186667pt;}
.y11{bottom:733.186667pt;}
.y40{bottom:749.186667pt;}
.y4e{bottom:751.186667pt;}
.y10{bottom:761.186667pt;}
.y3f{bottom:779.186667pt;}
.y53{bottom:781.186667pt;}
.yf{bottom:789.186667pt;}
.y3e{bottom:807.186667pt;}
.y4d{bottom:809.186667pt;}
.y27{bottom:817.186667pt;}
.y3d{bottom:837.186667pt;}
.ye{bottom:845.186667pt;}
.y3c{bottom:865.186667pt;}
.y52{bottom:867.186667pt;}
.yd{bottom:873.186667pt;}
.y4c{bottom:893.186667pt;}
.y3b{bottom:895.186667pt;}
.y26{bottom:901.186667pt;}
.y3a{bottom:923.186667pt;}
.yc{bottom:929.186667pt;}
.y4b{bottom:951.186667pt;}
.yb{bottom:957.186667pt;}
.ya{bottom:985.186667pt;}
.y25{bottom:1013.186667pt;}
.h7{height:34.810417pt;}
.h3{height:46.864583pt;}
.h5{height:59.343750pt;}
.h6{height:61.437030pt;}
.h2{height:70.382812pt;}
.h4{height:1122.386667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.333333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:111.066667pt;}
.x9{left:113.600000pt;}
.x12{left:118.933333pt;}
.xa{left:216.666667pt;}
.x18{left:225.733333pt;}
.x3{left:227.461333pt;}
.xb{left:232.133333pt;}
.x7{left:239.220000pt;}
.xf{left:243.733333pt;}
.x2{left:270.162667pt;}
.x8{left:272.230667pt;}
.x13{left:275.066667pt;}
.x5{left:276.026667pt;}
.x1{left:281.218667pt;}
.x4{left:293.362667pt;}
.x6{left:318.464000pt;}
.x19{left:328.933333pt;}
.x10{left:352.133333pt;}
.x15{left:365.466667pt;}
.x16{left:455.866667pt;}
.x1a{left:484.933333pt;}
.x11{left:498.000000pt;}
.xc{left:503.466667pt;}
.x17{left:546.133333pt;}
.x1b{left:594.133333pt;}
.xd{left:609.600000pt;}
.x14{left:636.800000pt;}
}




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