
    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_0ce48209691613496a6c82a1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_397776ac88ac11ef6badec58.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_036608d0f178dcf093abb429.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_9f100c8efd6c4a8e95042060.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_9c5c44b6dc99bb41ec7166a9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_88a793019fc6cf9ec8b69128.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_c0483d45468c651843f0757b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.741699;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:23.039977px;}
.v2{vertical-align:26.639923px;}
.ls4{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.282235px;}
.ls2{letter-spacing:0.282370px;}
.ls3{letter-spacing:0.282505px;}
.ls5{letter-spacing:0.479362px;}
.ls1{letter-spacing:1.002389px;}
.ls0{letter-spacing:2.017768px;}
.ls8{letter-spacing:20.486927px;}
.ls7{letter-spacing:33.147170px;}
.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:-23.302464px;}
.ws5{word-spacing:-20.499188px;}
.ws2{word-spacing:-17.520638px;}
.ws4{word-spacing:-14.571576px;}
.ws6{word-spacing:-14.542200px;}
.ws1{word-spacing:-11.738813px;}
.ws3{word-spacing:0.000000px;}
._1{margin-left:-1.310173px;}
._2{width:1.391877px;}
._0{width:3.019542px;}
._3{width:4.545237px;}
._4{width:5.783179px;}
._5{width:7.020027px;}
._a{width:8.234070px;}
._f{width:9.732440px;}
._17{width:10.848820px;}
._e{width:12.267184px;}
._9{width:13.626471px;}
._8{width:15.081710px;}
._16{width:16.130758px;}
._12{width:19.227997px;}
._10{width:20.266176px;}
._11{width:21.478577px;}
._c{width:22.822657px;}
._b{width:23.828615px;}
._d{width:25.136284px;}
._19{width:28.583004px;}
._15{width:29.610699px;}
._18{width:31.595458px;}
._1b{width:32.846772px;}
._1a{width:34.085305px;}
._13{width:37.753689px;}
._14{width:39.372076px;}
._1c{width:40.499035px;}
._7{width:211.898803px;}
._6{width:497.460712px;}
.fc5{color:rgb(112,48,160);}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc6{color:rgb(38,38,38);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.606595px;}
.fs6{font-size:23.127300px;}
.fs8{font-size:40.647960px;}
.fs4{font-size:46.955250px;}
.fs1{font-size:58.168800px;}
.fs0{font-size:64.476000px;}
.fs3{font-size:70.082550px;}
.fs2{font-size:81.996750px;}
.fs5{font-size:93.209855px;}
.y0{bottom:0.000000px;}
.y7e{bottom:3.239972px;}
.y80{bottom:3.240004px;}
.y7b{bottom:3.240006px;}
.y16{bottom:3.779984px;}
.y85{bottom:3.780018px;}
.y2f{bottom:4.320030px;}
.y3{bottom:95.580093px;}
.y1{bottom:109.800110px;}
.y2{bottom:114.120072px;}
.y2e{bottom:130.500068px;}
.y2b{bottom:154.620072px;}
.y55{bottom:164.160049px;}
.y73{bottom:174.960091px;}
.y2a{bottom:184.860077px;}
.y54{bottom:194.400055px;}
.y72{bottom:205.200096px;}
.y29{bottom:214.920043px;}
.y53{bottom:226.800041px;}
.y71{bottom:235.440033px;}
.y28{bottom:245.340088px;}
.y52{bottom:259.740074px;}
.y70{bottom:265.680039px;}
.y27{bottom:275.400055px;}
.y51{bottom:290.160049px;}
.y6f{bottom:295.920043px;}
.y26{bottom:305.640060px;}
.y50{bottom:320.220085px;}
.y6e{bottom:328.320099px;}
.y25{bottom:335.880066px;}
.y4f{bottom:350.640060px;}
.y6d{bottom:361.260064px;}
.y24{bottom:366.120072px;}
.y4e{bottom:380.700096px;}
.y6c{bottom:391.500068px;}
.y23{bottom:396.360077px;}
.y4d{bottom:410.940033px;}
.y6b{bottom:421.740074px;}
.y22{bottom:426.600083px;}
.y4c{bottom:441.180039px;}
.y6a{bottom:451.980079px;}
.y21{bottom:456.840088px;}
.y4b{bottom:471.420043px;}
.y69{bottom:482.220085px;}
.y20{bottom:487.080093px;}
.y4a{bottom:501.660049px;}
.y68{bottom:512.460091px;}
.y1f{bottom:517.140060px;}
.y49{bottom:531.900055px;}
.y67{bottom:542.520058px;}
.y1e{bottom:547.560036px;}
.y48{bottom:561.960091px;}
.y66{bottom:575.100083px;}
.y1d{bottom:577.620072px;}
.y47{bottom:592.380066px;}
.y1c{bottom:607.860077px;}
.y65{bottom:608.040047px;}
.y46{bottom:622.440033px;}
.y1b{bottom:638.100083px;}
.y64{bottom:638.460091px;}
.y45{bottom:652.860077px;}
.y1a{bottom:668.340088px;}
.y63{bottom:668.520058px;}
.y44{bottom:682.920043px;}
.y19{bottom:698.580059px;}
.y62{bottom:698.940067px;}
.y43{bottom:713.160049px;}
.y18{bottom:728.820065px;}
.y61{bottom:729.000068px;}
.y42{bottom:743.400055px;}
.y17{bottom:748.980079px;}
.y60{bottom:759.240074px;}
.y15{bottom:762.480079px;}
.y41{bottom:773.640060px;}
.y14{bottom:786.420078px;}
.y5f{bottom:789.480079px;}
.y40{bottom:803.880066px;}
.y13{bottom:806.580059px;}
.y5e{bottom:819.720051px;}
.y12{bottom:826.740074px;}
.y3f{bottom:834.120072px;}
.y77{bottom:835.560070px;}
.y11{bottom:846.900055px;}
.y5d{bottom:849.960056px;}
.y84{bottom:853.020058px;}
.y83{bottom:856.800076px;}
.y3e{bottom:864.180073px;}
.y10{bottom:867.060070px;}
.y82{bottom:873.540081px;}
.y5c{bottom:882.360077px;}
.yf{bottom:887.220051px;}
.y81{bottom:890.460056px;}
.y3d{bottom:894.600083px;}
.y7d{bottom:905.040081px;}
.ye{bottom:907.380066px;}
.y7f{bottom:908.280052px;}
.y5b{bottom:915.480079px;}
.y7a{bottom:922.860077px;}
.y3c{bottom:924.660049px;}
.y7c{bottom:926.100083px;}
.yd{bottom:927.540081px;}
.y79{bottom:943.920078px;}
.y5a{bottom:945.540081px;}
.yc{bottom:948.960056px;}
.y3b{bottom:955.080059px;}
.y78{bottom:957.600083px;}
.yb{bottom:975.780069px;}
.y3a{bottom:987.480063px;}
.ya{bottom:997.560070px;}
.y59{bottom:1006.020058px;}
.y39{bottom:1006.560070px;}
.y9{bottom:1014.840070px;}
.y38{bottom:1021.860060px;}
.y8{bottom:1035.000068px;}
.y58{bottom:1036.260064px;}
.y37{bottom:1041.120072px;}
.y7{bottom:1054.980063px;}
.y36{bottom:1056.960074px;}
.y76{bottom:1061.100065px;}
.y57{bottom:1066.500068px;}
.y35{bottom:1070.640060px;}
.y6{bottom:1075.140060px;}
.y34{bottom:1078.020058px;}
.y33{bottom:1085.400072px;}
.y5{bottom:1091.520058px;}
.y32{bottom:1092.780069px;}
.y75{bottom:1094.040064px;}
.y56{bottom:1096.740074px;}
.y31{bottom:1100.160067px;}
.y30{bottom:1107.540064px;}
.y74{bottom:1124.100065px;}
.y4{bottom:1126.980063px;}
.y2d{bottom:1147.500068px;}
.y2c{bottom:1166.580068px;}
.h10{height:3.914761px;}
.hf{height:16.148457px;}
.h1a{height:16.379997px;}
.h1d{height:16.379998px;}
.h1e{height:16.380031px;}
.h1f{height:19.259994px;}
.he{height:19.439965px;}
.hc{height:19.439999px;}
.h11{height:28.382121px;}
.h8{height:32.786136px;}
.h1c{height:41.041951px;}
.h1b{height:42.348477px;}
.h20{height:42.462088px;}
.h4{height:45.019863px;}
.h19{height:47.205345px;}
.h6{height:48.934593px;}
.h7{height:49.447893px;}
.h16{height:51.022013px;}
.h18{height:51.158893px;}
.h3{height:53.142328px;}
.ha{height:56.170024px;}
.hd{height:56.873632px;}
.h12{height:57.253590px;}
.hb{height:57.763352px;}
.h5{height:57.854152px;}
.h13{height:59.426060px;}
.h14{height:59.426199px;}
.h15{height:59.426334px;}
.h17{height:59.695876px;}
.h2{height:64.129693px;}
.h9{height:65.765742px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w3{width:4.500000px;}
.wa{width:7.200028px;}
.w8{width:8.100013px;}
.w5{width:8.819996px;}
.w9{width:10.439999px;}
.w2{width:64.980011px;}
.w6{width:104.759996px;}
.w4{width:135.899987px;}
.w7{width:237.060001px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x1b{left:-9.180004px;}
.x0{left:0.000000px;}
.x1{left:105.120002px;}
.xa{left:113.219999px;}
.xc{left:115.379998px;}
.xe{left:117.540003px;}
.x16{left:131.400003px;}
.x7{left:137.879998px;}
.x17{left:157.680005px;}
.xb{left:194.039996px;}
.x13{left:209.699993px;}
.xf{left:338.939999px;}
.xd{left:341.279983px;}
.x8{left:402.660015px;}
.x10{left:403.920010px;}
.x11{left:408.240006px;}
.x9{left:446.759994px;}
.x1a{left:462.959988px;}
.x19{left:473.399987px;}
.x12{left:543.959988px;}
.x5{left:595.620002px;}
.x6{left:602.820030px;}
.x2{left:642.419975px;}
.x4{left:668.700027px;}
.x18{left:672.480011px;}
.x1c{left:754.019989px;}
.x14{left:757.799973px;}
.x15{left:765.720017px;}
.x3{left:788.399987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.479980pt;}
.v2{vertical-align:23.679932pt;}
.ls4{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.250876pt;}
.ls2{letter-spacing:0.250996pt;}
.ls3{letter-spacing:0.251116pt;}
.ls5{letter-spacing:0.426100pt;}
.ls1{letter-spacing:0.891012pt;}
.ls0{letter-spacing:1.793572pt;}
.ls8{letter-spacing:18.210602pt;}
.ls7{letter-spacing:29.464151pt;}
.ws0{word-spacing:-20.713301pt;}
.ws5{word-spacing:-18.221500pt;}
.ws2{word-spacing:-15.573900pt;}
.ws4{word-spacing:-12.952512pt;}
.ws6{word-spacing:-12.926400pt;}
.ws1{word-spacing:-10.434500pt;}
.ws3{word-spacing:0.000000pt;}
._1{margin-left:-1.164598pt;}
._2{width:1.237224pt;}
._0{width:2.684037pt;}
._3{width:4.040210pt;}
._4{width:5.140604pt;}
._5{width:6.240024pt;}
._a{width:7.319174pt;}
._f{width:8.651058pt;}
._17{width:9.643396pt;}
._e{width:10.904163pt;}
._9{width:12.112419pt;}
._8{width:13.405964pt;}
._16{width:14.338452pt;}
._12{width:17.091553pt;}
._10{width:18.014379pt;}
._11{width:19.092069pt;}
._c{width:20.286806pt;}
._b{width:21.180991pt;}
._d{width:22.343363pt;}
._19{width:25.407114pt;}
._15{width:26.320621pt;}
._18{width:28.084852pt;}
._1b{width:29.197131pt;}
._1a{width:30.298049pt;}
._13{width:33.558834pt;}
._14{width:34.997401pt;}
._1c{width:35.999142pt;}
._7{width:188.354492pt;}
._6{width:442.187300pt;}
.fs7{font-size:4.983640pt;}
.fs6{font-size:20.557600pt;}
.fs8{font-size:36.131520pt;}
.fs4{font-size:41.738000pt;}
.fs1{font-size:51.705600pt;}
.fs0{font-size:57.312000pt;}
.fs3{font-size:62.295600pt;}
.fs2{font-size:72.886000pt;}
.fs5{font-size:82.853204pt;}
.y0{bottom:0.000000pt;}
.y7e{bottom:2.879975pt;}
.y80{bottom:2.880004pt;}
.y7b{bottom:2.880005pt;}
.y16{bottom:3.359986pt;}
.y85{bottom:3.360016pt;}
.y2f{bottom:3.840027pt;}
.y3{bottom:84.960083pt;}
.y1{bottom:97.600098pt;}
.y2{bottom:101.440064pt;}
.y2e{bottom:116.000061pt;}
.y2b{bottom:137.440064pt;}
.y55{bottom:145.920044pt;}
.y73{bottom:155.520081pt;}
.y2a{bottom:164.320069pt;}
.y54{bottom:172.800049pt;}
.y72{bottom:182.400086pt;}
.y29{bottom:191.040039pt;}
.y53{bottom:201.600037pt;}
.y71{bottom:209.280030pt;}
.y28{bottom:218.080079pt;}
.y52{bottom:230.880066pt;}
.y70{bottom:236.160035pt;}
.y27{bottom:244.800049pt;}
.y51{bottom:257.920044pt;}
.y6f{bottom:263.040039pt;}
.y26{bottom:271.680054pt;}
.y50{bottom:284.640076pt;}
.y6e{bottom:291.840088pt;}
.y25{bottom:298.560059pt;}
.y4f{bottom:311.680054pt;}
.y6d{bottom:321.120057pt;}
.y24{bottom:325.440064pt;}
.y4e{bottom:338.400086pt;}
.y6c{bottom:348.000061pt;}
.y23{bottom:352.320069pt;}
.y4d{bottom:365.280030pt;}
.y6b{bottom:374.880066pt;}
.y22{bottom:379.200074pt;}
.y4c{bottom:392.160035pt;}
.y6a{bottom:401.760071pt;}
.y21{bottom:406.080079pt;}
.y4b{bottom:419.040039pt;}
.y69{bottom:428.640076pt;}
.y20{bottom:432.960083pt;}
.y4a{bottom:445.920044pt;}
.y68{bottom:455.520081pt;}
.y1f{bottom:459.680054pt;}
.y49{bottom:472.800049pt;}
.y67{bottom:482.240052pt;}
.y1e{bottom:486.720032pt;}
.y48{bottom:499.520081pt;}
.y66{bottom:511.200074pt;}
.y1d{bottom:513.440064pt;}
.y47{bottom:526.560059pt;}
.y1c{bottom:540.320069pt;}
.y65{bottom:540.480042pt;}
.y46{bottom:553.280030pt;}
.y1b{bottom:567.200074pt;}
.y64{bottom:567.520081pt;}
.y45{bottom:580.320069pt;}
.y1a{bottom:594.080079pt;}
.y63{bottom:594.240052pt;}
.y44{bottom:607.040039pt;}
.y19{bottom:620.960053pt;}
.y62{bottom:621.280060pt;}
.y43{bottom:633.920044pt;}
.y18{bottom:647.840058pt;}
.y61{bottom:648.000061pt;}
.y42{bottom:660.800049pt;}
.y17{bottom:665.760071pt;}
.y60{bottom:674.880066pt;}
.y15{bottom:677.760071pt;}
.y41{bottom:687.680054pt;}
.y14{bottom:699.040070pt;}
.y5f{bottom:701.760071pt;}
.y40{bottom:714.560059pt;}
.y13{bottom:716.960053pt;}
.y5e{bottom:728.640046pt;}
.y12{bottom:734.880066pt;}
.y3f{bottom:741.440064pt;}
.y77{bottom:742.720063pt;}
.y11{bottom:752.800049pt;}
.y5d{bottom:755.520050pt;}
.y84{bottom:758.240052pt;}
.y83{bottom:761.600068pt;}
.y3e{bottom:768.160065pt;}
.y10{bottom:770.720063pt;}
.y82{bottom:776.480072pt;}
.y5c{bottom:784.320069pt;}
.yf{bottom:788.640046pt;}
.y81{bottom:791.520050pt;}
.y3d{bottom:795.200074pt;}
.y7d{bottom:804.480072pt;}
.ye{bottom:806.560059pt;}
.y7f{bottom:807.360047pt;}
.y5b{bottom:813.760071pt;}
.y7a{bottom:820.320069pt;}
.y3c{bottom:821.920044pt;}
.y7c{bottom:823.200074pt;}
.yd{bottom:824.480072pt;}
.y79{bottom:839.040070pt;}
.y5a{bottom:840.480072pt;}
.yc{bottom:843.520050pt;}
.y3b{bottom:848.960053pt;}
.y78{bottom:851.200074pt;}
.yb{bottom:867.360062pt;}
.y3a{bottom:877.760056pt;}
.ya{bottom:886.720063pt;}
.y59{bottom:894.240052pt;}
.y39{bottom:894.720063pt;}
.y9{bottom:902.080063pt;}
.y38{bottom:908.320054pt;}
.y8{bottom:920.000061pt;}
.y58{bottom:921.120057pt;}
.y37{bottom:925.440064pt;}
.y7{bottom:937.760056pt;}
.y36{bottom:939.520066pt;}
.y76{bottom:943.200058pt;}
.y57{bottom:948.000061pt;}
.y35{bottom:951.680054pt;}
.y6{bottom:955.680054pt;}
.y34{bottom:958.240052pt;}
.y33{bottom:964.800064pt;}
.y5{bottom:970.240052pt;}
.y32{bottom:971.360062pt;}
.y75{bottom:972.480057pt;}
.y56{bottom:974.880066pt;}
.y31{bottom:977.920060pt;}
.y30{bottom:984.480057pt;}
.y74{bottom:999.200058pt;}
.y4{bottom:1001.760056pt;}
.y2d{bottom:1020.000061pt;}
.y2c{bottom:1036.960061pt;}
.h10{height:3.479788pt;}
.hf{height:14.354184pt;}
.h1a{height:14.559997pt;}
.h1d{height:14.559998pt;}
.h1e{height:14.560028pt;}
.h1f{height:17.119995pt;}
.he{height:17.279969pt;}
.hc{height:17.279999pt;}
.h11{height:25.228552pt;}
.h8{height:29.143232pt;}
.h1c{height:36.481734pt;}
.h1b{height:37.643091pt;}
.h20{height:37.744078pt;}
.h4{height:40.017656pt;}
.h19{height:41.960306pt;}
.h6{height:43.497416pt;}
.h7{height:43.953683pt;}
.h16{height:45.352900pt;}
.h18{height:45.474571pt;}
.h3{height:47.237625pt;}
.ha{height:49.928911pt;}
.hd{height:50.554339pt;}
.h12{height:50.892080pt;}
.hb{height:51.345202pt;}
.h5{height:51.425913pt;}
.h13{height:52.823164pt;}
.h14{height:52.823288pt;}
.h15{height:52.823408pt;}
.h17{height:53.063001pt;}
.h2{height:57.004172pt;}
.h9{height:58.458437pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w3{width:4.000000pt;}
.wa{width:6.400025pt;}
.w8{width:7.200012pt;}
.w5{width:7.839996pt;}
.w9{width:9.279999pt;}
.w2{width:57.760010pt;}
.w6{width:93.119996pt;}
.w4{width:120.799988pt;}
.w7{width:210.720001pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x1b{left:-8.160004pt;}
.x0{left:0.000000pt;}
.x1{left:93.440002pt;}
.xa{left:100.639999pt;}
.xc{left:102.559998pt;}
.xe{left:104.480003pt;}
.x16{left:116.800003pt;}
.x7{left:122.559998pt;}
.x17{left:140.160004pt;}
.xb{left:172.479996pt;}
.x13{left:186.399994pt;}
.xf{left:301.279999pt;}
.xd{left:303.359985pt;}
.x8{left:357.920013pt;}
.x10{left:359.040009pt;}
.x11{left:362.880005pt;}
.x9{left:397.119995pt;}
.x1a{left:411.519989pt;}
.x19{left:420.799988pt;}
.x12{left:483.519989pt;}
.x5{left:529.440002pt;}
.x6{left:535.840027pt;}
.x2{left:571.039978pt;}
.x4{left:594.400024pt;}
.x18{left:597.760010pt;}
.x1c{left:670.239990pt;}
.x14{left:673.599976pt;}
.x15{left:680.640015pt;}
.x3{left:700.799988pt;}
}




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