
    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_651d1dbe48ba6aa4e8a3b09a.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_9941bc58fa402d32ea214c7c.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_8422fe6afdaf020ef8071f50.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_84a7052743005dd79b620882.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e0723b020f3e80f43ec68d8d.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_837c168873a90aa8429439d1.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1757dd5b2b36cd7e3ea77ea6.woff')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;}
.ls15{letter-spacing:-0.936000px;}
.ls4{letter-spacing:-0.540600px;}
.ls7{letter-spacing:-0.286800px;}
.lsc{letter-spacing:-0.274800px;}
.ls8{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.073200px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.014400px;}
.ls0{letter-spacing:0.072000px;}
.ls13{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.349200px;}
.lsd{letter-spacing:0.433200px;}
.ls2{letter-spacing:0.720000px;}
.ls14{letter-spacing:6.480000px;}
.ls10{letter-spacing:10.800000px;}
.ls1{letter-spacing:17.400000px;}
.lsb{letter-spacing:141.984000px;}
.lsf{letter-spacing:172.026720px;}
.lsa{letter-spacing:179.226720px;}
.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;}
}
.ws1{word-spacing:-20.075760px;}
.ws5{word-spacing:-19.451760px;}
.ws2{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.064000px;}
.ws0{word-spacing:-15.970440px;}
.ws4{word-spacing:0.000000px;}
._18{margin-left:-4.680000px;}
._7{margin-left:-3.565440px;}
._d{margin-left:-2.088000px;}
._3{margin-left:-1.042560px;}
._2{width:1.244880px;}
._19{width:2.480400px;}
._1c{width:4.008000px;}
._1a{width:5.650560px;}
._b{width:6.912000px;}
._c{width:8.187120px;}
._1b{width:9.504000px;}
._1d{width:10.728000px;}
._13{width:12.600000px;}
._14{width:13.731120px;}
._4{width:14.832000px;}
._8{width:16.738560px;}
._1e{width:19.080000px;}
._21{width:20.664000px;}
._32{width:21.816000px;}
._11{width:22.896000px;}
._10{width:24.192000px;}
._1f{width:25.488000px;}
._22{width:27.576000px;}
._a{width:28.728000px;}
._9{width:30.072000px;}
._f{width:31.608000px;}
._e{width:32.616000px;}
._16{width:33.768000px;}
._15{width:34.848000px;}
._17{width:36.492000px;}
._20{width:38.266560px;}
._6{width:40.080000px;}
._5{width:41.112000px;}
._23{width:47.376000px;}
._12{width:63.000000px;}
._33{width:64.728000px;}
._2b{width:91.080000px;}
._2c{width:92.139120px;}
._31{width:101.160000px;}
._30{width:178.920000px;}
._29{width:179.928000px;}
._2a{width:180.936000px;}
._2d{width:190.008000px;}
._2e{width:191.232000px;}
._24{width:194.616000px;}
._25{width:195.870240px;}
._28{width:246.528000px;}
._0{width:292.222560px;}
._2f{width:731.016000px;}
._26{width:1104.408000px;}
._27{width:1108.728000px;}
._1{width:1422.946560px;}
.fc4{color:rgb(0,0,255);}
.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;}
.y7{bottom:20.016000px;}
.y6{bottom:43.776000px;}
.y5{bottom:68.796000px;}
.y5a{bottom:103.356000px;}
.y31{bottom:115.416000px;}
.y59{bottom:127.296000px;}
.y30{bottom:139.176000px;}
.y58{bottom:151.050000px;}
.y2f{bottom:162.930000px;}
.y57{bottom:174.810000px;}
.y2e{bottom:186.870000px;}
.y56{bottom:198.570000px;}
.y2d{bottom:210.630000px;}
.y55{bottom:222.510000px;}
.y2c{bottom:234.390000px;}
.y54{bottom:246.270000px;}
.y2b{bottom:258.150000px;}
.y53{bottom:270.030000px;}
.y2a{bottom:282.135000px;}
.y52{bottom:293.835000px;}
.y29{bottom:305.895000px;}
.y51{bottom:317.595000px;}
.y28{bottom:329.655000px;}
.y50{bottom:341.535000px;}
.y27{bottom:353.415000px;}
.y4f{bottom:365.295000px;}
.y26{bottom:377.355000px;}
.y4e{bottom:389.055000px;}
.y25{bottom:401.115000px;}
.y4d{bottom:412.815000px;}
.y24{bottom:424.875000px;}
.y4c{bottom:436.755000px;}
.y23{bottom:448.635000px;}
.y4b{bottom:460.515000px;}
.y22{bottom:472.575000px;}
.y4a{bottom:484.275000px;}
.y21{bottom:496.335000px;}
.y49{bottom:508.035000px;}
.y20{bottom:520.095000px;}
.y48{bottom:531.975000px;}
.y1f{bottom:543.855000px;}
.y47{bottom:555.735000px;}
.y1e{bottom:567.825000px;}
.y46{bottom:579.525000px;}
.y1d{bottom:591.585000px;}
.y45{bottom:603.285000px;}
.y1c{bottom:615.345000px;}
.y44{bottom:627.225000px;}
.y1b{bottom:639.105000px;}
.y43{bottom:650.985000px;}
.y1a{bottom:662.865000px;}
.y42{bottom:674.745000px;}
.y19{bottom:686.805000px;}
.y41{bottom:698.505000px;}
.y18{bottom:710.565000px;}
.y40{bottom:722.445000px;}
.y17{bottom:734.325000px;}
.y3f{bottom:746.205000px;}
.y16{bottom:758.085000px;}
.y3e{bottom:769.965000px;}
.y15{bottom:782.025000px;}
.y3d{bottom:793.725000px;}
.y14{bottom:805.785000px;}
.y3c{bottom:817.485000px;}
.y13{bottom:829.545000px;}
.y3b{bottom:841.425000px;}
.y12{bottom:853.350000px;}
.y3a{bottom:865.230000px;}
.y11{bottom:877.290000px;}
.y39{bottom:888.990000px;}
.y10{bottom:901.050000px;}
.y38{bottom:912.750000px;}
.yf{bottom:924.810000px;}
.y37{bottom:936.690000px;}
.ye{bottom:948.570000px;}
.y36{bottom:960.450000px;}
.yd{bottom:972.510000px;}
.y35{bottom:984.210000px;}
.yc{bottom:996.270000px;}
.y34{bottom:1007.970000px;}
.yb{bottom:1020.030000px;}
.y33{bottom:1031.910000px;}
.ya{bottom:1043.790000px;}
.y32{bottom:1055.670000px;}
.y9{bottom:1067.730000px;}
.y8{bottom:1091.490000px;}
.y4{bottom:1128.390000px;}
.y3{bottom:1152.180000px;}
.y2{bottom:1177.020000px;}
.y1{bottom:1207.800000px;}
.h8{height:50.484375px;}
.ha{height:61.423863px;}
.h6{height:62.261719px;}
.h4{height:67.169883px;}
.h9{height:70.664062px;}
.h7{height:72.562500px;}
.hb{height:74.004654px;}
.h2{height:76.355508px;}
.h5{height:82.676953px;}
.h3{height:86.115234px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:42.479987px;}
.x4{left:84.959987px;}
.x18{left:86.759987px;}
.x6{left:95.975987px;}
.x12{left:100.295987px;}
.x1{left:106.415987px;}
.xb{left:111.275987px;}
.x7{left:138.635987px;}
.xc{left:163.289987px;}
.x19{left:176.609987px;}
.xf{left:210.089987px;}
.x13{left:279.434987px;}
.xe{left:291.494987px;}
.xa{left:319.394987px;}
.x16{left:322.634987px;}
.x8{left:325.874987px;}
.x1c{left:327.854987px;}
.xd{left:330.734987px;}
.x14{left:336.674987px;}
.x15{left:367.454987px;}
.x17{left:369.614987px;}
.x1b{left:374.474987px;}
.x1a{left:384.374987px;}
.x11{left:385.994987px;}
.x9{left:446.474987px;}
.x2{left:546.404987px;}
.x3{left:636.764987px;}
.x10{left:807.989987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-0.832000pt;}
.ls4{letter-spacing:-0.480533pt;}
.ls7{letter-spacing:-0.254933pt;}
.lsc{letter-spacing:-0.244267pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.065067pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.012800pt;}
.ls0{letter-spacing:0.064000pt;}
.ls13{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.310400pt;}
.lsd{letter-spacing:0.385067pt;}
.ls2{letter-spacing:0.640000pt;}
.ls14{letter-spacing:5.760000pt;}
.ls10{letter-spacing:9.600000pt;}
.ls1{letter-spacing:15.466667pt;}
.lsb{letter-spacing:126.208000pt;}
.lsf{letter-spacing:152.912640pt;}
.lsa{letter-spacing:159.312640pt;}
.ws1{word-spacing:-17.845120pt;}
.ws5{word-spacing:-17.290453pt;}
.ws2{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.168000pt;}
.ws0{word-spacing:-14.195947pt;}
.ws4{word-spacing:0.000000pt;}
._18{margin-left:-4.160000pt;}
._7{margin-left:-3.169280pt;}
._d{margin-left:-1.856000pt;}
._3{margin-left:-0.926720pt;}
._2{width:1.106560pt;}
._19{width:2.204800pt;}
._1c{width:3.562667pt;}
._1a{width:5.022720pt;}
._b{width:6.144000pt;}
._c{width:7.277440pt;}
._1b{width:8.448000pt;}
._1d{width:9.536000pt;}
._13{width:11.200000pt;}
._14{width:12.205440pt;}
._4{width:13.184000pt;}
._8{width:14.878720pt;}
._1e{width:16.960000pt;}
._21{width:18.368000pt;}
._32{width:19.392000pt;}
._11{width:20.352000pt;}
._10{width:21.504000pt;}
._1f{width:22.656000pt;}
._22{width:24.512000pt;}
._a{width:25.536000pt;}
._9{width:26.730667pt;}
._f{width:28.096000pt;}
._e{width:28.992000pt;}
._16{width:30.016000pt;}
._15{width:30.976000pt;}
._17{width:32.437333pt;}
._20{width:34.014720pt;}
._6{width:35.626667pt;}
._5{width:36.544000pt;}
._23{width:42.112000pt;}
._12{width:56.000000pt;}
._33{width:57.536000pt;}
._2b{width:80.960000pt;}
._2c{width:81.901440pt;}
._31{width:89.920000pt;}
._30{width:159.040000pt;}
._29{width:159.936000pt;}
._2a{width:160.832000pt;}
._2d{width:168.896000pt;}
._2e{width:169.984000pt;}
._24{width:172.992000pt;}
._25{width:174.106880pt;}
._28{width:219.136000pt;}
._0{width:259.753387pt;}
._2f{width:649.792000pt;}
._26{width:981.696000pt;}
._27{width:985.536000pt;}
._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;}
.y7{bottom:17.792000pt;}
.y6{bottom:38.912000pt;}
.y5{bottom:61.152000pt;}
.y5a{bottom:91.872000pt;}
.y31{bottom:102.592000pt;}
.y59{bottom:113.152000pt;}
.y30{bottom:123.712000pt;}
.y58{bottom:134.266667pt;}
.y2f{bottom:144.826667pt;}
.y57{bottom:155.386667pt;}
.y2e{bottom:166.106667pt;}
.y56{bottom:176.506667pt;}
.y2d{bottom:187.226667pt;}
.y55{bottom:197.786667pt;}
.y2c{bottom:208.346667pt;}
.y54{bottom:218.906667pt;}
.y2b{bottom:229.466667pt;}
.y53{bottom:240.026667pt;}
.y2a{bottom:250.786667pt;}
.y52{bottom:261.186667pt;}
.y29{bottom:271.906667pt;}
.y51{bottom:282.306667pt;}
.y28{bottom:293.026667pt;}
.y50{bottom:303.586667pt;}
.y27{bottom:314.146667pt;}
.y4f{bottom:324.706667pt;}
.y26{bottom:335.426667pt;}
.y4e{bottom:345.826667pt;}
.y25{bottom:356.546667pt;}
.y4d{bottom:366.946667pt;}
.y24{bottom:377.666667pt;}
.y4c{bottom:388.226667pt;}
.y23{bottom:398.786667pt;}
.y4b{bottom:409.346667pt;}
.y22{bottom:420.066667pt;}
.y4a{bottom:430.466667pt;}
.y21{bottom:441.186667pt;}
.y49{bottom:451.586667pt;}
.y20{bottom:462.306667pt;}
.y48{bottom:472.866667pt;}
.y1f{bottom:483.426667pt;}
.y47{bottom:493.986667pt;}
.y1e{bottom:504.733333pt;}
.y46{bottom:515.133333pt;}
.y1d{bottom:525.853333pt;}
.y45{bottom:536.253333pt;}
.y1c{bottom:546.973333pt;}
.y44{bottom:557.533333pt;}
.y1b{bottom:568.093333pt;}
.y43{bottom:578.653333pt;}
.y1a{bottom:589.213333pt;}
.y42{bottom:599.773333pt;}
.y19{bottom:610.493333pt;}
.y41{bottom:620.893333pt;}
.y18{bottom:631.613333pt;}
.y40{bottom:642.173333pt;}
.y17{bottom:652.733333pt;}
.y3f{bottom:663.293333pt;}
.y16{bottom:673.853333pt;}
.y3e{bottom:684.413333pt;}
.y15{bottom:695.133333pt;}
.y3d{bottom:705.533333pt;}
.y14{bottom:716.253333pt;}
.y3c{bottom:726.653333pt;}
.y13{bottom:737.373333pt;}
.y3b{bottom:747.933333pt;}
.y12{bottom:758.533333pt;}
.y3a{bottom:769.093333pt;}
.y11{bottom:779.813333pt;}
.y39{bottom:790.213333pt;}
.y10{bottom:800.933333pt;}
.y38{bottom:811.333333pt;}
.yf{bottom:822.053333pt;}
.y37{bottom:832.613333pt;}
.ye{bottom:843.173333pt;}
.y36{bottom:853.733333pt;}
.yd{bottom:864.453333pt;}
.y35{bottom:874.853333pt;}
.yc{bottom:885.573333pt;}
.y34{bottom:895.973333pt;}
.yb{bottom:906.693333pt;}
.y33{bottom:917.253333pt;}
.ya{bottom:927.813333pt;}
.y32{bottom:938.373333pt;}
.y9{bottom:949.093333pt;}
.y8{bottom:970.213333pt;}
.y4{bottom:1003.013333pt;}
.y3{bottom:1024.160000pt;}
.y2{bottom:1046.240000pt;}
.y1{bottom:1073.600000pt;}
.h8{height:44.875000pt;}
.ha{height:54.598989pt;}
.h6{height:55.343750pt;}
.h4{height:59.706562pt;}
.h9{height:62.812500pt;}
.h7{height:64.500000pt;}
.hb{height:65.781915pt;}
.h2{height:67.871563pt;}
.h5{height:73.490625pt;}
.h3{height:76.546875pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:37.759988pt;}
.x4{left:75.519988pt;}
.x18{left:77.119988pt;}
.x6{left:85.311988pt;}
.x12{left:89.151988pt;}
.x1{left:94.591988pt;}
.xb{left:98.911988pt;}
.x7{left:123.231988pt;}
.xc{left:145.146655pt;}
.x19{left:156.986655pt;}
.xf{left:186.746655pt;}
.x13{left:248.386655pt;}
.xe{left:259.106655pt;}
.xa{left:283.906655pt;}
.x16{left:286.786655pt;}
.x8{left:289.666655pt;}
.x1c{left:291.426655pt;}
.xd{left:293.986655pt;}
.x14{left:299.266655pt;}
.x15{left:326.626655pt;}
.x17{left:328.546655pt;}
.x1b{left:332.866655pt;}
.x1a{left:341.666655pt;}
.x11{left:343.106655pt;}
.x9{left:396.866655pt;}
.x2{left:485.693322pt;}
.x3{left:566.013322pt;}
.x10{left:718.213322pt;}
}




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