
    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_95ddb4bb37d786963cd18de7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_45269839fcf3deacf69b136d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.113281;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_e32540ac0f2912ea243b590d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_16839bd5d260a3620d8082ee.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_cbc8717b902a714f6b140240.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_b8468b994dd8804f0b75b645.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.874023;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m2{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);}
.v1{vertical-align:-21.978000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.005232px;}
.ls1{letter-spacing:0.005832px;}
.ls3{letter-spacing:1.518000px;}
.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;}
}
.ws6{word-spacing:-19.866000px;}
.ws0{word-spacing:-18.348000px;}
.ws3{word-spacing:-13.344000px;}
.ws5{word-spacing:-1.188000px;}
.ws4{word-spacing:-0.066000px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:17.622000px;}
._21{margin-left:-19.322400px;}
._13{margin-left:-18.135000px;}
._1b{margin-left:-8.575800px;}
._0{margin-left:-7.409775px;}
._3{margin-left:-6.375600px;}
._1{margin-left:-4.302000px;}
._4{margin-left:-3.032400px;}
._2{margin-left:-1.503600px;}
._6{width:1.115400px;}
._b{width:2.877600px;}
._d{width:4.395600px;}
._16{width:5.425200px;}
._e{width:6.468000px;}
._9{width:7.583400px;}
._a{width:9.167400px;}
._f{width:10.507200px;}
._10{width:11.939400px;}
._c{width:13.358400px;}
._8{width:15.114000px;}
._17{width:16.249200px;}
._7{width:17.285400px;}
._14{width:19.872600px;}
._15{width:20.880600px;}
._11{width:22.426800px;}
._18{width:23.700600px;}
._5{width:25.020600px;}
._1a{width:26.793975px;}
._19{width:28.208400px;}
._1c{width:29.583600px;}
._12{width:30.709800px;}
._1f{width:44.919600px;}
._1d{width:46.252800px;}
._1e{width:53.466600px;}
._20{width:149.297400px;}
.fc4{color:transparent;}
.fc5{color:rgb(0,0,0);}
.fc3{color:rgb(34,34,34);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:38.478000px;}
.fs5{font-size:48.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs1{font-size:199.724400px;}
.y0{bottom:0.000000px;}
.y6f{bottom:79.377900px;}
.y2{bottom:85.039350px;}
.y9f{bottom:86.225700px;}
.ydf{bottom:87.956100px;}
.y53{bottom:88.539600px;}
.y30{bottom:92.731350px;}
.y6e{bottom:94.377900px;}
.yc0{bottom:96.096750px;}
.y10b{bottom:102.460050px;}
.y125{bottom:102.465900px;}
.y9e{bottom:104.975700px;}
.yde{bottom:106.706100px;}
.y52{bottom:107.289600px;}
.y2f{bottom:111.481350px;}
.ybf{bottom:114.846750px;}
.y10a{bottom:121.210050px;}
.y124{bottom:121.215900px;}
.ydd{bottom:125.456100px;}
.y51{bottom:126.039600px;}
.y9d{bottom:127.977750px;}
.y2e{bottom:130.231350px;}
.ybe{bottom:133.596750px;}
.y109{bottom:139.960050px;}
.y123{bottom:139.965900px;}
.ydc{bottom:144.206100px;}
.y50{bottom:144.789600px;}
.y9c{bottom:146.727750px;}
.ybd{bottom:152.346750px;}
.y108{bottom:158.710050px;}
.y2d{bottom:161.737200px;}
.ydb{bottom:162.956100px;}
.y122{bottom:162.967950px;}
.y4f{bottom:163.539600px;}
.y9b{bottom:165.477750px;}
.ybc{bottom:171.096750px;}
.y107{bottom:177.460050px;}
.yda{bottom:181.706100px;}
.y121{bottom:181.717950px;}
.y4e{bottom:182.289600px;}
.y9a{bottom:184.227750px;}
.ybb{bottom:189.846750px;}
.y2c{bottom:192.989250px;}
.yd9{bottom:200.456100px;}
.y106{bottom:200.462100px;}
.y120{bottom:200.467950px;}
.y99{bottom:202.977750px;}
.yba{bottom:208.596750px;}
.y2b{bottom:211.739250px;}
.y4d{bottom:213.795450px;}
.y105{bottom:219.212100px;}
.y11f{bottom:219.217950px;}
.y98{bottom:221.727750px;}
.yb9{bottom:227.346750px;}
.y2a{bottom:230.489250px;}
.yd8{bottom:231.962100px;}
.y104{bottom:237.962100px;}
.y11e{bottom:237.967950px;}
.y97{bottom:240.477750px;}
.yb8{bottom:246.096750px;}
.y4c{bottom:247.049400px;}
.y29{bottom:253.491150px;}
.y103{bottom:256.712100px;}
.y96{bottom:259.227750px;}
.y11d{bottom:260.969850px;}
.yb7{bottom:269.098650px;}
.yd7{bottom:269.467950px;}
.y28{bottom:272.241150px;}
.y102{bottom:275.462100px;}
.y95{bottom:277.977750px;}
.y11c{bottom:279.719850px;}
.yb6{bottom:287.848650px;}
.yd6{bottom:288.217950px;}
.y27{bottom:290.991150px;}
.y94{bottom:296.727750px;}
.y11b{bottom:298.469850px;}
.y4b{bottom:299.857650px;}
.yb5{bottom:306.598650px;}
.yd5{bottom:306.967950px;}
.y26{bottom:309.741150px;}
.y93{bottom:315.477750px;}
.y11a{bottom:317.219850px;}
.y4a{bottom:318.607650px;}
.yb4{bottom:325.348650px;}
.yd4{bottom:325.717950px;}
.y25{bottom:328.491150px;}
.y92{bottom:334.227750px;}
.y119{bottom:335.969850px;}
.y49{bottom:337.357650px;}
.yb3{bottom:344.098650px;}
.yd3{bottom:344.467950px;}
.y101{bottom:344.473800px;}
.y24{bottom:347.241150px;}
.y91{bottom:352.977750px;}
.y118{bottom:354.719850px;}
.y48{bottom:360.359550px;}
.yb2{bottom:362.848650px;}
.yd2{bottom:363.217950px;}
.y100{bottom:363.223800px;}
.y23{bottom:365.991150px;}
.y90{bottom:371.727750px;}
.y117{bottom:377.721900px;}
.y47{bottom:379.109550px;}
.yb1{bottom:381.598650px;}
.yd1{bottom:381.967950px;}
.yff{bottom:381.973800px;}
.y22{bottom:384.741150px;}
.y6d{bottom:387.613350px;}
.y8f{bottom:390.477750px;}
.y116{bottom:396.471900px;}
.y46{bottom:397.859550px;}
.yb0{bottom:400.348650px;}
.yd0{bottom:400.717950px;}
.yfe{bottom:400.723800px;}
.y21{bottom:403.491150px;}
.y6c{bottom:409.865400px;}
.y8e{bottom:413.479650px;}
.y115{bottom:415.221900px;}
.y45{bottom:416.609550px;}
.yaf{bottom:419.098650px;}
.yfd{bottom:419.473800px;}
.y20{bottom:422.241150px;}
.ycf{bottom:423.719850px;}
.y6b{bottom:428.615400px;}
.y8d{bottom:432.229650px;}
.y114{bottom:433.971900px;}
.y44{bottom:435.359550px;}
.yae{bottom:437.848650px;}
.yfc{bottom:438.223800px;}
.y1f{bottom:440.991150px;}
.yce{bottom:442.469850px;}
.y6a{bottom:447.365400px;}
.y8c{bottom:450.979650px;}
.y113{bottom:452.721900px;}
.y43{bottom:454.109550px;}
.yad{bottom:456.598650px;}
.yfb{bottom:456.973800px;}
.y1e{bottom:459.741150px;}
.ycd{bottom:461.219850px;}
.y69{bottom:466.115400px;}
.y8b{bottom:469.729650px;}
.y112{bottom:471.471900px;}
.y42{bottom:472.859550px;}
.yac{bottom:475.348650px;}
.yfa{bottom:475.723800px;}
.y1d{bottom:478.491150px;}
.ycc{bottom:479.969850px;}
.y68{bottom:484.865400px;}
.y8a{bottom:488.479650px;}
.y41{bottom:491.609550px;}
.yab{bottom:494.098650px;}
.yf9{bottom:494.473800px;}
.y1c{bottom:497.241150px;}
.ycb{bottom:498.719850px;}
.y67{bottom:503.615400px;}
.y89{bottom:507.229650px;}
.y40{bottom:510.359550px;}
.yaa{bottom:512.848650px;}
.yf8{bottom:513.223800px;}
.y1b{bottom:515.991150px;}
.yca{bottom:517.469850px;}
.y66{bottom:522.365400px;}
.y88{bottom:525.979650px;}
.y3f{bottom:529.109550px;}
.ya9{bottom:531.598650px;}
.yf7{bottom:531.973800px;}
.y1a{bottom:534.741150px;}
.yc9{bottom:536.219850px;}
.y65{bottom:541.115400px;}
.y87{bottom:544.729650px;}
.y3e{bottom:547.859550px;}
.ya8{bottom:550.348650px;}
.y111{bottom:550.723800px;}
.y19{bottom:553.491150px;}
.yc8{bottom:554.969850px;}
.yf6{bottom:554.975850px;}
.y64{bottom:559.865400px;}
.y86{bottom:563.479650px;}
.y3d{bottom:566.609550px;}
.ya7{bottom:569.098650px;}
.y110{bottom:569.473800px;}
.y18{bottom:572.241150px;}
.yc7{bottom:573.719850px;}
.yf5{bottom:573.725850px;}
.y63{bottom:578.615400px;}
.y85{bottom:582.229650px;}
.y3c{bottom:585.359550px;}
.ya6{bottom:587.848650px;}
.y10f{bottom:588.223800px;}
.y17{bottom:590.991150px;}
.yc6{bottom:592.469850px;}
.yf4{bottom:592.475850px;}
.y62{bottom:597.365400px;}
.y84{bottom:600.979650px;}
.y3b{bottom:604.109550px;}
.ya5{bottom:606.598650px;}
.y16{bottom:609.741150px;}
.yc5{bottom:611.219850px;}
.yf3{bottom:611.225850px;}
.y61{bottom:616.115400px;}
.y83{bottom:619.729650px;}
.y3a{bottom:622.859550px;}
.ya4{bottom:625.348650px;}
.y15{bottom:628.491150px;}
.yc4{bottom:629.969850px;}
.yf2{bottom:629.975850px;}
.y60{bottom:634.865400px;}
.y82{bottom:638.479650px;}
.y39{bottom:641.609550px;}
.ya3{bottom:644.098650px;}
.y14{bottom:647.241150px;}
.yc3{bottom:648.719850px;}
.yf1{bottom:648.725850px;}
.y5f{bottom:653.615400px;}
.y81{bottom:657.229650px;}
.y38{bottom:660.359550px;}
.y13{bottom:665.991150px;}
.yc2{bottom:667.469850px;}
.yf0{bottom:667.475850px;}
.y5e{bottom:672.365400px;}
.ya2{bottom:674.848650px;}
.y80{bottom:675.979650px;}
.y37{bottom:679.109550px;}
.y12{bottom:684.741150px;}
.yef{bottom:686.225850px;}
.y5d{bottom:691.115250px;}
.y7f{bottom:694.729650px;}
.y36{bottom:697.859550px;}
.yc1{bottom:698.975850px;}
.y11{bottom:703.491150px;}
.yee{bottom:704.975850px;}
.y5c{bottom:709.865250px;}
.y35{bottom:716.609550px;}
.y7e{bottom:717.731700px;}
.y10{bottom:722.241150px;}
.y10e{bottom:723.725850px;}
.yed{bottom:727.977750px;}
.y5b{bottom:728.615250px;}
.y34{bottom:735.359550px;}
.y7d{bottom:736.481700px;}
.yf{bottom:740.991150px;}
.y12d{bottom:742.475850px;}
.yec{bottom:746.727750px;}
.y33{bottom:754.109550px;}
.y7c{bottom:755.231700px;}
.ye{bottom:759.741150px;}
.y12c{bottom:761.225850px;}
.y5a{bottom:762.365250px;}
.yeb{bottom:765.477750px;}
.y32{bottom:772.859550px;}
.y7b{bottom:773.981700px;}
.y12b{bottom:779.975850px;}
.yea{bottom:784.227750px;}
.yd{bottom:791.247000px;}
.y31{bottom:791.609550px;}
.y7a{bottom:792.731700px;}
.y12a{bottom:798.725850px;}
.ye9{bottom:802.977750px;}
.y79{bottom:811.481700px;}
.y10d{bottom:821.727750px;}
.ye8{bottom:825.979650px;}
.ya1{bottom:827.479650px;}
.yc{bottom:829.176000px;}
.y78{bottom:830.231700px;}
.y10c{bottom:840.477750px;}
.ye7{bottom:844.729650px;}
.ya0{bottom:845.479650px;}
.yb{bottom:847.176000px;}
.y77{bottom:848.981700px;}
.y129{bottom:859.227750px;}
.ye6{bottom:863.479650px;}
.ya{bottom:865.176000px;}
.y76{bottom:867.731700px;}
.y128{bottom:877.977750px;}
.ye5{bottom:882.229650px;}
.y9{bottom:883.176000px;}
.y75{bottom:886.481700px;}
.y127{bottom:896.727750px;}
.ye4{bottom:900.979650px;}
.y74{bottom:905.231700px;}
.ye3{bottom:919.729650px;}
.y8{bottom:923.428050px;}
.y73{bottom:923.981700px;}
.ye2{bottom:938.479650px;}
.y72{bottom:942.731700px;}
.ye1{bottom:957.229650px;}
.y7{bottom:959.428050px;}
.y71{bottom:961.481700px;}
.ye0{bottom:975.979650px;}
.y59{bottom:976.729650px;}
.y70{bottom:980.231700px;}
.y6{bottom:992.428050px;}
.y126{bottom:994.729650px;}
.y58{bottom:998.981700px;}
.y57{bottom:1017.731700px;}
.y5{bottom:1023.323700px;}
.y56{bottom:1036.481700px;}
.y4{bottom:1039.823700px;}
.y55{bottom:1055.231700px;}
.y3{bottom:1056.323700px;}
.y1{bottom:1108.294050px;}
.y54{bottom:1109.357100px;}
.hc{height:43.335938px;}
.h5{height:43.681641px;}
.h8{height:43.740234px;}
.hd{height:43.989258px;}
.hb{height:48.049805px;}
.ha{height:48.114258px;}
.h4{height:54.169922px;}
.h9{height:59.586914px;}
.h2{height:61.154297px;}
.h7{height:65.003906px;}
.h6{height:75.837891px;}
.h3{height:180.317586px;}
.h1{height:1194.750000px;}
.h0{height:1194.802500px;}
.w1{width:935.250000px;}
.w0{width:935.433000px;}
.x0{left:0.000000px;}
.xf{left:85.039350px;}
.x6{left:88.137450px;}
.x16{left:98.539350px;}
.xe{left:106.299150px;}
.x14{left:111.027150px;}
.x12{left:139.774650px;}
.x15{left:171.049050px;}
.x13{left:210.190500px;}
.x8{left:226.584150px;}
.xd{left:230.623950px;}
.xa{left:311.798550px;}
.xb{left:365.151750px;}
.xc{left:376.313850px;}
.x9{left:382.699950px;}
.x7{left:399.261450px;}
.x10{left:476.716500px;}
.x17{left:490.216500px;}
.x11{left:497.976300px;}
.x4{left:508.762800px;}
.x5{left:548.994750px;}
.x3{left:775.393650px;}
.x1{left:827.035350px;}
.x2{left:907.927500px;}
@media print{
.v1{vertical-align:-19.536000pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.004651pt;}
.ls1{letter-spacing:0.005184pt;}
.ls3{letter-spacing:1.349333pt;}
.ws6{word-spacing:-17.658667pt;}
.ws0{word-spacing:-16.309333pt;}
.ws3{word-spacing:-11.861333pt;}
.ws5{word-spacing:-1.056000pt;}
.ws4{word-spacing:-0.058667pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:15.664000pt;}
._21{margin-left:-17.175467pt;}
._13{margin-left:-16.120000pt;}
._1b{margin-left:-7.622933pt;}
._0{margin-left:-6.586467pt;}
._3{margin-left:-5.667200pt;}
._1{margin-left:-3.824000pt;}
._4{margin-left:-2.695467pt;}
._2{margin-left:-1.336533pt;}
._6{width:0.991467pt;}
._b{width:2.557867pt;}
._d{width:3.907200pt;}
._16{width:4.822400pt;}
._e{width:5.749333pt;}
._9{width:6.740800pt;}
._a{width:8.148800pt;}
._f{width:9.339733pt;}
._10{width:10.612800pt;}
._c{width:11.874133pt;}
._8{width:13.434667pt;}
._17{width:14.443733pt;}
._7{width:15.364800pt;}
._14{width:17.664533pt;}
._15{width:18.560533pt;}
._11{width:19.934933pt;}
._18{width:21.067200pt;}
._5{width:22.240533pt;}
._1a{width:23.816867pt;}
._19{width:25.074133pt;}
._1c{width:26.296533pt;}
._12{width:27.297600pt;}
._1f{width:39.928533pt;}
._1d{width:41.113600pt;}
._1e{width:47.525867pt;}
._20{width:132.708800pt;}
.fs6{font-size:34.202667pt;}
.fs5{font-size:42.666667pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs1{font-size:177.532800pt;}
.y0{bottom:0.000000pt;}
.y6f{bottom:70.558133pt;}
.y2{bottom:75.590533pt;}
.y9f{bottom:76.645067pt;}
.ydf{bottom:78.183200pt;}
.y53{bottom:78.701867pt;}
.y30{bottom:82.427867pt;}
.y6e{bottom:83.891467pt;}
.yc0{bottom:85.419333pt;}
.y10b{bottom:91.075600pt;}
.y125{bottom:91.080800pt;}
.y9e{bottom:93.311733pt;}
.yde{bottom:94.849867pt;}
.y52{bottom:95.368533pt;}
.y2f{bottom:99.094533pt;}
.ybf{bottom:102.086000pt;}
.y10a{bottom:107.742267pt;}
.y124{bottom:107.747467pt;}
.ydd{bottom:111.516533pt;}
.y51{bottom:112.035200pt;}
.y9d{bottom:113.758000pt;}
.y2e{bottom:115.761200pt;}
.ybe{bottom:118.752667pt;}
.y109{bottom:124.408933pt;}
.y123{bottom:124.414133pt;}
.ydc{bottom:128.183200pt;}
.y50{bottom:128.701867pt;}
.y9c{bottom:130.424667pt;}
.ybd{bottom:135.419333pt;}
.y108{bottom:141.075600pt;}
.y2d{bottom:143.766400pt;}
.ydb{bottom:144.849867pt;}
.y122{bottom:144.860400pt;}
.y4f{bottom:145.368533pt;}
.y9b{bottom:147.091333pt;}
.ybc{bottom:152.086000pt;}
.y107{bottom:157.742267pt;}
.yda{bottom:161.516533pt;}
.y121{bottom:161.527067pt;}
.y4e{bottom:162.035200pt;}
.y9a{bottom:163.758000pt;}
.ybb{bottom:168.752667pt;}
.y2c{bottom:171.546000pt;}
.yd9{bottom:178.183200pt;}
.y106{bottom:178.188533pt;}
.y120{bottom:178.193733pt;}
.y99{bottom:180.424667pt;}
.yba{bottom:185.419333pt;}
.y2b{bottom:188.212667pt;}
.y4d{bottom:190.040400pt;}
.y105{bottom:194.855200pt;}
.y11f{bottom:194.860400pt;}
.y98{bottom:197.091333pt;}
.yb9{bottom:202.086000pt;}
.y2a{bottom:204.879333pt;}
.yd8{bottom:206.188533pt;}
.y104{bottom:211.521867pt;}
.y11e{bottom:211.527067pt;}
.y97{bottom:213.758000pt;}
.yb8{bottom:218.752667pt;}
.y4c{bottom:219.599467pt;}
.y29{bottom:225.325467pt;}
.y103{bottom:228.188533pt;}
.y96{bottom:230.424667pt;}
.y11d{bottom:231.973200pt;}
.yb7{bottom:239.198800pt;}
.yd7{bottom:239.527067pt;}
.y28{bottom:241.992133pt;}
.y102{bottom:244.855200pt;}
.y95{bottom:247.091333pt;}
.y11c{bottom:248.639867pt;}
.yb6{bottom:255.865467pt;}
.yd6{bottom:256.193733pt;}
.y27{bottom:258.658800pt;}
.y94{bottom:263.758000pt;}
.y11b{bottom:265.306533pt;}
.y4b{bottom:266.540133pt;}
.yb5{bottom:272.532133pt;}
.yd5{bottom:272.860400pt;}
.y26{bottom:275.325467pt;}
.y93{bottom:280.424667pt;}
.y11a{bottom:281.973200pt;}
.y4a{bottom:283.206800pt;}
.yb4{bottom:289.198800pt;}
.yd4{bottom:289.527067pt;}
.y25{bottom:291.992133pt;}
.y92{bottom:297.091333pt;}
.y119{bottom:298.639867pt;}
.y49{bottom:299.873467pt;}
.yb3{bottom:305.865467pt;}
.yd3{bottom:306.193733pt;}
.y101{bottom:306.198933pt;}
.y24{bottom:308.658800pt;}
.y91{bottom:313.758000pt;}
.y118{bottom:315.306533pt;}
.y48{bottom:320.319600pt;}
.yb2{bottom:322.532133pt;}
.yd2{bottom:322.860400pt;}
.y100{bottom:322.865600pt;}
.y23{bottom:325.325467pt;}
.y90{bottom:330.424667pt;}
.y117{bottom:335.752800pt;}
.y47{bottom:336.986267pt;}
.yb1{bottom:339.198800pt;}
.yd1{bottom:339.527067pt;}
.yff{bottom:339.532267pt;}
.y22{bottom:341.992133pt;}
.y6d{bottom:344.545200pt;}
.y8f{bottom:347.091333pt;}
.y116{bottom:352.419467pt;}
.y46{bottom:353.652933pt;}
.yb0{bottom:355.865467pt;}
.yd0{bottom:356.193733pt;}
.yfe{bottom:356.198933pt;}
.y21{bottom:358.658800pt;}
.y6c{bottom:364.324800pt;}
.y8e{bottom:367.537467pt;}
.y115{bottom:369.086133pt;}
.y45{bottom:370.319600pt;}
.yaf{bottom:372.532133pt;}
.yfd{bottom:372.865600pt;}
.y20{bottom:375.325467pt;}
.ycf{bottom:376.639867pt;}
.y6b{bottom:380.991467pt;}
.y8d{bottom:384.204133pt;}
.y114{bottom:385.752800pt;}
.y44{bottom:386.986267pt;}
.yae{bottom:389.198800pt;}
.yfc{bottom:389.532267pt;}
.y1f{bottom:391.992133pt;}
.yce{bottom:393.306533pt;}
.y6a{bottom:397.658133pt;}
.y8c{bottom:400.870800pt;}
.y113{bottom:402.419467pt;}
.y43{bottom:403.652933pt;}
.yad{bottom:405.865467pt;}
.yfb{bottom:406.198933pt;}
.y1e{bottom:408.658800pt;}
.ycd{bottom:409.973200pt;}
.y69{bottom:414.324800pt;}
.y8b{bottom:417.537467pt;}
.y112{bottom:419.086133pt;}
.y42{bottom:420.319600pt;}
.yac{bottom:422.532133pt;}
.yfa{bottom:422.865600pt;}
.y1d{bottom:425.325467pt;}
.ycc{bottom:426.639867pt;}
.y68{bottom:430.991467pt;}
.y8a{bottom:434.204133pt;}
.y41{bottom:436.986267pt;}
.yab{bottom:439.198800pt;}
.yf9{bottom:439.532267pt;}
.y1c{bottom:441.992133pt;}
.ycb{bottom:443.306533pt;}
.y67{bottom:447.658133pt;}
.y89{bottom:450.870800pt;}
.y40{bottom:453.652933pt;}
.yaa{bottom:455.865467pt;}
.yf8{bottom:456.198933pt;}
.y1b{bottom:458.658800pt;}
.yca{bottom:459.973200pt;}
.y66{bottom:464.324800pt;}
.y88{bottom:467.537467pt;}
.y3f{bottom:470.319600pt;}
.ya9{bottom:472.532133pt;}
.yf7{bottom:472.865600pt;}
.y1a{bottom:475.325467pt;}
.yc9{bottom:476.639867pt;}
.y65{bottom:480.991467pt;}
.y87{bottom:484.204133pt;}
.y3e{bottom:486.986267pt;}
.ya8{bottom:489.198800pt;}
.y111{bottom:489.532267pt;}
.y19{bottom:491.992133pt;}
.yc8{bottom:493.306533pt;}
.yf6{bottom:493.311867pt;}
.y64{bottom:497.658133pt;}
.y86{bottom:500.870800pt;}
.y3d{bottom:503.652933pt;}
.ya7{bottom:505.865467pt;}
.y110{bottom:506.198933pt;}
.y18{bottom:508.658800pt;}
.yc7{bottom:509.973200pt;}
.yf5{bottom:509.978533pt;}
.y63{bottom:514.324800pt;}
.y85{bottom:517.537467pt;}
.y3c{bottom:520.319600pt;}
.ya6{bottom:522.532133pt;}
.y10f{bottom:522.865600pt;}
.y17{bottom:525.325467pt;}
.yc6{bottom:526.639867pt;}
.yf4{bottom:526.645200pt;}
.y62{bottom:530.991467pt;}
.y84{bottom:534.204133pt;}
.y3b{bottom:536.986267pt;}
.ya5{bottom:539.198800pt;}
.y16{bottom:541.992133pt;}
.yc5{bottom:543.306533pt;}
.yf3{bottom:543.311867pt;}
.y61{bottom:547.658133pt;}
.y83{bottom:550.870800pt;}
.y3a{bottom:553.652933pt;}
.ya4{bottom:555.865467pt;}
.y15{bottom:558.658800pt;}
.yc4{bottom:559.973200pt;}
.yf2{bottom:559.978533pt;}
.y60{bottom:564.324800pt;}
.y82{bottom:567.537467pt;}
.y39{bottom:570.319600pt;}
.ya3{bottom:572.532133pt;}
.y14{bottom:575.325467pt;}
.yc3{bottom:576.639867pt;}
.yf1{bottom:576.645200pt;}
.y5f{bottom:580.991467pt;}
.y81{bottom:584.204133pt;}
.y38{bottom:586.986267pt;}
.y13{bottom:591.992133pt;}
.yc2{bottom:593.306533pt;}
.yf0{bottom:593.311867pt;}
.y5e{bottom:597.658133pt;}
.ya2{bottom:599.865467pt;}
.y80{bottom:600.870800pt;}
.y37{bottom:603.652933pt;}
.y12{bottom:608.658800pt;}
.yef{bottom:609.978533pt;}
.y5d{bottom:614.324667pt;}
.y7f{bottom:617.537467pt;}
.y36{bottom:620.319600pt;}
.yc1{bottom:621.311867pt;}
.y11{bottom:625.325467pt;}
.yee{bottom:626.645200pt;}
.y5c{bottom:630.991333pt;}
.y35{bottom:636.986267pt;}
.y7e{bottom:637.983733pt;}
.y10{bottom:641.992133pt;}
.y10e{bottom:643.311867pt;}
.yed{bottom:647.091333pt;}
.y5b{bottom:647.658000pt;}
.y34{bottom:653.652933pt;}
.y7d{bottom:654.650400pt;}
.yf{bottom:658.658800pt;}
.y12d{bottom:659.978533pt;}
.yec{bottom:663.758000pt;}
.y33{bottom:670.319600pt;}
.y7c{bottom:671.317067pt;}
.ye{bottom:675.325467pt;}
.y12c{bottom:676.645200pt;}
.y5a{bottom:677.658000pt;}
.yeb{bottom:680.424667pt;}
.y32{bottom:686.986267pt;}
.y7b{bottom:687.983733pt;}
.y12b{bottom:693.311867pt;}
.yea{bottom:697.091333pt;}
.yd{bottom:703.330667pt;}
.y31{bottom:703.652933pt;}
.y7a{bottom:704.650400pt;}
.y12a{bottom:709.978533pt;}
.ye9{bottom:713.758000pt;}
.y79{bottom:721.317067pt;}
.y10d{bottom:730.424667pt;}
.ye8{bottom:734.204133pt;}
.ya1{bottom:735.537467pt;}
.yc{bottom:737.045333pt;}
.y78{bottom:737.983733pt;}
.y10c{bottom:747.091333pt;}
.ye7{bottom:750.870800pt;}
.ya0{bottom:751.537467pt;}
.yb{bottom:753.045333pt;}
.y77{bottom:754.650400pt;}
.y129{bottom:763.758000pt;}
.ye6{bottom:767.537467pt;}
.ya{bottom:769.045333pt;}
.y76{bottom:771.317067pt;}
.y128{bottom:780.424667pt;}
.ye5{bottom:784.204133pt;}
.y9{bottom:785.045333pt;}
.y75{bottom:787.983733pt;}
.y127{bottom:797.091333pt;}
.ye4{bottom:800.870800pt;}
.y74{bottom:804.650400pt;}
.ye3{bottom:817.537467pt;}
.y8{bottom:820.824933pt;}
.y73{bottom:821.317067pt;}
.ye2{bottom:834.204133pt;}
.y72{bottom:837.983733pt;}
.ye1{bottom:850.870800pt;}
.y7{bottom:852.824933pt;}
.y71{bottom:854.650400pt;}
.ye0{bottom:867.537467pt;}
.y59{bottom:868.204133pt;}
.y70{bottom:871.317067pt;}
.y6{bottom:882.158267pt;}
.y126{bottom:884.204133pt;}
.y58{bottom:887.983733pt;}
.y57{bottom:904.650400pt;}
.y5{bottom:909.621067pt;}
.y56{bottom:921.317067pt;}
.y4{bottom:924.287733pt;}
.y55{bottom:937.983733pt;}
.y3{bottom:938.954400pt;}
.y1{bottom:985.150267pt;}
.y54{bottom:986.095200pt;}
.hc{height:38.520833pt;}
.h5{height:38.828125pt;}
.h8{height:38.880208pt;}
.hd{height:39.101562pt;}
.hb{height:42.710938pt;}
.ha{height:42.768229pt;}
.h4{height:48.151042pt;}
.h9{height:52.966146pt;}
.h2{height:54.359375pt;}
.h7{height:57.781250pt;}
.h6{height:67.411458pt;}
.h3{height:160.282298pt;}
.h1{height:1062.000000pt;}
.h0{height:1062.046667pt;}
.w1{width:831.333333pt;}
.w0{width:831.496000pt;}
.x0{left:0.000000pt;}
.xf{left:75.590533pt;}
.x6{left:78.344400pt;}
.x16{left:87.590533pt;}
.xe{left:94.488133pt;}
.x14{left:98.690800pt;}
.x12{left:124.244133pt;}
.x15{left:152.043600pt;}
.x13{left:186.836000pt;}
.x8{left:201.408133pt;}
.xd{left:204.999067pt;}
.xa{left:277.154267pt;}
.xb{left:324.579333pt;}
.xc{left:334.501200pt;}
.x9{left:340.177733pt;}
.x7{left:354.899067pt;}
.x10{left:423.748000pt;}
.x17{left:435.748000pt;}
.x11{left:442.645600pt;}
.x4{left:452.233600pt;}
.x5{left:487.995333pt;}
.x3{left:689.238800pt;}
.x1{left:735.142533pt;}
.x2{left:807.046667pt;}
}




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