
    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_ac4d7e256d965ec7cf12de6b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.792000;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_264af98abbbe9c69aeb71514.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.992000;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_b009f197b2371bc49b2f1207.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.992000;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_d968310ce6275e1c495cd487.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.980000;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_2ea9c25753f8fdf8c769584b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.713867;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_85da3f51a9975cb3764234c6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a5b8c73474d1acff63d4b39a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666000;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;}
.m4{transform:matrix(0.176653,0.176901,-0.176777,0.176777,0,0);-ms-transform:matrix(0.176653,0.176901,-0.176777,0.176777,0,0);-webkit-transform:matrix(0.176653,0.176901,-0.176777,0.176777,0,0);}
.m1{transform:matrix(0.176704,-0.176849,0.176777,0.176777,0,0);-ms-transform:matrix(0.176704,-0.176849,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176704,-0.176849,0.176777,0.176777,0,0);}
.m2{transform:matrix(0.176740,0.176813,-0.176777,0.176777,0,0);-ms-transform:matrix(0.176740,0.176813,-0.176777,0.176777,0,0);-webkit-transform:matrix(0.176740,0.176813,-0.176777,0.176777,0,0);}
.m3{transform:matrix(0.176805,-0.176749,0.176777,0.176777,0,0);-ms-transform:matrix(0.176805,-0.176749,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176805,-0.176749,0.176777,0.176777,0,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);}
.m5{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:31.218751px;}
.v3{vertical-align:38.250001px;}
.v1{vertical-align:54.112502px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:40.483802px;}
.lsb{letter-spacing:40.492103px;}
.ls7{letter-spacing:40.499889px;}
.ls4{letter-spacing:40.500415px;}
.ls5{letter-spacing:40.501212px;}
.lsf{letter-spacing:42.504014px;}
.ls6{letter-spacing:42.504082px;}
.ls8{letter-spacing:42.506797px;}
.lsa{letter-spacing:43.650764px;}
.lsd{letter-spacing:43.874889px;}
.ls1{letter-spacing:44.983866px;}
.lse{letter-spacing:45.670976px;}
.lsc{letter-spacing:45.895105px;}
.ls3{letter-spacing:46.233359px;}
.ls9{letter-spacing:46.457826px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(238,116,0),0 0.015em rgb(238,116,0),0.015em 0 rgb(238,116,0),0 -0.015em  rgb(238,116,0);}
.sc1{text-shadow:-0.015em 0 rgb(0,156,188),0 0.015em rgb(0,156,188),0.015em 0 rgb(0,156,188),0 -0.015em  rgb(0,156,188);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(238,116,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,156,188);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-58.056003px;}
.ws1{word-spacing:-34.054800px;}
.wsc{word-spacing:-33.984001px;}
.ws9{word-spacing:-29.916001px;}
.ws8{word-spacing:-28.320000px;}
.wsf{word-spacing:-28.254000px;}
.ws2{word-spacing:-22.703201px;}
.wsa{word-spacing:-21.037371px;}
.ws7{word-spacing:-19.824000px;}
.wsb{word-spacing:-19.534570px;}
.ws10{word-spacing:-18.836001px;}
.ws6{word-spacing:-18.408001px;}
.ws5{word-spacing:-16.992001px;}
.ws3{word-spacing:-13.098001px;}
.wsd{word-spacing:-4.446807px;}
.wse{word-spacing:-4.129198px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-15.990001px;}
._a{margin-left:-11.880000px;}
._2{margin-left:-10.824001px;}
._8{margin-left:-9.318000px;}
._6{margin-left:-7.440000px;}
._9{margin-left:-6.418181px;}
._4{margin-left:-5.328000px;}
._3{margin-left:-3.690000px;}
._0{margin-left:-1.722000px;}
._5{width:1.581750px;}
._7{width:401.292013px;}
.fca{color:rgb(0,151,167);}
.fc9{color:rgb(238,116,0);}
.fc8{color:transparent;}
.fc7{color:rgb(238,115,12);}
.fc4{color:rgb(0,156,188);}
.fc6{color:rgb(89,89,89);}
.fc5{color:rgb(255,255,255);}
.fc3{color:rgb(102,102,102);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(136,136,136);}
.fc0{color:rgb(0,171,197);}
.fs17{font-size:17.496601px;}
.fs15{font-size:18.842401px;}
.fs16{font-size:18.842405px;}
.fs6{font-size:55.500005px;}
.fs18{font-size:68.000004px;}
.fs9{font-size:72.000002px;}
.fsa{font-size:78.000005px;}
.fs14{font-size:82.773601px;}
.fs5{font-size:83.250003px;}
.fsb{font-size:84.000000px;}
.fs12{font-size:89.141401px;}
.fs10{font-size:89.141403px;}
.fs11{font-size:89.141405px;}
.fs13{font-size:89.141424px;}
.fsf{font-size:96.000006px;}
.fs4{font-size:96.200006px;}
.fsd{font-size:102.000000px;}
.fse{font-size:108.000003px;}
.fs8{font-size:120.000001px;}
.fsc{font-size:126.000004px;}
.fs7{font-size:144.000005px;}
.fs3{font-size:144.300002px;}
.fs1{font-size:204.000001px;}
.fs2{font-size:232.799992px;}
.fs0{font-size:246.000014px;}
.y0{bottom:0.000000px;}
.y5c{bottom:19.022016px;}
.y9{bottom:21.782217px;}
.y50{bottom:33.962016px;}
.y15{bottom:45.127935px;}
.y5b{bottom:52.142028px;}
.y20{bottom:57.541972px;}
.y29{bottom:68.312842px;}
.y4f{bottom:75.362006px;}
.y67{bottom:75.955708px;}
.y14{bottom:80.317936px;}
.y5a{bottom:86.522018px;}
.y1f{bottom:94.801973px;}
.y66{bottom:111.145709px;}
.y13{bottom:117.397915px;}
.y28{bottom:121.649137px;}
.y59{bottom:123.782019px;}
.y4e{bottom:130.502027px;}
.y1e{bottom:133.321952px;}
.y45{bottom:138.482034px;}
.y65{bottom:146.335710px;}
.y2c{bottom:147.057807px;}
.y6{bottom:148.824469px;}
.y58{bottom:162.932009px;}
.y27{bottom:164.567146px;}
.yb{bottom:166.714358px;}
.y2e{bottom:167.094204px;}
.y4d{bottom:167.762005px;}
.y12{bottom:171.907924px;}
.y5{bottom:172.550702px;}
.y44{bottom:179.882024px;}
.y64{bottom:181.525711px;}
.y2d{bottom:185.546454px;}
.y1d{bottom:188.461995px;}
.ya{bottom:191.554355px;}
.y26{bottom:191.567147px;}
.y4c{bottom:205.022029px;}
.y11{bottom:208.987914px;}
.y63{bottom:216.715724px;}
.y57{bottom:218.252018px;}
.y25{bottom:218.567153px;}
.y4{bottom:220.276956px;}
.y43{bottom:221.282003px;}
.y1c{bottom:225.722018px;}
.y4b{bottom:242.282030px;}
.y24{bottom:245.567154px;}
.y56{bottom:251.372019px;}
.y62{bottom:253.795702px;}
.y42{bottom:261.422016px;}
.y10{bottom:263.497923px;}
.y1b{bottom:264.241986px;}
.y3{bottom:265.483050px;}
.y23{bottom:272.567155px;}
.y4a{bottom:279.542031px;}
.y2b{bottom:283.942318px;}
.y55{bottom:285.122020px;}
.y41{bottom:298.682017px;}
.yf{bottom:298.687924px;}
.y22{bottom:299.567156px;}
.y61{bottom:308.935712px;}
.y49{bottom:318.062021px;}
.y1a{bottom:318.121995px;}
.y54{bottom:320.942010px;}
.y21{bottom:326.567157px;}
.y2{bottom:335.214208px;}
.ye{bottom:335.767914px;}
.y40{bottom:335.942007px;}
.y60{bottom:346.195702px;}
.y19{bottom:351.241996px;}
.y70{bottom:355.463766px;}
.y53{bottom:358.202000px;}
.y48{bottom:359.462011px;}
.y6f{bottom:366.897604px;}
.y73{bottom:372.061187px;}
.y3f{bottom:374.462008px;}
.y6e{bottom:375.887254px;}
.y75{bottom:376.360361px;}
.y74{bottom:380.260742px;}
.y6d{bottom:381.512253px;}
.y2a{bottom:382.059185px;}
.y5f{bottom:383.455692px;}
.y18{bottom:384.362004px;}
.y6c{bottom:387.137253px;}
.y6b{bottom:392.762253px;}
.y52{bottom:397.352007px;}
.y6a{bottom:398.387255px;}
.y47{bottom:400.862013px;}
.y72{bottom:401.071512px;}
.y69{bottom:404.012254px;}
.yd{bottom:406.027913px;}
.y68{bottom:409.637255px;}
.y1{bottom:410.193068px;}
.y38{bottom:415.773792px;}
.y3e{bottom:415.862005px;}
.y17{bottom:418.742003px;}
.y71{bottom:421.751172px;}
.y5e{bottom:421.975688px;}
.y37{bottom:427.207652px;}
.y3b{bottom:432.371213px;}
.y36{bottom:436.197302px;}
.y3d{bottom:436.670410px;}
.y3c{bottom:440.570790px;}
.y35{bottom:441.822301px;}
.y34{bottom:447.447301px;}
.y33{bottom:453.072301px;}
.y51{bottom:455.822000px;}
.y16{bottom:457.262002px;}
.y32{bottom:458.697303px;}
.yc{bottom:458.827911px;}
.y3a{bottom:461.381560px;}
.y5d{bottom:463.375685px;}
.y31{bottom:464.322302px;}
.y30{bottom:469.947303px;}
.y39{bottom:482.061220px;}
.y8{bottom:515.573025px;}
.y2f{bottom:517.013027px;}
.y46{bottom:519.595626px;}
.y7{bottom:553.013023px;}
.h17{height:13.647349px;}
.h15{height:14.697072px;}
.h16{height:14.697076px;}
.h8{height:56.160002px;}
.h9{height:60.840004px;}
.h14{height:64.563409px;}
.h5{height:64.935002px;}
.ha{height:65.520000px;}
.h12{height:69.530293px;}
.h10{height:69.530294px;}
.h11{height:69.530296px;}
.h13{height:69.530311px;}
.hf{height:69.937504px;}
.hd{height:74.308594px;}
.h4{height:74.508755px;}
.h19{height:77.097659px;}
.he{height:78.679690px;}
.h18{height:83.916003px;}
.hc{height:87.421876px;}
.h1a{height:87.789066px;}
.h7{height:93.600001px;}
.hb{height:98.280003px;}
.h6{height:112.320004px;}
.h3{height:129.148506px;}
.h2{height:181.583994px;}
.h1{height:191.880011px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xb{left:44.072837px;}
.x7{left:47.114175px;}
.x13{left:51.326882px;}
.xf{left:52.524563px;}
.xc{left:54.096568px;}
.x5{left:65.764075px;}
.x2{left:71.869030px;}
.x28{left:75.834113px;}
.x10{left:79.464545px;}
.x14{left:81.381677px;}
.xd{left:88.704435px;}
.x2b{left:94.948889px;}
.x11{left:96.567207px;}
.x12{left:99.147649px;}
.x2a{left:101.840532px;}
.x29{left:102.913913px;}
.xe{left:107.852385px;}
.x3{left:235.644510px;}
.x4{left:256.767477px;}
.x1{left:317.729915px;}
.x6{left:323.538637px;}
.x25{left:561.657993px;}
.x26{left:580.774692px;}
.x27{left:589.583466px;}
.x1a{left:687.139948px;}
.x1b{left:696.092284px;}
.x16{left:705.699207px;}
.x17{left:778.609041px;}
.x1c{left:817.822761px;}
.xa{left:828.954378px;}
.x9{left:839.447669px;}
.x15{left:920.028967px;}
.x19{left:925.354049px;}
.x18{left:935.403418px;}
.x2f{left:970.137762px;}
.x30{left:972.197060px;}
.x22{left:974.318869px;}
.x23{left:976.378111px;}
.x1e{left:978.297780px;}
.x2d{left:989.587329px;}
.x1f{left:993.768391px;}
.x32{left:997.849242px;}
.x31{left:1000.195518px;}
.x24{left:1002.030350px;}
.x8{left:1005.075010px;}
.x2c{left:1019.421220px;}
.x2e{left:1020.679551px;}
.x1d{left:1023.602283px;}
.x21{left:1024.860727px;}
.x20{left:1026.805323px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:27.750001pt;}
.v3{vertical-align:34.000001pt;}
.v1{vertical-align:48.100002pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:35.985602pt;}
.lsb{letter-spacing:35.992980pt;}
.ls7{letter-spacing:35.999901pt;}
.ls4{letter-spacing:36.000369pt;}
.ls5{letter-spacing:36.001078pt;}
.lsf{letter-spacing:37.781346pt;}
.ls6{letter-spacing:37.781406pt;}
.ls8{letter-spacing:37.783819pt;}
.lsa{letter-spacing:38.800679pt;}
.lsd{letter-spacing:38.999901pt;}
.ls1{letter-spacing:39.985658pt;}
.lse{letter-spacing:40.596423pt;}
.lsc{letter-spacing:40.795649pt;}
.ls3{letter-spacing:41.096319pt;}
.ls9{letter-spacing:41.295845pt;}
.ws0{word-spacing:-51.605336pt;}
.ws1{word-spacing:-30.270934pt;}
.wsc{word-spacing:-30.208001pt;}
.ws9{word-spacing:-26.592001pt;}
.ws8{word-spacing:-25.173334pt;}
.wsf{word-spacing:-25.114667pt;}
.ws2{word-spacing:-20.180623pt;}
.wsa{word-spacing:-18.699885pt;}
.ws7{word-spacing:-17.621333pt;}
.wsb{word-spacing:-17.364062pt;}
.ws10{word-spacing:-16.743112pt;}
.ws6{word-spacing:-16.362668pt;}
.ws5{word-spacing:-15.104000pt;}
.ws3{word-spacing:-11.642668pt;}
.wsd{word-spacing:-3.952717pt;}
.wse{word-spacing:-3.670398pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-14.213334pt;}
._a{margin-left:-10.560000pt;}
._2{margin-left:-9.621334pt;}
._8{margin-left:-8.282667pt;}
._6{margin-left:-6.613333pt;}
._9{margin-left:-5.705050pt;}
._4{margin-left:-4.736000pt;}
._3{margin-left:-3.280000pt;}
._0{margin-left:-1.530667pt;}
._5{width:1.406000pt;}
._7{width:356.704011pt;}
.fs17{font-size:15.552534pt;}
.fs15{font-size:16.748801pt;}
.fs16{font-size:16.748805pt;}
.fs6{font-size:49.333337pt;}
.fs18{font-size:60.444448pt;}
.fs9{font-size:64.000002pt;}
.fsa{font-size:69.333338pt;}
.fs14{font-size:73.576534pt;}
.fs5{font-size:74.000002pt;}
.fsb{font-size:74.666666pt;}
.fs12{font-size:79.236801pt;}
.fs10{font-size:79.236803pt;}
.fs11{font-size:79.236805pt;}
.fs13{font-size:79.236821pt;}
.fsf{font-size:85.333339pt;}
.fs4{font-size:85.511116pt;}
.fsd{font-size:90.666667pt;}
.fse{font-size:96.000003pt;}
.fs8{font-size:106.666667pt;}
.fsc{font-size:112.000004pt;}
.fs7{font-size:128.000004pt;}
.fs3{font-size:128.266668pt;}
.fs1{font-size:181.333334pt;}
.fs2{font-size:206.933327pt;}
.fs0{font-size:218.666679pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:16.908458pt;}
.y9{bottom:19.361970pt;}
.y50{bottom:30.188459pt;}
.y15{bottom:40.113720pt;}
.y5b{bottom:46.348469pt;}
.y20{bottom:51.148419pt;}
.y29{bottom:60.722526pt;}
.y4f{bottom:66.988450pt;}
.y67{bottom:67.516185pt;}
.y14{bottom:71.393721pt;}
.y5a{bottom:76.908460pt;}
.y1f{bottom:84.268420pt;}
.y66{bottom:98.796186pt;}
.y13{bottom:104.353702pt;}
.y28{bottom:108.132566pt;}
.y59{bottom:110.028461pt;}
.y4e{bottom:116.001801pt;}
.y1e{bottom:118.508402pt;}
.y45{bottom:123.095142pt;}
.y65{bottom:130.076187pt;}
.y2c{bottom:130.718050pt;}
.y6{bottom:132.288417pt;}
.y58{bottom:144.828452pt;}
.y27{bottom:146.281907pt;}
.yb{bottom:148.190540pt;}
.y2e{bottom:148.528181pt;}
.y4d{bottom:149.121782pt;}
.y12{bottom:152.807044pt;}
.y5{bottom:153.378402pt;}
.y44{bottom:159.895133pt;}
.y64{bottom:161.356188pt;}
.y2d{bottom:164.930181pt;}
.y1d{bottom:167.521773pt;}
.ya{bottom:170.270538pt;}
.y26{bottom:170.281908pt;}
.y4c{bottom:182.241804pt;}
.y11{bottom:185.767035pt;}
.y63{bottom:192.636199pt;}
.y57{bottom:194.001794pt;}
.y25{bottom:194.281914pt;}
.y4{bottom:195.801739pt;}
.y43{bottom:196.695114pt;}
.y1c{bottom:200.641794pt;}
.y4b{bottom:215.361805pt;}
.y24{bottom:218.281915pt;}
.y56{bottom:223.441795pt;}
.y62{bottom:225.596180pt;}
.y42{bottom:232.375125pt;}
.y10{bottom:234.220376pt;}
.y1b{bottom:234.881765pt;}
.y3{bottom:235.984933pt;}
.y23{bottom:242.281915pt;}
.y4a{bottom:248.481806pt;}
.y2b{bottom:252.393172pt;}
.y55{bottom:253.441796pt;}
.y41{bottom:265.495126pt;}
.yf{bottom:265.500377pt;}
.y22{bottom:266.281916pt;}
.y61{bottom:274.609522pt;}
.y49{bottom:282.721797pt;}
.y1a{bottom:282.775107pt;}
.y54{bottom:285.281787pt;}
.y21{bottom:290.281917pt;}
.y2{bottom:297.968185pt;}
.ye{bottom:298.460368pt;}
.y40{bottom:298.615117pt;}
.y60{bottom:307.729513pt;}
.y19{bottom:312.215108pt;}
.y70{bottom:315.967792pt;}
.y53{bottom:318.401778pt;}
.y48{bottom:319.521788pt;}
.y6f{bottom:326.131203pt;}
.y73{bottom:330.721055pt;}
.y3f{bottom:332.855118pt;}
.y6e{bottom:334.122003pt;}
.y75{bottom:334.542543pt;}
.y74{bottom:338.009548pt;}
.y6d{bottom:339.122003pt;}
.y2a{bottom:339.608165pt;}
.y5f{bottom:340.849504pt;}
.y18{bottom:341.655115pt;}
.y6c{bottom:344.122003pt;}
.y6b{bottom:349.122003pt;}
.y52{bottom:353.201784pt;}
.y6a{bottom:354.122004pt;}
.y47{bottom:356.321789pt;}
.y72{bottom:356.508010pt;}
.y69{bottom:359.122004pt;}
.yd{bottom:360.913700pt;}
.y68{bottom:364.122004pt;}
.y1{bottom:364.616060pt;}
.y38{bottom:369.576704pt;}
.y3e{bottom:369.655116pt;}
.y17{bottom:372.215114pt;}
.y71{bottom:374.889931pt;}
.y5e{bottom:375.089501pt;}
.y37{bottom:379.740135pt;}
.y3b{bottom:384.329967pt;}
.y36{bottom:387.730935pt;}
.y3d{bottom:388.151475pt;}
.y3c{bottom:391.618480pt;}
.y35{bottom:392.730934pt;}
.y34{bottom:397.730934pt;}
.y33{bottom:402.730935pt;}
.y51{bottom:405.175111pt;}
.y16{bottom:406.455113pt;}
.y32{bottom:407.730936pt;}
.yc{bottom:407.847032pt;}
.y3a{bottom:410.116942pt;}
.y5d{bottom:411.889498pt;}
.y31{bottom:412.730936pt;}
.y30{bottom:417.730936pt;}
.y39{bottom:428.498863pt;}
.y8{bottom:458.287133pt;}
.y2f{bottom:459.567135pt;}
.y46{bottom:461.862778pt;}
.y7{bottom:491.567131pt;}
.h17{height:12.130977pt;}
.h15{height:13.064064pt;}
.h16{height:13.064068pt;}
.h8{height:49.920002pt;}
.h9{height:54.080004pt;}
.h14{height:57.389697pt;}
.h5{height:57.720002pt;}
.ha{height:58.240000pt;}
.h12{height:61.804705pt;}
.h10{height:61.804706pt;}
.h11{height:61.804708pt;}
.h13{height:61.804721pt;}
.hf{height:62.166671pt;}
.hd{height:66.052084pt;}
.h4{height:66.230004pt;}
.h19{height:68.531252pt;}
.he{height:69.937502pt;}
.h18{height:74.592002pt;}
.hc{height:77.708334pt;}
.h1a{height:78.034726pt;}
.h7{height:83.200001pt;}
.hb{height:87.360003pt;}
.h6{height:99.840003pt;}
.h3{height:114.798672pt;}
.h2{height:161.407995pt;}
.h1{height:170.560010pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xb{left:39.175855pt;}
.x7{left:41.879266pt;}
.x13{left:45.623895pt;}
.xf{left:46.688500pt;}
.xc{left:48.085839pt;}
.x5{left:58.456956pt;}
.x2{left:63.883582pt;}
.x28{left:67.408100pt;}
.x10{left:70.635151pt;}
.x14{left:72.339268pt;}
.xd{left:78.848387pt;}
.x2b{left:84.399013pt;}
.x11{left:85.837518pt;}
.x12{left:88.131244pt;}
.x2a{left:90.524917pt;}
.x29{left:91.479034pt;}
.xe{left:95.868787pt;}
.x3{left:209.461787pt;}
.x4{left:228.237757pt;}
.x1{left:282.426591pt;}
.x6{left:287.589899pt;}
.x25{left:499.251549pt;}
.x26{left:516.244171pt;}
.x27{left:524.074192pt;}
.x1a{left:610.791064pt;}
.x1b{left:618.748697pt;}
.x16{left:627.288184pt;}
.x17{left:692.096925pt;}
.x1c{left:726.953565pt;}
.xa{left:736.848336pt;}
.x9{left:746.175706pt;}
.x15{left:817.803526pt;}
.x19{left:822.536933pt;}
.x18{left:831.469705pt;}
.x2f{left:862.344677pt;}
.x30{left:864.175164pt;}
.x22{left:866.061217pt;}
.x23{left:867.891654pt;}
.x1e{left:869.598027pt;}
.x2d{left:879.633181pt;}
.x1f{left:883.349681pt;}
.x32{left:886.977104pt;}
.x31{left:889.062683pt;}
.x24{left:890.693644pt;}
.x8{left:893.400009pt;}
.x2c{left:906.152196pt;}
.x2e{left:907.270712pt;}
.x1d{left:909.868696pt;}
.x21{left:910.987312pt;}
.x20{left:912.715843pt;}
}




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