
    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_301ad925c3319b6f2c4b11d6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.091309;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_49bf71a1e123e4d51a19eda1.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_99e539fbdbc9a4f251c894df.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.091309;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_a6fc651b60fb10b865a1056d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.944824;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_1dcaebd61a47b8794975e042.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d4121ba07307e1557a1c5ca4.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls6{letter-spacing:-0.774000px;}
.ls8{letter-spacing:-0.612000px;}
.ls4{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.053280px;}
.ls7{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.259920px;}
.ls9{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.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:-15.300000px;}
.ws6{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.886720px;}
.ws2{word-spacing:-13.500000px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-1.321920px;}
._0{width:1.322400px;}
._b{width:3.021840px;}
._2{width:4.245600px;}
._c{width:5.967840px;}
._a{width:7.051680px;}
._11{width:8.946960px;}
._e{width:9.987600px;}
._8{width:11.167440px;}
._9{width:12.318240px;}
._d{width:13.625280px;}
._14{width:16.015680px;}
._13{width:17.442240px;}
._15{width:18.444000px;}
._7{width:19.474080px;}
._6{width:20.796480px;}
._12{width:22.170960px;}
._10{width:23.724720px;}
._f{width:25.338240px;}
._16{width:30.768720px;}
._1c{width:31.912560px;}
._19{width:35.258400px;}
._1b{width:36.274320px;}
._1a{width:38.059920px;}
._1e{width:44.035440px;}
._1d{width:45.118800px;}
._1f{width:46.478880px;}
._17{width:50.019840px;}
._5{width:85.656000px;}
._18{width:274.111440px;}
._4{width:687.306000px;}
._3{width:748.236000px;}
.fc4{color:rgb(40,44,51);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yb{bottom:36.720000px;}
.ya{bottom:55.260000px;}
.y9{bottom:70.776000px;}
.yb6{bottom:112.176000px;}
.y40{bottom:115.056000px;}
.ydf{bottom:116.496000px;}
.y77{bottom:120.456000px;}
.y96{bottom:124.236000px;}
.yb5{bottom:129.456000px;}
.y3f{bottom:132.336000px;}
.yde{bottom:133.776000px;}
.y76{bottom:137.736000px;}
.y95{bottom:141.516000px;}
.yb4{bottom:146.736000px;}
.y3e{bottom:149.436000px;}
.ydd{bottom:151.050000px;}
.y75{bottom:155.010000px;}
.y94{bottom:158.610000px;}
.yb3{bottom:164.010000px;}
.y3d{bottom:166.710000px;}
.ydc{bottom:168.330000px;}
.y74{bottom:172.290000px;}
.y93{bottom:175.890000px;}
.yb2{bottom:181.110000px;}
.y3c{bottom:183.990000px;}
.ydb{bottom:185.610000px;}
.y73{bottom:189.570000px;}
.y92{bottom:193.170000px;}
.yb1{bottom:198.390000px;}
.y3b{bottom:201.270000px;}
.yda{bottom:202.890000px;}
.y72{bottom:206.670000px;}
.y91{bottom:210.450000px;}
.yb0{bottom:215.670000px;}
.y3a{bottom:218.550000px;}
.yd9{bottom:219.990000px;}
.y71{bottom:223.950000px;}
.y90{bottom:227.730000px;}
.ybe{bottom:229.350000px;}
.yaf{bottom:232.950000px;}
.y39{bottom:235.830000px;}
.yd8{bottom:237.270000px;}
.y70{bottom:241.230000px;}
.y8f{bottom:245.010000px;}
.ybd{bottom:246.450000px;}
.yae{bottom:250.230000px;}
.y38{bottom:252.930000px;}
.yd7{bottom:254.550000px;}
.y6f{bottom:258.510000px;}
.y8e{bottom:262.110000px;}
.ybc{bottom:263.730000px;}
.yad{bottom:267.510000px;}
.y37{bottom:270.210000px;}
.yd6{bottom:271.830000px;}
.y6e{bottom:275.790000px;}
.y8d{bottom:279.390000px;}
.ybb{bottom:281.010000px;}
.yac{bottom:284.610000px;}
.y36{bottom:287.490000px;}
.yd5{bottom:289.110000px;}
.y6d{bottom:292.890000px;}
.y8c{bottom:296.670000px;}
.yba{bottom:298.290000px;}
.yab{bottom:301.890000px;}
.y35{bottom:304.770000px;}
.yd4{bottom:306.210000px;}
.y6c{bottom:310.170000px;}
.y8b{bottom:313.950000px;}
.yb9{bottom:315.570000px;}
.yaa{bottom:319.170000px;}
.y34{bottom:322.050000px;}
.yd3{bottom:323.490000px;}
.y6b{bottom:327.450000px;}
.yb8{bottom:329.430000px;}
.y8a{bottom:331.230000px;}
.ya9{bottom:336.495000px;}
.yd2{bottom:340.815000px;}
.y33{bottom:341.895000px;}
.y6a{bottom:344.775000px;}
.y89{bottom:348.375000px;}
.ya8{bottom:353.775000px;}
.y80{bottom:353.955000px;}
.yd1{bottom:358.095000px;}
.y32{bottom:359.175000px;}
.y69{bottom:362.055000px;}
.y88{bottom:362.415000px;}
.ya7{bottom:371.055000px;}
.y7f{bottom:371.235000px;}
.yd0{bottom:375.375000px;}
.y31{bottom:376.455000px;}
.y68{bottom:379.335000px;}
.ya6{bottom:388.155000px;}
.y7e{bottom:388.515000px;}
.ycf{bottom:392.655000px;}
.y30{bottom:393.735000px;}
.y67{bottom:396.435000px;}
.ya5{bottom:405.435000px;}
.y7d{bottom:405.615000px;}
.yce{bottom:409.755000px;}
.y2f{bottom:410.835000px;}
.y66{bottom:413.715000px;}
.ya4{bottom:422.715000px;}
.y7c{bottom:422.895000px;}
.ycd{bottom:427.035000px;}
.y2e{bottom:428.115000px;}
.y65{bottom:430.995000px;}
.ya3{bottom:439.995000px;}
.y7b{bottom:440.175000px;}
.ycc{bottom:444.315000px;}
.y2d{bottom:445.395000px;}
.y64{bottom:448.275000px;}
.ya2{bottom:457.275000px;}
.y7a{bottom:457.455000px;}
.ycb{bottom:461.595000px;}
.y2c{bottom:462.675000px;}
.y63{bottom:465.555000px;}
.ya1{bottom:474.555000px;}
.y79{bottom:474.735000px;}
.yca{bottom:478.875000px;}
.y2b{bottom:479.955000px;}
.y62{bottom:482.835000px;}
.y78{bottom:488.775000px;}
.ya0{bottom:491.655000px;}
.yc9{bottom:496.155000px;}
.y2a{bottom:497.235000px;}
.y61{bottom:499.935000px;}
.y9f{bottom:508.935000px;}
.yc8{bottom:513.255000px;}
.y29{bottom:514.335000px;}
.y60{bottom:517.215000px;}
.y9e{bottom:526.215000px;}
.yc7{bottom:530.535000px;}
.y28{bottom:531.615000px;}
.y5f{bottom:534.495000px;}
.yb7{bottom:538.815000px;}
.y9d{bottom:543.495000px;}
.yc6{bottom:547.815000px;}
.y27{bottom:548.895000px;}
.y5e{bottom:551.775000px;}
.y9c{bottom:560.775000px;}
.yc5{bottom:565.095000px;}
.y26{bottom:566.175000px;}
.y5d{bottom:569.055000px;}
.y9b{bottom:577.875000px;}
.yc4{bottom:582.375000px;}
.y25{bottom:583.455000px;}
.y5c{bottom:586.155000px;}
.y9a{bottom:595.155000px;}
.yc3{bottom:599.655000px;}
.y24{bottom:600.555000px;}
.y5b{bottom:603.435000px;}
.y99{bottom:612.465000px;}
.yc2{bottom:616.785000px;}
.y23{bottom:617.865000px;}
.y5a{bottom:620.745000px;}
.y98{bottom:629.745000px;}
.yc1{bottom:634.065000px;}
.y22{bottom:635.145000px;}
.y59{bottom:638.025000px;}
.y97{bottom:643.785000px;}
.yc0{bottom:651.345000px;}
.y21{bottom:652.425000px;}
.y58{bottom:655.305000px;}
.ybf{bottom:665.385000px;}
.y20{bottom:669.705000px;}
.y57{bottom:672.585000px;}
.y87{bottom:679.245000px;}
.y1f{bottom:686.985000px;}
.y56{bottom:689.685000px;}
.y86{bottom:696.525000px;}
.y1e{bottom:705.165000px;}
.y55{bottom:706.965000px;}
.y85{bottom:713.805000px;}
.y1d{bottom:722.985000px;}
.y54{bottom:724.245000px;}
.y84{bottom:730.905000px;}
.y53{bottom:741.525000px;}
.y1c{bottom:741.885000px;}
.y83{bottom:748.185000px;}
.y52{bottom:758.805000px;}
.y1b{bottom:760.965000px;}
.y82{bottom:765.465000px;}
.y51{bottom:776.085000px;}
.y81{bottom:779.505000px;}
.y1a{bottom:779.865000px;}
.y50{bottom:793.185000px;}
.y19{bottom:798.945000px;}
.y4f{bottom:810.465000px;}
.y18{bottom:817.845000px;}
.y4e{bottom:827.745000px;}
.y17{bottom:836.745000px;}
.y4d{bottom:845.025000px;}
.y16{bottom:855.825000px;}
.y4c{bottom:862.305000px;}
.y15{bottom:874.770000px;}
.y4b{bottom:879.630000px;}
.y14{bottom:893.850000px;}
.y4a{bottom:896.730000px;}
.y13{bottom:912.750000px;}
.y49{bottom:914.010000px;}
.y48{bottom:931.290000px;}
.y12{bottom:931.650000px;}
.y47{bottom:948.570000px;}
.y11{bottom:950.730000px;}
.y46{bottom:965.850000px;}
.y10{bottom:969.630000px;}
.y45{bottom:982.950000px;}
.yf{bottom:988.710000px;}
.y44{bottom:1000.230000px;}
.ye{bottom:1007.970000px;}
.y43{bottom:1017.510000px;}
.yd{bottom:1028.670000px;}
.y42{bottom:1034.790000px;}
.yc{bottom:1049.370000px;}
.y41{bottom:1052.070000px;}
.y8{bottom:1070.610000px;}
.y7{bottom:1089.150000px;}
.y6{bottom:1104.990000px;}
.y5{bottom:1122.990000px;}
.y4{bottom:1139.760000px;}
.y3{bottom:1180.620000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.h5{height:42.164648px;}
.ha{height:43.302656px;}
.h8{height:46.736719px;}
.h6{height:47.276367px;}
.h4{height:50.800781px;}
.h2{height:52.319180px;}
.h9{height:53.224453px;}
.h3{height:57.992344px;}
.h7{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.035987px;}
.x10{left:110.555987px;}
.x7{left:112.355987px;}
.x24{left:114.875987px;}
.x2{left:123.155987px;}
.x13{left:139.175987px;}
.x25{left:148.535987px;}
.x4{left:157.169987px;}
.x8{left:172.109987px;}
.x9{left:223.409987px;}
.x14{left:290.954987px;}
.x1d{left:310.394987px;}
.x16{left:313.454987px;}
.x19{left:332.714987px;}
.x12{left:339.914987px;}
.x20{left:346.394987px;}
.x1f{left:357.914987px;}
.xb{left:360.434987px;}
.x23{left:362.414987px;}
.x1b{left:366.194987px;}
.xf{left:378.074987px;}
.x11{left:380.234987px;}
.x17{left:384.554987px;}
.x15{left:386.534987px;}
.xe{left:389.954987px;}
.xd{left:393.194987px;}
.x6{left:396.434987px;}
.xc{left:409.394987px;}
.x5{left:412.274987px;}
.xa{left:446.474987px;}
.x3{left:518.504987px;}
.x18{left:600.764987px;}
.x1a{left:624.344987px;}
.x21{left:633.344987px;}
.x1e{left:662.549987px;}
.x22{left:687.029987px;}
.x1c{left:715.469987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls6{letter-spacing:-0.688000pt;}
.ls8{letter-spacing:-0.544000pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.047360pt;}
.ls7{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.231040pt;}
.ls9{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws3{word-spacing:-13.232640pt;}
.ws2{word-spacing:-12.000000pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-1.175040pt;}
._0{width:1.175467pt;}
._b{width:2.686080pt;}
._2{width:3.773867pt;}
._c{width:5.304747pt;}
._a{width:6.268160pt;}
._11{width:7.952853pt;}
._e{width:8.877867pt;}
._8{width:9.926613pt;}
._9{width:10.949547pt;}
._d{width:12.111360pt;}
._14{width:14.236160pt;}
._13{width:15.504213pt;}
._15{width:16.394667pt;}
._7{width:17.310293pt;}
._6{width:18.485760pt;}
._12{width:19.707520pt;}
._10{width:21.088640pt;}
._f{width:22.522880pt;}
._16{width:27.349973pt;}
._1c{width:28.366720pt;}
._19{width:31.340800pt;}
._1b{width:32.243840pt;}
._1a{width:33.831040pt;}
._1e{width:39.142613pt;}
._1d{width:40.105600pt;}
._1f{width:41.314560pt;}
._17{width:44.462080pt;}
._5{width:76.138667pt;}
._18{width:243.654613pt;}
._4{width:610.938667pt;}
._3{width:665.098667pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:32.640000pt;}
.ya{bottom:49.120000pt;}
.y9{bottom:62.912000pt;}
.yb6{bottom:99.712000pt;}
.y40{bottom:102.272000pt;}
.ydf{bottom:103.552000pt;}
.y77{bottom:107.072000pt;}
.y96{bottom:110.432000pt;}
.yb5{bottom:115.072000pt;}
.y3f{bottom:117.632000pt;}
.yde{bottom:118.912000pt;}
.y76{bottom:122.432000pt;}
.y95{bottom:125.792000pt;}
.yb4{bottom:130.432000pt;}
.y3e{bottom:132.832000pt;}
.ydd{bottom:134.266667pt;}
.y75{bottom:137.786667pt;}
.y94{bottom:140.986667pt;}
.yb3{bottom:145.786667pt;}
.y3d{bottom:148.186667pt;}
.ydc{bottom:149.626667pt;}
.y74{bottom:153.146667pt;}
.y93{bottom:156.346667pt;}
.yb2{bottom:160.986667pt;}
.y3c{bottom:163.546667pt;}
.ydb{bottom:164.986667pt;}
.y73{bottom:168.506667pt;}
.y92{bottom:171.706667pt;}
.yb1{bottom:176.346667pt;}
.y3b{bottom:178.906667pt;}
.yda{bottom:180.346667pt;}
.y72{bottom:183.706667pt;}
.y91{bottom:187.066667pt;}
.yb0{bottom:191.706667pt;}
.y3a{bottom:194.266667pt;}
.yd9{bottom:195.546667pt;}
.y71{bottom:199.066667pt;}
.y90{bottom:202.426667pt;}
.ybe{bottom:203.866667pt;}
.yaf{bottom:207.066667pt;}
.y39{bottom:209.626667pt;}
.yd8{bottom:210.906667pt;}
.y70{bottom:214.426667pt;}
.y8f{bottom:217.786667pt;}
.ybd{bottom:219.066667pt;}
.yae{bottom:222.426667pt;}
.y38{bottom:224.826667pt;}
.yd7{bottom:226.266667pt;}
.y6f{bottom:229.786667pt;}
.y8e{bottom:232.986667pt;}
.ybc{bottom:234.426667pt;}
.yad{bottom:237.786667pt;}
.y37{bottom:240.186667pt;}
.yd6{bottom:241.626667pt;}
.y6e{bottom:245.146667pt;}
.y8d{bottom:248.346667pt;}
.ybb{bottom:249.786667pt;}
.yac{bottom:252.986667pt;}
.y36{bottom:255.546667pt;}
.yd5{bottom:256.986667pt;}
.y6d{bottom:260.346667pt;}
.y8c{bottom:263.706667pt;}
.yba{bottom:265.146667pt;}
.yab{bottom:268.346667pt;}
.y35{bottom:270.906667pt;}
.yd4{bottom:272.186667pt;}
.y6c{bottom:275.706667pt;}
.y8b{bottom:279.066667pt;}
.yb9{bottom:280.506667pt;}
.yaa{bottom:283.706667pt;}
.y34{bottom:286.266667pt;}
.yd3{bottom:287.546667pt;}
.y6b{bottom:291.066667pt;}
.yb8{bottom:292.826667pt;}
.y8a{bottom:294.426667pt;}
.ya9{bottom:299.106667pt;}
.yd2{bottom:302.946667pt;}
.y33{bottom:303.906667pt;}
.y6a{bottom:306.466667pt;}
.y89{bottom:309.666667pt;}
.ya8{bottom:314.466667pt;}
.y80{bottom:314.626667pt;}
.yd1{bottom:318.306667pt;}
.y32{bottom:319.266667pt;}
.y69{bottom:321.826667pt;}
.y88{bottom:322.146667pt;}
.ya7{bottom:329.826667pt;}
.y7f{bottom:329.986667pt;}
.yd0{bottom:333.666667pt;}
.y31{bottom:334.626667pt;}
.y68{bottom:337.186667pt;}
.ya6{bottom:345.026667pt;}
.y7e{bottom:345.346667pt;}
.ycf{bottom:349.026667pt;}
.y30{bottom:349.986667pt;}
.y67{bottom:352.386667pt;}
.ya5{bottom:360.386667pt;}
.y7d{bottom:360.546667pt;}
.yce{bottom:364.226667pt;}
.y2f{bottom:365.186667pt;}
.y66{bottom:367.746667pt;}
.ya4{bottom:375.746667pt;}
.y7c{bottom:375.906667pt;}
.ycd{bottom:379.586667pt;}
.y2e{bottom:380.546667pt;}
.y65{bottom:383.106667pt;}
.ya3{bottom:391.106667pt;}
.y7b{bottom:391.266667pt;}
.ycc{bottom:394.946667pt;}
.y2d{bottom:395.906667pt;}
.y64{bottom:398.466667pt;}
.ya2{bottom:406.466667pt;}
.y7a{bottom:406.626667pt;}
.ycb{bottom:410.306667pt;}
.y2c{bottom:411.266667pt;}
.y63{bottom:413.826667pt;}
.ya1{bottom:421.826667pt;}
.y79{bottom:421.986667pt;}
.yca{bottom:425.666667pt;}
.y2b{bottom:426.626667pt;}
.y62{bottom:429.186667pt;}
.y78{bottom:434.466667pt;}
.ya0{bottom:437.026667pt;}
.yc9{bottom:441.026667pt;}
.y2a{bottom:441.986667pt;}
.y61{bottom:444.386667pt;}
.y9f{bottom:452.386667pt;}
.yc8{bottom:456.226667pt;}
.y29{bottom:457.186667pt;}
.y60{bottom:459.746667pt;}
.y9e{bottom:467.746667pt;}
.yc7{bottom:471.586667pt;}
.y28{bottom:472.546667pt;}
.y5f{bottom:475.106667pt;}
.yb7{bottom:478.946667pt;}
.y9d{bottom:483.106667pt;}
.yc6{bottom:486.946667pt;}
.y27{bottom:487.906667pt;}
.y5e{bottom:490.466667pt;}
.y9c{bottom:498.466667pt;}
.yc5{bottom:502.306667pt;}
.y26{bottom:503.266667pt;}
.y5d{bottom:505.826667pt;}
.y9b{bottom:513.666667pt;}
.yc4{bottom:517.666667pt;}
.y25{bottom:518.626667pt;}
.y5c{bottom:521.026667pt;}
.y9a{bottom:529.026667pt;}
.yc3{bottom:533.026667pt;}
.y24{bottom:533.826667pt;}
.y5b{bottom:536.386667pt;}
.y99{bottom:544.413333pt;}
.yc2{bottom:548.253333pt;}
.y23{bottom:549.213333pt;}
.y5a{bottom:551.773333pt;}
.y98{bottom:559.773333pt;}
.yc1{bottom:563.613333pt;}
.y22{bottom:564.573333pt;}
.y59{bottom:567.133333pt;}
.y97{bottom:572.253333pt;}
.yc0{bottom:578.973333pt;}
.y21{bottom:579.933333pt;}
.y58{bottom:582.493333pt;}
.ybf{bottom:591.453333pt;}
.y20{bottom:595.293333pt;}
.y57{bottom:597.853333pt;}
.y87{bottom:603.773333pt;}
.y1f{bottom:610.653333pt;}
.y56{bottom:613.053333pt;}
.y86{bottom:619.133333pt;}
.y1e{bottom:626.813333pt;}
.y55{bottom:628.413333pt;}
.y85{bottom:634.493333pt;}
.y1d{bottom:642.653333pt;}
.y54{bottom:643.773333pt;}
.y84{bottom:649.693333pt;}
.y53{bottom:659.133333pt;}
.y1c{bottom:659.453333pt;}
.y83{bottom:665.053333pt;}
.y52{bottom:674.493333pt;}
.y1b{bottom:676.413333pt;}
.y82{bottom:680.413333pt;}
.y51{bottom:689.853333pt;}
.y81{bottom:692.893333pt;}
.y1a{bottom:693.213333pt;}
.y50{bottom:705.053333pt;}
.y19{bottom:710.173333pt;}
.y4f{bottom:720.413333pt;}
.y18{bottom:726.973333pt;}
.y4e{bottom:735.773333pt;}
.y17{bottom:743.773333pt;}
.y4d{bottom:751.133333pt;}
.y16{bottom:760.733333pt;}
.y4c{bottom:766.493333pt;}
.y15{bottom:777.573333pt;}
.y4b{bottom:781.893333pt;}
.y14{bottom:794.533333pt;}
.y4a{bottom:797.093333pt;}
.y13{bottom:811.333333pt;}
.y49{bottom:812.453333pt;}
.y48{bottom:827.813333pt;}
.y12{bottom:828.133333pt;}
.y47{bottom:843.173333pt;}
.y11{bottom:845.093333pt;}
.y46{bottom:858.533333pt;}
.y10{bottom:861.893333pt;}
.y45{bottom:873.733333pt;}
.yf{bottom:878.853333pt;}
.y44{bottom:889.093333pt;}
.ye{bottom:895.973333pt;}
.y43{bottom:904.453333pt;}
.yd{bottom:914.373333pt;}
.y42{bottom:919.813333pt;}
.yc{bottom:932.773333pt;}
.y41{bottom:935.173333pt;}
.y8{bottom:951.653333pt;}
.y7{bottom:968.133333pt;}
.y6{bottom:982.213333pt;}
.y5{bottom:998.213333pt;}
.y4{bottom:1013.120000pt;}
.y3{bottom:1049.440000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.h5{height:37.479688pt;}
.ha{height:38.491250pt;}
.h8{height:41.543750pt;}
.h6{height:42.023438pt;}
.h4{height:45.156250pt;}
.h2{height:46.505938pt;}
.h9{height:47.310625pt;}
.h3{height:51.548750pt;}
.h7{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.x10{left:98.271988pt;}
.x7{left:99.871988pt;}
.x24{left:102.111988pt;}
.x2{left:109.471988pt;}
.x13{left:123.711988pt;}
.x25{left:132.031988pt;}
.x4{left:139.706655pt;}
.x8{left:152.986655pt;}
.x9{left:198.586655pt;}
.x14{left:258.626655pt;}
.x1d{left:275.906655pt;}
.x16{left:278.626655pt;}
.x19{left:295.746655pt;}
.x12{left:302.146655pt;}
.x20{left:307.906655pt;}
.x1f{left:318.146655pt;}
.xb{left:320.386655pt;}
.x23{left:322.146655pt;}
.x1b{left:325.506655pt;}
.xf{left:336.066655pt;}
.x11{left:337.986655pt;}
.x17{left:341.826655pt;}
.x15{left:343.586655pt;}
.xe{left:346.626655pt;}
.xd{left:349.506655pt;}
.x6{left:352.386655pt;}
.xc{left:363.906655pt;}
.x5{left:366.466655pt;}
.xa{left:396.866655pt;}
.x3{left:460.893322pt;}
.x18{left:534.013322pt;}
.x1a{left:554.973322pt;}
.x21{left:562.973322pt;}
.x1e{left:588.933322pt;}
.x22{left:610.693322pt;}
.x1c{left:635.973322pt;}
}




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