
    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_da3e11ece369bef8a0ff0fb3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.946777;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_f479c1b189bce9eb01a635e8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.102051;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_0cac9fcffecfd4c76f1a95db.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.116211;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_829099c86c5e3fdcbd82f3ee.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.979980;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_030f45ca055982184fdc535d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.978027;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_d5df4699f4874648599db1e8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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);}
.v5{vertical-align:-23.759996px;}
.v4{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.440031px;}
.v1{vertical-align:5.760135px;}
.v3{vertical-align:23.760027px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.007763px;}
.ls9{letter-spacing:0.179406px;}
.ls8{letter-spacing:0.179410px;}
.ls3{letter-spacing:0.179473px;}
.ls4{letter-spacing:0.179478px;}
.ls6{letter-spacing:0.179617px;}
.lsa{letter-spacing:5.039406px;}
.lsb{letter-spacing:6.850799px;}
.ls7{letter-spacing:18.899217px;}
.ls2{letter-spacing:39.970732px;}
.ls5{letter-spacing:39.970799px;}
.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;}
}
.ws4{word-spacing:-16.560675px;}
.ws3{word-spacing:-13.500563px;}
.ws1{word-spacing:-10.440405px;}
.ws2{word-spacing:-9.000349px;}
.ws0{word-spacing:0.000000px;}
._21{margin-left:-2.114991px;}
._1{margin-left:-1.080045px;}
._0{width:1.086373px;}
._b{width:2.111052px;}
._2{width:3.149217px;}
._15{width:4.286144px;}
._9{width:5.299416px;}
._a{width:6.613143px;}
._17{width:8.553729px;}
._10{width:9.704814px;}
._11{width:10.817204px;}
._19{width:11.836225px;}
._1a{width:12.931019px;}
._7{width:14.087442px;}
._12{width:15.270236px;}
._1e{width:17.592871px;}
._16{width:18.615234px;}
._14{width:20.004778px;}
._c{width:21.160446px;}
._6{width:22.903629px;}
._5{width:23.913615px;}
._18{width:24.970296px;}
._1f{width:26.072776px;}
._1d{width:27.459410px;}
._1b{width:28.970831px;}
._1c{width:30.423535px;}
._29{width:31.531525px;}
._24{width:33.386891px;}
._25{width:34.531064px;}
._26{width:35.682185px;}
._23{width:36.724332px;}
._f{width:38.542125px;}
._20{width:39.947971px;}
._2b{width:41.218343px;}
._2a{width:42.342208px;}
._27{width:43.652904px;}
._28{width:44.695192px;}
._e{width:47.306323px;}
._22{width:48.666056px;}
._8{width:55.675695px;}
._d{width:76.908292px;}
._13{width:139.165821px;}
._4{width:179.423891px;}
._3{width:344.679361px;}
._2c{width:665.914180px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:5.760225px;}
.fs6{font-size:36.001395px;}
.fs5{font-size:41.761620px;}
.fs0{font-size:54.002250px;}
.fs4{font-size:59.762250px;}
.fs1{font-size:66.242700px;}
.fs2{font-size:72.002705px;}
.y0{bottom:0.000000px;}
.ya{bottom:3.599997px;}
.y6{bottom:305.280052px;}
.y5{bottom:322.380066px;}
.y5f{bottom:341.820099px;}
.y6a{bottom:346.320099px;}
.y7d{bottom:349.200096px;}
.y66{bottom:357.300041px;}
.y5e{bottom:361.800041px;}
.y7c{bottom:368.100083px;}
.y5d{bottom:372.960091px;}
.y65{bottom:377.460091px;}
.y34{bottom:382.320099px;}
.y7b{bottom:387.000068px;}
.y6c{bottom:388.440033px;}
.y69{bottom:389.700096px;}
.y5c{bottom:392.940033px;}
.y33{bottom:401.220085px;}
.y5b{bottom:403.920043px;}
.y7f{bottom:405.720085px;}
.y7a{bottom:406.080093px;}
.y64{bottom:408.420043px;}
.y73{bottom:419.400055px;}
.y32{bottom:419.940033px;}
.y63{bottom:420.660049px;}
.y5a{bottom:423.900055px;}
.y68{bottom:424.980079px;}
.y72{bottom:435.060036px;}
.y6d{bottom:436.140060px;}
.y31{bottom:438.840088px;}
.y59{bottom:439.560036px;}
.y62{bottom:444.060036px;}
.y58{bottom:451.800041px;}
.y71{bottom:455.040047px;}
.y2e{bottom:458.640060px;}
.y61{bottom:462.960091px;}
.y70{bottom:466.020058px;}
.y2d{bottom:477.540047px;}
.y30{bottom:477.900055px;}
.y57{bottom:481.860077px;}
.y6f{bottom:486.000068px;}
.y2c{bottom:496.440033px;}
.y2f{bottom:496.800041px;}
.y6e{bottom:498.240074px;}
.y56{bottom:500.940033px;}
.y2b{bottom:516.240074px;}
.y55{bottom:519.840088px;}
.y2a{bottom:535.140060px;}
.y54{bottom:538.920043px;}
.y29{bottom:555.300041px;}
.y67{bottom:557.460091px;}
.y53{bottom:557.820099px;}
.y28{bottom:574.200096px;}
.y79{bottom:576.360077px;}
.y52{bottom:576.720085px;}
.y27{bottom:593.280052px;}
.y78{bottom:595.440033px;}
.y51{bottom:595.800041px;}
.y26{bottom:612.180039px;}
.y77{bottom:614.340088px;}
.y50{bottom:614.700096px;}
.y25{bottom:631.260064px;}
.y76{bottom:633.420043px;}
.y4f{bottom:633.780052px;}
.y24{bottom:650.160049px;}
.y4e{bottom:652.680039px;}
.y23{bottom:669.060036px;}
.y4d{bottom:671.760064px;}
.y22{bottom:688.140060px;}
.y4c{bottom:690.660049px;}
.y21{bottom:707.040081px;}
.y4b{bottom:709.560070px;}
.y20{bottom:726.120072px;}
.y4a{bottom:728.640060px;}
.y1f{bottom:745.020058px;}
.y49{bottom:747.540081px;}
.y1e{bottom:763.920078px;}
.y60{bottom:766.260064px;}
.y48{bottom:766.620072px;}
.y1d{bottom:783.000068px;}
.y47{bottom:785.520058px;}
.y1c{bottom:801.900055px;}
.y46{bottom:804.420078px;}
.y1b{bottom:820.980079px;}
.y45{bottom:823.500068px;}
.y1a{bottom:839.880066px;}
.y44{bottom:842.400055px;}
.y19{bottom:858.780052px;}
.y43{bottom:861.480079px;}
.y18{bottom:877.860077px;}
.y42{bottom:880.380066px;}
.y17{bottom:896.760064px;}
.y41{bottom:899.280052px;}
.y16{bottom:915.840054px;}
.y40{bottom:918.360077px;}
.y15{bottom:934.380066px;}
.y3f{bottom:937.260064px;}
.y14{bottom:953.820065px;}
.y6b{bottom:955.980079px;}
.y3e{bottom:956.340054px;}
.y13{bottom:969.660049px;}
.y7e{bottom:974.880066px;}
.y3d{bottom:975.240074px;}
.y12{bottom:989.280069px;}
.y75{bottom:993.780069px;}
.y3c{bottom:994.140060px;}
.y11{bottom:1008.360060px;}
.y3b{bottom:1013.220068px;}
.y10{bottom:1025.640060px;}
.y3a{bottom:1032.120072px;}
.yf{bottom:1044.540064px;}
.y39{bottom:1051.200061px;}
.ye{bottom:1063.440067px;}
.y38{bottom:1070.100065px;}
.yd{bottom:1082.520058px;}
.y37{bottom:1089.000068px;}
.yc{bottom:1100.160067px;}
.yb{bottom:1103.760064px;}
.y36{bottom:1108.080059px;}
.y9{bottom:1119.060070px;}
.y8{bottom:1122.660067px;}
.y74{bottom:1126.620063px;}
.y35{bottom:1126.980063px;}
.y7{bottom:1140.660067px;}
.y4{bottom:1145.880066px;}
.y3{bottom:1164.420069px;}
.y2{bottom:1180.260064px;}
.y1{bottom:1196.100065px;}
.h5{height:5.040197px;}
.h7{height:18.539994px;}
.h11{height:31.518799px;}
.h2{height:38.682276px;}
.h12{height:47.278337px;}
.h3{height:47.450215px;}
.h6{height:49.908440px;}
.hc{height:50.490652px;}
.hb{height:52.291969px;}
.h9{height:52.321150px;}
.h8{height:57.962363px;}
.hd{height:57.994708px;}
.ha{height:58.052104px;}
.h15{height:60.321665px;}
.h13{height:60.321800px;}
.hf{height:60.321804px;}
.he{height:60.321836px;}
.h14{height:60.321939px;}
.h10{height:60.321944px;}
.h4{height:63.037524px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w2{width:8.100013px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:166.860008px;}
.x13{left:175.319996px;}
.x15{left:193.860008px;}
.x14{left:202.319996px;}
.xa{left:207.360008px;}
.x2{left:215.099997px;}
.xe{left:219.960005px;}
.x10{left:223.560001px;}
.x1{left:228.780001px;}
.xf{left:237.240006px;}
.xd{left:282.960005px;}
.xb{left:339.480011px;}
.x3{left:375.300007px;}
.x11{left:383.759994px;}
.x6{left:427.500000px;}
.xc{left:433.980011px;}
.x4{left:442.079990px;}
.x12{left:450.540012px;}
.x9{left:546.120002px;}
.x7{left:585.899987px;}
.x8{left:717.480011px;}
@media print{
.v5{vertical-align:-21.119996pt;}
.v4{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.280028pt;}
.v1{vertical-align:5.120120pt;}
.v3{vertical-align:21.120024pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.006900pt;}
.ls9{letter-spacing:0.159472pt;}
.ls8{letter-spacing:0.159476pt;}
.ls3{letter-spacing:0.159532pt;}
.ls4{letter-spacing:0.159536pt;}
.ls6{letter-spacing:0.159660pt;}
.lsa{letter-spacing:4.479472pt;}
.lsb{letter-spacing:6.089599pt;}
.ls7{letter-spacing:16.799304pt;}
.ls2{letter-spacing:35.529539pt;}
.ls5{letter-spacing:35.529599pt;}
.ws4{word-spacing:-14.720600pt;}
.ws3{word-spacing:-12.000500pt;}
.ws1{word-spacing:-9.280360pt;}
.ws2{word-spacing:-8.000310pt;}
.ws0{word-spacing:0.000000pt;}
._21{margin-left:-1.879992pt;}
._1{margin-left:-0.960040pt;}
._0{width:0.965665pt;}
._b{width:1.876490pt;}
._2{width:2.799304pt;}
._15{width:3.809906pt;}
._9{width:4.710592pt;}
._a{width:5.878350pt;}
._17{width:7.603315pt;}
._10{width:8.626502pt;}
._11{width:9.615293pt;}
._19{width:10.521089pt;}
._1a{width:11.494239pt;}
._7{width:12.522170pt;}
._12{width:13.573543pt;}
._1e{width:15.638107pt;}
._16{width:16.546874pt;}
._14{width:17.782025pt;}
._c{width:18.809285pt;}
._6{width:20.358781pt;}
._5{width:21.256546pt;}
._18{width:22.195819pt;}
._1f{width:23.175801pt;}
._1d{width:24.408365pt;}
._1b{width:25.751850pt;}
._1c{width:27.043142pt;}
._29{width:28.028022pt;}
._24{width:29.677236pt;}
._25{width:30.694279pt;}
._26{width:31.717498pt;}
._23{width:32.643850pt;}
._f{width:34.259666pt;}
._20{width:35.509307pt;}
._2b{width:36.638527pt;}
._2a{width:37.637518pt;}
._27{width:38.802582pt;}
._28{width:39.729059pt;}
._e{width:42.050065pt;}
._22{width:43.258716pt;}
._8{width:49.489507pt;}
._d{width:68.362926pt;}
._13{width:123.702952pt;}
._4{width:159.487903pt;}
._3{width:306.381654pt;}
._2c{width:591.923715pt;}
.fs3{font-size:5.120200pt;}
.fs6{font-size:32.001240pt;}
.fs5{font-size:37.121440pt;}
.fs0{font-size:48.002000pt;}
.fs4{font-size:53.122000pt;}
.fs1{font-size:58.882400pt;}
.fs2{font-size:64.002404pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:3.199997pt;}
.y6{bottom:271.360047pt;}
.y5{bottom:286.560059pt;}
.y5f{bottom:303.840088pt;}
.y6a{bottom:307.840088pt;}
.y7d{bottom:310.400086pt;}
.y66{bottom:317.600037pt;}
.y5e{bottom:321.600037pt;}
.y7c{bottom:327.200074pt;}
.y5d{bottom:331.520081pt;}
.y65{bottom:335.520081pt;}
.y34{bottom:339.840088pt;}
.y7b{bottom:344.000061pt;}
.y6c{bottom:345.280030pt;}
.y69{bottom:346.400086pt;}
.y5c{bottom:349.280030pt;}
.y33{bottom:356.640076pt;}
.y5b{bottom:359.040039pt;}
.y7f{bottom:360.640076pt;}
.y7a{bottom:360.960083pt;}
.y64{bottom:363.040039pt;}
.y73{bottom:372.800049pt;}
.y32{bottom:373.280030pt;}
.y63{bottom:373.920044pt;}
.y5a{bottom:376.800049pt;}
.y68{bottom:377.760071pt;}
.y72{bottom:386.720032pt;}
.y6d{bottom:387.680054pt;}
.y31{bottom:390.080079pt;}
.y59{bottom:390.720032pt;}
.y62{bottom:394.720032pt;}
.y58{bottom:401.600037pt;}
.y71{bottom:404.480042pt;}
.y2e{bottom:407.680054pt;}
.y61{bottom:411.520081pt;}
.y70{bottom:414.240052pt;}
.y2d{bottom:424.480042pt;}
.y30{bottom:424.800049pt;}
.y57{bottom:428.320069pt;}
.y6f{bottom:432.000061pt;}
.y2c{bottom:441.280030pt;}
.y2f{bottom:441.600037pt;}
.y6e{bottom:442.880066pt;}
.y56{bottom:445.280030pt;}
.y2b{bottom:458.880066pt;}
.y55{bottom:462.080079pt;}
.y2a{bottom:475.680054pt;}
.y54{bottom:479.040039pt;}
.y29{bottom:493.600037pt;}
.y67{bottom:495.520081pt;}
.y53{bottom:495.840088pt;}
.y28{bottom:510.400086pt;}
.y79{bottom:512.320069pt;}
.y52{bottom:512.640076pt;}
.y27{bottom:527.360047pt;}
.y78{bottom:529.280030pt;}
.y51{bottom:529.600037pt;}
.y26{bottom:544.160035pt;}
.y77{bottom:546.080079pt;}
.y50{bottom:546.400086pt;}
.y25{bottom:561.120057pt;}
.y76{bottom:563.040039pt;}
.y4f{bottom:563.360047pt;}
.y24{bottom:577.920044pt;}
.y4e{bottom:580.160035pt;}
.y23{bottom:594.720032pt;}
.y4d{bottom:597.120057pt;}
.y22{bottom:611.680054pt;}
.y4c{bottom:613.920044pt;}
.y21{bottom:628.480072pt;}
.y4b{bottom:630.720063pt;}
.y20{bottom:645.440064pt;}
.y4a{bottom:647.680054pt;}
.y1f{bottom:662.240052pt;}
.y49{bottom:664.480072pt;}
.y1e{bottom:679.040070pt;}
.y60{bottom:681.120057pt;}
.y48{bottom:681.440064pt;}
.y1d{bottom:696.000061pt;}
.y47{bottom:698.240052pt;}
.y1c{bottom:712.800049pt;}
.y46{bottom:715.040070pt;}
.y1b{bottom:729.760071pt;}
.y45{bottom:732.000061pt;}
.y1a{bottom:746.560059pt;}
.y44{bottom:748.800049pt;}
.y19{bottom:763.360047pt;}
.y43{bottom:765.760071pt;}
.y18{bottom:780.320069pt;}
.y42{bottom:782.560059pt;}
.y17{bottom:797.120057pt;}
.y41{bottom:799.360047pt;}
.y16{bottom:814.080048pt;}
.y40{bottom:816.320069pt;}
.y15{bottom:830.560059pt;}
.y3f{bottom:833.120057pt;}
.y14{bottom:847.840058pt;}
.y6b{bottom:849.760071pt;}
.y3e{bottom:850.080048pt;}
.y13{bottom:861.920044pt;}
.y7e{bottom:866.560059pt;}
.y3d{bottom:866.880066pt;}
.y12{bottom:879.360062pt;}
.y75{bottom:883.360062pt;}
.y3c{bottom:883.680054pt;}
.y11{bottom:896.320054pt;}
.y3b{bottom:900.640061pt;}
.y10{bottom:911.680054pt;}
.y3a{bottom:917.440064pt;}
.yf{bottom:928.480057pt;}
.y39{bottom:934.400055pt;}
.ye{bottom:945.280060pt;}
.y38{bottom:951.200058pt;}
.yd{bottom:962.240052pt;}
.y37{bottom:968.000061pt;}
.yc{bottom:977.920060pt;}
.yb{bottom:981.120057pt;}
.y36{bottom:984.960053pt;}
.y9{bottom:994.720063pt;}
.y8{bottom:997.920060pt;}
.y74{bottom:1001.440056pt;}
.y35{bottom:1001.760056pt;}
.y7{bottom:1013.920060pt;}
.y4{bottom:1018.560059pt;}
.y3{bottom:1035.040062pt;}
.y2{bottom:1049.120057pt;}
.y1{bottom:1063.200058pt;}
.h5{height:4.480175pt;}
.h7{height:16.479995pt;}
.h11{height:28.016711pt;}
.h2{height:34.384245pt;}
.h12{height:42.025188pt;}
.h3{height:42.177969pt;}
.h6{height:44.363058pt;}
.hc{height:44.880579pt;}
.hb{height:46.481750pt;}
.h9{height:46.507688pt;}
.h8{height:51.522100pt;}
.hd{height:51.550851pt;}
.ha{height:51.601870pt;}
.h15{height:53.619258pt;}
.h13{height:53.619378pt;}
.hf{height:53.619382pt;}
.he{height:53.619410pt;}
.h14{height:53.619502pt;}
.h10{height:53.619506pt;}
.h4{height:56.033355pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w2{width:7.200012pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:148.320007pt;}
.x13{left:155.839996pt;}
.x15{left:172.320007pt;}
.x14{left:179.839996pt;}
.xa{left:184.320007pt;}
.x2{left:191.199997pt;}
.xe{left:195.520004pt;}
.x10{left:198.720001pt;}
.x1{left:203.360001pt;}
.xf{left:210.880005pt;}
.xd{left:251.520004pt;}
.xb{left:301.760010pt;}
.x3{left:333.600006pt;}
.x11{left:341.119995pt;}
.x6{left:380.000000pt;}
.xc{left:385.760010pt;}
.x4{left:392.959991pt;}
.x12{left:400.480011pt;}
.x9{left:485.440002pt;}
.x7{left:520.799988pt;}
.x8{left:637.760010pt;}
}




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