
    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_60f7d1b723ca60b697f978ea.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6c2c04fd40e7d32aa4d0d993.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_bc909ed16a7b31a10bf666bf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.745117;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_fa37bb98197e37003cac812c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ec42f80740370f91e45712ed.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c2736b4f8f2133754a55a42a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.053223;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:-82.080027px;}
.v4{vertical-align:-15.120207px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880063px;}
.v2{vertical-align:27.360009px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.049946px;}
.ls2{letter-spacing:0.177060px;}
.ls0{letter-spacing:938.527153px;}
.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;}
}
.ws7{word-spacing:-13.553062px;}
.ws2{word-spacing:-13.503116px;}
.ws6{word-spacing:-12.057638px;}
.ws1{word-spacing:-10.900104px;}
.ws0{word-spacing:-9.970031px;}
.ws4{word-spacing:-8.785141px;}
.ws5{word-spacing:-6.832887px;}
.ws3{word-spacing:0.000000px;}
._1b{margin-left:-3.771182px;}
._5{margin-left:-2.528425px;}
._1{margin-left:-1.231951px;}
._0{width:1.453645px;}
._2{width:2.809553px;}
._9{width:4.302569px;}
._a{width:5.356970px;}
._d{width:6.852752px;}
._1c{width:7.858025px;}
._b{width:8.882120px;}
._c{width:9.899697px;}
._3{width:10.958028px;}
._4{width:11.963995px;}
._10{width:14.639025px;}
._17{width:15.953487px;}
._18{width:17.020886px;}
._7{width:18.343419px;}
._6{width:19.419580px;}
._f{width:20.888071px;}
._e{width:21.988066px;}
._11{width:23.716153px;}
._8{width:25.472461px;}
._20{width:26.533460px;}
._1f{width:27.798516px;}
._1e{width:31.365524px;}
._1d{width:32.373076px;}
._15{width:33.416220px;}
._16{width:35.751243px;}
._14{width:47.716440px;}
._13{width:49.432221px;}
._12{width:51.943033px;}
._19{width:71.456907px;}
._1a{width:78.221851px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.234015px;}
.fs3{font-size:35.992890px;}
.fs9{font-size:38.872305px;}
.fs1{font-size:41.751720px;}
.fs0{font-size:48.230550px;}
.fs8{font-size:51.110100px;}
.fs6{font-size:59.748300px;}
.fs5{font-size:71.985600px;}
.fs2{font-size:77.744700px;}
.fs4{font-size:84.223355px;}
.y0{bottom:0.000000px;}
.y7c{bottom:2.340019px;}
.y31{bottom:3.960023px;}
.y7b{bottom:53.820054px;}
.y7a{bottom:55.800065px;}
.ya{bottom:56.520081px;}
.y79{bottom:69.660073px;}
.y9{bottom:73.080048px;}
.y8{bottom:86.760018px;}
.y76{bottom:88.380021px;}
.y81{bottom:92.160073px;}
.yb2{bottom:96.120025px;}
.y80{bottom:102.960046px;}
.y7f{bottom:103.140015px;}
.y75{bottom:106.920067px;}
.ycf{bottom:114.120025px;}
.yb1{bottom:114.480034px;}
.y46{bottom:114.840042px;}
.y74{bottom:117.720040px;}
.y7e{bottom:121.320054px;}
.y83{bottom:121.500023px;}
.y82{bottom:132.300065px;}
.yce{bottom:132.480034px;}
.yb0{bottom:132.840042px;}
.y45{bottom:133.200050px;}
.y7d{bottom:139.680061px;}
.y8c{bottom:145.260018px;}
.ycd{bottom:150.840042px;}
.y44{bottom:151.560059px;}
.y73{bottom:158.040070px;}
.yaf{bottom:160.200050px;}
.y8b{bottom:163.620025px;}
.ycc{bottom:169.200050px;}
.y43{bottom:169.740029px;}
.y72{bottom:176.400078px;}
.yd9{bottom:178.200050px;}
.yae{bottom:178.560059px;}
.y8a{bottom:181.980034px;}
.y42{bottom:188.100037px;}
.y71{bottom:194.580048px;}
.ycb{bottom:196.380021px;}
.yd8{bottom:196.560059px;}
.yad{bottom:196.740029px;}
.y41{bottom:206.460046px;}
.y89{bottom:209.160073px;}
.y70{bottom:212.940056px;}
.yca{bottom:214.740029px;}
.yac{bottom:224.100037px;}
.y40{bottom:224.820054px;}
.y88{bottom:227.520081px;}
.y6f{bottom:231.300065px;}
.yd7{bottom:233.100037px;}
.yc9{bottom:242.100037px;}
.yab{bottom:242.460046px;}
.y3f{bottom:243.000023px;}
.y87{bottom:245.880021px;}
.y6e{bottom:249.480034px;}
.yc8{bottom:260.460046px;}
.y3e{bottom:261.360031px;}
.y86{bottom:264.240029px;}
.y6d{bottom:267.840042px;}
.yaa{bottom:269.640015px;}
.yc7{bottom:278.820054px;}
.y85{bottom:282.600037px;}
.y3d{bottom:283.320054px;}
.y6c{bottom:286.200050px;}
.ya9{bottom:288.000023px;}
.yc6{bottom:297.000023px;}
.y84{bottom:300.780075px;}
.y6b{bottom:304.560059px;}
.y3c{bottom:305.280075px;}
.ya8{bottom:315.360031px;}
.y6a{bottom:322.740029px;}
.y3b{bottom:327.420067px;}
.y27{bottom:331.020081px;}
.ya7{bottom:333.720040px;}
.y3a{bottom:338.400078px;}
.y69{bottom:341.100037px;}
.yd6{bottom:342.540070px;}
.y26{bottom:349.200050px;}
.y39{bottom:349.380021px;}
.y68{bottom:359.460046px;}
.y38{bottom:360.540070px;}
.ya6{bottom:360.900078px;}
.y25{bottom:367.560059px;}
.y67{bottom:377.820054px;}
.ya5{bottom:379.260018px;}
.y37{bottom:382.140015px;}
.y24{bottom:385.920067px;}
.y66{bottom:396.000023px;}
.ya4{bottom:397.620025px;}
.y23{bottom:404.100037px;}
.yd5{bottom:406.620025px;}
.y36{bottom:409.680061px;}
.y65{bottom:414.360031px;}
.y22{bottom:422.460046px;}
.ya3{bottom:424.800065px;}
.yd4{bottom:424.980034px;}
.y35{bottom:430.740029px;}
.y64{bottom:432.720040px;}
.y21{bottom:440.820054px;}
.ya2{bottom:443.160073px;}
.y63{bottom:450.900078px;}
.y34{bottom:451.800065px;}
.yd3{bottom:452.160073px;}
.y20{bottom:459.180061px;}
.yc5{bottom:461.520081px;}
.y62{bottom:469.260018px;}
.ya1{bottom:470.520081px;}
.y1f{bottom:477.360031px;}
.y33{bottom:479.160073px;}
.y61{bottom:487.620060px;}
.yc4{bottom:488.880055px;}
.y1e{bottom:495.720040px;}
.ya0{bottom:497.880055px;}
.y60{bottom:505.980034px;}
.y32{bottom:506.700050px;}
.yc3{bottom:507.240063px;}
.y1d{bottom:514.080048px;}
.y9f{bottom:516.240063px;}
.y5f{bottom:524.160038px;}
.yc2{bottom:525.420033px;}
.y30{bottom:530.100037px;}
.y1c{bottom:532.440056px;}
.y2f{bottom:534.060059px;}
.yd2{bottom:534.420033px;}
.y5e{bottom:542.520047px;}
.y9e{bottom:543.420033px;}
.y1b{bottom:550.620060px;}
.yc1{bottom:552.780041px;}
.y5d{bottom:560.880055px;}
.y2e{bottom:561.600037px;}
.y9d{bottom:561.780041px;}
.y1a{bottom:568.980034px;}
.yc0{bottom:571.140049px;}
.y5c{bottom:579.240063px;}
.y9c{bottom:580.140049px;}
.y19{bottom:587.340042px;}
.y2d{bottom:589.140049px;}
.ybf{bottom:589.320054px;}
.y5b{bottom:597.420033px;}
.y18{bottom:605.520047px;}
.y9b{bottom:607.320054px;}
.y2c{bottom:610.200050px;}
.y5a{bottom:615.780041px;}
.ybe{bottom:616.680061px;}
.y17{bottom:623.880055px;}
.y9a{bottom:625.680061px;}
.y2b{bottom:631.260053px;}
.y59{bottom:634.140049px;}
.ybd{bottom:635.040036px;}
.y16{bottom:642.240063px;}
.y99{bottom:644.040036px;}
.y2a{bottom:652.320054px;}
.y15{bottom:660.600037px;}
.ybc{bottom:662.220040px;}
.y58{bottom:670.680061px;}
.y98{bottom:671.220040px;}
.y29{bottom:673.380055px;}
.y14{bottom:678.780041px;}
.ybb{bottom:680.580048px;}
.y57{bottom:689.040036px;}
.y97{bottom:689.580048px;}
.y28{bottom:694.440056px;}
.y13{bottom:697.140049px;}
.yba{bottom:698.940056px;}
.y56{bottom:707.400043px;}
.y96{bottom:707.940056px;}
.y12{bottom:715.500058px;}
.yd1{bottom:716.940056px;}
.y55{bottom:725.580048px;}
.yb9{bottom:726.300065px;}
.y95{bottom:735.300065px;}
.y11{bottom:740.520047px;}
.y54{bottom:743.940056px;}
.yb8{bottom:744.660038px;}
.y94{bottom:753.660038px;}
.y10{bottom:755.100037px;}
.y53{bottom:762.300065px;}
.yb7{bottom:762.840042px;}
.yf{bottom:769.680061px;}
.yd0{bottom:771.840042px;}
.y52{bottom:780.660056px;}
.y93{bottom:780.840042px;}
.yb6{bottom:790.200050px;}
.y51{bottom:798.840042px;}
.y92{bottom:799.200050px;}
.yb5{bottom:808.560042px;}
.y50{bottom:817.200050px;}
.y91{bottom:817.560042px;}
.ye{bottom:818.820054px;}
.y4f{bottom:835.560042px;}
.yb4{bottom:835.740046px;}
.y90{bottom:844.740046px;}
.yd{bottom:847.620043px;}
.y4e{bottom:853.740046px;}
.yb3{bottom:854.100054px;}
.y8f{bottom:863.100054px;}
.yc{bottom:871.380055px;}
.y4d{bottom:872.100054px;}
.y8e{bottom:881.460046px;}
.y4c{bottom:890.460046px;}
.yb{bottom:893.880055px;}
.y8d{bottom:899.820054px;}
.y4b{bottom:908.820054px;}
.y7{bottom:910.800047px;}
.y4a{bottom:927.000049px;}
.y2{bottom:932.400044px;}
.y6{bottom:932.760053px;}
.y1{bottom:945.180045px;}
.y49{bottom:945.360049px;}
.y5{bottom:952.560050px;}
.y48{bottom:963.720048px;}
.y4{bottom:972.900044px;}
.y78{bottom:984.960046px;}
.y3{bottom:985.500049px;}
.y77{bottom:998.640049px;}
.y47{bottom:998.820049px;}
.h14{height:13.139992px;}
.h15{height:13.679970px;}
.h10{height:18.180004px;}
.hc{height:30.071625px;}
.h3{height:30.518713px;}
.h13{height:32.851292px;}
.h18{height:32.851567px;}
.h2{height:33.676605px;}
.h8{height:35.254460px;}
.h11{height:35.799569px;}
.h9{height:41.718784px;}
.hd{height:47.971499px;}
.he{height:49.384504px;}
.h7{height:50.263383px;}
.h19{height:52.250589px;}
.h4{height:56.600267px;}
.h6{height:56.828035px;}
.hf{height:59.427386px;}
.h17{height:59.543518px;}
.h12{height:59.543581px;}
.h16{height:59.543586px;}
.ha{height:61.177825px;}
.h5{height:61.316905px;}
.hb{height:79.604803px;}
.h1{height:1062.750000px;}
.h0{height:1063.080045px;}
.w2{width:1.440033px;}
.w4{width:5.939998px;}
.w3{width:12.060002px;}
.w0{width:748.260000px;}
.w1{width:748.500000px;}
.x0{left:0.000000px;}
.x2{left:50.399999px;}
.xa{left:84.959997px;}
.x10{left:90.540003px;}
.x17{left:97.200002px;}
.x14{left:106.200002px;}
.xc{left:115.739997px;}
.x18{left:127.439999px;}
.xe{left:131.040003px;}
.xd{left:157.139992px;}
.x1{left:216.539996px;}
.x5{left:278.460005px;}
.xf{left:289.259994px;}
.x9{left:299.879998px;}
.x15{left:300.959988px;}
.x7{left:330.660015px;}
.x6{left:347.939999px;}
.xb{left:374.040012px;}
.x3{left:422.459988px;}
.x4{left:463.319996px;}
.x11{left:494.639992px;}
.x12{left:515.879998px;}
.x16{left:636.480011px;}
.x8{left:665.460023px;}
.x13{left:711.000000px;}
@media print{
.v1{vertical-align:-72.960024pt;}
.v4{vertical-align:-13.440184pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560056pt;}
.v2{vertical-align:24.320008pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.044396pt;}
.ls2{letter-spacing:0.157386pt;}
.ls0{letter-spacing:834.246358pt;}
.ws7{word-spacing:-12.047166pt;}
.ws2{word-spacing:-12.002770pt;}
.ws6{word-spacing:-10.717900pt;}
.ws1{word-spacing:-9.688982pt;}
.ws0{word-spacing:-8.862249pt;}
.ws4{word-spacing:-7.809014pt;}
.ws5{word-spacing:-6.073678pt;}
.ws3{word-spacing:0.000000pt;}
._1b{margin-left:-3.352162pt;}
._5{margin-left:-2.247489pt;}
._1{margin-left:-1.095068pt;}
._0{width:1.292129pt;}
._2{width:2.497380pt;}
._9{width:3.824506pt;}
._a{width:4.761751pt;}
._d{width:6.091335pt;}
._1c{width:6.984911pt;}
._b{width:7.895217pt;}
._c{width:8.799731pt;}
._3{width:9.740470pt;}
._4{width:10.634662pt;}
._10{width:13.012467pt;}
._17{width:14.180878pt;}
._18{width:15.129677pt;}
._7{width:16.305262pt;}
._6{width:17.261849pt;}
._f{width:18.567174pt;}
._e{width:19.544947pt;}
._11{width:21.081025pt;}
._8{width:22.642188pt;}
._20{width:23.585298pt;}
._1f{width:24.709792pt;}
._1e{width:27.880465pt;}
._1d{width:28.776068pt;}
._15{width:29.703306pt;}
._16{width:31.778883pt;}
._14{width:42.414614pt;}
._13{width:43.939752pt;}
._12{width:46.171584pt;}
._19{width:63.517250pt;}
._1a{width:69.530534pt;}
.fs7{font-size:26.874680pt;}
.fs3{font-size:31.993680pt;}
.fs9{font-size:34.553160pt;}
.fs1{font-size:37.112640pt;}
.fs0{font-size:42.871600pt;}
.fs8{font-size:45.431200pt;}
.fs6{font-size:53.109600pt;}
.fs5{font-size:63.987200pt;}
.fs2{font-size:69.106400pt;}
.fs4{font-size:74.865204pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:2.080017pt;}
.y31{bottom:3.520020pt;}
.y7b{bottom:47.840048pt;}
.y7a{bottom:49.600058pt;}
.ya{bottom:50.240072pt;}
.y79{bottom:61.920065pt;}
.y9{bottom:64.960043pt;}
.y8{bottom:77.120016pt;}
.y76{bottom:78.560019pt;}
.y81{bottom:81.920065pt;}
.yb2{bottom:85.440023pt;}
.y80{bottom:91.520041pt;}
.y7f{bottom:91.680014pt;}
.y75{bottom:95.040060pt;}
.ycf{bottom:101.440023pt;}
.yb1{bottom:101.760031pt;}
.y46{bottom:102.080038pt;}
.y74{bottom:104.640036pt;}
.y7e{bottom:107.840048pt;}
.y83{bottom:108.000021pt;}
.y82{bottom:117.600058pt;}
.yce{bottom:117.760031pt;}
.yb0{bottom:118.080038pt;}
.y45{bottom:118.400045pt;}
.y7d{bottom:124.160055pt;}
.y8c{bottom:129.120016pt;}
.ycd{bottom:134.080038pt;}
.y44{bottom:134.720053pt;}
.y73{bottom:140.480063pt;}
.yaf{bottom:142.400045pt;}
.y8b{bottom:145.440023pt;}
.ycc{bottom:150.400045pt;}
.y43{bottom:150.880026pt;}
.y72{bottom:156.800070pt;}
.yd9{bottom:158.400045pt;}
.yae{bottom:158.720053pt;}
.y8a{bottom:161.760031pt;}
.y42{bottom:167.200033pt;}
.y71{bottom:172.960043pt;}
.ycb{bottom:174.560019pt;}
.yd8{bottom:174.720053pt;}
.yad{bottom:174.880026pt;}
.y41{bottom:183.520041pt;}
.y89{bottom:185.920065pt;}
.y70{bottom:189.280050pt;}
.yca{bottom:190.880026pt;}
.yac{bottom:199.200033pt;}
.y40{bottom:199.840048pt;}
.y88{bottom:202.240072pt;}
.y6f{bottom:205.600058pt;}
.yd7{bottom:207.200033pt;}
.yc9{bottom:215.200033pt;}
.yab{bottom:215.520041pt;}
.y3f{bottom:216.000021pt;}
.y87{bottom:218.560019pt;}
.y6e{bottom:221.760031pt;}
.yc8{bottom:231.520041pt;}
.y3e{bottom:232.320028pt;}
.y86{bottom:234.880026pt;}
.y6d{bottom:238.080038pt;}
.yaa{bottom:239.680014pt;}
.yc7{bottom:247.840048pt;}
.y85{bottom:251.200033pt;}
.y3d{bottom:251.840048pt;}
.y6c{bottom:254.400045pt;}
.ya9{bottom:256.000021pt;}
.yc6{bottom:264.000021pt;}
.y84{bottom:267.360067pt;}
.y6b{bottom:270.720053pt;}
.y3c{bottom:271.360067pt;}
.ya8{bottom:280.320028pt;}
.y6a{bottom:286.880026pt;}
.y3b{bottom:291.040060pt;}
.y27{bottom:294.240072pt;}
.ya7{bottom:296.640036pt;}
.y3a{bottom:300.800070pt;}
.y69{bottom:303.200033pt;}
.yd6{bottom:304.480063pt;}
.y26{bottom:310.400045pt;}
.y39{bottom:310.560019pt;}
.y68{bottom:319.520041pt;}
.y38{bottom:320.480063pt;}
.ya6{bottom:320.800070pt;}
.y25{bottom:326.720053pt;}
.y67{bottom:335.840048pt;}
.ya5{bottom:337.120016pt;}
.y37{bottom:339.680014pt;}
.y24{bottom:343.040060pt;}
.y66{bottom:352.000021pt;}
.ya4{bottom:353.440023pt;}
.y23{bottom:359.200033pt;}
.yd5{bottom:361.440023pt;}
.y36{bottom:364.160055pt;}
.y65{bottom:368.320028pt;}
.y22{bottom:375.520041pt;}
.ya3{bottom:377.600058pt;}
.yd4{bottom:377.760031pt;}
.y35{bottom:382.880026pt;}
.y64{bottom:384.640036pt;}
.y21{bottom:391.840048pt;}
.ya2{bottom:393.920065pt;}
.y63{bottom:400.800070pt;}
.y34{bottom:401.600058pt;}
.yd3{bottom:401.920065pt;}
.y20{bottom:408.160055pt;}
.yc5{bottom:410.240072pt;}
.y62{bottom:417.120016pt;}
.ya1{bottom:418.240072pt;}
.y1f{bottom:424.320028pt;}
.y33{bottom:425.920065pt;}
.y61{bottom:433.440054pt;}
.yc4{bottom:434.560049pt;}
.y1e{bottom:440.640036pt;}
.ya0{bottom:442.560049pt;}
.y60{bottom:449.760031pt;}
.y32{bottom:450.400045pt;}
.yc3{bottom:450.880056pt;}
.y1d{bottom:456.960043pt;}
.y9f{bottom:458.880056pt;}
.y5f{bottom:465.920034pt;}
.yc2{bottom:467.040030pt;}
.y30{bottom:471.200033pt;}
.y1c{bottom:473.280050pt;}
.y2f{bottom:474.720053pt;}
.yd2{bottom:475.040030pt;}
.y5e{bottom:482.240042pt;}
.y9e{bottom:483.040030pt;}
.y1b{bottom:489.440054pt;}
.yc1{bottom:491.360037pt;}
.y5d{bottom:498.560049pt;}
.y2e{bottom:499.200033pt;}
.y9d{bottom:499.360037pt;}
.y1a{bottom:505.760031pt;}
.yc0{bottom:507.680044pt;}
.y5c{bottom:514.880056pt;}
.y9c{bottom:515.680044pt;}
.y19{bottom:522.080038pt;}
.y2d{bottom:523.680044pt;}
.ybf{bottom:523.840048pt;}
.y5b{bottom:531.040030pt;}
.y18{bottom:538.240042pt;}
.y9b{bottom:539.840048pt;}
.y2c{bottom:542.400045pt;}
.y5a{bottom:547.360037pt;}
.ybe{bottom:548.160055pt;}
.y17{bottom:554.560049pt;}
.y9a{bottom:556.160055pt;}
.y2b{bottom:561.120047pt;}
.y59{bottom:563.680044pt;}
.ybd{bottom:564.480032pt;}
.y16{bottom:570.880056pt;}
.y99{bottom:572.480032pt;}
.y2a{bottom:579.840048pt;}
.y15{bottom:587.200033pt;}
.ybc{bottom:588.640036pt;}
.y58{bottom:596.160055pt;}
.y98{bottom:596.640036pt;}
.y29{bottom:598.560049pt;}
.y14{bottom:603.360037pt;}
.ybb{bottom:604.960043pt;}
.y57{bottom:612.480032pt;}
.y97{bottom:612.960043pt;}
.y28{bottom:617.280050pt;}
.y13{bottom:619.680044pt;}
.yba{bottom:621.280050pt;}
.y56{bottom:628.800039pt;}
.y96{bottom:629.280050pt;}
.y12{bottom:636.000052pt;}
.yd1{bottom:637.280050pt;}
.y55{bottom:644.960043pt;}
.yb9{bottom:645.600058pt;}
.y95{bottom:653.600058pt;}
.y11{bottom:658.240042pt;}
.y54{bottom:661.280050pt;}
.yb8{bottom:661.920034pt;}
.y94{bottom:669.920034pt;}
.y10{bottom:671.200033pt;}
.y53{bottom:677.600058pt;}
.yb7{bottom:678.080038pt;}
.yf{bottom:684.160055pt;}
.yd0{bottom:686.080038pt;}
.y52{bottom:693.920050pt;}
.y93{bottom:694.080038pt;}
.yb6{bottom:702.400045pt;}
.y51{bottom:710.080038pt;}
.y92{bottom:710.400045pt;}
.yb5{bottom:718.720038pt;}
.y50{bottom:726.400045pt;}
.y91{bottom:726.720038pt;}
.ye{bottom:727.840048pt;}
.y4f{bottom:742.720038pt;}
.yb4{bottom:742.880041pt;}
.y90{bottom:750.880041pt;}
.yd{bottom:753.440039pt;}
.y4e{bottom:758.880041pt;}
.yb3{bottom:759.200048pt;}
.y8f{bottom:767.200048pt;}
.yc{bottom:774.560049pt;}
.y4d{bottom:775.200048pt;}
.y8e{bottom:783.520041pt;}
.y4c{bottom:791.520041pt;}
.yb{bottom:794.560049pt;}
.y8d{bottom:799.840048pt;}
.y4b{bottom:807.840048pt;}
.y7{bottom:809.600042pt;}
.y4a{bottom:824.000044pt;}
.y2{bottom:828.800039pt;}
.y6{bottom:829.120047pt;}
.y1{bottom:840.160040pt;}
.y49{bottom:840.320044pt;}
.y5{bottom:846.720045pt;}
.y48{bottom:856.640043pt;}
.y4{bottom:864.800039pt;}
.y78{bottom:875.520041pt;}
.y3{bottom:876.000044pt;}
.y77{bottom:887.680044pt;}
.y47{bottom:887.840044pt;}
.h14{height:11.679993pt;}
.h15{height:12.159973pt;}
.h10{height:16.160004pt;}
.hc{height:26.730334pt;}
.h3{height:27.127745pt;}
.h13{height:29.201149pt;}
.h18{height:29.201393pt;}
.h2{height:29.934760pt;}
.h8{height:31.337297pt;}
.h11{height:31.821839pt;}
.h9{height:37.083363pt;}
.hd{height:42.641333pt;}
.he{height:43.897337pt;}
.h7{height:44.678563pt;}
.h19{height:46.444968pt;}
.h4{height:50.311349pt;}
.h6{height:50.513809pt;}
.hf{height:52.824343pt;}
.h17{height:52.927572pt;}
.h12{height:52.927628pt;}
.h16{height:52.927632pt;}
.ha{height:54.380289pt;}
.h5{height:54.503916pt;}
.hb{height:70.759825pt;}
.h1{height:944.666667pt;}
.h0{height:944.960040pt;}
.w2{width:1.280029pt;}
.w4{width:5.279998pt;}
.w3{width:10.720002pt;}
.w0{width:665.120000pt;}
.w1{width:665.333333pt;}
.x0{left:0.000000pt;}
.x2{left:44.799999pt;}
.xa{left:75.519997pt;}
.x10{left:80.480003pt;}
.x17{left:86.400002pt;}
.x14{left:94.400002pt;}
.xc{left:102.879997pt;}
.x18{left:113.279999pt;}
.xe{left:116.480003pt;}
.xd{left:139.679993pt;}
.x1{left:192.479996pt;}
.x5{left:247.520004pt;}
.xf{left:257.119995pt;}
.x9{left:266.559998pt;}
.x15{left:267.519989pt;}
.x7{left:293.920013pt;}
.x6{left:309.279999pt;}
.xb{left:332.480011pt;}
.x3{left:375.519989pt;}
.x4{left:411.839996pt;}
.x11{left:439.679993pt;}
.x12{left:458.559998pt;}
.x16{left:565.760010pt;}
.x8{left:591.520020pt;}
.x13{left:632.000000pt;}
}




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