
    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_b7c8d67ec7d7197f2eb246bb.woff')format("woff");}.ff1{font-family:ff1;line-height:0.922000;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_3441537551f158e5ab39cc09.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_2b0528c7c0a215a6b855ce35.woff')format("woff");}.ff3{font-family:ff3;line-height:0.999000;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_421b7f1fe900eea86a5357a6.woff')format("woff");}.ff4{font-family:ff4;line-height:1.001000;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_b9ff045fa37a4ef20c3c1193.woff')format("woff");}.ff5{font-family:ff5;line-height:0.999000;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_0e2e8638e02d7977e3f48767.woff')format("woff");}.ff6{font-family:ff6;line-height:0.908000;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);}
.v2{vertical-align:-96.378000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:96.378000px;}
.v1{vertical-align:115.662000px;}
.ls7{letter-spacing:0.000000px;}
.ls2{letter-spacing:2.990499px;}
.ls1{letter-spacing:2.996499px;}
.ls6{letter-spacing:32.640358px;}
.ls3{letter-spacing:32.759830px;}
.ls5{letter-spacing:32.824766px;}
.ls4{letter-spacing:66.847760px;}
.ls0{letter-spacing:102.893371px;}
.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;}
}
.ws9{word-spacing:-149.391000px;}
.ws8{word-spacing:-124.509488px;}
.ws7{word-spacing:-101.511202px;}
.ws1e{word-spacing:-92.204400px;}
.wsb{word-spacing:-61.424680px;}
.wsd{word-spacing:-57.883077px;}
.ws5{word-spacing:-57.661727px;}
.wse{word-spacing:-57.219027px;}
.ws26{word-spacing:-56.997677px;}
.ws15{word-spacing:-53.013373px;}
.ws1{word-spacing:-50.103539px;}
.ws3{word-spacing:-49.797000px;}
.ws1d{word-spacing:-48.038492px;}
.ws16{word-spacing:-47.922318px;}
.ws1b{word-spacing:-47.485266px;}
.ws2{word-spacing:-41.749805px;}
.ws6{word-spacing:-41.503163px;}
.wsc{word-spacing:-39.090445px;}
.wsa{word-spacing:-37.762344px;}
.ws10{word-spacing:-34.963908px;}
.ws28{word-spacing:-34.884792px;}
.ws4{word-spacing:-34.663441px;}
.ws1a{word-spacing:-34.576650px;}
.ws2a{word-spacing:-34.442091px;}
.ws29{word-spacing:-34.220741px;}
.ws25{word-spacing:-33.335340px;}
.ws27{word-spacing:-33.113990px;}
.ws14{word-spacing:-30.236437px;}
.ws23{word-spacing:-29.062827px;}
.ws11{word-spacing:-28.878418px;}
.ws1c{word-spacing:-28.694009px;}
.ws24{word-spacing:-28.675568px;}
.ws19{word-spacing:-28.509600px;}
.ws20{word-spacing:-28.140783px;}
.ws1f{word-spacing:-27.661320px;}
.ws17{word-spacing:-25.366733px;}
.ws13{word-spacing:-14.310123px;}
.ws22{word-spacing:-13.941305px;}
.ws21{word-spacing:-11.728400px;}
.ws12{word-spacing:-5.827318px;}
.ws2b{word-spacing:0.000000px;}
.wsf{word-spacing:8.925386px;}
.ws18{word-spacing:11.377400px;}
.ws0{word-spacing:201.561617px;}
._3{margin-left:-50.665762px;}
._9{margin-left:-24.964896px;}
._7{margin-left:-20.981136px;}
._1{margin-left:-17.072159px;}
._19{margin-left:-13.423410px;}
._21{margin-left:-9.674113px;}
._a{margin-left:-8.605570px;}
._5{margin-left:-6.905184px;}
._c{margin-left:-5.755105px;}
._16{margin-left:-4.018561px;}
._20{margin-left:-1.144885px;}
._14{width:1.150079px;}
._23{width:4.202970px;}
._b{width:5.755105px;}
._13{width:6.996551px;}
._4{width:8.605570px;}
._22{width:14.284333px;}
._0{width:17.072159px;}
._17{width:50.712420px;}
._1f{width:56.467525px;}
._e{width:66.891088px;}
._f{width:68.175862px;}
._18{width:70.610714px;}
._1c{width:72.867544px;}
._10{width:75.259068px;}
._24{width:76.675628px;}
._12{width:77.693920px;}
._1e{width:79.108677px;}
._15{width:81.014173px;}
._d{width:82.871630px;}
._8{width:84.190128px;}
._1a{width:85.883878px;}
._1b{width:88.318730px;}
._11{width:89.868181px;}
._1d{width:94.073835px;}
._6{width:250.080317px;}
._2{width:268.748822px;}
.fc3{color:rgb(20,50,100);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(51,6,98);}
.fs6{font-size:184.408800px;}
.fs3{font-size:185.908200px;}
.fs5{font-size:221.350200px;}
.fs2{font-size:223.106400px;}
.fs4{font-size:265.584000px;}
.fs1{font-size:318.724800px;}
.fs0{font-size:550.714800px;}
.y0{bottom:0.000000px;}
.y38{bottom:291.318000px;}
.y37{bottom:359.880000px;}
.y58{bottom:386.988000px;}
.y20{bottom:395.737500px;}
.y36{bottom:437.409000px;}
.y1f{bottom:440.733000px;}
.y57{bottom:442.579500px;}
.y1e{bottom:481.500000px;}
.y56{bottom:498.171000px;}
.y35{bottom:514.939500px;}
.y55{bottom:553.762500px;}
.y34{bottom:583.501500px;}
.y54{bottom:609.354000px;}
.y53{bottom:667.933500px;}
.y33{bottom:723.532500px;}
.y52{bottom:732.492000px;}
.y32{bottom:768.528000px;}
.y51{bottom:788.083500px;}
.y31{bottom:809.295000px;}
.y50{bottom:843.675000px;}
.y74{bottom:853.033500px;}
.y4f{bottom:899.266500px;}
.y4e{bottom:954.858000px;}
.y4d{bottom:1013.437500px;}
.y73{bottom:1022.965500px;}
.y72{bottom:1091.529000px;}
.y1d{bottom:1104.783000px;}
.y4c{bottom:1140.498000px;}
.y71{bottom:1169.058000px;}
.y1c{bottom:1173.345000px;}
.y4b{bottom:1185.492000px;}
.y4a{bottom:1229.971500px;}
.y70{bottom:1237.620000px;}
.y1b{bottom:1241.908500px;}
.y49{bottom:1274.967000px;}
.y1a{bottom:1310.470500px;}
.y6f{bottom:1315.150500px;}
.y48{bottom:1315.734000px;}
.y6e{bottom:1383.712500px;}
.y19{bottom:1388.001000px;}
.y18{bottom:1456.563000px;}
.y6d{bottom:1461.241500px;}
.y17{bottom:1525.126500px;}
.y6c{bottom:1529.805000px;}
.y16{bottom:1593.688500px;}
.y6b{bottom:1607.334000px;}
.y15{bottom:1671.219000px;}
.y6a{bottom:1675.897500px;}
.y14{bottom:1739.781000px;}
.y69{bottom:1744.459500px;}
.y30{bottom:1790.338500px;}
.y13{bottom:1808.344500px;}
.y2f{bottom:1858.902000px;}
.y68{bottom:1899.522000px;}
.y2e{bottom:1927.464000px;}
.y12{bottom:1963.407000px;}
.y67{bottom:2069.454000px;}
.y2d{bottom:2082.499500px;}
.y66{bottom:2138.017500px;}
.y47{bottom:2151.769500px;}
.y11{bottom:2154.744000px;}
.y65{bottom:2206.581000px;}
.y46{bottom:2207.361000px;}
.y10{bottom:2223.307500px;}
.y2c{bottom:2241.669000px;}
.y45{bottom:2262.952500px;}
.y64{bottom:2284.110000px;}
.yf{bottom:2291.871000px;}
.y2b{bottom:2310.231000px;}
.y44{bottom:2318.544000px;}
.y63{bottom:2352.672000px;}
.ye{bottom:2360.433000px;}
.y43{bottom:2374.135500px;}
.y2a{bottom:2378.794500px;}
.y62{bottom:2421.235500px;}
.y42{bottom:2432.716500px;}
.yd{bottom:2437.962000px;}
.y29{bottom:2447.358000px;}
.y61{bottom:2489.799000px;}
.y41{bottom:2497.273500px;}
.yc{bottom:2506.525500px;}
.y28{bottom:2524.887000px;}
.y40{bottom:2552.865000px;}
.y60{bottom:2567.328000px;}
.yb{bottom:2584.054500px;}
.y27{bottom:2593.449000px;}
.y3f{bottom:2608.456500px;}
.y5f{bottom:2635.890000px;}
.ya{bottom:2652.618000px;}
.y3e{bottom:2664.048000px;}
.y26{bottom:2685.835500px;}
.y5e{bottom:2704.453500px;}
.y9{bottom:2721.180000px;}
.y3d{bottom:2722.629000px;}
.y5d{bottom:2773.017000px;}
.y25{bottom:2778.220500px;}
.y8{bottom:2798.710500px;}
.y3c{bottom:2802.043500px;}
.y24{bottom:2846.784000px;}
.y5c{bottom:2850.546000px;}
.y7{bottom:2867.272500px;}
.y3b{bottom:2870.605500px;}
.y23{bottom:2915.346000px;}
.y5b{bottom:2919.108000px;}
.y6{bottom:2935.836000px;}
.y3a{bottom:2939.169000px;}
.y22{bottom:2983.909500px;}
.y5a{bottom:2987.671500px;}
.y5{bottom:3004.398000px;}
.y39{bottom:3007.732500px;}
.y4{bottom:3121.942500px;}
.y21{bottom:3138.972000px;}
.y59{bottom:3142.734000px;}
.y3{bottom:3449.851500px;}
.y2{bottom:3543.447000px;}
.y1{bottom:3673.146000px;}
.h9{height:129.823795px;}
.h7{height:138.122191px;}
.h8{height:138.306600px;}
.h3{height:139.245242px;}
.h6{height:165.791300px;}
.h5{height:166.012650px;}
.h4{height:199.188000px;}
.h2{height:282.991800px;}
.h1{height:394.311797px;}
.h0{height:3888.000000px;}
.w0{width:5184.000000px;}
.x0{left:0.000000px;}
.xa{left:124.426500px;}
.x8{left:134.517000px;}
.x9{left:157.153500px;}
.x5{left:166.407000px;}
.x6{left:189.043500px;}
.x4{left:359.871000px;}
.x7{left:489.141000px;}
.x1{left:692.050500px;}
.x3{left:1190.547000px;}
.xe{left:1389.340500px;}
.xc{left:1399.429500px;}
.xd{left:1422.067500px;}
.xf{left:1515.519000px;}
.xb{left:1666.990500px;}
.x2{left:1857.952500px;}
.x11{left:2654.253000px;}
.x12{left:2664.343500px;}
.x15{left:2686.980000px;}
.x13{left:2699.482500px;}
.x14{left:2719.707000px;}
.x10{left:3104.485500px;}
.x17{left:3929.256000px;}
.x18{left:3951.894000px;}
.x19{left:4167.193500px;}
.x16{left:4296.031500px;}
.x1a{left:4314.639000px;}
@media print{
.v2{vertical-align:-85.669333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:85.669333pt;}
.v1{vertical-align:102.810667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2{letter-spacing:2.658222pt;}
.ls1{letter-spacing:2.663555pt;}
.ls6{letter-spacing:29.013651pt;}
.ls3{letter-spacing:29.119849pt;}
.ls5{letter-spacing:29.177570pt;}
.ls4{letter-spacing:59.420231pt;}
.ls0{letter-spacing:91.460774pt;}
.ws9{word-spacing:-132.792000pt;}
.ws8{word-spacing:-110.675100pt;}
.ws7{word-spacing:-90.232179pt;}
.ws1e{word-spacing:-81.959467pt;}
.wsb{word-spacing:-54.599716pt;}
.wsd{word-spacing:-51.451624pt;}
.ws5{word-spacing:-51.254869pt;}
.wse{word-spacing:-50.861357pt;}
.ws26{word-spacing:-50.664601pt;}
.ws15{word-spacing:-47.122998pt;}
.ws1{word-spacing:-44.536479pt;}
.ws3{word-spacing:-44.264000pt;}
.ws1d{word-spacing:-42.700882pt;}
.ws16{word-spacing:-42.597616pt;}
.ws1b{word-spacing:-42.209125pt;}
.ws2{word-spacing:-37.110938pt;}
.ws6{word-spacing:-36.891700pt;}
.wsc{word-spacing:-34.747063pt;}
.wsa{word-spacing:-33.566528pt;}
.ws10{word-spacing:-31.079030pt;}
.ws28{word-spacing:-31.008704pt;}
.ws4{word-spacing:-30.811948pt;}
.ws1a{word-spacing:-30.734800pt;}
.ws2a{word-spacing:-30.615192pt;}
.ws29{word-spacing:-30.418436pt;}
.ws25{word-spacing:-29.631413pt;}
.ws27{word-spacing:-29.434658pt;}
.ws14{word-spacing:-26.876833pt;}
.ws23{word-spacing:-25.833624pt;}
.ws11{word-spacing:-25.669705pt;}
.ws1c{word-spacing:-25.505786pt;}
.ws24{word-spacing:-25.489394pt;}
.ws19{word-spacing:-25.341867pt;}
.ws20{word-spacing:-25.014029pt;}
.ws1f{word-spacing:-24.587840pt;}
.ws17{word-spacing:-22.548207pt;}
.ws13{word-spacing:-12.720109pt;}
.ws22{word-spacing:-12.392271pt;}
.ws21{word-spacing:-10.425244pt;}
.ws12{word-spacing:-5.179838pt;}
.ws2b{word-spacing:0.000000pt;}
.wsf{word-spacing:7.933676pt;}
.ws18{word-spacing:10.113245pt;}
.ws0{word-spacing:179.165882pt;}
._3{margin-left:-45.036233pt;}
._9{margin-left:-22.191019pt;}
._7{margin-left:-18.649899pt;}
._1{margin-left:-15.175252pt;}
._19{margin-left:-11.931920pt;}
._21{margin-left:-8.599212pt;}
._a{margin-left:-7.649395pt;}
._5{margin-left:-6.137941pt;}
._c{margin-left:-5.115649pt;}
._16{margin-left:-3.572054pt;}
._20{margin-left:-1.017676pt;}
._14{width:1.022292pt;}
._23{width:3.735973pt;}
._b{width:5.115649pt;}
._13{width:6.219156pt;}
._4{width:7.649395pt;}
._22{width:12.697185pt;}
._0{width:15.175252pt;}
._17{width:45.077707pt;}
._1f{width:50.193356pt;}
._e{width:59.458745pt;}
._f{width:60.600766pt;}
._18{width:62.765079pt;}
._1c{width:64.771150pt;}
._10{width:66.896949pt;}
._24{width:68.156114pt;}
._12{width:69.061262pt;}
._1e{width:70.318824pt;}
._15{width:72.012598pt;}
._d{width:73.663671pt;}
._8{width:74.835669pt;}
._1a{width:76.341225pt;}
._1b{width:78.505538pt;}
._11{width:79.882828pt;}
._1d{width:83.621187pt;}
._6{width:222.293615pt;}
._2{width:238.887842pt;}
.fs6{font-size:163.918933pt;}
.fs3{font-size:165.251733pt;}
.fs5{font-size:196.755733pt;}
.fs2{font-size:198.316800pt;}
.fs4{font-size:236.074667pt;}
.fs1{font-size:283.310933pt;}
.fs0{font-size:489.524267pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:258.949333pt;}
.y37{bottom:319.893333pt;}
.y58{bottom:343.989333pt;}
.y20{bottom:351.766667pt;}
.y36{bottom:388.808000pt;}
.y1f{bottom:391.762667pt;}
.y57{bottom:393.404000pt;}
.y1e{bottom:428.000000pt;}
.y56{bottom:442.818667pt;}
.y35{bottom:457.724000pt;}
.y55{bottom:492.233333pt;}
.y34{bottom:518.668000pt;}
.y54{bottom:541.648000pt;}
.y53{bottom:593.718667pt;}
.y33{bottom:643.140000pt;}
.y52{bottom:651.104000pt;}
.y32{bottom:683.136000pt;}
.y51{bottom:700.518667pt;}
.y31{bottom:719.373333pt;}
.y50{bottom:749.933333pt;}
.y74{bottom:758.252000pt;}
.y4f{bottom:799.348000pt;}
.y4e{bottom:848.762667pt;}
.y4d{bottom:900.833333pt;}
.y73{bottom:909.302667pt;}
.y72{bottom:970.248000pt;}
.y1d{bottom:982.029333pt;}
.y4c{bottom:1013.776000pt;}
.y71{bottom:1039.162667pt;}
.y1c{bottom:1042.973333pt;}
.y4b{bottom:1053.770667pt;}
.y4a{bottom:1093.308000pt;}
.y70{bottom:1100.106667pt;}
.y1b{bottom:1103.918667pt;}
.y49{bottom:1133.304000pt;}
.y1a{bottom:1164.862667pt;}
.y6f{bottom:1169.022667pt;}
.y48{bottom:1169.541333pt;}
.y6e{bottom:1229.966667pt;}
.y19{bottom:1233.778667pt;}
.y18{bottom:1294.722667pt;}
.y6d{bottom:1298.881333pt;}
.y17{bottom:1355.668000pt;}
.y6c{bottom:1359.826667pt;}
.y16{bottom:1416.612000pt;}
.y6b{bottom:1428.741333pt;}
.y15{bottom:1485.528000pt;}
.y6a{bottom:1489.686667pt;}
.y14{bottom:1546.472000pt;}
.y69{bottom:1550.630667pt;}
.y30{bottom:1591.412000pt;}
.y13{bottom:1607.417333pt;}
.y2f{bottom:1652.357333pt;}
.y68{bottom:1688.464000pt;}
.y2e{bottom:1713.301333pt;}
.y12{bottom:1745.250667pt;}
.y67{bottom:1839.514667pt;}
.y2d{bottom:1851.110667pt;}
.y66{bottom:1900.460000pt;}
.y47{bottom:1912.684000pt;}
.y11{bottom:1915.328000pt;}
.y65{bottom:1961.405333pt;}
.y46{bottom:1962.098667pt;}
.y10{bottom:1976.273333pt;}
.y2c{bottom:1992.594667pt;}
.y45{bottom:2011.513333pt;}
.y64{bottom:2030.320000pt;}
.yf{bottom:2037.218667pt;}
.y2b{bottom:2053.538667pt;}
.y44{bottom:2060.928000pt;}
.y63{bottom:2091.264000pt;}
.ye{bottom:2098.162667pt;}
.y43{bottom:2110.342667pt;}
.y2a{bottom:2114.484000pt;}
.y62{bottom:2152.209333pt;}
.y42{bottom:2162.414667pt;}
.yd{bottom:2167.077333pt;}
.y29{bottom:2175.429333pt;}
.y61{bottom:2213.154667pt;}
.y41{bottom:2219.798667pt;}
.yc{bottom:2228.022667pt;}
.y28{bottom:2244.344000pt;}
.y40{bottom:2269.213333pt;}
.y60{bottom:2282.069333pt;}
.yb{bottom:2296.937333pt;}
.y27{bottom:2305.288000pt;}
.y3f{bottom:2318.628000pt;}
.y5f{bottom:2343.013333pt;}
.ya{bottom:2357.882667pt;}
.y3e{bottom:2368.042667pt;}
.y26{bottom:2387.409333pt;}
.y5e{bottom:2403.958667pt;}
.y9{bottom:2418.826667pt;}
.y3d{bottom:2420.114667pt;}
.y5d{bottom:2464.904000pt;}
.y25{bottom:2469.529333pt;}
.y8{bottom:2487.742667pt;}
.y3c{bottom:2490.705333pt;}
.y24{bottom:2530.474667pt;}
.y5c{bottom:2533.818667pt;}
.y7{bottom:2548.686667pt;}
.y3b{bottom:2551.649333pt;}
.y23{bottom:2591.418667pt;}
.y5b{bottom:2594.762667pt;}
.y6{bottom:2609.632000pt;}
.y3a{bottom:2612.594667pt;}
.y22{bottom:2652.364000pt;}
.y5a{bottom:2655.708000pt;}
.y5{bottom:2670.576000pt;}
.y39{bottom:2673.540000pt;}
.y4{bottom:2775.060000pt;}
.y21{bottom:2790.197333pt;}
.y59{bottom:2793.541333pt;}
.y3{bottom:3066.534667pt;}
.y2{bottom:3149.730667pt;}
.y1{bottom:3265.018667pt;}
.h9{height:115.398929pt;}
.h7{height:122.775281pt;}
.h8{height:122.939200pt;}
.h3{height:123.773548pt;}
.h6{height:147.370044pt;}
.h5{height:147.566800pt;}
.h4{height:177.056000pt;}
.h2{height:251.548267pt;}
.h1{height:350.499375pt;}
.h0{height:3456.000000pt;}
.w0{width:4608.000000pt;}
.x0{left:0.000000pt;}
.xa{left:110.601333pt;}
.x8{left:119.570667pt;}
.x9{left:139.692000pt;}
.x5{left:147.917333pt;}
.x6{left:168.038667pt;}
.x4{left:319.885333pt;}
.x7{left:434.792000pt;}
.x1{left:615.156000pt;}
.x3{left:1058.264000pt;}
.xe{left:1234.969333pt;}
.xc{left:1243.937333pt;}
.xd{left:1264.060000pt;}
.xf{left:1347.128000pt;}
.xb{left:1481.769333pt;}
.x2{left:1651.513333pt;}
.x11{left:2359.336000pt;}
.x12{left:2368.305333pt;}
.x15{left:2388.426667pt;}
.x13{left:2399.540000pt;}
.x14{left:2417.517333pt;}
.x10{left:2759.542667pt;}
.x17{left:3492.672000pt;}
.x18{left:3512.794667pt;}
.x19{left:3704.172000pt;}
.x16{left:3818.694667pt;}
.x1a{left:3835.234667pt;}
}




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