
    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_0bae6efcd01ec4986946e784.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.991699;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_de6e131d2981d96204c6d9e4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.991699;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_6efa00a6c6fef42ff952ec58.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_3eda141d86a26b694ea1977f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.725586;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_8d4af1f57893ef10e53b6ec8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c6fd5d6c5b41f49aa674cfff.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_519d029e91a165921f4bdde0.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_01e737aefc913384cee72b2d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_335106b3b0d4d6456d3f7d3d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.891113;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:32.053252px;}
.ls2{letter-spacing:847.441593px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0{word-spacing:-16.558425px;}
.ws1{word-spacing:0.000000px;}
._8{margin-left:-2.115779px;}
._0{margin-left:-1.078704px;}
._7{width:1.102507px;}
._1b{width:2.128094px;}
._1a{width:3.231998px;}
._2d{width:4.879664px;}
._32{width:5.944888px;}
._1c{width:6.964888px;}
._1d{width:8.092491px;}
._20{width:9.176006px;}
._26{width:10.239214px;}
._19{width:11.440319px;}
._2f{width:12.440810px;}
._22{width:13.497962px;}
._21{width:15.482567px;}
._d{width:17.912234px;}
._11{width:19.792234px;}
._15{width:21.127257px;}
._28{width:22.594747px;}
._e{width:24.098459px;}
._24{width:26.174989px;}
._17{width:27.340547px;}
._18{width:28.363030px;}
._3{width:30.148850px;}
._2{width:31.374380px;}
._25{width:32.631132px;}
._16{width:34.284995px;}
._5{width:35.476167px;}
._29{width:37.144428px;}
._2a{width:38.703171px;}
._3c{width:40.310812px;}
._23{width:41.676651px;}
._10{width:42.838327px;}
._42{width:44.697838px;}
._37{width:46.418621px;}
._2c{width:47.533287px;}
._1e{width:48.659260px;}
._1f{width:49.888387px;}
._3b{width:51.179996px;}
._3f{width:52.265039px;}
._3a{width:53.981604px;}
._38{width:55.051589px;}
._2e{width:56.901217px;}
._34{width:58.796639px;}
._35{width:59.927191px;}
._30{width:62.260196px;}
._31{width:63.762174px;}
._40{width:65.397758px;}
._41{width:66.626885px;}
._33{width:68.078412px;}
._27{width:69.327797px;}
._2b{width:71.314808px;}
._13{width:73.169869px;}
._14{width:74.598111px;}
._43{width:75.746645px;}
._a{width:77.735855px;}
._3e{width:79.094163px;}
._3d{width:80.836937px;}
._39{width:82.329007px;}
._4{width:84.084200px;}
._36{width:85.142231px;}
._12{width:92.759432px;}
._b{width:113.989491px;}
._c{width:115.357740px;}
._9{width:120.565515px;}
._6{width:122.333644px;}
._f{width:897.117746px;}
._1{width:941.037723px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,102,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.235500px;}
.fs2{font-size:53.995050px;}
.fs0{font-size:59.754600px;}
.fs4{font-size:66.233700px;}
.fs3{font-size:84.232350px;}
.y0{bottom:0.000000px;}
.y6{bottom:55.980010px;}
.y5{bottom:71.100013px;}
.y4{bottom:85.860008px;}
.y64{bottom:109.800041px;}
.y7f{bottom:111.240005px;}
.ya9{bottom:111.420043px;}
.ya6{bottom:113.220016px;}
.y2b{bottom:114.480010px;}
.y63{bottom:128.700027px;}
.y7e{bottom:129.420043px;}
.ya8{bottom:130.499999px;}
.ya5{bottom:131.220016px;}
.y41{bottom:133.019988px;}
.y2a{bottom:133.379997px;}
.y7d{bottom:147.420043px;}
.y62{bottom:147.779983px;}
.ya4{bottom:149.399986px;}
.y40{bottom:151.920043px;}
.y29{bottom:152.460022px;}
.y7c{bottom:165.420043px;}
.y52{bottom:166.680037px;}
.ya3{bottom:167.399986px;}
.y3f{bottom:170.820030px;}
.y28{bottom:171.360008px;}
.y7b{bottom:183.420043px;}
.ya2{bottom:185.399986px;}
.y51{bottom:185.580024px;}
.y61{bottom:185.759994px;}
.y3e{bottom:189.899986px;}
.y27{bottom:190.259994px;}
.y7a{bottom:201.420043px;}
.ya1{bottom:203.399986px;}
.y50{bottom:204.659980px;}
.y3d{bottom:208.800041px;}
.y26{bottom:209.340018px;}
.y79{bottom:219.420043px;}
.ya0{bottom:221.399986px;}
.y4f{bottom:223.560035px;}
.y3c{bottom:224.100013px;}
.y25{bottom:228.240005px;}
.y78{bottom:237.420043px;}
.y9f{bottom:239.399986px;}
.y4e{bottom:242.460022px;}
.y60{bottom:242.639991px;}
.y24{bottom:247.320030px;}
.ya7{bottom:253.980010px;}
.y77{bottom:255.600013px;}
.y9e{bottom:257.399986px;}
.y4d{bottom:261.539978px;}
.y23{bottom:266.220016px;}
.y76{bottom:273.600013px;}
.y9d{bottom:275.580024px;}
.y5f{bottom:276.840018px;}
.y4c{bottom:280.440033px;}
.y22{bottom:285.300041px;}
.y75{bottom:291.600013px;}
.y9c{bottom:293.580024px;}
.y4b{bottom:299.519988px;}
.y21{bottom:304.200027px;}
.y74{bottom:309.600013px;}
.y9b{bottom:311.580024px;}
.y4a{bottom:318.420009px;}
.y20{bottom:323.100013px;}
.y73{bottom:327.600013px;}
.y9a{bottom:329.580024px;}
.y49{bottom:337.319996px;}
.y1f{bottom:342.180004px;}
.y72{bottom:345.600013px;}
.y99{bottom:347.580024px;}
.y48{bottom:356.400021px;}
.y1e{bottom:361.080024px;}
.y71{bottom:363.600013px;}
.y98{bottom:365.580024px;}
.y47{bottom:375.300006px;}
.y1d{bottom:376.560000px;}
.y2d{bottom:380.160015px;}
.y70{bottom:381.780017px;}
.y97{bottom:383.580024px;}
.y46{bottom:394.379997px;}
.y1c{bottom:399.060000px;}
.y6f{bottom:399.780017px;}
.y3b{bottom:401.040012px;}
.y96{bottom:401.580024px;}
.y45{bottom:413.280017px;}
.y6e{bottom:417.780017px;}
.y1b{bottom:417.960022px;}
.y95{bottom:419.759994px;}
.y3a{bottom:420.120003px;}
.y44{bottom:432.180004px;}
.y6d{bottom:435.780017px;}
.y1a{bottom:437.040012px;}
.y94{bottom:437.759994px;}
.y39{bottom:439.020023px;}
.y5e{bottom:439.740005px;}
.y43{bottom:451.259994px;}
.y6c{bottom:453.780017px;}
.y93{bottom:455.759994px;}
.y19{bottom:455.939998px;}
.y38{bottom:457.920009px;}
.y5d{bottom:458.819996px;}
.y42{bottom:466.560000px;}
.y6b{bottom:471.780017px;}
.y92{bottom:473.759994px;}
.y18{bottom:475.020023px;}
.y37{bottom:476.999999px;}
.y5c{bottom:477.720016px;}
.y6a{bottom:489.780017px;}
.y91{bottom:491.759994px;}
.y17{bottom:493.920009px;}
.y36{bottom:495.900021px;}
.y5b{bottom:496.620003px;}
.y69{bottom:507.960022px;}
.y90{bottom:509.759994px;}
.y16{bottom:512.819996px;}
.y35{bottom:514.980010px;}
.y5a{bottom:515.700027px;}
.y68{bottom:525.960022px;}
.y8f{bottom:527.759994px;}
.y15{bottom:531.900021px;}
.y34{bottom:533.879997px;}
.y59{bottom:534.600013px;}
.y67{bottom:543.960022px;}
.y8e{bottom:545.939998px;}
.y14{bottom:550.800006px;}
.y33{bottom:552.780017px;}
.y58{bottom:553.680004px;}
.y66{bottom:561.960022px;}
.y8d{bottom:563.939998px;}
.y13{bottom:569.879997px;}
.y32{bottom:571.860008px;}
.y57{bottom:572.580024px;}
.y65{bottom:576.540012px;}
.y8c{bottom:581.939998px;}
.y12{bottom:588.780017px;}
.y31{bottom:590.759994px;}
.y56{bottom:591.480010px;}
.y8b{bottom:599.939998px;}
.y11{bottom:607.680004px;}
.y30{bottom:609.840018px;}
.y55{bottom:610.560018px;}
.y8a{bottom:617.940015px;}
.y10{bottom:626.760012px;}
.y2f{bottom:628.740005px;}
.y54{bottom:629.460005px;}
.y89{bottom:635.940015px;}
.y2e{bottom:644.040012px;}
.y53{bottom:644.940015px;}
.yf{bottom:645.660015px;}
.y88{bottom:653.940015px;}
.ye{bottom:664.740005px;}
.y87{bottom:672.120003px;}
.yd{bottom:683.640008px;}
.y86{bottom:690.120003px;}
.y2c{bottom:698.940015px;}
.yc{bottom:702.540012px;}
.y85{bottom:708.120003px;}
.yb{bottom:721.620003px;}
.y84{bottom:726.120003px;}
.ya{bottom:740.520006px;}
.y83{bottom:744.120003px;}
.y9{bottom:759.600013px;}
.y82{bottom:762.120010px;}
.y8{bottom:778.500008px;}
.y81{bottom:780.120010px;}
.y7{bottom:797.580007px;}
.y80{bottom:798.300006px;}
.y3{bottom:815.940007px;}
.y2{bottom:833.400012px;}
.y1{bottom:848.340010px;}
.h3{height:37.895957px;}
.h4{height:40.651598px;}
.h7{height:46.441208px;}
.h6{height:46.732274px;}
.h2{height:46.945875px;}
.h9{height:48.219945px;}
.h8{height:48.413989px;}
.h5{height:70.988787px;}
.h0{height:892.980015px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w0{width:629.279985px;}
.x0{left:0.000000px;}
.x6{left:63.899999px;}
.x24{left:66.780001px;}
.xb{left:69.299998px;}
.x1b{left:73.620002px;}
.x14{left:75.239997px;}
.x1a{left:77.400003px;}
.x20{left:85.680005px;}
.x28{left:87.659998px;}
.x11{left:92.519998px;}
.x23{left:94.319996px;}
.x1e{left:99.000000px;}
.x27{left:102.239997px;}
.x1f{left:104.219999px;}
.x9{left:107.459997px;}
.x4{left:112.140000px;}
.x7{left:117.000000px;}
.x21{left:118.260003px;}
.x8{left:128.159998px;}
.x12{left:141.120002px;}
.x1c{left:146.159998px;}
.x2a{left:177.840002px;}
.x25{left:198.360008px;}
.x2b{left:209.879998px;}
.x16{left:235.620002px;}
.x2{left:240.300007px;}
.x18{left:251.639992px;}
.x2c{left:260.280001px;}
.x29{left:264.960005px;}
.xd{left:270.719999px;}
.x5{left:297.180005px;}
.x3{left:314.639992px;}
.x2d{left:325.620002px;}
.x15{left:375.300007px;}
.xc{left:378.000000px;}
.x26{left:463.500000px;}
.x13{left:475.740006px;}
.x22{left:477.720017px;}
.x19{left:482.759994px;}
.xa{left:485.279983px;}
.x1d{left:491.399987px;}
.xf{left:498.959988px;}
.x17{left:502.740006px;}
.xe{left:507.779983px;}
.x10{left:516.060001px;}
.x1{left:565.560001px;}
.x2e{left:571.319996px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:28.491779pt;}
.ls2{letter-spacing:753.281416pt;}
.ws0{word-spacing:-14.718600pt;}
.ws1{word-spacing:0.000000pt;}
._8{margin-left:-1.880692pt;}
._0{margin-left:-0.958848pt;}
._7{width:0.980006pt;}
._1b{width:1.891639pt;}
._1a{width:2.872887pt;}
._2d{width:4.337479pt;}
._32{width:5.284345pt;}
._1c{width:6.191011pt;}
._1d{width:7.193325pt;}
._20{width:8.156449pt;}
._26{width:9.101524pt;}
._19{width:10.169173pt;}
._2f{width:11.058498pt;}
._22{width:11.998189pt;}
._21{width:13.762282pt;}
._d{width:15.921985pt;}
._11{width:17.593097pt;}
._15{width:18.779784pt;}
._28{width:20.084220pt;}
._e{width:21.420853pt;}
._24{width:23.266657pt;}
._17{width:24.302708pt;}
._18{width:25.211582pt;}
._3{width:26.798978pt;}
._2{width:27.888338pt;}
._25{width:29.005451pt;}
._16{width:30.475551pt;}
._5{width:31.534371pt;}
._29{width:33.017269pt;}
._2a{width:34.402819pt;}
._3c{width:35.831833pt;}
._23{width:37.045912pt;}
._10{width:38.078513pt;}
._42{width:39.731412pt;}
._37{width:41.260996pt;}
._2c{width:42.251811pt;}
._1e{width:43.252676pt;}
._1f{width:44.345233pt;}
._3b{width:45.493330pt;}
._3f{width:46.457812pt;}
._3a{width:47.983648pt;}
._38{width:48.934745pt;}
._2e{width:50.578859pt;}
._34{width:52.263679pt;}
._35{width:53.268614pt;}
._30{width:55.342396pt;}
._31{width:56.677488pt;}
._40{width:58.131341pt;}
._41{width:59.223898pt;}
._33{width:60.514144pt;}
._27{width:61.624708pt;}
._2b{width:63.390940pt;}
._13{width:65.039884pt;}
._14{width:66.309432pt;}
._43{width:67.330351pt;}
._a{width:69.098537pt;}
._3e{width:70.305923pt;}
._3d{width:71.855055pt;}
._39{width:73.181339pt;}
._4{width:74.741511pt;}
._36{width:75.681983pt;}
._12{width:82.452829pt;}
._b{width:101.323992pt;}
._c{width:102.540213pt;}
._9{width:107.169346pt;}
._6{width:108.741017pt;}
._f{width:797.437996pt;}
._1{width:836.477976pt;}
.fs1{font-size:42.876000pt;}
.fs2{font-size:47.995600pt;}
.fs0{font-size:53.115200pt;}
.fs4{font-size:58.874400pt;}
.fs3{font-size:74.873200pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:49.760009pt;}
.y5{bottom:63.200011pt;}
.y4{bottom:76.320007pt;}
.y64{bottom:97.600036pt;}
.y7f{bottom:98.880004pt;}
.ya9{bottom:99.040038pt;}
.ya6{bottom:100.640014pt;}
.y2b{bottom:101.760009pt;}
.y63{bottom:114.400024pt;}
.y7e{bottom:115.040038pt;}
.ya8{bottom:115.999999pt;}
.ya5{bottom:116.640014pt;}
.y41{bottom:118.239989pt;}
.y2a{bottom:118.559997pt;}
.y7d{bottom:131.040038pt;}
.y62{bottom:131.359985pt;}
.ya4{bottom:132.799987pt;}
.y40{bottom:135.040038pt;}
.y29{bottom:135.520019pt;}
.y7c{bottom:147.040038pt;}
.y52{bottom:148.160033pt;}
.ya3{bottom:148.799987pt;}
.y3f{bottom:151.840026pt;}
.y28{bottom:152.320007pt;}
.y7b{bottom:163.040038pt;}
.ya2{bottom:164.799987pt;}
.y51{bottom:164.960021pt;}
.y61{bottom:165.119994pt;}
.y3e{bottom:168.799987pt;}
.y27{bottom:169.119994pt;}
.y7a{bottom:179.040038pt;}
.ya1{bottom:180.799987pt;}
.y50{bottom:181.919982pt;}
.y3d{bottom:185.600036pt;}
.y26{bottom:186.080016pt;}
.y79{bottom:195.040038pt;}
.ya0{bottom:196.799987pt;}
.y4f{bottom:198.720031pt;}
.y3c{bottom:199.200011pt;}
.y25{bottom:202.880004pt;}
.y78{bottom:211.040038pt;}
.y9f{bottom:212.799987pt;}
.y4e{bottom:215.520019pt;}
.y60{bottom:215.679992pt;}
.y24{bottom:219.840026pt;}
.ya7{bottom:225.760009pt;}
.y77{bottom:227.200011pt;}
.y9e{bottom:228.799987pt;}
.y4d{bottom:232.479980pt;}
.y23{bottom:236.640014pt;}
.y76{bottom:243.200011pt;}
.y9d{bottom:244.960021pt;}
.y5f{bottom:246.080016pt;}
.y4c{bottom:249.280029pt;}
.y22{bottom:253.600036pt;}
.y75{bottom:259.200011pt;}
.y9c{bottom:260.960021pt;}
.y4b{bottom:266.239989pt;}
.y21{bottom:270.400024pt;}
.y74{bottom:275.200011pt;}
.y9b{bottom:276.960021pt;}
.y4a{bottom:283.040008pt;}
.y20{bottom:287.200011pt;}
.y73{bottom:291.200011pt;}
.y9a{bottom:292.960021pt;}
.y49{bottom:299.839996pt;}
.y1f{bottom:304.160003pt;}
.y72{bottom:307.200011pt;}
.y99{bottom:308.960021pt;}
.y48{bottom:316.800018pt;}
.y1e{bottom:320.960021pt;}
.y71{bottom:323.200011pt;}
.y98{bottom:324.960021pt;}
.y47{bottom:333.600005pt;}
.y1d{bottom:334.720000pt;}
.y2d{bottom:337.920013pt;}
.y70{bottom:339.360015pt;}
.y97{bottom:340.960021pt;}
.y46{bottom:350.559997pt;}
.y1c{bottom:354.720000pt;}
.y6f{bottom:355.360015pt;}
.y3b{bottom:356.480010pt;}
.y96{bottom:356.960021pt;}
.y45{bottom:367.360015pt;}
.y6e{bottom:371.360015pt;}
.y1b{bottom:371.520019pt;}
.y95{bottom:373.119994pt;}
.y3a{bottom:373.440002pt;}
.y44{bottom:384.160003pt;}
.y6d{bottom:387.360015pt;}
.y1a{bottom:388.480010pt;}
.y94{bottom:389.119994pt;}
.y39{bottom:390.240020pt;}
.y5e{bottom:390.880004pt;}
.y43{bottom:401.119994pt;}
.y6c{bottom:403.360015pt;}
.y93{bottom:405.119994pt;}
.y19{bottom:405.279998pt;}
.y38{bottom:407.040008pt;}
.y5d{bottom:407.839996pt;}
.y42{bottom:414.720000pt;}
.y6b{bottom:419.360015pt;}
.y92{bottom:421.119994pt;}
.y18{bottom:422.240020pt;}
.y37{bottom:423.999999pt;}
.y5c{bottom:424.640014pt;}
.y6a{bottom:435.360015pt;}
.y91{bottom:437.119994pt;}
.y17{bottom:439.040008pt;}
.y36{bottom:440.800018pt;}
.y5b{bottom:441.440002pt;}
.y69{bottom:451.520019pt;}
.y90{bottom:453.119994pt;}
.y16{bottom:455.839996pt;}
.y35{bottom:457.760009pt;}
.y5a{bottom:458.400024pt;}
.y68{bottom:467.520019pt;}
.y8f{bottom:469.119994pt;}
.y15{bottom:472.800018pt;}
.y34{bottom:474.559997pt;}
.y59{bottom:475.200011pt;}
.y67{bottom:483.520019pt;}
.y8e{bottom:485.279998pt;}
.y14{bottom:489.600005pt;}
.y33{bottom:491.360015pt;}
.y58{bottom:492.160003pt;}
.y66{bottom:499.520019pt;}
.y8d{bottom:501.279998pt;}
.y13{bottom:506.559997pt;}
.y32{bottom:508.320007pt;}
.y57{bottom:508.960021pt;}
.y65{bottom:512.480010pt;}
.y8c{bottom:517.279998pt;}
.y12{bottom:523.360015pt;}
.y31{bottom:525.119994pt;}
.y56{bottom:525.760009pt;}
.y8b{bottom:533.279998pt;}
.y11{bottom:540.160003pt;}
.y30{bottom:542.080016pt;}
.y55{bottom:542.720016pt;}
.y8a{bottom:549.280013pt;}
.y10{bottom:557.120010pt;}
.y2f{bottom:558.880004pt;}
.y54{bottom:559.520004pt;}
.y89{bottom:565.280013pt;}
.y2e{bottom:572.480010pt;}
.y53{bottom:573.280013pt;}
.yf{bottom:573.920013pt;}
.y88{bottom:581.280013pt;}
.ye{bottom:590.880004pt;}
.y87{bottom:597.440002pt;}
.yd{bottom:607.680007pt;}
.y86{bottom:613.440002pt;}
.y2c{bottom:621.280013pt;}
.yc{bottom:624.480010pt;}
.y85{bottom:629.440002pt;}
.yb{bottom:641.440002pt;}
.y84{bottom:645.440002pt;}
.ya{bottom:658.240005pt;}
.y83{bottom:661.440002pt;}
.y9{bottom:675.200011pt;}
.y82{bottom:677.440009pt;}
.y8{bottom:692.000007pt;}
.y81{bottom:693.440009pt;}
.y7{bottom:708.960006pt;}
.y80{bottom:709.600005pt;}
.y3{bottom:725.280006pt;}
.y2{bottom:740.800010pt;}
.y1{bottom:754.080009pt;}
.h3{height:33.685295pt;}
.h4{height:36.134754pt;}
.h7{height:41.281073pt;}
.h6{height:41.539799pt;}
.h2{height:41.729666pt;}
.h9{height:42.862173pt;}
.h8{height:43.034657pt;}
.h5{height:63.101144pt;}
.h0{height:793.760013pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w0{width:559.359987pt;}
.x0{left:0.000000pt;}
.x6{left:56.799999pt;}
.x24{left:59.360001pt;}
.xb{left:61.599998pt;}
.x1b{left:65.440002pt;}
.x14{left:66.879997pt;}
.x1a{left:68.800003pt;}
.x20{left:76.160004pt;}
.x28{left:77.919998pt;}
.x11{left:82.239998pt;}
.x23{left:83.839996pt;}
.x1e{left:88.000000pt;}
.x27{left:90.879997pt;}
.x1f{left:92.639999pt;}
.x9{left:95.519997pt;}
.x4{left:99.680000pt;}
.x7{left:104.000000pt;}
.x21{left:105.120003pt;}
.x8{left:113.919998pt;}
.x12{left:125.440002pt;}
.x1c{left:129.919998pt;}
.x2a{left:158.080002pt;}
.x25{left:176.320007pt;}
.x2b{left:186.559998pt;}
.x16{left:209.440002pt;}
.x2{left:213.600006pt;}
.x18{left:223.679993pt;}
.x2c{left:231.360001pt;}
.x29{left:235.520004pt;}
.xd{left:240.639999pt;}
.x5{left:264.160004pt;}
.x3{left:279.679993pt;}
.x2d{left:289.440002pt;}
.x15{left:333.600006pt;}
.xc{left:336.000000pt;}
.x26{left:412.000000pt;}
.x13{left:422.880005pt;}
.x22{left:424.640015pt;}
.x19{left:429.119995pt;}
.xa{left:431.359985pt;}
.x1d{left:436.799988pt;}
.xf{left:443.519989pt;}
.x17{left:446.880005pt;}
.xe{left:451.359985pt;}
.x10{left:458.720001pt;}
.x1{left:502.720001pt;}
.x2e{left:507.839996pt;}
}




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