
    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_52fd3345b06f3642e9ec2653.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_738cd7be7fa81b61ac4ff596.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_2e655f042b0a2da12113c31b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_819507d2cea20ecef7e35100.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_182079370f7c2f2e5bb1c598.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_6193fc93719873dbca485474.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')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_4de8fbc4340475c5bf7efdca.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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;}
.ls6{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.305400px;}
.ls5{letter-spacing:-0.017280px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017280px;}
.ls0{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.223800px;}
.lsd{letter-spacing:0.262200px;}
.ls9{letter-spacing:0.269400px;}
.ls1{letter-spacing:0.360000px;}
.lsb{letter-spacing:39.881280px;}
.lsc{letter-spacing:64.002720px;}
.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;}
}
.wsb{word-spacing:-66.240000px;}
.wsa{word-spacing:-59.760000px;}
.ws2{word-spacing:-19.457280px;}
.ws3{word-spacing:-19.422720px;}
.ws9{word-spacing:-16.822200px;}
.ws8{word-spacing:-16.560000px;}
.ws4{word-spacing:-16.254600px;}
.ws0{word-spacing:-14.940000px;}
.ws5{word-spacing:-12.283800px;}
.ws6{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.700000px;}
.ws7{word-spacing:0.000000px;}
._11{margin-left:-3.480000px;}
._2{margin-left:-2.270400px;}
._0{margin-left:-1.192320px;}
._1{width:1.254960px;}
._8{width:2.322000px;}
._7{width:3.760320px;}
._6{width:5.076000px;}
._13{width:6.782400px;}
._b{width:8.100000px;}
._10{width:9.132480px;}
._c{width:10.152000px;}
._3{width:12.031440px;}
._16{width:13.181760px;}
._4{width:14.688000px;}
._5{width:15.714000px;}
._e{width:16.740000px;}
._14{width:17.982000px;}
._1a{width:19.274880px;}
._d{width:20.358000px;}
._f{width:21.358080px;}
._15{width:22.668000px;}
._19{width:23.713920px;}
._a{width:25.859760px;}
._9{width:26.946000px;}
._18{width:30.075600px;}
._17{width:31.662720px;}
._12{width:35.802000px;}
._1c{width:91.393200px;}
._1b{width:92.537280px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:2.520000px;}
.y9{bottom:5.580000px;}
.y49{bottom:6.120000px;}
.y2{bottom:6.480000px;}
.y4a{bottom:16.380000px;}
.y3a{bottom:25.200000px;}
.y5{bottom:27.210000px;}
.y8{bottom:28.830000px;}
.y39{bottom:40.680000px;}
.y4{bottom:44.490000px;}
.y7{bottom:46.110000px;}
.y38{bottom:56.160000px;}
.yb{bottom:56.340000px;}
.y3{bottom:62.130000px;}
.y6{bottom:63.390000px;}
.y37{bottom:71.820000px;}
.y36{bottom:87.345000px;}
.y35{bottom:102.825000px;}
.y34{bottom:118.305000px;}
.y53{bottom:119.160000px;}
.y80{bottom:132.480000px;}
.y33{bottom:133.965000px;}
.y52{bottom:140.976000px;}
.y32{bottom:149.445000px;}
.y7f{bottom:154.290000px;}
.y51{bottom:162.750000px;}
.y31{bottom:164.925000px;}
.y7e{bottom:176.070000px;}
.y30{bottom:180.405000px;}
.y50{bottom:184.530000px;}
.y2f{bottom:196.065000px;}
.y7d{bottom:198.030000px;}
.y4f{bottom:206.490000px;}
.y2e{bottom:211.545000px;}
.y7c{bottom:219.810000px;}
.y2d{bottom:227.025000px;}
.y4e{bottom:228.270000px;}
.y7b{bottom:241.590000px;}
.y2c{bottom:242.505000px;}
.y4d{bottom:250.050000px;}
.y2b{bottom:258.165000px;}
.y7a{bottom:263.370000px;}
.y4c{bottom:271.830000px;}
.y2a{bottom:273.645000px;}
.y47{bottom:280.125000px;}
.y79{bottom:285.150000px;}
.y48{bottom:287.310000px;}
.y29{bottom:289.125000px;}
.y46{bottom:293.985000px;}
.y28{bottom:304.605000px;}
.y78{bottom:307.110000px;}
.y45{bottom:307.665000px;}
.y15{bottom:315.030000px;}
.y27{bottom:320.085000px;}
.y44{bottom:321.525000px;}
.y77{bottom:328.890000px;}
.y43{bottom:335.235000px;}
.y26{bottom:335.775000px;}
.y42{bottom:349.095000px;}
.y76{bottom:350.670000px;}
.y25{bottom:351.255000px;}
.y41{bottom:362.955000px;}
.y24{bottom:366.735000px;}
.y75{bottom:372.450000px;}
.y40{bottom:376.635000px;}
.y23{bottom:382.215000px;}
.y3f{bottom:390.495000px;}
.y74{bottom:394.455000px;}
.y22{bottom:397.875000px;}
.y3e{bottom:404.355000px;}
.y21{bottom:413.355000px;}
.y73{bottom:416.235000px;}
.y3d{bottom:418.035000px;}
.y20{bottom:428.835000px;}
.y3c{bottom:431.895000px;}
.y72{bottom:438.015000px;}
.y1f{bottom:444.315000px;}
.y3b{bottom:445.755000px;}
.y71{bottom:459.795000px;}
.y1e{bottom:459.975000px;}
.y1d{bottom:475.455000px;}
.y70{bottom:481.575000px;}
.y1c{bottom:490.935000px;}
.y6f{bottom:503.535000px;}
.y1b{bottom:506.415000px;}
.y1a{bottom:522.075000px;}
.y6e{bottom:525.315000px;}
.y19{bottom:537.555000px;}
.y6d{bottom:547.095000px;}
.y18{bottom:553.035000px;}
.y17{bottom:568.515000px;}
.y6c{bottom:568.875000px;}
.y16{bottom:584.220000px;}
.y6b{bottom:590.835000px;}
.y6a{bottom:612.615000px;}
.y69{bottom:634.395000px;}
.y68{bottom:656.205000px;}
.y67{bottom:677.985000px;}
.y66{bottom:699.945000px;}
.y65{bottom:721.725000px;}
.y64{bottom:743.505000px;}
.y63{bottom:765.285000px;}
.y62{bottom:787.245000px;}
.y61{bottom:809.025000px;}
.y60{bottom:830.805000px;}
.y5f{bottom:852.585000px;}
.y5e{bottom:874.365000px;}
.y5d{bottom:896.370000px;}
.y14{bottom:917.610000px;}
.y5c{bottom:918.150000px;}
.y13{bottom:937.410000px;}
.y5b{bottom:939.930000px;}
.y12{bottom:957.210000px;}
.y5a{bottom:961.710000px;}
.y11{bottom:977.010000px;}
.y59{bottom:983.490000px;}
.y10{bottom:997.530000px;}
.y58{bottom:1005.450000px;}
.yf{bottom:1019.310000px;}
.y57{bottom:1027.230000px;}
.ye{bottom:1041.090000px;}
.y56{bottom:1049.010000px;}
.yd{bottom:1064.130000px;}
.y55{bottom:1070.790000px;}
.yc{bottom:1090.050000px;}
.y54{bottom:1092.750000px;}
.ya{bottom:1111.830000px;}
.y1{bottom:1131.630000px;}
.h10{height:27.720000px;}
.h11{height:33.683203px;}
.he{height:34.036523px;}
.hc{height:37.705078px;}
.hb{height:38.100586px;}
.h8{height:39.147891px;}
.hf{height:39.760312px;}
.h3{height:41.726953px;}
.h5{height:42.164648px;}
.hd{height:44.507812px;}
.h7{height:46.251562px;}
.h4{height:46.736719px;}
.h13{height:48.224531px;}
.h6{height:49.255313px;}
.h12{height:54.596250px;}
.h9{height:54.864844px;}
.h2{height:77.436000px;}
.ha{height:596.805000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:72.000000px;}
.w4{width:209.370000px;}
.w7{width:224.175000px;}
.w3{width:427.965000px;}
.w6{width:459.075000px;}
.w1{width:893.250000px;}
.w5{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x4{left:7.920000px;}
.x6{left:18.540000px;}
.x15{left:29.520000px;}
.x2{left:58.494000px;}
.x7{left:85.680000px;}
.x1{left:99.936000px;}
.x9{left:104.400000px;}
.xa{left:108.035987px;}
.xf{left:122.255987px;}
.x8{left:132.120000px;}
.x17{left:135.035987px;}
.x18{left:140.075987px;}
.xc{left:143.495987px;}
.x16{left:161.129987px;}
.x3{left:171.930000px;}
.x12{left:182.909987px;}
.x13{left:187.589987px;}
.xd{left:263.954987px;}
.x11{left:273.134987px;}
.x10{left:353.234987px;}
.xe{left:446.684987px;}
.xb{left:500.504987px;}
.x14{left:567.105000px;}
.x5{left:599.910000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.271467pt;}
.ls5{letter-spacing:-0.015360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015360pt;}
.ls0{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.198933pt;}
.lsd{letter-spacing:0.233067pt;}
.ls9{letter-spacing:0.239467pt;}
.ls1{letter-spacing:0.320000pt;}
.lsb{letter-spacing:35.450027pt;}
.lsc{letter-spacing:56.891307pt;}
.wsb{word-spacing:-58.880000pt;}
.wsa{word-spacing:-53.120000pt;}
.ws2{word-spacing:-17.295360pt;}
.ws3{word-spacing:-17.264640pt;}
.ws9{word-spacing:-14.953067pt;}
.ws8{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.448533pt;}
.ws0{word-spacing:-13.280000pt;}
.ws5{word-spacing:-10.918933pt;}
.ws6{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws7{word-spacing:0.000000pt;}
._11{margin-left:-3.093333pt;}
._2{margin-left:-2.018133pt;}
._0{margin-left:-1.059840pt;}
._1{width:1.115520pt;}
._8{width:2.064000pt;}
._7{width:3.342507pt;}
._6{width:4.512000pt;}
._13{width:6.028800pt;}
._b{width:7.200000pt;}
._10{width:8.117760pt;}
._c{width:9.024000pt;}
._3{width:10.694613pt;}
._16{width:11.717120pt;}
._4{width:13.056000pt;}
._5{width:13.968000pt;}
._e{width:14.880000pt;}
._14{width:15.984000pt;}
._1a{width:17.133227pt;}
._d{width:18.096000pt;}
._f{width:18.984960pt;}
._15{width:20.149333pt;}
._19{width:21.079040pt;}
._a{width:22.986453pt;}
._9{width:23.952000pt;}
._18{width:26.733867pt;}
._17{width:28.144640pt;}
._12{width:31.824000pt;}
._1c{width:81.238400pt;}
._1b{width:82.255360pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:2.240000pt;}
.y9{bottom:4.960000pt;}
.y49{bottom:5.440000pt;}
.y2{bottom:5.760000pt;}
.y4a{bottom:14.560000pt;}
.y3a{bottom:22.400000pt;}
.y5{bottom:24.186667pt;}
.y8{bottom:25.626667pt;}
.y39{bottom:36.160000pt;}
.y4{bottom:39.546667pt;}
.y7{bottom:40.986667pt;}
.y38{bottom:49.920000pt;}
.yb{bottom:50.080000pt;}
.y3{bottom:55.226667pt;}
.y6{bottom:56.346667pt;}
.y37{bottom:63.840000pt;}
.y36{bottom:77.640000pt;}
.y35{bottom:91.400000pt;}
.y34{bottom:105.160000pt;}
.y53{bottom:105.920000pt;}
.y80{bottom:117.760000pt;}
.y33{bottom:119.080000pt;}
.y52{bottom:125.312000pt;}
.y32{bottom:132.840000pt;}
.y7f{bottom:137.146667pt;}
.y51{bottom:144.666667pt;}
.y31{bottom:146.600000pt;}
.y7e{bottom:156.506667pt;}
.y30{bottom:160.360000pt;}
.y50{bottom:164.026667pt;}
.y2f{bottom:174.280000pt;}
.y7d{bottom:176.026667pt;}
.y4f{bottom:183.546667pt;}
.y2e{bottom:188.040000pt;}
.y7c{bottom:195.386667pt;}
.y2d{bottom:201.800000pt;}
.y4e{bottom:202.906667pt;}
.y7b{bottom:214.746667pt;}
.y2c{bottom:215.560000pt;}
.y4d{bottom:222.266667pt;}
.y2b{bottom:229.480000pt;}
.y7a{bottom:234.106667pt;}
.y4c{bottom:241.626667pt;}
.y2a{bottom:243.240000pt;}
.y47{bottom:249.000000pt;}
.y79{bottom:253.466667pt;}
.y48{bottom:255.386667pt;}
.y29{bottom:257.000000pt;}
.y46{bottom:261.320000pt;}
.y28{bottom:270.760000pt;}
.y78{bottom:272.986667pt;}
.y45{bottom:273.480000pt;}
.y15{bottom:280.026667pt;}
.y27{bottom:284.520000pt;}
.y44{bottom:285.800000pt;}
.y77{bottom:292.346667pt;}
.y43{bottom:297.986667pt;}
.y26{bottom:298.466667pt;}
.y42{bottom:310.306667pt;}
.y76{bottom:311.706667pt;}
.y25{bottom:312.226667pt;}
.y41{bottom:322.626667pt;}
.y24{bottom:325.986667pt;}
.y75{bottom:331.066667pt;}
.y40{bottom:334.786667pt;}
.y23{bottom:339.746667pt;}
.y3f{bottom:347.106667pt;}
.y74{bottom:350.626667pt;}
.y22{bottom:353.666667pt;}
.y3e{bottom:359.426667pt;}
.y21{bottom:367.426667pt;}
.y73{bottom:369.986667pt;}
.y3d{bottom:371.586667pt;}
.y20{bottom:381.186667pt;}
.y3c{bottom:383.906667pt;}
.y72{bottom:389.346667pt;}
.y1f{bottom:394.946667pt;}
.y3b{bottom:396.226667pt;}
.y71{bottom:408.706667pt;}
.y1e{bottom:408.866667pt;}
.y1d{bottom:422.626667pt;}
.y70{bottom:428.066667pt;}
.y1c{bottom:436.386667pt;}
.y6f{bottom:447.586667pt;}
.y1b{bottom:450.146667pt;}
.y1a{bottom:464.066667pt;}
.y6e{bottom:466.946667pt;}
.y19{bottom:477.826667pt;}
.y6d{bottom:486.306667pt;}
.y18{bottom:491.586667pt;}
.y17{bottom:505.346667pt;}
.y6c{bottom:505.666667pt;}
.y16{bottom:519.306667pt;}
.y6b{bottom:525.186667pt;}
.y6a{bottom:544.546667pt;}
.y69{bottom:563.906667pt;}
.y68{bottom:583.293333pt;}
.y67{bottom:602.653333pt;}
.y66{bottom:622.173333pt;}
.y65{bottom:641.533333pt;}
.y64{bottom:660.893333pt;}
.y63{bottom:680.253333pt;}
.y62{bottom:699.773333pt;}
.y61{bottom:719.133333pt;}
.y60{bottom:738.493333pt;}
.y5f{bottom:757.853333pt;}
.y5e{bottom:777.213333pt;}
.y5d{bottom:796.773333pt;}
.y14{bottom:815.653333pt;}
.y5c{bottom:816.133333pt;}
.y13{bottom:833.253333pt;}
.y5b{bottom:835.493333pt;}
.y12{bottom:850.853333pt;}
.y5a{bottom:854.853333pt;}
.y11{bottom:868.453333pt;}
.y59{bottom:874.213333pt;}
.y10{bottom:886.693333pt;}
.y58{bottom:893.733333pt;}
.yf{bottom:906.053333pt;}
.y57{bottom:913.093333pt;}
.ye{bottom:925.413333pt;}
.y56{bottom:932.453333pt;}
.yd{bottom:945.893333pt;}
.y55{bottom:951.813333pt;}
.yc{bottom:968.933333pt;}
.y54{bottom:971.333333pt;}
.ya{bottom:988.293333pt;}
.y1{bottom:1005.893333pt;}
.h10{height:24.640000pt;}
.h11{height:29.940625pt;}
.he{height:30.254687pt;}
.hc{height:33.515625pt;}
.hb{height:33.867188pt;}
.h8{height:34.798125pt;}
.hf{height:35.342500pt;}
.h3{height:37.090625pt;}
.h5{height:37.479688pt;}
.hd{height:39.562500pt;}
.h7{height:41.112500pt;}
.h4{height:41.543750pt;}
.h13{height:42.866250pt;}
.h6{height:43.782500pt;}
.h12{height:48.530000pt;}
.h9{height:48.768750pt;}
.h2{height:68.832000pt;}
.ha{height:530.493333pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:64.000000pt;}
.w4{width:186.106667pt;}
.w7{width:199.266667pt;}
.w3{width:380.413333pt;}
.w6{width:408.066667pt;}
.w1{width:794.000000pt;}
.w5{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x4{left:7.040000pt;}
.x6{left:16.480000pt;}
.x15{left:26.240000pt;}
.x2{left:51.994667pt;}
.x7{left:76.160000pt;}
.x1{left:88.832000pt;}
.x9{left:92.800000pt;}
.xa{left:96.031988pt;}
.xf{left:108.671988pt;}
.x8{left:117.440000pt;}
.x17{left:120.031988pt;}
.x18{left:124.511988pt;}
.xc{left:127.551988pt;}
.x16{left:143.226655pt;}
.x3{left:152.826667pt;}
.x12{left:162.586655pt;}
.x13{left:166.746655pt;}
.xd{left:234.626655pt;}
.x11{left:242.786655pt;}
.x10{left:313.986655pt;}
.xe{left:397.053321pt;}
.xb{left:444.893321pt;}
.x14{left:504.093333pt;}
.x5{left:533.253333pt;}
}




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