
    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_bde0ca013e3b661e7d741235.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.970703;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_ca5f6d5dd47b4acac6e48c33.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.973633;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_69d93ec2bf54b41fe792b9e5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000977;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_099541db7531d46cd08e6388.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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_56368a05f9fb71b831ddbd8a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.020996;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);}
.m1{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;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000018px;}
.ls5{letter-spacing:0.000138px;}
.ls0{letter-spacing:0.084047px;}
.ls4{letter-spacing:32.999998px;}
.ls3{letter-spacing:879.504233px;}
.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;}
}
.ws16{word-spacing:-31.788300px;}
.ws0{word-spacing:-31.788282px;}
.ws1{word-spacing:-16.500000px;}
.ws5{word-spacing:-0.066000px;}
.ws15{word-spacing:-0.063360px;}
.ws14{word-spacing:-0.052800px;}
.ws2{word-spacing:0.000000px;}
.ws13{word-spacing:3.299993px;}
.ws10{word-spacing:78.379931px;}
.wsf{word-spacing:92.043991px;}
.ws4{word-spacing:192.558639px;}
.ws6{word-spacing:224.531575px;}
.ws11{word-spacing:232.487352px;}
.wse{word-spacing:315.438522px;}
.ws8{word-spacing:383.146531px;}
.ws12{word-spacing:406.381884px;}
.wsc{word-spacing:442.153367px;}
.wsd{word-spacing:456.913134px;}
.ws3{word-spacing:549.854540px;}
.wsb{word-spacing:562.229538px;}
.ws7{word-spacing:563.228561px;}
.ws9{word-spacing:632.165365px;}
.wsa{word-spacing:650.498094px;}
._2e{margin-left:-7.488364px;}
._12{margin-left:-5.956482px;}
._0{margin-left:-4.511719px;}
._32{margin-left:-3.505881px;}
._8{margin-left:-2.492693px;}
._1{margin-left:-1.008564px;}
._2{width:1.450195px;}
._3{width:2.620089px;}
._4{width:4.119279px;}
._5{width:5.569474px;}
._21{width:7.284024px;}
._6{width:8.561949px;}
._11{width:10.020059px;}
._20{width:11.469454px;}
._1f{width:12.710977px;}
._22{width:13.862909px;}
._2c{width:15.358454px;}
._30{width:16.519672px;}
._23{width:17.889029px;}
._16{width:19.731533px;}
._31{width:20.901519px;}
._2a{width:22.608297px;}
._9{width:23.759994px;}
._18{width:24.987423px;}
._1a{width:26.308769px;}
._7{width:27.719998px;}
._13{width:31.959102px;}
._24{width:33.313962px;}
._f{width:34.944083px;}
._10{width:35.975333px;}
._26{width:39.252774px;}
._29{width:48.882834px;}
._27{width:50.059263px;}
._28{width:51.372403px;}
._1e{width:52.427684px;}
._2b{width:53.578631px;}
._25{width:54.723933px;}
._1d{width:96.457383px;}
._1c{width:100.064573px;}
._2f{width:111.884519px;}
._2d{width:117.080740px;}
._33{width:132.659686px;}
._a{width:170.773484px;}
._15{width:252.964945px;}
._17{width:261.345555px;}
._14{width:283.581885px;}
._1b{width:364.201495px;}
._d{width:439.096025px;}
._b{width:450.633135px;}
._e{width:537.032548px;}
._c{width:617.502275px;}
._19{width:879.504233px;}
.fc4{color:rgb(41,142,13);}
.fc3{color:rgb(215,58,73);}
.fc2{color:rgb(75,105,198);}
.fc1{color:rgb(28,132,229);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:52.800000px;}
.fs4{font-size:63.360000px;}
.fs1{font-size:66.000000px;}
.fs3{font-size:79.200000px;}
.fs0{font-size:92.400000px;}
.y0{bottom:0.000000px;}
.y25{bottom:83.639610px;}
.yf9{bottom:145.063440px;}
.y73{bottom:147.640608px;}
.y71{bottom:148.075665px;}
.ye7{bottom:151.703250px;}
.y95{bottom:165.547500px;}
.yf8{bottom:166.648773px;}
.y72{bottom:169.225959px;}
.y70{bottom:169.443488px;}
.ycc{bottom:169.654350px;}
.y4a{bottom:170.068440px;}
.ye6{bottom:173.288550px;}
.yb2{bottom:178.859310px;}
.y24{bottom:187.206815px;}
.yf7{bottom:188.234123px;}
.y110{bottom:189.489048px;}
.y48{bottom:191.653797px;}
.ye5{bottom:194.873895px;}
.y94{bottom:196.207800px;}
.y6f{bottom:198.086310px;}
.ycb{bottom:200.314650px;}
.yb1{bottom:209.519700px;}
.y10f{bottom:211.074398px;}
.yf6{bottom:211.469525px;}
.y47{bottom:213.239148px;}
.ye4{bottom:216.459195px;}
.y6e{bottom:219.889200px;}
.yca{bottom:221.899950px;}
.y23{bottom:223.738259px;}
.y93{bottom:226.868190px;}
.yb0{bottom:231.105000px;}
.y49{bottom:234.824499px;}
.y46{bottom:235.042028px;}
.yc9{bottom:243.485400px;}
.y128{bottom:244.836093px;}
.ye3{bottom:247.119600px;}
.yf5{bottom:248.000918px;}
.y6d{bottom:248.532015px;}
.y92{bottom:250.103527px;}
.yaf{bottom:252.690375px;}
.y10e{bottom:253.734768px;}
.y45{bottom:263.684850px;}
.y127{bottom:266.421443px;}
.y22{bottom:268.338138px;}
.y6c{bottom:270.117375px;}
.ye2{bottom:277.779897px;}
.yae{bottom:283.350648px;}
.y91{bottom:284.506350px;}
.y44{bottom:285.270188px;}
.yc8{bottom:286.145738px;}
.y21{bottom:289.923488px;}
.y6b{bottom:291.485190px;}
.y10d{bottom:295.563690px;}
.ye1{bottom:299.365248px;}
.yc7{bottom:304.754643px;}
.yad{bottom:304.935998px;}
.y90{bottom:306.091710px;}
.y43{bottom:306.855540px;}
.y126{bottom:309.081788px;}
.y20{bottom:311.508900px;}
.y6a{bottom:313.070547px;}
.y10c{bottom:318.798964px;}
.ye0{bottom:320.950598px;}
.y125{bottom:327.690693px;}
.y1f{bottom:333.094298px;}
.y69{bottom:334.655898px;}
.y42{bottom:335.715893px;}
.y8f{bottom:336.752085px;}
.yc6{bottom:346.583460px;}
.yac{bottom:347.596387px;}
.y1e{bottom:354.679560px;}
.y10b{bottom:355.330418px;}
.y68{bottom:356.458800px;}
.y41{bottom:357.518775px;}
.y8e{bottom:358.337445px;}
.ydf{bottom:363.610953px;}
.yab{bottom:366.205293px;}
.y124{bottom:369.519648px;}
.y1d{bottom:377.914903px;}
.y8d{bottom:379.922790px;}
.y67{bottom:385.101615px;}
.y40{bottom:386.161599px;}
.y105{bottom:388.070850px;}
.yc5{bottom:389.243883px;}
.y123{bottom:391.104998px;}
.y8c{bottom:401.508147px;}
.yde{bottom:405.439875px;}
.y66{bottom:406.686975px;}
.yaa{bottom:408.034200px;}
.y104{bottom:409.656255px;}
.y3f{bottom:418.396970px;}
.y1c{bottom:422.514896px;}
.y8b{bottom:423.093498px;}
.y65{bottom:428.272320px;}
.ya9{bottom:429.619605px;}
.yc4{bottom:431.072775px;}
.y122{bottom:433.765338px;}
.ydd{bottom:436.100250px;}
.y1b{bottom:444.100248px;}
.y8a{bottom:444.678848px;}
.y64{bottom:449.857677px;}
.y103{bottom:452.316588px;}
.yc3{bottom:452.658105px;}
.ydc{bottom:457.685595px;}
.y3e{bottom:463.928340px;}
.y1a{bottom:465.685598px;}
.y89{bottom:466.264178px;}
.y63{bottom:471.443028px;}
.ya8{bottom:472.279943px;}
.y121{bottom:475.594200px;}
.ydb{bottom:479.271000px;}
.y3d{bottom:485.513730px;}
.ya7{bottom:490.888848px;}
.y62{bottom:493.245900px;}
.y102{bottom:494.145510px;}
.yc2{bottom:495.318483px;}
.y19{bottom:496.345928px;}
.y88{bottom:500.667000px;}
.y120{bottom:506.254578px;}
.y3c{bottom:507.316605px;}
.yda{bottom:509.931303px;}
.y101{bottom:515.730855px;}
.y18{bottom:517.931280px;}
.y61{bottom:521.888697px;}
.y87{bottom:522.252330px;}
.y11f{bottom:527.839928px;}
.yd9{bottom:531.516653px;}
.ya6{bottom:532.717725px;}
.y3b{bottom:535.959417px;}
.yc1{bottom:537.147375px;}
.y100{bottom:538.966190px;}
.y17{bottom:539.299128px;}
.y60{bottom:543.474047px;}
.y11e{bottom:551.075284px;}
.y86{bottom:552.912705px;}
.yd8{bottom:553.102050px;}
.ya5{bottom:554.303100px;}
.y3a{bottom:557.544768px;}
.y10a{bottom:559.576830px;}
.y16{bottom:560.884478px;}
.y5f{bottom:565.059402px;}
.y85{bottom:574.498050px;}
.yd7{bottom:574.687380px;}
.yff{bottom:575.497598px;}
.y39{bottom:579.130119px;}
.yc0{bottom:579.807712px;}
.y5e{bottom:586.644753px;}
.y5c{bottom:587.079810px;}
.y84{bottom:596.083395px;}
.yd6{bottom:596.272725px;}
.ya4{bottom:596.963448px;}
.ybf{bottom:598.416618px;}
.y11d{bottom:599.606673px;}
.y109{bottom:602.237163px;}
.y15{bottom:604.744817px;}
.y38{bottom:607.990470px;}
.y5d{bottom:608.230104px;}
.y5b{bottom:608.447633px;}
.y83{bottom:617.668725px;}
.y14{bottom:626.330168px;}
.y37{bottom:629.575800px;}
.y5a{bottom:637.090488px;}
.ya3{bottom:638.792370px;}
.yd5{bottom:638.933063px;}
.y82{bottom:639.254100px;}
.ybe{bottom:640.245540px;}
.y11c{bottom:641.435595px;}
.y108{bottom:644.066100px;}
.y13{bottom:647.915498px;}
.yd4{bottom:657.541968px;}
.y36{bottom:658.436160px;}
.y59{bottom:658.675838px;}
.ya2{bottom:660.377723px;}
.y81{bottom:660.839460px;}
.yf4{bottom:667.267323px;}
.y107{bottom:667.301435px;}
.y12{bottom:669.500873px;}
.ybd{bottom:670.905908px;}
.y11b{bottom:672.095910px;}
.y35{bottom:680.021550px;}
.y58{bottom:680.261189px;}
.y80{bottom:682.424805px;}
.yf3{bottom:688.852673px;}
.y11{bottom:691.086218px;}
.ya1{bottom:694.780538px;}
.yd3{bottom:699.370890px;}
.y57{bottom:701.846537px;}
.y11a{bottom:702.756300px;}
.y106{bottom:703.832798px;}
.y7f{bottom:704.010150px;}
.y34{bottom:708.881895px;}
.y10{bottom:712.671578px;}
.ybc{bottom:713.566238px;}
.y56{bottom:723.431892px;}
.y119{bottom:724.341630px;}
.y7e{bottom:727.245503px;}
.ya0{bottom:729.183348px;}
.y33{bottom:730.467240px;}
.yf2{bottom:731.513043px;}
.ybb{bottom:732.175143px;}
.yf{bottom:734.256923px;}
.yd2{bottom:742.031243px;}
.y55{bottom:745.017243px;}
.y118{bottom:745.926975px;}
.y9f{bottom:750.768698px;}
.ye{bottom:755.842268px;}
.y32{bottom:759.327588px;}
.yd1{bottom:760.640148px;}
.y7d{bottom:761.648338px;}
.y54{bottom:766.820130px;}
.y9e{bottom:772.354028px;}
.yf1{bottom:773.341950px;}
.yba{bottom:774.004050px;}
.yd{bottom:777.427628px;}
.y31{bottom:780.912939px;}
.y117{bottom:788.587342px;}
.y9d{bottom:793.939403px;}
.yf0{bottom:794.927280px;}
.y53{bottom:795.680475px;}
.yc{bottom:799.012973px;}
.yd0{bottom:802.469025px;}
.y7c{bottom:806.248268px;}
.y116{bottom:807.196248px;}
.y30{bottom:809.773287px;}
.y9c{bottom:815.524770px;}
.yb9{bottom:816.664398px;}
.yef{bottom:818.162645px;}
.yb{bottom:820.598348px;}
.y52{bottom:824.323293px;}
.y7b{bottom:827.833650px;}
.y2e{bottom:831.358638px;}
.ycf{bottom:833.129403px;}
.y9b{bottom:838.760123px;}
.ya{bottom:842.183678px;}
.y51{bottom:846.126172px;}
.y115{bottom:849.025140px;}
.y2f{bottom:852.943989px;}
.y2d{bottom:853.161518px;}
.yee{bottom:854.694045px;}
.yce{bottom:854.714753px;}
.yb8{bottom:858.493320px;}
.y9{bottom:863.769038px;}
.y7a{bottom:867.493995px;}
.y9a{bottom:873.162938px;}
.y50{bottom:874.768992px;}
.yed{bottom:876.279390px;}
.ycd{bottom:877.950110px;}
.yb7{bottom:880.078673px;}
.y2c{bottom:881.804340px;}
.y8{bottom:885.354392px;}
.y79{bottom:889.079340px;}
.y114{bottom:891.685503px;}
.yfe{bottom:892.896150px;}
.y4f{bottom:896.354342px;}
.y2b{bottom:903.389685px;}
.y7{bottom:906.939734px;}
.y78{bottom:910.664697px;}
.yb6{bottom:914.481480px;}
.y99{bottom:915.823293px;}
.y4e{bottom:917.939694px;}
.y6{bottom:928.525088px;}
.yec{bottom:928.525095px;}
.y2a{bottom:932.250045px;}
.y77{bottom:932.250047px;}
.y113{bottom:933.514410px;}
.y4d{bottom:939.525039px;}
.yb5{bottom:945.141837px;}
.yeb{bottom:950.110440px;}
.y5{bottom:950.110442px;}
.y29{bottom:953.835405px;}
.y76{bottom:954.052935px;}
.y112{bottom:955.099770px;}
.yfd{bottom:957.141843px;}
.y98{bottom:957.652200px;}
.y4c{bottom:961.110396px;}
.yb4{bottom:966.727188px;}
.yea{bottom:971.695785px;}
.y4{bottom:971.695796px;}
.y111{bottom:978.335120px;}
.y28{bottom:982.695747px;}
.y75{bottom:982.695750px;}
.yb3{bottom:988.312538px;}
.y97{bottom:988.312545px;}
.ye9{bottom:993.281145px;}
.y3{bottom:993.281147px;}
.yfc{bottom:998.970741px;}
.y74{bottom:1004.281095px;}
.y4b{bottom:1004.498625px;}
.y27{bottom:1004.498627px;}
.ye8{bottom:1014.866490px;}
.y2{bottom:1014.866498px;}
.yfb{bottom:1020.556095px;}
.y96{bottom:1030.972893px;}
.y26{bottom:1033.141449px;}
.y1{bottom:1038.101848px;}
.yfa{bottom:1042.141449px;}
.h6{height:40.399219px;}
.h4{height:48.372070px;}
.h3{height:48.565430px;}
.h5{height:58.046484px;}
.h2{height:67.720898px;}
.h1{height:1188.000000px;}
.h0{height:1188.001800px;}
.w1{width:918.000000px;}
.w0{width:918.001350px;}
.x0{left:0.000000px;}
.x1{left:135.000000px;}
.x5{left:144.000000px;}
.x9{left:147.000000px;}
.x8{left:149.034668px;}
.x2{left:159.750000px;}
.x3{left:184.500000px;}
.xa{left:240.135615px;}
.xb{left:256.029750px;}
.xc{left:260.003289px;}
.xe{left:279.870960px;}
.x7{left:327.773205px;}
.xd{left:451.330770px;}
.x4{left:455.165730px;}
.x6{left:559.887300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000016pt;}
.ls5{letter-spacing:0.000122pt;}
.ls0{letter-spacing:0.074708pt;}
.ls4{letter-spacing:29.333332pt;}
.ls3{letter-spacing:781.781540pt;}
.ws16{word-spacing:-28.256267pt;}
.ws0{word-spacing:-28.256251pt;}
.ws1{word-spacing:-14.666667pt;}
.ws5{word-spacing:-0.058667pt;}
.ws15{word-spacing:-0.056320pt;}
.ws14{word-spacing:-0.046933pt;}
.ws2{word-spacing:0.000000pt;}
.ws13{word-spacing:2.933327pt;}
.ws10{word-spacing:69.671050pt;}
.wsf{word-spacing:81.816881pt;}
.ws4{word-spacing:171.163234pt;}
.ws6{word-spacing:199.583622pt;}
.ws11{word-spacing:206.655424pt;}
.wse{word-spacing:280.389797pt;}
.ws8{word-spacing:340.574694pt;}
.ws12{word-spacing:361.228341pt;}
.wsc{word-spacing:393.025215pt;}
.wsd{word-spacing:406.145008pt;}
.ws3{word-spacing:488.759591pt;}
.wsb{word-spacing:499.759589pt;}
.ws7{word-spacing:500.647609pt;}
.ws9{word-spacing:561.924769pt;}
.wsa{word-spacing:578.220528pt;}
._2e{margin-left:-6.656324pt;}
._12{margin-left:-5.294650pt;}
._0{margin-left:-4.010417pt;}
._32{margin-left:-3.116339pt;}
._8{margin-left:-2.215727pt;}
._1{margin-left:-0.896502pt;}
._2{width:1.289063pt;}
._3{width:2.328968pt;}
._4{width:3.661581pt;}
._5{width:4.950644pt;}
._21{width:6.474688pt;}
._6{width:7.610621pt;}
._11{width:8.906719pt;}
._20{width:10.195070pt;}
._1f{width:11.298646pt;}
._22{width:12.322586pt;}
._2c{width:13.651959pt;}
._30{width:14.684153pt;}
._23{width:15.901359pt;}
._16{width:17.539140pt;}
._31{width:18.579128pt;}
._2a{width:20.096264pt;}
._9{width:21.119994pt;}
._18{width:22.211043pt;}
._1a{width:23.385572pt;}
._7{width:24.639999pt;}
._13{width:28.408090pt;}
._24{width:29.612411pt;}
._f{width:31.061407pt;}
._10{width:31.978074pt;}
._26{width:34.891355pt;}
._29{width:43.451408pt;}
._27{width:44.497122pt;}
._28{width:45.664358pt;}
._1e{width:46.602386pt;}
._2b{width:47.625450pt;}
._25{width:48.643496pt;}
._1d{width:85.739896pt;}
._1c{width:88.946287pt;}
._2f{width:99.452906pt;}
._2d{width:104.071769pt;}
._33{width:117.919721pt;}
._a{width:151.798653pt;}
._15{width:224.857729pt;}
._17{width:232.307160pt;}
._14{width:252.072787pt;}
._1b{width:323.734662pt;}
._d{width:390.307578pt;}
._b{width:400.562787pt;}
._e{width:477.362265pt;}
._c{width:548.890911pt;}
._19{width:781.781540pt;}
.fs2{font-size:46.933333pt;}
.fs4{font-size:56.320000pt;}
.fs1{font-size:58.666667pt;}
.fs3{font-size:70.400000pt;}
.fs0{font-size:82.133333pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:74.346320pt;}
.yf9{bottom:128.945280pt;}
.y73{bottom:131.236096pt;}
.y71{bottom:131.622813pt;}
.ye7{bottom:134.847333pt;}
.y95{bottom:147.153333pt;}
.yf8{bottom:148.132243pt;}
.y72{bottom:150.423075pt;}
.y70{bottom:150.616433pt;}
.ycc{bottom:150.803867pt;}
.y4a{bottom:151.171947pt;}
.ye6{bottom:154.034267pt;}
.yb2{bottom:158.986053pt;}
.y24{bottom:166.406057pt;}
.yf7{bottom:167.319221pt;}
.y110{bottom:168.434709pt;}
.y48{bottom:170.358931pt;}
.ye5{bottom:173.221240pt;}
.y94{bottom:174.406933pt;}
.y6f{bottom:176.076720pt;}
.ycb{bottom:178.057467pt;}
.yb1{bottom:186.239733pt;}
.y10f{bottom:187.621687pt;}
.yf6{bottom:187.972911pt;}
.y47{bottom:189.545909pt;}
.ye4{bottom:192.408173pt;}
.y6e{bottom:195.457067pt;}
.yca{bottom:197.244400pt;}
.y23{bottom:198.878452pt;}
.y93{bottom:201.660613pt;}
.yb0{bottom:205.426667pt;}
.y49{bottom:208.732888pt;}
.y46{bottom:208.926247pt;}
.yc9{bottom:216.431467pt;}
.y128{bottom:217.632083pt;}
.ye3{bottom:219.661867pt;}
.yf5{bottom:220.445261pt;}
.y6d{bottom:220.917347pt;}
.y92{bottom:222.314247pt;}
.yaf{bottom:224.613667pt;}
.y10e{bottom:225.542016pt;}
.y45{bottom:234.386533pt;}
.y127{bottom:236.819061pt;}
.y22{bottom:238.522789pt;}
.y6c{bottom:240.104333pt;}
.ye2{bottom:246.915464pt;}
.yae{bottom:251.867243pt;}
.y91{bottom:252.894533pt;}
.y44{bottom:253.573500pt;}
.yc8{bottom:254.351767pt;}
.y21{bottom:257.709767pt;}
.y6b{bottom:259.097947pt;}
.y10d{bottom:262.723280pt;}
.ye1{bottom:266.102443pt;}
.yc7{bottom:270.893016pt;}
.yad{bottom:271.054221pt;}
.y90{bottom:272.081520pt;}
.y43{bottom:272.760480pt;}
.y126{bottom:274.739367pt;}
.y20{bottom:276.896800pt;}
.y6a{bottom:278.284931pt;}
.y10c{bottom:283.376857pt;}
.ye0{bottom:285.289421pt;}
.y125{bottom:291.280616pt;}
.y1f{bottom:296.083821pt;}
.y69{bottom:297.471909pt;}
.y42{bottom:298.414127pt;}
.y8f{bottom:299.335187pt;}
.yc6{bottom:308.074187pt;}
.yac{bottom:308.974567pt;}
.y1e{bottom:315.270720pt;}
.y10b{bottom:315.849261pt;}
.y68{bottom:316.852267pt;}
.y41{bottom:317.794467pt;}
.y8e{bottom:318.522173pt;}
.ydf{bottom:323.209736pt;}
.yab{bottom:325.515816pt;}
.y124{bottom:328.461909pt;}
.y1d{bottom:335.924359pt;}
.y8d{bottom:337.709147pt;}
.y67{bottom:342.312547pt;}
.y40{bottom:343.254755pt;}
.y105{bottom:344.951867pt;}
.yc5{bottom:345.994563pt;}
.y123{bottom:347.648887pt;}
.y8c{bottom:356.896131pt;}
.yde{bottom:360.391000pt;}
.y66{bottom:361.499533pt;}
.yaa{bottom:362.697067pt;}
.y104{bottom:364.138893pt;}
.y3f{bottom:371.908417pt;}
.y1c{bottom:375.568797pt;}
.y8b{bottom:376.083109pt;}
.y65{bottom:380.686507pt;}
.ya9{bottom:381.884093pt;}
.yc4{bottom:383.175800pt;}
.y122{bottom:385.569189pt;}
.ydd{bottom:387.644667pt;}
.y1b{bottom:394.755776pt;}
.y8a{bottom:395.270087pt;}
.y64{bottom:399.873491pt;}
.y103{bottom:402.059189pt;}
.yc3{bottom:402.362760pt;}
.ydc{bottom:406.831640pt;}
.y3e{bottom:412.380747pt;}
.y1a{bottom:413.942754pt;}
.y89{bottom:414.457047pt;}
.y63{bottom:419.060469pt;}
.ya8{bottom:419.804393pt;}
.y121{bottom:422.750400pt;}
.ydb{bottom:426.018667pt;}
.y3d{bottom:431.567760pt;}
.ya7{bottom:436.345643pt;}
.y62{bottom:438.440800pt;}
.y102{bottom:439.240453pt;}
.yc2{bottom:440.283096pt;}
.y19{bottom:441.196381pt;}
.y88{bottom:445.037333pt;}
.y120{bottom:450.004069pt;}
.y3c{bottom:450.948093pt;}
.yda{bottom:453.272269pt;}
.y101{bottom:458.427427pt;}
.y18{bottom:460.383360pt;}
.y61{bottom:463.901064pt;}
.y87{bottom:464.224293pt;}
.y11f{bottom:469.191047pt;}
.yd9{bottom:472.459247pt;}
.ya6{bottom:473.526867pt;}
.y3b{bottom:476.408371pt;}
.yc1{bottom:477.464333pt;}
.y100{bottom:479.081057pt;}
.y17{bottom:479.377003pt;}
.y60{bottom:483.088042pt;}
.y11e{bottom:489.844697pt;}
.y86{bottom:491.477960pt;}
.yd8{bottom:491.646267pt;}
.ya5{bottom:492.713867pt;}
.y3a{bottom:495.595349pt;}
.y10a{bottom:497.401627pt;}
.y16{bottom:498.563981pt;}
.y5f{bottom:502.275024pt;}
.y85{bottom:510.664933pt;}
.yd7{bottom:510.833227pt;}
.yff{bottom:511.553421pt;}
.y39{bottom:514.782328pt;}
.yc0{bottom:515.384633pt;}
.y5e{bottom:521.462003pt;}
.y5c{bottom:521.848720pt;}
.y84{bottom:529.851907pt;}
.yd6{bottom:530.020200pt;}
.ya4{bottom:530.634176pt;}
.ybf{bottom:531.925883pt;}
.y11d{bottom:532.983709pt;}
.y109{bottom:535.321923pt;}
.y15{bottom:537.550949pt;}
.y38{bottom:540.435973pt;}
.y5d{bottom:540.648981pt;}
.y5b{bottom:540.842340pt;}
.y83{bottom:549.038867pt;}
.y14{bottom:556.737927pt;}
.y37{bottom:559.622933pt;}
.y5a{bottom:566.302656pt;}
.ya3{bottom:567.815440pt;}
.yd5{bottom:567.940500pt;}
.y82{bottom:568.225867pt;}
.ybe{bottom:569.107147pt;}
.y11c{bottom:570.164973pt;}
.y108{bottom:572.503200pt;}
.y13{bottom:575.924887pt;}
.yd4{bottom:584.481749pt;}
.y36{bottom:585.276587pt;}
.y59{bottom:585.489634pt;}
.ya2{bottom:587.002420pt;}
.y81{bottom:587.412853pt;}
.yf4{bottom:593.126509pt;}
.y107{bottom:593.156831pt;}
.y12{bottom:595.111887pt;}
.ybd{bottom:596.360807pt;}
.y11b{bottom:597.418587pt;}
.y35{bottom:604.463600pt;}
.y58{bottom:604.676613pt;}
.y80{bottom:606.599827pt;}
.yf3{bottom:612.313487pt;}
.y11{bottom:614.298861pt;}
.ya1{bottom:617.582700pt;}
.yd3{bottom:621.663013pt;}
.y57{bottom:623.863589pt;}
.y11a{bottom:624.672267pt;}
.y106{bottom:625.629154pt;}
.y7f{bottom:625.786800pt;}
.y34{bottom:630.117240pt;}
.y10{bottom:633.485847pt;}
.ybc{bottom:634.281101pt;}
.y56{bottom:643.050571pt;}
.y119{bottom:643.859227pt;}
.y7e{bottom:646.440447pt;}
.ya0{bottom:648.162976pt;}
.y33{bottom:649.304213pt;}
.yf2{bottom:650.233816pt;}
.ybb{bottom:650.822349pt;}
.yf{bottom:652.672821pt;}
.yd2{bottom:659.583327pt;}
.y55{bottom:662.237549pt;}
.y118{bottom:663.046200pt;}
.y9f{bottom:667.349954pt;}
.ye{bottom:671.859794pt;}
.y32{bottom:674.957856pt;}
.yd1{bottom:676.124576pt;}
.y7d{bottom:677.020745pt;}
.y54{bottom:681.617893pt;}
.y9e{bottom:686.536914pt;}
.yf1{bottom:687.415067pt;}
.yba{bottom:688.003600pt;}
.yd{bottom:691.046781pt;}
.y31{bottom:694.144835pt;}
.y117{bottom:700.966527pt;}
.y9d{bottom:705.723914pt;}
.yf0{bottom:706.602027pt;}
.y53{bottom:707.271533pt;}
.yc{bottom:710.233754pt;}
.yd0{bottom:713.305800pt;}
.y7c{bottom:716.665127pt;}
.y116{bottom:717.507776pt;}
.y30{bottom:719.798477pt;}
.y9c{bottom:724.910907pt;}
.yb9{bottom:725.923909pt;}
.yef{bottom:727.255684pt;}
.yb{bottom:729.420754pt;}
.y52{bottom:732.731816pt;}
.y7b{bottom:735.852133pt;}
.y2e{bottom:738.985456pt;}
.ycf{bottom:740.559469pt;}
.y9b{bottom:745.564553pt;}
.ya{bottom:748.607714pt;}
.y51{bottom:752.112153pt;}
.y115{bottom:754.689013pt;}
.y2f{bottom:758.172435pt;}
.y2d{bottom:758.365793pt;}
.yee{bottom:759.728040pt;}
.yce{bottom:759.746447pt;}
.yb8{bottom:763.105173pt;}
.y9{bottom:767.794701pt;}
.y7a{bottom:771.105773pt;}
.y9a{bottom:776.144834pt;}
.y50{bottom:777.572437pt;}
.yed{bottom:778.915013pt;}
.ycd{bottom:780.400097pt;}
.yb7{bottom:782.292153pt;}
.y2c{bottom:783.826080pt;}
.y8{bottom:786.981682pt;}
.y79{bottom:790.292747pt;}
.y114{bottom:792.609336pt;}
.yfe{bottom:793.685467pt;}
.y4f{bottom:796.759415pt;}
.y2b{bottom:803.013053pt;}
.y7{bottom:806.168653pt;}
.y78{bottom:809.479731pt;}
.yb6{bottom:812.872427pt;}
.y99{bottom:814.065149pt;}
.y4e{bottom:815.946395pt;}
.y6{bottom:825.355634pt;}
.yec{bottom:825.355640pt;}
.y2a{bottom:828.666707pt;}
.y77{bottom:828.666709pt;}
.y113{bottom:829.790587pt;}
.y4d{bottom:835.133368pt;}
.yb5{bottom:840.126077pt;}
.yeb{bottom:844.542613pt;}
.y5{bottom:844.542615pt;}
.y29{bottom:847.853693pt;}
.y76{bottom:848.047053pt;}
.y112{bottom:848.977573pt;}
.yfd{bottom:850.792749pt;}
.y98{bottom:851.246400pt;}
.y4c{bottom:854.320352pt;}
.yb4{bottom:859.313056pt;}
.yea{bottom:863.729587pt;}
.y4{bottom:863.729597pt;}
.y111{bottom:869.631217pt;}
.y28{bottom:873.507331pt;}
.y75{bottom:873.507333pt;}
.yb3{bottom:878.500034pt;}
.y97{bottom:878.500040pt;}
.ye9{bottom:882.916573pt;}
.y3{bottom:882.916575pt;}
.yfc{bottom:887.973992pt;}
.y74{bottom:892.694307pt;}
.y4b{bottom:892.887667pt;}
.y27{bottom:892.887668pt;}
.ye8{bottom:902.103547pt;}
.y2{bottom:902.103554pt;}
.yfb{bottom:907.160973pt;}
.y96{bottom:916.420349pt;}
.y26{bottom:918.347955pt;}
.y1{bottom:922.757199pt;}
.yfa{bottom:926.347955pt;}
.h6{height:35.910417pt;}
.h4{height:42.997396pt;}
.h3{height:43.169271pt;}
.h5{height:51.596875pt;}
.h2{height:60.196354pt;}
.h1{height:1056.000000pt;}
.h0{height:1056.001600pt;}
.w1{width:816.000000pt;}
.w0{width:816.001200pt;}
.x0{left:0.000000pt;}
.x1{left:120.000000pt;}
.x5{left:128.000000pt;}
.x9{left:130.666667pt;}
.x8{left:132.475260pt;}
.x2{left:142.000000pt;}
.x3{left:164.000000pt;}
.xa{left:213.453880pt;}
.xb{left:227.582000pt;}
.xc{left:231.114035pt;}
.xe{left:248.774187pt;}
.x7{left:291.353960pt;}
.xd{left:401.182907pt;}
.x4{left:404.591760pt;}
.x6{left:497.677600pt;}
}




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