
    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_48fde9c40d443209c5d01d52.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b47dd673c3e2c7dc797c6246.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d893c9511e4a66bad1acdc56.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.080566;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_b641b358d7843aecd88c78c4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f689eec561114b2c0bab0133.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_daea760d6bc85d475ccfce6c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_320a6de12185310d3585fbe8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_f4dacd51e121c27a891e3f17.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_be740bf78e1dee60f24c56c3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.180000px;}
.ls11{letter-spacing:-0.144000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.028080px;}
.lsc{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.540000px;}
.lse{letter-spacing:2.880000px;}
.lsb{letter-spacing:12.240000px;}
.ls5{letter-spacing:15.660000px;}
.ls1{letter-spacing:16.560000px;}
.lsa{letter-spacing:25.200000px;}
.ls4{letter-spacing:30.780000px;}
.ls9{letter-spacing:33.984000px;}
.lsf{letter-spacing:39.905280px;}
.lsd{letter-spacing:41.040000px;}
.ls7{letter-spacing:44.460000px;}
.ls8{letter-spacing:48.060000px;}
.ls2{letter-spacing:55.980000px;}
.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:-21.060000px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.856000px;}
.ws4{word-spacing:-16.560000px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-1.010880px;}
._3{width:1.224000px;}
._4{width:2.664000px;}
._5{width:4.032000px;}
._2{width:5.760000px;}
._1{width:6.816000px;}
._14{width:7.908000px;}
._f{width:9.000000px;}
._e{width:10.008000px;}
._10{width:11.088000px;}
._11{width:12.600000px;}
._12{width:13.752000px;}
._9{width:15.209760px;}
._8{width:16.488000px;}
._29{width:18.311760px;}
._13{width:19.512000px;}
._21{width:23.081760px;}
._22{width:24.261120px;}
._2a{width:25.945920px;}
._2b{width:27.546480px;}
._1e{width:30.579120px;}
._1f{width:31.842720px;}
._34{width:34.544160px;}
._7{width:35.784000px;}
._6{width:37.008000px;}
._23{width:38.076480px;}
._24{width:39.508560px;}
._d{width:40.752000px;}
._c{width:41.760000px;}
._2e{width:43.299360px;}
._30{width:45.510960px;}
._17{width:46.668960px;}
._16{width:47.679840px;}
._27{width:49.027680px;}
._28{width:50.038560px;}
._2f{width:52.902720px;}
._26{width:54.419040px;}
._1d{width:55.503120px;}
._1c{width:56.862000px;}
._1b{width:61.158240px;}
._31{width:63.011520px;}
._2c{width:65.286000px;}
._19{width:72.446400px;}
._20{width:75.142080px;}
._35{width:81.144000px;}
._36{width:82.296000px;}
._32{width:86.682960px;}
._33{width:88.874160px;}
._15{width:96.623280px;}
._18{width:109.006560px;}
._a{width:111.744000px;}
._b{width:112.908000px;}
._2d{width:131.919840px;}
._1a{width:147.335760px;}
._25{width:152.642880px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:29.376000px;}
.y2{bottom:31.176000px;}
.y63{bottom:75.996000px;}
.y2d{bottom:79.956000px;}
.y50{bottom:83.916000px;}
.y62{bottom:96.696000px;}
.y2c{bottom:107.676000px;}
.y4f{bottom:111.636000px;}
.y61{bottom:117.396000px;}
.y2b{bottom:135.396000px;}
.y60{bottom:138.096000px;}
.y4e{bottom:139.356000px;}
.y5f{bottom:158.790000px;}
.y2a{bottom:163.290000px;}
.y4d{bottom:167.250000px;}
.y5e{bottom:179.490000px;}
.y29{bottom:191.010000px;}
.y4c{bottom:194.970000px;}
.y5d{bottom:200.190000px;}
.y28{bottom:218.730000px;}
.y5c{bottom:220.890000px;}
.y4b{bottom:222.690000px;}
.y5b{bottom:241.590000px;}
.y27{bottom:246.450000px;}
.y4a{bottom:250.410000px;}
.y5a{bottom:262.290000px;}
.y26{bottom:274.350000px;}
.y49{bottom:278.310000px;}
.y59{bottom:283.035000px;}
.y25{bottom:302.115000px;}
.y58{bottom:303.735000px;}
.y48{bottom:306.075000px;}
.y57{bottom:324.435000px;}
.y24{bottom:329.835000px;}
.y47{bottom:333.795000px;}
.y56{bottom:345.135000px;}
.y23{bottom:357.555000px;}
.y46{bottom:361.695000px;}
.y55{bottom:365.835000px;}
.y22{bottom:385.455000px;}
.y54{bottom:386.535000px;}
.y45{bottom:389.415000px;}
.y53{bottom:407.235000px;}
.y21{bottom:412.095000px;}
.y44{bottom:417.135000px;}
.y52{bottom:427.935000px;}
.y20{bottom:435.855000px;}
.y43{bottom:444.855000px;}
.y51{bottom:450.435000px;}
.y1f{bottom:459.615000px;}
.y42{bottom:472.755000px;}
.y1e{bottom:483.555000px;}
.y41{bottom:500.475000px;}
.y1d{bottom:507.315000px;}
.y40{bottom:528.195000px;}
.y1c{bottom:531.075000px;}
.y1b{bottom:554.835000px;}
.y3f{bottom:555.915000px;}
.y1a{bottom:578.805000px;}
.y3e{bottom:583.845000px;}
.y19{bottom:602.565000px;}
.y3d{bottom:611.565000px;}
.y18{bottom:626.325000px;}
.y3c{bottom:639.285000px;}
.y17{bottom:650.085000px;}
.y3b{bottom:667.185000px;}
.y16{bottom:674.025000px;}
.y3a{bottom:694.905000px;}
.y15{bottom:697.785000px;}
.y14{bottom:721.545000px;}
.y39{bottom:722.625000px;}
.y13{bottom:745.305000px;}
.y38{bottom:750.345000px;}
.y12{bottom:769.245000px;}
.y37{bottom:778.245000px;}
.y11{bottom:793.005000px;}
.y36{bottom:805.965000px;}
.y10{bottom:816.765000px;}
.y35{bottom:833.685000px;}
.yf{bottom:840.525000px;}
.y34{bottom:861.630000px;}
.ye{bottom:864.510000px;}
.yd{bottom:888.270000px;}
.y33{bottom:889.350000px;}
.yc{bottom:912.030000px;}
.y32{bottom:917.070000px;}
.yb{bottom:935.790000px;}
.y31{bottom:944.790000px;}
.ya{bottom:959.550000px;}
.y30{bottom:972.690000px;}
.y9{bottom:983.490000px;}
.y2f{bottom:1000.410000px;}
.y8{bottom:1007.250000px;}
.y2e{bottom:1028.130000px;}
.y7{bottom:1031.010000px;}
.y6{bottom:1055.850000px;}
.y5{bottom:1083.750000px;}
.y1{bottom:1190.160000px;}
.h3{height:31.860000px;}
.h8{height:52.628906px;}
.ha{height:58.651172px;}
.h9{height:59.066719px;}
.h6{height:70.628906px;}
.h5{height:70.664062px;}
.h7{height:72.562500px;}
.hb{height:74.004654px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.996000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:22.140000px;}
.x1{left:84.959987px;}
.xd{left:90.035987px;}
.xe{left:117.035987px;}
.x4{left:119.555987px;}
.xa{left:138.095987px;}
.x5{left:159.689987px;}
.x8{left:261.029987px;}
.x7{left:299.414987px;}
.x2{left:409.755000px;}
.xc{left:421.814987px;}
.x6{left:446.474987px;}
.x9{left:461.774987px;}
.xb{left:472.964987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.160000pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.024960pt;}
.lsc{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.480000pt;}
.lse{letter-spacing:2.560000pt;}
.lsb{letter-spacing:10.880000pt;}
.ls5{letter-spacing:13.920000pt;}
.ls1{letter-spacing:14.720000pt;}
.lsa{letter-spacing:22.400000pt;}
.ls4{letter-spacing:27.360000pt;}
.ls9{letter-spacing:30.208000pt;}
.lsf{letter-spacing:35.471360pt;}
.lsd{letter-spacing:36.480000pt;}
.ls7{letter-spacing:39.520000pt;}
.ls8{letter-spacing:42.720000pt;}
.ls2{letter-spacing:49.760000pt;}
.ws0{word-spacing:-18.720000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.872000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-0.898560pt;}
._3{width:1.088000pt;}
._4{width:2.368000pt;}
._5{width:3.584000pt;}
._2{width:5.120000pt;}
._1{width:6.058667pt;}
._14{width:7.029333pt;}
._f{width:8.000000pt;}
._e{width:8.896000pt;}
._10{width:9.856000pt;}
._11{width:11.200000pt;}
._12{width:12.224000pt;}
._9{width:13.519787pt;}
._8{width:14.656000pt;}
._29{width:16.277120pt;}
._13{width:17.344000pt;}
._21{width:20.517120pt;}
._22{width:21.565440pt;}
._2a{width:23.063040pt;}
._2b{width:24.485760pt;}
._1e{width:27.181440pt;}
._1f{width:28.304640pt;}
._34{width:30.705920pt;}
._7{width:31.808000pt;}
._6{width:32.896000pt;}
._23{width:33.845760pt;}
._24{width:35.118720pt;}
._d{width:36.224000pt;}
._c{width:37.120000pt;}
._2e{width:38.488320pt;}
._30{width:40.454187pt;}
._17{width:41.483520pt;}
._16{width:42.382080pt;}
._27{width:43.580160pt;}
._28{width:44.478720pt;}
._2f{width:47.024640pt;}
._26{width:48.372480pt;}
._1d{width:49.336107pt;}
._1c{width:50.544000pt;}
._1b{width:54.362880pt;}
._31{width:56.010240pt;}
._2c{width:58.032000pt;}
._19{width:64.396800pt;}
._20{width:66.792960pt;}
._35{width:72.128000pt;}
._36{width:73.152000pt;}
._32{width:77.051520pt;}
._33{width:78.999253pt;}
._15{width:85.887360pt;}
._18{width:96.894720pt;}
._a{width:99.328000pt;}
._b{width:100.362667pt;}
._2d{width:117.262080pt;}
._1a{width:130.965120pt;}
._25{width:135.682560pt;}
.fs2{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:26.112000pt;}
.y2{bottom:27.712000pt;}
.y63{bottom:67.552000pt;}
.y2d{bottom:71.072000pt;}
.y50{bottom:74.592000pt;}
.y62{bottom:85.952000pt;}
.y2c{bottom:95.712000pt;}
.y4f{bottom:99.232000pt;}
.y61{bottom:104.352000pt;}
.y2b{bottom:120.352000pt;}
.y60{bottom:122.752000pt;}
.y4e{bottom:123.872000pt;}
.y5f{bottom:141.146667pt;}
.y2a{bottom:145.146667pt;}
.y4d{bottom:148.666667pt;}
.y5e{bottom:159.546667pt;}
.y29{bottom:169.786667pt;}
.y4c{bottom:173.306667pt;}
.y5d{bottom:177.946667pt;}
.y28{bottom:194.426667pt;}
.y5c{bottom:196.346667pt;}
.y4b{bottom:197.946667pt;}
.y5b{bottom:214.746667pt;}
.y27{bottom:219.066667pt;}
.y4a{bottom:222.586667pt;}
.y5a{bottom:233.146667pt;}
.y26{bottom:243.866667pt;}
.y49{bottom:247.386667pt;}
.y59{bottom:251.586667pt;}
.y25{bottom:268.546667pt;}
.y58{bottom:269.986667pt;}
.y48{bottom:272.066667pt;}
.y57{bottom:288.386667pt;}
.y24{bottom:293.186667pt;}
.y47{bottom:296.706667pt;}
.y56{bottom:306.786667pt;}
.y23{bottom:317.826667pt;}
.y46{bottom:321.506667pt;}
.y55{bottom:325.186667pt;}
.y22{bottom:342.626667pt;}
.y54{bottom:343.586667pt;}
.y45{bottom:346.146667pt;}
.y53{bottom:361.986667pt;}
.y21{bottom:366.306667pt;}
.y44{bottom:370.786667pt;}
.y52{bottom:380.386667pt;}
.y20{bottom:387.426667pt;}
.y43{bottom:395.426667pt;}
.y51{bottom:400.386667pt;}
.y1f{bottom:408.546667pt;}
.y42{bottom:420.226667pt;}
.y1e{bottom:429.826667pt;}
.y41{bottom:444.866667pt;}
.y1d{bottom:450.946667pt;}
.y40{bottom:469.506667pt;}
.y1c{bottom:472.066667pt;}
.y1b{bottom:493.186667pt;}
.y3f{bottom:494.146667pt;}
.y1a{bottom:514.493333pt;}
.y3e{bottom:518.973333pt;}
.y19{bottom:535.613333pt;}
.y3d{bottom:543.613333pt;}
.y18{bottom:556.733333pt;}
.y3c{bottom:568.253333pt;}
.y17{bottom:577.853333pt;}
.y3b{bottom:593.053333pt;}
.y16{bottom:599.133333pt;}
.y3a{bottom:617.693333pt;}
.y15{bottom:620.253333pt;}
.y14{bottom:641.373333pt;}
.y39{bottom:642.333333pt;}
.y13{bottom:662.493333pt;}
.y38{bottom:666.973333pt;}
.y12{bottom:683.773333pt;}
.y37{bottom:691.773333pt;}
.y11{bottom:704.893333pt;}
.y36{bottom:716.413333pt;}
.y10{bottom:726.013333pt;}
.y35{bottom:741.053333pt;}
.yf{bottom:747.133333pt;}
.y34{bottom:765.893333pt;}
.ye{bottom:768.453333pt;}
.yd{bottom:789.573333pt;}
.y33{bottom:790.533333pt;}
.yc{bottom:810.693333pt;}
.y32{bottom:815.173333pt;}
.yb{bottom:831.813333pt;}
.y31{bottom:839.813333pt;}
.ya{bottom:852.933333pt;}
.y30{bottom:864.613333pt;}
.y9{bottom:874.213333pt;}
.y2f{bottom:889.253333pt;}
.y8{bottom:895.333333pt;}
.y2e{bottom:913.893333pt;}
.y7{bottom:916.453333pt;}
.y6{bottom:938.533333pt;}
.y5{bottom:963.333333pt;}
.y1{bottom:1057.920000pt;}
.h3{height:28.320000pt;}
.h8{height:46.781250pt;}
.ha{height:52.134375pt;}
.h9{height:52.503750pt;}
.h6{height:62.781250pt;}
.h5{height:62.812500pt;}
.h7{height:64.500000pt;}
.hb{height:65.781915pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:67.552000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:19.680000pt;}
.x1{left:75.519988pt;}
.xd{left:80.031988pt;}
.xe{left:104.031988pt;}
.x4{left:106.271988pt;}
.xa{left:122.751988pt;}
.x5{left:141.946655pt;}
.x8{left:232.026655pt;}
.x7{left:266.146655pt;}
.x2{left:364.226667pt;}
.xc{left:374.946655pt;}
.x6{left:396.866655pt;}
.x9{left:410.466655pt;}
.xb{left:420.413322pt;}
}




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