
    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_55879091d6529205687272dc.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_929a7638aa7c3708b07db7d3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_18c9dd3abc5e9164aabc91b9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_e999560eaf0b5ea18b7081d2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_98d718dab9ec168a4992a55f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.895996;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_a3db37d170c0357a560c3aad.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895996;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_9845b96c33e5f0bccb4a3657.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.895996;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_1fbabd3cad266c26c4b56fb0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.394043;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3d223e847bcddafbf5b7a6c7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.935000;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:ffa;src:url('chunks/assets/font_1e4ce95ec3a71a621c6d80ac.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.944000;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:ffb;src:url('chunks/assets/font_cffdb102d78c8cc9d97e93e3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.941100;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:ffc;src:url('chunks/assets/font_b45ad5185f1e43cc9a7481e5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.704250;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:ffd;src:url('chunks/assets/font_92d0b887efeef0b226163f23.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.698000;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:ffe;src:url('chunks/assets/font_58524e9c0d82bd6cae5fdaf3.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.667000;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:fff;src:url('chunks/assets/font_1fbabd3cad266c26c4b56fb0.woff2')format("woff");}.fff{font-family:fff;line-height:1.394043;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;}
.m2{transform:matrix(0.249999,-0.000025,0.000600,0.249999,0,0);-ms-transform:matrix(0.249999,-0.000025,0.000600,0.249999,0,0);-webkit-transform:matrix(0.249999,-0.000025,0.000600,0.249999,0,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);}
.m3{transform:matrix(0.250188,0.008486,-0.008475,0.249856,0,0);-ms-transform:matrix(0.250188,0.008486,-0.008475,0.249856,0,0);-webkit-transform:matrix(0.250188,0.008486,-0.008475,0.249856,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);}
.v1{vertical-align:-22.020063px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.660062px;}
.ls1{letter-spacing:-6.306000px;}
.ls4{letter-spacing:-0.463800px;}
.ls16{letter-spacing:-0.132000px;}
.ls19{letter-spacing:-0.122400px;}
.ls1a{letter-spacing:-0.070800px;}
.ls18{letter-spacing:-0.067200px;}
.ls12{letter-spacing:-0.049800px;}
.ls13{letter-spacing:-0.043200px;}
.ls15{letter-spacing:-0.001800px;}
.ls17{letter-spacing:-0.000600px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.007200px;}
.lsd{letter-spacing:0.091200px;}
.ls6{letter-spacing:0.096000px;}
.ls11{letter-spacing:0.132000px;}
.lsb{letter-spacing:0.162000px;}
.ls9{letter-spacing:0.202801px;}
.lsa{letter-spacing:0.226801px;}
.ls7{letter-spacing:0.301801px;}
.lsc{letter-spacing:0.348001px;}
.ls10{letter-spacing:0.371991px;}
.ls0{letter-spacing:0.420000px;}
.ls8{letter-spacing:0.422401px;}
.ls14{letter-spacing:0.432001px;}
.lsf{letter-spacing:0.445201px;}
.ls2{letter-spacing:0.468000px;}
.ls5{letter-spacing:0.587400px;}
.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;}
}
.ws4{word-spacing:-28.662083px;}
.ws5{word-spacing:-28.500082px;}
.ws3{word-spacing:-14.970240px;}
.ws2{word-spacing:-14.506440px;}
.ws0{word-spacing:0.000000px;}
.ws1{word-spacing:0.420000px;}
.ws6{word-spacing:3.192009px;}
._5{margin-left:-3.339610px;}
._0{margin-left:-1.512000px;}
._1{width:1.224000px;}
._2{width:2.857440px;}
._7{width:4.104012px;}
._6{width:5.574016px;}
._4{width:6.810020px;}
._3{width:12.408036px;}
.fc2{color:rgb(5,99,193);}
.fc3{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:63.000181px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs8{font-size:87.000251px;}
.fs1{font-size:93.000000px;}
.fs5{font-size:111.000320px;}
.fs7{font-size:114.000328px;}
.fs4{font-size:150.000432px;}
.fs9{font-size:218.850481px;}
.y0{bottom:0.000000px;}
.y22{bottom:3.787500px;}
.y21{bottom:34.200073px;}
.y2f{bottom:34.200079px;}
.y26{bottom:159.511839px;}
.y2e{bottom:161.970915px;}
.y25{bottom:181.114991px;}
.y2d{bottom:183.015915px;}
.y5{bottom:240.301650px;}
.y2c{bottom:255.008565px;}
.y4{bottom:265.501650px;}
.y3{bottom:299.797200px;}
.y2{bottom:333.646200px;}
.y2b{bottom:366.662001px;}
.y1{bottom:369.149700px;}
.y20{bottom:411.585000px;}
.y2a{bottom:441.014675px;}
.y1f{bottom:441.105000px;}
.y1e{bottom:510.990000px;}
.y1d{bottom:532.590000px;}
.y1c{bottom:566.430000px;}
.y29{bottom:582.031473px;}
.y1b{bottom:600.300000px;}
.y28{bottom:615.146034px;}
.y1a{bottom:621.900000px;}
.y19{bottom:643.500000px;}
.y18{bottom:677.340000px;}
.y17{bottom:711.180000px;}
.y16{bottom:744.690000px;}
.y15{bottom:778.530000px;}
.y14{bottom:800.130000px;}
.y27{bottom:808.859552px;}
.y13{bottom:833.970000px;}
.y12{bottom:855.975000px;}
.y11{bottom:877.575000px;}
.y10{bottom:899.175000px;}
.yf{bottom:921.135000px;}
.ye{bottom:942.735000px;}
.yd{bottom:964.365000px;}
.yc{bottom:986.325000px;}
.yb{bottom:1007.925000px;}
.y24{bottom:1018.846317px;}
.ya{bottom:1029.885000px;}
.y9{bottom:1051.485000px;}
.y8{bottom:1085.370000px;}
.y23{bottom:1103.236665px;}
.y7{bottom:1106.970000px;}
.y6{bottom:1140.810000px;}
.hc{height:19.800105px;}
.h9{height:45.281250px;}
.h11{height:46.368134px;}
.ha{height:47.545312px;}
.h4{height:56.929688px;}
.h2{height:58.324219px;}
.h13{height:60.030173px;}
.h3{height:63.029297px;}
.hd{height:73.265625px;}
.h12{height:78.432226px;}
.h10{height:81.474235px;}
.hf{height:109.650316px;}
.h14{height:145.754421px;}
.h0{height:1262.054700px;}
.h1{height:1262.250000px;}
.h15{height:1262.519985px;}
.hb{height:1262.520000px;}
.he{height:1262.520015px;}
.h7{height:1262.880000px;}
.h8{height:1263.000000px;}
.h6{height:1264.500000px;}
.h5{height:1264.776300px;}
.w7{width:457.173000px;}
.w5{width:892.500000px;}
.w6{width:892.799987px;}
.w4{width:892.800000px;}
.w2{width:893.659800px;}
.w3{width:894.000000px;}
.w1{width:896.250000px;}
.w0{width:896.385000px;}
.x0{left:0.000000px;}
.x4{left:28.313250px;}
.xc{left:61.192879px;}
.xb{left:62.656032px;}
.x9{left:102.184950px;}
.x6{left:106.235987px;}
.xa{left:158.909000px;}
.x8{left:217.813499px;}
.x7{left:252.464987px;}
.xf{left:266.518882px;}
.xe{left:302.049415px;}
.xd{left:321.758008px;}
.x3{left:329.095500px;}
.x2{left:357.985500px;}
.x12{left:378.219450px;}
.x11{left:392.315798px;}
.x1{left:414.372000px;}
.x10{left:428.872361px;}
.x5{left:639.539250px;}
.x13{left:654.131550px;}
@media print{
.v1{vertical-align:-19.573390pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.253389pt;}
.ls1{letter-spacing:-5.605333pt;}
.ls4{letter-spacing:-0.412267pt;}
.ls16{letter-spacing:-0.117334pt;}
.ls19{letter-spacing:-0.108800pt;}
.ls1a{letter-spacing:-0.062934pt;}
.ls18{letter-spacing:-0.059734pt;}
.ls12{letter-spacing:-0.044267pt;}
.ls13{letter-spacing:-0.038400pt;}
.ls15{letter-spacing:-0.001600pt;}
.ls17{letter-spacing:-0.000533pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.006400pt;}
.lsd{letter-spacing:0.081067pt;}
.ls6{letter-spacing:0.085334pt;}
.ls11{letter-spacing:0.117334pt;}
.lsb{letter-spacing:0.144000pt;}
.ls9{letter-spacing:0.180267pt;}
.lsa{letter-spacing:0.201601pt;}
.ls7{letter-spacing:0.268267pt;}
.lsc{letter-spacing:0.309334pt;}
.ls10{letter-spacing:0.330658pt;}
.ls0{letter-spacing:0.373333pt;}
.ls8{letter-spacing:0.375468pt;}
.ls14{letter-spacing:0.384001pt;}
.lsf{letter-spacing:0.395734pt;}
.ls2{letter-spacing:0.416000pt;}
.ls5{letter-spacing:0.522133pt;}
.ws4{word-spacing:-25.477407pt;}
.ws5{word-spacing:-25.333406pt;}
.ws3{word-spacing:-13.306880pt;}
.ws2{word-spacing:-12.894613pt;}
.ws0{word-spacing:0.000000pt;}
.ws1{word-spacing:0.373333pt;}
.ws6{word-spacing:2.837342pt;}
._5{margin-left:-2.968542pt;}
._0{margin-left:-1.344000pt;}
._1{width:1.088000pt;}
._2{width:2.539947pt;}
._7{width:3.648011pt;}
._6{width:4.954681pt;}
._4{width:6.053351pt;}
._3{width:11.029365pt;}
.fs6{font-size:56.000161pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs8{font-size:77.333556pt;}
.fs1{font-size:82.666667pt;}
.fs5{font-size:98.666951pt;}
.fs7{font-size:101.333625pt;}
.fs4{font-size:133.333717pt;}
.fs9{font-size:194.533761pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:3.366667pt;}
.y21{bottom:30.400065pt;}
.y2f{bottom:30.400070pt;}
.y26{bottom:141.788302pt;}
.y2e{bottom:143.974147pt;}
.y25{bottom:160.991103pt;}
.y2d{bottom:162.680813pt;}
.y5{bottom:213.601467pt;}
.y2c{bottom:226.674280pt;}
.y4{bottom:236.001467pt;}
.y3{bottom:266.486400pt;}
.y2{bottom:296.574400pt;}
.y2b{bottom:325.921779pt;}
.y1{bottom:328.133067pt;}
.y20{bottom:365.853333pt;}
.y2a{bottom:392.013044pt;}
.y1f{bottom:392.093333pt;}
.y1e{bottom:454.213333pt;}
.y1d{bottom:473.413333pt;}
.y1c{bottom:503.493333pt;}
.y29{bottom:517.361310pt;}
.y1b{bottom:533.600000pt;}
.y28{bottom:546.796475pt;}
.y1a{bottom:552.800000pt;}
.y19{bottom:572.000000pt;}
.y18{bottom:602.080000pt;}
.y17{bottom:632.160000pt;}
.y16{bottom:661.946667pt;}
.y15{bottom:692.026667pt;}
.y14{bottom:711.226667pt;}
.y27{bottom:718.986268pt;}
.y13{bottom:741.306667pt;}
.y12{bottom:760.866667pt;}
.y11{bottom:780.066667pt;}
.y10{bottom:799.266667pt;}
.yf{bottom:818.786667pt;}
.ye{bottom:837.986667pt;}
.yd{bottom:857.213333pt;}
.yc{bottom:876.733333pt;}
.yb{bottom:895.933333pt;}
.y24{bottom:905.641171pt;}
.ya{bottom:915.453333pt;}
.y9{bottom:934.653333pt;}
.y8{bottom:964.773333pt;}
.y23{bottom:980.654813pt;}
.y7{bottom:983.973333pt;}
.y6{bottom:1014.053333pt;}
.hc{height:17.600093pt;}
.h9{height:40.250000pt;}
.h11{height:41.216119pt;}
.ha{height:42.262500pt;}
.h4{height:50.604167pt;}
.h2{height:51.843750pt;}
.h13{height:53.360154pt;}
.h3{height:56.026042pt;}
.hd{height:65.125000pt;}
.h12{height:69.717534pt;}
.h10{height:72.421542pt;}
.hf{height:97.466947pt;}
.h14{height:129.559485pt;}
.h0{height:1121.826400pt;}
.h1{height:1122.000000pt;}
.h15{height:1122.239987pt;}
.hb{height:1122.240000pt;}
.he{height:1122.240013pt;}
.h7{height:1122.560000pt;}
.h8{height:1122.666667pt;}
.h6{height:1124.000000pt;}
.h5{height:1124.245600pt;}
.w7{width:406.376000pt;}
.w5{width:793.333333pt;}
.w6{width:793.599988pt;}
.w4{width:793.600000pt;}
.w2{width:794.364267pt;}
.w3{width:794.666667pt;}
.w1{width:796.666667pt;}
.w0{width:796.786667pt;}
.x0{left:0.000000pt;}
.x4{left:25.167333pt;}
.xc{left:54.393670pt;}
.xb{left:55.694251pt;}
.x9{left:90.831067pt;}
.x6{left:94.431988pt;}
.xa{left:141.252445pt;}
.x8{left:193.611999pt;}
.x7{left:224.413322pt;}
.xf{left:236.905673pt;}
.xe{left:268.488369pt;}
.xd{left:286.007118pt;}
.x3{left:292.529333pt;}
.x2{left:318.209333pt;}
.x12{left:336.195067pt;}
.x11{left:348.725154pt;}
.x1{left:368.330667pt;}
.x10{left:381.219876pt;}
.x5{left:568.479333pt;}
.x13{left:581.450267pt;}
}




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