
    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_2598f53f25808e7528ef778e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_cb0b87e2442743acfe83f410.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_3bb6305e4bae7a20ecf72b53.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_d89e83e1c1ae7ef67073f372.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.975000;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_ba62b5a3ae1562269e97a532.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.136230;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:ff6;src:url('chunks/assets/font_fac2fd5dc8485d226b12dfd1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.975098;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:ff7;src:url('chunks/assets/font_c1b164cf09b63779fe6b8622.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.005371;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:ff8;src:url('chunks/assets/font_89c6b15bb631cb9accc38fcd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.975098;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:ff9;src:url('chunks/assets/font_e909bd4764ac7cce9a4f17f2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.005371;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.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,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);}
.m2{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;}
}
.ws0{word-spacing:-18.984000px;}
.ws4{word-spacing:-16.061600px;}
.ws6{word-spacing:-15.582041px;}
.ws3{word-spacing:-14.908381px;}
.ws7{word-spacing:-0.000088px;}
.ws5{word-spacing:-0.000044px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:1678.101634px;}
._2{margin-left:-7.353600px;}
._3{margin-left:-4.284000px;}
._6{margin-left:-3.229365px;}
._1{margin-left:-1.996800px;}
._5{width:1.079977px;}
._7{width:2.553741px;}
._0{width:5.587200px;}
._8{width:30.574455px;}
._4{width:642.984401px;}
.fc3{color:rgb(12,71,140);}
.fc4{color:transparent;}
.fc2{color:rgb(245,120,20);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:48.000002px;}
.fs5{font-size:59.984997px;}
.fs7{font-size:61.831120px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:84.000000px;}
.fs8{font-size:89.999996px;}
.fs6{font-size:95.984996px;}
.fs0{font-size:96.000000px;}
.fs4{font-size:179.999993px;}
.y3d{bottom:-7.875021px;}
.y6c{bottom:-2.250018px;}
.y0{bottom:0.000000px;}
.y1f{bottom:5.624978px;}
.yc{bottom:8.040000px;}
.y3c{bottom:13.499978px;}
.y7d{bottom:13.499999px;}
.y6b{bottom:19.124981px;}
.y1a{bottom:25.439893px;}
.y7b{bottom:26.999999px;}
.y21{bottom:32.624977px;}
.y6a{bottom:40.499980px;}
.y3b{bottom:51.749976px;}
.y69{bottom:61.874979px;}
.y3e{bottom:79.439998px;}
.y22{bottom:79.440019px;}
.y3a{bottom:83.249975px;}
.y68{bottom:83.249979px;}
.y7a{bottom:86.624996px;}
.y14{bottom:99.795000px;}
.y67{bottom:104.624978px;}
.y66{bottom:125.999977px;}
.y39{bottom:128.249973px;}
.y10{bottom:133.935000px;}
.y17{bottom:135.750000px;}
.y79{bottom:143.999994px;}
.y65{bottom:147.374976px;}
.y38{bottom:149.624972px;}
.y15{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y16{bottom:157.830000px;}
.y78{bottom:165.374993px;}
.y64{bottom:168.749975px;}
.y37{bottom:170.999971px;}
.y77{bottom:186.749992px;}
.y63{bottom:190.124974px;}
.y36{bottom:192.374970px;}
.y1d{bottom:211.499970px;}
.y62{bottom:211.499973px;}
.y35{bottom:213.749969px;}
.y76{bottom:222.749991px;}
.y61{bottom:232.874972px;}
.y34{bottom:235.124969px;}
.y75{bottom:244.124990px;}
.y1c{bottom:255.374968px;}
.y33{bottom:256.499968px;}
.y60{bottom:269.999971px;}
.y32{bottom:277.874967px;}
.y74{bottom:281.249988px;}
.y5f{bottom:291.374970px;}
.y73{bottom:302.624987px;}
.y5e{bottom:312.749969px;}
.y31{bottom:313.874965px;}
.y72{bottom:323.999987px;}
.y5d{bottom:334.124968px;}
.y30{bottom:335.249964px;}
.ya{bottom:344.680500px;}
.y71{bottom:345.374986px;}
.y5c{bottom:355.499967px;}
.y2f{bottom:356.624964px;}
.y5b{bottom:376.874966px;}
.y2e{bottom:377.999963px;}
.yd{bottom:386.490000px;}
.y9{bottom:395.689500px;}
.y5a{bottom:398.249965px;}
.y2d{bottom:399.374962px;}
.y70{bottom:402.749983px;}
.y59{bottom:419.624965px;}
.y2c{bottom:420.749961px;}
.yb{bottom:434.850000px;}
.y6f{bottom:438.749982px;}
.y2b{bottom:442.124960px;}
.y8{bottom:446.698500px;}
.y58{bottom:456.749963px;}
.y6e{bottom:460.124981px;}
.y2a{bottom:463.499959px;}
.y29{bottom:484.874958px;}
.y11{bottom:488.055000px;}
.y7{bottom:497.707500px;}
.y57{bottom:501.749961px;}
.y28{bottom:506.249957px;}
.y56{bottom:523.124960px;}
.y27{bottom:527.624956px;}
.y12{bottom:538.230000px;}
.y55{bottom:544.499959px;}
.y6{bottom:548.716500px;}
.y26{bottom:548.999956px;}
.y25{bottom:570.374955px;}
.y54{bottom:581.624958px;}
.y18{bottom:589.605000px;}
.y5{bottom:599.725500px;}
.y53{bottom:602.999957px;}
.y24{bottom:614.249953px;}
.y52{bottom:624.374956px;}
.ye{bottom:631.920000px;}
.y51{bottom:645.749955px;}
.y23{bottom:649.124951px;}
.y50{bottom:667.124954px;}
.y7c{bottom:690.314904px;}
.y6d{bottom:719.564903px;}
.y4f{bottom:727.874952px;}
.y4e{bottom:749.249951px;}
.y1b{bottom:762.314991px;}
.y20{bottom:763.439991px;}
.y4d{bottom:770.624950px;}
.y4{bottom:778.225500px;}
.y1e{bottom:789.314990px;}
.y4c{bottom:791.999949px;}
.y3f{bottom:815.624966px;}
.y13{bottom:815.670000px;}
.y4b{bottom:834.749947px;}
.y4a{bottom:856.124946px;}
.y49{bottom:877.499945px;}
.y48{bottom:898.874945px;}
.y3{bottom:905.716500px;}
.y47{bottom:920.249944px;}
.y46{bottom:941.624943px;}
.y45{bottom:964.124942px;}
.y2{bottom:964.228500px;}
.y1{bottom:989.716500px;}
.y44{bottom:1009.124940px;}
.y43{bottom:1030.499939px;}
.y42{bottom:1051.874938px;}
.y41{bottom:1073.249937px;}
.y40{bottom:1094.624936px;}
.y19{bottom:1228.439939px;}
.hf{height:21.374999px;}
.h4{height:33.000000px;}
.hb{height:34.945314px;}
.h12{height:45.691697px;}
.h10{height:45.832322px;}
.h19{height:45.896724px;}
.h1b{height:47.309260px;}
.he{height:53.746323px;}
.h16{height:55.400442px;}
.h3{height:58.406250px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.h17{height:68.554685px;}
.h14{height:73.113571px;}
.h11{height:73.124997px;}
.h7{height:115.215000px;}
.hd{height:139.499994px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.hc{height:359.999963px;}
.h1a{height:462.374981px;}
.h1c{height:491.624980px;}
.h15{height:586.124976px;}
.h13{height:682.874972px;}
.h18{height:1102.499954px;}
.h9{height:1261.439940px;}
.ha{height:1261.500000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.wc{width:44.999998px;}
.wd{width:45.000009px;}
.we{width:45.000020px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.wf{width:507.374975px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w10{width:758.249968px;}
.wb{width:787.499967px;}
.w9{width:892.439940px;}
.wa{width:892.500000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.xa{left:39.679689px;}
.xb{left:52.500002px;}
.x17{left:58.412108px;}
.xf{left:59.994138px;}
.xe{left:67.125000px;}
.x19{left:80.718748px;}
.x1a{left:100.335935px;}
.x11{left:122.519526px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x10{left:130.124986px;}
.x5{left:174.105000px;}
.x12{left:185.044914px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.xc{left:212.062491px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x14{left:247.570302px;}
.x13{left:254.999981px;}
.xd{left:273.199207px;}
.x15{left:317.999978px;}
.x16{left:322.857415px;}
.x18{left:626.009745px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-16.874667pt;}
.ws4{word-spacing:-14.276978pt;}
.ws6{word-spacing:-13.850703pt;}
.ws3{word-spacing:-13.251894pt;}
.ws7{word-spacing:-0.000078pt;}
.ws5{word-spacing:-0.000039pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:1491.645897pt;}
._2{margin-left:-6.536533pt;}
._3{margin-left:-3.808000pt;}
._6{margin-left:-2.870547pt;}
._1{margin-left:-1.774933pt;}
._5{width:0.959980pt;}
._7{width:2.269992pt;}
._0{width:4.966400pt;}
._8{width:27.177293pt;}
._4{width:571.541690pt;}
.fs3{font-size:42.666668pt;}
.fs5{font-size:53.319997pt;}
.fs7{font-size:54.960995pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:74.666667pt;}
.fs8{font-size:79.999997pt;}
.fs6{font-size:85.319996pt;}
.fs0{font-size:85.333333pt;}
.fs4{font-size:159.999993pt;}
.y3d{bottom:-7.000019pt;}
.y6c{bottom:-2.000016pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:4.999981pt;}
.yc{bottom:7.146667pt;}
.y3c{bottom:11.999980pt;}
.y7d{bottom:12.000000pt;}
.y6b{bottom:16.999983pt;}
.y1a{bottom:22.613238pt;}
.y7b{bottom:23.999999pt;}
.y21{bottom:28.999980pt;}
.y6a{bottom:35.999983pt;}
.y3b{bottom:45.999979pt;}
.y69{bottom:54.999982pt;}
.y3e{bottom:70.613331pt;}
.y22{bottom:70.613350pt;}
.y3a{bottom:73.999978pt;}
.y68{bottom:73.999981pt;}
.y7a{bottom:76.999997pt;}
.y14{bottom:88.706667pt;}
.y67{bottom:92.999980pt;}
.y66{bottom:111.999979pt;}
.y39{bottom:113.999976pt;}
.y10{bottom:119.053333pt;}
.y17{bottom:120.666667pt;}
.y79{bottom:127.999995pt;}
.y65{bottom:130.999979pt;}
.y38{bottom:132.999975pt;}
.y15{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y16{bottom:140.293333pt;}
.y78{bottom:146.999994pt;}
.y64{bottom:149.999978pt;}
.y37{bottom:151.999974pt;}
.y77{bottom:165.999993pt;}
.y63{bottom:168.999977pt;}
.y36{bottom:170.999974pt;}
.y1d{bottom:187.999973pt;}
.y62{bottom:187.999976pt;}
.y35{bottom:189.999973pt;}
.y76{bottom:197.999992pt;}
.y61{bottom:206.999975pt;}
.y34{bottom:208.999972pt;}
.y75{bottom:216.999991pt;}
.y1c{bottom:226.999971pt;}
.y33{bottom:227.999971pt;}
.y60{bottom:239.999974pt;}
.y32{bottom:246.999971pt;}
.y74{bottom:249.999990pt;}
.y5f{bottom:258.999973pt;}
.y73{bottom:268.999989pt;}
.y5e{bottom:277.999972pt;}
.y31{bottom:278.999969pt;}
.y72{bottom:287.999988pt;}
.y5d{bottom:296.999972pt;}
.y30{bottom:297.999968pt;}
.ya{bottom:306.382667pt;}
.y71{bottom:306.999987pt;}
.y5c{bottom:315.999971pt;}
.y2f{bottom:316.999968pt;}
.y5b{bottom:334.999970pt;}
.y2e{bottom:335.999967pt;}
.yd{bottom:343.546667pt;}
.y9{bottom:351.724000pt;}
.y5a{bottom:353.999969pt;}
.y2d{bottom:354.999966pt;}
.y70{bottom:357.999985pt;}
.y59{bottom:372.999968pt;}
.y2c{bottom:373.999965pt;}
.yb{bottom:386.533333pt;}
.y6f{bottom:389.999984pt;}
.y2b{bottom:392.999964pt;}
.y8{bottom:397.065333pt;}
.y58{bottom:405.999967pt;}
.y6e{bottom:408.999983pt;}
.y2a{bottom:411.999964pt;}
.y29{bottom:430.999963pt;}
.y11{bottom:433.826667pt;}
.y7{bottom:442.406667pt;}
.y57{bottom:445.999965pt;}
.y28{bottom:449.999962pt;}
.y56{bottom:464.999965pt;}
.y27{bottom:468.999961pt;}
.y12{bottom:478.426667pt;}
.y55{bottom:483.999964pt;}
.y6{bottom:487.748000pt;}
.y26{bottom:487.999960pt;}
.y25{bottom:506.999960pt;}
.y54{bottom:516.999962pt;}
.y18{bottom:524.093333pt;}
.y5{bottom:533.089333pt;}
.y53{bottom:535.999962pt;}
.y24{bottom:545.999958pt;}
.y52{bottom:554.999961pt;}
.ye{bottom:561.706667pt;}
.y51{bottom:573.999960pt;}
.y23{bottom:576.999957pt;}
.y50{bottom:592.999959pt;}
.y7c{bottom:613.613248pt;}
.y6d{bottom:639.613247pt;}
.y4f{bottom:646.999957pt;}
.y4e{bottom:665.999956pt;}
.y1b{bottom:677.613325pt;}
.y20{bottom:678.613325pt;}
.y4d{bottom:684.999955pt;}
.y4{bottom:691.756000pt;}
.y1e{bottom:701.613324pt;}
.y4c{bottom:703.999955pt;}
.y3f{bottom:724.999970pt;}
.y13{bottom:725.040000pt;}
.y4b{bottom:741.999953pt;}
.y4a{bottom:760.999952pt;}
.y49{bottom:779.999952pt;}
.y48{bottom:798.999951pt;}
.y3{bottom:805.081333pt;}
.y47{bottom:817.999950pt;}
.y46{bottom:836.999949pt;}
.y45{bottom:856.999948pt;}
.y2{bottom:857.092000pt;}
.y1{bottom:879.748000pt;}
.y44{bottom:896.999947pt;}
.y43{bottom:915.999946pt;}
.y42{bottom:934.999945pt;}
.y41{bottom:953.999944pt;}
.y40{bottom:972.999943pt;}
.y19{bottom:1091.946612pt;}
.hf{height:18.999999pt;}
.h4{height:29.333333pt;}
.hb{height:31.062501pt;}
.h12{height:40.614842pt;}
.h10{height:40.739842pt;}
.h19{height:40.797088pt;}
.h1b{height:42.052676pt;}
.he{height:47.774509pt;}
.h16{height:49.244837pt;}
.h3{height:51.916667pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.h17{height:60.937497pt;}
.h14{height:64.989841pt;}
.h11{height:64.999997pt;}
.h7{height:102.413333pt;}
.hd{height:123.999995pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.hc{height:319.999967pt;}
.h1a{height:410.999983pt;}
.h1c{height:436.999982pt;}
.h15{height:520.999978pt;}
.h13{height:606.999975pt;}
.h18{height:979.999959pt;}
.h9{height:1121.279947pt;}
.ha{height:1121.333333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wc{width:39.999998pt;}
.wd{width:40.000008pt;}
.we{width:40.000018pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.wf{width:450.999978pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w10{width:673.999972pt;}
.wb{width:699.999971pt;}
.w9{width:793.279947pt;}
.wa{width:793.333333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.xa{left:35.270835pt;}
.xb{left:46.666668pt;}
.x17{left:51.921874pt;}
.xf{left:53.328123pt;}
.xe{left:59.666666pt;}
.x19{left:71.749998pt;}
.x1a{left:89.187498pt;}
.x11{left:108.906245pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x10{left:115.666654pt;}
.x5{left:154.760000pt;}
.x12{left:164.484368pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.xc{left:188.499992pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x14{left:220.062491pt;}
.x13{left:226.666650pt;}
.xd{left:242.843740pt;}
.x15{left:282.666647pt;}
.x16{left:286.984369pt;}
.x18{left:556.453107pt;}
}




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