
    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_fbfcb381687d733f49bd8502.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.915039;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_2bf8f7e19e73da41378db653.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_64b6f35a38cc57c70f0dde06.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.928223;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_33bd3e2cbc99636424e66ca6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.928223;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_2fa948736833a2e87b5dbe07.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.952148;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_d4b34ed433abe6b83e801925.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_73359ba50a8aed6ec7aefb56.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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.249567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249567,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249572,0.000000,0.000000,0.250000,0,0);}
.m5{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;}
.v1{vertical-align:11.558110px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.005475px;}
.ls5{letter-spacing:0.006069px;}
.ls7{letter-spacing:0.197471px;}
.ls8{letter-spacing:116.412910px;}
.ls6{letter-spacing:117.156820px;}
.ls2{letter-spacing:183.528455px;}
.ls0{letter-spacing:460.225588px;}
.ls1{letter-spacing:833.385894px;}
.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:-62.258871px;}
.ws4{word-spacing:-62.147700px;}
.ws1{word-spacing:-37.355323px;}
.ws5{word-spacing:-37.294689px;}
.ws6{word-spacing:-37.288620px;}
.ws2{word-spacing:-33.701363px;}
.ws3{word-spacing:0.000000px;}
._21{margin-left:-9.983892px;}
._2f{margin-left:-8.700678px;}
._7{margin-left:-7.471065px;}
._6{margin-left:-6.225887px;}
._c{margin-left:-4.939247px;}
._53{margin-left:-3.931826px;}
._50{margin-left:-2.413504px;}
._1{margin-left:-1.245177px;}
._0{width:1.123379px;}
._3a{width:3.142177px;}
._31{width:4.362477px;}
._12{width:5.623638px;}
._35{width:6.729227px;}
._14{width:8.054925px;}
._13{width:9.281895px;}
._44{width:10.583316px;}
._32{width:11.840632px;}
._8{width:13.696952px;}
._5{width:14.942129px;}
._b{width:17.784401px;}
._a{width:19.548926px;}
._2e{width:21.782040px;}
._e{width:23.027218px;}
._55{width:26.148726px;}
._10{width:27.304728px;}
._24{width:28.559820px;}
._2{width:30.506847px;}
._36{width:31.713534px;}
._40{width:32.932212px;}
._51{width:39.818517px;}
._39{width:41.155449px;}
._d{width:42.236160px;}
._1e{width:43.542028px;}
._f{width:45.965022px;}
._23{width:47.204130px;}
._37{width:50.979321px;}
._54{width:53.209007px;}
._38{width:54.635354px;}
._28{width:55.957206px;}
._52{width:57.292317px;}
._18{width:64.036407px;}
._1a{width:65.226963px;}
._2a{width:67.085325px;}
._29{width:68.350332px;}
._46{width:80.182671px;}
._17{width:82.680717px;}
._16{width:83.938033px;}
._1b{width:92.618280px;}
._1f{width:93.851320px;}
._4c{width:98.462389px;}
._4b{width:99.813963px;}
._27{width:101.928297px;}
._26{width:103.068985px;}
._22{width:105.066028px;}
._4f{width:112.899566px;}
._33{width:116.849814px;}
._34{width:118.104906px;}
._19{width:120.611245px;}
._3b{width:121.815561px;}
._41{width:129.864417px;}
._45{width:131.091387px;}
._30{width:139.216917px;}
._49{width:140.325414px;}
._3f{width:142.293957px;}
._15{width:157.547758px;}
._3c{width:158.743775px;}
._11{width:176.471346px;}
._48{width:194.534439px;}
._47{width:196.425370px;}
._4e{width:200.356363px;}
._2d{width:204.425673px;}
._2b{width:231.835197px;}
._2c{width:233.059944px;}
._25{width:241.805329px;}
._59{width:271.641541px;}
._1c{width:279.636528px;}
._56{width:289.503750px;}
._4{width:298.986993px;}
._1d{width:316.376500px;}
._43{width:353.580153px;}
._42{width:428.242360px;}
._57{width:456.803802px;}
._3d{width:464.876934px;}
._4a{width:466.318944px;}
._3{width:485.521914px;}
._20{width:502.734633px;}
._3e{width:577.384702px;}
._58{width:631.441063px;}
._4d{width:667.286987px;}
._9{width:1337.943138px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:56.068200px;}
.fs0{font-size:56.168938px;}
.fs6{font-size:62.147700px;}
.fs1{font-size:62.258871px;}
.fs4{font-size:79.176498px;}
.fs2{font-size:90.004191px;}
.fs3{font-size:101.508708px;}
.y0{bottom:0.000000px;}
.y9{bottom:6.844813px;}
.y3f{bottom:71.820030px;}
.y7{bottom:71.822393px;}
.y3e{bottom:107.639992px;}
.y6{bottom:107.641936px;}
.y3d{bottom:125.820030px;}
.y5{bottom:125.820053px;}
.y3c{bottom:145.080025px;}
.y4{bottom:145.081202px;}
.y38{bottom:172.084810px;}
.yc3{bottom:174.060874px;}
.y65{bottom:180.360008px;}
.y37{bottom:189.721504px;}
.yc2{bottom:191.697475px;}
.y64{bottom:204.299973px;}
.y36{bottom:207.362930px;}
.yc1{bottom:209.338901px;}
.ye8{bottom:214.019989px;}
.y35{bottom:224.643283px;}
.yc0{bottom:226.975595px;}
.y63{bottom:228.240006px;}
.y34{bottom:242.284709px;}
.y92{bottom:244.070224px;}
.ye7{bottom:246.419975px;}
.y62{bottom:252.360008px;}
.y33{bottom:259.921403px;}
.y91{bottom:260.088896px;}
.ye6{bottom:266.759994px;}
.ybf{bottom:268.200554px;}
.y90{bottom:275.931801px;}
.y61{bottom:276.120002px;}
.y32{bottom:277.562829px;}
.ye5{bottom:286.919975px;}
.y8f{bottom:291.950473px;}
.y31{bottom:295.018987px;}
.y60{bottom:300.240006px;}
.ybe{bottom:300.961187px;}
.y8e{bottom:307.973414px;}
.y30{bottom:312.660320px;}
.ye4{bottom:319.320030px;}
.ybd{bottom:321.481079px;}
.y8d{bottom:323.812050px;}
.y5f{bottom:324.179970px;}
.y2f{bottom:330.126034px;}
.ye3{bottom:339.659981px;}
.y8c{bottom:339.830638px;}
.ybc{bottom:341.820435px;}
.y2e{bottom:347.762635px;}
.y5e{bottom:348.120002px;}
.y8b{bottom:355.853579px;}
.ye2{bottom:360.179970px;}
.ybb{bottom:362.159884px;}
.y2d{bottom:365.218793px;}
.y8a{bottom:371.692216px;}
.y5d{bottom:372.059967px;}
.ye1{bottom:380.340019px;}
.yba{bottom:382.503971px;}
.y2c{bottom:382.860219px;}
.y89{bottom:387.710887px;}
.y5c{bottom:396.179970px;}
.y2b{bottom:400.501645px;}
.yb9{bottom:402.838595px;}
.y88{bottom:403.733828px;}
.ye0{bottom:412.740006px;}
.y87{bottom:419.748147px;}
.y5b{bottom:419.940033px;}
.yb8{bottom:423.178044px;}
.ydf{bottom:433.080025px;}
.y86{bottom:435.595405px;}
.y2a{bottom:441.180449px;}
.yb7{bottom:443.522178px;}
.y5a{bottom:444.059967px;}
.y85{bottom:451.613993px;}
.yde{bottom:453.419975px;}
.y29{bottom:458.641339px;}
.yb6{bottom:463.861580px;}
.y84{bottom:467.636934px;}
.y59{bottom:468.000000px;}
.y28{bottom:476.277987px;}
.y83{bottom:483.475570px;}
.yb5{bottom:484.196204px;}
.ydd{bottom:485.820030px;}
.y58{bottom:491.940033px;}
.y27{bottom:493.743654px;}
.y82{bottom:499.669925px;}
.yb4{bottom:504.545116px;}
.ydc{bottom:506.159981px;}
.y26{bottom:511.385080px;}
.y81{bottom:515.517183px;}
.y57{bottom:515.879998px;}
.yb3{bottom:524.879740px;}
.ydb{bottom:526.500000px;}
.y25{bottom:528.841238px;}
.y80{bottom:531.355819px;}
.y56{bottom:540.000000px;}
.yb2{bottom:545.219142px;}
.y24{bottom:546.477886px;}
.yda{bottom:546.840019px;}
.y7f{bottom:547.554442px;}
.y7e{bottom:563.393079px;}
.y23{bottom:563.573072px;}
.y55{bottom:563.759994px;}
.yb1{bottom:565.563276px;}
.yd9{bottom:579.240006px;}
.y7d{bottom:579.411751px;}
.y22{bottom:579.955700px;}
.yb0{bottom:583.204702px;}
.y54{bottom:587.879998px;}
.y7c{bottom:595.434650px;}
.y21{bottom:597.597126px;}
.yd8{bottom:599.580025px;}
.yaf{bottom:600.841350px;}
.y7b{bottom:611.273328px;}
.y53{bottom:611.820030px;}
.y20{bottom:615.238505px;}
.yae{bottom:618.482729px;}
.yd7{bottom:619.740006px;}
.y7a{bottom:627.291958px;}
.y1f{bottom:632.699441px;}
.y52{bottom:635.759994px;}
.yad{bottom:635.938887px;}
.y79{bottom:643.314857px;}
.y1e{bottom:650.340821px;}
.yd6{bottom:652.139992px;}
.yac{bottom:653.404554px;}
.y78{bottom:659.333529px;}
.y51{bottom:659.699993px;}
.y1d{bottom:667.796979px;}
.yab{bottom:671.041202px;}
.yd5{bottom:672.660015px;}
.y77{bottom:675.176434px;}
.y50{bottom:683.819995px;}
.y1c{bottom:685.438404px;}
.yaa{bottom:688.682628px;}
.y76{bottom:691.195106px;}
.yd4{bottom:693.000000px;}
.y1b{bottom:702.904072px;}
.ya9{bottom:706.138786px;}
.y4f{bottom:707.579990px;}
.y75{bottom:707.582797px;}
.yd3{bottom:713.160015px;}
.y1a{bottom:720.541647px;}
.ya8{bottom:723.779238px;}
.y74{bottom:731.523599px;}
.y4e{bottom:731.699993px;}
.y19{bottom:738.181171px;}
.ya7{bottom:741.418762px;}
.yd2{bottom:745.560001px;}
.y73{bottom:755.638257px;}
.y4d{bottom:755.639992px;}
.y18{bottom:755.820695px;}
.ya6{bottom:758.883455px;}
.yd1{bottom:766.079990px;}
.y17{bottom:773.277781px;}
.ya5{bottom:776.340587px;}
.y72{bottom:779.403347px;}
.y4c{bottom:779.579990px;}
.yd0{bottom:786.240006px;}
.y16{bottom:790.742474px;}
.ya4{bottom:793.980065px;}
.y71{bottom:803.518028px;}
.y4b{bottom:803.519989px;}
.y15{bottom:808.381998px;}
.ya3{bottom:811.619588px;}
.ycf{bottom:818.639992px;}
.y14{bottom:826.021499px;}
.y70{bottom:827.457902px;}
.y4a{bottom:827.639992px;}
.ya2{bottom:829.259089px;}
.yce{bottom:838.980011px;}
.y13{bottom:843.661023px;}
.ya1{bottom:846.723805px;}
.y6f{bottom:851.397776px;}
.y49{bottom:851.399986px;}
.ycd{bottom:859.319995px;}
.y12{bottom:861.118132px;}
.ya0{bottom:864.363306px;}
.y6e{bottom:875.337650px;}
.y48{bottom:875.519989px;}
.y11{bottom:880.021594px;}
.y9f{bottom:881.820415px;}
.ycc{bottom:891.720017px;}
.y9e{bottom:899.098840px;}
.y6d{bottom:899.459916px;}
.y47{bottom:899.459988px;}
.y10{bottom:902.338307px;}
.ycb{bottom:912.060001px;}
.y9d{bottom:914.937498px;}
.y6c{bottom:923.217398px;}
.y46{bottom:923.400003px;}
.yf{bottom:926.285457px;}
.y9c{bottom:930.954412px;}
.yca{bottom:932.400003px;}
.y9b{bottom:946.978210px;}
.y6b{bottom:947.339664px;}
.y45{bottom:947.340002px;}
.yc9{bottom:952.740006px;}
.ye{bottom:960.836102px;}
.yd{bottom:960.837200px;}
.y9a{bottom:962.816847px;}
.y8{bottom:965.340697px;}
.y6a{bottom:971.279538px;}
.y44{bottom:971.460004px;}
.y99{bottom:978.840646px;}
.yc8{bottom:985.139992px;}
.y98{bottom:994.857560px;}
.y69{bottom:995.219412px;}
.y43{bottom:995.219999px;}
.yc{bottom:995.577063px;}
.yc7{bottom:1005.479994px;}
.y97{bottom:1010.696217px;}
.y68{bottom:1019.159286px;}
.y42{bottom:1019.340002px;}
.y96{bottom:1026.719995px;}
.yc6{bottom:1037.699993px;}
.yb{bottom:1038.785172px;}
.y95{bottom:1042.736919px;}
.y41{bottom:1043.280001px;}
.y67{bottom:1043.281563px;}
.yc5{bottom:1056.060001px;}
.y94{bottom:1058.760697px;}
.y66{bottom:1067.039034px;}
.y40{bottom:1067.219999px;}
.ya{bottom:1073.521799px;}
.yc4{bottom:1073.700002px;}
.y93{bottom:1074.599355px;}
.y3{bottom:1091.700908px;}
.y3b{bottom:1091.879998px;}
.y2{bottom:1109.340414px;}
.y3a{bottom:1109.519998px;}
.y1{bottom:1126.441805px;}
.y39{bottom:1126.619999px;}
.h5{height:25.742175px;}
.h11{height:38.095047px;}
.hb{height:39.587215px;}
.h1{height:39.658342px;}
.h10{height:40.892523px;}
.hf{height:42.149978px;}
.ha{height:42.225377px;}
.h12{height:42.869861px;}
.hc{height:43.879675px;}
.h2{height:43.958168px;}
.he{height:45.245225px;}
.h4{height:45.326160px;}
.h9{height:55.902937px;}
.hd{height:61.813899px;}
.h3{height:61.924473px;}
.h6{height:63.547881px;}
.h7{height:71.670699px;}
.h8{height:75.105991px;}
.h0{height:1188.000000px;}
.w1{width:7.556910px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:140.401689px;}
.xf{left:148.319996px;}
.xd{left:168.299476px;}
.xc{left:174.242980px;}
.x3{left:199.798909px;}
.x1{left:210.063225px;}
.x2{left:246.419904px;}
.x6{left:262.265376px;}
.x7{left:277.563814px;}
.x8{left:300.239302px;}
.xb{left:321.478231px;}
.x9{left:323.098669px;}
.x10{left:327.779983px;}
.x4{left:374.037820px;}
.xe{left:483.480011px;}
.x11{left:541.439999px;}
.xa{left:631.084316px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.273876pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.004867pt;}
.ls5{letter-spacing:0.005395pt;}
.ls7{letter-spacing:0.175530pt;}
.ls8{letter-spacing:103.478142pt;}
.ls6{letter-spacing:104.139395pt;}
.ls2{letter-spacing:163.136405pt;}
.ls0{letter-spacing:409.089411pt;}
.ls1{letter-spacing:740.787461pt;}
.ws0{word-spacing:-55.341219pt;}
.ws4{word-spacing:-55.242400pt;}
.ws1{word-spacing:-33.204731pt;}
.ws5{word-spacing:-33.150835pt;}
.ws6{word-spacing:-33.145440pt;}
.ws2{word-spacing:-29.956767pt;}
.ws3{word-spacing:0.000000pt;}
._21{margin-left:-8.874571pt;}
._2f{margin-left:-7.733936pt;}
._7{margin-left:-6.640946pt;}
._6{margin-left:-5.534122pt;}
._c{margin-left:-4.390442pt;}
._53{margin-left:-3.494956pt;}
._50{margin-left:-2.145337pt;}
._1{margin-left:-1.106824pt;}
._0{width:0.998559pt;}
._3a{width:2.793047pt;}
._31{width:3.877758pt;}
._12{width:4.998790pt;}
._35{width:5.981535pt;}
._14{width:7.159933pt;}
._13{width:8.250573pt;}
._44{width:9.407392pt;}
._32{width:10.525006pt;}
._8{width:12.175068pt;}
._5{width:13.281892pt;}
._b{width:15.808356pt;}
._a{width:17.376823pt;}
._2e{width:19.361814pt;}
._e{width:20.468638pt;}
._55{width:23.243312pt;}
._10{width:24.270869pt;}
._24{width:25.386507pt;}
._2{width:27.117197pt;}
._36{width:28.189808pt;}
._40{width:29.273077pt;}
._51{width:35.394237pt;}
._39{width:36.582621pt;}
._d{width:37.543253pt;}
._1e{width:38.704025pt;}
._f{width:40.857797pt;}
._23{width:41.959227pt;}
._37{width:45.314952pt;}
._54{width:47.296895pt;}
._38{width:48.564759pt;}
._28{width:49.739739pt;}
._52{width:50.926504pt;}
._18{width:56.921251pt;}
._1a{width:57.979523pt;}
._2a{width:59.631400pt;}
._29{width:60.755850pt;}
._46{width:71.273486pt;}
._17{width:73.493971pt;}
._16{width:74.611585pt;}
._1b{width:82.327360pt;}
._1f{width:83.423395pt;}
._4c{width:87.522123pt;}
._4b{width:88.723523pt;}
._27{width:90.602931pt;}
._26{width:91.616875pt;}
._22{width:93.392025pt;}
._4f{width:100.355170pt;}
._33{width:103.866502pt;}
._34{width:104.982139pt;}
._19{width:107.209996pt;}
._3b{width:108.280499pt;}
._41{width:115.435037pt;}
._45{width:116.525677pt;}
._30{width:123.748371pt;}
._49{width:124.733701pt;}
._3f{width:126.483517pt;}
._15{width:140.042451pt;}
._3c{width:141.105578pt;}
._11{width:156.863419pt;}
._48{width:172.919502pt;}
._47{width:174.600329pt;}
._4e{width:178.094545pt;}
._2d{width:181.711709pt;}
._2b{width:206.075731pt;}
._2c{width:207.164395pt;}
._25{width:214.938070pt;}
._59{width:241.459147pt;}
._1c{width:248.565803pt;}
._56{width:257.336667pt;}
._4{width:265.766216pt;}
._1d{width:281.223556pt;}
._43{width:314.293469pt;}
._42{width:380.659876pt;}
._57{width:406.047824pt;}
._3d{width:413.223942pt;}
._4a{width:414.505728pt;}
._3{width:431.575035pt;}
._20{width:446.875229pt;}
._3e{width:513.230846pt;}
._58{width:561.280945pt;}
._4d{width:593.143989pt;}
._9{width:1189.282789pt;}
.fs5{font-size:49.838400pt;}
.fs0{font-size:49.927945pt;}
.fs6{font-size:55.242400pt;}
.fs1{font-size:55.341219pt;}
.fs4{font-size:70.379109pt;}
.fs2{font-size:80.003726pt;}
.fs3{font-size:90.229963pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:6.084279pt;}
.y3f{bottom:63.840027pt;}
.y7{bottom:63.842127pt;}
.y3e{bottom:95.679993pt;}
.y6{bottom:95.681721pt;}
.y3d{bottom:111.840027pt;}
.y5{bottom:111.840047pt;}
.y3c{bottom:128.960022pt;}
.y4{bottom:128.961068pt;}
.y38{bottom:152.964275pt;}
.yc3{bottom:154.720777pt;}
.y65{bottom:160.320007pt;}
.y37{bottom:168.641337pt;}
.yc2{bottom:170.397756pt;}
.y64{bottom:181.599976pt;}
.y36{bottom:184.322604pt;}
.yc1{bottom:186.079023pt;}
.ye8{bottom:190.239990pt;}
.y35{bottom:199.682918pt;}
.yc0{bottom:201.756085pt;}
.y63{bottom:202.880005pt;}
.y34{bottom:215.364186pt;}
.y92{bottom:216.951310pt;}
.ye7{bottom:219.039978pt;}
.y62{bottom:224.320007pt;}
.y33{bottom:231.041247pt;}
.y91{bottom:231.190130pt;}
.ye6{bottom:237.119995pt;}
.ybf{bottom:238.400492pt;}
.y90{bottom:245.272712pt;}
.y61{bottom:245.440002pt;}
.y32{bottom:246.722515pt;}
.ye5{bottom:255.039978pt;}
.y8f{bottom:259.511532pt;}
.y31{bottom:262.239100pt;}
.y60{bottom:266.880005pt;}
.ybe{bottom:267.521055pt;}
.y8e{bottom:273.754145pt;}
.y30{bottom:277.920284pt;}
.ye4{bottom:283.840027pt;}
.ybd{bottom:285.760959pt;}
.y8d{bottom:287.832934pt;}
.y5f{bottom:288.159973pt;}
.y2f{bottom:293.445363pt;}
.ye3{bottom:301.919983pt;}
.y8c{bottom:302.071679pt;}
.ybc{bottom:303.840387pt;}
.y2e{bottom:309.122342pt;}
.y5e{bottom:309.440002pt;}
.y8b{bottom:316.314292pt;}
.ye2{bottom:320.159973pt;}
.ybb{bottom:321.919897pt;}
.y2d{bottom:324.638927pt;}
.y8a{bottom:330.393081pt;}
.y5d{bottom:330.719971pt;}
.ye1{bottom:338.080017pt;}
.yba{bottom:340.003530pt;}
.y2c{bottom:340.320195pt;}
.y89{bottom:344.631900pt;}
.y5c{bottom:352.159973pt;}
.y2b{bottom:356.001462pt;}
.yb9{bottom:358.078751pt;}
.y88{bottom:358.874514pt;}
.ye0{bottom:366.880005pt;}
.y87{bottom:373.109464pt;}
.y5b{bottom:373.280029pt;}
.yb8{bottom:376.158261pt;}
.ydf{bottom:384.960022pt;}
.y86{bottom:387.195916pt;}
.y2a{bottom:392.160399pt;}
.yb7{bottom:394.241936pt;}
.y5a{bottom:394.719971pt;}
.y85{bottom:401.434661pt;}
.yde{bottom:403.039978pt;}
.y29{bottom:407.681190pt;}
.yb6{bottom:412.321404pt;}
.y84{bottom:415.677274pt;}
.y59{bottom:416.000000pt;}
.y28{bottom:423.358210pt;}
.y83{bottom:429.756063pt;}
.yb5{bottom:430.396626pt;}
.ydd{bottom:431.840027pt;}
.y58{bottom:437.280029pt;}
.y27{bottom:438.883248pt;}
.y82{bottom:444.151044pt;}
.yb4{bottom:448.484547pt;}
.ydc{bottom:449.919983pt;}
.y26{bottom:454.564515pt;}
.y81{bottom:458.237496pt;}
.y57{bottom:458.559998pt;}
.yb3{bottom:466.559769pt;}
.ydb{bottom:468.000000pt;}
.y25{bottom:470.081100pt;}
.y80{bottom:472.316284pt;}
.y56{bottom:480.000000pt;}
.yb2{bottom:484.639238pt;}
.y24{bottom:485.758121pt;}
.yda{bottom:486.080017pt;}
.y7f{bottom:486.715060pt;}
.y7e{bottom:500.793848pt;}
.y23{bottom:500.953842pt;}
.y55{bottom:501.119995pt;}
.yb1{bottom:502.722912pt;}
.yd9{bottom:514.880005pt;}
.y7d{bottom:515.032668pt;}
.y22{bottom:515.516178pt;}
.yb0{bottom:518.404179pt;}
.y54{bottom:522.559998pt;}
.y7c{bottom:529.275244pt;}
.y21{bottom:531.197445pt;}
.yd8{bottom:532.960022pt;}
.yaf{bottom:534.081200pt;}
.y7b{bottom:543.354070pt;}
.y53{bottom:543.840027pt;}
.y20{bottom:546.878671pt;}
.yae{bottom:549.762426pt;}
.yd7{bottom:550.880005pt;}
.y7a{bottom:557.592852pt;}
.y1f{bottom:562.399503pt;}
.y52{bottom:565.119995pt;}
.yad{bottom:565.279011pt;}
.y79{bottom:571.835428pt;}
.y1e{bottom:578.080729pt;}
.yd6{bottom:579.679993pt;}
.yac{bottom:580.804048pt;}
.y78{bottom:586.074248pt;}
.y51{bottom:586.399994pt;}
.y1d{bottom:593.597314pt;}
.yab{bottom:596.481069pt;}
.yd5{bottom:597.920013pt;}
.y77{bottom:600.156830pt;}
.y50{bottom:607.839996pt;}
.y1c{bottom:609.278582pt;}
.yaa{bottom:612.162336pt;}
.y76{bottom:614.395650pt;}
.yd4{bottom:616.000000pt;}
.y1b{bottom:624.803619pt;}
.ya9{bottom:627.678921pt;}
.y4f{bottom:628.959991pt;}
.y75{bottom:628.962486pt;}
.yd3{bottom:633.920013pt;}
.y1a{bottom:640.481464pt;}
.ya8{bottom:643.359322pt;}
.y74{bottom:650.243199pt;}
.y4e{bottom:650.399994pt;}
.y19{bottom:656.161041pt;}
.ya7{bottom:659.038899pt;}
.yd2{bottom:662.720001pt;}
.y73{bottom:671.678451pt;}
.y4d{bottom:671.679993pt;}
.y18{bottom:671.840618pt;}
.ya6{bottom:674.563071pt;}
.yd1{bottom:680.959991pt;}
.y17{bottom:687.358027pt;}
.ya5{bottom:690.080522pt;}
.y72{bottom:692.802975pt;}
.y4c{bottom:692.959991pt;}
.yd0{bottom:698.880005pt;}
.y16{bottom:702.882199pt;}
.ya4{bottom:705.760057pt;}
.y71{bottom:714.238247pt;}
.y4b{bottom:714.239990pt;}
.y15{bottom:718.561776pt;}
.ya3{bottom:721.439634pt;}
.ycf{bottom:727.679993pt;}
.y14{bottom:734.241332pt;}
.y70{bottom:735.518135pt;}
.y4a{bottom:735.679993pt;}
.ya2{bottom:737.119190pt;}
.yce{bottom:745.760010pt;}
.y13{bottom:749.920909pt;}
.ya1{bottom:752.643383pt;}
.y6f{bottom:756.798023pt;}
.y49{bottom:756.799988pt;}
.ycd{bottom:763.839996pt;}
.y12{bottom:765.438339pt;}
.ya0{bottom:768.322939pt;}
.y6e{bottom:778.077911pt;}
.y48{bottom:778.239990pt;}
.y11{bottom:782.241417pt;}
.y9f{bottom:783.840369pt;}
.ycc{bottom:792.640015pt;}
.y9e{bottom:799.198969pt;}
.y6d{bottom:799.519925pt;}
.y47{bottom:799.519989pt;}
.y10{bottom:802.078495pt;}
.ycb{bottom:810.720001pt;}
.y9d{bottom:813.277776pt;}
.y6c{bottom:820.637687pt;}
.y46{bottom:820.800003pt;}
.yf{bottom:823.364850pt;}
.y9c{bottom:827.515033pt;}
.yca{bottom:828.800003pt;}
.y9b{bottom:841.758409pt;}
.y6b{bottom:842.079701pt;}
.y45{bottom:842.080002pt;}
.yc9{bottom:846.880005pt;}
.ye{bottom:854.076535pt;}
.yd{bottom:854.077511pt;}
.y9a{bottom:855.837198pt;}
.y8{bottom:858.080619pt;}
.y6a{bottom:863.359589pt;}
.y44{bottom:863.520004pt;}
.y99{bottom:870.080574pt;}
.yc8{bottom:875.679993pt;}
.y98{bottom:884.317831pt;}
.y69{bottom:884.639477pt;}
.y43{bottom:884.639999pt;}
.yc{bottom:884.957390pt;}
.yc7{bottom:893.759995pt;}
.y97{bottom:898.396638pt;}
.y68{bottom:905.919365pt;}
.y42{bottom:906.080002pt;}
.y96{bottom:912.639995pt;}
.yc6{bottom:922.399994pt;}
.yb{bottom:923.364597pt;}
.y95{bottom:926.877262pt;}
.y41{bottom:927.360001pt;}
.y67{bottom:927.361389pt;}
.yc5{bottom:938.720001pt;}
.y94{bottom:941.120619pt;}
.y66{bottom:948.479141pt;}
.y40{bottom:948.639999pt;}
.ya{bottom:954.241599pt;}
.yc4{bottom:954.400002pt;}
.y93{bottom:955.199426pt;}
.y3{bottom:970.400807pt;}
.y3b{bottom:970.559998pt;}
.y2{bottom:986.080368pt;}
.y3a{bottom:986.239998pt;}
.y1{bottom:1001.281605pt;}
.y39{bottom:1001.439999pt;}
.h5{height:22.881933pt;}
.h11{height:33.862264pt;}
.hb{height:35.188636pt;}
.h1{height:35.251860pt;}
.h10{height:36.348909pt;}
.hf{height:37.466647pt;}
.ha{height:37.533668pt;}
.h12{height:38.106543pt;}
.hc{height:39.004155pt;}
.h2{height:39.073927pt;}
.he{height:40.217978pt;}
.h4{height:40.289920pt;}
.h9{height:49.691500pt;}
.hd{height:54.945688pt;}
.h3{height:55.043976pt;}
.h6{height:56.487006pt;}
.h7{height:63.707288pt;}
.h8{height:66.760881pt;}
.h0{height:1056.000000pt;}
.w1{width:6.717253pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:124.801501pt;}
.xf{left:131.839996pt;}
.xd{left:149.599534pt;}
.xc{left:154.882649pt;}
.x3{left:177.599031pt;}
.x1{left:186.722867pt;}
.x2{left:219.039915pt;}
.x6{left:233.124779pt;}
.x7{left:246.723391pt;}
.x8{left:266.879379pt;}
.xb{left:285.758427pt;}
.x9{left:287.198817pt;}
.x10{left:291.359985pt;}
.x4{left:332.478062pt;}
.xe{left:429.760010pt;}
.x11{left:481.279999pt;}
.xa{left:560.963836pt;}
}




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