
    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_d950d0cd891a88bf4a8455c9.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_22fc7876fcf6f2af39ac1bb1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_03649c1411e4403ace4755f0.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c0d902570edf1a5fc6452893.woff')format("woff");}.ff4{font-family:ff4;line-height:0.682617;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_5c9f85a5096288770bf91ff9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.746094;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_55063c91301672c6c32bb96c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.926270;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_e0344fc240211e5c1518074f.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_bc397ffa9d5348616b84762a.woff')format("woff");}.ff8{font-family:ff8;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:44.412894px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-93.615239px;}
.ws2{word-spacing:-24.024001px;}
.ws1{word-spacing:0.000000px;}
._3{margin-left:-7.901512px;}
._1{margin-left:-5.205835px;}
._7{margin-left:-3.701026px;}
._0{margin-left:-1.016248px;}
._4{width:2.838859px;}
._2{width:46.625734px;}
._6{width:48.000006px;}
._5{width:151.525984px;}
.fc2{color:rgb(191,191,191);}
.fc1{color:rgb(204,204,204);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.999999px;}
.fs0{font-size:66.000002px;}
.fs2{font-size:156.000006px;}
.fs1{font-size:167.999994px;}
.y0{bottom:0.000000px;}
.y8d{bottom:3.496582px;}
.y5c{bottom:6.342408px;}
.yff{bottom:6.870842px;}
.y9c{bottom:6.870849px;}
.ydf{bottom:6.870851px;}
.ya5{bottom:6.871577px;}
.y94{bottom:6.871583px;}
.ycd{bottom:6.871584px;}
.ya0{bottom:6.871592px;}
.y9a{bottom:6.872312px;}
.yf8{bottom:6.872315px;}
.y92{bottom:6.872318px;}
.ya9{bottom:6.872327px;}
.yfa{bottom:9.717035px;}
.y9e{bottom:9.717041px;}
.y97{bottom:9.717048px;}
.yd1{bottom:9.717050px;}
.ya3{bottom:9.717774px;}
.y102{bottom:9.718506px;}
.y11e{bottom:10.099363px;}
.yf0{bottom:10.099365px;}
.ybb{bottom:10.100092px;}
.ybd{bottom:10.100097px;}
.yee{bottom:10.100827px;}
.y120{bottom:10.100830px;}
.y5e{bottom:10.747925px;}
.yba{bottom:22.174072px;}
.yf6{bottom:25.844964px;}
.y99{bottom:25.844972px;}
.y91{bottom:25.844978px;}
.ycc{bottom:25.844979px;}
.yd0{bottom:28.690430px;}
.y96{bottom:28.691163px;}
.y2{bottom:38.523194px;}
.ycb{bottom:44.818359px;}
.y90{bottom:44.819093px;}
.y11c{bottom:60.770513px;}
.y38{bottom:60.771233px;}
.y20{bottom:70.623599px;}
.y1f{bottom:92.442989px;}
.yb8{bottom:115.989254px;}
.y78{bottom:121.951168px;}
.yb7{bottom:134.962648px;}
.y77{bottom:152.770754px;}
.yb6{bottom:174.781499px;}
.y11b{bottom:185.139404px;}
.y76{bottom:187.494133px;}
.yb5{bottom:196.601069px;}
.y11a{bottom:204.113518px;}
.y4e{bottom:205.522334px;}
.yb4{bottom:215.574463px;}
.y75{bottom:225.063719px;}
.y4d{bottom:227.341919px;}
.y119{bottom:241.086178px;}
.y74{bottom:246.882929px;}
.y4c{bottom:249.161129px;}
.yb3{bottom:255.394049px;}
.yec{bottom:267.574949px;}
.y73{bottom:273.108036px;}
.yb2{bottom:274.367428px;}
.y118{bottom:278.060308px;}
.y4b{bottom:282.976322px;}
.yeb{bottom:289.394534px;}
.y72{bottom:297.314204px;}
.yea{bottom:308.367913px;}
.yb1{bottom:314.187022px;}
.y117{bottom:315.032953px;}
.y4a{bottom:321.787348px;}
.y71{bottom:332.539670px;}
.yb0{bottom:336.006599px;}
.ye9{bottom:345.341308px;}
.y116{bottom:354.853276px;}
.y49{bottom:355.602167px;}
.yaf{bottom:357.825434px;}
.y5f{bottom:360.263669px;}
.yad{bottom:374.427983px;}
.y5d{bottom:375.740477px;}
.y115{bottom:376.672124px;}
.y37{bottom:381.279779px;}
.y5b{bottom:382.532591px;}
.ye8{bottom:385.160884px;}
.y70{bottom:387.254150px;}
.yae{bottom:394.354985px;}
.yac{bottom:397.201176px;}
.y114{bottom:398.492429px;}
.y48{bottom:406.409177px;}
.ye7{bottom:406.979737px;}
.y36{bottom:407.504886px;}
.y5a{bottom:415.100466px;}
.y113{bottom:420.311279px;}
.yaa{bottom:424.049556px;}
.y1e{bottom:424.984131px;}
.ya8{bottom:427.848627px;}
.ye6{bottom:428.799314px;}
.y35{bottom:431.710874px;}
.y112{bottom:439.283938px;}
.y59{bottom:439.306274px;}
.y6f{bottom:441.969725px;}
.yab{bottom:443.976558px;}
.y1d{bottom:449.190119px;}
.ye5{bottom:450.618899px;}
.y47{bottom:457.215812px;}
.y34{bottom:466.434268px;}
.ya6{bottom:473.670412px;}
.y58{bottom:474.532100px;}
.y111{bottom:476.258053px;}
.ye4{bottom:476.843631px;}
.ya4{bottom:477.470217px;}
.y1c{bottom:483.005312px;}
.ya7{bottom:493.598148px;}
.y6e{bottom:496.684205px;}
.ye3{bottom:501.049799px;}
.y33{bottom:504.003659px;}
.y46{bottom:508.022087px;}
.y110{bottom:516.077641px;}
.ye2{bottom:522.869384px;}
.ya1{bottom:523.292723px;}
.y32{bottom:525.823064px;}
.y9f{bottom:527.092527px;}
.y57{bottom:529.246955px;}
.y1b{bottom:533.811947px;}
.y10f{bottom:537.896489px;}
.ye0{bottom:539.471931px;}
.ya2{bottom:543.219725px;}
.y6d{bottom:551.398685px;}
.y31{bottom:552.048156px;}
.y45{bottom:558.829097px;}
.ye1{bottom:559.398933px;}
.y10e{bottom:559.716059px;}
.yde{bottom:562.245123px;}
.y1a{bottom:572.622809px;}
.y9b{bottom:572.914311px;}
.y30{bottom:576.254144px;}
.y98{bottom:576.713382px;}
.y56{bottom:583.961795px;}
.y10d{bottom:585.941526px;}
.ydc{bottom:589.092773px;}
.y9d{bottom:592.841313px;}
.ydb{bottom:592.892577px;}
.y19{bottom:594.442199px;}
.y6c{bottom:606.114260px;}
.ydd{bottom:609.020508px;}
.y44{bottom:609.635747px;}
.y10c{bottom:610.146974px;}
.y2f{bottom:610.977538px;}
.y18{bottom:616.261598px;}
.y8f{bottom:622.535151px;}
.y10a{bottom:626.748775px;}
.y93{bottom:637.709468px;}
.y17{bottom:638.080995px;}
.y95{bottom:638.663080px;}
.y55{bottom:638.676635px;}
.yd9{bottom:638.714347px;}
.yd8{bottom:642.514152px;}
.y10b{bottom:646.675777px;}
.y2e{bottom:648.546944px;}
.y109{bottom:649.521969px;}
.yda{bottom:658.641349px;}
.y16{bottom:659.900392px;}
.y43{bottom:660.442022px;}
.y6b{bottom:660.828740px;}
.y2d{bottom:670.366334px;}
.y107{bottom:676.371097px;}
.y106{bottom:680.170902px;}
.y15{bottom:681.719789px;}
.yd6{bottom:688.336671px;}
.yd5{bottom:692.135742px;}
.y54{bottom:693.391475px;}
.y8e{bottom:693.673094px;}
.y108{bottom:696.298833px;}
.y14{bottom:703.539179px;}
.yd7{bottom:708.263673px;}
.y8c{bottom:709.149906px;}
.y42{bottom:711.249017px;}
.y6a{bottom:715.543220px;}
.y13{bottom:725.358577px;}
.y104{bottom:725.991205px;}
.y103{bottom:729.791742px;}
.yb9{bottom:730.739501px;}
.y2c{bottom:731.086303px;}
.y8b{bottom:734.466059px;}
.yd3{bottom:737.957513px;}
.yd2{bottom:741.757317px;}
.ybc{bottom:742.813476px;}
.y105{bottom:745.919673px;}
.y12{bottom:747.177974px;}
.y53{bottom:748.106330px;}
.y41{bottom:750.059699px;}
.y8a{bottom:756.285644px;}
.yd4{bottom:757.885248px;}
.y2b{bottom:758.436397px;}
.y11{bottom:768.997379px;}
.y2a{bottom:769.671388px;}
.y69{bottom:770.258795px;}
.y40{bottom:771.879269px;}
.y100{bottom:775.613531px;}
.y89{bottom:778.105229px;}
.yfe{bottom:779.414067px;}
.yca{bottom:787.579099px;}
.y10{bottom:790.816777px;}
.y101{bottom:795.540533px;}
.y3f{bottom:798.104376px;}
.y88{bottom:799.924079px;}
.y29{bottom:800.490779px;}
.yce{bottom:802.753416px;}
.y52{bottom:802.821170px;}
.ycf{bottom:803.707029px;}
.yf{bottom:812.636174px;}
.y87{bottom:821.743649px;}
.y3e{bottom:822.310184px;}
.y68{bottom:824.973260px;}
.yfc{bottom:825.235838px;}
.yfb{bottom:829.035642px;}
.ye{bottom:834.455564px;}
.y28{bottom:835.716620px;}
.y86{bottom:843.563237px;}
.yfd{bottom:845.163573px;}
.yd{bottom:856.274969px;}
.y3d{bottom:857.536010px;}
.yc9{bottom:858.717044px;}
.y85{bottom:865.382080px;}
.yc8{bottom:874.193841px;}
.yf5{bottom:874.857424px;}
.yc{bottom:878.094359px;}
.y67{bottom:879.687740px;}
.y84{bottom:887.201662px;}
.yf7{bottom:890.030276px;}
.y27{bottom:890.431460px;}
.yf9{bottom:890.985354px;}
.yed{bottom:895.782715px;}
.y3c{bottom:898.844242px;}
.yc7{bottom:899.510009px;}
.yb{bottom:899.913757px;}
.yef{bottom:907.857423px;}
.y83{bottom:909.021239px;}
.y51{bottom:912.250850px;}
.yc6{bottom:921.328859px;}
.ya{bottom:921.733154px;}
.y82{bottom:930.840824px;}
.y26{bottom:931.739873px;}
.y3b{bottom:934.070255px;}
.y66{bottom:934.403315px;}
.yc5{bottom:943.148444px;}
.y9{bottom:943.552559px;}
.yf4{bottom:945.994634px;}
.y81{bottom:952.660401px;}
.yf3{bottom:961.471431px;}
.yc4{bottom:964.968014px;}
.y8{bottom:965.371949px;}
.y25{bottom:966.965705px;}
.y80{bottom:974.479249px;}
.y11d{bottom:983.061035px;}
.yf2{bottom:986.787599px;}
.yc3{bottom:986.787604px;}
.y7{bottom:987.191339px;}
.y3a{bottom:988.785278px;}
.y65{bottom:989.117798px;}
.y11f{bottom:995.134276px;}
.y7f{bottom:996.298835px;}
.yc2{bottom:1008.607176px;}
.yf1{bottom:1008.607178px;}
.y6{bottom:1009.010742px;}
.y7e{bottom:1018.118407px;}
.y24{bottom:1021.680542px;}
.y5{bottom:1027.984130px;}
.y64{bottom:1030.426025px;}
.yc1{bottom:1030.426029px;}
.y7d{bottom:1039.937260px;}
.y39{bottom:1043.499757px;}
.yc0{bottom:1052.245605px;}
.y63{bottom:1052.245612px;}
.y7c{bottom:1061.756837px;}
.y4{bottom:1062.960938px;}
.y23{bottom:1062.988950px;}
.y62{bottom:1074.065184px;}
.ybf{bottom:1074.065186px;}
.y50{bottom:1076.395387px;}
.y7b{bottom:1083.576416px;}
.ybe{bottom:1095.884034px;}
.y61{bottom:1095.884397px;}
.y22{bottom:1098.214783px;}
.y7a{bottom:1102.549804px;}
.y3{bottom:1114.230470px;}
.y60{bottom:1117.703613px;}
.y4f{bottom:1117.703617px;}
.y79{bottom:1130.523193px;}
.y21{bottom:1139.523194px;}
.y1{bottom:1155.000000px;}
.hc{height:18.973389px;}
.h9{height:21.819214px;}
.h1a{height:25.722657px;}
.h14{height:25.723389px;}
.h1e{height:25.724121px;}
.h1b{height:27.823242px;}
.h17{height:27.823974px;}
.h1f{height:27.824708px;}
.h12{height:28.568847px;}
.h13{height:28.569580px;}
.h1d{height:28.570312px;}
.hb{height:28.611329px;}
.h16{height:30.577147px;}
.h15{height:39.897949px;}
.h10{height:44.696778px;}
.ha{height:47.244142px;}
.h19{height:47.542236px;}
.hf{height:47.542970px;}
.h4{height:48.049806px;}
.h2{height:48.082032px;}
.h11{height:48.495849px;}
.he{height:48.496582px;}
.h1c{height:48.497314px;}
.h18{height:63.670165px;}
.hd{height:63.670899px;}
.h8{height:107.625000px;}
.h6{height:107.919795px;}
.h1{height:108.000000px;}
.h3{height:111.972652px;}
.h5{height:113.953129px;}
.h7{height:122.718746px;}
.h0{height:1263.000000px;}
.wb{width:52.875000px;}
.w5{width:58.500000px;}
.wa{width:59.625000px;}
.w9{width:63.000000px;}
.wc{width:65.250000px;}
.w8{width:72.000000px;}
.w2{width:101.250000px;}
.w7{width:333.000000px;}
.w4{width:349.875000px;}
.w6{width:356.625000px;}
.w3{width:601.875000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x6{left:1.125000px;}
.x28{left:7.083143px;}
.x1a{left:9.000000px;}
.x23{left:10.355919px;}
.x2b{left:14.377301px;}
.x2d{left:17.189801px;}
.x21{left:18.592009px;}
.x12{left:20.080003px;}
.xc{left:24.665002px;}
.x1b{left:33.260783px;}
.x19{left:36.000000px;}
.x1e{left:40.579067px;}
.x14{left:42.446880px;}
.x24{left:69.014912px;}
.x13{left:99.000000px;}
.x1{left:108.000000px;}
.x3{left:135.000000px;}
.x25{left:138.375000px;}
.x1c{left:156.995350px;}
.x4{left:162.000000px;}
.xa{left:174.937500px;}
.x1f{left:196.412648px;}
.x7{left:209.250000px;}
.x9{left:282.375000px;}
.x15{left:290.825775px;}
.x8{left:300.937500px;}
.x22{left:324.000000px;}
.x20{left:325.125000px;}
.x1d{left:327.375000px;}
.x17{left:328.500000px;}
.x5{left:391.239473px;}
.x2{left:446.456700px;}
.x16{left:456.750000px;}
.xb{left:457.875000px;}
.x2f{left:481.500000px;}
.x26{left:482.625000px;}
.x35{left:484.875000px;}
.xd{left:516.375000px;}
.x30{left:545.625000px;}
.x27{left:546.750000px;}
.x36{left:549.000000px;}
.xe{left:574.875000px;}
.x31{left:606.375000px;}
.x29{left:607.500000px;}
.x37{left:609.750000px;}
.xf{left:633.375000px;}
.x32{left:660.375000px;}
.x2a{left:661.500000px;}
.x38{left:663.750000px;}
.x10{left:691.875000px;}
.x33{left:721.125000px;}
.x2c{left:722.250000px;}
.x39{left:724.500000px;}
.x11{left:750.375000px;}
.x34{left:787.500000px;}
.x2e{left:788.625000px;}
.x18{left:789.750000px;}
.x3a{left:790.875000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:39.478128pt;}
.ws0{word-spacing:-83.213545pt;}
.ws2{word-spacing:-21.354667pt;}
.ws1{word-spacing:0.000000pt;}
._3{margin-left:-7.023566pt;}
._1{margin-left:-4.627409pt;}
._7{margin-left:-3.289801pt;}
._0{margin-left:-0.903332pt;}
._4{width:2.523430pt;}
._2{width:41.445096pt;}
._6{width:42.666672pt;}
._5{width:134.689764pt;}
.fs3{font-size:37.333332pt;}
.fs0{font-size:58.666668pt;}
.fs2{font-size:138.666672pt;}
.fs1{font-size:149.333328pt;}
.y0{bottom:0.000000pt;}
.y8d{bottom:3.108073pt;}
.y5c{bottom:5.637696pt;}
.yff{bottom:6.107415pt;}
.y9c{bottom:6.107422pt;}
.ydf{bottom:6.107423pt;}
.ya5{bottom:6.108068pt;}
.y94{bottom:6.108074pt;}
.ycd{bottom:6.108075pt;}
.ya0{bottom:6.108081pt;}
.y9a{bottom:6.108721pt;}
.yf8{bottom:6.108724pt;}
.y92{bottom:6.108727pt;}
.ya9{bottom:6.108735pt;}
.yfa{bottom:8.637364pt;}
.y9e{bottom:8.637369pt;}
.y97{bottom:8.637376pt;}
.yd1{bottom:8.637377pt;}
.ya3{bottom:8.638021pt;}
.y102{bottom:8.638672pt;}
.y11e{bottom:8.977212pt;}
.yf0{bottom:8.977213pt;}
.ybb{bottom:8.977860pt;}
.ybd{bottom:8.977864pt;}
.yee{bottom:8.978513pt;}
.y120{bottom:8.978516pt;}
.y5e{bottom:9.553711pt;}
.yba{bottom:19.710286pt;}
.yf6{bottom:22.973301pt;}
.y99{bottom:22.973308pt;}
.y91{bottom:22.973313pt;}
.ycc{bottom:22.973315pt;}
.yd0{bottom:25.502604pt;}
.y96{bottom:25.503256pt;}
.y2{bottom:34.242839pt;}
.ycb{bottom:39.838541pt;}
.y90{bottom:39.839193pt;}
.y11c{bottom:54.018234pt;}
.y38{bottom:54.018874pt;}
.y20{bottom:62.776532pt;}
.y1f{bottom:82.171545pt;}
.yb8{bottom:103.101559pt;}
.y78{bottom:108.401038pt;}
.yb7{bottom:119.966798pt;}
.y77{bottom:135.796225pt;}
.yb6{bottom:155.361332pt;}
.y11b{bottom:164.568359pt;}
.y76{bottom:166.661451pt;}
.yb5{bottom:174.756505pt;}
.y11a{bottom:181.434238pt;}
.y4e{bottom:182.686519pt;}
.yb4{bottom:191.621745pt;}
.y75{bottom:200.056639pt;}
.y4d{bottom:202.081705pt;}
.y119{bottom:214.298825pt;}
.y74{bottom:219.451492pt;}
.y4c{bottom:221.476559pt;}
.yb3{bottom:227.016932pt;}
.yec{bottom:237.844399pt;}
.y73{bottom:242.762699pt;}
.yb2{bottom:243.882158pt;}
.y118{bottom:247.164718pt;}
.y4b{bottom:251.534509pt;}
.yeb{bottom:257.239585pt;}
.y72{bottom:264.279292pt;}
.yea{bottom:274.104811pt;}
.yb1{bottom:279.277353pt;}
.y117{bottom:280.029291pt;}
.y4a{bottom:286.033198pt;}
.y71{bottom:295.590818pt;}
.yb0{bottom:298.672532pt;}
.ye9{bottom:306.970051pt;}
.y116{bottom:315.425134pt;}
.y49{bottom:316.090816pt;}
.yaf{bottom:318.067052pt;}
.y5f{bottom:320.234372pt;}
.yad{bottom:332.824873pt;}
.y5d{bottom:333.991535pt;}
.y115{bottom:334.819665pt;}
.y37{bottom:338.915359pt;}
.y5b{bottom:340.028970pt;}
.ye8{bottom:342.365230pt;}
.y70{bottom:344.225912pt;}
.yae{bottom:350.537764pt;}
.yac{bottom:353.067712pt;}
.y114{bottom:354.215492pt;}
.y48{bottom:361.252602pt;}
.ye7{bottom:361.759766pt;}
.y36{bottom:362.226566pt;}
.y5a{bottom:368.978192pt;}
.y113{bottom:373.610025pt;}
.yaa{bottom:376.932939pt;}
.y1e{bottom:377.763672pt;}
.ya8{bottom:380.309891pt;}
.ye6{bottom:381.154945pt;}
.y35{bottom:383.742999pt;}
.y112{bottom:390.474611pt;}
.y59{bottom:390.494465pt;}
.y6f{bottom:392.861978pt;}
.yab{bottom:394.645829pt;}
.y1d{bottom:399.280105pt;}
.ye5{bottom:400.550132pt;}
.y47{bottom:406.414056pt;}
.y34{bottom:414.608238pt;}
.ya6{bottom:421.040367pt;}
.y58{bottom:421.806312pt;}
.y111{bottom:423.340491pt;}
.ye4{bottom:423.861006pt;}
.ya4{bottom:424.417971pt;}
.y1c{bottom:429.338056pt;}
.ya7{bottom:438.753909pt;}
.y6e{bottom:441.497072pt;}
.ye3{bottom:445.377599pt;}
.y33{bottom:448.003252pt;}
.y46{bottom:451.575189pt;}
.y110{bottom:458.735681pt;}
.ye2{bottom:464.772785pt;}
.ya1{bottom:465.149087pt;}
.y32{bottom:467.398279pt;}
.y9f{bottom:468.526691pt;}
.y57{bottom:470.441738pt;}
.y1b{bottom:474.499509pt;}
.y10f{bottom:478.130212pt;}
.ye0{bottom:479.530605pt;}
.ya2{bottom:482.861977pt;}
.y6d{bottom:490.132165pt;}
.y31{bottom:490.709472pt;}
.y45{bottom:496.736976pt;}
.ye1{bottom:497.243496pt;}
.y10e{bottom:497.525385pt;}
.yde{bottom:499.773443pt;}
.y1a{bottom:508.998052pt;}
.y9b{bottom:509.257165pt;}
.y30{bottom:512.225905pt;}
.y98{bottom:512.634117pt;}
.y56{bottom:519.077152pt;}
.y10d{bottom:520.836912pt;}
.ydc{bottom:523.638020pt;}
.y9d{bottom:526.970056pt;}
.ydb{bottom:527.015624pt;}
.y19{bottom:528.393065pt;}
.y6c{bottom:538.768232pt;}
.ydd{bottom:541.351563pt;}
.y44{bottom:541.898442pt;}
.y10c{bottom:542.352865pt;}
.y2f{bottom:543.091145pt;}
.y18{bottom:547.788087pt;}
.y8f{bottom:553.364579pt;}
.y10a{bottom:557.110023pt;}
.y93{bottom:566.852860pt;}
.y17{bottom:567.183106pt;}
.y95{bottom:567.700516pt;}
.y55{bottom:567.712565pt;}
.yd9{bottom:567.746087pt;}
.yd8{bottom:571.123691pt;}
.y10b{bottom:574.822913pt;}
.y2e{bottom:576.486172pt;}
.y109{bottom:577.352861pt;}
.yda{bottom:585.458977pt;}
.y16{bottom:586.578126pt;}
.y43{bottom:587.059576pt;}
.y6b{bottom:587.403325pt;}
.y2d{bottom:595.881185pt;}
.y107{bottom:601.218753pt;}
.y106{bottom:604.596357pt;}
.y15{bottom:605.973145pt;}
.yd6{bottom:611.854819pt;}
.yd5{bottom:615.231771pt;}
.y54{bottom:616.347978pt;}
.y8e{bottom:616.598305pt;}
.y108{bottom:618.932296pt;}
.y14{bottom:625.368159pt;}
.yd7{bottom:629.567709pt;}
.y8c{bottom:630.355472pt;}
.y42{bottom:632.221349pt;}
.y6a{bottom:636.038418pt;}
.y13{bottom:644.763180pt;}
.y104{bottom:645.325516pt;}
.y103{bottom:648.703771pt;}
.yb9{bottom:649.546223pt;}
.y2c{bottom:649.854491pt;}
.y8b{bottom:652.858719pt;}
.yd3{bottom:655.962233pt;}
.yd2{bottom:659.339837pt;}
.ybc{bottom:660.278645pt;}
.y105{bottom:663.039709pt;}
.y12{bottom:664.158199pt;}
.y53{bottom:664.983405pt;}
.y41{bottom:666.719732pt;}
.y8a{bottom:672.253905pt;}
.yd4{bottom:673.675776pt;}
.y2b{bottom:674.165686pt;}
.y11{bottom:683.553225pt;}
.y2a{bottom:684.152345pt;}
.y69{bottom:684.674485pt;}
.y40{bottom:686.114905pt;}
.y100{bottom:689.434249pt;}
.y89{bottom:691.649092pt;}
.yfe{bottom:692.812504pt;}
.yca{bottom:700.070311pt;}
.y10{bottom:702.948246pt;}
.y101{bottom:707.147140pt;}
.y3f{bottom:709.426112pt;}
.y88{bottom:711.043625pt;}
.y29{bottom:711.547359pt;}
.yce{bottom:713.558592pt;}
.y52{bottom:713.618818pt;}
.ycf{bottom:714.406248pt;}
.yf{bottom:722.343265pt;}
.y87{bottom:730.438799pt;}
.y3e{bottom:730.942385pt;}
.y68{bottom:733.309565pt;}
.yfc{bottom:733.542967pt;}
.yfb{bottom:736.920571pt;}
.ye{bottom:741.738279pt;}
.y28{bottom:742.859218pt;}
.y86{bottom:749.833989pt;}
.yfd{bottom:751.256509pt;}
.yd{bottom:761.133305pt;}
.y3d{bottom:762.254232pt;}
.yc9{bottom:763.304039pt;}
.y85{bottom:769.228516pt;}
.yc8{bottom:777.061192pt;}
.yf5{bottom:777.651044pt;}
.yc{bottom:780.528319pt;}
.y67{bottom:781.944658pt;}
.y84{bottom:788.623700pt;}
.yf7{bottom:791.138023pt;}
.y27{bottom:791.494632pt;}
.yf9{bottom:791.986981pt;}
.yed{bottom:796.251303pt;}
.y3c{bottom:798.972660pt;}
.yc7{bottom:799.564452pt;}
.yb{bottom:799.923340pt;}
.yef{bottom:806.984376pt;}
.y83{bottom:808.018879pt;}
.y51{bottom:810.889645pt;}
.yc6{bottom:818.958985pt;}
.ya{bottom:819.318359pt;}
.y82{bottom:827.414065pt;}
.y26{bottom:828.213220pt;}
.y3b{bottom:830.284672pt;}
.y66{bottom:830.580725pt;}
.yc5{bottom:838.354172pt;}
.y9{bottom:838.713385pt;}
.yf4{bottom:840.884119pt;}
.y81{bottom:846.809246pt;}
.yf3{bottom:854.641272pt;}
.yc4{bottom:857.749345pt;}
.y8{bottom:858.108399pt;}
.y25{bottom:859.525072pt;}
.y80{bottom:866.203777pt;}
.y11d{bottom:873.832031pt;}
.yf2{bottom:877.144532pt;}
.yc3{bottom:877.144537pt;}
.y7{bottom:877.503412pt;}
.y3a{bottom:878.920248pt;}
.y65{bottom:879.215821pt;}
.y11f{bottom:884.563801pt;}
.y7f{bottom:885.598965pt;}
.yc2{bottom:896.539712pt;}
.yf1{bottom:896.539713pt;}
.y6{bottom:896.898437pt;}
.y7e{bottom:904.994140pt;}
.y24{bottom:908.160482pt;}
.y5{bottom:913.763671pt;}
.y64{bottom:915.934245pt;}
.yc1{bottom:915.934248pt;}
.y7d{bottom:924.388676pt;}
.y39{bottom:927.555340pt;}
.yc0{bottom:935.329427pt;}
.y63{bottom:935.329433pt;}
.y7c{bottom:943.783855pt;}
.y4{bottom:944.854167pt;}
.y23{bottom:944.879067pt;}
.y62{bottom:954.724608pt;}
.ybf{bottom:954.724609pt;}
.y50{bottom:956.795900pt;}
.y7b{bottom:963.179036pt;}
.ybe{bottom:974.119141pt;}
.y61{bottom:974.119464pt;}
.y22{bottom:976.190918pt;}
.y7a{bottom:980.044270pt;}
.y3{bottom:990.427085pt;}
.y60{bottom:993.514323pt;}
.y4f{bottom:993.514326pt;}
.y79{bottom:1004.909505pt;}
.y21{bottom:1012.909505pt;}
.y1{bottom:1026.666667pt;}
.hc{height:16.865234pt;}
.h9{height:19.394857pt;}
.h1a{height:22.864584pt;}
.h14{height:22.865235pt;}
.h1e{height:22.865885pt;}
.h1b{height:24.731771pt;}
.h17{height:24.732421pt;}
.h1f{height:24.733073pt;}
.h12{height:25.394531pt;}
.h13{height:25.395183pt;}
.h1d{height:25.395833pt;}
.hb{height:25.432292pt;}
.h16{height:27.179687pt;}
.h15{height:35.464844pt;}
.h10{height:39.730469pt;}
.ha{height:41.994793pt;}
.h19{height:42.259765pt;}
.hf{height:42.260417pt;}
.h4{height:42.710938pt;}
.h2{height:42.739584pt;}
.h11{height:43.107421pt;}
.he{height:43.108073pt;}
.h1c{height:43.108724pt;}
.h18{height:56.595703pt;}
.hd{height:56.596355pt;}
.h8{height:95.666667pt;}
.h6{height:95.928707pt;}
.h1{height:96.000000pt;}
.h3{height:99.531246pt;}
.h5{height:101.291671pt;}
.h7{height:109.083329pt;}
.h0{height:1122.666667pt;}
.wb{width:47.000000pt;}
.w5{width:52.000000pt;}
.wa{width:53.000000pt;}
.w9{width:56.000000pt;}
.wc{width:58.000000pt;}
.w8{width:64.000000pt;}
.w2{width:90.000000pt;}
.w7{width:296.000000pt;}
.w4{width:311.000000pt;}
.w6{width:317.000000pt;}
.w3{width:535.000000pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x6{left:1.000000pt;}
.x28{left:6.296127pt;}
.x1a{left:8.000000pt;}
.x23{left:9.205261pt;}
.x2b{left:12.779823pt;}
.x2d{left:15.279823pt;}
.x21{left:16.526230pt;}
.x12{left:17.848892pt;}
.xc{left:21.924446pt;}
.x1b{left:29.565140pt;}
.x19{left:32.000000pt;}
.x1e{left:36.070282pt;}
.x14{left:37.730560pt;}
.x24{left:61.346588pt;}
.x13{left:88.000000pt;}
.x1{left:96.000000pt;}
.x3{left:120.000000pt;}
.x25{left:123.000000pt;}
.x1c{left:139.551422pt;}
.x4{left:144.000000pt;}
.xa{left:155.500000pt;}
.x1f{left:174.589020pt;}
.x7{left:186.000000pt;}
.x9{left:251.000000pt;}
.x15{left:258.511800pt;}
.x8{left:267.500000pt;}
.x22{left:288.000000pt;}
.x20{left:289.000000pt;}
.x1d{left:291.000000pt;}
.x17{left:292.000000pt;}
.x5{left:347.768420pt;}
.x2{left:396.850400pt;}
.x16{left:406.000000pt;}
.xb{left:407.000000pt;}
.x2f{left:428.000000pt;}
.x26{left:429.000000pt;}
.x35{left:431.000000pt;}
.xd{left:459.000000pt;}
.x30{left:485.000000pt;}
.x27{left:486.000000pt;}
.x36{left:488.000000pt;}
.xe{left:511.000000pt;}
.x31{left:539.000000pt;}
.x29{left:540.000000pt;}
.x37{left:542.000000pt;}
.xf{left:563.000000pt;}
.x32{left:587.000000pt;}
.x2a{left:588.000000pt;}
.x38{left:590.000000pt;}
.x10{left:615.000000pt;}
.x33{left:641.000000pt;}
.x2c{left:642.000000pt;}
.x39{left:644.000000pt;}
.x11{left:667.000000pt;}
.x34{left:700.000000pt;}
.x2e{left:701.000000pt;}
.x18{left:702.000000pt;}
.x3a{left:703.000000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  