
    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_e30d1d1976d6faf65f665fbf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_e1ab0aaa2b7be4fed56e5801.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112000;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_7e19db0d033f6fb25d911f94.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.084000;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_26e7b3eefc3fca1edaba0ffb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.249000;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_020e87ab0e8968bb307116bb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971000;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_09586dfcac165abd1ca4dd99.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.851000;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;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,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);}
.v2{vertical-align:-17.820000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.895000px;}
.ls7{letter-spacing:-3.717000px;}
.ls8{letter-spacing:-0.567000px;}
.ls5{letter-spacing:-0.432000px;}
.lsa{letter-spacing:-0.315000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.189000px;}
.ls4{letter-spacing:0.270000px;}
.ls9{letter-spacing:0.315000px;}
.ls0{letter-spacing:0.570000px;}
.ls2{letter-spacing:12.258000px;}
.ls3{letter-spacing:93.852000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-24.516000px;}
.ws7{word-spacing:-14.490000px;}
.ws4{word-spacing:-14.427000px;}
.ws5{word-spacing:-14.301000px;}
.ws2{word-spacing:-11.934000px;}
.ws3{word-spacing:-10.010700px;}
.ws6{word-spacing:-8.580600px;}
.ws0{word-spacing:0.000000px;}
._14{margin-left:-13.284000px;}
._0{margin-left:-11.628000px;}
._c{margin-left:-10.440000px;}
._10{margin-left:-8.802000px;}
._1e{margin-left:-7.668000px;}
._1b{margin-left:-6.489000px;}
._5{margin-left:-5.094000px;}
._9{margin-left:-3.888000px;}
._15{margin-left:-2.880000px;}
._3{margin-left:-1.710000px;}
._4{width:1.026000px;}
._1{width:2.052000px;}
._8{width:4.050000px;}
._f{width:5.670000px;}
._d{width:7.182000px;}
._2{width:8.208000px;}
._6{width:9.972000px;}
._12{width:11.511000px;}
._17{width:12.681000px;}
._1f{width:14.147400px;}
._1c{width:15.912000px;}
._1d{width:17.181000px;}
._11{width:18.270000px;}
._13{width:19.728000px;}
._19{width:21.168000px;}
._1a{width:22.491000px;}
._a{width:23.976000px;}
._b{width:25.182000px;}
._e{width:41.850000px;}
._7{width:68.544000px;}
._18{width:360.448800px;}
._16{width:1199.683200px;}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:37.800000px;}
.fs5{font-size:44.100000px;}
.fs8{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:63.000000px;}
.fs4{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.fs0{font-size:114.000000px;}
.fs7{font-size:252.000000px;}
.y0{bottom:0.000000px;}
.ya2{bottom:76.550700px;}
.y81{bottom:76.581750px;}
.y5e{bottom:76.581900px;}
.yb4{bottom:76.582050px;}
.y3a{bottom:77.073000px;}
.y6{bottom:88.032600px;}
.ya1{bottom:93.047700px;}
.y39{bottom:93.570000px;}
.y80{bottom:95.560500px;}
.y5d{bottom:95.560650px;}
.yb3{bottom:95.560800px;}
.ya0{bottom:109.544700px;}
.y38{bottom:114.522000px;}
.y7f{bottom:114.539250px;}
.y5c{bottom:114.539400px;}
.yb2{bottom:114.539550px;}
.y9f{bottom:126.041700px;}
.y37{bottom:126.570000px;}
.y7e{bottom:133.518000px;}
.y5b{bottom:133.518150px;}
.yb1{bottom:133.518300px;}
.y9e{bottom:142.538700px;}
.y36{bottom:147.522000px;}
.y7d{bottom:152.496750px;}
.y5a{bottom:152.496900px;}
.yb0{bottom:152.497050px;}
.y9d{bottom:163.490700px;}
.y7c{bottom:171.475500px;}
.y59{bottom:171.475650px;}
.yaf{bottom:171.475800px;}
.y1b{bottom:178.037550px;}
.y7b{bottom:190.454250px;}
.y58{bottom:190.454400px;}
.yae{bottom:190.454550px;}
.y35{bottom:191.907150px;}
.y7a{bottom:209.433000px;}
.y57{bottom:209.433150px;}
.yad{bottom:209.433300px;}
.y1a{bottom:210.437550px;}
.y34{bottom:210.885900px;}
.y19{bottom:226.637550px;}
.y79{bottom:228.411750px;}
.y56{bottom:228.411900px;}
.yac{bottom:228.412050px;}
.y9c{bottom:228.468300px;}
.y33{bottom:229.864650px;}
.y18{bottom:242.837550px;}
.y78{bottom:247.390500px;}
.y55{bottom:247.390650px;}
.yab{bottom:247.390800px;}
.y9b{bottom:247.447050px;}
.y32{bottom:248.843400px;}
.y17{bottom:259.037550px;}
.y77{bottom:266.369250px;}
.y54{bottom:266.369400px;}
.yaa{bottom:266.369550px;}
.y9a{bottom:266.425800px;}
.y31{bottom:267.822150px;}
.y16{bottom:275.237550px;}
.y76{bottom:285.348000px;}
.y53{bottom:285.348150px;}
.ya9{bottom:285.348300px;}
.y99{bottom:285.404550px;}
.y30{bottom:286.778400px;}
.y15{bottom:291.437550px;}
.y75{bottom:304.326750px;}
.y52{bottom:304.326900px;}
.ya8{bottom:304.327050px;}
.y98{bottom:304.383300px;}
.y2f{bottom:305.757150px;}
.y14{bottom:307.637550px;}
.y74{bottom:323.305500px;}
.y51{bottom:323.305650px;}
.ya7{bottom:323.305800px;}
.y97{bottom:323.362050px;}
.y13{bottom:323.837550px;}
.y2e{bottom:324.735900px;}
.y12{bottom:340.037550px;}
.y73{bottom:342.284250px;}
.y50{bottom:342.284400px;}
.ya6{bottom:342.284550px;}
.y96{bottom:342.340800px;}
.y2d{bottom:343.714650px;}
.y11{bottom:356.237550px;}
.y72{bottom:361.263000px;}
.y4f{bottom:361.263150px;}
.ya5{bottom:361.263300px;}
.y95{bottom:361.319550px;}
.y2c{bottom:362.693400px;}
.y10{bottom:372.437550px;}
.y71{bottom:380.241750px;}
.y4e{bottom:380.241900px;}
.ya4{bottom:380.242050px;}
.y94{bottom:380.298300px;}
.y2b{bottom:381.672150px;}
.yf{bottom:388.637550px;}
.y70{bottom:399.220500px;}
.y4d{bottom:399.220650px;}
.ya3{bottom:399.220800px;}
.y93{bottom:399.277050px;}
.y2a{bottom:400.624650px;}
.ye{bottom:404.837550px;}
.y6f{bottom:418.199250px;}
.y4c{bottom:418.199400px;}
.y92{bottom:418.199550px;}
.y29{bottom:419.603400px;}
.yd{bottom:421.037550px;}
.y5{bottom:429.587100px;}
.y6e{bottom:437.178000px;}
.y4b{bottom:437.178150px;}
.y91{bottom:437.178300px;}
.yc{bottom:437.237550px;}
.y28{bottom:438.582150px;}
.y4{bottom:448.565850px;}
.yb{bottom:453.437550px;}
.y6d{bottom:456.156750px;}
.y4a{bottom:456.156900px;}
.y90{bottom:456.157050px;}
.y27{bottom:457.560900px;}
.y3{bottom:467.544600px;}
.ya{bottom:469.637550px;}
.y6c{bottom:475.135500px;}
.y49{bottom:475.135650px;}
.y8f{bottom:475.135800px;}
.y26{bottom:476.539650px;}
.y9{bottom:485.837550px;}
.y6b{bottom:494.114250px;}
.y48{bottom:494.114400px;}
.y8e{bottom:494.114550px;}
.y25{bottom:495.518400px;}
.y3b{bottom:497.901000px;}
.y8{bottom:502.037550px;}
.y6a{bottom:513.093000px;}
.y47{bottom:513.093150px;}
.y8d{bottom:513.093300px;}
.y24{bottom:514.497150px;}
.y69{bottom:532.071750px;}
.y46{bottom:532.071900px;}
.y8c{bottom:532.072050px;}
.y23{bottom:533.475900px;}
.y7{bottom:534.437550px;}
.y68{bottom:551.050500px;}
.y45{bottom:551.050650px;}
.y8b{bottom:551.050800px;}
.y67{bottom:570.029250px;}
.y44{bottom:570.029400px;}
.y8a{bottom:570.029550px;}
.y22{bottom:581.119650px;}
.y2{bottom:581.394600px;}
.y66{bottom:589.008000px;}
.y43{bottom:589.008150px;}
.y89{bottom:589.008300px;}
.y21{bottom:606.319650px;}
.y65{bottom:607.986750px;}
.y42{bottom:607.986900px;}
.y88{bottom:607.987050px;}
.y1{bottom:619.344600px;}
.y64{bottom:626.965500px;}
.y41{bottom:626.965650px;}
.y87{bottom:626.965800px;}
.y20{bottom:631.519650px;}
.y63{bottom:645.944250px;}
.y40{bottom:645.944400px;}
.y86{bottom:645.944550px;}
.y1f{bottom:656.719650px;}
.y1c{bottom:663.102150px;}
.y62{bottom:664.923000px;}
.y3f{bottom:664.923150px;}
.y85{bottom:664.923300px;}
.y1e{bottom:681.919650px;}
.y61{bottom:683.901750px;}
.y3e{bottom:683.901900px;}
.y84{bottom:683.902050px;}
.y60{bottom:702.880500px;}
.y3d{bottom:702.880650px;}
.y83{bottom:702.880800px;}
.y1d{bottom:745.069650px;}
.y5f{bottom:745.400100px;}
.y3c{bottom:745.400400px;}
.y82{bottom:745.400550px;}
.hb{height:32.319000px;}
.h6{height:46.170000px;}
.h5{height:53.865000px;}
.ha{height:58.585500px;}
.h9{height:58.600500px;}
.hd{height:58.720500px;}
.h8{height:62.811000px;}
.h4{height:68.544000px;}
.h3{height:81.396000px;}
.h7{height:83.748000px;}
.hc{height:195.300000px;}
.h2{height:833.250000px;}
.h1{height:833.386500px;}
.h0{height:856.500000px;}
.w1{width:531.496500px;}
.w2{width:531.750000px;}
.w0{width:546.000000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.x9{left:71.223900px;}
.x6{left:89.294550px;}
.x7{left:114.803100px;}
.x4{left:131.362350px;}
.x8{left:140.315100px;}
.x5{left:197.433600px;}
.x2{left:200.349150px;}
.x3{left:224.917350px;}
@media print{
.v2{vertical-align:-15.840000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.573333pt;}
.ls7{letter-spacing:-3.304000pt;}
.ls8{letter-spacing:-0.504000pt;}
.ls5{letter-spacing:-0.384000pt;}
.lsa{letter-spacing:-0.280000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.168000pt;}
.ls4{letter-spacing:0.240000pt;}
.ls9{letter-spacing:0.280000pt;}
.ls0{letter-spacing:0.506667pt;}
.ls2{letter-spacing:10.896000pt;}
.ls3{letter-spacing:83.424000pt;}
.ws1{word-spacing:-21.792000pt;}
.ws7{word-spacing:-12.880000pt;}
.ws4{word-spacing:-12.824000pt;}
.ws5{word-spacing:-12.712000pt;}
.ws2{word-spacing:-10.608000pt;}
.ws3{word-spacing:-8.898400pt;}
.ws6{word-spacing:-7.627200pt;}
.ws0{word-spacing:0.000000pt;}
._14{margin-left:-11.808000pt;}
._0{margin-left:-10.336000pt;}
._c{margin-left:-9.280000pt;}
._10{margin-left:-7.824000pt;}
._1e{margin-left:-6.816000pt;}
._1b{margin-left:-5.768000pt;}
._5{margin-left:-4.528000pt;}
._9{margin-left:-3.456000pt;}
._15{margin-left:-2.560000pt;}
._3{margin-left:-1.520000pt;}
._4{width:0.912000pt;}
._1{width:1.824000pt;}
._8{width:3.600000pt;}
._f{width:5.040000pt;}
._d{width:6.384000pt;}
._2{width:7.296000pt;}
._6{width:8.864000pt;}
._12{width:10.232000pt;}
._17{width:11.272000pt;}
._1f{width:12.575467pt;}
._1c{width:14.144000pt;}
._1d{width:15.272000pt;}
._11{width:16.240000pt;}
._13{width:17.536000pt;}
._19{width:18.816000pt;}
._1a{width:19.992000pt;}
._a{width:21.312000pt;}
._b{width:22.384000pt;}
._e{width:37.200000pt;}
._7{width:60.928000pt;}
._18{width:320.398933pt;}
._16{width:1066.385067pt;}
.fs6{font-size:33.600000pt;}
.fs5{font-size:39.200000pt;}
.fs8{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:56.000000pt;}
.fs4{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.fs0{font-size:101.333333pt;}
.fs7{font-size:224.000000pt;}
.y0{bottom:0.000000pt;}
.ya2{bottom:68.045067pt;}
.y81{bottom:68.072667pt;}
.y5e{bottom:68.072800pt;}
.yb4{bottom:68.072933pt;}
.y3a{bottom:68.509333pt;}
.y6{bottom:78.251200pt;}
.ya1{bottom:82.709067pt;}
.y39{bottom:83.173333pt;}
.y80{bottom:84.942667pt;}
.y5d{bottom:84.942800pt;}
.yb3{bottom:84.942933pt;}
.ya0{bottom:97.373067pt;}
.y38{bottom:101.797333pt;}
.y7f{bottom:101.812667pt;}
.y5c{bottom:101.812800pt;}
.yb2{bottom:101.812933pt;}
.y9f{bottom:112.037067pt;}
.y37{bottom:112.506667pt;}
.y7e{bottom:118.682667pt;}
.y5b{bottom:118.682800pt;}
.yb1{bottom:118.682933pt;}
.y9e{bottom:126.701067pt;}
.y36{bottom:131.130667pt;}
.y7d{bottom:135.552667pt;}
.y5a{bottom:135.552800pt;}
.yb0{bottom:135.552933pt;}
.y9d{bottom:145.325067pt;}
.y7c{bottom:152.422667pt;}
.y59{bottom:152.422800pt;}
.yaf{bottom:152.422933pt;}
.y1b{bottom:158.255600pt;}
.y7b{bottom:169.292667pt;}
.y58{bottom:169.292800pt;}
.yae{bottom:169.292933pt;}
.y35{bottom:170.584133pt;}
.y7a{bottom:186.162667pt;}
.y57{bottom:186.162800pt;}
.yad{bottom:186.162933pt;}
.y1a{bottom:187.055600pt;}
.y34{bottom:187.454133pt;}
.y19{bottom:201.455600pt;}
.y79{bottom:203.032667pt;}
.y56{bottom:203.032800pt;}
.yac{bottom:203.032933pt;}
.y9c{bottom:203.082933pt;}
.y33{bottom:204.324133pt;}
.y18{bottom:215.855600pt;}
.y78{bottom:219.902667pt;}
.y55{bottom:219.902800pt;}
.yab{bottom:219.902933pt;}
.y9b{bottom:219.952933pt;}
.y32{bottom:221.194133pt;}
.y17{bottom:230.255600pt;}
.y77{bottom:236.772667pt;}
.y54{bottom:236.772800pt;}
.yaa{bottom:236.772933pt;}
.y9a{bottom:236.822933pt;}
.y31{bottom:238.064133pt;}
.y16{bottom:244.655600pt;}
.y76{bottom:253.642667pt;}
.y53{bottom:253.642800pt;}
.ya9{bottom:253.642933pt;}
.y99{bottom:253.692933pt;}
.y30{bottom:254.914133pt;}
.y15{bottom:259.055600pt;}
.y75{bottom:270.512667pt;}
.y52{bottom:270.512800pt;}
.ya8{bottom:270.512933pt;}
.y98{bottom:270.562933pt;}
.y2f{bottom:271.784133pt;}
.y14{bottom:273.455600pt;}
.y74{bottom:287.382667pt;}
.y51{bottom:287.382800pt;}
.ya7{bottom:287.382933pt;}
.y97{bottom:287.432933pt;}
.y13{bottom:287.855600pt;}
.y2e{bottom:288.654133pt;}
.y12{bottom:302.255600pt;}
.y73{bottom:304.252667pt;}
.y50{bottom:304.252800pt;}
.ya6{bottom:304.252933pt;}
.y96{bottom:304.302933pt;}
.y2d{bottom:305.524133pt;}
.y11{bottom:316.655600pt;}
.y72{bottom:321.122667pt;}
.y4f{bottom:321.122800pt;}
.ya5{bottom:321.122933pt;}
.y95{bottom:321.172933pt;}
.y2c{bottom:322.394133pt;}
.y10{bottom:331.055600pt;}
.y71{bottom:337.992667pt;}
.y4e{bottom:337.992800pt;}
.ya4{bottom:337.992933pt;}
.y94{bottom:338.042933pt;}
.y2b{bottom:339.264133pt;}
.yf{bottom:345.455600pt;}
.y70{bottom:354.862667pt;}
.y4d{bottom:354.862800pt;}
.ya3{bottom:354.862933pt;}
.y93{bottom:354.912933pt;}
.y2a{bottom:356.110800pt;}
.ye{bottom:359.855600pt;}
.y6f{bottom:371.732667pt;}
.y4c{bottom:371.732800pt;}
.y92{bottom:371.732933pt;}
.y29{bottom:372.980800pt;}
.yd{bottom:374.255600pt;}
.y5{bottom:381.855200pt;}
.y6e{bottom:388.602667pt;}
.y4b{bottom:388.602800pt;}
.y91{bottom:388.602933pt;}
.yc{bottom:388.655600pt;}
.y28{bottom:389.850800pt;}
.y4{bottom:398.725200pt;}
.yb{bottom:403.055600pt;}
.y6d{bottom:405.472667pt;}
.y4a{bottom:405.472800pt;}
.y90{bottom:405.472933pt;}
.y27{bottom:406.720800pt;}
.y3{bottom:415.595200pt;}
.ya{bottom:417.455600pt;}
.y6c{bottom:422.342667pt;}
.y49{bottom:422.342800pt;}
.y8f{bottom:422.342933pt;}
.y26{bottom:423.590800pt;}
.y9{bottom:431.855600pt;}
.y6b{bottom:439.212667pt;}
.y48{bottom:439.212800pt;}
.y8e{bottom:439.212933pt;}
.y25{bottom:440.460800pt;}
.y3b{bottom:442.578667pt;}
.y8{bottom:446.255600pt;}
.y6a{bottom:456.082667pt;}
.y47{bottom:456.082800pt;}
.y8d{bottom:456.082933pt;}
.y24{bottom:457.330800pt;}
.y69{bottom:472.952667pt;}
.y46{bottom:472.952800pt;}
.y8c{bottom:472.952933pt;}
.y23{bottom:474.200800pt;}
.y7{bottom:475.055600pt;}
.y68{bottom:489.822667pt;}
.y45{bottom:489.822800pt;}
.y8b{bottom:489.822933pt;}
.y67{bottom:506.692667pt;}
.y44{bottom:506.692800pt;}
.y8a{bottom:506.692933pt;}
.y22{bottom:516.550800pt;}
.y2{bottom:516.795200pt;}
.y66{bottom:523.562667pt;}
.y43{bottom:523.562800pt;}
.y89{bottom:523.562933pt;}
.y21{bottom:538.950800pt;}
.y65{bottom:540.432667pt;}
.y42{bottom:540.432800pt;}
.y88{bottom:540.432933pt;}
.y1{bottom:550.528533pt;}
.y64{bottom:557.302667pt;}
.y41{bottom:557.302800pt;}
.y87{bottom:557.302933pt;}
.y20{bottom:561.350800pt;}
.y63{bottom:574.172667pt;}
.y40{bottom:574.172800pt;}
.y86{bottom:574.172933pt;}
.y1f{bottom:583.750800pt;}
.y1c{bottom:589.424133pt;}
.y62{bottom:591.042667pt;}
.y3f{bottom:591.042800pt;}
.y85{bottom:591.042933pt;}
.y1e{bottom:606.150800pt;}
.y61{bottom:607.912667pt;}
.y3e{bottom:607.912800pt;}
.y84{bottom:607.912933pt;}
.y60{bottom:624.782667pt;}
.y3d{bottom:624.782800pt;}
.y83{bottom:624.782933pt;}
.y1d{bottom:662.284133pt;}
.y5f{bottom:662.577867pt;}
.y3c{bottom:662.578133pt;}
.y82{bottom:662.578267pt;}
.hb{height:28.728000pt;}
.h6{height:41.040000pt;}
.h5{height:47.880000pt;}
.ha{height:52.076000pt;}
.h9{height:52.089333pt;}
.hd{height:52.196000pt;}
.h8{height:55.832000pt;}
.h4{height:60.928000pt;}
.h3{height:72.352000pt;}
.h7{height:74.442667pt;}
.hc{height:173.600000pt;}
.h2{height:740.666667pt;}
.h1{height:740.788000pt;}
.h0{height:761.333333pt;}
.w1{width:472.441333pt;}
.w2{width:472.666667pt;}
.w0{width:485.333333pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.x9{left:63.310133pt;}
.x6{left:79.372933pt;}
.x7{left:102.047200pt;}
.x4{left:116.766533pt;}
.x8{left:124.724533pt;}
.x5{left:175.496533pt;}
.x2{left:178.088133pt;}
.x3{left:199.926533pt;}
}




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