
    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_bf29a5302a242cde28a121e1.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1a39fdc8574fa29d02380ae9.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_c66c2d26459cdb689d1fff5a.woff2')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_c847e8e5a1916e2a484d59fc.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_f8d46e27053612603d6a5f17.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_48831a80c9c8bd3963ef659b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_fbc70e5bf1771a2d447636b4.woff2')format("woff");}.ff7{font-family:ff7;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;}
.ls7{letter-spacing:-2.322000px;}
.ls9{letter-spacing:-2.034000px;}
.ls8{letter-spacing:-1.128000px;}
.ls6{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.180000px;}
.ls0{letter-spacing:1.027800px;}
.lsa{letter-spacing:1.524000px;}
.ls4{letter-spacing:1.525500px;}
.lsb{letter-spacing:2.142000px;}
.ls1{letter-spacing:2.178000px;}
.ls10{letter-spacing:2.220000px;}
.ls5{letter-spacing:2.250000px;}
.lsc{letter-spacing:2.430000px;}
.ls3{letter-spacing:3.375000px;}
.lse{letter-spacing:50.883000px;}
.lsd{letter-spacing:70.935000px;}
.ls2{letter-spacing:1384.417500px;}
.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:-23.590500px;}
.ws0{word-spacing:-21.412500px;}
.ws7{word-spacing:-21.375000px;}
.ws6{word-spacing:-20.649000px;}
.ws3{word-spacing:-19.125000px;}
.ws2{word-spacing:-19.090500px;}
.ws4{word-spacing:-17.091000px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-8.736300px;}
._5{margin-left:-7.280250px;}
._22{margin-left:-6.114750px;}
._6{margin-left:-4.967700px;}
._4{margin-left:-3.083400px;}
._3{margin-left:-1.798650px;}
._0{width:1.199100px;}
._2{width:2.312550px;}
._c{width:3.397050px;}
._7{width:4.628850px;}
._12{width:5.725350px;}
._d{width:6.964200px;}
._f{width:8.349900px;}
._10{width:10.378200px;}
._b{width:12.247650px;}
._e{width:13.975350px;}
._14{width:16.163550px;}
._13{width:17.525250px;}
._20{width:20.771100px;}
._a{width:21.970200px;}
._1d{width:25.119900px;}
._11{width:26.684700px;}
._17{width:30.364350px;}
._25{width:33.837750px;}
._16{width:34.846650px;}
._15{width:36.972150px;}
._2e{width:38.675850px;}
._24{width:39.766200px;}
._23{width:43.990950px;}
._1f{width:48.391200px;}
._26{width:51.305250px;}
._1c{width:52.354350px;}
._1b{width:53.373300px;}
._1e{width:55.098450px;}
._2a{width:62.248350px;}
._2d{width:65.777850px;}
._21{width:66.943050px;}
._2b{width:67.944900px;}
._2c{width:71.530050px;}
._19{width:74.896500px;}
._1a{width:76.019100px;}
._18{width:80.802750px;}
._29{width:93.692100px;}
._28{width:97.829700px;}
._27{width:98.886750px;}
._8{width:262.498500px;}
._9{width:1956.457500px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(54,95,145);}
.fs1{font-size:76.500000px;}
.fs0{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y34{bottom:4.500000px;}
.y3f{bottom:4.515000px;}
.y3a{bottom:4.545000px;}
.y4a{bottom:14.670000px;}
.y36{bottom:15.750000px;}
.y4d{bottom:15.780000px;}
.y49{bottom:25.905000px;}
.y37{bottom:27.000000px;}
.y4c{bottom:27.030000px;}
.y39{bottom:27.045000px;}
.y9{bottom:57.412500px;}
.y8{bottom:82.200000px;}
.y7{bottom:105.825000px;}
.y6{bottom:130.612500px;}
.y60{bottom:163.275000px;}
.y3b{bottom:168.900000px;}
.y6d{bottom:171.150000px;}
.y32{bottom:173.400000px;}
.y5f{bottom:185.775000px;}
.y6c{bottom:194.775000px;}
.y31{bottom:195.900000px;}
.y38{bottom:197.025000px;}
.y5e{bottom:208.320000px;}
.y30{bottom:218.445000px;}
.y6b{bottom:219.570000px;}
.y5d{bottom:230.820000px;}
.y2f{bottom:240.975000px;}
.y6a{bottom:244.350000px;}
.y35{bottom:247.725000px;}
.y5c{bottom:252.225000px;}
.y2e{bottom:263.475000px;}
.y69{bottom:267.975000px;}
.y5b{bottom:274.725000px;}
.y2d{bottom:286.005000px;}
.y68{bottom:292.755000px;}
.y5a{bottom:297.255000px;}
.y33{bottom:298.380000px;}
.y2c{bottom:308.520000px;}
.y67{bottom:316.380000px;}
.y59{bottom:319.755000px;}
.y2b{bottom:331.050000px;}
.y66{bottom:341.175000px;}
.y58{bottom:342.300000px;}
.y2a{bottom:353.550000px;}
.y57{bottom:364.800000px;}
.y29{bottom:376.095000px;}
.y56{bottom:387.330000px;}
.y65{bottom:389.595000px;}
.y28{bottom:398.580000px;}
.y55{bottom:409.875000px;}
.y64{bottom:413.250000px;}
.y27{bottom:420.000000px;}
.y54{bottom:432.375000px;}
.y63{bottom:438.000000px;}
.y26{bottom:442.500000px;}
.y53{bottom:454.905000px;}
.y62{bottom:461.655000px;}
.y25{bottom:465.030000px;}
.y52{bottom:477.420000px;}
.y61{bottom:486.420000px;}
.y24{bottom:487.545000px;}
.y51{bottom:499.950000px;}
.y23{bottom:510.075000px;}
.y50{bottom:522.450000px;}
.y22{bottom:532.575000px;}
.y4f{bottom:544.980000px;}
.y21{bottom:555.105000px;}
.y20{bottom:577.650000px;}
.y4e{bottom:595.650000px;}
.y1f{bottom:600.150000px;}
.y1e{bottom:622.695000px;}
.y1d{bottom:645.195000px;}
.y4b{bottom:646.320000px;}
.y1c{bottom:667.725000px;}
.y1b{bottom:690.225000px;}
.y48{bottom:698.100000px;}
.y1a{bottom:712.770000px;}
.y19{bottom:735.255000px;}
.y47{bottom:748.800000px;}
.y18{bottom:756.675000px;}
.y17{bottom:779.175000px;}
.y46{bottom:780.300000px;}
.y16{bottom:801.705000px;}
.y45{bottom:802.830000px;}
.y15{bottom:824.205000px;}
.y44{bottom:825.330000px;}
.y14{bottom:846.750000px;}
.y43{bottom:847.875000px;}
.y13{bottom:869.295000px;}
.y42{bottom:870.420000px;}
.y12{bottom:891.795000px;}
.y41{bottom:892.920000px;}
.y11{bottom:914.325000px;}
.y40{bottom:915.450000px;}
.y73{bottom:925.575000px;}
.y10{bottom:936.825000px;}
.y72{bottom:949.200000px;}
.yf{bottom:959.370000px;}
.y71{bottom:972.870000px;}
.ye{bottom:981.870000px;}
.y3e{bottom:982.980000px;}
.y70{bottom:997.650000px;}
.yd{bottom:1004.400000px;}
.y6f{bottom:1022.400000px;}
.yc{bottom:1026.900000px;}
.y3d{bottom:1033.650000px;}
.y6e{bottom:1047.195000px;}
.yb{bottom:1049.445000px;}
.y3c{bottom:1061.820000px;}
.ya{bottom:1070.820000px;}
.y5{bottom:1094.475000px;}
.y4{bottom:1118.100000px;}
.y3{bottom:1142.880000px;}
.y2{bottom:1166.550000px;}
.y1{bottom:1191.300000px;}
.h9{height:22.500000px;}
.hc{height:22.537500px;}
.hd{height:43.912500px;}
.ha{height:45.037500px;}
.hb{height:45.075000px;}
.h8{height:53.415527px;}
.h6{height:55.918213px;}
.h5{height:75.043213px;}
.h7{height:75.080566px;}
.h4{height:77.097656px;}
.he{height:78.629945px;}
.h3{height:84.060791px;}
.h2{height:86.319141px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:173.475000px;}
.w5{width:175.725000px;}
.w3{width:218.505000px;}
.w7{width:269.205000px;}
.w6{width:273.720000px;}
.w4{width:325.530000px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x2e{left:22.530000px;}
.x20{left:23.655000px;}
.x1e{left:24.787500px;}
.x1c{left:25.905000px;}
.x19{left:28.170000px;}
.x1d{left:30.405000px;}
.x15{left:34.912500px;}
.x11{left:36.037500px;}
.x13{left:37.155000px;}
.x1b{left:39.412500px;}
.x2b{left:40.537500px;}
.x28{left:42.787500px;}
.xe{left:43.905000px;}
.x1f{left:45.037500px;}
.x2d{left:46.200000px;}
.xc{left:47.287500px;}
.x12{left:48.405000px;}
.x31{left:49.575000px;}
.x18{left:59.685000px;}
.x17{left:63.060000px;}
.x2c{left:64.185000px;}
.x16{left:69.817500px;}
.x21{left:70.995000px;}
.x2a{left:72.105000px;}
.x14{left:74.370000px;}
.x23{left:75.442500px;}
.x32{left:76.605000px;}
.x2f{left:79.980000px;}
.x1a{left:82.245000px;}
.xb{left:84.487500px;}
.x2{left:85.612487px;}
.x29{left:91.230000px;}
.x30{left:92.355000px;}
.x25{left:100.230000px;}
.x9{left:107.024987px;}
.x22{left:113.774987px;}
.x27{left:120.525000px;}
.x10{left:127.320000px;}
.x4{left:134.062487px;}
.x3{left:138.562487px;}
.xa{left:140.812487px;}
.x1{left:162.224987px;}
.x5{left:256.829987px;}
.xd{left:261.345000px;}
.x24{left:263.595000px;}
.x8{left:270.329987px;}
.x7{left:306.374987px;}
.x33{left:343.574987px;}
.x6{left:458.474987px;}
.xf{left:484.350000px;}
.x26{left:540.675000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-2.064000pt;}
.ls9{letter-spacing:-1.808000pt;}
.ls8{letter-spacing:-1.002667pt;}
.ls6{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.913600pt;}
.lsa{letter-spacing:1.354667pt;}
.ls4{letter-spacing:1.356000pt;}
.lsb{letter-spacing:1.904000pt;}
.ls1{letter-spacing:1.936000pt;}
.ls10{letter-spacing:1.973333pt;}
.ls5{letter-spacing:2.000000pt;}
.lsc{letter-spacing:2.160000pt;}
.ls3{letter-spacing:3.000000pt;}
.lse{letter-spacing:45.229333pt;}
.lsd{letter-spacing:63.053333pt;}
.ls2{letter-spacing:1230.593333pt;}
.ws1{word-spacing:-20.969333pt;}
.ws0{word-spacing:-19.033333pt;}
.ws7{word-spacing:-19.000000pt;}
.ws6{word-spacing:-18.354667pt;}
.ws3{word-spacing:-17.000000pt;}
.ws2{word-spacing:-16.969333pt;}
.ws4{word-spacing:-15.192000pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-7.765600pt;}
._5{margin-left:-6.471333pt;}
._22{margin-left:-5.435333pt;}
._6{margin-left:-4.415733pt;}
._4{margin-left:-2.740800pt;}
._3{margin-left:-1.598800pt;}
._0{width:1.065867pt;}
._2{width:2.055600pt;}
._c{width:3.019600pt;}
._7{width:4.114533pt;}
._12{width:5.089200pt;}
._d{width:6.190400pt;}
._f{width:7.422133pt;}
._10{width:9.225067pt;}
._b{width:10.886800pt;}
._e{width:12.422533pt;}
._14{width:14.367600pt;}
._13{width:15.578000pt;}
._20{width:18.463200pt;}
._a{width:19.529067pt;}
._1d{width:22.328800pt;}
._11{width:23.719733pt;}
._17{width:26.990533pt;}
._25{width:30.078000pt;}
._16{width:30.974800pt;}
._15{width:32.864133pt;}
._2e{width:34.378533pt;}
._24{width:35.347733pt;}
._23{width:39.103067pt;}
._1f{width:43.014400pt;}
._26{width:45.604667pt;}
._1c{width:46.537200pt;}
._1b{width:47.442933pt;}
._1e{width:48.976400pt;}
._2a{width:55.331867pt;}
._2d{width:58.469200pt;}
._21{width:59.504933pt;}
._2b{width:60.395467pt;}
._2c{width:63.582267pt;}
._19{width:66.574667pt;}
._1a{width:67.572533pt;}
._18{width:71.824667pt;}
._29{width:83.281867pt;}
._28{width:86.959733pt;}
._27{width:87.899333pt;}
._8{width:233.332000pt;}
._9{width:1739.073333pt;}
.fs1{font-size:68.000000pt;}
.fs0{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:4.000000pt;}
.y3f{bottom:4.013333pt;}
.y3a{bottom:4.040000pt;}
.y4a{bottom:13.040000pt;}
.y36{bottom:14.000000pt;}
.y4d{bottom:14.026667pt;}
.y49{bottom:23.026667pt;}
.y37{bottom:24.000000pt;}
.y4c{bottom:24.026667pt;}
.y39{bottom:24.040000pt;}
.y9{bottom:51.033333pt;}
.y8{bottom:73.066667pt;}
.y7{bottom:94.066667pt;}
.y6{bottom:116.100000pt;}
.y60{bottom:145.133333pt;}
.y3b{bottom:150.133333pt;}
.y6d{bottom:152.133333pt;}
.y32{bottom:154.133333pt;}
.y5f{bottom:165.133333pt;}
.y6c{bottom:173.133333pt;}
.y31{bottom:174.133333pt;}
.y38{bottom:175.133333pt;}
.y5e{bottom:185.173333pt;}
.y30{bottom:194.173333pt;}
.y6b{bottom:195.173333pt;}
.y5d{bottom:205.173333pt;}
.y2f{bottom:214.200000pt;}
.y6a{bottom:217.200000pt;}
.y35{bottom:220.200000pt;}
.y5c{bottom:224.200000pt;}
.y2e{bottom:234.200000pt;}
.y69{bottom:238.200000pt;}
.y5b{bottom:244.200000pt;}
.y2d{bottom:254.226667pt;}
.y68{bottom:260.226667pt;}
.y5a{bottom:264.226667pt;}
.y33{bottom:265.226667pt;}
.y2c{bottom:274.240000pt;}
.y67{bottom:281.226667pt;}
.y59{bottom:284.226667pt;}
.y2b{bottom:294.266667pt;}
.y66{bottom:303.266667pt;}
.y58{bottom:304.266667pt;}
.y2a{bottom:314.266667pt;}
.y57{bottom:324.266667pt;}
.y29{bottom:334.306667pt;}
.y56{bottom:344.293333pt;}
.y65{bottom:346.306667pt;}
.y28{bottom:354.293333pt;}
.y55{bottom:364.333333pt;}
.y64{bottom:367.333333pt;}
.y27{bottom:373.333333pt;}
.y54{bottom:384.333333pt;}
.y63{bottom:389.333333pt;}
.y26{bottom:393.333333pt;}
.y53{bottom:404.360000pt;}
.y62{bottom:410.360000pt;}
.y25{bottom:413.360000pt;}
.y52{bottom:424.373333pt;}
.y61{bottom:432.373333pt;}
.y24{bottom:433.373333pt;}
.y51{bottom:444.400000pt;}
.y23{bottom:453.400000pt;}
.y50{bottom:464.400000pt;}
.y22{bottom:473.400000pt;}
.y4f{bottom:484.426667pt;}
.y21{bottom:493.426667pt;}
.y20{bottom:513.466667pt;}
.y4e{bottom:529.466667pt;}
.y1f{bottom:533.466667pt;}
.y1e{bottom:553.506667pt;}
.y1d{bottom:573.506667pt;}
.y4b{bottom:574.506667pt;}
.y1c{bottom:593.533333pt;}
.y1b{bottom:613.533333pt;}
.y48{bottom:620.533333pt;}
.y1a{bottom:633.573333pt;}
.y19{bottom:653.560000pt;}
.y47{bottom:665.600000pt;}
.y18{bottom:672.600000pt;}
.y17{bottom:692.600000pt;}
.y46{bottom:693.600000pt;}
.y16{bottom:712.626667pt;}
.y45{bottom:713.626667pt;}
.y15{bottom:732.626667pt;}
.y44{bottom:733.626667pt;}
.y14{bottom:752.666667pt;}
.y43{bottom:753.666667pt;}
.y13{bottom:772.706667pt;}
.y42{bottom:773.706667pt;}
.y12{bottom:792.706667pt;}
.y41{bottom:793.706667pt;}
.y11{bottom:812.733333pt;}
.y40{bottom:813.733333pt;}
.y73{bottom:822.733333pt;}
.y10{bottom:832.733333pt;}
.y72{bottom:843.733333pt;}
.yf{bottom:852.773333pt;}
.y71{bottom:864.773333pt;}
.ye{bottom:872.773333pt;}
.y3e{bottom:873.760000pt;}
.y70{bottom:886.800000pt;}
.yd{bottom:892.800000pt;}
.y6f{bottom:908.800000pt;}
.yc{bottom:912.800000pt;}
.y3d{bottom:918.800000pt;}
.y6e{bottom:930.840000pt;}
.yb{bottom:932.840000pt;}
.y3c{bottom:943.840000pt;}
.ya{bottom:951.840000pt;}
.y5{bottom:972.866667pt;}
.y4{bottom:993.866667pt;}
.y3{bottom:1015.893333pt;}
.y2{bottom:1036.933333pt;}
.y1{bottom:1058.933333pt;}
.h9{height:20.000000pt;}
.hc{height:20.033333pt;}
.hd{height:39.033333pt;}
.ha{height:40.033333pt;}
.hb{height:40.066667pt;}
.h8{height:47.480469pt;}
.h6{height:49.705078pt;}
.h5{height:66.705078pt;}
.h7{height:66.738281pt;}
.h4{height:68.531250pt;}
.he{height:69.893285pt;}
.h3{height:74.720703pt;}
.h2{height:76.728125pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:154.200000pt;}
.w5{width:156.200000pt;}
.w3{width:194.226667pt;}
.w7{width:239.293333pt;}
.w6{width:243.306667pt;}
.w4{width:289.360000pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:20.026667pt;}
.x20{left:21.026667pt;}
.x1e{left:22.033333pt;}
.x1c{left:23.026667pt;}
.x19{left:25.040000pt;}
.x1d{left:27.026667pt;}
.x15{left:31.033333pt;}
.x11{left:32.033333pt;}
.x13{left:33.026667pt;}
.x1b{left:35.033333pt;}
.x2b{left:36.033333pt;}
.x28{left:38.033333pt;}
.xe{left:39.026667pt;}
.x1f{left:40.033333pt;}
.x2d{left:41.066667pt;}
.xc{left:42.033333pt;}
.x12{left:43.026667pt;}
.x31{left:44.066667pt;}
.x18{left:53.053333pt;}
.x17{left:56.053333pt;}
.x2c{left:57.053333pt;}
.x16{left:62.060000pt;}
.x21{left:63.106667pt;}
.x2a{left:64.093333pt;}
.x14{left:66.106667pt;}
.x23{left:67.060000pt;}
.x32{left:68.093333pt;}
.x2f{left:71.093333pt;}
.x1a{left:73.106667pt;}
.xb{left:75.100000pt;}
.x2{left:76.099988pt;}
.x29{left:81.093333pt;}
.x30{left:82.093333pt;}
.x25{left:89.093333pt;}
.x9{left:95.133322pt;}
.x22{left:101.133322pt;}
.x27{left:107.133333pt;}
.x10{left:113.173333pt;}
.x4{left:119.166655pt;}
.x3{left:123.166655pt;}
.xa{left:125.166655pt;}
.x1{left:144.199988pt;}
.x5{left:228.293322pt;}
.xd{left:232.306667pt;}
.x24{left:234.306667pt;}
.x8{left:240.293322pt;}
.x7{left:272.333322pt;}
.x33{left:305.399988pt;}
.x6{left:407.533322pt;}
.xf{left:430.533333pt;}
.x26{left:480.600000pt;}
}




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