
    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_802f232d854801d13381ce67.woff')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_f8cafc335ac879bd99056201.woff')format("woff");}.ff2{font-family:ff2;line-height:1.176000;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_e5e393b4dc1a68fd8b435b93.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4f78ff78d4435171ed4a8ed2.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_853ab09715f5d18e305ac562.woff')format("woff");}.ff5{font-family:ff5;line-height:0.968262;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_1b80dee6598a906162fabd1a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.032715;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_c29b0984f305826f9f9489fa.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5812472bd6800da89fb422ce.woff')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_566ffe198caa059ed60ded38.woff')format("woff");}.ff9{font-family:ff9;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;}
.m1{transform:matrix(0.000064,-0.250000,0.250000,0.000064,0,0);-ms-transform:matrix(0.000064,-0.250000,0.250000,0.000064,0,0);-webkit-transform:matrix(0.000064,-0.250000,0.250000,0.000064,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);}
.m2{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);}
.v2{vertical-align:-27.000001px;}
.v3{vertical-align:-20.250001px;}
.v4{vertical-align:-18.000001px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:36.000001px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000562px;}
.ls6{letter-spacing:0.005484px;}
.ls2{letter-spacing:107.972072px;}
.ls1{letter-spacing:107.972090px;}
.ls5{letter-spacing:107.986259px;}
.ls4{letter-spacing:107.986322px;}
.ls3{letter-spacing:108.000423px;}
.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;}
}
.wsa{word-spacing:-51.192002px;}
.ws2{word-spacing:-39.816000px;}
.ws4{word-spacing:-26.784001px;}
.ws3{word-spacing:-25.296000px;}
.wsb{word-spacing:-24.174000px;}
.ws7{word-spacing:-23.808002px;}
.ws9{word-spacing:-21.606002px;}
.ws5{word-spacing:-19.944001px;}
.ws0{word-spacing:-15.872002px;}
.ws1{word-spacing:0.000000px;}
.ws6{word-spacing:88.056270px;}
.ws8{word-spacing:89.689943px;}
.wsc{word-spacing:90.193221px;}
._9{margin-left:-13.860000px;}
._a{margin-left:-12.460800px;}
._b{margin-left:-10.511999px;}
._e{margin-left:-9.059575px;}
._d{margin-left:-7.548000px;}
._6{margin-left:-6.102000px;}
._1{margin-left:-4.860000px;}
._5{margin-left:-3.696000px;}
._0{margin-left:-2.520000px;}
._2{margin-left:-1.170000px;}
._3{width:1.092000px;}
._4{width:2.538000px;}
._8{width:3.762000px;}
._7{width:5.028000px;}
._11{width:11.736000px;}
._10{width:12.888000px;}
._12{width:70.272000px;}
._c{width:108.000279px;}
._f{width:118.656001px;}
.fc9{color:rgb(19,79,92);}
.fc8{color:rgb(7,55,99);}
.fc7{color:rgb(0,147,132);}
.fc5{color:rgb(56,118,29);}
.fc2{color:rgb(39,78,19);}
.fc1{color:rgb(12,52,61);}
.fca{color:rgb(204,204,204);}
.fc6{color:rgb(183,183,183);}
.fc4{color:rgb(217,217,217);}
.fc3{color:rgb(102,102,102);}
.fc0{color:rgb(255,255,255);}
.fs10{font-size:32.000004px;}
.fse{font-size:36.000003px;}
.fs4{font-size:48.000004px;}
.fs7{font-size:54.000000px;}
.fsf{font-size:54.000002px;}
.fsa{font-size:55.500000px;}
.fs11{font-size:60.000000px;}
.fs3{font-size:64.000007px;}
.fs13{font-size:66.000004px;}
.fs5{font-size:72.000002px;}
.fs6{font-size:78.000005px;}
.fs15{font-size:84.000000px;}
.fs0{font-size:90.000003px;}
.fs2{font-size:96.000006px;}
.fs14{font-size:97.200003px;}
.fs9{font-size:102.000000px;}
.fsb{font-size:108.000003px;}
.fsc{font-size:114.000007px;}
.fs12{font-size:115.200004px;}
.fs16{font-size:121.200007px;}
.fsd{font-size:151.200005px;}
.fs8{font-size:167.999999px;}
.fs1{font-size:204.000001px;}
.fs17{font-size:216.000007px;}
.y0{bottom:0.000000px;}
.y15{bottom:13.951078px;}
.y9{bottom:17.648947px;}
.y27{bottom:22.120136px;}
.yad{bottom:28.082211px;}
.y33{bottom:35.189025px;}
.y44{bottom:38.286229px;}
.y5e{bottom:40.887623px;}
.ya0{bottom:43.090945px;}
.y56{bottom:43.576137px;}
.y26{bottom:43.720137px;}
.y9f{bottom:59.290947px;}
.y31{bottom:60.125993px;}
.ya{bottom:60.316984px;}
.y32{bottom:61.289026px;}
.y43{bottom:62.586230px;}
.y3{bottom:63.115468px;}
.y5d{bottom:65.187624px;}
.y55{bottom:68.416126px;}
.y6d{bottom:68.756102px;}
.y42{bottom:79.408828px;}
.y30{bottom:84.425991px;}
.y2{bottom:90.115469px;}
.y6c{bottom:91.526080px;}
.y97{bottom:100.220502px;}
.y41{bottom:101.008840px;}
.y25{bottom:104.537841px;}
.y34{bottom:106.302753px;}
.y77{bottom:113.094232px;}
.y2f{bottom:113.788492px;}
.yac{bottom:114.086911px;}
.y6b{bottom:114.296080px;}
.y1{bottom:117.115470px;}
.y54{bottom:118.096094px;}
.y47{bottom:122.592967px;}
.y40{bottom:122.608852px;}
.ybc{bottom:124.666286px;}
.y96{bottom:135.320526px;}
.y14{bottom:139.570376px;}
.y24{bottom:139.727843px;}
.y76{bottom:142.074233px;}
.y5c{bottom:144.437813px;}
.y9d{bottom:146.420563px;}
.ybb{bottom:146.626287px;}
.y8d{bottom:147.544647px;}
.y6a{bottom:155.066082px;}
.y53{bottom:167.776073px;}
.y13{bottom:170.170389px;}
.y95{bottom:170.420538px;}
.y75{bottom:171.054222px;}
.y3f{bottom:172.288831px;}
.y8c{bottom:174.454625px;}
.y23{bottom:174.917821px;}
.yba{bottom:175.066310px;}
.y69{bottom:177.836060px;}
.y9c{bottom:181.520576px;}
.y8{bottom:192.931187px;}
.y5b{bottom:195.737826px;}
.ya9{bottom:195.872342px;}
.yb9{bottom:197.026288px;}
.y3e{bottom:197.128809px;}
.y68{bottom:200.606049px;}
.y8b{bottom:201.364615px;}
.y22{bottom:210.107822px;}
.yab{bottom:213.654677px;}
.y81{bottom:214.427890px;}
.y12{bottom:215.770420px;}
.y52{bottom:217.456053px;}
.y7{bottom:217.771188px;}
.ya8{bottom:220.712354px;}
.y3d{bottom:221.968810px;}
.y94{bottom:223.520562px;}
.yb8{bottom:225.466312px;}
.y8a{bottom:228.274615px;}
.y74{bottom:229.014215px;}
.y9b{bottom:234.620566px;}
.y80{bottom:237.197879px;}
.y67{bottom:241.376028px;}
.y51{bottom:242.296042px;}
.yb7{bottom:245.266301px;}
.y21{bottom:245.297857px;}
.ya7{bottom:245.552355px;}
.y3c{bottom:246.808811px;}
.y5a{bottom:247.037827px;}
.y6{bottom:250.960714px;}
.y2e{bottom:253.844982px;}
.y89{bottom:255.184605px;}
.y93{bottom:258.620552px;}
.y7f{bottom:259.967869px;}
.y11{bottom:261.370406px;}
.y50{bottom:267.136054px;}
.yb6{bottom:267.226313px;}
.y3b{bottom:268.408812px;}
.ya6{bottom:270.392344px;}
.y20{bottom:281.747825px;}
.y88{bottom:282.094606px;}
.y66{bottom:282.146018px;}
.y7e{bottom:282.737858px;}
.y2d{bottom:286.964983px;}
.y9a{bottom:287.720557px;}
.y4f{bottom:291.976055px;}
.ya5{bottom:295.232345px;}
.yb5{bottom:295.666314px;}
.y59{bottom:298.337840px;}
.y65{bottom:304.916008px;}
.y10{bottom:306.970404px;}
.y92{bottom:308.720550px;}
.y87{bottom:309.004607px;}
.y73{bottom:310.397840px;}
.yb4{bottom:317.626314px;}
.y3a{bottom:318.088824px;}
.y5{bottom:322.781931px;}
.y99{bottom:322.820558px;}
.y7d{bottom:323.507848px;}
.y64{bottom:327.685997px;}
.y2c{bottom:335.084981px;}
.y86{bottom:335.914608px;}
.y4e{bottom:341.656056px;}
.y39{bottom:342.928825px;}
.ya4{bottom:343.269205px;}
.y91{bottom:343.820551px;}
.y72{bottom:344.777842px;}
.yb3{bottom:346.426304px;}
.y58{bottom:349.637830px;}
.y63{bottom:350.455976px;}
.y19{bottom:351.931177px;}
.yf{bottom:352.570391px;}
.y1f{bottom:355.007827px;}
.y85{bottom:362.824604px;}
.y7c{bottom:364.277838px;}
.y4d{bottom:366.496057px;}
.yb2{bottom:367.666294px;}
.y38{bottom:367.768819px;}
.y2b{bottom:368.204982px;}
.y98{bottom:375.920559px;}
.y90{bottom:378.920552px;}
.ye{bottom:383.170392px;}
.y4{bottom:383.981925px;}
.y18{bottom:384.331167px;}
.ya3{bottom:386.887313px;}
.y7b{bottom:387.047834px;}
.y37{bottom:389.368816px;}
.yb1{bottom:389.626300px;}
.y84{bottom:389.734603px;}
.y1e{bottom:390.197828px;}
.y62{bottom:391.225982px;}
.y4c{bottom:391.336058px;}
.y71{bottom:395.777839px;}
.y2a{bottom:401.324990px;}
.yaa{bottom:408.054675px;}
.y7a{bottom:409.817829px;}
.y57{bottom:413.417829px;}
.y4b{bottom:416.176059px;}
.yb0{bottom:420.226295px;}
.y1d{bottom:425.387829px;}
.y46{bottom:425.547039px;}
.yd{bottom:428.770395px;}
.y70{bottom:428.897827px;}
.y8f{bottom:429.020554px;}
.ya2{bottom:429.779053px;}
.y17{bottom:431.731171px;}
.y61{bottom:431.995980px;}
.y36{bottom:432.568817px;}
.y79{bottom:432.587829px;}
.y83{bottom:434.644602px;}
.y1b{bottom:436.691230px;}
.y4a{bottom:441.016057px;}
.yaf{bottom:448.666296px;}
.y29{bottom:450.704992px;}
.y35{bottom:454.168818px;}
.y60{bottom:454.765979px;}
.y45{bottom:458.667033px;}
.yc{bottom:459.370393px;}
.y82{bottom:461.554600px;}
.y1c{bottom:461.837830px;}
.y6f{bottom:463.277830px;}
.y8e{bottom:464.120551px;}
.y16{bottom:464.131177px;}
.yae{bottom:470.626299px;}
.y1a{bottom:471.881225px;}
.y78{bottom:473.357831px;}
.ya1{bottom:473.397161px;}
.y5f{bottom:477.535980px;}
.y49{bottom:484.216061px;}
.y48{bottom:536.842156px;}
.y6e{bottom:539.431839px;}
.yb{bottom:544.136695px;}
.y28{bottom:548.168694px;}
.y9e{bottom:555.368687px;}
.h12{height:23.296878px;}
.h10{height:26.208987px;}
.h13{height:34.945315px;}
.h4{height:34.968753px;}
.hc{height:38.531252px;}
.h11{height:39.313478px;}
.h6{height:43.321289px;}
.h9{height:44.524658px;}
.h1b{height:48.049807px;}
.h1c{height:48.082034px;}
.h14{height:48.134766px;}
.h23{height:49.992189px;}
.h15{height:52.417970px;}
.h16{height:52.453127px;}
.h26{height:52.948245px;}
.h21{height:56.786137px;}
.h20{height:56.824223px;}
.h27{height:57.761721px;}
.h1f{height:61.154297px;}
.h5{height:62.575200px;}
.h17{height:69.937504px;}
.h1{height:72.202151px;}
.h1a{height:74.308594px;}
.hf{height:77.015630px;}
.h1e{height:78.626956px;}
.h8{height:81.829102px;}
.he{height:82.107425px;}
.h19{height:83.050786px;}
.ha{height:86.642581px;}
.hb{height:86.668950px;}
.h3{height:87.343757px;}
.h1d{height:88.063203px;}
.h25{height:92.412000px;}
.h18{height:104.371203px;}
.h22{height:109.807206px;}
.hd{height:136.987204px;}
.h7{height:152.207999px;}
.h2{height:184.824000px;}
.h24{height:195.696006px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xa{left:34.869096px;}
.x4{left:85.935387px;}
.x35{left:115.912103px;}
.x34{left:117.100092px;}
.x26{left:135.875059px;}
.x2e{left:141.782483px;}
.x24{left:143.489162px;}
.x17{left:146.072807px;}
.x29{left:148.136810px;}
.x10{left:149.796225px;}
.x28{left:151.080710px;}
.x2b{left:153.118080px;}
.xc{left:154.857938px;}
.xb{left:157.136821px;}
.x2f{left:158.823498px;}
.x16{left:161.055129px;}
.x2a{left:165.177824px;}
.x21{left:169.644259px;}
.x1b{left:171.640749px;}
.x2c{left:174.682086px;}
.x20{left:176.276582px;}
.x27{left:180.085641px;}
.x1a{left:182.063976px;}
.x38{left:183.667326px;}
.x1d{left:186.903546px;}
.x11{left:193.104332px;}
.x30{left:195.782485px;}
.x8{left:197.315267px;}
.x31{left:200.737210px;}
.x18{left:201.888350px;}
.x1e{left:203.031479px;}
.xd{left:208.857944px;}
.x22{left:211.136823px;}
.x14{left:213.033134px;}
.x32{left:215.962668px;}
.x2d{left:228.682087px;}
.x25{left:235.361235px;}
.x1f{left:240.903548px;}
.x19{left:243.380916px;}
.xe{left:251.252963px;}
.x15{left:255.428153px;}
.x12{left:270.447567px;}
.x5{left:283.384978px;}
.x13{left:343.066770px;}
.x23{left:359.743140px;}
.x33{left:385.960625px;}
.x7{left:400.386568px;}
.x3{left:406.427080px;}
.x1c{left:435.950789px;}
.x1{left:443.176349px;}
.x6{left:455.303805px;}
.x2{left:460.232621px;}
.x36{left:677.637112px;}
.x37{left:1038.512351px;}
.x9{left:1054.369972px;}
.xf{left:1062.080406px;}
@media print{
.v2{vertical-align:-24.000001pt;}
.v3{vertical-align:-18.000001pt;}
.v4{vertical-align:-16.000001pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:32.000001pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000500pt;}
.ls6{letter-spacing:0.004875pt;}
.ls2{letter-spacing:95.975175pt;}
.ls1{letter-spacing:95.975191pt;}
.ls5{letter-spacing:95.987785pt;}
.ls4{letter-spacing:95.987841pt;}
.ls3{letter-spacing:96.000376pt;}
.wsa{word-spacing:-45.504001pt;}
.ws2{word-spacing:-35.392000pt;}
.ws4{word-spacing:-23.808001pt;}
.ws3{word-spacing:-22.485333pt;}
.wsb{word-spacing:-21.488000pt;}
.ws7{word-spacing:-21.162668pt;}
.ws9{word-spacing:-19.205335pt;}
.ws5{word-spacing:-17.728001pt;}
.ws0{word-spacing:-14.108446pt;}
.ws1{word-spacing:0.000000pt;}
.ws6{word-spacing:78.272240pt;}
.ws8{word-spacing:79.724393pt;}
.wsc{word-spacing:80.171752pt;}
._9{margin-left:-12.320000pt;}
._a{margin-left:-11.076267pt;}
._b{margin-left:-9.343999pt;}
._e{margin-left:-8.052955pt;}
._d{margin-left:-6.709333pt;}
._6{margin-left:-5.424000pt;}
._1{margin-left:-4.320000pt;}
._5{margin-left:-3.285333pt;}
._0{margin-left:-2.240000pt;}
._2{margin-left:-1.040000pt;}
._3{width:0.970667pt;}
._4{width:2.256000pt;}
._8{width:3.344000pt;}
._7{width:4.469334pt;}
._11{width:10.432000pt;}
._10{width:11.456000pt;}
._12{width:62.464000pt;}
._c{width:96.000248pt;}
._f{width:105.472000pt;}
.fs10{font-size:28.444448pt;}
.fse{font-size:32.000003pt;}
.fs4{font-size:42.666670pt;}
.fs7{font-size:48.000000pt;}
.fsf{font-size:48.000002pt;}
.fsa{font-size:49.333334pt;}
.fs11{font-size:53.333334pt;}
.fs3{font-size:56.888895pt;}
.fs13{font-size:58.666670pt;}
.fs5{font-size:64.000002pt;}
.fs6{font-size:69.333338pt;}
.fs15{font-size:74.666666pt;}
.fs0{font-size:80.000003pt;}
.fs2{font-size:85.333339pt;}
.fs14{font-size:86.400003pt;}
.fs9{font-size:90.666667pt;}
.fsb{font-size:96.000003pt;}
.fsc{font-size:101.333339pt;}
.fs12{font-size:102.400003pt;}
.fs16{font-size:107.733339pt;}
.fsd{font-size:134.400004pt;}
.fs8{font-size:149.333333pt;}
.fs1{font-size:181.333334pt;}
.fs17{font-size:192.000006pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:12.400958pt;}
.y9{bottom:15.687953pt;}
.y27{bottom:19.662343pt;}
.yad{bottom:24.961966pt;}
.y33{bottom:31.279134pt;}
.y44{bottom:34.032204pt;}
.y5e{bottom:36.344554pt;}
.ya0{bottom:38.303062pt;}
.y56{bottom:38.734344pt;}
.y26{bottom:38.862344pt;}
.y9f{bottom:52.703064pt;}
.y31{bottom:53.445327pt;}
.ya{bottom:53.615097pt;}
.y32{bottom:54.479134pt;}
.y43{bottom:55.632205pt;}
.y3{bottom:56.102639pt;}
.y5d{bottom:57.944555pt;}
.y55{bottom:60.814335pt;}
.y6d{bottom:61.116535pt;}
.y42{bottom:70.585625pt;}
.y30{bottom:75.045325pt;}
.y2{bottom:80.102639pt;}
.y6c{bottom:81.356515pt;}
.y97{bottom:89.084891pt;}
.y41{bottom:89.785636pt;}
.y25{bottom:92.922526pt;}
.y34{bottom:94.491336pt;}
.y77{bottom:100.528206pt;}
.y2f{bottom:101.145326pt;}
.yac{bottom:101.410588pt;}
.y6b{bottom:101.596516pt;}
.y1{bottom:104.102640pt;}
.y54{bottom:104.974306pt;}
.y47{bottom:108.971526pt;}
.y40{bottom:108.985646pt;}
.ybc{bottom:110.814476pt;}
.y96{bottom:120.284912pt;}
.y14{bottom:124.062557pt;}
.y24{bottom:124.202527pt;}
.y76{bottom:126.288207pt;}
.y5c{bottom:128.389167pt;}
.y9d{bottom:130.151612pt;}
.ybb{bottom:130.334477pt;}
.y8d{bottom:131.150797pt;}
.y6a{bottom:137.836517pt;}
.y53{bottom:149.134287pt;}
.y13{bottom:151.262568pt;}
.y95{bottom:151.484923pt;}
.y75{bottom:152.048198pt;}
.y3f{bottom:153.145628pt;}
.y8c{bottom:155.070778pt;}
.y23{bottom:155.482508pt;}
.yba{bottom:155.614498pt;}
.y69{bottom:158.076498pt;}
.y9c{bottom:161.351623pt;}
.y8{bottom:171.494388pt;}
.y5b{bottom:173.989178pt;}
.ya9{bottom:174.108748pt;}
.yb9{bottom:175.134478pt;}
.y3e{bottom:175.225608pt;}
.y68{bottom:178.316488pt;}
.y8b{bottom:178.990768pt;}
.y22{bottom:186.762509pt;}
.yab{bottom:189.915269pt;}
.y81{bottom:190.602569pt;}
.y12{bottom:191.795929pt;}
.y52{bottom:193.294269pt;}
.y7{bottom:193.574389pt;}
.ya8{bottom:196.188759pt;}
.y3d{bottom:197.305609pt;}
.y94{bottom:198.684944pt;}
.yb8{bottom:200.414499pt;}
.y8a{bottom:202.910769pt;}
.y74{bottom:203.568191pt;}
.y9b{bottom:208.551614pt;}
.y80{bottom:210.842559pt;}
.y67{bottom:214.556470pt;}
.y51{bottom:215.374260pt;}
.yb7{bottom:218.014490pt;}
.y21{bottom:218.042540pt;}
.ya7{bottom:218.268760pt;}
.y3c{bottom:219.385610pt;}
.y5a{bottom:219.589180pt;}
.y6{bottom:223.076190pt;}
.y2e{bottom:225.639984pt;}
.y89{bottom:226.830760pt;}
.y93{bottom:229.884935pt;}
.y7f{bottom:231.082550pt;}
.y11{bottom:232.329250pt;}
.y50{bottom:237.454270pt;}
.yb6{bottom:237.534500pt;}
.y3b{bottom:238.585610pt;}
.ya6{bottom:240.348750pt;}
.y20{bottom:250.442511pt;}
.y88{bottom:250.750761pt;}
.y66{bottom:250.796461pt;}
.y7e{bottom:251.322541pt;}
.y2d{bottom:255.079985pt;}
.y9a{bottom:255.751606pt;}
.y4f{bottom:259.534271pt;}
.ya5{bottom:262.428751pt;}
.yb5{bottom:262.814501pt;}
.y59{bottom:265.189191pt;}
.y65{bottom:271.036451pt;}
.y10{bottom:272.862581pt;}
.y92{bottom:274.418267pt;}
.y87{bottom:274.670762pt;}
.y73{bottom:275.909192pt;}
.yb4{bottom:282.334502pt;}
.y3a{bottom:282.745622pt;}
.y5{bottom:286.917272pt;}
.y99{bottom:286.951607pt;}
.y7d{bottom:287.562532pt;}
.y64{bottom:291.276442pt;}
.y2c{bottom:297.853316pt;}
.y86{bottom:298.590762pt;}
.y4e{bottom:303.694272pt;}
.y39{bottom:304.825622pt;}
.ya4{bottom:305.128182pt;}
.y91{bottom:305.618267pt;}
.y72{bottom:306.469193pt;}
.yb3{bottom:307.934493pt;}
.y58{bottom:310.789183pt;}
.y63{bottom:311.516423pt;}
.y19{bottom:312.827713pt;}
.yf{bottom:313.395903pt;}
.y1f{bottom:315.562513pt;}
.y85{bottom:322.510759pt;}
.y7c{bottom:323.802523pt;}
.y4d{bottom:325.774273pt;}
.yb2{bottom:326.814483pt;}
.y38{bottom:326.905617pt;}
.y2b{bottom:327.293317pt;}
.y98{bottom:334.151608pt;}
.y90{bottom:336.818268pt;}
.ye{bottom:340.595904pt;}
.y4{bottom:341.317267pt;}
.y18{bottom:341.627704pt;}
.ya3{bottom:343.899834pt;}
.y7b{bottom:344.042519pt;}
.y37{bottom:346.105614pt;}
.yb1{bottom:346.334489pt;}
.y84{bottom:346.430758pt;}
.y1e{bottom:346.842514pt;}
.y62{bottom:347.756429pt;}
.y4c{bottom:347.854274pt;}
.y71{bottom:351.802524pt;}
.y2a{bottom:356.733324pt;}
.yaa{bottom:362.715266pt;}
.y7a{bottom:364.282514pt;}
.y57{bottom:367.482514pt;}
.y4b{bottom:369.934275pt;}
.yb0{bottom:373.534485pt;}
.y1d{bottom:378.122515pt;}
.y46{bottom:378.264035pt;}
.yd{bottom:381.129240pt;}
.y70{bottom:381.242513pt;}
.y8f{bottom:381.351604pt;}
.ya2{bottom:382.025825pt;}
.y17{bottom:383.761041pt;}
.y61{bottom:383.996427pt;}
.y36{bottom:384.505615pt;}
.y79{bottom:384.522515pt;}
.y83{bottom:386.350757pt;}
.y1b{bottom:388.169982pt;}
.y4a{bottom:392.014273pt;}
.yaf{bottom:398.814485pt;}
.y29{bottom:400.626660pt;}
.y35{bottom:403.705616pt;}
.y60{bottom:404.236426pt;}
.y45{bottom:407.704030pt;}
.yc{bottom:408.329238pt;}
.y82{bottom:410.270756pt;}
.y1c{bottom:410.522516pt;}
.y6f{bottom:411.802516pt;}
.y8e{bottom:412.551601pt;}
.y16{bottom:412.561046pt;}
.yae{bottom:418.334488pt;}
.y1a{bottom:419.449978pt;}
.y78{bottom:420.762516pt;}
.ya1{bottom:420.797476pt;}
.y5f{bottom:424.476426pt;}
.y49{bottom:430.414276pt;}
.y48{bottom:477.193028pt;}
.y6e{bottom:479.494968pt;}
.yb{bottom:483.677062pt;}
.y28{bottom:487.261061pt;}
.y9e{bottom:493.661056pt;}
.h12{height:20.708336pt;}
.h10{height:23.296877pt;}
.h13{height:31.062502pt;}
.h4{height:31.083336pt;}
.hc{height:34.250002pt;}
.h11{height:34.945314pt;}
.h6{height:38.507813pt;}
.h9{height:39.577474pt;}
.h1b{height:42.710940pt;}
.h1c{height:42.739586pt;}
.h14{height:42.786459pt;}
.h23{height:44.437501pt;}
.h15{height:46.593751pt;}
.h16{height:46.625001pt;}
.h26{height:47.065107pt;}
.h21{height:50.476566pt;}
.h20{height:50.510420pt;}
.h27{height:51.343752pt;}
.h1f{height:54.359375pt;}
.h5{height:55.622400pt;}
.h17{height:62.166671pt;}
.h1{height:64.179690pt;}
.h1a{height:66.052084pt;}
.hf{height:68.458338pt;}
.h1e{height:69.890627pt;}
.h8{height:72.736979pt;}
.he{height:72.984377pt;}
.h19{height:73.822921pt;}
.ha{height:77.015627pt;}
.hb{height:77.039067pt;}
.h3{height:77.638895pt;}
.h1d{height:78.278403pt;}
.h25{height:82.144000pt;}
.h18{height:92.774403pt;}
.h22{height:97.606406pt;}
.hd{height:121.766404pt;}
.h7{height:135.295999pt;}
.h2{height:164.288000pt;}
.h24{height:173.952006pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xa{left:30.994752pt;}
.x4{left:76.387010pt;}
.x35{left:103.032980pt;}
.x34{left:104.088970pt;}
.x26{left:120.777830pt;}
.x2e{left:126.028874pt;}
.x24{left:127.545922pt;}
.x17{left:129.842495pt;}
.x29{left:131.677164pt;}
.x10{left:133.152200pt;}
.x28{left:134.293964pt;}
.x2b{left:136.104960pt;}
.xc{left:137.651500pt;}
.xb{left:139.677174pt;}
.x2f{left:141.176443pt;}
.x16{left:143.160115pt;}
.x2a{left:146.824733pt;}
.x21{left:150.794897pt;}
.x1b{left:152.569555pt;}
.x2c{left:155.272965pt;}
.x20{left:156.690295pt;}
.x27{left:160.076125pt;}
.x1a{left:161.834645pt;}
.x38{left:163.259845pt;}
.x1d{left:166.136485pt;}
.x11{left:171.648295pt;}
.x30{left:174.028876pt;}
.x8{left:175.391349pt;}
.x31{left:178.433076pt;}
.x18{left:179.456311pt;}
.x1e{left:180.472426pt;}
.xd{left:185.651506pt;}
.x22{left:187.677176pt;}
.x14{left:189.362786pt;}
.x32{left:191.966816pt;}
.x2d{left:203.272967pt;}
.x25{left:209.209987pt;}
.x1f{left:214.136487pt;}
.x19{left:216.338592pt;}
.xe{left:223.335967pt;}
.x15{left:227.047247pt;}
.x12{left:240.397838pt;}
.x5{left:251.897758pt;}
.x13{left:304.948240pt;}
.x23{left:319.771680pt;}
.x33{left:343.076111pt;}
.x7{left:355.899171pt;}
.x3{left:361.268516pt;}
.x1c{left:387.511812pt;}
.x1{left:393.934533pt;}
.x6{left:404.714493pt;}
.x2{left:409.095663pt;}
.x36{left:602.344099pt;}
.x37{left:923.122090pt;}
.x9{left:937.217753pt;}
.xf{left:944.071472pt;}
}




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