
    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_23eaf8f8b4dd18d602785b22.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_bf81d7f60c9ad298e2e9d94e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.863281;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_c00cb48352d5b902e1ed3af2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_d99a17b0407b7a19e6746758.woff')format("woff");}.ff4{font-family:ff4;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.212400px;}
.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;}
}
.ws34{word-spacing:-56.156400px;}
.ws1c{word-spacing:-55.944000px;}
.ws0{word-spacing:-45.005400px;}
.ws1{word-spacing:-44.989800px;}
.ws3f{word-spacing:-38.871000px;}
.ws2{word-spacing:-38.870100px;}
.ws4{word-spacing:-38.799000px;}
.ws43{word-spacing:-38.658600px;}
.ws8{word-spacing:-38.657700px;}
.ws10{word-spacing:-38.656800px;}
.ws4b{word-spacing:-38.651400px;}
.ws12{word-spacing:-38.636400px;}
.ws54{word-spacing:-38.593500px;}
.ws2b{word-spacing:-38.591700px;}
.ws53{word-spacing:-38.448600px;}
.ws20{word-spacing:-38.446800px;}
.ws2a{word-spacing:-38.439900px;}
.ws5{word-spacing:-38.437200px;}
.ws55{word-spacing:-38.359800px;}
.ws19{word-spacing:-38.154000px;}
.ws2f{word-spacing:-38.152800px;}
.ws11{word-spacing:-38.151900px;}
.ws25{word-spacing:-38.150100px;}
.ws9{word-spacing:-38.146800px;}
.ws4f{word-spacing:-37.944000px;}
.ws51{word-spacing:-37.942800px;}
.ws6{word-spacing:-37.935900px;}
.ws7{word-spacing:-37.934100px;}
.ws6c{word-spacing:-37.430100px;}
.ws17{word-spacing:-37.226400px;}
.wse{word-spacing:-37.002600px;}
.ws39{word-spacing:-36.285900px;}
.ws36{word-spacing:-36.201300px;}
.ws38{word-spacing:-35.790000px;}
.ws37{word-spacing:-35.274000px;}
.ws49{word-spacing:-35.051400px;}
.ws21{word-spacing:-34.558200px;}
.ws15{word-spacing:-34.557300px;}
.ws45{word-spacing:-34.338300px;}
.ws41{word-spacing:-34.332300px;}
.ws6b{word-spacing:-33.762600px;}
.ws6a{word-spacing:-33.627300px;}
.ws3{word-spacing:-33.547800px;}
.ws3c{word-spacing:-32.904600px;}
.wsc{word-spacing:-32.891100px;}
.ws46{word-spacing:-31.680000px;}
.ws68{word-spacing:-31.462200px;}
.ws69{word-spacing:-31.455000px;}
.ws18{word-spacing:-30.956400px;}
.ws24{word-spacing:-30.744000px;}
.ws1e{word-spacing:-29.526000px;}
.ws5b{word-spacing:-29.309100px;}
.ws5d{word-spacing:-29.304000px;}
.ws5c{word-spacing:-29.300100px;}
.ws42{word-spacing:-29.080800px;}
.ws32{word-spacing:-28.590000px;}
.ws50{word-spacing:-28.578600px;}
.ws4a{word-spacing:-27.855900px;}
.ws52{word-spacing:-27.138600px;}
.ws31{word-spacing:-27.131400px;}
.ws29{word-spacing:-26.919000px;}
.ws2e{word-spacing:-26.418600px;}
.ws5a{word-spacing:-26.415900px;}
.ws59{word-spacing:-26.409600px;}
.wsf{word-spacing:-26.190000px;}
.ws28{word-spacing:-25.479000px;}
.ws3d{word-spacing:-22.104000px;}
.ws35{word-spacing:-21.592800px;}
.wsa{word-spacing:-21.581100px;}
.ws1f{word-spacing:-21.378600px;}
.wsb{word-spacing:-20.661300px;}
.ws4e{word-spacing:-19.939200px;}
.wsd{word-spacing:-19.726800px;}
.ws30{word-spacing:-19.440000px;}
.ws3e{word-spacing:-19.224000px;}
.ws2c{word-spacing:-18.288600px;}
.ws48{word-spacing:-17.559000px;}
.ws33{word-spacing:-17.053200px;}
.ws4d{word-spacing:-16.846800px;}
.ws1a{word-spacing:-16.547400px;}
.ws1b{word-spacing:-16.338600px;}
.ws3b{word-spacing:-13.962600px;}
.ws6e{word-spacing:-13.454100px;}
.ws6d{word-spacing:-12.736800px;}
.ws6f{word-spacing:-12.514500px;}
.ws71{word-spacing:-8.418600px;}
.ws70{word-spacing:-7.697700px;}
.ws72{word-spacing:-6.758100px;}
.ws22{word-spacing:-6.757200px;}
.ws3a{word-spacing:-6.251400px;}
.ws13{word-spacing:-5.740200px;}
.ws14{word-spacing:-5.465700px;}
.ws23{word-spacing:-5.330400px;}
.ws62{word-spacing:-4.095900px;}
.ws5f{word-spacing:-3.876300px;}
.ws60{word-spacing:-3.602400px;}
.ws5e{word-spacing:-3.382200px;}
.ws61{word-spacing:-3.370500px;}
.ws63{word-spacing:-2.445300px;}
.ws27{word-spacing:8.357400px;}
.ws16{word-spacing:30.456000px;}
.ws1d{word-spacing:45.592200px;}
.ws2d{word-spacing:51.121800px;}
.ws67{word-spacing:66.969900px;}
.ws44{word-spacing:67.178700px;}
.ws47{word-spacing:67.907700px;}
.ws57{word-spacing:69.128700px;}
.ws56{word-spacing:69.336900px;}
.ws58{word-spacing:69.566100px;}
.ws40{word-spacing:72.943200px;}
.ws4c{word-spacing:75.816000px;}
.ws26{word-spacing:76.541400px;}
.ws65{word-spacing:89.296200px;}
.ws64{word-spacing:89.504400px;}
.ws66{word-spacing:90.945900px;}
._0{margin-left:-1.110600px;}
._4{width:1.062900px;}
._1{width:18.144000px;}
._5{width:19.202700px;}
._9{width:20.268900px;}
._c{width:22.599900px;}
._1a{width:23.783400px;}
._6{width:25.043100px;}
._e{width:26.257500px;}
._10{width:27.510000px;}
._15{width:28.817100px;}
._14{width:29.908200px;}
._a{width:30.942000px;}
._17{width:35.556300px;}
._2{width:36.560100px;}
._8{width:37.719600px;}
._7{width:38.806800px;}
._16{width:40.597200px;}
._18{width:44.310600px;}
._20{width:48.869100px;}
._b{width:51.597900px;}
._1e{width:53.598600px;}
._12{width:65.724600px;}
._d{width:87.641100px;}
._f{width:102.975300px;}
._13{width:108.415200px;}
._1b{width:124.335300px;}
._1c{width:125.534700px;}
._19{width:130.024800px;}
._1d{width:132.809700px;}
._11{width:134.130600px;}
._1f{width:146.649600px;}
._3{width:287.934000px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:66.300000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.300000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.590000px;}
.y4{bottom:52.725000px;}
.y56{bottom:99.975000px;}
.y2d{bottom:102.315000px;}
.y55{bottom:120.675000px;}
.y2c{bottom:123.015000px;}
.y54{bottom:141.375000px;}
.y2b{bottom:143.715000px;}
.y2a{bottom:164.415000px;}
.y53{bottom:183.136500px;}
.y29{bottom:185.115000px;}
.y52{bottom:224.715000px;}
.y28{bottom:226.875000px;}
.y51{bottom:245.415000px;}
.y27{bottom:247.575000px;}
.y50{bottom:266.115000px;}
.y26{bottom:268.275000px;}
.y4f{bottom:286.815000px;}
.y25{bottom:288.975000px;}
.y24{bottom:309.675000px;}
.y4e{bottom:328.575000px;}
.y4d{bottom:349.275000px;}
.y23{bottom:351.436500px;}
.y4c{bottom:369.975000px;}
.y22{bottom:372.136500px;}
.y4b{bottom:390.675000px;}
.y21{bottom:392.836500px;}
.y4a{bottom:411.375000px;}
.y20{bottom:413.536500px;}
.y1f{bottom:434.236500px;}
.y49{bottom:453.136500px;}
.y1e{bottom:454.936500px;}
.y48{bottom:473.836500px;}
.y47{bottom:494.536500px;}
.y1d{bottom:496.515000px;}
.y46{bottom:515.236500px;}
.y1c{bottom:517.215000px;}
.y45{bottom:535.936500px;}
.y1b{bottom:537.915000px;}
.y1a{bottom:558.615000px;}
.y44{bottom:577.515000px;}
.y43{bottom:598.215000px;}
.y19{bottom:600.375000px;}
.y42{bottom:618.915000px;}
.y18{bottom:621.075000px;}
.y41{bottom:639.615000px;}
.y17{bottom:662.836500px;}
.y40{bottom:681.375000px;}
.y16{bottom:683.536500px;}
.y3f{bottom:702.075000px;}
.y15{bottom:704.236500px;}
.y3e{bottom:722.775000px;}
.y14{bottom:724.936500px;}
.y3d{bottom:743.475000px;}
.y13{bottom:745.636500px;}
.y12{bottom:766.336500px;}
.y3c{bottom:785.236500px;}
.y3b{bottom:805.936500px;}
.y11{bottom:807.915000px;}
.y3a{bottom:826.636500px;}
.y39{bottom:847.336500px;}
.y10{bottom:849.675000px;}
.y38{bottom:868.036500px;}
.yf{bottom:870.375000px;}
.y37{bottom:888.736500px;}
.ye{bottom:891.075000px;}
.y5a{bottom:909.436500px;}
.yd{bottom:911.775000px;}
.y36{bottom:930.315000px;}
.yc{bottom:932.475000px;}
.y35{bottom:951.015000px;}
.yb{bottom:953.175000px;}
.y34{bottom:971.715000px;}
.y33{bottom:992.415000px;}
.ya{bottom:994.936500px;}
.y32{bottom:1013.115000px;}
.y9{bottom:1030.575000px;}
.y59{bottom:1033.815000px;}
.y58{bottom:1054.515000px;}
.y31{bottom:1054.875000px;}
.y8{bottom:1066.215000px;}
.y57{bottom:1075.215000px;}
.y30{bottom:1075.575000px;}
.y2f{bottom:1096.275000px;}
.y7{bottom:1102.036500px;}
.y2e{bottom:1116.975000px;}
.y6{bottom:1137.675000px;}
.y3{bottom:1176.555000px;}
.y2{bottom:1197.975000px;}
.y1{bottom:1221.915000px;}
.h4{height:20.175000px;}
.h3{height:48.796875px;}
.h5{height:49.304150px;}
.h6{height:50.027344px;}
.h2{height:57.133008px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:16.725000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:127.620000px;}
.xb{left:132.120000px;}
.x3{left:145.620000px;}
.x2{left:159.838500px;}
.x1{left:163.080000px;}
.x5{left:198.000000px;}
.x8{left:404.100000px;}
.x4{left:470.025000px;}
.x6{left:474.300000px;}
.x7{left:571.680000px;}
.x9{left:728.638500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.188800pt;}
.ws34{word-spacing:-49.916800pt;}
.ws1c{word-spacing:-49.728000pt;}
.ws0{word-spacing:-40.004800pt;}
.ws1{word-spacing:-39.990933pt;}
.ws3f{word-spacing:-34.552000pt;}
.ws2{word-spacing:-34.551200pt;}
.ws4{word-spacing:-34.488000pt;}
.ws43{word-spacing:-34.363200pt;}
.ws8{word-spacing:-34.362400pt;}
.ws10{word-spacing:-34.361600pt;}
.ws4b{word-spacing:-34.356800pt;}
.ws12{word-spacing:-34.343467pt;}
.ws54{word-spacing:-34.305333pt;}
.ws2b{word-spacing:-34.303733pt;}
.ws53{word-spacing:-34.176533pt;}
.ws20{word-spacing:-34.174933pt;}
.ws2a{word-spacing:-34.168800pt;}
.ws5{word-spacing:-34.166400pt;}
.ws55{word-spacing:-34.097600pt;}
.ws19{word-spacing:-33.914667pt;}
.ws2f{word-spacing:-33.913600pt;}
.ws11{word-spacing:-33.912800pt;}
.ws25{word-spacing:-33.911200pt;}
.ws9{word-spacing:-33.908267pt;}
.ws4f{word-spacing:-33.728000pt;}
.ws51{word-spacing:-33.726933pt;}
.ws6{word-spacing:-33.720800pt;}
.ws7{word-spacing:-33.719200pt;}
.ws6c{word-spacing:-33.271200pt;}
.ws17{word-spacing:-33.090133pt;}
.wse{word-spacing:-32.891200pt;}
.ws39{word-spacing:-32.254133pt;}
.ws36{word-spacing:-32.178933pt;}
.ws38{word-spacing:-31.813333pt;}
.ws37{word-spacing:-31.354667pt;}
.ws49{word-spacing:-31.156800pt;}
.ws21{word-spacing:-30.718400pt;}
.ws15{word-spacing:-30.717600pt;}
.ws45{word-spacing:-30.522933pt;}
.ws41{word-spacing:-30.517600pt;}
.ws6b{word-spacing:-30.011200pt;}
.ws6a{word-spacing:-29.890933pt;}
.ws3{word-spacing:-29.820267pt;}
.ws3c{word-spacing:-29.248533pt;}
.wsc{word-spacing:-29.236533pt;}
.ws46{word-spacing:-28.160000pt;}
.ws68{word-spacing:-27.966400pt;}
.ws69{word-spacing:-27.960000pt;}
.ws18{word-spacing:-27.516800pt;}
.ws24{word-spacing:-27.328000pt;}
.ws1e{word-spacing:-26.245333pt;}
.ws5b{word-spacing:-26.052533pt;}
.ws5d{word-spacing:-26.048000pt;}
.ws5c{word-spacing:-26.044533pt;}
.ws42{word-spacing:-25.849600pt;}
.ws32{word-spacing:-25.413333pt;}
.ws50{word-spacing:-25.403200pt;}
.ws4a{word-spacing:-24.760800pt;}
.ws52{word-spacing:-24.123200pt;}
.ws31{word-spacing:-24.116800pt;}
.ws29{word-spacing:-23.928000pt;}
.ws2e{word-spacing:-23.483200pt;}
.ws5a{word-spacing:-23.480800pt;}
.ws59{word-spacing:-23.475200pt;}
.wsf{word-spacing:-23.280000pt;}
.ws28{word-spacing:-22.648000pt;}
.ws3d{word-spacing:-19.648000pt;}
.ws35{word-spacing:-19.193600pt;}
.wsa{word-spacing:-19.183200pt;}
.ws1f{word-spacing:-19.003200pt;}
.wsb{word-spacing:-18.365600pt;}
.ws4e{word-spacing:-17.723733pt;}
.wsd{word-spacing:-17.534933pt;}
.ws30{word-spacing:-17.280000pt;}
.ws3e{word-spacing:-17.088000pt;}
.ws2c{word-spacing:-16.256533pt;}
.ws48{word-spacing:-15.608000pt;}
.ws33{word-spacing:-15.158400pt;}
.ws4d{word-spacing:-14.974933pt;}
.ws1a{word-spacing:-14.708800pt;}
.ws1b{word-spacing:-14.523200pt;}
.ws3b{word-spacing:-12.411200pt;}
.ws6e{word-spacing:-11.959200pt;}
.ws6d{word-spacing:-11.321600pt;}
.ws6f{word-spacing:-11.124000pt;}
.ws71{word-spacing:-7.483200pt;}
.ws70{word-spacing:-6.842400pt;}
.ws72{word-spacing:-6.007200pt;}
.ws22{word-spacing:-6.006400pt;}
.ws3a{word-spacing:-5.556800pt;}
.ws13{word-spacing:-5.102400pt;}
.ws14{word-spacing:-4.858400pt;}
.ws23{word-spacing:-4.738133pt;}
.ws62{word-spacing:-3.640800pt;}
.ws5f{word-spacing:-3.445600pt;}
.ws60{word-spacing:-3.202133pt;}
.ws5e{word-spacing:-3.006400pt;}
.ws61{word-spacing:-2.996000pt;}
.ws63{word-spacing:-2.173600pt;}
.ws27{word-spacing:7.428800pt;}
.ws16{word-spacing:27.072000pt;}
.ws1d{word-spacing:40.526400pt;}
.ws2d{word-spacing:45.441600pt;}
.ws67{word-spacing:59.528800pt;}
.ws44{word-spacing:59.714400pt;}
.ws47{word-spacing:60.362400pt;}
.ws57{word-spacing:61.447733pt;}
.ws56{word-spacing:61.632800pt;}
.ws58{word-spacing:61.836533pt;}
.ws40{word-spacing:64.838400pt;}
.ws4c{word-spacing:67.392000pt;}
.ws26{word-spacing:68.036800pt;}
.ws65{word-spacing:79.374400pt;}
.ws64{word-spacing:79.559467pt;}
.ws66{word-spacing:80.840800pt;}
._0{margin-left:-0.987200pt;}
._4{width:0.944800pt;}
._1{width:16.128000pt;}
._5{width:17.069067pt;}
._9{width:18.016800pt;}
._c{width:20.088800pt;}
._1a{width:21.140800pt;}
._6{width:22.260533pt;}
._e{width:23.340000pt;}
._10{width:24.453333pt;}
._15{width:25.615200pt;}
._14{width:26.585067pt;}
._a{width:27.504000pt;}
._17{width:31.605600pt;}
._2{width:32.497867pt;}
._8{width:33.528533pt;}
._7{width:34.494933pt;}
._16{width:36.086400pt;}
._18{width:39.387200pt;}
._20{width:43.439200pt;}
._b{width:45.864800pt;}
._1e{width:47.643200pt;}
._12{width:58.421867pt;}
._d{width:77.903200pt;}
._f{width:91.533600pt;}
._13{width:96.369067pt;}
._1b{width:110.520267pt;}
._1c{width:111.586400pt;}
._19{width:115.577600pt;}
._1d{width:118.053067pt;}
._11{width:119.227200pt;}
._1f{width:130.355200pt;}
._3{width:255.941333pt;}
.fs2{font-size:58.933333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.933333pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:4.080000pt;}
.y4{bottom:46.866667pt;}
.y56{bottom:88.866667pt;}
.y2d{bottom:90.946667pt;}
.y55{bottom:107.266667pt;}
.y2c{bottom:109.346667pt;}
.y54{bottom:125.666667pt;}
.y2b{bottom:127.746667pt;}
.y2a{bottom:146.146667pt;}
.y53{bottom:162.788000pt;}
.y29{bottom:164.546667pt;}
.y52{bottom:199.746667pt;}
.y28{bottom:201.666667pt;}
.y51{bottom:218.146667pt;}
.y27{bottom:220.066667pt;}
.y50{bottom:236.546667pt;}
.y26{bottom:238.466667pt;}
.y4f{bottom:254.946667pt;}
.y25{bottom:256.866667pt;}
.y24{bottom:275.266667pt;}
.y4e{bottom:292.066667pt;}
.y4d{bottom:310.466667pt;}
.y23{bottom:312.388000pt;}
.y4c{bottom:328.866667pt;}
.y22{bottom:330.788000pt;}
.y4b{bottom:347.266667pt;}
.y21{bottom:349.188000pt;}
.y4a{bottom:365.666667pt;}
.y20{bottom:367.588000pt;}
.y1f{bottom:385.988000pt;}
.y49{bottom:402.788000pt;}
.y1e{bottom:404.388000pt;}
.y48{bottom:421.188000pt;}
.y47{bottom:439.588000pt;}
.y1d{bottom:441.346667pt;}
.y46{bottom:457.988000pt;}
.y1c{bottom:459.746667pt;}
.y45{bottom:476.388000pt;}
.y1b{bottom:478.146667pt;}
.y1a{bottom:496.546667pt;}
.y44{bottom:513.346667pt;}
.y43{bottom:531.746667pt;}
.y19{bottom:533.666667pt;}
.y42{bottom:550.146667pt;}
.y18{bottom:552.066667pt;}
.y41{bottom:568.546667pt;}
.y17{bottom:589.188000pt;}
.y40{bottom:605.666667pt;}
.y16{bottom:607.588000pt;}
.y3f{bottom:624.066667pt;}
.y15{bottom:625.988000pt;}
.y3e{bottom:642.466667pt;}
.y14{bottom:644.388000pt;}
.y3d{bottom:660.866667pt;}
.y13{bottom:662.788000pt;}
.y12{bottom:681.188000pt;}
.y3c{bottom:697.988000pt;}
.y3b{bottom:716.388000pt;}
.y11{bottom:718.146667pt;}
.y3a{bottom:734.788000pt;}
.y39{bottom:753.188000pt;}
.y10{bottom:755.266667pt;}
.y38{bottom:771.588000pt;}
.yf{bottom:773.666667pt;}
.y37{bottom:789.988000pt;}
.ye{bottom:792.066667pt;}
.y5a{bottom:808.388000pt;}
.yd{bottom:810.466667pt;}
.y36{bottom:826.946667pt;}
.yc{bottom:828.866667pt;}
.y35{bottom:845.346667pt;}
.yb{bottom:847.266667pt;}
.y34{bottom:863.746667pt;}
.y33{bottom:882.146667pt;}
.ya{bottom:884.388000pt;}
.y32{bottom:900.546667pt;}
.y9{bottom:916.066667pt;}
.y59{bottom:918.946667pt;}
.y58{bottom:937.346667pt;}
.y31{bottom:937.666667pt;}
.y8{bottom:947.746667pt;}
.y57{bottom:955.746667pt;}
.y30{bottom:956.066667pt;}
.y2f{bottom:974.466667pt;}
.y7{bottom:979.588000pt;}
.y2e{bottom:992.866667pt;}
.y6{bottom:1011.266667pt;}
.y3{bottom:1045.826667pt;}
.y2{bottom:1064.866667pt;}
.y1{bottom:1086.146667pt;}
.h4{height:17.933333pt;}
.h3{height:43.375000pt;}
.h5{height:43.825911pt;}
.h6{height:44.468750pt;}
.h2{height:50.784896pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:14.866667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:113.440000pt;}
.xb{left:117.440000pt;}
.x3{left:129.440000pt;}
.x2{left:142.078667pt;}
.x1{left:144.960000pt;}
.x5{left:176.000000pt;}
.x8{left:359.200000pt;}
.x4{left:417.800000pt;}
.x6{left:421.600000pt;}
.x7{left:508.160000pt;}
.x9{left:647.678667pt;}
}




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