
    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_58e47f685f53ad5a05b371e5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.094727;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_a81f4a53e6152e00bbe53ad0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.094727;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_9b3e9d1f9aba09d3123eecff.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_685c502b8309d7431d1d84f6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084473;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_7b83cc374e1b10d1285704ce.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_108d6181cdd1174fe120302d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_09c4f950e88936b82bb5625e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9019f3abed07de97ff80ec14.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0{letter-spacing:0.000000px;}
.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:-17.144532px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-1.020568px;}
._2{width:163.310899px;}
._14{width:600.382197px;}
._e{width:686.040403px;}
._1{width:696.507739px;}
._a{width:904.890994px;}
._10{width:913.817755px;}
._11{width:1157.880199px;}
._d{width:1177.183909px;}
._c{width:1198.872388px;}
._9{width:1298.065751px;}
._13{width:1336.479813px;}
._12{width:1365.934892px;}
._f{width:1518.366537px;}
._b{width:1550.947593px;}
._6{width:1827.548185px;}
._5{width:2253.721046px;}
._3{width:2303.511086px;}
._7{width:2358.973001px;}
._8{width:2360.197610px;}
._4{width:2429.774761px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(67,67,67);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.000002px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:83.999997px;}
.fs2{font-size:96.000003px;}
.fs0{font-size:119.999997px;}
.y0{bottom:0.000000px;}
.y44{bottom:62.204408px;}
.y20{bottom:62.204498px;}
.y5b{bottom:62.204588px;}
.yee{bottom:62.205323px;}
.y43{bottom:114.581912px;}
.y1f{bottom:126.025178px;}
.yd9{bottom:135.533932px;}
.ybb{bottom:137.374511px;}
.y42{bottom:140.422481px;}
.y1e{bottom:151.865672px;}
.y7b{bottom:157.469243px;}
.yd8{bottom:161.373776px;}
.yed{bottom:161.373790px;}
.yba{bottom:163.215088px;}
.y41{bottom:166.262694px;}
.y1d{bottom:177.706057px;}
.y7a{bottom:183.309438px;}
.y9a{bottom:187.214344px;}
.yd7{bottom:187.214353px;}
.yec{bottom:187.215093px;}
.yb9{bottom:189.054932px;}
.y40{bottom:192.103268px;}
.y1c{bottom:203.546544px;}
.y79{bottom:209.150020px;}
.y108{bottom:213.054915px;}
.yeb{bottom:213.054937px;}
.yd6{bottom:213.055656px;}
.y99{bottom:213.055672px;}
.yb8{bottom:214.895515px;}
.y3f{bottom:217.943663px;}
.y1b{bottom:229.387028px;}
.y78{bottom:234.990602px;}
.y98{bottom:238.895876px;}
.y107{bottom:238.896221px;}
.yd5{bottom:238.896239px;}
.yea{bottom:238.896243px;}
.yb7{bottom:240.736088px;}
.y3e{bottom:243.784243px;}
.y1a{bottom:255.227423px;}
.y77{bottom:260.830807px;}
.y106{bottom:264.736065px;}
.y97{bottom:264.736077px;}
.yd4{bottom:264.736083px;}
.ye9{bottom:264.736088px;}
.yb6{bottom:266.576662px;}
.y3d{bottom:269.624826px;}
.y19{bottom:281.067909px;}
.y76{bottom:286.671384px;}
.y105{bottom:290.576651px;}
.yd3{bottom:290.576656px;}
.y96{bottom:290.576658px;}
.ye8{bottom:290.576663px;}
.yb5{bottom:292.417239px;}
.y3c{bottom:295.465219px;}
.y18{bottom:306.908483px;}
.y75{bottom:312.511958px;}
.y104{bottom:316.417229px;}
.yd2{bottom:316.417233px;}
.y95{bottom:316.417240px;}
.yb4{bottom:318.257813px;}
.y3b{bottom:321.305792px;}
.y17{bottom:339.494758px;}
.y103{bottom:342.257072px;}
.yd1{bottom:342.257078px;}
.ye7{bottom:342.257084px;}
.y94{bottom:342.257453px;}
.y74{bottom:346.589720px;}
.y3a{bottom:347.145997px;}
.yb3{bottom:352.335200px;}
.ye6{bottom:368.097652px;}
.yd0{bottom:368.097653px;}
.y93{bottom:368.097658px;}
.y102{bottom:368.098384px;}
.y39{bottom:372.986574px;}
.y16{bottom:390.938513px;}
.y101{bottom:393.938228px;}
.ycf{bottom:393.938231px;}
.y92{bottom:393.938235px;}
.y38{bottom:398.826968px;}
.y73{bottom:401.240482px;}
.yb2{bottom:406.986334px;}
.y15{bottom:416.778938px;}
.y91{bottom:419.779178px;}
.yce{bottom:419.779530px;}
.y100{bottom:419.779531px;}
.ye5{bottom:419.779538px;}
.y72{bottom:427.080686px;}
.yb1{bottom:432.826908px;}
.y37{bottom:437.396848px;}
.y14{bottom:442.619378px;}
.yff{bottom:445.619379px;}
.ycd{bottom:445.619391px;}
.y71{bottom:452.920890px;}
.y90{bottom:453.856939px;}
.yb0{bottom:458.666752px;}
.y5a{bottom:458.857183px;}
.y13{bottom:468.459863px;}
.yfe{bottom:471.459953px;}
.ycc{bottom:471.459964px;}
.y70{bottom:478.761836px;}
.yaf{bottom:484.507329px;}
.y12{bottom:494.300348px;}
.ycb{bottom:497.300538px;}
.y36{bottom:498.253778px;}
.y6f{bottom:504.602053px;}
.yfd{bottom:505.538089px;}
.y8f{bottom:508.507305px;}
.ye4{bottom:508.507324px;}
.yae{bottom:510.347903px;}
.y59{bottom:519.714116px;}
.y11{bottom:520.140788px;}
.yca{bottom:523.140382px;}
.y35{bottom:524.093993px;}
.y6e{bottom:530.442636px;}
.y8e{bottom:534.347891px;}
.ye3{bottom:534.347898px;}
.y58{bottom:545.554693px;}
.y10{bottom:545.981228px;}
.y34{bottom:546.563964px;}
.yc9{bottom:548.980959px;}
.yad{bottom:554.187757px;}
.y6d{bottom:556.282840px;}
.yfc{bottom:560.187750px;}
.y8d{bottom:560.188468px;}
.ye2{bottom:560.188471px;}
.y57{bottom:571.395276px;}
.yf{bottom:571.821803px;}
.y33{bottom:573.534114px;}
.yc8{bottom:574.821533px;}
.yac{bottom:580.028321px;}
.y6c{bottom:582.123783px;}
.y8c{bottom:586.028673px;}
.ye1{bottom:586.029048px;}
.yfb{bottom:586.029056px;}
.y56{bottom:597.235480px;}
.ye{bottom:597.662243px;}
.y32{bottom:600.503904px;}
.yab{bottom:605.868885px;}
.y6b{bottom:607.963991px;}
.yc7{bottom:608.899654px;}
.ye0{bottom:611.868893px;}
.y8b{bottom:611.868895px;}
.yfa{bottom:611.869633px;}
.y55{bottom:623.076062px;}
.yd{bottom:623.502683px;}
.y31{bottom:627.473874px;}
.yaa{bottom:631.710202px;}
.y6a{bottom:633.804204px;}
.y8a{bottom:637.709468px;}
.yf9{bottom:637.709477px;}
.y54{bottom:648.916631px;}
.yc{bottom:649.343123px;}
.y30{bottom:654.444024px;}
.ya9{bottom:657.550046px;}
.y69{bottom:659.644778px;}
.y89{bottom:663.550042px;}
.yc6{bottom:663.550046px;}
.ydf{bottom:663.550060px;}
.y53{bottom:674.757024px;}
.yb{bottom:675.183653px;}
.y2f{bottom:681.413814px;}
.ya8{bottom:683.390610px;}
.yf8{bottom:689.389904px;}
.yc5{bottom:689.390610px;}
.y88{bottom:689.390619px;}
.yde{bottom:689.390633px;}
.y68{bottom:689.985353px;}
.y52{bottom:700.597418px;}
.ya{bottom:701.024093px;}
.y2e{bottom:708.383784px;}
.ya7{bottom:709.231196px;}
.y87{bottom:715.231193px;}
.yc4{bottom:715.231196px;}
.ydd{bottom:715.231207px;}
.y67{bottom:720.325926px;}
.y51{bottom:726.437993px;}
.y9{bottom:726.864533px;}
.ya6{bottom:735.071035px;}
.y2d{bottom:735.353949px;}
.yf7{bottom:741.071051px;}
.yc3{bottom:741.071773px;}
.ydc{bottom:741.071784px;}
.y66{bottom:746.166130px;}
.y86{bottom:749.309330px;}
.y50{bottom:752.278562px;}
.y8{bottom:752.705018px;}
.ya5{bottom:760.911617px;}
.y2c{bottom:762.323724px;}
.yc2{bottom:766.912356px;}
.ydb{bottom:766.912358px;}
.y65{bottom:772.006712px;}
.y4f{bottom:778.118763px;}
.y7{bottom:782.274763px;}
.ya4{bottom:786.752200px;}
.y2b{bottom:789.293694px;}
.yda{bottom:792.752198px;}
.yc1{bottom:792.752200px;}
.yf6{bottom:792.752933px;}
.y64{bottom:797.847281px;}
.y4e{bottom:803.959344px;}
.y85{bottom:803.959717px;}
.ya3{bottom:812.593503px;}
.y2a{bottom:816.263859px;}
.yc0{bottom:818.592773px;}
.y63{bottom:823.687494px;}
.y84{bottom:829.799921px;}
.y4d{bottom:829.799926px;}
.ya2{bottom:838.433347px;}
.y6{bottom:843.131633px;}
.y29{bottom:843.233739px;}
.ybf{bottom:844.433347px;}
.yf5{bottom:844.433356px;}
.y62{bottom:849.528068px;}
.y83{bottom:855.640125px;}
.y4c{bottom:855.640319px;}
.ya1{bottom:864.273924px;}
.y5{bottom:868.972088px;}
.y28{bottom:870.203619px;}
.ybe{bottom:870.273191px;}
.yf4{bottom:870.273200px;}
.y82{bottom:881.480711px;}
.y4b{bottom:881.480713px;}
.y61{bottom:883.606204px;}
.ya0{bottom:890.114498px;}
.ybd{bottom:896.114498px;}
.yf3{bottom:896.114503px;}
.y27{bottom:897.173769px;}
.y4{bottom:898.541842px;}
.y4a{bottom:907.321106px;}
.y81{bottom:907.321288px;}
.yf2{bottom:921.954346px;}
.y26{bottom:924.143646px;}
.ybc{bottom:930.191895px;}
.y80{bottom:933.161493px;}
.y49{bottom:933.161864px;}
.y9f{bottom:933.954348px;}
.y60{bottom:938.256597px;}
.yf1{bottom:947.795654px;}
.y25{bottom:951.113526px;}
.y7f{bottom:959.001715px;}
.y48{bottom:959.002075px;}
.y3{bottom:959.398681px;}
.y9e{bottom:959.794922px;}
.y5f{bottom:964.097167px;}
.y24{bottom:978.083679px;}
.yf0{bottom:981.873046px;}
.y47{bottom:984.842657px;}
.y7e{bottom:984.843018px;}
.y9d{bottom:985.635499px;}
.y5e{bottom:989.937380px;}
.y2{bottom:1000.951901px;}
.y23{bottom:1005.053559px;}
.y46{bottom:1010.682862px;}
.y7d{bottom:1010.683226px;}
.y9c{bottom:1011.476073px;}
.y5d{bottom:1015.777954px;}
.y22{bottom:1032.023438px;}
.yef{bottom:1036.522706px;}
.y7c{bottom:1036.523439px;}
.y45{bottom:1036.523619px;}
.y1{bottom:1047.934571px;}
.y5c{bottom:1054.347655px;}
.y9b{bottom:1057.554200px;}
.y21{bottom:1062.364013px;}
.h6{height:55.719728px;}
.h2{height:56.364259px;}
.h4{height:61.488281px;}
.h7{height:71.736326px;}
.h3{height:81.984378px;}
.h1{height:102.480466px;}
.h5{height:108.000000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x2{left:135.000000px;}
.x3{left:162.000000px;}
.x4{left:282.375000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-15.239584pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-0.907171pt;}
._2{width:145.165243pt;}
._14{width:533.673064pt;}
._e{width:609.813692pt;}
._1{width:619.117990pt;}
._a{width:804.347550pt;}
._10{width:812.282449pt;}
._11{width:1029.226843pt;}
._d{width:1046.385697pt;}
._c{width:1065.664345pt;}
._9{width:1153.836223pt;}
._13{width:1187.982056pt;}
._12{width:1214.164349pt;}
._f{width:1349.659144pt;}
._b{width:1378.620082pt;}
._6{width:1624.487276pt;}
._5{width:2003.307596pt;}
._3{width:2047.565409pt;}
._7{width:2096.864890pt;}
._8{width:2097.953431pt;}
._4{width:2159.799787pt;}
.fs1{font-size:58.666668pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:74.666664pt;}
.fs2{font-size:85.333336pt;}
.fs0{font-size:106.666664pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:55.292807pt;}
.y20{bottom:55.292887pt;}
.y5b{bottom:55.292967pt;}
.yee{bottom:55.293621pt;}
.y43{bottom:101.850588pt;}
.y1f{bottom:112.022381pt;}
.yd9{bottom:120.474607pt;}
.ybb{bottom:122.110677pt;}
.y42{bottom:124.819983pt;}
.y1e{bottom:134.991708pt;}
.y7b{bottom:139.972661pt;}
.yd8{bottom:143.443357pt;}
.yed{bottom:143.443369pt;}
.yba{bottom:145.080079pt;}
.y41{bottom:147.789061pt;}
.y1d{bottom:157.960939pt;}
.y7a{bottom:162.941723pt;}
.y9a{bottom:166.412750pt;}
.yd7{bottom:166.412759pt;}
.yec{bottom:166.413416pt;}
.yb9{bottom:168.048829pt;}
.y40{bottom:170.758461pt;}
.y1c{bottom:180.930261pt;}
.y79{bottom:185.911129pt;}
.y108{bottom:189.382147pt;}
.yeb{bottom:189.382166pt;}
.yd6{bottom:189.382806pt;}
.y99{bottom:189.382820pt;}
.yb8{bottom:191.018236pt;}
.y3f{bottom:193.727701pt;}
.y1b{bottom:203.899581pt;}
.y78{bottom:208.880535pt;}
.y98{bottom:212.351890pt;}
.y107{bottom:212.352197pt;}
.yd5{bottom:212.352213pt;}
.yea{bottom:212.352216pt;}
.yb7{bottom:213.987634pt;}
.y3e{bottom:216.697105pt;}
.y1a{bottom:226.868821pt;}
.y77{bottom:231.849606pt;}
.y106{bottom:235.320947pt;}
.y97{bottom:235.320957pt;}
.yd4{bottom:235.320963pt;}
.ye9{bottom:235.320967pt;}
.yb6{bottom:236.957033pt;}
.y3d{bottom:239.666512pt;}
.y19{bottom:249.838141pt;}
.y76{bottom:254.819008pt;}
.y105{bottom:258.290357pt;}
.yd3{bottom:258.290361pt;}
.y96{bottom:258.290363pt;}
.ye8{bottom:258.290367pt;}
.yb5{bottom:259.926435pt;}
.y3c{bottom:262.635750pt;}
.y18{bottom:272.807541pt;}
.y75{bottom:277.788407pt;}
.y104{bottom:281.259759pt;}
.yd2{bottom:281.259763pt;}
.y95{bottom:281.259769pt;}
.yb4{bottom:282.895834pt;}
.y3b{bottom:285.605148pt;}
.y17{bottom:301.773118pt;}
.y103{bottom:304.228509pt;}
.yd1{bottom:304.228514pt;}
.ye7{bottom:304.228519pt;}
.y94{bottom:304.228847pt;}
.y74{bottom:308.079751pt;}
.y3a{bottom:308.574219pt;}
.yb3{bottom:313.186844pt;}
.ye6{bottom:327.197913pt;}
.yd0{bottom:327.197914pt;}
.y93{bottom:327.197918pt;}
.y102{bottom:327.198564pt;}
.y39{bottom:331.543621pt;}
.y16{bottom:347.500901pt;}
.y101{bottom:350.167314pt;}
.ycf{bottom:350.167317pt;}
.y92{bottom:350.167320pt;}
.y38{bottom:354.512861pt;}
.y73{bottom:356.658207pt;}
.yb2{bottom:361.765630pt;}
.y15{bottom:370.470167pt;}
.y91{bottom:373.137047pt;}
.yce{bottom:373.137360pt;}
.y100{bottom:373.137361pt;}
.ye5{bottom:373.137367pt;}
.y72{bottom:379.627277pt;}
.yb1{bottom:384.735029pt;}
.y37{bottom:388.797198pt;}
.y14{bottom:393.439447pt;}
.yff{bottom:396.106115pt;}
.ycd{bottom:396.106126pt;}
.y71{bottom:402.596347pt;}
.y90{bottom:403.428391pt;}
.yb0{bottom:407.703779pt;}
.y5a{bottom:407.873051pt;}
.y13{bottom:416.408767pt;}
.yfe{bottom:419.075514pt;}
.ycc{bottom:419.075524pt;}
.y70{bottom:425.566077pt;}
.yaf{bottom:430.673181pt;}
.y12{bottom:439.378087pt;}
.ycb{bottom:442.044923pt;}
.y36{bottom:442.892247pt;}
.y6f{bottom:448.535159pt;}
.yfd{bottom:449.367191pt;}
.y8f{bottom:452.006493pt;}
.ye4{bottom:452.006510pt;}
.yae{bottom:453.642581pt;}
.y59{bottom:461.968103pt;}
.y11{bottom:462.347367pt;}
.yca{bottom:465.013673pt;}
.y35{bottom:465.861327pt;}
.y6e{bottom:471.504566pt;}
.y8e{bottom:474.975903pt;}
.ye3{bottom:474.975909pt;}
.y58{bottom:484.937505pt;}
.y10{bottom:485.316647pt;}
.y34{bottom:485.834635pt;}
.yc9{bottom:487.983075pt;}
.yad{bottom:492.611340pt;}
.y6d{bottom:494.473636pt;}
.yfc{bottom:497.944667pt;}
.y8d{bottom:497.945305pt;}
.ye2{bottom:497.945307pt;}
.y57{bottom:507.906912pt;}
.yf{bottom:508.286047pt;}
.y33{bottom:509.808102pt;}
.yc8{bottom:510.952474pt;}
.yac{bottom:515.580730pt;}
.y6c{bottom:517.443363pt;}
.y8c{bottom:520.914376pt;}
.ye1{bottom:520.914709pt;}
.yfb{bottom:520.914717pt;}
.y56{bottom:530.875982pt;}
.ye{bottom:531.255327pt;}
.y32{bottom:533.781248pt;}
.yab{bottom:538.550120pt;}
.y6b{bottom:540.412437pt;}
.yc7{bottom:541.244137pt;}
.ye0{bottom:543.883461pt;}
.y8b{bottom:543.883462pt;}
.yfa{bottom:543.884119pt;}
.y55{bottom:553.845388pt;}
.yd{bottom:554.224607pt;}
.y31{bottom:557.754555pt;}
.yaa{bottom:561.520180pt;}
.y6a{bottom:563.381515pt;}
.y8a{bottom:566.852860pt;}
.yf9{bottom:566.852869pt;}
.y54{bottom:576.814783pt;}
.yc{bottom:577.193887pt;}
.y30{bottom:581.728022pt;}
.ya9{bottom:584.488930pt;}
.y69{bottom:586.350914pt;}
.y89{bottom:589.822259pt;}
.yc6{bottom:589.822263pt;}
.ydf{bottom:589.822276pt;}
.y53{bottom:599.784021pt;}
.yb{bottom:600.163247pt;}
.y2f{bottom:605.701168pt;}
.ya8{bottom:607.458320pt;}
.yf8{bottom:612.791026pt;}
.yc5{bottom:612.791653pt;}
.y88{bottom:612.791661pt;}
.yde{bottom:612.791674pt;}
.y68{bottom:613.320314pt;}
.y52{bottom:622.753261pt;}
.ya{bottom:623.132527pt;}
.y2e{bottom:629.674475pt;}
.ya7{bottom:630.427730pt;}
.y87{bottom:635.761061pt;}
.yc4{bottom:635.761063pt;}
.ydd{bottom:635.761073pt;}
.y67{bottom:640.289712pt;}
.y51{bottom:645.722661pt;}
.y9{bottom:646.101807pt;}
.ya6{bottom:653.396476pt;}
.y2d{bottom:653.647955pt;}
.yf7{bottom:658.729823pt;}
.yc3{bottom:658.730465pt;}
.ydc{bottom:658.730475pt;}
.y66{bottom:663.258782pt;}
.y86{bottom:666.052737pt;}
.y50{bottom:668.692055pt;}
.y8{bottom:669.071127pt;}
.ya5{bottom:676.365882pt;}
.y2c{bottom:677.621088pt;}
.yc2{bottom:681.699872pt;}
.ydb{bottom:681.699874pt;}
.y65{bottom:686.228188pt;}
.y4f{bottom:691.661122pt;}
.y7{bottom:695.355345pt;}
.ya4{bottom:699.335289pt;}
.y2b{bottom:701.594395pt;}
.yda{bottom:704.668621pt;}
.yc1{bottom:704.668622pt;}
.yf6{bottom:704.669274pt;}
.y64{bottom:709.197583pt;}
.y4e{bottom:714.630528pt;}
.y85{bottom:714.630860pt;}
.ya3{bottom:722.305336pt;}
.y2a{bottom:725.567875pt;}
.yc0{bottom:727.638020pt;}
.y63{bottom:732.166661pt;}
.y84{bottom:737.599930pt;}
.y4d{bottom:737.599934pt;}
.ya2{bottom:745.274086pt;}
.y6{bottom:749.450341pt;}
.y29{bottom:749.541102pt;}
.ybf{bottom:750.607419pt;}
.yf5{bottom:750.607428pt;}
.y62{bottom:755.136061pt;}
.y83{bottom:760.569000pt;}
.y4c{bottom:760.569172pt;}
.ya1{bottom:768.243488pt;}
.y5{bottom:772.419634pt;}
.y28{bottom:773.514328pt;}
.ybe{bottom:773.576169pt;}
.yf4{bottom:773.576178pt;}
.y82{bottom:783.538410pt;}
.y4b{bottom:783.538411pt;}
.y61{bottom:785.427737pt;}
.ya0{bottom:791.212887pt;}
.ybd{bottom:796.546221pt;}
.yf3{bottom:796.546225pt;}
.y27{bottom:797.487795pt;}
.y4{bottom:798.703859pt;}
.y4a{bottom:806.507649pt;}
.y81{bottom:806.507812pt;}
.yf2{bottom:819.514975pt;}
.y26{bottom:821.461019pt;}
.ybc{bottom:826.837240pt;}
.y80{bottom:829.476883pt;}
.y49{bottom:829.477213pt;}
.y9f{bottom:830.181643pt;}
.y60{bottom:834.005864pt;}
.yf1{bottom:842.485026pt;}
.y25{bottom:845.434246pt;}
.y7f{bottom:852.445969pt;}
.y48{bottom:852.446289pt;}
.y3{bottom:852.798827pt;}
.y9e{bottom:853.151042pt;}
.y5f{bottom:856.975259pt;}
.y24{bottom:869.407715pt;}
.yf0{bottom:872.776041pt;}
.y47{bottom:875.415695pt;}
.y7e{bottom:875.416016pt;}
.y9d{bottom:876.120444pt;}
.y5e{bottom:879.944337pt;}
.y2{bottom:889.735023pt;}
.y23{bottom:893.380942pt;}
.y46{bottom:898.384766pt;}
.y7d{bottom:898.385090pt;}
.y9c{bottom:899.089843pt;}
.y5d{bottom:902.913737pt;}
.y22{bottom:917.354167pt;}
.yef{bottom:921.353516pt;}
.y7c{bottom:921.354168pt;}
.y45{bottom:921.354328pt;}
.y1{bottom:931.497396pt;}
.y5c{bottom:937.197916pt;}
.y9b{bottom:940.048178pt;}
.y21{bottom:944.323567pt;}
.h6{height:49.528647pt;}
.h2{height:50.101564pt;}
.h4{height:54.656250pt;}
.h7{height:63.765623pt;}
.h3{height:72.875002pt;}
.h1{height:91.093748pt;}
.h5{height:96.000000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x2{left:120.000000pt;}
.x3{left:144.000000pt;}
.x4{left:251.000000pt;}
}




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