
    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_68a9e4867c5674adfb03a44c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.800293;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_1f5514f406341b573cd01db7.woff')format("woff");}.ff2{font-family:ff2;line-height:0.851562;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_2fded0a91518032b5b93aa96.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b881a4dc12372bc3b6c9902f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.752000;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_f5aaab30ba55e092fd8892b9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.893066;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_0f2554dad3d25e3525c2e8a9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_fafaa6074d6427de6707ba68.woff')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6925513a14b8efd02b2eff0b.woff')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_f9e88112037eba8b4aa6f68b.woff')format("woff");}.ff9{font-family:ff9;line-height:1.084961;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:ffa;src:url('chunks/assets/font_4ce9e843972982961bfe5aca.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_efa39b8309f5fccf98c2f4cf.woff')format("woff");}.ffb{font-family:ffb;line-height:0.916992;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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-0.540600px;}
.ls3{letter-spacing:-0.073200px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.433200px;}
.ls7{letter-spacing:0.720000px;}
.ls9{letter-spacing:2.160000px;}
.lsc{letter-spacing:5.760000px;}
.ls6{letter-spacing:6.480000px;}
.lsb{letter-spacing:7.920000px;}
.lsd{letter-spacing:23.220000px;}
.lsa{letter-spacing:24.600000px;}
.ls8{letter-spacing:36.720000px;}
.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;}
}
.ws5{word-spacing:-21.060000px;}
.ws1{word-spacing:-19.726560px;}
.ws3{word-spacing:-18.360000px;}
.ws2{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.970440px;}
.ws4{word-spacing:0.000000px;}
._4{margin-left:-4.752000px;}
._5{margin-left:-3.332880px;}
._d{margin-left:-2.051280px;}
._3{margin-left:-1.044720px;}
._2{width:1.244880px;}
._7{width:2.627520px;}
._6{width:3.888000px;}
._17{width:5.796720px;}
._c{width:7.632000px;}
._18{width:9.432000px;}
._1e{width:10.670400px;}
._1a{width:12.240000px;}
._10{width:13.896000px;}
._11{width:15.083280px;}
._26{width:16.574400px;}
._16{width:19.380000px;}
._28{width:20.597520px;}
._27{width:21.600000px;}
._a{width:22.608000px;}
._b{width:23.688000px;}
._1f{width:25.104000px;}
._15{width:26.604720px;}
._14{width:27.720000px;}
._1d{width:29.678400px;}
._9{width:31.584000px;}
._8{width:32.688000px;}
._21{width:34.128000px;}
._13{width:35.438400px;}
._12{width:36.864000px;}
._22{width:40.248000px;}
._e{width:44.208000px;}
._f{width:45.432000px;}
._1c{width:49.680000px;}
._1b{width:52.416000px;}
._20{width:54.446400px;}
._19{width:55.944000px;}
._24{width:65.520000px;}
._25{width:194.580000px;}
._0{width:292.222560px;}
._23{width:535.800000px;}
._1{width:1422.946560px;}
.fc3{color:rgb(0,32,96);}
.fc2{color:rgb(51,51,204);}
.fc1{color:rgb(204,0,102);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.760000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:3.960000px;}
.y7{bottom:20.016000px;}
.y3e{bottom:31.890000px;}
.y6{bottom:43.776000px;}
.y3d{bottom:59.610000px;}
.y5{bottom:68.796000px;}
.y62{bottom:102.816000px;}
.y72{bottom:110.556000px;}
.y61{bottom:126.756000px;}
.y71{bottom:134.316000px;}
.y22{bottom:137.736000px;}
.y60{bottom:150.510000px;}
.y70{bottom:158.070000px;}
.y21{bottom:161.490000px;}
.y5f{bottom:174.270000px;}
.y6f{bottom:181.830000px;}
.y20{bottom:185.250000px;}
.y5e{bottom:198.030000px;}
.y6e{bottom:205.770000px;}
.y1f{bottom:209.010000px;}
.y5d{bottom:221.970000px;}
.y50{bottom:222.870000px;}
.y6d{bottom:229.530000px;}
.y1e{bottom:232.950000px;}
.y5c{bottom:245.730000px;}
.y4f{bottom:246.630000px;}
.y6c{bottom:253.290000px;}
.y1d{bottom:256.710000px;}
.y5b{bottom:269.490000px;}
.y4e{bottom:270.390000px;}
.y6b{bottom:277.050000px;}
.y1c{bottom:280.470000px;}
.y5a{bottom:293.295000px;}
.y4d{bottom:294.375000px;}
.y6a{bottom:301.035000px;}
.y1b{bottom:304.275000px;}
.y59{bottom:317.235000px;}
.y4c{bottom:318.135000px;}
.y69{bottom:324.795000px;}
.y1a{bottom:328.035000px;}
.y58{bottom:340.995000px;}
.y4b{bottom:341.895000px;}
.y68{bottom:348.555000px;}
.y19{bottom:351.975000px;}
.y57{bottom:364.755000px;}
.y4a{bottom:365.655000px;}
.y67{bottom:372.315000px;}
.y18{bottom:375.735000px;}
.y3b{bottom:377.355000px;}
.y56{bottom:388.515000px;}
.y49{bottom:389.415000px;}
.y66{bottom:396.255000px;}
.y17{bottom:399.495000px;}
.y3a{bottom:401.115000px;}
.y55{bottom:412.275000px;}
.y48{bottom:413.355000px;}
.y65{bottom:420.015000px;}
.y16{bottom:423.255000px;}
.y39{bottom:424.875000px;}
.y54{bottom:436.215000px;}
.y47{bottom:437.115000px;}
.y64{bottom:443.775000px;}
.y15{bottom:447.195000px;}
.y38{bottom:448.635000px;}
.y53{bottom:459.975000px;}
.y46{bottom:460.875000px;}
.y63{bottom:467.535000px;}
.y14{bottom:470.955000px;}
.y37{bottom:472.575000px;}
.y52{bottom:483.735000px;}
.y45{bottom:484.635000px;}
.y13{bottom:494.715000px;}
.y36{bottom:496.335000px;}
.y51{bottom:507.495000px;}
.y44{bottom:508.575000px;}
.y12{bottom:518.475000px;}
.y35{bottom:520.095000px;}
.y43{bottom:532.335000px;}
.y11{bottom:542.415000px;}
.y34{bottom:543.855000px;}
.y3c{bottom:547.815000px;}
.y42{bottom:556.095000px;}
.y10{bottom:566.205000px;}
.y33{bottom:567.825000px;}
.y41{bottom:579.885000px;}
.yf{bottom:589.965000px;}
.y32{bottom:591.585000px;}
.y40{bottom:603.825000px;}
.ye{bottom:609.765000px;}
.y31{bottom:615.345000px;}
.y30{bottom:639.105000px;}
.y2f{bottom:662.865000px;}
.y2e{bottom:686.805000px;}
.y2d{bottom:710.565000px;}
.y2c{bottom:734.325000px;}
.y2b{bottom:758.085000px;}
.y2a{bottom:782.025000px;}
.y29{bottom:805.785000px;}
.y28{bottom:829.545000px;}
.y27{bottom:853.350000px;}
.y26{bottom:877.290000px;}
.y25{bottom:901.050000px;}
.y24{bottom:924.810000px;}
.y23{bottom:948.570000px;}
.yd{bottom:972.510000px;}
.yc{bottom:996.270000px;}
.yb{bottom:1020.030000px;}
.ya{bottom:1043.790000px;}
.y9{bottom:1067.730000px;}
.y8{bottom:1091.490000px;}
.y4{bottom:1128.390000px;}
.y3{bottom:1152.180000px;}
.y2{bottom:1177.020000px;}
.y1{bottom:1207.800000px;}
.h9{height:50.484375px;}
.he{height:58.429688px;}
.h4{height:67.169883px;}
.hc{height:68.362734px;}
.h8{height:70.628906px;}
.ha{height:70.664062px;}
.h7{height:71.824219px;}
.h6{height:74.953125px;}
.h2{height:76.355508px;}
.hb{height:79.236000px;}
.hd{height:82.635820px;}
.h5{height:82.676953px;}
.h3{height:86.115234px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:258.375000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:10.836000px;}
.x5{left:42.479987px;}
.x4{left:84.959987px;}
.xa{left:101.555987px;}
.x1{left:106.415987px;}
.x11{left:173.369987px;}
.x8{left:182.189987px;}
.x12{left:294.554987px;}
.x13{left:297.794987px;}
.x6{left:309.134987px;}
.xf{left:354.674987px;}
.x9{left:355.754987px;}
.xe{left:377.714987px;}
.xd{left:396.254987px;}
.xb{left:407.594987px;}
.x7{left:446.474987px;}
.x2{left:546.404987px;}
.xc{left:584.744987px;}
.x3{left:636.764987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.480533pt;}
.ls3{letter-spacing:-0.065067pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.385067pt;}
.ls7{letter-spacing:0.640000pt;}
.ls9{letter-spacing:1.920000pt;}
.lsc{letter-spacing:5.120000pt;}
.ls6{letter-spacing:5.760000pt;}
.lsb{letter-spacing:7.040000pt;}
.lsd{letter-spacing:20.640000pt;}
.lsa{letter-spacing:21.866667pt;}
.ls8{letter-spacing:32.640000pt;}
.ws5{word-spacing:-18.720000pt;}
.ws1{word-spacing:-17.534720pt;}
.ws3{word-spacing:-16.320000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws0{word-spacing:-14.195947pt;}
.ws4{word-spacing:0.000000pt;}
._4{margin-left:-4.224000pt;}
._5{margin-left:-2.962560pt;}
._d{margin-left:-1.823360pt;}
._3{margin-left:-0.928640pt;}
._2{width:1.106560pt;}
._7{width:2.335573pt;}
._6{width:3.456000pt;}
._17{width:5.152640pt;}
._c{width:6.784000pt;}
._18{width:8.384000pt;}
._1e{width:9.484800pt;}
._1a{width:10.880000pt;}
._10{width:12.352000pt;}
._11{width:13.407360pt;}
._26{width:14.732800pt;}
._16{width:17.226667pt;}
._28{width:18.308907pt;}
._27{width:19.200000pt;}
._a{width:20.096000pt;}
._b{width:21.056000pt;}
._1f{width:22.314667pt;}
._15{width:23.648640pt;}
._14{width:24.640000pt;}
._1d{width:26.380800pt;}
._9{width:28.074667pt;}
._8{width:29.056000pt;}
._21{width:30.336000pt;}
._13{width:31.500800pt;}
._12{width:32.768000pt;}
._22{width:35.776000pt;}
._e{width:39.296000pt;}
._f{width:40.384000pt;}
._1c{width:44.160000pt;}
._1b{width:46.592000pt;}
._20{width:48.396800pt;}
._19{width:49.728000pt;}
._24{width:58.240000pt;}
._25{width:172.960000pt;}
._0{width:259.753387pt;}
._23{width:476.266667pt;}
._1{width:1264.841387pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:3.520000pt;}
.y7{bottom:17.792000pt;}
.y3e{bottom:28.346667pt;}
.y6{bottom:38.912000pt;}
.y3d{bottom:52.986667pt;}
.y5{bottom:61.152000pt;}
.y62{bottom:91.392000pt;}
.y72{bottom:98.272000pt;}
.y61{bottom:112.672000pt;}
.y71{bottom:119.392000pt;}
.y22{bottom:122.432000pt;}
.y60{bottom:133.786667pt;}
.y70{bottom:140.506667pt;}
.y21{bottom:143.546667pt;}
.y5f{bottom:154.906667pt;}
.y6f{bottom:161.626667pt;}
.y20{bottom:164.666667pt;}
.y5e{bottom:176.026667pt;}
.y6e{bottom:182.906667pt;}
.y1f{bottom:185.786667pt;}
.y5d{bottom:197.306667pt;}
.y50{bottom:198.106667pt;}
.y6d{bottom:204.026667pt;}
.y1e{bottom:207.066667pt;}
.y5c{bottom:218.426667pt;}
.y4f{bottom:219.226667pt;}
.y6c{bottom:225.146667pt;}
.y1d{bottom:228.186667pt;}
.y5b{bottom:239.546667pt;}
.y4e{bottom:240.346667pt;}
.y6b{bottom:246.266667pt;}
.y1c{bottom:249.306667pt;}
.y5a{bottom:260.706667pt;}
.y4d{bottom:261.666667pt;}
.y6a{bottom:267.586667pt;}
.y1b{bottom:270.466667pt;}
.y59{bottom:281.986667pt;}
.y4c{bottom:282.786667pt;}
.y69{bottom:288.706667pt;}
.y1a{bottom:291.586667pt;}
.y58{bottom:303.106667pt;}
.y4b{bottom:303.906667pt;}
.y68{bottom:309.826667pt;}
.y19{bottom:312.866667pt;}
.y57{bottom:324.226667pt;}
.y4a{bottom:325.026667pt;}
.y67{bottom:330.946667pt;}
.y18{bottom:333.986667pt;}
.y3b{bottom:335.426667pt;}
.y56{bottom:345.346667pt;}
.y49{bottom:346.146667pt;}
.y66{bottom:352.226667pt;}
.y17{bottom:355.106667pt;}
.y3a{bottom:356.546667pt;}
.y55{bottom:366.466667pt;}
.y48{bottom:367.426667pt;}
.y65{bottom:373.346667pt;}
.y16{bottom:376.226667pt;}
.y39{bottom:377.666667pt;}
.y54{bottom:387.746667pt;}
.y47{bottom:388.546667pt;}
.y64{bottom:394.466667pt;}
.y15{bottom:397.506667pt;}
.y38{bottom:398.786667pt;}
.y53{bottom:408.866667pt;}
.y46{bottom:409.666667pt;}
.y63{bottom:415.586667pt;}
.y14{bottom:418.626667pt;}
.y37{bottom:420.066667pt;}
.y52{bottom:429.986667pt;}
.y45{bottom:430.786667pt;}
.y13{bottom:439.746667pt;}
.y36{bottom:441.186667pt;}
.y51{bottom:451.106667pt;}
.y44{bottom:452.066667pt;}
.y12{bottom:460.866667pt;}
.y35{bottom:462.306667pt;}
.y43{bottom:473.186667pt;}
.y11{bottom:482.146667pt;}
.y34{bottom:483.426667pt;}
.y3c{bottom:486.946667pt;}
.y42{bottom:494.306667pt;}
.y10{bottom:503.293333pt;}
.y33{bottom:504.733333pt;}
.y41{bottom:515.453333pt;}
.yf{bottom:524.413333pt;}
.y32{bottom:525.853333pt;}
.y40{bottom:536.733333pt;}
.ye{bottom:542.013333pt;}
.y31{bottom:546.973333pt;}
.y30{bottom:568.093333pt;}
.y2f{bottom:589.213333pt;}
.y2e{bottom:610.493333pt;}
.y2d{bottom:631.613333pt;}
.y2c{bottom:652.733333pt;}
.y2b{bottom:673.853333pt;}
.y2a{bottom:695.133333pt;}
.y29{bottom:716.253333pt;}
.y28{bottom:737.373333pt;}
.y27{bottom:758.533333pt;}
.y26{bottom:779.813333pt;}
.y25{bottom:800.933333pt;}
.y24{bottom:822.053333pt;}
.y23{bottom:843.173333pt;}
.yd{bottom:864.453333pt;}
.yc{bottom:885.573333pt;}
.yb{bottom:906.693333pt;}
.ya{bottom:927.813333pt;}
.y9{bottom:949.093333pt;}
.y8{bottom:970.213333pt;}
.y4{bottom:1003.013333pt;}
.y3{bottom:1024.160000pt;}
.y2{bottom:1046.240000pt;}
.y1{bottom:1073.600000pt;}
.h9{height:44.875000pt;}
.he{height:51.937500pt;}
.h4{height:59.706562pt;}
.hc{height:60.766875pt;}
.h8{height:62.781250pt;}
.ha{height:62.812500pt;}
.h7{height:63.843750pt;}
.h6{height:66.625000pt;}
.h2{height:67.871563pt;}
.hb{height:70.432000pt;}
.hd{height:73.454062pt;}
.h5{height:73.490625pt;}
.h3{height:76.546875pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:229.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:9.632000pt;}
.x5{left:37.759988pt;}
.x4{left:75.519988pt;}
.xa{left:90.271988pt;}
.x1{left:94.591988pt;}
.x11{left:154.106655pt;}
.x8{left:161.946655pt;}
.x12{left:261.826655pt;}
.x13{left:264.706655pt;}
.x6{left:274.786655pt;}
.xf{left:315.266655pt;}
.x9{left:316.226655pt;}
.xe{left:335.746655pt;}
.xd{left:352.226655pt;}
.xb{left:362.306655pt;}
.x7{left:396.866655pt;}
.x2{left:485.693322pt;}
.xc{left:519.773322pt;}
.x3{left:566.013322pt;}
}




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