
    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_9d9e5948c91ef0c07c1b683a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_643dc1541c1a7e883da03817.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_bff9c5123ffc1317087771bf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.929199;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);}
.v1{vertical-align:-4.319964px;}
.v3{vertical-align:-2.880063px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.160049px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.035496px;}
.ls0{letter-spacing:0.045143px;}
.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;}
}
.ws2{word-spacing:-15.621730px;}
.ws0{word-spacing:-12.204509px;}
.ws4{word-spacing:-8.135685px;}
.ws1{word-spacing:0.000000px;}
.ws9{word-spacing:343.882077px;}
.wsc{word-spacing:418.028496px;}
.ws8{word-spacing:427.341188px;}
.wsf{word-spacing:431.595129px;}
.ws11{word-spacing:436.679755px;}
.ws6{word-spacing:451.902685px;}
.ws13{word-spacing:451.982920px;}
.ws7{word-spacing:452.556676px;}
.ws5{word-spacing:452.556935px;}
.wsd{word-spacing:458.551289px;}
.ws3{word-spacing:459.693327px;}
.ws15{word-spacing:464.020402px;}
.ws14{word-spacing:478.655087px;}
.ws10{word-spacing:480.530330px;}
.ws12{word-spacing:486.575138px;}
.wse{word-spacing:487.912409px;}
.wsb{word-spacing:488.590696px;}
.wsa{word-spacing:494.107960px;}
._10{margin-left:-1.011109px;}
._5{width:1.094855px;}
._5b{width:6.224719px;}
._5c{width:8.672462px;}
._65{width:9.853370px;}
._59{width:11.032094px;}
._5a{width:12.474180px;}
._6a{width:46.071424px;}
._5d{width:62.840672px;}
._1{width:66.829683px;}
._68{width:72.563061px;}
._4a{width:81.872263px;}
._5e{width:88.137771px;}
._7{width:95.769405px;}
._64{width:97.667032px;}
._67{width:104.637912px;}
._32{width:109.493992px;}
._61{width:113.330236px;}
._5f{width:122.404758px;}
._12{width:123.434056px;}
._63{width:130.337540px;}
._69{width:133.965857px;}
._9{width:140.690833px;}
._60{width:146.147163px;}
._6b{width:147.421839px;}
._40{width:150.975203px;}
._62{width:163.772147px;}
._14{width:181.289939px;}
._0{width:189.631135px;}
._2b{width:190.936868px;}
._e{width:198.727020px;}
._46{width:208.831087px;}
._53{width:219.018038px;}
._26{width:226.268167px;}
._66{width:239.693999px;}
._2d{width:249.332774px;}
._4f{width:266.229832px;}
._36{width:277.413944px;}
._6{width:286.191252px;}
._58{width:293.922684px;}
._11{width:302.434705px;}
._6c{width:305.729599px;}
._43{width:313.192377px;}
._3d{width:329.975853px;}
._22{width:340.733525px;}
._29{width:370.477540px;}
._b{width:378.520334px;}
._4d{width:381.235212px;}
._17{width:391.732322px;}
._52{width:398.558710px;}
._6d{width:411.180145px;}
._15{width:412.952748px;}
._57{width:416.896527px;}
._47{width:440.312825px;}
._2e{width:480.632789px;}
._56{width:492.956380px;}
._37{width:508.712744px;}
._13{width:564.669791px;}
._45{width:592.029868px;}
._2c{width:619.389809px;}
._54{width:649.097314px;}
._34{width:660.429787px;}
._55{width:662.024343px;}
._1a{width:665.562603px;}
._3a{width:692.563728px;}
._4{width:696.544268px;}
._d{width:702.682972px;}
._2a{width:704.150104px;}
._42{width:724.085416px;}
._30{width:730.150711px;}
._8{width:731.427947px;}
._21{width:751.086541px;}
._44{width:758.969094px;}
._23{width:785.970219px;}
._4c{width:791.588228px;}
._31{width:815.688858px;}
._4e{width:826.471907px;}
._19{width:884.046154px;}
._3b{width:905.111964px;}
._1d{width:922.391811px;}
._49{width:925.087864px;}
._c{width:937.317488px;}
._39{width:952.629012px;}
._25{width:964.858635px;}
._28{width:1004.820300px;}
._35{width:1032.901470px;}
._18{width:1060.442618px;}
._2f{width:1075.754142px;}
._48{width:1101.484328px;}
._3{width:1116.064967px;}
._38{width:1129.025475px;}
._41{width:1143.066092px;}
._a{width:1161.617086px;}
._20{width:1170.607239px;}
._16{width:1173.719945px;}
._3e{width:1189.158234px;}
._f{width:1196.196457px;}
._4b{width:1211.108927px;}
._24{width:1216.699381px;}
._3f{width:1223.737604px;}
._1e{width:1231.969226px;}
._3c{width:1249.249901px;}
._27{width:1251.278752px;}
._50{width:1257.741091px;}
._51{width:1292.320462px;}
._1c{width:1339.602516px;}
._1b{width:1544.395796px;}
._2{width:1663.323302px;}
._1f{width:1690.324427px;}
._33{width:1717.865575px;}
.fc2{color:rgb(18,118,34);}
.fc1{color:rgb(84,130,53);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:30.238830px;}
.fs7{font-size:33.118695px;}
.fs6{font-size:35.998605px;}
.fs5{font-size:38.878515px;}
.fs4{font-size:41.758380px;}
.fs2{font-size:54.002250px;}
.fs3{font-size:59.757750px;}
.fs1{font-size:69.122700px;}
.fs0{font-size:88.563596px;}
.y29{bottom:-9.000000px;}
.y0{bottom:0.000000px;}
.y27{bottom:3.599946px;}
.y48{bottom:276.659980px;}
.y47{bottom:286.920043px;}
.y46{bottom:297.360008px;}
.y45{bottom:307.620003px;}
.y44{bottom:317.879997px;}
.y43{bottom:328.319996px;}
.y42{bottom:338.580024px;}
.y2d{bottom:344.160049px;}
.y41{bottom:349.020023px;}
.y2c{bottom:357.660049px;}
.y40{bottom:359.280017px;}
.y3f{bottom:369.720016px;}
.y2b{bottom:371.160049px;}
.y3e{bottom:379.980010px;}
.y2a{bottom:384.660049px;}
.y3d{bottom:390.240005px;}
.y3c{bottom:400.680004px;}
.y24{bottom:401.940033px;}
.y3b{bottom:410.939998px;}
.y3a{bottom:421.379997px;}
.y39{bottom:431.640025px;}
.y38{bottom:441.900021px;}
.y37{bottom:452.340018px;}
.y2f{bottom:454.680039px;}
.y23{bottom:456.120072px;}
.y36{bottom:462.600013px;}
.y28{bottom:468.180039px;}
.y26{bottom:469.080093px;}
.y2e{bottom:471.600083px;}
.y35{bottom:473.040012px;}
.y34{bottom:483.840018px;}
.y22{bottom:489.600083px;}
.y32{bottom:496.439998px;}
.y4a{bottom:505.620003px;}
.y21{bottom:511.020058px;}
.y49{bottom:514.800006px;}
.y20{bottom:532.260064px;}
.y33{bottom:540.180004px;}
.y31{bottom:550.980010px;}
.y1f{bottom:553.680039px;}
.y1e{bottom:575.100083px;}
.y1d{bottom:595.260064px;}
.y30{bottom:606.780017px;}
.y1c{bottom:612.180039px;}
.y1b{bottom:629.100083px;}
.y1a{bottom:646.020058px;}
.y19{bottom:662.940033px;}
.y18{bottom:680.040047px;}
.y17{bottom:696.960056px;}
.y9{bottom:703.440067px;}
.y16{bottom:713.880066px;}
.y15{bottom:730.800076px;}
.y14{bottom:747.720051px;}
.y13{bottom:764.640060px;}
.y12{bottom:781.560070px;}
.y11{bottom:798.660049px;}
.y10{bottom:815.580059px;}
.yf{bottom:832.500068px;}
.ye{bottom:849.420078px;}
.yd{bottom:866.340054px;}
.yc{bottom:883.260064px;}
.yb{bottom:900.180073px;}
.ya{bottom:917.280052px;}
.y8{bottom:934.200061px;}
.y7{bottom:951.120072px;}
.y6{bottom:968.040081px;}
.y5{bottom:984.960074px;}
.y4{bottom:1001.880066px;}
.y3{bottom:1018.800058px;}
.y25{bottom:1032.300058px;}
.y2{bottom:1049.400072px;}
.y1{bottom:1074.420061px;}
.h8{height:3.780052px;}
.h7{height:14.759996px;}
.h10{height:32.940811px;}
.he{height:33.911086px;}
.hd{height:36.859900px;}
.hf{height:41.534092px;}
.hc{height:42.757482px;}
.h5{height:53.712199px;}
.h4{height:55.294296px;}
.h6{height:55.872248px;}
.hb{height:61.187501px;}
.h3{height:70.776515px;}
.h2{height:90.682549px;}
.h9{height:892.980015px;}
.ha{height:893.250000px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w25{width:2.700028px;}
.w20{width:3.059966px;}
.w24{width:3.059967px;}
.w4{width:3.059992px;}
.w10{width:3.060001px;}
.w22{width:3.060002px;}
.w23{width:3.060036px;}
.w5{width:3.420001px;}
.w2{width:4.140001px;}
.we{width:4.500000px;}
.w14{width:4.680003px;}
.w1d{width:5.219983px;}
.w15{width:5.219999px;}
.w9{width:5.220000px;}
.w1c{width:5.220016px;}
.w21{width:5.399987px;}
.w11{width:5.759994px;}
.w7{width:6.119994px;}
.w1a{width:6.479978px;}
.w1f{width:6.480011px;}
.w1b{width:6.659981px;}
.w3{width:6.659998px;}
.wc{width:6.659999px;}
.w8{width:6.660006px;}
.w1e{width:6.660016px;}
.w17{width:7.019990px;}
.w6{width:7.019998px;}
.wd{width:7.020006px;}
.w13{width:7.020007px;}
.w19{width:7.020024px;}
.w18{width:7.199992px;}
.w16{width:7.199993px;}
.wf{width:7.200010px;}
.wa{width:7.559992px;}
.w12{width:10.799990px;}
.wb{width:10.800007px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.w26{width:1262.880060px;}
.w27{width:1263.000000px;}
.x0{left:0.000000px;}
.x88{left:13.680000px;}
.x89{left:54.719999px;}
.x1{left:80.819996px;}
.xa{left:84.780001px;}
.x78{left:86.939999px;}
.x4{left:90.719999px;}
.x79{left:92.879998px;}
.xb{left:95.760003px;}
.xc{left:98.640000px;}
.xd{left:102.060001px;}
.x7a{left:105.120002px;}
.x7b{left:108.180005px;}
.xe{left:109.260003px;}
.x7c{left:111.239997px;}
.xf{left:115.379998px;}
.x10{left:122.040003px;}
.x11{left:127.260003px;}
.x5{left:132.299998px;}
.x12{left:134.819996px;}
.x13{left:145.620002px;}
.x14{left:152.280001px;}
.x15{left:159.479994px;}
.x16{left:163.979994px;}
.x17{left:171.000000px;}
.x18{left:174.060001px;}
.x19{left:179.819996px;}
.x8a{left:183.960005px;}
.x1a{left:187.020006px;}
.x8c{left:193.860008px;}
.x1b{left:197.819996px;}
.x8b{left:200.340002px;}
.x1c{left:204.840002px;}
.x1d{left:209.520006px;}
.x1e{left:216.180005px;}
.x1f{left:221.580008px;}
.x20{left:228.599997px;}
.x21{left:231.659998px;}
.x22{left:234.719999px;}
.x23{left:241.560001px;}
.x24{left:244.620002px;}
.x25{left:249.840002px;}
.x26{left:257.039996px;}
.x8e{left:264.419992px;}
.x8d{left:265.860008px;}
.x27{left:267.840002px;}
.x28{left:278.460005px;}
.x29{left:285.300007px;}
.x2a{left:288.360008px;}
.x2b{left:295.379998px;}
.x2c{left:302.579990px;}
.x2d{left:309.600013px;}
.x2e{left:312.660015px;}
.x2f{left:319.139992px;}
.x30{left:329.939999px;}
.x31{left:340.740006px;}
.x32{left:347.399987px;}
.x33{left:352.620002px;}
.x34{left:358.019989px;}
.x35{left:364.680005px;}
.x36{left:367.740006px;}
.x37{left:374.220017px;}
.x38{left:377.279983px;}
.x39{left:384.300007px;}
.x3a{left:391.139992px;}
.x3b{left:395.639992px;}
.x3c{left:400.319996px;}
.x3d{left:406.800007px;}
.x8f{left:410.040012px;}
.x3e{left:412.019989px;}
.x3f{left:415.259994px;}
.x91{left:419.939999px;}
.x40{left:422.279983px;}
.x90{left:426.420010px;}
.x41{left:429.480011px;}
.x42{left:436.139992px;}
.x43{left:439.199993px;}
.x44{left:442.259994px;}
.x45{left:445.319996px;}
.x46{left:448.379998px;}
.x47{left:451.439999px;}
.x48{left:454.500000px;}
.x49{left:457.560001px;}
.x4a{left:460.620002px;}
.x4b{left:463.680005px;}
.x4c{left:466.740006px;}
.x4d{left:469.620002px;}
.x4e{left:472.680005px;}
.x4f{left:475.740006px;}
.x50{left:478.800007px;}
.x51{left:481.860008px;}
.x52{left:484.920010px;}
.x53{left:487.980011px;}
.x6{left:489.959988px;}
.x54{left:491.040012px;}
.x55{left:494.100014px;}
.x56{left:497.160015px;}
.x57{left:500.220017px;}
.x58{left:503.279983px;}
.x59{left:506.339985px;}
.x5a{left:509.399987px;}
.x5b{left:512.459988px;}
.x5c{left:515.519989px;}
.x5d{left:518.579990px;}
.x5e{left:521.639992px;}
.x5f{left:524.699993px;}
.x60{left:527.759994px;}
.x61{left:530.819996px;}
.x62{left:533.699993px;}
.x63{left:536.759994px;}
.x64{left:539.819996px;}
.x65{left:542.879998px;}
.x66{left:545.939999px;}
.x67{left:549.000000px;}
.x68{left:552.060001px;}
.x69{left:555.120002px;}
.x6a{left:558.180005px;}
.x7{left:560.339985px;}
.x6b{left:564.300007px;}
.x6c{left:567.360008px;}
.x6d{left:570.420010px;}
.x86{left:571.500000px;}
.x6e{left:573.480011px;}
.x6f{left:576.539978px;}
.x70{left:579.600014px;}
.x71{left:582.659981px;}
.x7f{left:583.919975px;}
.x72{left:585.720017px;}
.x2{left:587.340019px;}
.x73{left:588.779983px;}
.x74{left:591.840019px;}
.x75{left:594.899987px;}
.x76{left:597.960023px;}
.x77{left:601.019989px;}
.x82{left:603.899987px;}
.x7e{left:606.419975px;}
.x84{left:607.500000px;}
.x9{left:608.759994px;}
.x7d{left:613.080025px;}
.x83{left:614.700027px;}
.x87{left:616.139992px;}
.x81{left:618.299973px;}
.x8{left:620.639992px;}
.x85{left:621.720017px;}
.x80{left:624.059967px;}
.x92{left:636.120002px;}
.x94{left:646.019989px;}
.x93{left:652.500000px;}
.x3{left:690.120002px;}
.x96{left:720.899987px;}
.x95{left:722.519989px;}
.x97{left:734.220017px;}
.x99{left:809.279983px;}
.x98{left:814.500000px;}
.x9b{left:871.559967px;}
.x9a{left:876.240006px;}
.x9c{left:907.200027px;}
.x9e{left:963.000000px;}
.x9d{left:964.440033px;}
.x9f{left:976.139992px;}
.xa1{left:1042.019989px;}
.xa2{left:1044.000000px;}
.xa0{left:1046.340019px;}
.xa3{left:1095.840019px;}
.xa5{left:1105.740006px;}
.xa4{left:1112.220017px;}
.xa7{left:1174.680038px;}
.xa6{left:1176.119934px;}
.xa8{left:1187.819962px;}
@media print{
.v1{vertical-align:-3.839968pt;}
.v3{vertical-align:-2.560056pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.920044pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.031552pt;}
.ls0{letter-spacing:0.040127pt;}
.ws2{word-spacing:-13.885982pt;}
.ws0{word-spacing:-10.848452pt;}
.ws4{word-spacing:-7.231720pt;}
.ws1{word-spacing:0.000000pt;}
.ws9{word-spacing:305.672957pt;}
.wsc{word-spacing:371.580885pt;}
.ws8{word-spacing:379.858834pt;}
.wsf{word-spacing:383.640115pt;}
.ws11{word-spacing:388.159782pt;}
.ws6{word-spacing:401.691276pt;}
.ws13{word-spacing:401.762596pt;}
.ws7{word-spacing:402.272601pt;}
.ws5{word-spacing:402.272831pt;}
.wsd{word-spacing:407.601146pt;}
.ws3{word-spacing:408.616291pt;}
.ws15{word-spacing:412.462579pt;}
.ws14{word-spacing:425.471189pt;}
.ws10{word-spacing:427.138071pt;}
.ws12{word-spacing:432.511234pt;}
.wse{word-spacing:433.699919pt;}
.wsb{word-spacing:434.302841pt;}
.wsa{word-spacing:439.207075pt;}
._10{margin-left:-0.898764pt;}
._5{width:0.973205pt;}
._5b{width:5.533084pt;}
._5c{width:7.708855pt;}
._65{width:8.758551pt;}
._59{width:9.806306pt;}
._5a{width:11.088160pt;}
._6a{width:40.952376pt;}
._5d{width:55.858375pt;}
._1{width:59.404163pt;}
._68{width:64.500498pt;}
._4a{width:72.775345pt;}
._5e{width:78.344685pt;}
._7{width:85.128360pt;}
._64{width:86.815139pt;}
._67{width:93.011477pt;}
._32{width:97.327993pt;}
._61{width:100.737988pt;}
._5f{width:108.804230pt;}
._12{width:109.719161pt;}
._63{width:115.855591pt;}
._69{width:119.080762pt;}
._9{width:125.058518pt;}
._60{width:129.908589pt;}
._6b{width:131.041635pt;}
._40{width:134.200181pt;}
._62{width:145.575242pt;}
._14{width:161.146613pt;}
._0{width:168.561009pt;}
._2b{width:169.721661pt;}
._e{width:176.646240pt;}
._46{width:185.627633pt;}
._53{width:194.682701pt;}
._26{width:201.127260pt;}
._66{width:213.061332pt;}
._2d{width:221.629133pt;}
._4f{width:236.648740pt;}
._36{width:246.590173pt;}
._6{width:254.392224pt;}
._58{width:261.264608pt;}
._11{width:268.830849pt;}
._6c{width:271.759643pt;}
._43{width:278.393224pt;}
._3d{width:293.311869pt;}
._22{width:302.874244pt;}
._29{width:329.313369pt;}
._b{width:336.462519pt;}
._4d{width:338.875744pt;}
._17{width:348.206508pt;}
._52{width:354.274409pt;}
._6d{width:365.493462pt;}
._15{width:367.069109pt;}
._57{width:370.574690pt;}
._47{width:391.389177pt;}
._2e{width:427.229145pt;}
._56{width:438.183449pt;}
._37{width:452.189105pt;}
._13{width:501.928703pt;}
._45{width:526.248771pt;}
._2c{width:550.568719pt;}
._54{width:576.975390pt;}
._34{width:587.048699pt;}
._55{width:588.466082pt;}
._1a{width:591.611203pt;}
._3a{width:615.612203pt;}
._4{width:619.150461pt;}
._d{width:624.607087pt;}
._2a{width:625.911204pt;}
._42{width:643.631481pt;}
._30{width:649.022854pt;}
._8{width:650.158175pt;}
._21{width:667.632481pt;}
._44{width:674.639195pt;}
._23{width:698.640195pt;}
._4c{width:703.633981pt;}
._31{width:725.056763pt;}
._4e{width:734.641695pt;}
._19{width:785.818804pt;}
._3b{width:804.543968pt;}
._1d{width:819.903832pt;}
._49{width:822.300324pt;}
._c{width:833.171100pt;}
._39{width:846.781344pt;}
._25{width:857.652120pt;}
._28{width:893.173600pt;}
._35{width:918.134640pt;}
._18{width:942.615660pt;}
._2f{width:956.225904pt;}
._48{width:979.097180pt;}
._3{width:992.057748pt;}
._38{width:1003.578200pt;}
._41{width:1016.058748pt;}
._a{width:1032.548521pt;}
._20{width:1040.539768pt;}
._16{width:1043.306618pt;}
._3e{width:1057.029541pt;}
._f{width:1063.285739pt;}
._4b{width:1076.541268pt;}
._24{width:1081.510561pt;}
._3f{width:1087.766759pt;}
._1e{width:1095.083757pt;}
._3c{width:1110.444357pt;}
._27{width:1112.247779pt;}
._50{width:1117.992081pt;}
._51{width:1148.729299pt;}
._1c{width:1190.757792pt;}
._1b{width:1372.796263pt;}
._2{width:1478.509602pt;}
._1f{width:1502.510602pt;}
._33{width:1526.991622pt;}
.fs8{font-size:26.878960pt;}
.fs7{font-size:29.438840pt;}
.fs6{font-size:31.998760pt;}
.fs5{font-size:34.558680pt;}
.fs4{font-size:37.118560pt;}
.fs2{font-size:48.002000pt;}
.fs3{font-size:53.118000pt;}
.fs1{font-size:61.442400pt;}
.fs0{font-size:78.723196pt;}
.y29{bottom:-8.000000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:3.199952pt;}
.y48{bottom:245.919982pt;}
.y47{bottom:255.040038pt;}
.y46{bottom:264.320007pt;}
.y45{bottom:273.440002pt;}
.y44{bottom:282.559997pt;}
.y43{bottom:291.839996pt;}
.y42{bottom:300.960021pt;}
.y2d{bottom:305.920044pt;}
.y41{bottom:310.240020pt;}
.y2c{bottom:317.920044pt;}
.y40{bottom:319.360015pt;}
.y3f{bottom:328.640014pt;}
.y2b{bottom:329.920044pt;}
.y3e{bottom:337.760009pt;}
.y2a{bottom:341.920044pt;}
.y3d{bottom:346.880004pt;}
.y3c{bottom:356.160003pt;}
.y24{bottom:357.280030pt;}
.y3b{bottom:365.279998pt;}
.y3a{bottom:374.559997pt;}
.y39{bottom:383.680022pt;}
.y38{bottom:392.800018pt;}
.y37{bottom:402.080016pt;}
.y2f{bottom:404.160035pt;}
.y23{bottom:405.440064pt;}
.y36{bottom:411.200011pt;}
.y28{bottom:416.160035pt;}
.y26{bottom:416.960083pt;}
.y2e{bottom:419.200074pt;}
.y35{bottom:420.480010pt;}
.y34{bottom:430.080016pt;}
.y22{bottom:435.200074pt;}
.y32{bottom:441.279998pt;}
.y4a{bottom:449.440002pt;}
.y21{bottom:454.240052pt;}
.y49{bottom:457.600005pt;}
.y20{bottom:473.120057pt;}
.y33{bottom:480.160003pt;}
.y31{bottom:489.760009pt;}
.y1f{bottom:492.160035pt;}
.y1e{bottom:511.200074pt;}
.y1d{bottom:529.120057pt;}
.y30{bottom:539.360015pt;}
.y1c{bottom:544.160035pt;}
.y1b{bottom:559.200074pt;}
.y1a{bottom:574.240052pt;}
.y19{bottom:589.280030pt;}
.y18{bottom:604.480042pt;}
.y17{bottom:619.520050pt;}
.y9{bottom:625.280060pt;}
.y16{bottom:634.560059pt;}
.y15{bottom:649.600068pt;}
.y14{bottom:664.640046pt;}
.y13{bottom:679.680054pt;}
.y12{bottom:694.720063pt;}
.y11{bottom:709.920044pt;}
.y10{bottom:724.960053pt;}
.yf{bottom:740.000061pt;}
.ye{bottom:755.040070pt;}
.yd{bottom:770.080048pt;}
.yc{bottom:785.120057pt;}
.yb{bottom:800.160065pt;}
.ya{bottom:815.360047pt;}
.y8{bottom:830.400055pt;}
.y7{bottom:845.440064pt;}
.y6{bottom:860.480072pt;}
.y5{bottom:875.520066pt;}
.y4{bottom:890.560059pt;}
.y3{bottom:905.600052pt;}
.y25{bottom:917.600052pt;}
.y2{bottom:932.800064pt;}
.y1{bottom:955.040055pt;}
.h8{height:3.360046pt;}
.h7{height:13.119996pt;}
.h10{height:29.280721pt;}
.he{height:30.143187pt;}
.hd{height:32.764355pt;}
.hf{height:36.919193pt;}
.hc{height:38.006651pt;}
.h5{height:47.744177pt;}
.h4{height:49.150485pt;}
.h6{height:49.664221pt;}
.hb{height:54.388890pt;}
.h3{height:62.912457pt;}
.h2{height:80.606710pt;}
.h9{height:793.760013pt;}
.ha{height:794.000000pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w25{width:2.400025pt;}
.w20{width:2.719970pt;}
.w24{width:2.719971pt;}
.w4{width:2.719993pt;}
.w10{width:2.720001pt;}
.w22{width:2.720002pt;}
.w23{width:2.720032pt;}
.w5{width:3.040001pt;}
.w2{width:3.680001pt;}
.we{width:4.000000pt;}
.w14{width:4.160003pt;}
.w1d{width:4.639985pt;}
.w15{width:4.639999pt;}
.w9{width:4.640000pt;}
.w1c{width:4.640014pt;}
.w21{width:4.799988pt;}
.w11{width:5.119995pt;}
.w7{width:5.439995pt;}
.w1a{width:5.759980pt;}
.w1f{width:5.760010pt;}
.w1b{width:5.919983pt;}
.w3{width:5.919998pt;}
.wc{width:5.919999pt;}
.w8{width:5.920005pt;}
.w1e{width:5.920014pt;}
.w17{width:6.239991pt;}
.w6{width:6.239998pt;}
.wd{width:6.240005pt;}
.w13{width:6.240006pt;}
.w19{width:6.240021pt;}
.w18{width:6.399993pt;}
.w16{width:6.399994pt;}
.wf{width:6.400009pt;}
.wa{width:6.719993pt;}
.w12{width:9.599991pt;}
.wb{width:9.600006pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.w26{width:1122.560053pt;}
.w27{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x88{left:12.160000pt;}
.x89{left:48.639999pt;}
.x1{left:71.839996pt;}
.xa{left:75.360001pt;}
.x78{left:77.279999pt;}
.x4{left:80.639999pt;}
.x79{left:82.559998pt;}
.xb{left:85.120003pt;}
.xc{left:87.680000pt;}
.xd{left:90.720001pt;}
.x7a{left:93.440002pt;}
.x7b{left:96.160004pt;}
.xe{left:97.120003pt;}
.x7c{left:98.879997pt;}
.xf{left:102.559998pt;}
.x10{left:108.480003pt;}
.x11{left:113.120003pt;}
.x5{left:117.599998pt;}
.x12{left:119.839996pt;}
.x13{left:129.440002pt;}
.x14{left:135.360001pt;}
.x15{left:141.759995pt;}
.x16{left:145.759995pt;}
.x17{left:152.000000pt;}
.x18{left:154.720001pt;}
.x19{left:159.839996pt;}
.x8a{left:163.520004pt;}
.x1a{left:166.240005pt;}
.x8c{left:172.320007pt;}
.x1b{left:175.839996pt;}
.x8b{left:178.080002pt;}
.x1c{left:182.080002pt;}
.x1d{left:186.240005pt;}
.x1e{left:192.160004pt;}
.x1f{left:196.960007pt;}
.x20{left:203.199997pt;}
.x21{left:205.919998pt;}
.x22{left:208.639999pt;}
.x23{left:214.720001pt;}
.x24{left:217.440002pt;}
.x25{left:222.080002pt;}
.x26{left:228.479996pt;}
.x8e{left:235.039993pt;}
.x8d{left:236.320007pt;}
.x27{left:238.080002pt;}
.x28{left:247.520004pt;}
.x29{left:253.600006pt;}
.x2a{left:256.320007pt;}
.x2b{left:262.559998pt;}
.x2c{left:268.959991pt;}
.x2d{left:275.200012pt;}
.x2e{left:277.920013pt;}
.x2f{left:283.679993pt;}
.x30{left:293.279999pt;}
.x31{left:302.880005pt;}
.x32{left:308.799988pt;}
.x33{left:313.440002pt;}
.x34{left:318.239990pt;}
.x35{left:324.160004pt;}
.x36{left:326.880005pt;}
.x37{left:332.640015pt;}
.x38{left:335.359985pt;}
.x39{left:341.600006pt;}
.x3a{left:347.679993pt;}
.x3b{left:351.679993pt;}
.x3c{left:355.839996pt;}
.x3d{left:361.600006pt;}
.x8f{left:364.480011pt;}
.x3e{left:366.239990pt;}
.x3f{left:369.119995pt;}
.x91{left:373.279999pt;}
.x40{left:375.359985pt;}
.x90{left:379.040009pt;}
.x41{left:381.760010pt;}
.x42{left:387.679993pt;}
.x43{left:390.399994pt;}
.x44{left:393.119995pt;}
.x45{left:395.839996pt;}
.x46{left:398.559998pt;}
.x47{left:401.279999pt;}
.x48{left:404.000000pt;}
.x49{left:406.720001pt;}
.x4a{left:409.440002pt;}
.x4b{left:412.160004pt;}
.x4c{left:414.880005pt;}
.x4d{left:417.440002pt;}
.x4e{left:420.160004pt;}
.x4f{left:422.880005pt;}
.x50{left:425.600006pt;}
.x51{left:428.320007pt;}
.x52{left:431.040009pt;}
.x53{left:433.760010pt;}
.x6{left:435.519989pt;}
.x54{left:436.480011pt;}
.x55{left:439.200012pt;}
.x56{left:441.920013pt;}
.x57{left:444.640015pt;}
.x58{left:447.359985pt;}
.x59{left:450.079987pt;}
.x5a{left:452.799988pt;}
.x5b{left:455.519989pt;}
.x5c{left:458.239990pt;}
.x5d{left:460.959991pt;}
.x5e{left:463.679993pt;}
.x5f{left:466.399994pt;}
.x60{left:469.119995pt;}
.x61{left:471.839996pt;}
.x62{left:474.399994pt;}
.x63{left:477.119995pt;}
.x64{left:479.839996pt;}
.x65{left:482.559998pt;}
.x66{left:485.279999pt;}
.x67{left:488.000000pt;}
.x68{left:490.720001pt;}
.x69{left:493.440002pt;}
.x6a{left:496.160004pt;}
.x7{left:498.079987pt;}
.x6b{left:501.600006pt;}
.x6c{left:504.320007pt;}
.x6d{left:507.040009pt;}
.x86{left:508.000000pt;}
.x6e{left:509.760010pt;}
.x6f{left:512.479980pt;}
.x70{left:515.200012pt;}
.x71{left:517.919983pt;}
.x7f{left:519.039978pt;}
.x72{left:520.640015pt;}
.x2{left:522.080017pt;}
.x73{left:523.359985pt;}
.x74{left:526.080017pt;}
.x75{left:528.799988pt;}
.x76{left:531.520020pt;}
.x77{left:534.239990pt;}
.x82{left:536.799988pt;}
.x7e{left:539.039978pt;}
.x84{left:540.000000pt;}
.x9{left:541.119995pt;}
.x7d{left:544.960022pt;}
.x83{left:546.400024pt;}
.x87{left:547.679993pt;}
.x81{left:549.599976pt;}
.x8{left:551.679993pt;}
.x85{left:552.640015pt;}
.x80{left:554.719971pt;}
.x92{left:565.440002pt;}
.x94{left:574.239990pt;}
.x93{left:580.000000pt;}
.x3{left:613.440002pt;}
.x96{left:640.799988pt;}
.x95{left:642.239990pt;}
.x97{left:652.640015pt;}
.x99{left:719.359985pt;}
.x98{left:724.000000pt;}
.x9b{left:774.719971pt;}
.x9a{left:778.880005pt;}
.x9c{left:806.400024pt;}
.x9e{left:856.000000pt;}
.x9d{left:857.280029pt;}
.x9f{left:867.679993pt;}
.xa1{left:926.239990pt;}
.xa2{left:928.000000pt;}
.xa0{left:930.080017pt;}
.xa3{left:974.080017pt;}
.xa5{left:982.880005pt;}
.xa4{left:988.640015pt;}
.xa7{left:1044.160034pt;}
.xa6{left:1045.439941pt;}
.xa8{left:1055.839966pt;}
}




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