
    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_ee19f6260b660c0b2751e5a7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.777000;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_3185b8558649da9ed1aee922.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922000;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_303be76029addd2d6be7ef77.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.705000;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_737369325d16cbdd5a4cb698.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.451000;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_c9b37e991ef886af7c9c604b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ccb43f87fe5c261f60b918b8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_c6d83d8b2dc20d34333a6cbe.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_131264aa8aa2f260ec252f80.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921000;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:ff9;src:url('chunks/assets/font_28c9dfbb5e72b9ff9eee7b6d.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0604d4ce6ab68d31df8b9cb3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.665000;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:ffb;src:url('chunks/assets/font_ecd4725d3ad7f7f4b316e210.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.389000;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);}
.v2{vertical-align:-23.754000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.754000px;}
.v1{vertical-align:31.236000px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.004599px;}
.ls0{letter-spacing:2.986053px;}
.ls6{letter-spacing:5.105459px;}
.ls5{letter-spacing:14.596376px;}
.lsa{letter-spacing:24.021838px;}
.lsd{letter-spacing:24.806915px;}
.ls3{letter-spacing:27.949114px;}
.ls8{letter-spacing:29.061842px;}
.ls4{letter-spacing:29.912752px;}
.ls7{letter-spacing:30.174571px;}
.ls9{letter-spacing:30.305480px;}
.lse{letter-spacing:32.727300px;}
.ls2{letter-spacing:33.250937px;}
.lsb{letter-spacing:34.101847px;}
.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;}
}
.ws8{word-spacing:-22.416000px;}
.ws39{word-spacing:-4.084367px;}
.ws3a{word-spacing:-3.652367px;}
.ws33{word-spacing:-3.521457px;}
.ws32{word-spacing:-3.456003px;}
.wsc{word-spacing:-3.128730px;}
.ws25{word-spacing:-2.801457px;}
.wsd{word-spacing:-1.230546px;}
.wsb{word-spacing:-0.903273px;}
.ws17{word-spacing:-0.065455px;}
.ws7{word-spacing:0.000000px;}
.ws2b{word-spacing:0.078546px;}
.ws11{word-spacing:1.453092px;}
.ws3b{word-spacing:1.845820px;}
.ws2d{word-spacing:2.696730px;}
.ws2e{word-spacing:3.089457px;}
.ws3c{word-spacing:3.299613px;}
.ws5{word-spacing:3.613094px;}
.ws35{word-spacing:3.678549px;}
.ws1d{word-spacing:4.071276px;}
.ws12{word-spacing:4.136731px;}
.wsa{word-spacing:4.162913px;}
.ws30{word-spacing:4.333095px;}
.ws1e{word-spacing:4.483200px;}
.ws26{word-spacing:4.594913px;}
.ws2a{word-spacing:4.686549px;}
.ws28{word-spacing:4.725822px;}
.ws34{word-spacing:4.791277px;}
.ws2f{word-spacing:5.013822px;}
.ws1b{word-spacing:5.249459px;}
.ws24{word-spacing:5.773096px;}
.ws29{word-spacing:6.558551px;}
.ws14{word-spacing:7.016733px;}
.ws27{word-spacing:7.278552px;}
.wse{word-spacing:7.605825px;}
.ws10{word-spacing:7.867643px;}
.ws15{word-spacing:8.194916px;}
.ws1c{word-spacing:8.260371px;}
.ws20{word-spacing:9.765826px;}
.ws38{word-spacing:10.485827px;}
.ws1a{word-spacing:10.747645px;}
.ws6{word-spacing:10.878555px;}
.ws1f{word-spacing:11.232009px;}
.ws37{word-spacing:11.271282px;}
.wsf{word-spacing:12.776738px;}
.ws36{word-spacing:12.933829px;}
.ws16{word-spacing:13.758557px;}
.ws19{word-spacing:14.413103px;}
.ws3d{word-spacing:21.339889px;}
.ws31{word-spacing:23.825474px;}
.ws3{word-spacing:26.253619px;}
.ws2c{word-spacing:29.520025px;}
.ws22{word-spacing:30.370934px;}
.ws18{word-spacing:31.104026px;}
.ws0{word-spacing:31.322414px;}
.ws4{word-spacing:31.504255px;}
.ws23{word-spacing:32.661845px;}
.ws21{word-spacing:34.625483px;}
.ws9{word-spacing:39.639306px;}
.ws2{word-spacing:54.283749px;}
.ws1{word-spacing:54.432472px;}
.ws13{word-spacing:58.281600px;}
._1d{margin-left:-6.287112px;}
._0{margin-left:-4.610401px;}
._1b{margin-left:-3.505970px;}
._2{margin-left:-2.223667px;}
._12{margin-left:-1.087728px;}
._1c{width:1.003781px;}
._3{width:2.223667px;}
._1{width:4.610401px;}
._f{width:16.429105px;}
._e{width:19.109165px;}
._1e{width:22.684168px;}
._18{width:26.676898px;}
._10{width:27.754540px;}
._1f{width:29.368942px;}
._15{width:30.567298px;}
._13{width:33.275937px;}
._17{width:34.820058px;}
._11{width:37.047304px;}
._14{width:41.760035px;}
._19{width:42.938218px;}
._16{width:59.432777px;}
._5{width:60.545505px;}
._1a{width:80.697600px;}
._7{width:866.811689px;}
._b{width:1124.831933px;}
._a{width:1147.875531px;}
._c{width:1156.713691px;}
._8{width:1225.241079px;}
._9{width:1430.968465px;}
._6{width:1868.401557px;}
._4{width:2079.361733px;}
._d{width:2134.278142px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs0{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y2a{bottom:93.813000px;}
.y4b{bottom:176.005500px;}
.y29{bottom:185.208000px;}
.y4a{bottom:196.329000px;}
.y68{bottom:202.938000px;}
.y28{bottom:205.531500px;}
.y27{bottom:225.856500px;}
.y49{bottom:229.434000px;}
.y67{bottom:241.195500px;}
.y26{bottom:246.180000px;}
.y48{bottom:262.539000px;}
.y25{bottom:266.503500px;}
.y66{bottom:274.968000px;}
.y47{bottom:282.862500px;}
.y24{bottom:286.827000px;}
.y23{bottom:307.150500px;}
.y65{bottom:308.742000px;}
.y46{bottom:313.291500px;}
.y22{bottom:327.475500px;}
.y45{bottom:333.616500px;}
.y64{bottom:342.514500px;}
.y21{bottom:347.799000px;}
.y20{bottom:368.122500px;}
.y44{bottom:368.883000px;}
.y63{bottom:379.044000px;}
.y1f{bottom:388.446000px;}
.y1e{bottom:408.769500px;}
.y43{bottom:412.257000px;}
.y62{bottom:424.624500px;}
.y42{bottom:432.580500px;}
.y61{bottom:444.948000px;}
.y1d{bottom:445.297500px;}
.y41{bottom:465.685500px;}
.y60{bottom:478.720500px;}
.y1c{bottom:490.879500px;}
.y40{bottom:498.790500px;}
.y1b{bottom:511.203000px;}
.y5f{bottom:512.494500px;}
.y3f{bottom:519.114000px;}
.y1a{bottom:531.526500px;}
.y7{bottom:532.603500px;}
.y5e{bottom:549.022500px;}
.y19{bottom:551.850000px;}
.y3e{bottom:552.219000px;}
.y6{bottom:569.326500px;}
.y18{bottom:572.173500px;}
.y3d{bottom:572.542500px;}
.y17{bottom:592.497000px;}
.y5d{bottom:594.603000px;}
.y5{bottom:598.059000px;}
.y3c{bottom:607.809000px;}
.y16{bottom:612.822000px;}
.y5c{bottom:628.377000px;}
.y15{bottom:633.145500px;}
.y5b{bottom:648.700500px;}
.y3b{bottom:651.183000px;}
.y14{bottom:653.469000px;}
.y3a{bottom:671.506500px;}
.y13{bottom:673.792500px;}
.y5a{bottom:682.474500px;}
.y76{bottom:688.684500px;}
.y39{bottom:704.611500px;}
.y75{bottom:706.617000px;}
.y12{bottom:712.050000px;}
.y59{bottom:716.247000px;}
.y74{bottom:732.021000px;}
.y38{bottom:737.716500px;}
.y73{bottom:749.953500px;}
.y58{bottom:750.021000px;}
.y11{bottom:751.819500px;}
.y37{bottom:758.040000px;}
.y4{bottom:759.814500px;}
.y57{bottom:770.344500px;}
.y72{bottom:775.359000px;}
.y10{bottom:788.506500px;}
.y36{bottom:791.145000px;}
.y71{bottom:793.291500px;}
.y3{bottom:797.095500px;}
.y56{bottom:804.117000px;}
.y70{bottom:818.697000px;}
.y55{bottom:824.442000px;}
.yf{bottom:825.193500px;}
.y6f{bottom:836.629500px;}
.y2{bottom:841.927500px;}
.y35{bottom:844.573500px;}
.y54{bottom:860.970000px;}
.ye{bottom:861.882000px;}
.y6e{bottom:862.033500px;}
.y34{bottom:864.897000px;}
.y6d{bottom:879.966000px;}
.y33{bottom:898.002000px;}
.yd{bottom:898.569000px;}
.y53{bottom:906.550500px;}
.y6c{bottom:914.104500px;}
.y32{bottom:923.379000px;}
.y52{bottom:926.874000px;}
.yc{bottom:935.256000px;}
.y31{bottom:953.808000px;}
.y6b{bottom:959.685000px;}
.y51{bottom:960.648000px;}
.yb{bottom:971.944500px;}
.y30{bottom:980.188500px;}
.y50{bottom:980.971500px;}
.y6a{bottom:996.213000px;}
.y2f{bottom:1006.569000px;}
.y4f{bottom:1008.019500px;}
.ya{bottom:1008.631500px;}
.y4e{bottom:1028.343000px;}
.y2e{bottom:1032.948000px;}
.y69{bottom:1041.793500px;}
.y9{bottom:1045.318500px;}
.y4d{bottom:1062.117000px;}
.y2d{bottom:1063.378500px;}
.y8{bottom:1082.007000px;}
.y4c{bottom:1082.440500px;}
.y2c{bottom:1083.702000px;}
.y1{bottom:1087.587000px;}
.y2b{bottom:1118.968500px;}
.h6{height:25.336950px;}
.h2{height:41.484266px;}
.ha{height:44.831700px;}
.h7{height:49.090950px;}
.h8{height:50.211840px;}
.h4{height:51.359539px;}
.h9{height:55.554699px;}
.h5{height:72.062735px;}
.h3{height:106.485382px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:106.518000px;}
.x2{left:127.426500px;}
.x3{left:131.838000px;}
.xa{left:137.107500px;}
.x4{left:139.332000px;}
.x9{left:152.019000px;}
.xb{left:161.064000px;}
.x6{left:164.010000px;}
.x1{left:286.581000px;}
.x5{left:328.177500px;}
.x7{left:438.466500px;}
@media print{
.v2{vertical-align:-21.114667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.114667pt;}
.v1{vertical-align:27.765333pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.004088pt;}
.ls0{letter-spacing:2.654270pt;}
.ls6{letter-spacing:4.538186pt;}
.ls5{letter-spacing:12.974556pt;}
.lsa{letter-spacing:21.352745pt;}
.lsd{letter-spacing:22.050591pt;}
.ls3{letter-spacing:24.843657pt;}
.ls8{letter-spacing:25.832749pt;}
.ls4{letter-spacing:26.589113pt;}
.ls7{letter-spacing:26.821841pt;}
.ls9{letter-spacing:26.938204pt;}
.lse{letter-spacing:29.090933pt;}
.ls2{letter-spacing:29.556388pt;}
.lsb{letter-spacing:30.312753pt;}
.ws8{word-spacing:-19.925333pt;}
.ws39{word-spacing:-3.630548pt;}
.ws3a{word-spacing:-3.246548pt;}
.ws33{word-spacing:-3.130184pt;}
.ws32{word-spacing:-3.072003pt;}
.wsc{word-spacing:-2.781093pt;}
.ws25{word-spacing:-2.490184pt;}
.wsd{word-spacing:-1.093819pt;}
.wsb{word-spacing:-0.802910pt;}
.ws17{word-spacing:-0.058182pt;}
.ws7{word-spacing:0.000000pt;}
.ws2b{word-spacing:0.069818pt;}
.ws11{word-spacing:1.291637pt;}
.ws3b{word-spacing:1.640729pt;}
.ws2d{word-spacing:2.397093pt;}
.ws2e{word-spacing:2.746184pt;}
.ws3c{word-spacing:2.932989pt;}
.ws5{word-spacing:3.211639pt;}
.ws35{word-spacing:3.269821pt;}
.ws1d{word-spacing:3.618912pt;}
.ws12{word-spacing:3.677094pt;}
.wsa{word-spacing:3.700367pt;}
.ws30{word-spacing:3.851640pt;}
.ws1e{word-spacing:3.985067pt;}
.ws26{word-spacing:4.084367pt;}
.ws2a{word-spacing:4.165822pt;}
.ws28{word-spacing:4.200731pt;}
.ws34{word-spacing:4.258913pt;}
.ws2f{word-spacing:4.456731pt;}
.ws1b{word-spacing:4.666186pt;}
.ws24{word-spacing:5.131641pt;}
.ws29{word-spacing:5.829823pt;}
.ws14{word-spacing:6.237096pt;}
.ws27{word-spacing:6.469824pt;}
.wse{word-spacing:6.760733pt;}
.ws10{word-spacing:6.993460pt;}
.ws15{word-spacing:7.284370pt;}
.ws1c{word-spacing:7.342552pt;}
.ws20{word-spacing:8.680735pt;}
.ws38{word-spacing:9.320735pt;}
.ws1a{word-spacing:9.553463pt;}
.ws6{word-spacing:9.669826pt;}
.ws1f{word-spacing:9.984008pt;}
.ws37{word-spacing:10.018917pt;}
.wsf{word-spacing:11.357100pt;}
.ws36{word-spacing:11.496737pt;}
.ws16{word-spacing:12.229828pt;}
.ws19{word-spacing:12.811647pt;}
.ws3d{word-spacing:18.968790pt;}
.ws31{word-spacing:21.178199pt;}
.ws3{word-spacing:23.336550pt;}
.ws2c{word-spacing:26.240022pt;}
.ws22{word-spacing:26.996386pt;}
.ws18{word-spacing:27.648023pt;}
.ws0{word-spacing:27.842146pt;}
.ws4{word-spacing:28.003782pt;}
.ws23{word-spacing:29.032751pt;}
.ws21{word-spacing:30.778207pt;}
.ws9{word-spacing:35.234938pt;}
.ws2{word-spacing:48.252221pt;}
.ws1{word-spacing:48.384419pt;}
.ws13{word-spacing:51.805867pt;}
._1d{margin-left:-5.588544pt;}
._0{margin-left:-4.098134pt;}
._1b{margin-left:-3.116418pt;}
._2{margin-left:-1.976593pt;}
._12{margin-left:-0.966869pt;}
._1c{width:0.892250pt;}
._3{width:1.976593pt;}
._1{width:4.098134pt;}
._f{width:14.603649pt;}
._e{width:16.985924pt;}
._1e{width:20.163705pt;}
._18{width:23.712798pt;}
._10{width:24.670702pt;}
._1f{width:26.105726pt;}
._15{width:27.170932pt;}
._13{width:29.578611pt;}
._17{width:30.951163pt;}
._11{width:32.930937pt;}
._14{width:37.120031pt;}
._19{width:38.167305pt;}
._16{width:52.829135pt;}
._5{width:53.818227pt;}
._1a{width:71.731200pt;}
._7{width:770.499279pt;}
._b{width:999.850607pt;}
._a{width:1020.333805pt;}
._c{width:1028.189948pt;}
._8{width:1089.103181pt;}
._9{width:1271.971969pt;}
._6{width:1660.801384pt;}
._4{width:1848.321540pt;}
._d{width:1897.136126pt;}
.fs4{font-size:42.507200pt;}
.fs0{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:83.389333pt;}
.y4b{bottom:156.449333pt;}
.y29{bottom:164.629333pt;}
.y4a{bottom:174.514667pt;}
.y68{bottom:180.389333pt;}
.y28{bottom:182.694667pt;}
.y27{bottom:200.761333pt;}
.y49{bottom:203.941333pt;}
.y67{bottom:214.396000pt;}
.y26{bottom:218.826667pt;}
.y48{bottom:233.368000pt;}
.y25{bottom:236.892000pt;}
.y66{bottom:244.416000pt;}
.y47{bottom:251.433333pt;}
.y24{bottom:254.957333pt;}
.y23{bottom:273.022667pt;}
.y65{bottom:274.437333pt;}
.y46{bottom:278.481333pt;}
.y22{bottom:291.089333pt;}
.y45{bottom:296.548000pt;}
.y64{bottom:304.457333pt;}
.y21{bottom:309.154667pt;}
.y20{bottom:327.220000pt;}
.y44{bottom:327.896000pt;}
.y63{bottom:336.928000pt;}
.y1f{bottom:345.285333pt;}
.y1e{bottom:363.350667pt;}
.y43{bottom:366.450667pt;}
.y62{bottom:377.444000pt;}
.y42{bottom:384.516000pt;}
.y61{bottom:395.509333pt;}
.y1d{bottom:395.820000pt;}
.y41{bottom:413.942667pt;}
.y60{bottom:425.529333pt;}
.y1c{bottom:436.337333pt;}
.y40{bottom:443.369333pt;}
.y1b{bottom:454.402667pt;}
.y5f{bottom:455.550667pt;}
.y3f{bottom:461.434667pt;}
.y1a{bottom:472.468000pt;}
.y7{bottom:473.425333pt;}
.y5e{bottom:488.020000pt;}
.y19{bottom:490.533333pt;}
.y3e{bottom:490.861333pt;}
.y6{bottom:506.068000pt;}
.y18{bottom:508.598667pt;}
.y3d{bottom:508.926667pt;}
.y17{bottom:526.664000pt;}
.y5d{bottom:528.536000pt;}
.y5{bottom:531.608000pt;}
.y3c{bottom:540.274667pt;}
.y16{bottom:544.730667pt;}
.y5c{bottom:558.557333pt;}
.y15{bottom:562.796000pt;}
.y5b{bottom:576.622667pt;}
.y3b{bottom:578.829333pt;}
.y14{bottom:580.861333pt;}
.y3a{bottom:596.894667pt;}
.y13{bottom:598.926667pt;}
.y5a{bottom:606.644000pt;}
.y76{bottom:612.164000pt;}
.y39{bottom:626.321333pt;}
.y75{bottom:628.104000pt;}
.y12{bottom:632.933333pt;}
.y59{bottom:636.664000pt;}
.y74{bottom:650.685333pt;}
.y38{bottom:655.748000pt;}
.y73{bottom:666.625333pt;}
.y58{bottom:666.685333pt;}
.y11{bottom:668.284000pt;}
.y37{bottom:673.813333pt;}
.y4{bottom:675.390667pt;}
.y57{bottom:684.750667pt;}
.y72{bottom:689.208000pt;}
.y10{bottom:700.894667pt;}
.y36{bottom:703.240000pt;}
.y71{bottom:705.148000pt;}
.y3{bottom:708.529333pt;}
.y56{bottom:714.770667pt;}
.y70{bottom:727.730667pt;}
.y55{bottom:732.837333pt;}
.yf{bottom:733.505333pt;}
.y6f{bottom:743.670667pt;}
.y2{bottom:748.380000pt;}
.y35{bottom:750.732000pt;}
.y54{bottom:765.306667pt;}
.ye{bottom:766.117333pt;}
.y6e{bottom:766.252000pt;}
.y34{bottom:768.797333pt;}
.y6d{bottom:782.192000pt;}
.y33{bottom:798.224000pt;}
.yd{bottom:798.728000pt;}
.y53{bottom:805.822667pt;}
.y6c{bottom:812.537333pt;}
.y32{bottom:820.781333pt;}
.y52{bottom:823.888000pt;}
.yc{bottom:831.338667pt;}
.y31{bottom:847.829333pt;}
.y6b{bottom:853.053333pt;}
.y51{bottom:853.909333pt;}
.yb{bottom:863.950667pt;}
.y30{bottom:871.278667pt;}
.y50{bottom:871.974667pt;}
.y6a{bottom:885.522667pt;}
.y2f{bottom:894.728000pt;}
.y4f{bottom:896.017333pt;}
.ya{bottom:896.561333pt;}
.y4e{bottom:914.082667pt;}
.y2e{bottom:918.176000pt;}
.y69{bottom:926.038667pt;}
.y9{bottom:929.172000pt;}
.y4d{bottom:944.104000pt;}
.y2d{bottom:945.225333pt;}
.y8{bottom:961.784000pt;}
.y4c{bottom:962.169333pt;}
.y2c{bottom:963.290667pt;}
.y1{bottom:966.744000pt;}
.y2b{bottom:994.638667pt;}
.h6{height:22.521733pt;}
.h2{height:36.874903pt;}
.ha{height:39.850400pt;}
.h7{height:43.636400pt;}
.h8{height:44.632747pt;}
.h4{height:45.652924pt;}
.h9{height:49.381955pt;}
.h5{height:64.055764pt;}
.h3{height:94.653673pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:94.682667pt;}
.x2{left:113.268000pt;}
.x3{left:117.189333pt;}
.xa{left:121.873333pt;}
.x4{left:123.850667pt;}
.x9{left:135.128000pt;}
.xb{left:143.168000pt;}
.x6{left:145.786667pt;}
.x1{left:254.738667pt;}
.x5{left:291.713333pt;}
.x7{left:389.748000pt;}
}




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