
    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_533423d4d5ab16cd8e0e07a3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.711000;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_2bdeccafc195243537cac0a4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.043000;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_6e3c7b6add014739aa3d1927.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691895;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_374e32fc87f375589ff929cd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.844727;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_a2dcc6fccf55923dc3f13242.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.930000;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;}
.ls6{letter-spacing:-0.720000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.009000px;}
.ls3{letter-spacing:0.016200px;}
.ls0{letter-spacing:0.031800px;}
.ls1{letter-spacing:0.032400px;}
.ls5{letter-spacing:0.060000px;}
.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;}
}
.ws0{word-spacing:-66.000000px;}
.ws3{word-spacing:-13.200000px;}
.ws1{word-spacing:-13.140000px;}
.ws2{word-spacing:0.000000px;}
.ws4{word-spacing:0.720000px;}
._d{margin-left:-14.094000px;}
._21{margin-left:-12.582000px;}
._11{margin-left:-8.262000px;}
._17{margin-left:-6.852000px;}
._12{margin-left:-5.586000px;}
._14{margin-left:-4.437000px;}
._2{margin-left:-2.700000px;}
._0{margin-left:-1.035000px;}
._4{width:1.254000px;}
._7{width:2.820000px;}
._9{width:3.936000px;}
._5{width:5.520000px;}
._3{width:6.564000px;}
._a{width:7.686000px;}
._e{width:8.808000px;}
._1{width:9.882000px;}
._6{width:11.028000px;}
._8{width:12.072000px;}
._c{width:14.439000px;}
._13{width:15.753000px;}
._10{width:17.637000px;}
._f{width:18.696000px;}
._15{width:20.418000px;}
._b{width:21.582000px;}
._22{width:22.704000px;}
._18{width:24.696000px;}
._16{width:25.986000px;}
._19{width:26.997600px;}
._23{width:28.674000px;}
._20{width:29.742000px;}
._1e{width:31.662000px;}
._1f{width:33.042000px;}
._28{width:34.674000px;}
._27{width:36.000000px;}
._1a{width:38.040000px;}
._1b{width:39.990000px;}
._29{width:41.436000px;}
._1c{width:43.038000px;}
._1d{width:44.379000px;}
._24{width:47.091000px;}
._25{width:58.692000px;}
._26{width:59.832000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(175,47,95);}
.fs3{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:69.000000px;}
.y0{bottom:0.000000px;}
.yb5{bottom:73.975800px;}
.yb4{bottom:89.725800px;}
.yb3{bottom:105.475800px;}
.y76{bottom:105.478950px;}
.y3a{bottom:105.781050px;}
.yb2{bottom:121.225800px;}
.y75{bottom:121.228950px;}
.y39{bottom:121.531050px;}
.y74{bottom:136.978950px;}
.y38{bottom:137.281050px;}
.yb1{bottom:145.480800px;}
.y73{bottom:152.728950px;}
.yb0{bottom:161.230800px;}
.y37{bottom:161.536050px;}
.y72{bottom:168.478950px;}
.yaf{bottom:176.980800px;}
.y36{bottom:177.286050px;}
.yae{bottom:192.730800px;}
.y71{bottom:192.733950px;}
.y35{bottom:193.036050px;}
.yad{bottom:208.480800px;}
.y70{bottom:208.483950px;}
.y34{bottom:208.786050px;}
.y6f{bottom:224.233950px;}
.y33{bottom:224.536050px;}
.yac{bottom:232.735800px;}
.y6e{bottom:239.983950px;}
.y32{bottom:240.286050px;}
.yab{bottom:248.485800px;}
.y6d{bottom:255.733950px;}
.yaa{bottom:264.235800px;}
.y31{bottom:264.541050px;}
.y6c{bottom:271.483950px;}
.ya9{bottom:279.985800px;}
.y30{bottom:288.796050px;}
.ya8{bottom:295.735800px;}
.y6b{bottom:295.738950px;}
.y2f{bottom:304.546050px;}
.y6a{bottom:311.488950px;}
.ya7{bottom:319.990800px;}
.y2e{bottom:320.296050px;}
.y69{bottom:327.238950px;}
.ya6{bottom:335.740800px;}
.y2d{bottom:344.551050px;}
.ya5{bottom:351.490800px;}
.y68{bottom:351.493950px;}
.y2c{bottom:360.301050px;}
.ya4{bottom:367.240800px;}
.y67{bottom:367.243950px;}
.y2b{bottom:376.051050px;}
.ya3{bottom:382.990800px;}
.y66{bottom:382.993950px;}
.y2a{bottom:400.306050px;}
.ya2{bottom:407.245800px;}
.y65{bottom:407.248950px;}
.y29{bottom:416.056050px;}
.ya1{bottom:422.995800px;}
.y64{bottom:422.998950px;}
.y28{bottom:431.806050px;}
.ya0{bottom:438.745800px;}
.y63{bottom:438.748950px;}
.y27{bottom:447.556050px;}
.y62{bottom:454.498950px;}
.y9f{bottom:463.000800px;}
.y26{bottom:471.811050px;}
.y9e{bottom:478.750800px;}
.y61{bottom:478.753950px;}
.y25{bottom:487.561050px;}
.y9d{bottom:494.500800px;}
.y60{bottom:494.503950px;}
.y24{bottom:503.311050px;}
.y9c{bottom:510.250800px;}
.y5f{bottom:510.253950px;}
.y23{bottom:519.061050px;}
.y5e{bottom:526.003950px;}
.y9b{bottom:534.505800px;}
.y5d{bottom:541.753950px;}
.y22{bottom:543.316050px;}
.y9a{bottom:550.255800px;}
.y5c{bottom:557.491050px;}
.y21{bottom:559.066050px;}
.y99{bottom:574.510800px;}
.y20{bottom:574.816050px;}
.y5b{bottom:581.746050px;}
.y98{bottom:590.260800px;}
.y1f{bottom:590.566050px;}
.y5a{bottom:597.496050px;}
.y97{bottom:606.010800px;}
.y1e{bottom:606.316050px;}
.y59{bottom:613.246050px;}
.y96{bottom:621.760800px;}
.y1d{bottom:630.571050px;}
.y58{bottom:637.501050px;}
.y95{bottom:646.015800px;}
.y1c{bottom:646.321050px;}
.y57{bottom:653.251050px;}
.y94{bottom:661.765800px;}
.y1b{bottom:662.071050px;}
.y56{bottom:669.001050px;}
.y93{bottom:677.515800px;}
.y55{bottom:684.751050px;}
.y1a{bottom:686.326050px;}
.y92{bottom:693.265800px;}
.y54{bottom:700.501050px;}
.y19{bottom:702.076050px;}
.y91{bottom:709.015800px;}
.y18{bottom:717.826050px;}
.y53{bottom:724.756050px;}
.y90{bottom:724.765800px;}
.y8f{bottom:740.504700px;}
.y52{bottom:740.506050px;}
.y17{bottom:742.081050px;}
.y51{bottom:756.256050px;}
.y16{bottom:757.831050px;}
.y8e{bottom:764.759700px;}
.y8d{bottom:780.509700px;}
.y50{bottom:780.511050px;}
.y15{bottom:782.086050px;}
.y8c{bottom:796.259700px;}
.y4f{bottom:796.261050px;}
.y14{bottom:797.836050px;}
.yc9{bottom:812.005800px;}
.y4e{bottom:812.011050px;}
.y13{bottom:813.586050px;}
.y8b{bottom:820.514700px;}
.yc8{bottom:827.755800px;}
.y4d{bottom:827.761050px;}
.y12{bottom:829.336050px;}
.y8a{bottom:836.264700px;}
.yc7{bottom:843.505800px;}
.y11{bottom:845.081850px;}
.y89{bottom:852.014700px;}
.y4c{bottom:852.016050px;}
.yc6{bottom:867.760800px;}
.y88{bottom:867.764700px;}
.y4b{bottom:867.766050px;}
.y10{bottom:869.336850px;}
.yc5{bottom:883.510800px;}
.y87{bottom:883.514700px;}
.y4a{bottom:883.516050px;}
.yf{bottom:885.086850px;}
.yc4{bottom:899.260800px;}
.y86{bottom:899.264700px;}
.ye{bottom:900.836850px;}
.y49{bottom:907.771050px;}
.yc3{bottom:915.010800px;}
.y85{bottom:915.014700px;}
.yd{bottom:916.586850px;}
.y48{bottom:923.521050px;}
.yc2{bottom:939.265800px;}
.y84{bottom:939.269700px;}
.y47{bottom:939.271050px;}
.yc{bottom:940.841850px;}
.yc1{bottom:955.015800px;}
.y83{bottom:955.019700px;}
.y46{bottom:955.021050px;}
.yb{bottom:956.591850px;}
.yc0{bottom:970.765800px;}
.y82{bottom:970.769700px;}
.y45{bottom:970.771050px;}
.ya{bottom:972.341850px;}
.ybf{bottom:986.515800px;}
.y81{bottom:986.519700px;}
.y44{bottom:995.026050px;}
.y9{bottom:996.596850px;}
.ybe{bottom:1002.265800px;}
.y80{bottom:1010.774700px;}
.y43{bottom:1010.776050px;}
.y8{bottom:1012.346850px;}
.ybd{bottom:1026.520800px;}
.y7f{bottom:1026.524700px;}
.y42{bottom:1026.526050px;}
.y7{bottom:1028.096850px;}
.ybc{bottom:1042.270800px;}
.y7e{bottom:1042.274700px;}
.y6{bottom:1043.846850px;}
.y41{bottom:1050.781050px;}
.ybb{bottom:1058.020800px;}
.y7d{bottom:1058.024700px;}
.y40{bottom:1066.531050px;}
.y5{bottom:1068.101850px;}
.yba{bottom:1082.275800px;}
.y7c{bottom:1082.279700px;}
.y3f{bottom:1082.281050px;}
.y4{bottom:1083.851850px;}
.yb9{bottom:1098.025800px;}
.y7b{bottom:1098.029700px;}
.y3e{bottom:1098.031050px;}
.y3{bottom:1099.601850px;}
.yb8{bottom:1113.775800px;}
.y7a{bottom:1113.779700px;}
.y3d{bottom:1113.781050px;}
.y2{bottom:1115.351850px;}
.yb7{bottom:1129.525800px;}
.y79{bottom:1129.529700px;}
.y3c{bottom:1129.531050px;}
.yb6{bottom:1145.275800px;}
.y78{bottom:1145.279700px;}
.y3b{bottom:1145.281050px;}
.y1{bottom:1152.101850px;}
.y77{bottom:1197.584700px;}
.h6{height:43.260000px;}
.h2{height:48.300000px;}
.h3{height:49.320000px;}
.h4{height:49.336800px;}
.h7{height:49.364400px;}
.h5{height:49.371600px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:54.007050px;}
.x1{left:59.527500px;}
.x7{left:88.027050px;}
.x2{left:93.547500px;}
.x5{left:240.922050px;}
.x8{left:452.696850px;}
.x3{left:458.225100px;}
.x9{left:486.716850px;}
.x4{left:492.245100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.008000pt;}
.ls3{letter-spacing:0.014400pt;}
.ls0{letter-spacing:0.028267pt;}
.ls1{letter-spacing:0.028800pt;}
.ls5{letter-spacing:0.053333pt;}
.ws0{word-spacing:-58.666667pt;}
.ws3{word-spacing:-11.733333pt;}
.ws1{word-spacing:-11.680000pt;}
.ws2{word-spacing:0.000000pt;}
.ws4{word-spacing:0.640000pt;}
._d{margin-left:-12.528000pt;}
._21{margin-left:-11.184000pt;}
._11{margin-left:-7.344000pt;}
._17{margin-left:-6.090667pt;}
._12{margin-left:-4.965333pt;}
._14{margin-left:-3.944000pt;}
._2{margin-left:-2.400000pt;}
._0{margin-left:-0.920000pt;}
._4{width:1.114667pt;}
._7{width:2.506667pt;}
._9{width:3.498667pt;}
._5{width:4.906667pt;}
._3{width:5.834667pt;}
._a{width:6.832000pt;}
._e{width:7.829333pt;}
._1{width:8.784000pt;}
._6{width:9.802667pt;}
._8{width:10.730667pt;}
._c{width:12.834667pt;}
._13{width:14.002667pt;}
._10{width:15.677333pt;}
._f{width:16.618667pt;}
._15{width:18.149333pt;}
._b{width:19.184000pt;}
._22{width:20.181333pt;}
._18{width:21.952000pt;}
._16{width:23.098667pt;}
._19{width:23.997867pt;}
._23{width:25.488000pt;}
._20{width:26.437333pt;}
._1e{width:28.144000pt;}
._1f{width:29.370667pt;}
._28{width:30.821333pt;}
._27{width:32.000000pt;}
._1a{width:33.813333pt;}
._1b{width:35.546667pt;}
._29{width:36.832000pt;}
._1c{width:38.256000pt;}
._1d{width:39.448000pt;}
._24{width:41.858667pt;}
._25{width:52.170667pt;}
._26{width:53.184000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:61.333333pt;}
.y0{bottom:0.000000pt;}
.yb5{bottom:65.756267pt;}
.yb4{bottom:79.756267pt;}
.yb3{bottom:93.756267pt;}
.y76{bottom:93.759067pt;}
.y3a{bottom:94.027600pt;}
.yb2{bottom:107.756267pt;}
.y75{bottom:107.759067pt;}
.y39{bottom:108.027600pt;}
.y74{bottom:121.759067pt;}
.y38{bottom:122.027600pt;}
.yb1{bottom:129.316267pt;}
.y73{bottom:135.759067pt;}
.yb0{bottom:143.316267pt;}
.y37{bottom:143.587600pt;}
.y72{bottom:149.759067pt;}
.yaf{bottom:157.316267pt;}
.y36{bottom:157.587600pt;}
.yae{bottom:171.316267pt;}
.y71{bottom:171.319067pt;}
.y35{bottom:171.587600pt;}
.yad{bottom:185.316267pt;}
.y70{bottom:185.319067pt;}
.y34{bottom:185.587600pt;}
.y6f{bottom:199.319067pt;}
.y33{bottom:199.587600pt;}
.yac{bottom:206.876267pt;}
.y6e{bottom:213.319067pt;}
.y32{bottom:213.587600pt;}
.yab{bottom:220.876267pt;}
.y6d{bottom:227.319067pt;}
.yaa{bottom:234.876267pt;}
.y31{bottom:235.147600pt;}
.y6c{bottom:241.319067pt;}
.ya9{bottom:248.876267pt;}
.y30{bottom:256.707600pt;}
.ya8{bottom:262.876267pt;}
.y6b{bottom:262.879067pt;}
.y2f{bottom:270.707600pt;}
.y6a{bottom:276.879067pt;}
.ya7{bottom:284.436267pt;}
.y2e{bottom:284.707600pt;}
.y69{bottom:290.879067pt;}
.ya6{bottom:298.436267pt;}
.y2d{bottom:306.267600pt;}
.ya5{bottom:312.436267pt;}
.y68{bottom:312.439067pt;}
.y2c{bottom:320.267600pt;}
.ya4{bottom:326.436267pt;}
.y67{bottom:326.439067pt;}
.y2b{bottom:334.267600pt;}
.ya3{bottom:340.436267pt;}
.y66{bottom:340.439067pt;}
.y2a{bottom:355.827600pt;}
.ya2{bottom:361.996267pt;}
.y65{bottom:361.999067pt;}
.y29{bottom:369.827600pt;}
.ya1{bottom:375.996267pt;}
.y64{bottom:375.999067pt;}
.y28{bottom:383.827600pt;}
.ya0{bottom:389.996267pt;}
.y63{bottom:389.999067pt;}
.y27{bottom:397.827600pt;}
.y62{bottom:403.999067pt;}
.y9f{bottom:411.556267pt;}
.y26{bottom:419.387600pt;}
.y9e{bottom:425.556267pt;}
.y61{bottom:425.559067pt;}
.y25{bottom:433.387600pt;}
.y9d{bottom:439.556267pt;}
.y60{bottom:439.559067pt;}
.y24{bottom:447.387600pt;}
.y9c{bottom:453.556267pt;}
.y5f{bottom:453.559067pt;}
.y23{bottom:461.387600pt;}
.y5e{bottom:467.559067pt;}
.y9b{bottom:475.116267pt;}
.y5d{bottom:481.559067pt;}
.y22{bottom:482.947600pt;}
.y9a{bottom:489.116267pt;}
.y5c{bottom:495.547600pt;}
.y21{bottom:496.947600pt;}
.y99{bottom:510.676267pt;}
.y20{bottom:510.947600pt;}
.y5b{bottom:517.107600pt;}
.y98{bottom:524.676267pt;}
.y1f{bottom:524.947600pt;}
.y5a{bottom:531.107600pt;}
.y97{bottom:538.676267pt;}
.y1e{bottom:538.947600pt;}
.y59{bottom:545.107600pt;}
.y96{bottom:552.676267pt;}
.y1d{bottom:560.507600pt;}
.y58{bottom:566.667600pt;}
.y95{bottom:574.236267pt;}
.y1c{bottom:574.507600pt;}
.y57{bottom:580.667600pt;}
.y94{bottom:588.236267pt;}
.y1b{bottom:588.507600pt;}
.y56{bottom:594.667600pt;}
.y93{bottom:602.236267pt;}
.y55{bottom:608.667600pt;}
.y1a{bottom:610.067600pt;}
.y92{bottom:616.236267pt;}
.y54{bottom:622.667600pt;}
.y19{bottom:624.067600pt;}
.y91{bottom:630.236267pt;}
.y18{bottom:638.067600pt;}
.y53{bottom:644.227600pt;}
.y90{bottom:644.236267pt;}
.y8f{bottom:658.226400pt;}
.y52{bottom:658.227600pt;}
.y17{bottom:659.627600pt;}
.y51{bottom:672.227600pt;}
.y16{bottom:673.627600pt;}
.y8e{bottom:679.786400pt;}
.y8d{bottom:693.786400pt;}
.y50{bottom:693.787600pt;}
.y15{bottom:695.187600pt;}
.y8c{bottom:707.786400pt;}
.y4f{bottom:707.787600pt;}
.y14{bottom:709.187600pt;}
.yc9{bottom:721.782933pt;}
.y4e{bottom:721.787600pt;}
.y13{bottom:723.187600pt;}
.y8b{bottom:729.346400pt;}
.yc8{bottom:735.782933pt;}
.y4d{bottom:735.787600pt;}
.y12{bottom:737.187600pt;}
.y8a{bottom:743.346400pt;}
.yc7{bottom:749.782933pt;}
.y11{bottom:751.183867pt;}
.y89{bottom:757.346400pt;}
.y4c{bottom:757.347600pt;}
.yc6{bottom:771.342933pt;}
.y88{bottom:771.346400pt;}
.y4b{bottom:771.347600pt;}
.y10{bottom:772.743867pt;}
.yc5{bottom:785.342933pt;}
.y87{bottom:785.346400pt;}
.y4a{bottom:785.347600pt;}
.yf{bottom:786.743867pt;}
.yc4{bottom:799.342933pt;}
.y86{bottom:799.346400pt;}
.ye{bottom:800.743867pt;}
.y49{bottom:806.907600pt;}
.yc3{bottom:813.342933pt;}
.y85{bottom:813.346400pt;}
.yd{bottom:814.743867pt;}
.y48{bottom:820.907600pt;}
.yc2{bottom:834.902933pt;}
.y84{bottom:834.906400pt;}
.y47{bottom:834.907600pt;}
.yc{bottom:836.303867pt;}
.yc1{bottom:848.902933pt;}
.y83{bottom:848.906400pt;}
.y46{bottom:848.907600pt;}
.yb{bottom:850.303867pt;}
.yc0{bottom:862.902933pt;}
.y82{bottom:862.906400pt;}
.y45{bottom:862.907600pt;}
.ya{bottom:864.303867pt;}
.ybf{bottom:876.902933pt;}
.y81{bottom:876.906400pt;}
.y44{bottom:884.467600pt;}
.y9{bottom:885.863867pt;}
.ybe{bottom:890.902933pt;}
.y80{bottom:898.466400pt;}
.y43{bottom:898.467600pt;}
.y8{bottom:899.863867pt;}
.ybd{bottom:912.462933pt;}
.y7f{bottom:912.466400pt;}
.y42{bottom:912.467600pt;}
.y7{bottom:913.863867pt;}
.ybc{bottom:926.462933pt;}
.y7e{bottom:926.466400pt;}
.y6{bottom:927.863867pt;}
.y41{bottom:934.027600pt;}
.ybb{bottom:940.462933pt;}
.y7d{bottom:940.466400pt;}
.y40{bottom:948.027600pt;}
.y5{bottom:949.423867pt;}
.yba{bottom:962.022933pt;}
.y7c{bottom:962.026400pt;}
.y3f{bottom:962.027600pt;}
.y4{bottom:963.423867pt;}
.yb9{bottom:976.022933pt;}
.y7b{bottom:976.026400pt;}
.y3e{bottom:976.027600pt;}
.y3{bottom:977.423867pt;}
.yb8{bottom:990.022933pt;}
.y7a{bottom:990.026400pt;}
.y3d{bottom:990.027600pt;}
.y2{bottom:991.423867pt;}
.yb7{bottom:1004.022933pt;}
.y79{bottom:1004.026400pt;}
.y3c{bottom:1004.027600pt;}
.yb6{bottom:1018.022933pt;}
.y78{bottom:1018.026400pt;}
.y3b{bottom:1018.027600pt;}
.y1{bottom:1024.090533pt;}
.y77{bottom:1064.519733pt;}
.h6{height:38.453333pt;}
.h2{height:42.933333pt;}
.h3{height:43.840000pt;}
.h4{height:43.854933pt;}
.h7{height:43.879467pt;}
.h5{height:43.885867pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:48.006267pt;}
.x1{left:52.913333pt;}
.x7{left:78.246267pt;}
.x2{left:83.153333pt;}
.x5{left:214.152933pt;}
.x8{left:402.397200pt;}
.x3{left:407.311200pt;}
.x9{left:432.637200pt;}
.x4{left:437.551200pt;}
}




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