
    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_ebdff2626731af5248a5e4a9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.995117;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_a4b7dbee7891f8d82b844656.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.932129;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_42be8b549cb543d033b522bf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.061035;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_899b1c08bcf18b83e29e294c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_360306a8c57cb04936059a44.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_a0b014d3edccf35ea0a7c744.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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;}
.ls3{letter-spacing:3.359430px;}
.ls2{letter-spacing:7.679390px;}
.ls1{letter-spacing:10.559322px;}
.ls4{letter-spacing:16.319453px;}
.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;}
}
.ws0{word-spacing:-20.506168px;}
.ws1{word-spacing:-18.039285px;}
.ws3{word-spacing:-17.520638px;}
.ws2{word-spacing:0.000000px;}
._1f{margin-left:-2.951123px;}
._0{margin-left:-1.918596px;}
._1{width:1.051241px;}
._5{width:2.128493px;}
._3{width:3.515352px;}
._4{width:4.571513px;}
._2{width:5.972589px;}
._6{width:7.277909px;}
._7{width:8.408888px;}
._f{width:9.930292px;}
._e{width:11.720021px;}
._15{width:12.725365px;}
._c{width:13.725503px;}
._d{width:14.835600px;}
._b{width:16.155944px;}
._a{width:18.787158px;}
._9{width:20.118703px;}
._8{width:21.881993px;}
._18{width:23.191134px;}
._11{width:24.361243px;}
._10{width:26.059484px;}
._22{width:27.312676px;}
._13{width:28.646326px;}
._14{width:29.733425px;}
._12{width:31.023574px;}
._1a{width:32.300110px;}
._1e{width:33.766128px;}
._1d{width:35.486409px;}
._1b{width:36.607729px;}
._1c{width:37.774493px;}
._16{width:39.305634px;}
._17{width:40.869351px;}
._9a{width:52.040019px;}
._99{width:53.241385px;}
._97{width:55.182830px;}
._72{width:67.952505px;}
._20{width:70.492916px;}
._21{width:71.708489px;}
._96{width:74.669755px;}
._95{width:75.748012px;}
._19{width:81.662951px;}
._79{width:86.892780px;}
._7b{width:90.364914px;}
._93{width:102.240311px;}
._82{width:126.475642px;}
._84{width:127.647700px;}
._76{width:130.031601px;}
._7d{width:134.422247px;}
._55{width:135.861658px;}
._6e{width:141.805507px;}
._7a{width:143.588468px;}
._94{width:145.773347px;}
._7e{width:147.598314px;}
._98{width:148.937130px;}
._5b{width:156.715296px;}
._73{width:157.820237px;}
._25{width:162.475570px;}
._8b{width:166.296217px;}
._6c{width:168.176764px;}
._78{width:174.158321px;}
._7f{width:176.592815px;}
._28{width:183.447907px;}
._5d{width:185.948313px;}
._61{width:187.286938px;}
._67{width:190.018220px;}
._8d{width:191.341049px;}
._60{width:199.714459px;}
._2e{width:201.576235px;}
._6f{width:206.142329px;}
._77{width:216.835760px;}
._89{width:222.421755px;}
._6b{width:223.529114px;}
._30{width:225.659596px;}
._5c{width:238.297389px;}
._7c{width:244.240871px;}
._5a{width:246.189869px;}
._2c{width:258.163856px;}
._6a{width:259.433281px;}
._74{width:260.526388px;}
._6d{width:264.000966px;}
._8f{width:269.656794px;}
._38{width:273.565467px;}
._91{width:275.121093px;}
._62{width:278.112770px;}
._86{width:281.453711px;}
._65{width:284.504218px;}
._63{width:288.226529px;}
._4b{width:290.248797px;}
._2b{width:291.300866px;}
._5f{width:296.879521px;}
._32{width:305.656659px;}
._34{width:310.162368px;}
._69{width:314.288288px;}
._2a{width:316.451184px;}
._2f{width:334.929296px;}
._31{width:337.695231px;}
._29{width:343.651005px;}
._64{width:345.068520px;}
._59{width:366.372492px;}
._5e{width:368.465932px;}
._54{width:370.110958px;}
._39{width:381.311893px;}
._70{width:386.634361px;}
._2d{width:393.935109px;}
._33{width:395.506516px;}
._3e{width:397.583961px;}
._3b{width:398.911846px;}
._24{width:403.830248px;}
._35{width:411.571820px;}
._42{width:415.804909px;}
._80{width:421.675637px;}
._23{width:430.458792px;}
._71{width:433.434199px;}
._3a{width:435.303129px;}
._4f{width:438.273549px;}
._44{width:441.089988px;}
._68{width:452.362111px;}
._53{width:463.899937px;}
._4c{width:466.145319px;}
._40{width:473.748456px;}
._50{width:481.809291px;}
._66{width:483.010575px;}
._75{width:484.103883px;}
._51{width:485.238575px;}
._4d{width:490.530861px;}
._58{width:496.280036px;}
._56{width:500.475001px;}
._26{width:503.616839px;}
._3f{width:506.857358px;}
._46{width:520.936713px;}
._48{width:525.867425px;}
._57{width:528.343418px;}
._3d{width:533.006264px;}
._27{width:540.394771px;}
._52{width:542.386439px;}
._43{width:549.158042px;}
._45{width:553.549485px;}
._3c{width:558.930852px;}
._37{width:563.101518px;}
._4a{width:565.020113px;}
._4e{width:577.452001px;}
._41{width:608.775082px;}
._47{width:610.786363px;}
._81{width:616.050332px;}
._49{width:626.877186px;}
._36{width:645.778750px;}
._8c{width:719.409305px;}
._8e{width:723.278826px;}
._88{width:737.734398px;}
._8a{width:744.465575px;}
._90{width:824.626313px;}
._92{width:839.776201px;}
._83{width:853.274839px;}
._87{width:859.001815px;}
._85{width:871.196179px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,73,125);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(79,129,189);}
.fs5{font-size:58.168800px;}
.fs4{font-size:64.476000px;}
.fs2{font-size:70.082550px;}
.fs1{font-size:81.996750px;}
.fs0{font-size:93.209855px;}
.fs3{font-size:105.124055px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.960021px;}
.y3{bottom:5.220016px;}
.y2b{bottom:5.220017px;}
.y7{bottom:109.260132px;}
.y2{bottom:126.180039px;}
.y5{bottom:130.680039px;}
.y1{bottom:131.400055px;}
.y2d{bottom:132.300041px;}
.y4{bottom:134.640060px;}
.y2a{bottom:147.420043px;}
.y2c{bottom:158.040047px;}
.y29{bottom:171.900055px;}
.yba{bottom:182.880066px;}
.y5a{bottom:183.240074px;}
.y88{bottom:183.960091px;}
.y96{bottom:189.000068px;}
.y6b{bottom:190.260064px;}
.y4a{bottom:193.500068px;}
.y28{bottom:202.500068px;}
.yb9{bottom:213.300041px;}
.y59{bottom:213.660049px;}
.y87{bottom:214.020058px;}
.y95{bottom:219.240074px;}
.y6a{bottom:220.500068px;}
.y49{bottom:223.560036px;}
.y27{bottom:232.740074px;}
.y5b{bottom:243.360077px;}
.y58{bottom:243.720085px;}
.y86{bottom:244.440033px;}
.y94{bottom:249.300041px;}
.y69{bottom:250.740074px;}
.y48{bottom:253.620072px;}
.y26{bottom:262.980079px;}
.ya8{bottom:272.520058px;}
.y57{bottom:273.780052px;}
.y85{bottom:274.500068px;}
.y93{bottom:279.540047px;}
.y68{bottom:280.980079px;}
.y47{bottom:284.040047px;}
.y25{bottom:293.040047px;}
.ya7{bottom:299.700096px;}
.y56{bottom:304.200096px;}
.y84{bottom:304.920043px;}
.y92{bottom:309.780052px;}
.y67{bottom:311.220085px;}
.y46{bottom:314.100083px;}
.y24{bottom:323.460091px;}
.ya6{bottom:331.560036px;}
.ya2{bottom:332.820099px;}
.y55{bottom:334.260064px;}
.yab{bottom:334.620072px;}
.y83{bottom:334.980079px;}
.y91{bottom:338.040047px;}
.ya0{bottom:340.020058px;}
.y66{bottom:341.460091px;}
.y45{bottom:344.520058px;}
.y23{bottom:353.520058px;}
.ya1{bottom:360.180039px;}
.ya5{bottom:361.620072px;}
.y90{bottom:363.240074px;}
.y54{bottom:364.680039px;}
.y82{bottom:365.220085px;}
.y9f{bottom:370.260064px;}
.y65{bottom:371.520058px;}
.y44{bottom:374.580093px;}
.y22{bottom:383.940033px;}
.y8f{bottom:391.860077px;}
.yaa{bottom:393.300041px;}
.y53{bottom:394.740074px;}
.y81{bottom:395.460091px;}
.y9e{bottom:400.500068px;}
.y64{bottom:401.940033px;}
.y43{bottom:404.820099px;}
.y21{bottom:414.000068px;}
.ya9{bottom:420.660049px;}
.y8e{bottom:422.100083px;}
.y52{bottom:424.980079px;}
.y80{bottom:425.700096px;}
.y9d{bottom:430.560036px;}
.y63{bottom:432.000068px;}
.y42{bottom:435.060036px;}
.y20{bottom:444.240074px;}
.y8d{bottom:452.340088px;}
.y51{bottom:455.220085px;}
.y7f{bottom:455.940033px;}
.y9c{bottom:460.980079px;}
.y62{bottom:462.420043px;}
.y41{bottom:465.300041px;}
.y1f{bottom:474.480079px;}
.y8c{bottom:482.580093px;}
.y50{bottom:485.460091px;}
.y7e{bottom:486.180039px;}
.y9b{bottom:491.040047px;}
.y61{bottom:492.480079px;}
.y40{bottom:495.540047px;}
.y1e{bottom:504.720085px;}
.y8b{bottom:512.820099px;}
.y7d{bottom:514.260064px;}
.y4f{bottom:515.700096px;}
.y9a{bottom:521.460091px;}
.y60{bottom:522.720085px;}
.y3f{bottom:525.780052px;}
.y1d{bottom:534.960091px;}
.y7c{bottom:541.620072px;}
.y8a{bottom:542.880066px;}
.yb8{bottom:545.580093px;}
.y4e{bottom:545.940033px;}
.y99{bottom:551.520058px;}
.y5f{bottom:552.960091px;}
.y3e{bottom:555.840088px;}
.y1c{bottom:565.200096px;}
.y7b{bottom:573.300041px;}
.yb7{bottom:575.640060px;}
.y4d{bottom:576.000068px;}
.y98{bottom:579.780052px;}
.y5e{bottom:583.200096px;}
.y3d{bottom:585.900055px;}
.yb5{bottom:586.260064px;}
.y1b{bottom:595.260064px;}
.y7a{bottom:603.360077px;}
.y97{bottom:604.980079px;}
.yb6{bottom:606.060036px;}
.y3c{bottom:606.240074px;}
.y4c{bottom:606.420043px;}
.yb4{bottom:616.320099px;}
.y1a{bottom:625.680039px;}
.y79{bottom:633.780052px;}
.y3b{bottom:636.480079px;}
.y19{bottom:645.660049px;}
.yb3{bottom:646.740074px;}
.y78{bottom:663.840088px;}
.ybb{bottom:666.180039px;}
.y18{bottom:666.900055px;}
.yb2{bottom:676.800041px;}
.y17{bottom:689.760064px;}
.y77{bottom:694.080059px;}
.y5c{bottom:696.600083px;}
.y3a{bottom:696.960056px;}
.yb1{bottom:707.040081px;}
.y16{bottom:714.240074px;}
.y76{bottom:724.320065px;}
.y39{bottom:727.200061px;}
.y15{bottom:737.100083px;}
.yb0{bottom:737.280052px;}
.y75{bottom:754.560070px;}
.y89{bottom:756.000068px;}
.y6c{bottom:757.080059px;}
.y38{bottom:757.440067px;}
.y14{bottom:757.980079px;}
.yaf{bottom:767.520058px;}
.y13{bottom:781.020058px;}
.y74{bottom:784.800076px;}
.y37{bottom:787.680073px;}
.yae{bottom:797.760064px;}
.y12{bottom:805.320065px;}
.y73{bottom:815.040081px;}
.y36{bottom:817.920078px;}
.yad{bottom:827.640060px;}
.y11{bottom:827.820065px;}
.y72{bottom:845.100083px;}
.y35{bottom:848.160049px;}
.yac{bottom:848.340054px;}
.y10{bottom:849.780052px;}
.y71{bottom:875.520058px;}
.y34{bottom:878.220051px;}
.yf{bottom:879.840054px;}
.y70{bottom:905.580059px;}
.ye{bottom:906.660049px;}
.y33{bottom:908.640060px;}
.yd{bottom:933.480079px;}
.y6f{bottom:935.820065px;}
.ya4{bottom:937.260064px;}
.y32{bottom:938.700061px;}
.yc{bottom:960.660049px;}
.y6e{bottom:966.060070px;}
.ya3{bottom:967.500068px;}
.y5d{bottom:968.760064px;}
.y31{bottom:969.120072px;}
.yb{bottom:990.720068px;}
.y6d{bottom:997.740074px;}
.y30{bottom:999.180073px;}
.ya{bottom:1021.140060px;}
.y2f{bottom:1029.420061px;}
.y9{bottom:1051.200061px;}
.y2e{bottom:1059.300058px;}
.y4b{bottom:1059.660067px;}
.y8{bottom:1089.900072px;}
.h5{height:20.520057px;}
.hc{height:27.180039px;}
.h3{height:27.360008px;}
.hd{height:47.129186px;}
.he{height:52.147420px;}
.h6{height:59.063712px;}
.h4{height:59.936101px;}
.ha{height:62.246171px;}
.h7{height:62.827911px;}
.h9{height:68.132399px;}
.hb{height:73.508805px;}
.h2{height:78.554789px;}
.h8{height:93.369461px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w2{width:6.300007px;}
.w3{width:7.919975px;}
.w4{width:41.579999px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:124.200002px;}
.x8{left:127.079999px;}
.xb{left:128.340002px;}
.x41{left:132.299998px;}
.x1{left:135.360000px;}
.x46{left:136.799998px;}
.x2b{left:138.959997px;}
.x39{left:141.299998px;}
.x2f{left:142.560001px;}
.x19{left:143.819996px;}
.x4a{left:145.080008px;}
.x14{left:146.699993px;}
.x4b{left:147.960005px;}
.x11{left:150.659998px;}
.x16{left:153.000000px;}
.x32{left:154.979994px;}
.x35{left:156.419992px;}
.x15{left:158.400003px;}
.xe{left:159.840002px;}
.x18{left:161.639992px;}
.x17{left:164.159998px;}
.x27{left:165.240006px;}
.x36{left:168.120002px;}
.x26{left:169.199993px;}
.x28{left:171.539996px;}
.x31{left:173.699993px;}
.xc{left:175.860008px;}
.x2{left:176.939999px;}
.x25{left:178.379998px;}
.x2a{left:180.360008px;}
.xd{left:181.439999px;}
.x29{left:182.699993px;}
.x1e{left:183.960005px;}
.x1d{left:189.360008px;}
.x1c{left:190.800007px;}
.xa{left:192.780001px;}
.x1f{left:195.120002px;}
.x24{left:200.159998px;}
.x20{left:204.840002px;}
.x4d{left:209.699993px;}
.x1b{left:212.580008px;}
.x6{left:221.400003px;}
.x45{left:222.479994px;}
.x33{left:269.099997px;}
.x43{left:272.699993px;}
.x23{left:285.659998px;}
.x2e{left:289.439999px;}
.x3d{left:297.540012px;}
.x37{left:299.879998px;}
.x48{left:301.139992px;}
.x9{left:304.379998px;}
.x3b{left:312.300007px;}
.x30{left:320.040012px;}
.x1a{left:321.480011px;}
.x47{left:325.800007px;}
.xf{left:344.160015px;}
.x12{left:348.480011px;}
.x44{left:376.019989px;}
.x2c{left:393.839985px;}
.x21{left:406.259994px;}
.x7{left:446.759994px;}
.x3a{left:451.439999px;}
.x3c{left:457.379998px;}
.x3e{left:479.160015px;}
.x38{left:489.600014px;}
.x34{left:497.160015px;}
.x10{left:502.199993px;}
.x13{left:511.379998px;}
.x3{left:549.899987px;}
.x49{left:575.819996px;}
.x4c{left:586.799973px;}
.x2d{left:611.279983px;}
.x22{left:640.799973px;}
.x3f{left:646.200027px;}
.x40{left:653.039978px;}
.x42{left:659.879998px;}
.x4{left:769.320030px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:2.986160pt;}
.ls2{letter-spacing:6.826124pt;}
.ls1{letter-spacing:9.386064pt;}
.ls4{letter-spacing:14.506180pt;}
.ws0{word-spacing:-18.227705pt;}
.ws1{word-spacing:-16.034920pt;}
.ws3{word-spacing:-15.573900pt;}
.ws2{word-spacing:0.000000pt;}
._1f{margin-left:-2.623220pt;}
._0{margin-left:-1.705418pt;}
._1{width:0.934436pt;}
._5{width:1.891994pt;}
._3{width:3.124757pt;}
._4{width:4.063567pt;}
._2{width:5.308968pt;}
._6{width:6.469252pt;}
._7{width:7.474567pt;}
._f{width:8.826926pt;}
._e{width:10.417797pt;}
._15{width:11.311436pt;}
._c{width:12.200447pt;}
._d{width:13.187200pt;}
._b{width:14.360839pt;}
._a{width:16.699696pt;}
._9{width:17.883292pt;}
._8{width:19.450661pt;}
._18{width:20.614341pt;}
._11{width:21.654438pt;}
._10{width:23.163986pt;}
._22{width:24.277934pt;}
._13{width:25.463401pt;}
._14{width:26.429711pt;}
._12{width:27.576510pt;}
._1a{width:28.711209pt;}
._1e{width:30.014336pt;}
._1d{width:31.543474pt;}
._1b{width:32.540204pt;}
._1c{width:33.577327pt;}
._16{width:34.938341pt;}
._17{width:36.328312pt;}
._9a{width:46.257795pt;}
._99{width:47.325675pt;}
._97{width:49.051404pt;}
._72{width:60.402227pt;}
._20{width:62.660370pt;}
._21{width:63.740879pt;}
._96{width:66.373116pt;}
._95{width:67.331567pt;}
._19{width:72.589290pt;}
._79{width:77.238027pt;}
._7b{width:80.324368pt;}
._93{width:90.880277pt;}
._82{width:112.422793pt;}
._84{width:113.464622pt;}
._76{width:115.583646pt;}
._7d{width:119.486442pt;}
._55{width:120.765918pt;}
._6e{width:126.049340pt;}
._7a{width:127.634194pt;}
._94{width:129.576308pt;}
._7e{width:131.198501pt;}
._98{width:132.388560pt;}
._5b{width:139.302485pt;}
._73{width:140.284655pt;}
._25{width:144.422729pt;}
._8b{width:147.818860pt;}
._6c{width:149.490457pt;}
._78{width:154.807397pt;}
._7f{width:156.971391pt;}
._28{width:163.064806pt;}
._5d{width:165.287389pt;}
._61{width:166.477278pt;}
._67{width:168.905085pt;}
._8d{width:170.080933pt;}
._60{width:177.523964pt;}
._2e{width:179.178876pt;}
._6f{width:183.237626pt;}
._77{width:192.742898pt;}
._89{width:197.708227pt;}
._6b{width:198.692546pt;}
._30{width:200.586307pt;}
._5c{width:211.819902pt;}
._7c{width:217.102997pt;}
._5a{width:218.835439pt;}
._2c{width:229.478983pt;}
._6a{width:230.607361pt;}
._74{width:231.579011pt;}
._6d{width:234.667525pt;}
._8f{width:239.694928pt;}
._38{width:243.169304pt;}
._91{width:244.552083pt;}
._62{width:247.211351pt;}
._86{width:250.181076pt;}
._65{width:252.892638pt;}
._63{width:256.201359pt;}
._4b{width:257.998931pt;}
._2b{width:258.934103pt;}
._5f{width:263.892907pt;}
._32{width:271.694808pt;}
._34{width:275.699883pt;}
._69{width:279.367367pt;}
._2a{width:281.289942pt;}
._2f{width:297.714930pt;}
._31{width:300.173539pt;}
._29{width:305.467560pt;}
._64{width:306.727573pt;}
._59{width:325.664437pt;}
._5e{width:327.525273pt;}
._54{width:328.987518pt;}
._39{width:338.943905pt;}
._70{width:343.674988pt;}
._2d{width:350.164541pt;}
._33{width:351.561347pt;}
._3e{width:353.407965pt;}
._3b{width:354.588308pt;}
._24{width:358.960221pt;}
._35{width:365.841618pt;}
._42{width:369.604364pt;}
._80{width:374.822788pt;}
._23{width:382.630037pt;}
._71{width:385.274844pt;}
._3a{width:386.936115pt;}
._4f{width:389.576488pt;}
._44{width:392.079989pt;}
._68{width:402.099654pt;}
._53{width:412.355500pt;}
._4c{width:414.351394pt;}
._40{width:421.109739pt;}
._50{width:428.274926pt;}
._66{width:429.342733pt;}
._75{width:430.314563pt;}
._51{width:431.323178pt;}
._4d{width:436.027432pt;}
._58{width:441.137810pt;}
._56{width:444.866667pt;}
._26{width:447.659412pt;}
._3f{width:450.539874pt;}
._46{width:463.054856pt;}
._48{width:467.437711pt;}
._57{width:469.638594pt;}
._3d{width:473.783346pt;}
._27{width:480.350908pt;}
._52{width:482.121279pt;}
._43{width:488.140482pt;}
._45{width:492.043987pt;}
._3c{width:496.827424pt;}
._37{width:500.534682pt;}
._4a{width:502.240101pt;}
._4e{width:513.290667pt;}
._41{width:541.133406pt;}
._47{width:542.921211pt;}
._81{width:547.600295pt;}
._49{width:557.224165pt;}
._36{width:574.025555pt;}
._8c{width:639.474938pt;}
._8e{width:642.914512pt;}
._88{width:655.763909pt;}
._8a{width:661.747178pt;}
._90{width:733.001167pt;}
._92{width:746.467734pt;}
._83{width:758.466523pt;}
._87{width:763.557169pt;}
._85{width:774.396604pt;}
.fs5{font-size:51.705600pt;}
.fs4{font-size:57.312000pt;}
.fs2{font-size:62.295600pt;}
.fs1{font-size:72.886000pt;}
.fs0{font-size:82.853204pt;}
.fs3{font-size:93.443604pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.520019pt;}
.y3{bottom:4.640014pt;}
.y2b{bottom:4.640015pt;}
.y7{bottom:97.120118pt;}
.y2{bottom:112.160035pt;}
.y5{bottom:116.160035pt;}
.y1{bottom:116.800049pt;}
.y2d{bottom:117.600037pt;}
.y4{bottom:119.680054pt;}
.y2a{bottom:131.040039pt;}
.y2c{bottom:140.480042pt;}
.y29{bottom:152.800049pt;}
.yba{bottom:162.560059pt;}
.y5a{bottom:162.880066pt;}
.y88{bottom:163.520081pt;}
.y96{bottom:168.000061pt;}
.y6b{bottom:169.120057pt;}
.y4a{bottom:172.000061pt;}
.y28{bottom:180.000061pt;}
.yb9{bottom:189.600037pt;}
.y59{bottom:189.920044pt;}
.y87{bottom:190.240052pt;}
.y95{bottom:194.880066pt;}
.y6a{bottom:196.000061pt;}
.y49{bottom:198.720032pt;}
.y27{bottom:206.880066pt;}
.y5b{bottom:216.320069pt;}
.y58{bottom:216.640076pt;}
.y86{bottom:217.280030pt;}
.y94{bottom:221.600037pt;}
.y69{bottom:222.880066pt;}
.y48{bottom:225.440064pt;}
.y26{bottom:233.760071pt;}
.ya8{bottom:242.240052pt;}
.y57{bottom:243.360047pt;}
.y85{bottom:244.000061pt;}
.y93{bottom:248.480042pt;}
.y68{bottom:249.760071pt;}
.y47{bottom:252.480042pt;}
.y25{bottom:260.480042pt;}
.ya7{bottom:266.400086pt;}
.y56{bottom:270.400086pt;}
.y84{bottom:271.040039pt;}
.y92{bottom:275.360047pt;}
.y67{bottom:276.640076pt;}
.y46{bottom:279.200074pt;}
.y24{bottom:287.520081pt;}
.ya6{bottom:294.720032pt;}
.ya2{bottom:295.840088pt;}
.y55{bottom:297.120057pt;}
.yab{bottom:297.440064pt;}
.y83{bottom:297.760071pt;}
.y91{bottom:300.480042pt;}
.ya0{bottom:302.240052pt;}
.y66{bottom:303.520081pt;}
.y45{bottom:306.240052pt;}
.y23{bottom:314.240052pt;}
.ya1{bottom:320.160035pt;}
.ya5{bottom:321.440064pt;}
.y90{bottom:322.880066pt;}
.y54{bottom:324.160035pt;}
.y82{bottom:324.640076pt;}
.y9f{bottom:329.120057pt;}
.y65{bottom:330.240052pt;}
.y44{bottom:332.960083pt;}
.y22{bottom:341.280030pt;}
.y8f{bottom:348.320069pt;}
.yaa{bottom:349.600037pt;}
.y53{bottom:350.880066pt;}
.y81{bottom:351.520081pt;}
.y9e{bottom:356.000061pt;}
.y64{bottom:357.280030pt;}
.y43{bottom:359.840088pt;}
.y21{bottom:368.000061pt;}
.ya9{bottom:373.920044pt;}
.y8e{bottom:375.200074pt;}
.y52{bottom:377.760071pt;}
.y80{bottom:378.400086pt;}
.y9d{bottom:382.720032pt;}
.y63{bottom:384.000061pt;}
.y42{bottom:386.720032pt;}
.y20{bottom:394.880066pt;}
.y8d{bottom:402.080079pt;}
.y51{bottom:404.640076pt;}
.y7f{bottom:405.280030pt;}
.y9c{bottom:409.760071pt;}
.y62{bottom:411.040039pt;}
.y41{bottom:413.600037pt;}
.y1f{bottom:421.760071pt;}
.y8c{bottom:428.960083pt;}
.y50{bottom:431.520081pt;}
.y7e{bottom:432.160035pt;}
.y9b{bottom:436.480042pt;}
.y61{bottom:437.760071pt;}
.y40{bottom:440.480042pt;}
.y1e{bottom:448.640076pt;}
.y8b{bottom:455.840088pt;}
.y7d{bottom:457.120057pt;}
.y4f{bottom:458.400086pt;}
.y9a{bottom:463.520081pt;}
.y60{bottom:464.640076pt;}
.y3f{bottom:467.360047pt;}
.y1d{bottom:475.520081pt;}
.y7c{bottom:481.440064pt;}
.y8a{bottom:482.560059pt;}
.yb8{bottom:484.960083pt;}
.y4e{bottom:485.280030pt;}
.y99{bottom:490.240052pt;}
.y5f{bottom:491.520081pt;}
.y3e{bottom:494.080079pt;}
.y1c{bottom:502.400086pt;}
.y7b{bottom:509.600037pt;}
.yb7{bottom:511.680054pt;}
.y4d{bottom:512.000061pt;}
.y98{bottom:515.360047pt;}
.y5e{bottom:518.400086pt;}
.y3d{bottom:520.800049pt;}
.yb5{bottom:521.120057pt;}
.y1b{bottom:529.120057pt;}
.y7a{bottom:536.320069pt;}
.y97{bottom:537.760071pt;}
.yb6{bottom:538.720032pt;}
.y3c{bottom:538.880066pt;}
.y4c{bottom:539.040039pt;}
.yb4{bottom:547.840088pt;}
.y1a{bottom:556.160035pt;}
.y79{bottom:563.360047pt;}
.y3b{bottom:565.760071pt;}
.y19{bottom:573.920044pt;}
.yb3{bottom:574.880066pt;}
.y78{bottom:590.080079pt;}
.ybb{bottom:592.160035pt;}
.y18{bottom:592.800049pt;}
.yb2{bottom:601.600037pt;}
.y17{bottom:613.120057pt;}
.y77{bottom:616.960053pt;}
.y5c{bottom:619.200074pt;}
.y3a{bottom:619.520050pt;}
.yb1{bottom:628.480072pt;}
.y16{bottom:634.880066pt;}
.y76{bottom:643.840058pt;}
.y39{bottom:646.400055pt;}
.y15{bottom:655.200074pt;}
.yb0{bottom:655.360047pt;}
.y75{bottom:670.720063pt;}
.y89{bottom:672.000061pt;}
.y6c{bottom:672.960053pt;}
.y38{bottom:673.280060pt;}
.y14{bottom:673.760071pt;}
.yaf{bottom:682.240052pt;}
.y13{bottom:694.240052pt;}
.y74{bottom:697.600068pt;}
.y37{bottom:700.160065pt;}
.yae{bottom:709.120057pt;}
.y12{bottom:715.840058pt;}
.y73{bottom:724.480072pt;}
.y36{bottom:727.040070pt;}
.yad{bottom:735.680054pt;}
.y11{bottom:735.840058pt;}
.y72{bottom:751.200074pt;}
.y35{bottom:753.920044pt;}
.yac{bottom:754.080048pt;}
.y10{bottom:755.360047pt;}
.y71{bottom:778.240052pt;}
.y34{bottom:780.640046pt;}
.yf{bottom:782.080048pt;}
.y70{bottom:804.960053pt;}
.ye{bottom:805.920044pt;}
.y33{bottom:807.680054pt;}
.yd{bottom:829.760071pt;}
.y6f{bottom:831.840058pt;}
.ya4{bottom:833.120057pt;}
.y32{bottom:834.400055pt;}
.yc{bottom:853.920044pt;}
.y6e{bottom:858.720063pt;}
.ya3{bottom:860.000061pt;}
.y5d{bottom:861.120057pt;}
.y31{bottom:861.440064pt;}
.yb{bottom:880.640061pt;}
.y6d{bottom:886.880066pt;}
.y30{bottom:888.160065pt;}
.ya{bottom:907.680054pt;}
.y2f{bottom:915.040055pt;}
.y9{bottom:934.400055pt;}
.y2e{bottom:941.600052pt;}
.y4b{bottom:941.920060pt;}
.y8{bottom:968.800064pt;}
.h5{height:18.240051pt;}
.hc{height:24.160035pt;}
.h3{height:24.320007pt;}
.hd{height:41.892609pt;}
.he{height:46.353263pt;}
.h6{height:52.501077pt;}
.h4{height:53.276534pt;}
.ha{height:55.329930pt;}
.h7{height:55.847032pt;}
.h9{height:60.562132pt;}
.hb{height:65.341160pt;}
.h2{height:69.826480pt;}
.h8{height:82.995076pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w2{width:5.600006pt;}
.w3{width:7.039978pt;}
.w4{width:36.959999pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:110.400002pt;}
.x8{left:112.959999pt;}
.xb{left:114.080002pt;}
.x41{left:117.599998pt;}
.x1{left:120.320000pt;}
.x46{left:121.599998pt;}
.x2b{left:123.519997pt;}
.x39{left:125.599998pt;}
.x2f{left:126.720001pt;}
.x19{left:127.839996pt;}
.x4a{left:128.960007pt;}
.x14{left:130.399994pt;}
.x4b{left:131.520004pt;}
.x11{left:133.919998pt;}
.x16{left:136.000000pt;}
.x32{left:137.759995pt;}
.x35{left:139.039993pt;}
.x15{left:140.800003pt;}
.xe{left:142.080002pt;}
.x18{left:143.679993pt;}
.x17{left:145.919998pt;}
.x27{left:146.880005pt;}
.x36{left:149.440002pt;}
.x26{left:150.399994pt;}
.x28{left:152.479996pt;}
.x31{left:154.399994pt;}
.xc{left:156.320007pt;}
.x2{left:157.279999pt;}
.x25{left:158.559998pt;}
.x2a{left:160.320007pt;}
.xd{left:161.279999pt;}
.x29{left:162.399994pt;}
.x1e{left:163.520004pt;}
.x1d{left:168.320007pt;}
.x1c{left:169.600006pt;}
.xa{left:171.360001pt;}
.x1f{left:173.440002pt;}
.x24{left:177.919998pt;}
.x20{left:182.080002pt;}
.x4d{left:186.399994pt;}
.x1b{left:188.960007pt;}
.x6{left:196.800003pt;}
.x45{left:197.759995pt;}
.x33{left:239.199997pt;}
.x43{left:242.399994pt;}
.x23{left:253.919998pt;}
.x2e{left:257.279999pt;}
.x3d{left:264.480011pt;}
.x37{left:266.559998pt;}
.x48{left:267.679993pt;}
.x9{left:270.559998pt;}
.x3b{left:277.600006pt;}
.x30{left:284.480011pt;}
.x1a{left:285.760010pt;}
.x47{left:289.600006pt;}
.xf{left:305.920013pt;}
.x12{left:309.760010pt;}
.x44{left:334.239990pt;}
.x2c{left:350.079987pt;}
.x21{left:361.119995pt;}
.x7{left:397.119995pt;}
.x3a{left:401.279999pt;}
.x3c{left:406.559998pt;}
.x3e{left:425.920013pt;}
.x38{left:435.200012pt;}
.x34{left:441.920013pt;}
.x10{left:446.399994pt;}
.x13{left:454.559998pt;}
.x3{left:488.799988pt;}
.x49{left:511.839996pt;}
.x4c{left:521.599976pt;}
.x2d{left:543.359985pt;}
.x22{left:569.599976pt;}
.x3f{left:574.400024pt;}
.x40{left:580.479980pt;}
.x42{left:586.559998pt;}
.x4{left:683.840027pt;}
}




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