
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_2a7375bd941247d44b1e5ddd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.934082;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_2cd78404944587f910e5d962.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9e4cfc69541b6fa6bc6f3767.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_5276c6f16de2f2a9bf8e6fe5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_480bbfcb9225ffac9f9b1506.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9e665d7bc6da34fe79c91fa3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.870605;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_7bb94a7e6853fcae1e97f85b.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;}
.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;}
.lsb{letter-spacing:-1.404000px;}
.ls6{letter-spacing:-0.900000px;}
.lsd{letter-spacing:-0.690000px;}
.ls9{letter-spacing:-0.378600px;}
.ls8{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.180000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.028080px;}
.ls10{letter-spacing:0.149760px;}
.lse{letter-spacing:0.341400px;}
.ls7{letter-spacing:0.350400px;}
.ls3{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.540000px;}
.lsf{letter-spacing:9.509760px;}
.lsc{letter-spacing:42.480000px;}
.ls0{letter-spacing:197.429760px;}
.ls1{letter-spacing:1083.329760px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-21.420000px;}
.ws4{word-spacing:-21.410400px;}
.wsb{word-spacing:-21.401400px;}
.ws8{word-spacing:-21.088080px;}
.ws2{word-spacing:-21.060000px;}
.ws5{word-spacing:-20.700000px;}
.ws6{word-spacing:-20.681400px;}
.wsa{word-spacing:-20.370000px;}
.ws9{word-spacing:-19.656000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-0.066240px;}
.ws7{word-spacing:0.000000px;}
._0{margin-left:-196.973760px;}
._26{margin-left:-2.131440px;}
._1{margin-left:-1.126080px;}
._3{width:1.347840px;}
._1f{width:2.483520px;}
._24{width:3.612720px;}
._b{width:5.545440px;}
._22{width:6.570720px;}
._21{width:7.612560px;}
._29{width:8.844000px;}
._13{width:9.878400px;}
._f{width:11.518560px;}
._11{width:12.751200px;}
._17{width:14.186640px;}
._18{width:15.198240px;}
._6{width:16.848000px;}
._16{width:18.143280px;}
._7{width:19.592160px;}
._5{width:22.835280px;}
._1e{width:24.109680px;}
._1d{width:25.914960px;}
._1c{width:27.102960px;}
._a{width:28.672560px;}
._15{width:29.720760px;}
._23{width:31.184760px;}
._25{width:33.106320px;}
._20{width:36.085680px;}
._2d{width:38.087280px;}
._27{width:39.508560px;}
._28{width:40.911600px;}
._2a{width:42.541200px;}
._9{width:43.804800px;}
._8{width:45.099360px;}
._2e{width:46.885680px;}
._10{width:50.673360px;}
._12{width:57.451680px;}
._30{width:64.863840px;}
._2f{width:66.427200px;}
._2b{width:67.981680px;}
._2c{width:69.170160px;}
._4{width:73.567920px;}
._1a{width:91.990080px;}
._19{width:93.652560px;}
._e{width:101.424960px;}
._14{width:102.876720px;}
._1b{width:103.932480px;}
._d{width:107.730960px;}
._c{width:109.018560px;}
._2{width:638.842080px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:5.760000px;}
.y3{bottom:6.120000px;}
.y2{bottom:26.100000px;}
.y4{bottom:28.980000px;}
.y2a{bottom:88.380000px;}
.y50{bottom:96.660000px;}
.y29{bottom:116.280000px;}
.y4f{bottom:124.380000px;}
.y28{bottom:144.036000px;}
.y4e{bottom:161.310000px;}
.y27{bottom:171.750000px;}
.y4d{bottom:189.030000px;}
.y26{bottom:199.470000px;}
.y4c{bottom:216.750000px;}
.y25{bottom:227.370000px;}
.y6a{bottom:236.370000px;}
.y4b{bottom:244.470000px;}
.y24{bottom:255.090000px;}
.y69{bottom:264.090000px;}
.y4a{bottom:272.370000px;}
.y23{bottom:282.810000px;}
.y68{bottom:291.810000px;}
.y49{bottom:300.090000px;}
.y7c{bottom:305.850000px;}
.y22{bottom:310.530000px;}
.y48{bottom:327.810000px;}
.y67{bottom:328.530000px;}
.y21{bottom:338.430000px;}
.y7b{bottom:339.150000px;}
.y47{bottom:355.530000px;}
.y66{bottom:356.430000px;}
.y20{bottom:366.150000px;}
.y7a{bottom:375.870000px;}
.y46{bottom:383.475000px;}
.y65{bottom:384.195000px;}
.y1f{bottom:402.915000px;}
.y79{bottom:412.815000px;}
.y45{bottom:420.195000px;}
.y64{bottom:420.915000px;}
.y1e{bottom:439.815000px;}
.y44{bottom:447.915000px;}
.y63{bottom:448.815000px;}
.y78{bottom:449.535000px;}
.y1d{bottom:467.535000px;}
.y43{bottom:475.815000px;}
.y62{bottom:476.535000px;}
.y77{bottom:486.255000px;}
.y1c{bottom:495.255000px;}
.y42{bottom:503.535000px;}
.y61{bottom:504.255000px;}
.y76{bottom:522.975000px;}
.y1b{bottom:531.975000px;}
.y41{bottom:540.255000px;}
.y60{bottom:540.975000px;}
.y1a{bottom:559.875000px;}
.y40{bottom:567.975000px;}
.y5f{bottom:568.875000px;}
.y19{bottom:587.595000px;}
.y3f{bottom:595.875000px;}
.y5e{bottom:596.595000px;}
.y18{bottom:615.315000px;}
.y3e{bottom:632.625000px;}
.y5d{bottom:633.345000px;}
.y17{bottom:643.245000px;}
.y3d{bottom:669.345000px;}
.y5c{bottom:670.245000px;}
.y16{bottom:670.965000px;}
.y3c{bottom:697.245000px;}
.y5b{bottom:697.965000px;}
.y15{bottom:698.685000px;}
.y3b{bottom:724.965000px;}
.y5a{bottom:725.685000px;}
.y14{bottom:726.405000px;}
.y3a{bottom:752.685000px;}
.y59{bottom:753.405000px;}
.y13{bottom:754.305000px;}
.y39{bottom:780.405000px;}
.y75{bottom:781.305000px;}
.y58{bottom:790.305000px;}
.y12{bottom:791.025000px;}
.y38{bottom:808.305000px;}
.y74{bottom:809.025000px;}
.y11{bottom:818.745000px;}
.y57{bottom:827.025000px;}
.y37{bottom:836.025000px;}
.y73{bottom:836.745000px;}
.y10{bottom:846.465000px;}
.y56{bottom:854.745000px;}
.y36{bottom:863.745000px;}
.y72{bottom:864.465000px;}
.yf{bottom:874.365000px;}
.y55{bottom:882.465000px;}
.y35{bottom:891.510000px;}
.y71{bottom:901.410000px;}
.ye{bottom:902.130000px;}
.y54{bottom:910.410000px;}
.y34{bottom:919.410000px;}
.y70{bottom:929.130000px;}
.yd{bottom:929.850000px;}
.y53{bottom:938.130000px;}
.y33{bottom:947.130000px;}
.y6f{bottom:956.850000px;}
.yc{bottom:957.750000px;}
.y52{bottom:965.850000px;}
.y32{bottom:974.850000px;}
.y6e{bottom:984.750000px;}
.yb{bottom:985.470000px;}
.y51{bottom:993.750000px;}
.y31{bottom:1002.750000px;}
.y6d{bottom:1012.470000px;}
.ya{bottom:1022.190000px;}
.y30{bottom:1030.470000px;}
.y6c{bottom:1049.190000px;}
.y2f{bottom:1058.190000px;}
.y9{bottom:1058.550000px;}
.y6b{bottom:1076.910000px;}
.y2e{bottom:1085.910000px;}
.y8{bottom:1095.450000px;}
.y2d{bottom:1113.810000px;}
.y7{bottom:1132.170000px;}
.y2c{bottom:1141.560000px;}
.y6{bottom:1159.920000px;}
.y2b{bottom:1169.280000px;}
.y1{bottom:1226.160000px;}
.h4{height:21.420000px;}
.h7{height:59.066719px;}
.h2{height:65.884219px;}
.h3{height:70.628906px;}
.h6{height:82.676953px;}
.h5{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:49.536000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:20.550000px;}
.x1{left:95.796000px;}
.x5{left:107.136000px;}
.x2{left:111.636000px;}
.x6{left:312.555000px;}
.x3{left:438.915000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-1.248000pt;}
.ls6{letter-spacing:-0.800000pt;}
.lsd{letter-spacing:-0.613333pt;}
.ls9{letter-spacing:-0.336533pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.024960pt;}
.ls10{letter-spacing:0.133120pt;}
.lse{letter-spacing:0.303467pt;}
.ls7{letter-spacing:0.311467pt;}
.ls3{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.480000pt;}
.lsf{letter-spacing:8.453120pt;}
.lsc{letter-spacing:37.760000pt;}
.ls0{letter-spacing:175.493120pt;}
.ls1{letter-spacing:962.959787pt;}
.ws3{word-spacing:-19.040000pt;}
.ws4{word-spacing:-19.031467pt;}
.wsb{word-spacing:-19.023467pt;}
.ws8{word-spacing:-18.744960pt;}
.ws2{word-spacing:-18.720000pt;}
.ws5{word-spacing:-18.400000pt;}
.ws6{word-spacing:-18.383467pt;}
.wsa{word-spacing:-18.106667pt;}
.ws9{word-spacing:-17.472000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-0.058880pt;}
.ws7{word-spacing:0.000000pt;}
._0{margin-left:-175.087787pt;}
._26{margin-left:-1.894613pt;}
._1{margin-left:-1.000960pt;}
._3{width:1.198080pt;}
._1f{width:2.207573pt;}
._24{width:3.211307pt;}
._b{width:4.929280pt;}
._22{width:5.840640pt;}
._21{width:6.766720pt;}
._29{width:7.861333pt;}
._13{width:8.780800pt;}
._f{width:10.238720pt;}
._11{width:11.334400pt;}
._17{width:12.610347pt;}
._18{width:13.509547pt;}
._6{width:14.976000pt;}
._16{width:16.127360pt;}
._7{width:17.415253pt;}
._5{width:20.298027pt;}
._1e{width:21.430827pt;}
._1d{width:23.035520pt;}
._1c{width:24.091520pt;}
._a{width:25.486720pt;}
._15{width:26.418453pt;}
._23{width:27.719787pt;}
._25{width:29.427840pt;}
._20{width:32.076160pt;}
._2d{width:33.855360pt;}
._27{width:35.118720pt;}
._28{width:36.365867pt;}
._2a{width:37.814400pt;}
._9{width:38.937600pt;}
._8{width:40.088320pt;}
._2e{width:41.676160pt;}
._10{width:45.042987pt;}
._12{width:51.068160pt;}
._30{width:57.656747pt;}
._2f{width:59.046400pt;}
._2b{width:60.428160pt;}
._2c{width:61.484587pt;}
._4{width:65.393707pt;}
._1a{width:81.768960pt;}
._19{width:83.246720pt;}
._e{width:90.155520pt;}
._14{width:91.445973pt;}
._1b{width:92.384427pt;}
._d{width:95.760853pt;}
._c{width:96.905387pt;}
._2{width:567.859627pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:5.120000pt;}
.y3{bottom:5.440000pt;}
.y2{bottom:23.200000pt;}
.y4{bottom:25.760000pt;}
.y2a{bottom:78.560000pt;}
.y50{bottom:85.920000pt;}
.y29{bottom:103.360000pt;}
.y4f{bottom:110.560000pt;}
.y28{bottom:128.032000pt;}
.y4e{bottom:143.386667pt;}
.y27{bottom:152.666667pt;}
.y4d{bottom:168.026667pt;}
.y26{bottom:177.306667pt;}
.y4c{bottom:192.666667pt;}
.y25{bottom:202.106667pt;}
.y6a{bottom:210.106667pt;}
.y4b{bottom:217.306667pt;}
.y24{bottom:226.746667pt;}
.y69{bottom:234.746667pt;}
.y4a{bottom:242.106667pt;}
.y23{bottom:251.386667pt;}
.y68{bottom:259.386667pt;}
.y49{bottom:266.746667pt;}
.y7c{bottom:271.866667pt;}
.y22{bottom:276.026667pt;}
.y48{bottom:291.386667pt;}
.y67{bottom:292.026667pt;}
.y21{bottom:300.826667pt;}
.y7b{bottom:301.466667pt;}
.y47{bottom:316.026667pt;}
.y66{bottom:316.826667pt;}
.y20{bottom:325.466667pt;}
.y7a{bottom:334.106667pt;}
.y46{bottom:340.866667pt;}
.y65{bottom:341.506667pt;}
.y1f{bottom:358.146667pt;}
.y79{bottom:366.946667pt;}
.y45{bottom:373.506667pt;}
.y64{bottom:374.146667pt;}
.y1e{bottom:390.946667pt;}
.y44{bottom:398.146667pt;}
.y63{bottom:398.946667pt;}
.y78{bottom:399.586667pt;}
.y1d{bottom:415.586667pt;}
.y43{bottom:422.946667pt;}
.y62{bottom:423.586667pt;}
.y77{bottom:432.226667pt;}
.y1c{bottom:440.226667pt;}
.y42{bottom:447.586667pt;}
.y61{bottom:448.226667pt;}
.y76{bottom:464.866667pt;}
.y1b{bottom:472.866667pt;}
.y41{bottom:480.226667pt;}
.y60{bottom:480.866667pt;}
.y1a{bottom:497.666667pt;}
.y40{bottom:504.866667pt;}
.y5f{bottom:505.666667pt;}
.y19{bottom:522.306667pt;}
.y3f{bottom:529.666667pt;}
.y5e{bottom:530.306667pt;}
.y18{bottom:546.946667pt;}
.y3e{bottom:562.333333pt;}
.y5d{bottom:562.973333pt;}
.y17{bottom:571.773333pt;}
.y3d{bottom:594.973333pt;}
.y5c{bottom:595.773333pt;}
.y16{bottom:596.413333pt;}
.y3c{bottom:619.773333pt;}
.y5b{bottom:620.413333pt;}
.y15{bottom:621.053333pt;}
.y3b{bottom:644.413333pt;}
.y5a{bottom:645.053333pt;}
.y14{bottom:645.693333pt;}
.y3a{bottom:669.053333pt;}
.y59{bottom:669.693333pt;}
.y13{bottom:670.493333pt;}
.y39{bottom:693.693333pt;}
.y75{bottom:694.493333pt;}
.y58{bottom:702.493333pt;}
.y12{bottom:703.133333pt;}
.y38{bottom:718.493333pt;}
.y74{bottom:719.133333pt;}
.y11{bottom:727.773333pt;}
.y57{bottom:735.133333pt;}
.y37{bottom:743.133333pt;}
.y73{bottom:743.773333pt;}
.y10{bottom:752.413333pt;}
.y56{bottom:759.773333pt;}
.y36{bottom:767.773333pt;}
.y72{bottom:768.413333pt;}
.yf{bottom:777.213333pt;}
.y55{bottom:784.413333pt;}
.y35{bottom:792.453333pt;}
.y71{bottom:801.253333pt;}
.ye{bottom:801.893333pt;}
.y54{bottom:809.253333pt;}
.y34{bottom:817.253333pt;}
.y70{bottom:825.893333pt;}
.yd{bottom:826.533333pt;}
.y53{bottom:833.893333pt;}
.y33{bottom:841.893333pt;}
.y6f{bottom:850.533333pt;}
.yc{bottom:851.333333pt;}
.y52{bottom:858.533333pt;}
.y32{bottom:866.533333pt;}
.y6e{bottom:875.333333pt;}
.yb{bottom:875.973333pt;}
.y51{bottom:883.333333pt;}
.y31{bottom:891.333333pt;}
.y6d{bottom:899.973333pt;}
.ya{bottom:908.613333pt;}
.y30{bottom:915.973333pt;}
.y6c{bottom:932.613333pt;}
.y2f{bottom:940.613333pt;}
.y9{bottom:940.933333pt;}
.y6b{bottom:957.253333pt;}
.y2e{bottom:965.253333pt;}
.y8{bottom:973.733333pt;}
.y2d{bottom:990.053333pt;}
.y7{bottom:1006.373333pt;}
.y2c{bottom:1014.720000pt;}
.y6{bottom:1031.040000pt;}
.y2b{bottom:1039.360000pt;}
.y1{bottom:1089.920000pt;}
.h4{height:19.040000pt;}
.h7{height:52.503750pt;}
.h2{height:58.563750pt;}
.h3{height:62.781250pt;}
.h6{height:73.490625pt;}
.h5{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:44.032000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:18.266667pt;}
.x1{left:85.152000pt;}
.x5{left:95.232000pt;}
.x2{left:99.232000pt;}
.x6{left:277.826667pt;}
.x3{left:390.146667pt;}
}




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