
    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_ba3e53afe864aa3290c68a85.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.916992;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_882ebb9aa8337f8089926974.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.163086;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_5f6110a5ea574e1a4baa1574.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d083ae6e3be1d240ef996cc3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.970703;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_938ca3c9ef3a4a8fda3db524.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946777;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_b0ef92316d579db5d9999372.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;}
.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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:11.015273px;}
.ls2{letter-spacing:32.615251px;}
.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:-18.000676px;}
.ws0{word-spacing:-10.902647px;}
.ws2{word-spacing:0.000000px;}
._23{margin-left:-5.244669px;}
._1d{margin-left:-4.118185px;}
._a{margin-left:-2.577272px;}
._1{margin-left:-1.007997px;}
._0{width:1.151997px;}
._8{width:2.260819px;}
._9{width:3.780986px;}
._3{width:4.988749px;}
._2{width:6.398221px;}
._4{width:7.476408px;}
._b{width:8.619740px;}
._c{width:9.727115px;}
._5{width:11.664438px;}
._6{width:12.669864px;}
._f{width:13.813068px;}
._d{width:15.212775px;}
._7{width:16.711424px;}
._24{width:19.310507px;}
._14{width:20.924380px;}
._20{width:22.235944px;}
._1c{width:23.315938px;}
._18{width:24.622394px;}
._1e{width:25.920974px;}
._1f{width:29.444887px;}
._19{width:30.533928px;}
._21{width:31.905401px;}
._16{width:45.422175px;}
._17{width:46.444276px;}
._e{width:48.245233px;}
._22{width:50.713013px;}
._11{width:53.016773px;}
._10{width:54.206224px;}
._25{width:61.996016px;}
._12{width:66.011292px;}
._13{width:67.159685px;}
._15{width:68.370781px;}
._1a{width:71.496435px;}
._1b{width:72.955334px;}
._26{width:76.961047px;}
._39{width:87.700419px;}
._3a{width:89.332293px;}
._29{width:131.044922px;}
._27{width:135.211235px;}
._2c{width:137.371316px;}
._31{width:149.045598px;}
._36{width:190.722226px;}
._38{width:192.882307px;}
._2f{width:210.745447px;}
._28{width:213.189039px;}
._2d{width:214.579591px;}
._30{width:232.580267px;}
._34{width:239.048979px;}
._37{width:250.564068px;}
._2b{width:257.049655px;}
._33{width:364.767388px;}
._2e{width:430.894560px;}
._35{width:528.188220px;}
._32{width:590.606965px;}
._2a{width:623.747897px;}
._3b{width:848.738824px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.241800px;}
.fs3{font-size:59.762250px;}
.fs4{font-size:66.242700px;}
.fs2{font-size:71.999814px;}
.fs0{font-size:72.002705px;}
.y0{bottom:0.000000px;}
.y9{bottom:0.900055px;}
.y5{bottom:3.240005px;}
.y79{bottom:4.319997px;}
.y8{bottom:24.120072px;}
.y7{bottom:39.240005px;}
.y6{bottom:53.820099px;}
.y3{bottom:57.780121px;}
.y4{bottom:65.340088px;}
.y2{bottom:78.480011px;}
.y72{bottom:106.020127px;}
.y3d{bottom:109.440033px;}
.y70{bottom:126.720085px;}
.y3c{bottom:130.140060px;}
.y6f{bottom:147.420043px;}
.y3b{bottom:150.840088px;}
.ya3{bottom:160.560036px;}
.y6e{bottom:168.120072px;}
.y3a{bottom:171.540047px;}
.ya2{bottom:181.260064px;}
.y6d{bottom:188.820099px;}
.y39{bottom:192.240074px;}
.ya1{bottom:201.600083px;}
.y6c{bottom:209.520058px;}
.y38{bottom:212.940033px;}
.ya0{bottom:222.300041px;}
.y6b{bottom:230.220085px;}
.y37{bottom:233.640060px;}
.y9f{bottom:243.360077px;}
.y6a{bottom:250.920043px;}
.y36{bottom:254.340088px;}
.y9e{bottom:264.060036px;}
.y69{bottom:271.620072px;}
.y35{bottom:275.040047px;}
.y9d{bottom:284.760064px;}
.y68{bottom:292.320099px;}
.y34{bottom:295.740074px;}
.y9c{bottom:305.460091px;}
.y67{bottom:313.020058px;}
.y33{bottom:316.440033px;}
.y9b{bottom:326.160049px;}
.y66{bottom:333.720085px;}
.y32{bottom:337.140060px;}
.y9a{bottom:346.860077px;}
.y65{bottom:354.420043px;}
.y31{bottom:357.840088px;}
.y99{bottom:367.560036px;}
.y64{bottom:375.120072px;}
.y30{bottom:378.540047px;}
.y98{bottom:388.260064px;}
.y63{bottom:395.820099px;}
.y2f{bottom:399.240074px;}
.y97{bottom:408.960091px;}
.y62{bottom:416.520058px;}
.y2e{bottom:419.940033px;}
.y96{bottom:429.660049px;}
.y61{bottom:437.220085px;}
.y2d{bottom:440.640060px;}
.y95{bottom:450.360077px;}
.y60{bottom:457.920043px;}
.y2c{bottom:461.340088px;}
.y94{bottom:471.060036px;}
.y5f{bottom:478.620072px;}
.y2b{bottom:482.040047px;}
.y93{bottom:491.760064px;}
.y5e{bottom:499.320099px;}
.y2a{bottom:502.740074px;}
.y92{bottom:512.460091px;}
.y5d{bottom:520.020058px;}
.y29{bottom:523.440033px;}
.y91{bottom:533.160049px;}
.y5c{bottom:540.720085px;}
.y28{bottom:544.140060px;}
.y90{bottom:553.860077px;}
.y5b{bottom:561.420043px;}
.y27{bottom:564.840088px;}
.y8f{bottom:574.560036px;}
.y5a{bottom:581.760064px;}
.y71{bottom:582.120072px;}
.y26{bottom:585.540047px;}
.y8e{bottom:595.260064px;}
.y59{bottom:602.820099px;}
.y25{bottom:606.240074px;}
.y8d{bottom:615.960091px;}
.ya4{bottom:623.160049px;}
.y58{bottom:623.520058px;}
.y24{bottom:626.940033px;}
.y8c{bottom:636.660049px;}
.y57{bottom:644.220085px;}
.y23{bottom:647.640060px;}
.y8b{bottom:657.360077px;}
.y56{bottom:664.920043px;}
.y22{bottom:668.340088px;}
.y8a{bottom:678.060036px;}
.y55{bottom:685.620072px;}
.y21{bottom:689.040081px;}
.y89{bottom:698.760064px;}
.y54{bottom:706.320065px;}
.y20{bottom:709.740074px;}
.y88{bottom:719.460056px;}
.y53{bottom:727.020058px;}
.y1f{bottom:730.440067px;}
.y87{bottom:740.160049px;}
.y52{bottom:747.720051px;}
.y1e{bottom:751.140060px;}
.y86{bottom:760.860077px;}
.y51{bottom:768.420078px;}
.y1d{bottom:771.840054px;}
.y85{bottom:781.560070px;}
.y50{bottom:789.120072px;}
.y1c{bottom:792.540081px;}
.y84{bottom:802.260064px;}
.y4f{bottom:809.820065px;}
.y1b{bottom:812.520058px;}
.y83{bottom:822.960056px;}
.y1a{bottom:829.800076px;}
.y4e{bottom:830.520058px;}
.y82{bottom:843.660049px;}
.y19{bottom:847.080059px;}
.y4d{bottom:851.220051px;}
.y18{bottom:865.080059px;}
.y4c{bottom:871.920078px;}
.y17{bottom:885.780052px;}
.y4b{bottom:892.620072px;}
.y16{bottom:906.480079px;}
.y81{bottom:907.200061px;}
.y4a{bottom:913.320065px;}
.y15{bottom:926.820065px;}
.y80{bottom:928.620072px;}
.y49{bottom:934.020058px;}
.y14{bottom:947.880066px;}
.y7f{bottom:950.220051px;}
.y48{bottom:954.720051px;}
.y13{bottom:968.580059px;}
.y7e{bottom:971.640060px;}
.y47{bottom:975.420061px;}
.y12{bottom:988.920061px;}
.y7d{bottom:993.060070px;}
.y46{bottom:996.120072px;}
.y11{bottom:1009.620072px;}
.y7c{bottom:1014.480063px;}
.y45{bottom:1016.820065px;}
.y10{bottom:1030.320065px;}
.y7b{bottom:1035.900072px;}
.y44{bottom:1037.520058px;}
.yf{bottom:1051.020058px;}
.y7a{bottom:1057.320065px;}
.y43{bottom:1058.220068px;}
.ye{bottom:1071.720068px;}
.y78{bottom:1073.700061px;}
.y77{bottom:1078.020058px;}
.y42{bottom:1078.920061px;}
.yd{bottom:1092.240074px;}
.y76{bottom:1098.720068px;}
.y41{bottom:1099.620072px;}
.yc{bottom:1112.940067px;}
.y75{bottom:1119.420069px;}
.y40{bottom:1120.320065px;}
.yb{bottom:1136.159694px;}
.y74{bottom:1140.660067px;}
.y3f{bottom:1141.020066px;}
.ya{bottom:1160.461384px;}
.y73{bottom:1161.360068px;}
.y3e{bottom:1161.720068px;}
.y1{bottom:1193.580068px;}
.h5{height:11.700027px;}
.h3{height:14.579955px;}
.hc{height:20.520007px;}
.h6{height:33.825793px;}
.hb{height:41.903609px;}
.h4{height:47.982689px;}
.h2{height:50.486271px;}
.ha{height:52.173835px;}
.hd{height:52.419938px;}
.h9{height:52.630883px;}
.h7{height:62.261558px;}
.h8{height:62.264057px;}
.he{height:65.886904px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w4{width:5.399987px;}
.w3{width:7.019989px;}
.w5{width:8.279983px;}
.w2{width:53.100015px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.959997px;}
.x8{left:91.977305px;}
.x22{left:93.599997px;}
.x17{left:94.860000px;}
.xd{left:107.099997px;}
.x25{left:111.780001px;}
.xb{left:126.000000px;}
.x14{left:138.060001px;}
.x16{left:180.900003px;}
.x19{left:264.960005px;}
.xc{left:269.099997px;}
.x18{left:289.980011px;}
.x23{left:348.300007px;}
.x1a{left:351.899987px;}
.x9{left:374.395536px;}
.xe{left:402.300007px;}
.x1b{left:423.720017px;}
.x2{left:432.899987px;}
.xa{left:446.399987px;}
.xf{left:453.779983px;}
.x11{left:520.740006px;}
.x10{left:522.180005px;}
.x12{left:559.259994px;}
.x1c{left:583.559967px;}
.x24{left:618.299973px;}
.x1d{left:671.759994px;}
.x1f{left:693.360008px;}
.x20{left:697.500000px;}
.x21{left:707.220017px;}
.x1e{left:711.000000px;}
.x6{left:746.279983px;}
.x5{left:751.139992px;}
.x15{left:753.299973px;}
.x3{left:759.779983px;}
.x7{left:786.240006px;}
.x13{left:807.840019px;}
.x4{left:812.879998px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:9.791354pt;}
.ls2{letter-spacing:28.991334pt;}
.ws1{word-spacing:-16.000601pt;}
.ws0{word-spacing:-9.691242pt;}
.ws2{word-spacing:0.000000pt;}
._23{margin-left:-4.661928pt;}
._1d{margin-left:-3.660609pt;}
._a{margin-left:-2.290908pt;}
._1{margin-left:-0.895998pt;}
._0{width:1.023997pt;}
._8{width:2.009616pt;}
._9{width:3.360876pt;}
._3{width:4.434443pt;}
._2{width:5.687307pt;}
._4{width:6.645696pt;}
._b{width:7.661991pt;}
._c{width:8.646325pt;}
._5{width:10.368389pt;}
._6{width:11.262101pt;}
._f{width:12.278283pt;}
._d{width:13.522467pt;}
._7{width:14.854599pt;}
._24{width:17.164895pt;}
._14{width:18.599449pt;}
._20{width:19.765283pt;}
._1c{width:20.725278pt;}
._18{width:21.886572pt;}
._1e{width:23.040865pt;}
._1f{width:26.173233pt;}
._19{width:27.141270pt;}
._21{width:28.360356pt;}
._16{width:40.375267pt;}
._17{width:41.283801pt;}
._e{width:42.884652pt;}
._22{width:45.078234pt;}
._11{width:47.126020pt;}
._10{width:48.183310pt;}
._25{width:55.107570pt;}
._12{width:58.676704pt;}
._13{width:59.697497pt;}
._15{width:60.774028pt;}
._1a{width:63.552387pt;}
._1b{width:64.849186pt;}
._26{width:68.409820pt;}
._39{width:77.955928pt;}
._3a{width:79.406483pt;}
._29{width:116.484375pt;}
._27{width:120.187764pt;}
._2c{width:122.107837pt;}
._31{width:132.484976pt;}
._36{width:169.530868pt;}
._38{width:171.450940pt;}
._2f{width:187.329286pt;}
._28{width:189.501368pt;}
._2d{width:190.737414pt;}
._30{width:206.738015pt;}
._34{width:212.487981pt;}
._37{width:222.723616pt;}
._2b{width:228.488582pt;}
._33{width:324.237679pt;}
._2e{width:383.017387pt;}
._35{width:469.500640pt;}
._32{width:524.983969pt;}
._2a{width:554.442575pt;}
._3b{width:754.434510pt;}
.fs1{font-size:42.881600pt;}
.fs3{font-size:53.122000pt;}
.fs4{font-size:58.882400pt;}
.fs2{font-size:63.999835pt;}
.fs0{font-size:64.002404pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:0.800049pt;}
.y5{bottom:2.880004pt;}
.y79{bottom:3.839997pt;}
.y8{bottom:21.440064pt;}
.y7{bottom:34.880005pt;}
.y6{bottom:47.840088pt;}
.y3{bottom:51.360108pt;}
.y4{bottom:58.080079pt;}
.y2{bottom:69.760010pt;}
.y72{bottom:94.240113pt;}
.y3d{bottom:97.280030pt;}
.y70{bottom:112.640076pt;}
.y3c{bottom:115.680054pt;}
.y6f{bottom:131.040039pt;}
.y3b{bottom:134.080079pt;}
.ya3{bottom:142.720032pt;}
.y6e{bottom:149.440064pt;}
.y3a{bottom:152.480042pt;}
.ya2{bottom:161.120057pt;}
.y6d{bottom:167.840088pt;}
.y39{bottom:170.880066pt;}
.ya1{bottom:179.200074pt;}
.y6c{bottom:186.240052pt;}
.y38{bottom:189.280030pt;}
.ya0{bottom:197.600037pt;}
.y6b{bottom:204.640076pt;}
.y37{bottom:207.680054pt;}
.y9f{bottom:216.320069pt;}
.y6a{bottom:223.040039pt;}
.y36{bottom:226.080079pt;}
.y9e{bottom:234.720032pt;}
.y69{bottom:241.440064pt;}
.y35{bottom:244.480042pt;}
.y9d{bottom:253.120057pt;}
.y68{bottom:259.840088pt;}
.y34{bottom:262.880066pt;}
.y9c{bottom:271.520081pt;}
.y67{bottom:278.240052pt;}
.y33{bottom:281.280030pt;}
.y9b{bottom:289.920044pt;}
.y66{bottom:296.640076pt;}
.y32{bottom:299.680054pt;}
.y9a{bottom:308.320069pt;}
.y65{bottom:315.040039pt;}
.y31{bottom:318.080079pt;}
.y99{bottom:326.720032pt;}
.y64{bottom:333.440064pt;}
.y30{bottom:336.480042pt;}
.y98{bottom:345.120057pt;}
.y63{bottom:351.840088pt;}
.y2f{bottom:354.880066pt;}
.y97{bottom:363.520081pt;}
.y62{bottom:370.240052pt;}
.y2e{bottom:373.280030pt;}
.y96{bottom:381.920044pt;}
.y61{bottom:388.640076pt;}
.y2d{bottom:391.680054pt;}
.y95{bottom:400.320069pt;}
.y60{bottom:407.040039pt;}
.y2c{bottom:410.080079pt;}
.y94{bottom:418.720032pt;}
.y5f{bottom:425.440064pt;}
.y2b{bottom:428.480042pt;}
.y93{bottom:437.120057pt;}
.y5e{bottom:443.840088pt;}
.y2a{bottom:446.880066pt;}
.y92{bottom:455.520081pt;}
.y5d{bottom:462.240052pt;}
.y29{bottom:465.280030pt;}
.y91{bottom:473.920044pt;}
.y5c{bottom:480.640076pt;}
.y28{bottom:483.680054pt;}
.y90{bottom:492.320069pt;}
.y5b{bottom:499.040039pt;}
.y27{bottom:502.080079pt;}
.y8f{bottom:510.720032pt;}
.y5a{bottom:517.120057pt;}
.y71{bottom:517.440064pt;}
.y26{bottom:520.480042pt;}
.y8e{bottom:529.120057pt;}
.y59{bottom:535.840088pt;}
.y25{bottom:538.880066pt;}
.y8d{bottom:547.520081pt;}
.ya4{bottom:553.920044pt;}
.y58{bottom:554.240052pt;}
.y24{bottom:557.280030pt;}
.y8c{bottom:565.920044pt;}
.y57{bottom:572.640076pt;}
.y23{bottom:575.680054pt;}
.y8b{bottom:584.320069pt;}
.y56{bottom:591.040039pt;}
.y22{bottom:594.080079pt;}
.y8a{bottom:602.720032pt;}
.y55{bottom:609.440064pt;}
.y21{bottom:612.480072pt;}
.y89{bottom:621.120057pt;}
.y54{bottom:627.840058pt;}
.y20{bottom:630.880066pt;}
.y88{bottom:639.520050pt;}
.y53{bottom:646.240052pt;}
.y1f{bottom:649.280060pt;}
.y87{bottom:657.920044pt;}
.y52{bottom:664.640046pt;}
.y1e{bottom:667.680054pt;}
.y86{bottom:676.320069pt;}
.y51{bottom:683.040070pt;}
.y1d{bottom:686.080048pt;}
.y85{bottom:694.720063pt;}
.y50{bottom:701.440064pt;}
.y1c{bottom:704.480072pt;}
.y84{bottom:713.120057pt;}
.y4f{bottom:719.840058pt;}
.y1b{bottom:722.240052pt;}
.y83{bottom:731.520050pt;}
.y1a{bottom:737.600068pt;}
.y4e{bottom:738.240052pt;}
.y82{bottom:749.920044pt;}
.y19{bottom:752.960053pt;}
.y4d{bottom:756.640046pt;}
.y18{bottom:768.960053pt;}
.y4c{bottom:775.040070pt;}
.y17{bottom:787.360047pt;}
.y4b{bottom:793.440064pt;}
.y16{bottom:805.760071pt;}
.y81{bottom:806.400055pt;}
.y4a{bottom:811.840058pt;}
.y15{bottom:823.840058pt;}
.y80{bottom:825.440064pt;}
.y49{bottom:830.240052pt;}
.y14{bottom:842.560059pt;}
.y7f{bottom:844.640046pt;}
.y48{bottom:848.640046pt;}
.y13{bottom:860.960053pt;}
.y7e{bottom:863.680054pt;}
.y47{bottom:867.040055pt;}
.y12{bottom:879.040055pt;}
.y7d{bottom:882.720063pt;}
.y46{bottom:885.440064pt;}
.y11{bottom:897.440064pt;}
.y7c{bottom:901.760056pt;}
.y45{bottom:903.840058pt;}
.y10{bottom:915.840058pt;}
.y7b{bottom:920.800064pt;}
.y44{bottom:922.240052pt;}
.yf{bottom:934.240052pt;}
.y7a{bottom:939.840058pt;}
.y43{bottom:940.640061pt;}
.ye{bottom:952.640061pt;}
.y78{bottom:954.400055pt;}
.y77{bottom:958.240052pt;}
.y42{bottom:959.040055pt;}
.yd{bottom:970.880066pt;}
.y76{bottom:976.640061pt;}
.y41{bottom:977.440064pt;}
.yc{bottom:989.280060pt;}
.y75{bottom:995.040062pt;}
.y40{bottom:995.840058pt;}
.yb{bottom:1009.919728pt;}
.y74{bottom:1013.920060pt;}
.y3f{bottom:1014.240059pt;}
.ya{bottom:1031.521230pt;}
.y73{bottom:1032.320061pt;}
.y3e{bottom:1032.640061pt;}
.y1{bottom:1060.960061pt;}
.h5{height:10.400024pt;}
.h3{height:12.959960pt;}
.hc{height:18.240006pt;}
.h6{height:30.067372pt;}
.hb{height:37.247652pt;}
.h4{height:42.651279pt;}
.h2{height:44.876686pt;}
.ha{height:46.376742pt;}
.hd{height:46.595500pt;}
.h9{height:46.783007pt;}
.h7{height:55.343607pt;}
.h8{height:55.345829pt;}
.he{height:58.566137pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w4{width:4.799988pt;}
.w3{width:6.239990pt;}
.w5{width:7.359985pt;}
.w2{width:47.200013pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519997pt;}
.x8{left:81.757604pt;}
.x22{left:83.199997pt;}
.x17{left:84.320000pt;}
.xd{left:95.199997pt;}
.x25{left:99.360001pt;}
.xb{left:112.000000pt;}
.x14{left:122.720001pt;}
.x16{left:160.800003pt;}
.x19{left:235.520004pt;}
.xc{left:239.199997pt;}
.x18{left:257.760010pt;}
.x23{left:309.600006pt;}
.x1a{left:312.799988pt;}
.x9{left:332.796032pt;}
.xe{left:357.600006pt;}
.x1b{left:376.640015pt;}
.x2{left:384.799988pt;}
.xa{left:396.799988pt;}
.xf{left:403.359985pt;}
.x11{left:462.880005pt;}
.x10{left:464.160004pt;}
.x12{left:497.119995pt;}
.x1c{left:518.719971pt;}
.x24{left:549.599976pt;}
.x1d{left:597.119995pt;}
.x1f{left:616.320007pt;}
.x20{left:620.000000pt;}
.x21{left:628.640015pt;}
.x1e{left:632.000000pt;}
.x6{left:663.359985pt;}
.x5{left:667.679993pt;}
.x15{left:669.599976pt;}
.x3{left:675.359985pt;}
.x7{left:698.880005pt;}
.x13{left:718.080017pt;}
.x4{left:722.559998pt;}
}




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