
    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_898ebb8b5b9d71892621b0ef.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f4eb596927e9cd8956e8c5d4.woff')format("woff");}.ff2{font-family:ff2;line-height:0.936035;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_54f5e880d99b5704f9049222.woff')format("woff");}.ff3{font-family:ff3;line-height:0.960449;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_c8fbbbdeab390c229bc87611.woff')format("woff");}.ff4{font-family:ff4;line-height:0.891602;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_511bf8a608c499e47b3a423e.woff')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_e0d544871a7ec32701f76277.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a0be721ee6af989ca50d6f05.woff')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_927da6d4a08c860905913cc7.woff')format("woff");}.ff8{font-family:ff8;line-height:0.708008;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_7a27046628258cf957abef4f.woff')format("woff");}.ff9{font-family:ff9;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.000000px;}
.ls17{letter-spacing:-3.600000px;}
.ls15{letter-spacing:-2.400000px;}
.ls19{letter-spacing:-1.752000px;}
.ls10{letter-spacing:-1.296000px;}
.ls1a{letter-spacing:-1.200000px;}
.ls1b{letter-spacing:-0.720000px;}
.ls30{letter-spacing:-0.600000px;}
.ls13{letter-spacing:-0.552000px;}
.ls18{letter-spacing:-0.540000px;}
.ls28{letter-spacing:-0.372000px;}
.ls11{letter-spacing:-0.096000px;}
.ls2{letter-spacing:0.000000px;}
.ls2f{letter-spacing:0.084000px;}
.ls12{letter-spacing:0.372000px;}
.ls14{letter-spacing:0.480000px;}
.lsb{letter-spacing:0.492000px;}
.lsf{letter-spacing:0.552000px;}
.lsc{letter-spacing:0.588000px;}
.ls0{letter-spacing:0.600000px;}
.ls25{letter-spacing:0.630000px;}
.ls29{letter-spacing:0.648000px;}
.ls1e{letter-spacing:0.660000px;}
.ls1{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.768000px;}
.ls6{letter-spacing:0.828000px;}
.lse{letter-spacing:0.888000px;}
.lsd{letter-spacing:0.948000px;}
.ls4{letter-spacing:1.104000px;}
.ls23{letter-spacing:1.164000px;}
.ls26{letter-spacing:1.200000px;}
.ls3{letter-spacing:1.476000px;}
.ls16{letter-spacing:1.800000px;}
.ls27{letter-spacing:1.860000px;}
.lsa{letter-spacing:1.920000px;}
.ls8{letter-spacing:4.200000px;}
.ls24{letter-spacing:5.340000px;}
.ls9{letter-spacing:5.400000px;}
.ls2c{letter-spacing:6.600000px;}
.ls5{letter-spacing:10.380000px;}
.ls2b{letter-spacing:19.980000px;}
.ls2e{letter-spacing:21.048000px;}
.ls2d{letter-spacing:22.260000px;}
.ls1d{letter-spacing:28.140000px;}
.ls1c{letter-spacing:28.200000px;}
.ls21{letter-spacing:28.260000px;}
.ls20{letter-spacing:28.320000px;}
.ls1f{letter-spacing:29.400000px;}
.ls22{letter-spacing:37.980000px;}
.ls2a{letter-spacing:39.120000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-84.000000px;}
.ws12{word-spacing:-22.200000px;}
.ws7{word-spacing:-22.104000px;}
.ws10{word-spacing:-21.660000px;}
.ws11{word-spacing:-21.648000px;}
.ws6{word-spacing:-21.480000px;}
.ws4{word-spacing:-21.372000px;}
.ws0{word-spacing:-21.000000px;}
.ws3{word-spacing:-20.904000px;}
.wsf{word-spacing:-20.628000px;}
.wsa{word-spacing:-20.460000px;}
.ws5{word-spacing:-20.448000px;}
.wsd{word-spacing:-20.280000px;}
.wsb{word-spacing:-19.800000px;}
.ws2{word-spacing:-19.704000px;}
.wse{word-spacing:-19.248000px;}
.ws8{word-spacing:-18.600000px;}
.ws9{word-spacing:-17.400000px;}
.ws1{word-spacing:0.000000px;}
._33{margin-left:-20.352000px;}
._16{margin-left:-3.346800px;}
._2{margin-left:-2.152800px;}
._1{margin-left:-1.074000px;}
._0{width:1.008000px;}
._3{width:2.289600px;}
._9{width:4.252800px;}
._1b{width:5.376000px;}
._b{width:6.742800px;}
._a{width:8.032800px;}
._2b{width:9.072000px;}
._8{width:10.300800px;}
._7{width:11.980800px;}
._12{width:13.934400px;}
._13{width:15.006000px;}
._f{width:16.203600px;}
._4{width:17.538000px;}
._15{width:19.138800px;}
._e{width:22.369200px;}
._14{width:23.373600px;}
._c{width:24.594000px;}
._d{width:25.786800px;}
._18{width:26.955600px;}
._20{width:28.476000px;}
._21{width:29.810400px;}
._24{width:31.226400px;}
._27{width:33.232800px;}
._1c{width:34.608000px;}
._1a{width:36.073200px;}
._19{width:37.660800px;}
._1d{width:39.469200px;}
._1e{width:40.640400px;}
._1f{width:41.814000px;}
._10{width:43.176000px;}
._11{width:45.108000px;}
._28{width:46.473600px;}
._2a{width:48.315600px;}
._2d{width:49.444800px;}
._2c{width:51.292800px;}
._2f{width:53.349600px;}
._2e{width:54.516000px;}
._25{width:56.598000px;}
._26{width:58.194000px;}
._5{width:65.082000px;}
._6{width:67.120800px;}
._32{width:69.870000px;}
._29{width:83.160000px;}
._36{width:86.162400px;}
._34{width:87.244800px;}
._35{width:88.602000px;}
._30{width:92.868000px;}
._31{width:95.030400px;}
._22{width:104.058000px;}
._23{width:105.840000px;}
._17{width:191.550000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs1{font-size:81.600000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:7.237500px;}
.y4{bottom:30.900000px;}
.y3{bottom:79.837500px;}
.y22{bottom:124.837500px;}
.y21{bottom:161.130000px;}
.y20{bottom:197.475000px;}
.y1f{bottom:233.475000px;}
.y1e{bottom:269.775000px;}
.y1d{bottom:306.075000px;}
.y1c{bottom:342.120000px;}
.y29{bottom:377.805000px;}
.y1b{bottom:378.405000px;}
.y1a{bottom:414.705000px;}
.y19{bottom:451.005000px;}
.y18{bottom:487.005000px;}
.y17{bottom:523.350000px;}
.y16{bottom:559.650000px;}
.y15{bottom:595.950000px;}
.y14{bottom:631.950000px;}
.y13{bottom:668.250000px;}
.y12{bottom:704.580000px;}
.y2a{bottom:740.280000px;}
.y11{bottom:740.880000px;}
.y10{bottom:776.880000px;}
.yf{bottom:813.195000px;}
.ye{bottom:849.525000px;}
.yd{bottom:885.825000px;}
.yc{bottom:921.825000px;}
.yb{bottom:957.525000px;}
.y28{bottom:958.125000px;}
.ya{bottom:993.825000px;}
.y27{bottom:994.425000px;}
.y9{bottom:1030.155000px;}
.y26{bottom:1030.755000px;}
.y8{bottom:1066.170000px;}
.y25{bottom:1066.755000px;}
.y7{bottom:1102.455000px;}
.y24{bottom:1103.070000px;}
.y6{bottom:1138.755000px;}
.y23{bottom:1139.370000px;}
.y2{bottom:1187.100000px;}
.y1{bottom:1211.100000px;}
.h4{height:32.400000px;}
.h5{height:68.947266px;}
.h6{height:72.638672px;}
.h8{height:73.705078px;}
.h3{height:79.980469px;}
.h7{height:82.441406px;}
.h2{height:84.656250px;}
.h9{height:86.338763px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w2{width:45.300000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:127.537500px;}
.x5{left:136.537500px;}
.x1{left:139.537500px;}
.x9{left:173.745000px;}
.xb{left:180.675000px;}
.xa{left:186.975000px;}
.xd{left:207.675000px;}
.x8{left:336.120000px;}
.x6{left:351.720000px;}
.x2{left:414.105000px;}
.xc{left:428.550000px;}
.x7{left:478.350000px;}
.x4{left:831.900000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.666667pt;}
.ls17{letter-spacing:-3.200000pt;}
.ls15{letter-spacing:-2.133333pt;}
.ls19{letter-spacing:-1.557333pt;}
.ls10{letter-spacing:-1.152000pt;}
.ls1a{letter-spacing:-1.066667pt;}
.ls1b{letter-spacing:-0.640000pt;}
.ls30{letter-spacing:-0.533333pt;}
.ls13{letter-spacing:-0.490667pt;}
.ls18{letter-spacing:-0.480000pt;}
.ls28{letter-spacing:-0.330667pt;}
.ls11{letter-spacing:-0.085333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls2f{letter-spacing:0.074667pt;}
.ls12{letter-spacing:0.330667pt;}
.ls14{letter-spacing:0.426667pt;}
.lsb{letter-spacing:0.437333pt;}
.lsf{letter-spacing:0.490667pt;}
.lsc{letter-spacing:0.522667pt;}
.ls0{letter-spacing:0.533333pt;}
.ls25{letter-spacing:0.560000pt;}
.ls29{letter-spacing:0.576000pt;}
.ls1e{letter-spacing:0.586667pt;}
.ls1{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.682667pt;}
.ls6{letter-spacing:0.736000pt;}
.lse{letter-spacing:0.789333pt;}
.lsd{letter-spacing:0.842667pt;}
.ls4{letter-spacing:0.981333pt;}
.ls23{letter-spacing:1.034667pt;}
.ls26{letter-spacing:1.066667pt;}
.ls3{letter-spacing:1.312000pt;}
.ls16{letter-spacing:1.600000pt;}
.ls27{letter-spacing:1.653333pt;}
.lsa{letter-spacing:1.706667pt;}
.ls8{letter-spacing:3.733333pt;}
.ls24{letter-spacing:4.746667pt;}
.ls9{letter-spacing:4.800000pt;}
.ls2c{letter-spacing:5.866667pt;}
.ls5{letter-spacing:9.226667pt;}
.ls2b{letter-spacing:17.760000pt;}
.ls2e{letter-spacing:18.709333pt;}
.ls2d{letter-spacing:19.786667pt;}
.ls1d{letter-spacing:25.013333pt;}
.ls1c{letter-spacing:25.066667pt;}
.ls21{letter-spacing:25.120000pt;}
.ls20{letter-spacing:25.173333pt;}
.ls1f{letter-spacing:26.133333pt;}
.ls22{letter-spacing:33.760000pt;}
.ls2a{letter-spacing:34.773333pt;}
.wsc{word-spacing:-74.666667pt;}
.ws12{word-spacing:-19.733333pt;}
.ws7{word-spacing:-19.648000pt;}
.ws10{word-spacing:-19.253333pt;}
.ws11{word-spacing:-19.242667pt;}
.ws6{word-spacing:-19.093333pt;}
.ws4{word-spacing:-18.997333pt;}
.ws0{word-spacing:-18.666667pt;}
.ws3{word-spacing:-18.581333pt;}
.wsf{word-spacing:-18.336000pt;}
.wsa{word-spacing:-18.186667pt;}
.ws5{word-spacing:-18.176000pt;}
.wsd{word-spacing:-18.026667pt;}
.wsb{word-spacing:-17.600000pt;}
.ws2{word-spacing:-17.514667pt;}
.wse{word-spacing:-17.109333pt;}
.ws8{word-spacing:-16.533333pt;}
.ws9{word-spacing:-15.466667pt;}
.ws1{word-spacing:0.000000pt;}
._33{margin-left:-18.090667pt;}
._16{margin-left:-2.974933pt;}
._2{margin-left:-1.913600pt;}
._1{margin-left:-0.954667pt;}
._0{width:0.896000pt;}
._3{width:2.035200pt;}
._9{width:3.780267pt;}
._1b{width:4.778667pt;}
._b{width:5.993600pt;}
._a{width:7.140267pt;}
._2b{width:8.064000pt;}
._8{width:9.156267pt;}
._7{width:10.649600pt;}
._12{width:12.386133pt;}
._13{width:13.338667pt;}
._f{width:14.403200pt;}
._4{width:15.589333pt;}
._15{width:17.012267pt;}
._e{width:19.883733pt;}
._14{width:20.776533pt;}
._c{width:21.861333pt;}
._d{width:22.921600pt;}
._18{width:23.960533pt;}
._20{width:25.312000pt;}
._21{width:26.498133pt;}
._24{width:27.756800pt;}
._27{width:29.540267pt;}
._1c{width:30.762667pt;}
._1a{width:32.065067pt;}
._19{width:33.476267pt;}
._1d{width:35.083733pt;}
._1e{width:36.124800pt;}
._1f{width:37.168000pt;}
._10{width:38.378667pt;}
._11{width:40.096000pt;}
._28{width:41.309867pt;}
._2a{width:42.947200pt;}
._2d{width:43.950933pt;}
._2c{width:45.593600pt;}
._2f{width:47.421867pt;}
._2e{width:48.458667pt;}
._25{width:50.309333pt;}
._26{width:51.728000pt;}
._5{width:57.850667pt;}
._6{width:59.662933pt;}
._32{width:62.106667pt;}
._29{width:73.920000pt;}
._36{width:76.588800pt;}
._34{width:77.550933pt;}
._35{width:78.757333pt;}
._30{width:82.549333pt;}
._31{width:84.471467pt;}
._22{width:92.496000pt;}
._23{width:94.080000pt;}
._17{width:170.266667pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:72.533333pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:6.433333pt;}
.y4{bottom:27.466667pt;}
.y3{bottom:70.966667pt;}
.y22{bottom:110.966667pt;}
.y21{bottom:143.226667pt;}
.y20{bottom:175.533333pt;}
.y1f{bottom:207.533333pt;}
.y1e{bottom:239.800000pt;}
.y1d{bottom:272.066667pt;}
.y1c{bottom:304.106667pt;}
.y29{bottom:335.826667pt;}
.y1b{bottom:336.360000pt;}
.y1a{bottom:368.626667pt;}
.y19{bottom:400.893333pt;}
.y18{bottom:432.893333pt;}
.y17{bottom:465.200000pt;}
.y16{bottom:497.466667pt;}
.y15{bottom:529.733333pt;}
.y14{bottom:561.733333pt;}
.y13{bottom:594.000000pt;}
.y12{bottom:626.293333pt;}
.y2a{bottom:658.026667pt;}
.y11{bottom:658.560000pt;}
.y10{bottom:690.560000pt;}
.yf{bottom:722.840000pt;}
.ye{bottom:755.133333pt;}
.yd{bottom:787.400000pt;}
.yc{bottom:819.400000pt;}
.yb{bottom:851.133333pt;}
.y28{bottom:851.666667pt;}
.ya{bottom:883.400000pt;}
.y27{bottom:883.933333pt;}
.y9{bottom:915.693333pt;}
.y26{bottom:916.226667pt;}
.y8{bottom:947.706667pt;}
.y25{bottom:948.226667pt;}
.y7{bottom:979.960000pt;}
.y24{bottom:980.506667pt;}
.y6{bottom:1012.226667pt;}
.y23{bottom:1012.773333pt;}
.y2{bottom:1055.200000pt;}
.y1{bottom:1076.533333pt;}
.h4{height:28.800000pt;}
.h5{height:61.286458pt;}
.h6{height:64.567708pt;}
.h8{height:65.515625pt;}
.h3{height:71.093750pt;}
.h7{height:73.281250pt;}
.h2{height:75.250000pt;}
.h9{height:76.745567pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w2{width:40.266667pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:113.366667pt;}
.x5{left:121.366667pt;}
.x1{left:124.033333pt;}
.x9{left:154.440000pt;}
.xb{left:160.600000pt;}
.xa{left:166.200000pt;}
.xd{left:184.600000pt;}
.x8{left:298.773333pt;}
.x6{left:312.640000pt;}
.x2{left:368.093333pt;}
.xc{left:380.933333pt;}
.x7{left:425.200000pt;}
.x4{left:739.466667pt;}
}




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