
    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_781e44888d4ffe63783ecf85.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_f499e02a15fb25b28ab6f092.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.912598;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_913fed099092a4d84e4a8af1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_b3c2cf98955c1227dd4c0032.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_a6b535b9d6daa4345892ecbe.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_2635f5c200e1cbeca99a0921.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_45b63ba60e98e827349c442a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;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.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,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;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.177295px;}
.ls1{letter-spacing:0.365379px;}
.ls3{letter-spacing:0.647539px;}
.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;}
}
.wsc{word-spacing:-19.768065px;}
.ws2{word-spacing:-18.247440px;}
.ws1{word-spacing:-15.544110px;}
.wsd{word-spacing:-14.023494px;}
.wsa{word-spacing:-0.228987px;}
.ws4{word-spacing:0.000000px;}
.ws9{word-spacing:0.186387px;}
.ws6{word-spacing:0.247009px;}
.ws0{word-spacing:0.872024px;}
.ws5{word-spacing:0.915105px;}
.ws8{word-spacing:1.369294px;}
.ws7{word-spacing:2.240461px;}
.wsb{word-spacing:2.566585px;}
.wsf{word-spacing:19.239508px;}
.ws3{word-spacing:19.687831px;}
.wse{word-spacing:47.679154px;}
._0{margin-left:-1.007664px;}
._1{width:1.007664px;}
._e{width:2.300047px;}
._5{width:3.314516px;}
._7{width:5.216740px;}
._8{width:6.248734px;}
._a{width:7.797063px;}
._1a{width:8.841216px;}
._19{width:9.886054px;}
._d{width:11.615508px;}
._c{width:12.735360px;}
._15{width:13.853155px;}
._2{width:15.180865px;}
._13{width:16.528608px;}
._6{width:17.961657px;}
._9{width:19.904703px;}
._f{width:21.154910px;}
._b{width:22.214303px;}
._18{width:23.535664px;}
._10{width:24.745274px;}
._14{width:25.865522px;}
._11{width:27.164178px;}
._12{width:28.337384px;}
._1c{width:30.356532px;}
._4{width:32.074346px;}
._17{width:33.585721px;}
._1f{width:34.743082px;}
._16{width:35.806068px;}
._1d{width:37.089798px;}
._26{width:40.053126px;}
._1b{width:41.192115px;}
._1e{width:42.228347px;}
._20{width:49.167893px;}
._2a{width:50.617937px;}
._21{width:62.375776px;}
._24{width:64.117442px;}
._29{width:67.316826px;}
._28{width:73.316854px;}
._27{width:74.324518px;}
._25{width:84.292241px;}
._22{width:417.399330px;}
._3{width:1659.803727px;}
._23{width:1862.658595px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:47.984004px;}
.fs1{font-size:56.093976px;}
.fs5{font-size:62.176440px;}
.fs4{font-size:67.583100px;}
.fs3{font-size:72.989760px;}
.fs6{font-size:79.072260px;}
.fs2{font-size:112.863780px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.891540px;}
.y3{bottom:97.826550px;}
.y26{bottom:117.256695px;}
.y25{bottom:150.034560px;}
.y85{bottom:154.765260px;}
.yed{bottom:158.313360px;}
.ycc{bottom:159.158160px;}
.y45{bottom:167.775060px;}
.y24{bottom:167.943960px;}
.y84{bottom:172.505910px;}
.yec{bottom:174.533310px;}
.ycb{bottom:176.898810px;}
.y69{bottom:182.136510px;}
.y23{bottom:185.684610px;}
.y83{bottom:190.246410px;}
.yeb{bottom:190.584360px;}
.yca{bottom:194.808360px;}
.y68{bottom:200.046060px;}
.y22{bottom:203.594160px;}
.yea{bottom:206.804310px;}
.yab{bottom:216.772860px;}
.y67{bottom:217.786560px;}
.y21{bottom:221.334660px;}
.ye9{bottom:223.024260px;}
.y82{bottom:225.896460px;}
.yb7{bottom:226.403460px;}
.yc9{bottom:230.289510px;}
.yaa{bottom:234.513360px;}
.y66{bottom:235.696110px;}
.y20{bottom:239.075160px;}
.ye8{bottom:239.244210px;}
.yb6{bottom:244.143960px;}
.yc8{bottom:248.198910px;}
.ya9{bottom:252.422910px;}
.ye7{bottom:255.464160px;}
.y44{bottom:256.984710px;}
.y11c{bottom:259.688010px;}
.y81{bottom:261.546660px;}
.yb5{bottom:262.053510px;}
.yc7{bottom:265.939560px;}
.y65{bottom:271.177260px;}
.ye6{bottom:271.684110px;}
.y1f{bottom:274.725360px;}
.y11b{bottom:275.908110px;}
.y80{bottom:279.287160px;}
.yc6{bottom:283.849110px;}
.ye5{bottom:287.735010px;}
.ya8{bottom:287.904060px;}
.y64{bottom:289.086660px;}
.y11a{bottom:291.959010px;}
.y1e{bottom:292.634910px;}
.y7f{bottom:297.196710px;}
.yb4{bottom:297.534660px;}
.yc5{bottom:301.589610px;}
.ye4{bottom:303.954960px;}
.ya7{bottom:305.813610px;}
.y63{bottom:306.827310px;}
.y119{bottom:308.178960px;}
.y43{bottom:309.192660px;}
.y1d{bottom:310.375410px;}
.yb3{bottom:315.444210px;}
.yc4{bottom:319.499160px;}
.ye3{bottom:320.174910px;}
.ya6{bottom:323.554110px;}
.y118{bottom:324.398910px;}
.y62{bottom:324.736860px;}
.y1c{bottom:328.115910px;}
.y7e{bottom:332.846760px;}
.yb2{bottom:333.184710px;}
.ye2{bottom:336.394860px;}
.yc3{bottom:337.239660px;}
.y61{bottom:342.477360px;}
.y7d{bottom:350.587410px;}
.ye1{bottom:352.614810px;}
.y117{bottom:356.500860px;}
.ya5{bottom:357.514560px;}
.y60{bottom:360.386910px;}
.y1b{bottom:363.766110px;}
.yb1{bottom:367.652160px;}
.ye0{bottom:368.665860px;}
.yc2{bottom:372.551910px;}
.ya4{bottom:375.424110px;}
.y5f{bottom:378.127410px;}
.y1a{bottom:381.675660px;}
.y7c{bottom:386.237460px;}
.y116{bottom:389.109810px;}
.ya3{bottom:393.164760px;}
.y5e{bottom:395.868060px;}
.ydf{bottom:403.640010px;}
.y7b{bottom:403.977960px;}
.y115{bottom:405.329610px;}
.ya2{bottom:411.074310px;}
.y114{bottom:421.549560px;}
.y7a{bottom:421.887510px;}
.y19{bottom:422.732310px;}
.ya1{bottom:428.814810px;}
.y5d{bottom:431.518110px;}
.y113{bottom:437.769510px;}
.yde{bottom:443.514060px;}
.ya0{bottom:446.555310px;}
.y5c{bottom:449.427660px;}
.y112{bottom:453.989460px;}
.y42{bottom:454.158510px;}
.y79{bottom:457.368660px;}
.y18{bottom:460.916760px;}
.ydd{bottom:461.254710px;}
.y9f{bottom:464.464860px;}
.y5b{bottom:467.168160px;}
.y111{bottom:470.209410px;}
.y41{bottom:472.068060px;}
.y78{bottom:475.278210px;}
.y17{bottom:476.967810px;}
.ydc{bottom:479.164260px;}
.y9e{bottom:482.205510px;}
.y5a{bottom:484.908810px;}
.y110{bottom:486.260460px;}
.y40{bottom:489.808560px;}
.y77{bottom:493.018710px;}
.ydb{bottom:496.904760px;}
.y9d{bottom:500.114910px;}
.y10f{bottom:502.480410px;}
.y59{bottom:502.818210px;}
.y3f{bottom:507.718110px;}
.y76{bottom:510.928260px;}
.y16{bottom:514.645410px;}
.y9c{bottom:517.855560px;}
.y10e{bottom:518.700360px;}
.y58{bottom:520.558860px;}
.y3e{bottom:525.458610px;}
.y75{bottom:528.668910px;}
.yda{bottom:532.554960px;}
.y10d{bottom:534.920310px;}
.y9b{bottom:535.765110px;}
.yc1{bottom:538.468410px;}
.y74{bottom:546.578310px;}
.yd9{bottom:550.295460px;}
.y10c{bottom:551.140260px;}
.y15{bottom:551.478210px;}
.y9a{bottom:553.505610px;}
.y57{bottom:556.208910px;}
.y3d{bottom:561.108660px;}
.y10b{bottom:567.191160px;}
.y14{bottom:567.698160px;}
.yd8{bottom:568.205010px;}
.y99{bottom:571.246260px;}
.y56{bottom:573.949560px;}
.y3c{bottom:578.849310px;}
.y73{bottom:582.059460px;}
.y10a{bottom:583.411110px;}
.y13{bottom:583.917960px;}
.yd7{bottom:585.945510px;}
.y98{bottom:589.155660px;}
.y55{bottom:591.859110px;}
.y3b{bottom:596.758860px;}
.y109{bottom:599.631060px;}
.y72{bottom:599.969010px;}
.y12{bottom:600.137910px;}
.yd6{bottom:603.855060px;}
.y54{bottom:609.599610px;}
.y3a{bottom:614.499360px;}
.y108{bottom:615.851010px;}
.y11{bottom:616.357860px;}
.y71{bottom:617.709660px;}
.yd5{bottom:621.595560px;}
.y97{bottom:625.819560px;}
.yc0{bottom:627.509160px;}
.y107{bottom:632.070960px;}
.y10{bottom:632.408910px;}
.yd4{bottom:639.336210px;}
.y96{bottom:643.560060px;}
.y53{bottom:645.249660px;}
.y106{bottom:648.290910px;}
.yf{bottom:648.628860px;}
.y39{bottom:650.149410px;}
.y70{bottom:658.766310px;}
.y95{bottom:661.469610px;}
.y52{bottom:662.990310px;}
.y105{bottom:664.341960px;}
.ye{bottom:664.848810px;}
.y38{bottom:667.890060px;}
.yd3{bottom:680.561910px;}
.y51{bottom:680.899860px;}
.yd{bottom:681.068760px;}
.y37{bottom:685.799610px;}
.y104{bottom:696.781860px;}
.yc{bottom:697.288710px;}
.y6f{bottom:698.640360px;}
.y94{bottom:702.526410px;}
.y36{bottom:703.540110px;}
.y103{bottom:713.001810px;}
.y50{bottom:716.549910px;}
.yd2{bottom:720.266910px;}
.y35{bottom:721.280760px;}
.y102{bottom:729.221760px;}
.y4f{bottom:734.290410px;}
.yb{bottom:734.797260px;}
.yd1{bottom:738.176460px;}
.yb0{bottom:739.190160px;}
.y93{bottom:740.710860px;}
.y101{bottom:745.441710px;}
.y4e{bottom:752.031060px;}
.yd0{bottom:755.917110px;}
.y34{bottom:756.930810px;}
.y92{bottom:758.620410px;}
.y100{bottom:761.492610px;}
.ybf{bottom:769.940610px;}
.ycf{bottom:773.826660px;}
.y33{bottom:774.840210px;}
.y91{bottom:776.360910px;}
.yff{bottom:777.712560px;}
.y4d{bottom:787.681110px;}
.yce{bottom:791.567160px;}
.y32{bottom:792.580860px;}
.ya{bottom:792.918810px;}
.yfe{bottom:793.932510px;}
.y90{bottom:794.270460px;}
.y4c{bottom:805.590660px;}
.yfd{bottom:810.152460px;}
.y31{bottom:810.321510px;}
.y8f{bottom:812.011110px;}
.y4b{bottom:823.331160px;}
.ycd{bottom:826.034610px;}
.yfc{bottom:826.372410px;}
.y30{bottom:828.231060px;}
.y8e{bottom:829.751610px;}
.y9{bottom:830.765310px;}
.y4a{bottom:841.240710px;}
.yfb{bottom:842.592360px;}
.y2f{bottom:845.971560px;}
.y8d{bottom:847.661160px;}
.y8{bottom:850.195560px;}
.yfa{bottom:858.643410px;}
.y6e{bottom:858.981210px;}
.y2e{bottom:863.881110px;}
.y8c{bottom:865.401660px;}
.yf9{bottom:874.863210px;}
.ybe{bottom:876.721860px;}
.y49{bottom:881.621610px;}
.y8b{bottom:883.311210px;}
.y7{bottom:890.745360px;}
.yf8{bottom:891.083160px;}
.ybd{bottom:894.631410px;}
.y2d{bottom:899.362110px;}
.y6d{bottom:900.038010px;}
.y8a{bottom:901.051710px;}
.yf7{bottom:907.303110px;}
.ybc{bottom:912.371910px;}
.y2c{bottom:917.271660px;}
.y89{bottom:918.792360px;}
.yf6{bottom:923.523060px;}
.y2b{bottom:935.012310px;}
.y88{bottom:936.701910px;}
.yf5{bottom:939.574110px;}
.y48{bottom:940.587960px;}
.y6c{bottom:944.811810px;}
.y6{bottom:946.332510px;}
.ybb{bottom:948.021960px;}
.y2a{bottom:952.921710px;}
.y87{bottom:954.442410px;}
.yf4{bottom:955.794060px;}
.y6b{bottom:962.552460px;}
.yba{bottom:965.762610px;}
.yaf{bottom:970.662360px;}
.yf3{bottom:972.014010px;}
.y5{bottom:977.927610px;}
.y47{bottom:980.462010px;}
.yb9{bottom:983.672010px;}
.yf2{bottom:988.233960px;}
.yae{bottom:988.571910px;}
.y29{bottom:993.978510px;}
.y86{bottom:995.668110px;}
.y46{bottom:998.202510px;}
.yf1{bottom:1004.453910px;}
.yad{bottom:1006.312410px;}
.y4{bottom:1009.691610px;}
.y6a{bottom:1015.943010px;}
.yf0{bottom:1020.673860px;}
.yb8{bottom:1024.728810px;}
.y28{bottom:1033.852560px;}
.yef{bottom:1036.724910px;}
.yac{bottom:1047.369210px;}
.y27{bottom:1051.593060px;}
.yee{bottom:1052.944860px;}
.y2{bottom:1079.471160px;}
.h2{height:47.093676px;}
.h9{height:55.025780px;}
.h3{height:55.053170px;}
.hb{height:56.532210px;}
.h7{height:61.022776px;}
.h6{height:66.329117px;}
.h8{height:71.599818px;}
.h5{height:71.635458px;}
.h4{height:75.224150px;}
.ha{height:79.690012px;}
.h1{height:1185.407550px;}
.h0{height:1188.000000px;}
.w1{width:839.790000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:38.898015px;}
.x3{left:120.018285px;}
.x9{left:123.911685px;}
.xc{left:125.096685px;}
.x2{left:131.867835px;}
.x7{left:133.391385px;}
.x4{left:147.779985px;}
.x10{left:151.842735px;}
.x5{left:179.435085px;}
.xf{left:235.466235px;}
.xd{left:314.349885px;}
.xe{left:318.412635px;}
.xb{left:329.246385px;}
.x8{left:361.578585px;}
.x6{left:362.932785px;}
.xa{left:722.987835px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.157596pt;}
.ls1{letter-spacing:0.324782pt;}
.ls3{letter-spacing:0.575591pt;}
.wsc{word-spacing:-17.571613pt;}
.ws2{word-spacing:-16.219947pt;}
.ws1{word-spacing:-13.816987pt;}
.wsd{word-spacing:-12.465328pt;}
.wsa{word-spacing:-0.203544pt;}
.ws4{word-spacing:0.000000pt;}
.ws9{word-spacing:0.165677pt;}
.ws6{word-spacing:0.219563pt;}
.ws0{word-spacing:0.775133pt;}
.ws5{word-spacing:0.813427pt;}
.ws8{word-spacing:1.217150pt;}
.ws7{word-spacing:1.991521pt;}
.wsb{word-spacing:2.281409pt;}
.wsf{word-spacing:17.101785pt;}
.ws3{word-spacing:17.500294pt;}
.wse{word-spacing:42.381470pt;}
._0{margin-left:-0.895701pt;}
._1{width:0.895701pt;}
._e{width:2.044487pt;}
._5{width:2.946237pt;}
._7{width:4.637102pt;}
._8{width:5.554430pt;}
._a{width:6.930722pt;}
._1a{width:7.858858pt;}
._19{width:8.787604pt;}
._d{width:10.324896pt;}
._c{width:11.320320pt;}
._15{width:12.313916pt;}
._2{width:13.494103pt;}
._13{width:14.692096pt;}
._6{width:15.965918pt;}
._9{width:17.693069pt;}
._f{width:18.804364pt;}
._b{width:19.746047pt;}
._18{width:20.920591pt;}
._10{width:21.995799pt;}
._14{width:22.991575pt;}
._11{width:24.145936pt;}
._12{width:25.188786pt;}
._1c{width:26.983584pt;}
._4{width:28.510530pt;}
._17{width:29.853974pt;}
._1f{width:30.882740pt;}
._16{width:31.827616pt;}
._1d{width:32.968709pt;}
._26{width:35.602779pt;}
._1b{width:36.615213pt;}
._1e{width:37.536309pt;}
._20{width:43.704794pt;}
._2a{width:44.993722pt;}
._21{width:55.445134pt;}
._24{width:56.993282pt;}
._29{width:59.837179pt;}
._28{width:65.170537pt;}
._27{width:66.066238pt;}
._25{width:74.926436pt;}
._22{width:371.021627pt;}
._3{width:1475.381090pt;}
._23{width:1655.696528pt;}
.fs0{font-size:42.652448pt;}
.fs1{font-size:49.861312pt;}
.fs5{font-size:55.267947pt;}
.fs4{font-size:60.073867pt;}
.fs3{font-size:64.879787pt;}
.fs6{font-size:70.286453pt;}
.fs2{font-size:100.323360pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.792480pt;}
.y3{bottom:86.956933pt;}
.y26{bottom:104.228173pt;}
.y25{bottom:133.364053pt;}
.y85{bottom:137.569120pt;}
.yed{bottom:140.722987pt;}
.ycc{bottom:141.473920pt;}
.y45{bottom:149.133387pt;}
.y24{bottom:149.283520pt;}
.y84{bottom:153.338587pt;}
.yec{bottom:155.140720pt;}
.ycb{bottom:157.243387pt;}
.y69{bottom:161.899120pt;}
.y23{bottom:165.052987pt;}
.y83{bottom:169.107920pt;}
.yeb{bottom:169.408320pt;}
.yca{bottom:173.162987pt;}
.y68{bottom:177.818720pt;}
.y22{bottom:180.972587pt;}
.yea{bottom:183.826053pt;}
.yab{bottom:192.686987pt;}
.y67{bottom:193.588053pt;}
.y21{bottom:196.741920pt;}
.ye9{bottom:198.243787pt;}
.y82{bottom:200.796853pt;}
.yb7{bottom:201.247520pt;}
.yc9{bottom:204.701787pt;}
.yaa{bottom:208.456320pt;}
.y66{bottom:209.507653pt;}
.y20{bottom:212.511253pt;}
.ye8{bottom:212.661520pt;}
.yb6{bottom:217.016853pt;}
.yc8{bottom:220.621253pt;}
.ya9{bottom:224.375920pt;}
.ye7{bottom:227.079253pt;}
.y44{bottom:228.430853pt;}
.y11c{bottom:230.833787pt;}
.y81{bottom:232.485920pt;}
.yb5{bottom:232.936453pt;}
.yc7{bottom:236.390720pt;}
.y65{bottom:241.046453pt;}
.ye6{bottom:241.496987pt;}
.y1f{bottom:244.200320pt;}
.y11b{bottom:245.251653pt;}
.y80{bottom:248.255253pt;}
.yc6{bottom:252.310320pt;}
.ye5{bottom:255.764453pt;}
.ya8{bottom:255.914720pt;}
.y64{bottom:256.965920pt;}
.y11a{bottom:259.519120pt;}
.y1e{bottom:260.119920pt;}
.y7f{bottom:264.174853pt;}
.yb4{bottom:264.475253pt;}
.yc5{bottom:268.079653pt;}
.ye4{bottom:270.182187pt;}
.ya7{bottom:271.834320pt;}
.y63{bottom:272.735387pt;}
.y119{bottom:273.936853pt;}
.y43{bottom:274.837920pt;}
.y1d{bottom:275.889253pt;}
.yb3{bottom:280.394853pt;}
.yc4{bottom:283.999253pt;}
.ye3{bottom:284.599920pt;}
.ya6{bottom:287.603653pt;}
.y118{bottom:288.354587pt;}
.y62{bottom:288.654987pt;}
.y1c{bottom:291.658587pt;}
.y7e{bottom:295.863787pt;}
.yb2{bottom:296.164187pt;}
.ye2{bottom:299.017653pt;}
.yc3{bottom:299.768587pt;}
.y61{bottom:304.424320pt;}
.y7d{bottom:311.633253pt;}
.ye1{bottom:313.435387pt;}
.y117{bottom:316.889653pt;}
.ya5{bottom:317.790720pt;}
.y60{bottom:320.343920pt;}
.y1b{bottom:323.347653pt;}
.yb1{bottom:326.801920pt;}
.ye0{bottom:327.702987pt;}
.yc2{bottom:331.157253pt;}
.ya4{bottom:333.710320pt;}
.y5f{bottom:336.113253pt;}
.y1a{bottom:339.267253pt;}
.y7c{bottom:343.322187pt;}
.y116{bottom:345.875387pt;}
.ya3{bottom:349.479787pt;}
.y5e{bottom:351.882720pt;}
.ydf{bottom:358.791120pt;}
.y7b{bottom:359.091520pt;}
.y115{bottom:360.292987pt;}
.ya2{bottom:365.399387pt;}
.y114{bottom:374.710720pt;}
.y7a{bottom:375.011120pt;}
.y19{bottom:375.762053pt;}
.ya1{bottom:381.168720pt;}
.y5d{bottom:383.571653pt;}
.y113{bottom:389.128453pt;}
.yde{bottom:394.234720pt;}
.ya0{bottom:396.938053pt;}
.y5c{bottom:399.491253pt;}
.y112{bottom:403.546187pt;}
.y42{bottom:403.696453pt;}
.y79{bottom:406.549920pt;}
.y18{bottom:409.703787pt;}
.ydd{bottom:410.004187pt;}
.y9f{bottom:412.857653pt;}
.y5b{bottom:415.260587pt;}
.y111{bottom:417.963920pt;}
.y41{bottom:419.616053pt;}
.y78{bottom:422.469520pt;}
.y17{bottom:423.971387pt;}
.ydc{bottom:425.923787pt;}
.y9e{bottom:428.627120pt;}
.y5a{bottom:431.030053pt;}
.y110{bottom:432.231520pt;}
.y40{bottom:435.385387pt;}
.y77{bottom:438.238853pt;}
.ydb{bottom:441.693120pt;}
.y9d{bottom:444.546587pt;}
.y10f{bottom:446.649253pt;}
.y59{bottom:446.949520pt;}
.y3f{bottom:451.304987pt;}
.y76{bottom:454.158453pt;}
.y16{bottom:457.462587pt;}
.y9c{bottom:460.316053pt;}
.y10e{bottom:461.066987pt;}
.y58{bottom:462.718987pt;}
.y3e{bottom:467.074320pt;}
.y75{bottom:469.927920pt;}
.yda{bottom:473.382187pt;}
.y10d{bottom:475.484720pt;}
.y9b{bottom:476.235653pt;}
.yc1{bottom:478.638587pt;}
.y74{bottom:485.847387pt;}
.yd9{bottom:489.151520pt;}
.y10c{bottom:489.902453pt;}
.y15{bottom:490.202853pt;}
.y9a{bottom:492.004987pt;}
.y57{bottom:494.407920pt;}
.y3d{bottom:498.763253pt;}
.y10b{bottom:504.169920pt;}
.y14{bottom:504.620587pt;}
.yd8{bottom:505.071120pt;}
.y99{bottom:507.774453pt;}
.y56{bottom:510.177387pt;}
.y3c{bottom:514.532720pt;}
.y73{bottom:517.386187pt;}
.y10a{bottom:518.587653pt;}
.y13{bottom:519.038187pt;}
.yd7{bottom:520.840453pt;}
.y98{bottom:523.693920pt;}
.y55{bottom:526.096987pt;}
.y3b{bottom:530.452320pt;}
.y109{bottom:533.005387pt;}
.y72{bottom:533.305787pt;}
.y12{bottom:533.455920pt;}
.yd6{bottom:536.760053pt;}
.y54{bottom:541.866320pt;}
.y3a{bottom:546.221653pt;}
.y108{bottom:547.423120pt;}
.y11{bottom:547.873653pt;}
.y71{bottom:549.075253pt;}
.yd5{bottom:552.529387pt;}
.y97{bottom:556.284053pt;}
.yc0{bottom:557.785920pt;}
.y107{bottom:561.840853pt;}
.y10{bottom:562.141253pt;}
.yd4{bottom:568.298853pt;}
.y96{bottom:572.053387pt;}
.y53{bottom:573.555253pt;}
.y106{bottom:576.258587pt;}
.yf{bottom:576.558987pt;}
.y39{bottom:577.910587pt;}
.y70{bottom:585.570053pt;}
.y95{bottom:587.972987pt;}
.y52{bottom:589.324720pt;}
.y105{bottom:590.526187pt;}
.ye{bottom:590.976720pt;}
.y38{bottom:593.680053pt;}
.yd3{bottom:604.943920pt;}
.y51{bottom:605.244320pt;}
.yd{bottom:605.394453pt;}
.y37{bottom:609.599653pt;}
.y104{bottom:619.361653pt;}
.yc{bottom:619.812187pt;}
.y6f{bottom:621.013653pt;}
.y94{bottom:624.467920pt;}
.y36{bottom:625.368987pt;}
.y103{bottom:633.779387pt;}
.y50{bottom:636.933253pt;}
.yd2{bottom:640.237253pt;}
.y35{bottom:641.138453pt;}
.y102{bottom:648.197120pt;}
.y4f{bottom:652.702587pt;}
.yb{bottom:653.153120pt;}
.yd1{bottom:656.156853pt;}
.yb0{bottom:657.057920pt;}
.y93{bottom:658.409653pt;}
.y101{bottom:662.614853pt;}
.y4e{bottom:668.472053pt;}
.yd0{bottom:671.926320pt;}
.y34{bottom:672.827387pt;}
.y92{bottom:674.329253pt;}
.y100{bottom:676.882320pt;}
.ybf{bottom:684.391653pt;}
.ycf{bottom:687.845920pt;}
.y33{bottom:688.746853pt;}
.y91{bottom:690.098587pt;}
.yff{bottom:691.300053pt;}
.y4d{bottom:700.160987pt;}
.yce{bottom:703.615253pt;}
.y32{bottom:704.516320pt;}
.ya{bottom:704.816720pt;}
.yfe{bottom:705.717787pt;}
.y90{bottom:706.018187pt;}
.y4c{bottom:716.080587pt;}
.yfd{bottom:720.135520pt;}
.y31{bottom:720.285787pt;}
.y8f{bottom:721.787653pt;}
.y4b{bottom:731.849920pt;}
.ycd{bottom:734.252987pt;}
.yfc{bottom:734.553253pt;}
.y30{bottom:736.205387pt;}
.y8e{bottom:737.556987pt;}
.y9{bottom:738.458053pt;}
.y4a{bottom:747.769520pt;}
.yfb{bottom:748.970987pt;}
.y2f{bottom:751.974720pt;}
.y8d{bottom:753.476587pt;}
.y8{bottom:755.729387pt;}
.yfa{bottom:763.238587pt;}
.y6e{bottom:763.538853pt;}
.y2e{bottom:767.894320pt;}
.y8c{bottom:769.245920pt;}
.yf9{bottom:777.656187pt;}
.ybe{bottom:779.308320pt;}
.y49{bottom:783.663653pt;}
.y8b{bottom:785.165520pt;}
.y7{bottom:791.773653pt;}
.yf8{bottom:792.073920pt;}
.ybd{bottom:795.227920pt;}
.y2d{bottom:799.432987pt;}
.y6d{bottom:800.033787pt;}
.y8a{bottom:800.934853pt;}
.yf7{bottom:806.491653pt;}
.ybc{bottom:810.997253pt;}
.y2c{bottom:815.352587pt;}
.y89{bottom:816.704320pt;}
.yf6{bottom:820.909387pt;}
.y2b{bottom:831.122053pt;}
.y88{bottom:832.623920pt;}
.yf5{bottom:835.176987pt;}
.y48{bottom:836.078187pt;}
.y6c{bottom:839.832720pt;}
.y6{bottom:841.184453pt;}
.ybb{bottom:842.686187pt;}
.y2a{bottom:847.041520pt;}
.y87{bottom:848.393253pt;}
.yf4{bottom:849.594720pt;}
.y6b{bottom:855.602187pt;}
.yba{bottom:858.455653pt;}
.yaf{bottom:862.810987pt;}
.yf3{bottom:864.012453pt;}
.y5{bottom:869.268987pt;}
.y47{bottom:871.521787pt;}
.yb9{bottom:874.375120pt;}
.yf2{bottom:878.430187pt;}
.yae{bottom:878.730587pt;}
.y29{bottom:883.536453pt;}
.y86{bottom:885.038320pt;}
.y46{bottom:887.291120pt;}
.yf1{bottom:892.847920pt;}
.yad{bottom:894.499920pt;}
.y4{bottom:897.503653pt;}
.y6a{bottom:903.060453pt;}
.yf0{bottom:907.265653pt;}
.yb8{bottom:910.870053pt;}
.y28{bottom:918.980053pt;}
.yef{bottom:921.533253pt;}
.yac{bottom:930.994853pt;}
.y27{bottom:934.749387pt;}
.yee{bottom:935.950987pt;}
.y2{bottom:959.529920pt;}
.h2{height:41.861045pt;}
.h9{height:48.911805pt;}
.h3{height:48.936151pt;}
.hb{height:50.250853pt;}
.h7{height:54.242467pt;}
.h6{height:58.959215pt;}
.h8{height:63.644283pt;}
.h5{height:63.675962pt;}
.h4{height:66.865911pt;}
.ha{height:70.835566pt;}
.h1{height:1053.695600pt;}
.h0{height:1056.000000pt;}
.w1{width:746.480000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:34.576013pt;}
.x3{left:106.682920pt;}
.x9{left:110.143720pt;}
.xc{left:111.197053pt;}
.x2{left:117.215853pt;}
.x7{left:118.570120pt;}
.x4{left:131.359987pt;}
.x10{left:134.971320pt;}
.x5{left:159.497853pt;}
.xf{left:209.303320pt;}
.xd{left:279.422120pt;}
.xe{left:283.033453pt;}
.xb{left:292.663453pt;}
.x8{left:321.403187pt;}
.x6{left:322.606920pt;}
.xa{left:642.655853pt;}
}




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