
    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_17823d6dd4309331322d0ec0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_68f8dfb1604cb1d806e76ead.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_e1848e01639ae021801d00d6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_cca38658762a852f8aab5359.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.000000;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_7e50f5f202c228987c0843a1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.000000;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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.010626px;}
.ls5{letter-spacing:0.021282px;}
.ls1{letter-spacing:0.275460px;}
.ls2{letter-spacing:0.731051px;}
.ls4{letter-spacing:8.655723px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-17.999993px;}
.ws3{word-spacing:-16.559993px;}
.ws0{word-spacing:-14.939994px;}
.ws2{word-spacing:0.000000px;}
._18{margin-left:-2.318966px;}
._0{margin-left:-1.304769px;}
._1{width:1.378136px;}
._6{width:3.210955px;}
._7{width:4.238051px;}
._e{width:5.467308px;}
._9{width:6.545535px;}
._a{width:8.099221px;}
._4{width:9.784405px;}
._b{width:10.790513px;}
._5{width:11.910648px;}
._c{width:13.906618px;}
._d{width:15.417945px;}
._8{width:16.660602px;}
._16{width:19.602105px;}
._17{width:21.369353px;}
._28{width:22.382892px;}
._13{width:23.478466px;}
._12{width:24.710289px;}
._29{width:25.730055px;}
._11{width:27.018822px;}
._1b{width:28.111854px;}
._10{width:29.259748px;}
._f{width:30.364137px;}
._2{width:32.563220px;}
._3{width:34.048258px;}
._15{width:35.081113px;}
._14{width:36.685474px;}
._2a{width:43.369623px;}
._1d{width:44.676990px;}
._2d{width:50.478115px;}
._1e{width:51.547274px;}
._1f{width:52.964630px;}
._2e{width:76.599942px;}
._2b{width:86.541029px;}
._2c{width:88.083946px;}
._19{width:187.067779px;}
._24{width:188.345593px;}
._23{width:206.356212px;}
._25{width:214.259632px;}
._22{width:224.345579px;}
._1c{width:257.202617px;}
._20{width:266.727800px;}
._26{width:402.115015px;}
._1a{width:405.630455px;}
._21{width:700.111013px;}
._27{width:701.981246px;}
.fc4{color:rgb(242,0,0);}
.fc2{color:transparent;}
.fc3{color:rgb(243,60,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.759976px;}
.fs3{font-size:66.239974px;}
.fs2{font-size:71.999971px;}
.fs1{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.y44{bottom:4.320436px;}
.y4a{bottom:4.320463px;}
.y51{bottom:4.320508px;}
.y53{bottom:4.320524px;}
.y55{bottom:4.320533px;}
.ya0{bottom:4.320560px;}
.y5f{bottom:4.320589px;}
.y86{bottom:4.320628px;}
.ya8{bottom:4.320634px;}
.yab{bottom:4.320642px;}
.y67{bottom:4.320661px;}
.yb0{bottom:4.320679px;}
.y2{bottom:67.441473px;}
.yc6{bottom:91.201464px;}
.y9c{bottom:96.781461px;}
.yec{bottom:100.201460px;}
.y36{bottom:106.141458px;}
.y10b{bottom:107.941457px;}
.yeb{bottom:111.541455px;}
.yc5{bottom:111.901455px;}
.y9b{bottom:117.481453px;}
.yda{bottom:119.461452px;}
.y35{bottom:126.841449px;}
.y10a{bottom:128.641449px;}
.yea{bottom:132.241447px;}
.yc4{bottom:132.601447px;}
.y7d{bottom:136.921445px;}
.y9a{bottom:138.181445px;}
.yd9{bottom:140.161444px;}
.y34{bottom:147.541441px;}
.y109{bottom:149.341440px;}
.ye9{bottom:152.941439px;}
.yc3{bottom:153.301439px;}
.yd8{bottom:156.361437px;}
.y7c{bottom:157.621437px;}
.y99{bottom:158.881436px;}
.y33{bottom:168.241433px;}
.y108{bottom:170.041432px;}
.ye8{bottom:173.641431px;}
.yc2{bottom:174.001430px;}
.y7b{bottom:178.321429px;}
.y98{bottom:179.581428px;}
.y32{bottom:188.941424px;}
.y107{bottom:190.741424px;}
.ye7{bottom:194.341422px;}
.yc1{bottom:194.701422px;}
.y7a{bottom:199.021420px;}
.y97{bottom:200.281420px;}
.y31{bottom:209.641416px;}
.y106{bottom:211.441415px;}
.ye6{bottom:215.041414px;}
.yc0{bottom:215.401414px;}
.y79{bottom:219.721412px;}
.y96{bottom:220.981412px;}
.y30{bottom:230.341408px;}
.y105{bottom:232.141407px;}
.ye5{bottom:235.741406px;}
.ybf{bottom:236.101406px;}
.y78{bottom:240.421404px;}
.y95{bottom:241.681403px;}
.y2f{bottom:251.041400px;}
.y104{bottom:252.841399px;}
.ybe{bottom:256.801397px;}
.y77{bottom:261.121396px;}
.y94{bottom:262.381395px;}
.y2e{bottom:271.741391px;}
.y103{bottom:273.541391px;}
.ybd{bottom:277.501389px;}
.y76{bottom:281.821387px;}
.y93{bottom:283.081387px;}
.y2d{bottom:292.441383px;}
.y124{bottom:294.061382px;}
.y102{bottom:294.241382px;}
.ybc{bottom:298.201381px;}
.y75{bottom:302.521379px;}
.y92{bottom:303.781378px;}
.y2c{bottom:313.141375px;}
.y123{bottom:314.761374px;}
.y101{bottom:314.941374px;}
.ybb{bottom:318.901372px;}
.y74{bottom:323.221371px;}
.y2b{bottom:333.841366px;}
.y122{bottom:335.461366px;}
.y100{bottom:335.641366px;}
.y91{bottom:338.521365px;}
.yba{bottom:339.601364px;}
.y73{bottom:343.921362px;}
.y2a{bottom:354.541358px;}
.y121{bottom:356.161358px;}
.yff{bottom:356.341357px;}
.y90{bottom:359.221356px;}
.yb9{bottom:360.301356px;}
.y72{bottom:364.621354px;}
.y29{bottom:375.241350px;}
.y120{bottom:376.861349px;}
.yfe{bottom:377.041349px;}
.yb8{bottom:381.001348px;}
.y71{bottom:385.321346px;}
.y8f{bottom:395.041342px;}
.y28{bottom:395.941342px;}
.y11f{bottom:397.561341px;}
.yfd{bottom:397.741341px;}
.yb7{bottom:401.701339px;}
.y70{bottom:406.021338px;}
.y8e{bottom:415.741334px;}
.y27{bottom:416.641333px;}
.y11e{bottom:418.261333px;}
.yfc{bottom:418.441333px;}
.yb6{bottom:422.401331px;}
.y6f{bottom:426.721329px;}
.yd7{bottom:430.681328px;}
.y8d{bottom:436.441325px;}
.y26{bottom:437.341325px;}
.y11d{bottom:438.961324px;}
.yfb{bottom:439.141324px;}
.y126{bottom:440.041324px;}
.yb5{bottom:443.101323px;}
.y6e{bottom:447.421321px;}
.yd6{bottom:451.381319px;}
.y25{bottom:458.041317px;}
.y11c{bottom:459.661316px;}
.yfa{bottom:459.841316px;}
.yb4{bottom:463.801314px;}
.y6d{bottom:468.121313px;}
.yd5{bottom:472.081311px;}
.y8c{bottom:474.061310px;}
.y24{bottom:478.741309px;}
.y11b{bottom:480.361308px;}
.yf9{bottom:480.541308px;}
.yb3{bottom:484.501306px;}
.y6c{bottom:488.821304px;}
.yd4{bottom:492.781303px;}
.y23{bottom:499.441300px;}
.y8b{bottom:500.161300px;}
.y11a{bottom:501.061300px;}
.yf8{bottom:501.241300px;}
.ye4{bottom:504.841298px;}
.yb2{bottom:505.201298px;}
.y6b{bottom:509.521296px;}
.yd3{bottom:513.481295px;}
.y22{bottom:520.141292px;}
.y8a{bottom:520.861292px;}
.y119{bottom:521.761291px;}
.yf7{bottom:521.941291px;}
.ye3{bottom:525.541290px;}
.y6a{bottom:530.221288px;}
.yb1{bottom:531.301287px;}
.yd2{bottom:534.181286px;}
.y21{bottom:540.841284px;}
.y89{bottom:541.561283px;}
.y118{bottom:542.461283px;}
.yf6{bottom:542.641283px;}
.ye2{bottom:546.241282px;}
.yaf{bottom:547.680600px;}
.yae{bottom:552.001279px;}
.yd1{bottom:554.881278px;}
.y69{bottom:556.501277px;}
.y20{bottom:561.541275px;}
.y117{bottom:563.161275px;}
.yf5{bottom:563.341275px;}
.ye1{bottom:566.941273px;}
.yad{bottom:572.701271px;}
.yd0{bottom:575.581270px;}
.y68{bottom:577.201269px;}
.y88{bottom:579.721268px;}
.y1f{bottom:582.241267px;}
.y116{bottom:583.861266px;}
.yf4{bottom:584.041266px;}
.ye0{bottom:587.641265px;}
.y66{bottom:593.580600px;}
.ycf{bottom:596.281261px;}
.y65{bottom:597.901261px;}
.y87{bottom:600.421260px;}
.yc7{bottom:602.581259px;}
.y1e{bottom:602.941259px;}
.y115{bottom:604.561258px;}
.yf3{bottom:604.741258px;}
.ydf{bottom:608.341257px;}
.yac{bottom:609.061256px;}
.yce{bottom:616.981253px;}
.y1d{bottom:623.641251px;}
.y114{bottom:625.261250px;}
.yf2{bottom:625.441250px;}
.yde{bottom:629.041248px;}
.y64{bottom:633.001247px;}
.ycd{bottom:637.681245px;}
.y84{bottom:639.481244px;}
.yaa{bottom:640.740600px;}
.y1c{bottom:644.341242px;}
.ya9{bottom:645.061242px;}
.y113{bottom:645.961242px;}
.yf1{bottom:646.141242px;}
.ydd{bottom:649.741240px;}
.y63{bottom:653.701239px;}
.ycc{bottom:658.381237px;}
.y83{bottom:660.181236px;}
.ya7{bottom:661.440600px;}
.y1b{bottom:665.041234px;}
.ya6{bottom:665.761234px;}
.y112{bottom:666.661233px;}
.yf0{bottom:666.841233px;}
.ydc{bottom:670.441232px;}
.y62{bottom:674.401230px;}
.y85{bottom:676.380600px;}
.ycb{bottom:679.081228px;}
.y82{bottom:680.701228px;}
.y1a{bottom:685.741226px;}
.ya5{bottom:686.461225px;}
.ydb{bottom:686.641225px;}
.y111{bottom:687.361225px;}
.yef{bottom:687.541225px;}
.y61{bottom:695.101222px;}
.yca{bottom:699.781220px;}
.y19{bottom:706.441217px;}
.y110{bottom:708.061217px;}
.yee{bottom:708.241217px;}
.y81{bottom:712.741215px;}
.y60{bottom:715.801214px;}
.ya4{bottom:718.141213px;}
.yc9{bottom:720.481212px;}
.yed{bottom:724.621210px;}
.y18{bottom:726.781209px;}
.y41{bottom:727.141209px;}
.y10f{bottom:728.761208px;}
.y80{bottom:733.441207px;}
.y5d{bottom:736.501205px;}
.yc8{bottom:736.861205px;}
.y17{bottom:747.841201px;}
.y10e{bottom:749.461200px;}
.ya3{bottom:750.001200px;}
.y5c{bottom:757.201197px;}
.y40{bottom:768.181193px;}
.y16{bottom:768.541193px;}
.y10d{bottom:769.801192px;}
.ya2{bottom:770.701192px;}
.y7f{bottom:770.881192px;}
.y5e{bottom:773.580600px;}
.y5b{bottom:777.901189px;}
.y15{bottom:788.881184px;}
.y3f{bottom:789.241184px;}
.y10c{bottom:790.501184px;}
.y5a{bottom:800.401180px;}
.ya1{bottom:804.901178px;}
.y7e{bottom:808.501177px;}
.y14{bottom:809.941176px;}
.y9e{bottom:829.201168px;}
.y13{bottom:830.641168px;}
.y59{bottom:835.501166px;}
.y9f{bottom:845.580600px;}
.y9d{bottom:849.901160px;}
.y12{bottom:851.341159px;}
.y58{bottom:856.201158px;}
.y11{bottom:872.041151px;}
.y57{bottom:876.901149px;}
.y10{bottom:892.741143px;}
.y56{bottom:897.601141px;}
.yf{bottom:913.441135px;}
.y54{bottom:913.980600px;}
.ye{bottom:934.141126px;}
.y52{bottom:934.680600px;}
.y4f{bottom:939.001124px;}
.yd{bottom:954.841118px;}
.y4e{bottom:959.701116px;}
.yc{bottom:975.541110px;}
.y50{bottom:976.080600px;}
.y4d{bottom:980.401108px;}
.yb{bottom:995.881102px;}
.y3e{bottom:996.241102px;}
.y4c{bottom:1010.101096px;}
.ya{bottom:1016.941093px;}
.y4b{bottom:1030.801088px;}
.y9{bottom:1036.741085px;}
.y3d{bottom:1037.641085px;}
.y48{bottom:1051.501079px;}
.y8{bottom:1054.741078px;}
.y3c{bottom:1058.341077px;}
.y47{bottom:1072.201071px;}
.y7{bottom:1074.721070px;}
.y3b{bottom:1079.041068px;}
.y49{bottom:1088.580600px;}
.y6{bottom:1092.721063px;}
.y46{bottom:1092.901063px;}
.y3a{bottom:1099.741060px;}
.y5{bottom:1113.421055px;}
.y45{bottom:1115.401054px;}
.y39{bottom:1120.441052px;}
.y4{bottom:1134.301046px;}
.y38{bottom:1141.141044px;}
.y43{bottom:1156.080600px;}
.y3{bottom:1158.601037px;}
.y42{bottom:1160.401036px;}
.y125{bottom:1161.481035px;}
.y37{bottom:1161.841035px;}
.y1{bottom:1196.401021px;}
.h5{height:20.520000px;}
.h6{height:49.992168px;}
.h1{height:52.435877px;}
.h7{height:58.121696px;}
.h3{height:63.175756px;}
.h4{height:63.949193px;}
.h2{height:74.820556px;}
.h0{height:1263.000000px;}
.w5{width:1.080000px;}
.w1{width:1.260000px;}
.w6{width:4.320000px;}
.w7{width:7.740000px;}
.w3{width:15.840000px;}
.w4{width:380.700000px;}
.w2{width:505.620000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:84.959216px;}
.x2{left:90.539214px;}
.x3{left:92.519595px;}
.x11{left:129.779198px;}
.x9{left:134.099196px;}
.x8{left:138.059174px;}
.x1a{left:148.679191px;}
.x5{left:152.999939px;}
.x1b{left:156.419937px;}
.x2d{left:157.679937px;}
.x15{left:223.199911px;}
.x13{left:225.359910px;}
.xd{left:229.499908px;}
.x17{left:245.879902px;}
.x7{left:255.239898px;}
.x19{left:286.019886px;}
.x16{left:294.839882px;}
.xa{left:296.100000px;}
.xe{left:298.980000px;}
.x24{left:311.939875px;}
.x6{left:315.539874px;}
.x18{left:317.339873px;}
.x12{left:320.399872px;}
.x29{left:331.199868px;}
.x23{left:350.639860px;}
.x4{left:356.759151px;}
.x1e{left:358.919856px;}
.x22{left:369.899852px;}
.x10{left:378.359849px;}
.xc{left:385.379846px;}
.x1f{left:390.779844px;}
.x14{left:412.379835px;}
.x2c{left:452.339819px;}
.xb{left:514.259794px;}
.x25{left:516.420000px;}
.x1c{left:526.679789px;}
.x28{left:547.379781px;}
.x20{left:550.439780px;}
.x26{left:559.259776px;}
.x21{left:572.939771px;}
.x27{left:578.159769px;}
.x2a{left:759.419696px;}
.x2b{left:764.279694px;}
.xf{left:788.760000px;}
.x1d{left:792.000000px;}
.x2e{left:798.837493px;}
.x2f{left:807.296846px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.009446pt;}
.ls5{letter-spacing:0.018917pt;}
.ls1{letter-spacing:0.244853pt;}
.ls2{letter-spacing:0.649823pt;}
.ls4{letter-spacing:7.693976pt;}
.ws1{word-spacing:-15.999994pt;}
.ws3{word-spacing:-14.719994pt;}
.ws0{word-spacing:-13.279995pt;}
.ws2{word-spacing:0.000000pt;}
._18{margin-left:-2.061303pt;}
._0{margin-left:-1.159795pt;}
._1{width:1.225010pt;}
._6{width:2.854183pt;}
._7{width:3.767156pt;}
._e{width:4.859829pt;}
._9{width:5.818253pt;}
._a{width:7.199308pt;}
._4{width:8.697248pt;}
._b{width:9.591567pt;}
._5{width:10.587243pt;}
._c{width:12.361438pt;}
._d{width:13.704840pt;}
._8{width:14.809424pt;}
._16{width:17.424093pt;}
._17{width:18.994980pt;}
._28{width:19.895904pt;}
._13{width:20.869747pt;}
._12{width:21.964701pt;}
._29{width:22.871160pt;}
._11{width:24.016731pt;}
._1b{width:24.988315pt;}
._10{width:26.008665pt;}
._f{width:26.990344pt;}
._2{width:28.945084pt;}
._3{width:30.265118pt;}
._15{width:31.183211pt;}
._14{width:32.609310pt;}
._2a{width:38.550776pt;}
._1d{width:39.712880pt;}
._2d{width:44.869436pt;}
._1e{width:45.819799pt;}
._1f{width:47.079671pt;}
._2e{width:68.088837pt;}
._2b{width:76.925359pt;}
._2c{width:78.296841pt;}
._19{width:166.282470pt;}
._24{width:167.418305pt;}
._23{width:183.427744pt;}
._25{width:190.453006pt;}
._22{width:199.418292pt;}
._1c{width:228.624549pt;}
._20{width:237.091378pt;}
._26{width:357.435569pt;}
._1a{width:360.560405pt;}
._21{width:622.320900pt;}
._27{width:623.983330pt;}
.fs0{font-size:53.119979pt;}
.fs3{font-size:58.879976pt;}
.fs2{font-size:63.999974pt;}
.fs1{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:3.840387pt;}
.y4a{bottom:3.840411pt;}
.y51{bottom:3.840451pt;}
.y53{bottom:3.840466pt;}
.y55{bottom:3.840473pt;}
.ya0{bottom:3.840498pt;}
.y5f{bottom:3.840523pt;}
.y86{bottom:3.840558pt;}
.ya8{bottom:3.840563pt;}
.yab{bottom:3.840571pt;}
.y67{bottom:3.840587pt;}
.yb0{bottom:3.840604pt;}
.y2{bottom:59.947976pt;}
.yc6{bottom:81.067968pt;}
.y9c{bottom:86.027966pt;}
.yec{bottom:89.067964pt;}
.y36{bottom:94.347962pt;}
.y10b{bottom:95.947962pt;}
.yeb{bottom:99.147960pt;}
.yc5{bottom:99.467960pt;}
.y9b{bottom:104.427958pt;}
.yda{bottom:106.187958pt;}
.y35{bottom:112.747955pt;}
.y10a{bottom:114.347954pt;}
.yea{bottom:117.547953pt;}
.yc4{bottom:117.867953pt;}
.y7d{bottom:121.707951pt;}
.y9a{bottom:122.827951pt;}
.yd9{bottom:124.587950pt;}
.y34{bottom:131.147948pt;}
.y109{bottom:132.747947pt;}
.ye9{bottom:135.947946pt;}
.yc3{bottom:136.267945pt;}
.yd8{bottom:138.987944pt;}
.y7c{bottom:140.107944pt;}
.y99{bottom:141.227944pt;}
.y33{bottom:149.547940pt;}
.y108{bottom:151.147940pt;}
.ye8{bottom:154.347938pt;}
.yc2{bottom:154.667938pt;}
.y7b{bottom:158.507937pt;}
.y98{bottom:159.627936pt;}
.y32{bottom:167.947933pt;}
.y107{bottom:169.547932pt;}
.ye7{bottom:172.747931pt;}
.yc1{bottom:173.067931pt;}
.y7a{bottom:176.907929pt;}
.y97{bottom:178.027929pt;}
.y31{bottom:186.347925pt;}
.y106{bottom:187.947925pt;}
.ye6{bottom:191.147924pt;}
.yc0{bottom:191.467923pt;}
.y79{bottom:195.307922pt;}
.y96{bottom:196.427921pt;}
.y30{bottom:204.747918pt;}
.y105{bottom:206.347917pt;}
.ye5{bottom:209.547916pt;}
.ybf{bottom:209.867916pt;}
.y78{bottom:213.707915pt;}
.y95{bottom:214.827914pt;}
.y2f{bottom:223.147911pt;}
.y104{bottom:224.747910pt;}
.ybe{bottom:228.267909pt;}
.y77{bottom:232.107907pt;}
.y94{bottom:233.227907pt;}
.y2e{bottom:241.547903pt;}
.y103{bottom:243.147903pt;}
.ybd{bottom:246.667901pt;}
.y76{bottom:250.507900pt;}
.y93{bottom:251.627899pt;}
.y2d{bottom:259.947896pt;}
.y124{bottom:261.387895pt;}
.y102{bottom:261.547895pt;}
.ybc{bottom:265.067894pt;}
.y75{bottom:268.907892pt;}
.y92{bottom:270.027892pt;}
.y2c{bottom:278.347889pt;}
.y123{bottom:279.787888pt;}
.y101{bottom:279.947888pt;}
.ybb{bottom:283.467887pt;}
.y74{bottom:287.307885pt;}
.y2b{bottom:296.747881pt;}
.y122{bottom:298.187881pt;}
.y100{bottom:298.347881pt;}
.y91{bottom:300.907880pt;}
.yba{bottom:301.867879pt;}
.y73{bottom:305.707878pt;}
.y2a{bottom:315.147874pt;}
.y121{bottom:316.587873pt;}
.yff{bottom:316.747873pt;}
.y90{bottom:319.307872pt;}
.yb9{bottom:320.267872pt;}
.y72{bottom:324.107870pt;}
.y29{bottom:333.547867pt;}
.y120{bottom:334.987866pt;}
.yfe{bottom:335.147866pt;}
.yb8{bottom:338.667865pt;}
.y71{bottom:342.507863pt;}
.y8f{bottom:351.147860pt;}
.y28{bottom:351.947859pt;}
.y11f{bottom:353.387859pt;}
.yfd{bottom:353.547859pt;}
.yb7{bottom:357.067857pt;}
.y70{bottom:360.907856pt;}
.y8e{bottom:369.547852pt;}
.y27{bottom:370.347852pt;}
.y11e{bottom:371.787851pt;}
.yfc{bottom:371.947851pt;}
.yb6{bottom:375.467850pt;}
.y6f{bottom:379.307848pt;}
.yd7{bottom:382.827847pt;}
.y8d{bottom:387.947845pt;}
.y26{bottom:388.747845pt;}
.y11d{bottom:390.187844pt;}
.yfb{bottom:390.347844pt;}
.y126{bottom:391.147844pt;}
.yb5{bottom:393.867842pt;}
.y6e{bottom:397.707841pt;}
.yd6{bottom:401.227840pt;}
.y25{bottom:407.147837pt;}
.y11c{bottom:408.587837pt;}
.yfa{bottom:408.747837pt;}
.yb4{bottom:412.267835pt;}
.y6d{bottom:416.107834pt;}
.yd5{bottom:419.627832pt;}
.y8c{bottom:421.387831pt;}
.y24{bottom:425.547830pt;}
.y11b{bottom:426.987829pt;}
.yf9{bottom:427.147829pt;}
.yb3{bottom:430.667828pt;}
.y6c{bottom:434.507826pt;}
.yd4{bottom:438.027825pt;}
.y23{bottom:443.947822pt;}
.y8b{bottom:444.587822pt;}
.y11a{bottom:445.387822pt;}
.yf8{bottom:445.547822pt;}
.ye4{bottom:448.747821pt;}
.yb2{bottom:449.067820pt;}
.y6b{bottom:452.907819pt;}
.yd3{bottom:456.427817pt;}
.y22{bottom:462.347815pt;}
.y8a{bottom:462.987815pt;}
.y119{bottom:463.787814pt;}
.yf7{bottom:463.947814pt;}
.ye3{bottom:467.147813pt;}
.y6a{bottom:471.307811pt;}
.yb1{bottom:472.267811pt;}
.yd2{bottom:474.827810pt;}
.y21{bottom:480.747808pt;}
.y89{bottom:481.387807pt;}
.y118{bottom:482.187807pt;}
.yf6{bottom:482.347807pt;}
.ye2{bottom:485.547806pt;}
.yaf{bottom:486.827200pt;}
.yae{bottom:490.667804pt;}
.yd1{bottom:493.227803pt;}
.y69{bottom:494.667802pt;}
.y20{bottom:499.147800pt;}
.y117{bottom:500.587800pt;}
.yf5{bottom:500.747800pt;}
.ye1{bottom:503.947798pt;}
.yad{bottom:509.067796pt;}
.yd0{bottom:511.627795pt;}
.y68{bottom:513.067795pt;}
.y88{bottom:515.307794pt;}
.y1f{bottom:517.547793pt;}
.y116{bottom:518.987792pt;}
.yf4{bottom:519.147792pt;}
.ye0{bottom:522.347791pt;}
.y66{bottom:527.627200pt;}
.ycf{bottom:530.027788pt;}
.y65{bottom:531.467787pt;}
.y87{bottom:533.707787pt;}
.yc7{bottom:535.627786pt;}
.y1e{bottom:535.947786pt;}
.y115{bottom:537.387785pt;}
.yf3{bottom:537.547785pt;}
.ydf{bottom:540.747784pt;}
.yac{bottom:541.387783pt;}
.yce{bottom:548.427781pt;}
.y1d{bottom:554.347778pt;}
.y114{bottom:555.787778pt;}
.yf2{bottom:555.947778pt;}
.yde{bottom:559.147776pt;}
.y64{bottom:562.667775pt;}
.ycd{bottom:566.827773pt;}
.y84{bottom:568.427773pt;}
.yaa{bottom:569.547200pt;}
.y1c{bottom:572.747771pt;}
.ya9{bottom:573.387771pt;}
.y113{bottom:574.187770pt;}
.yf1{bottom:574.347770pt;}
.ydd{bottom:577.547769pt;}
.y63{bottom:581.067768pt;}
.ycc{bottom:585.227766pt;}
.y83{bottom:586.827765pt;}
.ya7{bottom:587.947200pt;}
.y1b{bottom:591.147764pt;}
.ya6{bottom:591.787763pt;}
.y112{bottom:592.587763pt;}
.yf0{bottom:592.747763pt;}
.ydc{bottom:595.947762pt;}
.y62{bottom:599.467760pt;}
.y85{bottom:601.227200pt;}
.ycb{bottom:603.627759pt;}
.y82{bottom:605.067758pt;}
.y1a{bottom:609.547756pt;}
.ya5{bottom:610.187756pt;}
.ydb{bottom:610.347756pt;}
.y111{bottom:610.987756pt;}
.yef{bottom:611.147756pt;}
.y61{bottom:617.867753pt;}
.yca{bottom:622.027751pt;}
.y19{bottom:627.947749pt;}
.y110{bottom:629.387748pt;}
.yee{bottom:629.547748pt;}
.y81{bottom:633.547747pt;}
.y60{bottom:636.267745pt;}
.ya4{bottom:638.347745pt;}
.yc9{bottom:640.427744pt;}
.yed{bottom:644.107742pt;}
.y18{bottom:646.027742pt;}
.y41{bottom:646.347741pt;}
.y10f{bottom:647.787741pt;}
.y80{bottom:651.947739pt;}
.y5d{bottom:654.667738pt;}
.yc8{bottom:654.987738pt;}
.y17{bottom:664.747734pt;}
.y10e{bottom:666.187734pt;}
.ya3{bottom:666.667733pt;}
.y5c{bottom:673.067731pt;}
.y40{bottom:682.827727pt;}
.y16{bottom:683.147727pt;}
.y10d{bottom:684.267726pt;}
.ya2{bottom:685.067726pt;}
.y7f{bottom:685.227726pt;}
.y5e{bottom:687.627200pt;}
.y5b{bottom:691.467723pt;}
.y15{bottom:701.227720pt;}
.y3f{bottom:701.547719pt;}
.y10c{bottom:702.667719pt;}
.y5a{bottom:711.467715pt;}
.ya1{bottom:715.467714pt;}
.y7e{bottom:718.667713pt;}
.y14{bottom:719.947712pt;}
.y9e{bottom:737.067705pt;}
.y13{bottom:738.347705pt;}
.y59{bottom:742.667703pt;}
.y9f{bottom:751.627200pt;}
.y9d{bottom:755.467698pt;}
.y12{bottom:756.747697pt;}
.y58{bottom:761.067696pt;}
.y11{bottom:775.147690pt;}
.y57{bottom:779.467688pt;}
.y10{bottom:793.547683pt;}
.y56{bottom:797.867681pt;}
.yf{bottom:811.947675pt;}
.y54{bottom:812.427200pt;}
.ye{bottom:830.347668pt;}
.y52{bottom:830.827200pt;}
.y4f{bottom:834.667666pt;}
.yd{bottom:848.747661pt;}
.y4e{bottom:853.067659pt;}
.yc{bottom:867.147653pt;}
.y50{bottom:867.627200pt;}
.y4d{bottom:871.467651pt;}
.yb{bottom:885.227646pt;}
.y3e{bottom:885.547646pt;}
.y4c{bottom:897.867641pt;}
.ya{bottom:903.947638pt;}
.y4b{bottom:916.267633pt;}
.y9{bottom:921.547631pt;}
.y3d{bottom:922.347631pt;}
.y48{bottom:934.667626pt;}
.y8{bottom:937.547625pt;}
.y3c{bottom:940.747624pt;}
.y47{bottom:953.067619pt;}
.y7{bottom:955.307618pt;}
.y3b{bottom:959.147616pt;}
.y49{bottom:967.627200pt;}
.y6{bottom:971.307611pt;}
.y46{bottom:971.467611pt;}
.y3a{bottom:977.547609pt;}
.y5{bottom:989.707604pt;}
.y45{bottom:991.467603pt;}
.y39{bottom:995.947602pt;}
.y4{bottom:1008.267597pt;}
.y38{bottom:1014.347594pt;}
.y43{bottom:1027.627200pt;}
.y3{bottom:1029.867588pt;}
.y42{bottom:1031.467587pt;}
.y125{bottom:1032.427587pt;}
.y37{bottom:1032.747587pt;}
.y1{bottom:1063.467575pt;}
.h5{height:18.240000pt;}
.h6{height:44.437482pt;}
.h1{height:46.609669pt;}
.h7{height:51.663729pt;}
.h3{height:56.156228pt;}
.h4{height:56.843727pt;}
.h2{height:66.507161pt;}
.h0{height:1122.666667pt;}
.w5{width:0.960000pt;}
.w1{width:1.120000pt;}
.w6{width:3.840000pt;}
.w7{width:6.880000pt;}
.w3{width:14.080000pt;}
.w4{width:338.400000pt;}
.w2{width:449.440000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:75.519303pt;}
.x2{left:80.479301pt;}
.x3{left:82.239640pt;}
.x11{left:115.359287pt;}
.x9{left:119.199286pt;}
.x8{left:122.719265pt;}
.x1a{left:132.159280pt;}
.x5{left:135.999946pt;}
.x1b{left:139.039944pt;}
.x2d{left:140.159944pt;}
.x15{left:198.399921pt;}
.x13{left:200.319920pt;}
.xd{left:203.999918pt;}
.x17{left:218.559913pt;}
.x7{left:226.879909pt;}
.x19{left:254.239898pt;}
.x16{left:262.079895pt;}
.xa{left:263.200000pt;}
.xe{left:265.760000pt;}
.x24{left:277.279889pt;}
.x6{left:280.479888pt;}
.x18{left:282.079887pt;}
.x12{left:284.799886pt;}
.x29{left:294.399882pt;}
.x23{left:311.679875pt;}
.x4{left:317.119245pt;}
.x1e{left:319.039872pt;}
.x22{left:328.799868pt;}
.x10{left:336.319865pt;}
.xc{left:342.559863pt;}
.x1f{left:347.359861pt;}
.x14{left:366.559853pt;}
.x2c{left:402.079839pt;}
.xb{left:457.119817pt;}
.x25{left:459.040000pt;}
.x1c{left:468.159813pt;}
.x28{left:486.559805pt;}
.x20{left:489.279804pt;}
.x26{left:497.119801pt;}
.x21{left:509.279796pt;}
.x27{left:513.919794pt;}
.x2a{left:675.039730pt;}
.x2b{left:679.359728pt;}
.xf{left:701.120000pt;}
.x1d{left:704.000000pt;}
.x2e{left:710.077772pt;}
.x2f{left:717.597197pt;}
}




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