
    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_4baf46c50c62886cae04d0af.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_ee39219b49f867f740854021.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9cf8846482751764b55cd706.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_09d39f0ca4b666f3bbd166eb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2e7339a4dfce3d20331cc7b4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_def2e71f5abedc87f1dfe16b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_604f03fc5a41f3be921c5b40.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_48421f3ed47518dfcf497da6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.960938;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_e1ac2ffbf7ef84b391359626.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_62289f8e1ddaa5c085aece14.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.746094;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);}
.v1{vertical-align:-39.599984px;}
.v4{vertical-align:-10.079996px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:7.919997px;}
.v3{vertical-align:10.079996px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.141840px;}
.ls2{letter-spacing:0.169920px;}
.ls1{letter-spacing:8.279997px;}
.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;}
}
.ws27{word-spacing:-41.759983px;}
.ws1{word-spacing:-17.022953px;}
.ws26{word-spacing:-14.385594px;}
.ws3{word-spacing:-10.408316px;}
.ws1b{word-spacing:-9.207356px;}
.ws29{word-spacing:-5.579998px;}
.ws2{word-spacing:-4.499998px;}
.ws28{word-spacing:-1.307476px;}
.ws1a{word-spacing:-0.982041px;}
.ws11{word-spacing:-0.656622px;}
.wse{word-spacing:-0.555834px;}
.ws12{word-spacing:-0.264963px;}
.ws0{word-spacing:-0.025855px;}
.ws2a{word-spacing:0.000000px;}
.wsf{word-spacing:0.063311px;}
.ws4{word-spacing:0.063348px;}
.ws19{word-spacing:0.391697px;}
.wsc{word-spacing:0.455046px;}
.ws16{word-spacing:0.783319px;}
.ws15{word-spacing:1.111668px;}
.ws18{word-spacing:1.174979px;}
.ws5{word-spacing:1.831676px;}
.ws1f{word-spacing:2.115352px;}
.ws23{word-spacing:2.223374px;}
.ws25{word-spacing:2.551685px;}
.ws17{word-spacing:4.054975px;}
.ws24{word-spacing:5.431681px;}
.wsa{word-spacing:6.935046px;}
.ws8{word-spacing:7.263357px;}
.wsb{word-spacing:7.591668px;}
.ws21{word-spacing:8.311677px;}
.wsd{word-spacing:8.375025px;}
.ws9{word-spacing:11.911681px;}
.ws20{word-spacing:12.631689px;}
.ws7{word-spacing:18.391681px;}
.ws10{word-spacing:18.455030px;}
.ws22{word-spacing:18.783304px;}
.ws14{word-spacing:23.495051px;}
.ws6{word-spacing:28.534885px;}
.ws13{word-spacing:31.023146px;}
.ws1d{word-spacing:103.908886px;}
.ws1e{word-spacing:112.548883px;}
.ws1c{word-spacing:129.828876px;}
._0{margin-left:-536.407705px;}
._a{margin-left:-5.162411px;}
._1a{margin-left:-3.157779px;}
._2{margin-left:-1.640006px;}
._1{width:1.225371px;}
._4{width:3.325956px;}
._15{width:7.577367px;}
._8{width:9.285148px;}
._b{width:11.723759px;}
._3{width:12.739512px;}
._7{width:16.067584px;}
._1b{width:18.404706px;}
._19{width:20.150143px;}
._9{width:22.610881px;}
._18{width:24.277297px;}
._6{width:30.041441px;}
._5{width:40.132281px;}
._c{width:97.522253px;}
._14{width:119.439475px;}
._d{width:130.592152px;}
._10{width:133.548555px;}
._11{width:152.988663px;}
._17{width:160.423506px;}
._13{width:174.159323px;}
._f{width:188.268404px;}
._12{width:245.505571px;}
._e{width:305.199510px;}
._16{width:478.979412px;}
.fc4{color:transparent;}
.fc2{color:rgb(9,5,48);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(148,75,23);}
.fs4{font-size:17.999993px;}
.fsa{font-size:22.319991px;}
.fs7{font-size:33.119987px;}
.fs8{font-size:33.839986px;}
.fs6{font-size:37.439985px;}
.fs2{font-size:38.879984px;}
.fs5{font-size:41.759983px;}
.fs9{font-size:43.199983px;}
.fs1{font-size:49.679980px;}
.fs3{font-size:51.119980px;}
.fs0{font-size:88.559965px;}
.y0{bottom:0.000000px;}
.y17{bottom:0.359315px;}
.y13{bottom:1.079287px;}
.y71{bottom:118.919952px;}
.y5d{bottom:160.859936px;}
.y5a{bottom:163.379935px;}
.y59{bottom:171.479931px;}
.y52{bottom:172.919931px;}
.yc{bottom:173.819930px;}
.y18{bottom:175.619930px;}
.y53{bottom:191.819923px;}
.yd{bottom:191.999923px;}
.y14{bottom:192.719923px;}
.y19{bottom:193.439923px;}
.y1f{bottom:196.679921px;}
.y21{bottom:202.439919px;}
.ye{bottom:210.359916px;}
.y54{bottom:210.539916px;}
.y1a{bottom:211.079916px;}
.y16{bottom:211.080600px;}
.yf{bottom:228.539909px;}
.y1b{bottom:228.899908px;}
.y55{bottom:229.259908px;}
.y15{bottom:231.239908px;}
.y5c{bottom:240.059904px;}
.y20{bottom:243.299903px;}
.y1c{bottom:246.539901px;}
.y10{bottom:246.899901px;}
.y56{bottom:247.979901px;}
.y5b{bottom:258.239897px;}
.y1d{bottom:264.359894px;}
.y11{bottom:265.079894px;}
.y57{bottom:266.699893px;}
.y1e{bottom:281.999887px;}
.y12{bottom:282.360600px;}
.y58{bottom:285.419886px;}
.y51{bottom:288.659885px;}
.y5f{bottom:297.659881px;}
.y50{bottom:299.999880px;}
.y5e{bottom:308.819876px;}
.y4f{bottom:311.159876px;}
.y3f{bottom:347.699861px;}
.y3e{bottom:359.039856px;}
.y3d{bottom:370.199852px;}
.y3c{bottom:381.539847px;}
.y3b{bottom:392.699843px;}
.y3a{bottom:404.039838px;}
.y39{bottom:426.539829px;}
.y6e{bottom:429.599828px;}
.y4c{bottom:447.599821px;}
.y68{bottom:456.959817px;}
.y4b{bottom:457.499817px;}
.y4a{bottom:467.399813px;}
.y67{bottom:468.299813px;}
.y49{bottom:477.299809px;}
.y66{bottom:479.639808px;}
.y48{bottom:487.199805px;}
.y65{bottom:490.799804px;}
.y64{bottom:502.139799px;}
.y47{bottom:509.519796px;}
.y63{bottom:513.299795px;}
.y46{bottom:519.419792px;}
.y62{bottom:524.639790px;}
.y45{bottom:529.319788px;}
.y61{bottom:535.979786px;}
.y44{bottom:539.219784px;}
.y60{bottom:547.139781px;}
.y43{bottom:558.299777px;}
.y38{bottom:567.659773px;}
.y42{bottom:577.379769px;}
.y37{bottom:587.279765px;}
.y36{bottom:598.619761px;}
.y41{bottom:609.599756px;}
.y35{bottom:609.779756px;}
.y34{bottom:621.119752px;}
.y4e{bottom:623.639751px;}
.y33{bottom:632.459747px;}
.y4d{bottom:634.799746px;}
.y32{bottom:643.619743px;}
.y31{bottom:654.959738px;}
.y30{bottom:666.119734px;}
.y2f{bottom:677.459729px;}
.y2e{bottom:699.959720px;}
.y4{bottom:700.859720px;}
.y9{bottom:707.159717px;}
.y6d{bottom:722.459711px;}
.y2d{bottom:722.639711px;}
.y2c{bottom:733.799706px;}
.y6c{bottom:735.059706px;}
.y6{bottom:739.019704px;}
.y6b{bottom:747.659701px;}
.y8{bottom:752.699699px;}
.y5{bottom:754.319698px;}
.y2b{bottom:756.299697px;}
.y2a{bottom:778.979688px;}
.y29{bottom:790.139684px;}
.y7{bottom:794.999682px;}
.y28{bottom:801.479679px;}
.y70{bottom:811.919675px;}
.y27{bottom:812.819675px;}
.y6a{bottom:813.359675px;}
.y26{bottom:823.979670px;}
.y6f{bottom:824.519670px;}
.y69{bottom:826.139670px;}
.yb{bottom:826.859669px;}
.y25{bottom:835.319666px;}
.ya{bottom:842.159663px;}
.y24{bottom:846.479661px;}
.y23{bottom:857.819657px;}
.y22{bottom:880.319648px;}
.y40{bottom:903.719639px;}
.y3{bottom:941.879623px;}
.y2{bottom:956.639617px;}
.y1{bottom:1093.259563px;}
.h6{height:5.040000px;}
.h9{height:9.000000px;}
.h5{height:17.666009px;}
.hc{height:31.450769px;}
.hd{height:31.727800px;}
.he{height:33.212096px;}
.ha{height:34.543111px;}
.h2{height:36.168384px;}
.h4{height:37.216743px;}
.h8{height:39.048734px;}
.h3{height:40.550609px;}
.h7{height:40.985140px;}
.hb{height:43.214045px;}
.h1{height:64.474076px;}
.h0{height:1263.000000px;}
.w1{width:4.500000px;}
.w2{width:18.900000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x34{left:20.339992px;}
.x14{left:58.499977px;}
.x13{left:59.759976px;}
.x11{left:61.739975px;}
.x22{left:64.259974px;}
.x26{left:67.319973px;}
.x1{left:71.459971px;}
.x12{left:77.219969px;}
.x25{left:81.899967px;}
.x24{left:85.139966px;}
.x27{left:94.139962px;}
.x23{left:106.199958px;}
.x28{left:217.979913px;}
.x29{left:219.059912px;}
.x3{left:329.219868px;}
.xd{left:334.979866px;}
.xc{left:350.459860px;}
.x2{left:372.419851px;}
.x2a{left:377.819849px;}
.x2b{left:378.899848px;}
.x2c{left:420.839832px;}
.x20{left:423.179831px;}
.x31{left:430.919828px;}
.x9{left:433.079827px;}
.x7{left:443.339823px;}
.x8{left:445.319822px;}
.x21{left:459.899816px;}
.x4{left:473.759810px;}
.xe{left:487.439805px;}
.x1d{left:495.719802px;}
.x17{left:497.699801px;}
.x5{left:561.599775px;}
.x6{left:564.119774px;}
.xb{left:566.639773px;}
.xa{left:571.679771px;}
.x16{left:581.759767px;}
.xf{left:584.279766px;}
.x18{left:593.099763px;}
.x15{left:597.599761px;}
.x1e{left:653.939738px;}
.x19{left:656.279737px;}
.x1a{left:705.779718px;}
.x2f{left:719.639712px;}
.x32{left:723.959710px;}
.x33{left:726.299709px;}
.x10{left:727.559709px;}
.x30{left:728.819708px;}
.x2d{left:731.699707px;}
.x2e{left:733.859706px;}
.x1b{left:760.139696px;}
.x1f{left:762.299695px;}
.x1c{left:764.639694px;}
@media print{
.v1{vertical-align:-35.199986pt;}
.v4{vertical-align:-8.959996pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:7.039997pt;}
.v3{vertical-align:8.959996pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.126080pt;}
.ls2{letter-spacing:0.151040pt;}
.ls1{letter-spacing:7.359997pt;}
.ws27{word-spacing:-37.119985pt;}
.ws1{word-spacing:-15.131514pt;}
.ws26{word-spacing:-12.787195pt;}
.ws3{word-spacing:-9.251836pt;}
.ws1b{word-spacing:-8.184317pt;}
.ws29{word-spacing:-4.959998pt;}
.ws2{word-spacing:-3.999998pt;}
.ws28{word-spacing:-1.162200pt;}
.ws1a{word-spacing:-0.872925pt;}
.ws11{word-spacing:-0.583664pt;}
.wse{word-spacing:-0.494075pt;}
.ws12{word-spacing:-0.235522pt;}
.ws0{word-spacing:-0.022982pt;}
.ws2a{word-spacing:0.000000pt;}
.wsf{word-spacing:0.056276pt;}
.ws4{word-spacing:0.056310pt;}
.ws19{word-spacing:0.348175pt;}
.wsc{word-spacing:0.404485pt;}
.ws16{word-spacing:0.696284pt;}
.ws15{word-spacing:0.988149pt;}
.ws18{word-spacing:1.044426pt;}
.ws5{word-spacing:1.628157pt;}
.ws1f{word-spacing:1.880313pt;}
.ws23{word-spacing:1.976332pt;}
.ws25{word-spacing:2.268164pt;}
.ws17{word-spacing:3.604422pt;}
.ws24{word-spacing:4.828161pt;}
.wsa{word-spacing:6.164485pt;}
.ws8{word-spacing:6.456317pt;}
.wsb{word-spacing:6.748150pt;}
.ws21{word-spacing:7.388157pt;}
.wsd{word-spacing:7.444467pt;}
.ws9{word-spacing:10.588161pt;}
.ws20{word-spacing:11.228168pt;}
.ws7{word-spacing:16.348161pt;}
.ws10{word-spacing:16.404471pt;}
.ws22{word-spacing:16.696270pt;}
.ws14{word-spacing:20.884490pt;}
.ws6{word-spacing:25.364342pt;}
.ws13{word-spacing:27.576130pt;}
.ws1d{word-spacing:92.363455pt;}
.ws1e{word-spacing:100.043452pt;}
.ws1c{word-spacing:115.403445pt;}
._0{margin-left:-476.806849pt;}
._a{margin-left:-4.588810pt;}
._1a{margin-left:-2.806915pt;}
._2{margin-left:-1.457783pt;}
._1{width:1.089219pt;}
._4{width:2.956406pt;}
._15{width:6.735437pt;}
._8{width:8.253465pt;}
._b{width:10.421119pt;}
._3{width:11.324011pt;}
._7{width:14.282297pt;}
._1b{width:16.359738pt;}
._19{width:17.911239pt;}
._9{width:20.098561pt;}
._18{width:21.579820pt;}
._6{width:26.703503pt;}
._5{width:35.673139pt;}
._c{width:86.686447pt;}
._14{width:106.168422pt;}
._d{width:116.081913pt;}
._10{width:118.709827pt;}
._11{width:135.989922pt;}
._17{width:142.598672pt;}
._13{width:154.808287pt;}
._f{width:167.349692pt;}
._12{width:218.227174pt;}
._e{width:271.288453pt;}
._16{width:425.759478pt;}
.fs4{font-size:15.999994pt;}
.fsa{font-size:19.839992pt;}
.fs7{font-size:29.439988pt;}
.fs8{font-size:30.079988pt;}
.fs6{font-size:33.279987pt;}
.fs2{font-size:34.559986pt;}
.fs5{font-size:37.119985pt;}
.fs9{font-size:38.399985pt;}
.fs1{font-size:44.159982pt;}
.fs3{font-size:45.439982pt;}
.fs0{font-size:78.719969pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:0.319391pt;}
.y13{bottom:0.959366pt;}
.y71{bottom:105.706624pt;}
.y5d{bottom:142.986609pt;}
.y5a{bottom:145.226609pt;}
.y59{bottom:152.426606pt;}
.y52{bottom:153.706605pt;}
.yc{bottom:154.506605pt;}
.y18{bottom:156.106604pt;}
.y53{bottom:170.506598pt;}
.yd{bottom:170.666598pt;}
.y14{bottom:171.306598pt;}
.y19{bottom:171.946598pt;}
.y1f{bottom:174.826597pt;}
.y21{bottom:179.946595pt;}
.ye{bottom:186.986592pt;}
.y54{bottom:187.146592pt;}
.y1a{bottom:187.626592pt;}
.y16{bottom:187.627200pt;}
.yf{bottom:203.146585pt;}
.y1b{bottom:203.466585pt;}
.y55{bottom:203.786585pt;}
.y15{bottom:205.546584pt;}
.y5c{bottom:213.386581pt;}
.y20{bottom:216.266580pt;}
.y1c{bottom:219.146579pt;}
.y10{bottom:219.466579pt;}
.y56{bottom:220.426578pt;}
.y5b{bottom:229.546575pt;}
.y1d{bottom:234.986573pt;}
.y11{bottom:235.626572pt;}
.y57{bottom:237.066572pt;}
.y1e{bottom:250.666566pt;}
.y12{bottom:250.987200pt;}
.y58{bottom:253.706565pt;}
.y51{bottom:256.586564pt;}
.y5f{bottom:264.586561pt;}
.y50{bottom:266.666560pt;}
.y5e{bottom:274.506557pt;}
.y4f{bottom:276.586556pt;}
.y3f{bottom:309.066543pt;}
.y3e{bottom:319.146539pt;}
.y3d{bottom:329.066535pt;}
.y3c{bottom:339.146531pt;}
.y3b{bottom:349.066527pt;}
.y3a{bottom:359.146523pt;}
.y39{bottom:379.146515pt;}
.y6e{bottom:381.866514pt;}
.y4c{bottom:397.866508pt;}
.y68{bottom:406.186504pt;}
.y4b{bottom:406.666504pt;}
.y4a{bottom:415.466500pt;}
.y67{bottom:416.266500pt;}
.y49{bottom:424.266497pt;}
.y66{bottom:426.346496pt;}
.y48{bottom:433.066493pt;}
.y65{bottom:436.266492pt;}
.y64{bottom:446.346488pt;}
.y47{bottom:452.906486pt;}
.y63{bottom:456.266484pt;}
.y46{bottom:461.706482pt;}
.y62{bottom:466.346480pt;}
.y45{bottom:470.506478pt;}
.y61{bottom:476.426476pt;}
.y44{bottom:479.306475pt;}
.y60{bottom:486.346472pt;}
.y43{bottom:496.266468pt;}
.y38{bottom:504.586465pt;}
.y42{bottom:513.226461pt;}
.y37{bottom:522.026458pt;}
.y36{bottom:532.106454pt;}
.y41{bottom:541.866450pt;}
.y35{bottom:542.026450pt;}
.y34{bottom:552.106446pt;}
.y4e{bottom:554.346445pt;}
.y33{bottom:562.186442pt;}
.y4d{bottom:564.266441pt;}
.y32{bottom:572.106438pt;}
.y31{bottom:582.186434pt;}
.y30{bottom:592.106430pt;}
.y2f{bottom:602.186426pt;}
.y2e{bottom:622.186418pt;}
.y4{bottom:622.986417pt;}
.y9{bottom:628.586415pt;}
.y6d{bottom:642.186410pt;}
.y2d{bottom:642.346410pt;}
.y2c{bottom:652.266406pt;}
.y6c{bottom:653.386405pt;}
.y6{bottom:656.906404pt;}
.y6b{bottom:664.586401pt;}
.y8{bottom:669.066399pt;}
.y5{bottom:670.506398pt;}
.y2b{bottom:672.266398pt;}
.y2a{bottom:692.426390pt;}
.y29{bottom:702.346386pt;}
.y7{bottom:706.666384pt;}
.y28{bottom:712.426382pt;}
.y70{bottom:721.706378pt;}
.y27{bottom:722.506378pt;}
.y6a{bottom:722.986377pt;}
.y26{bottom:732.426374pt;}
.y6f{bottom:732.906374pt;}
.y69{bottom:734.346373pt;}
.yb{bottom:734.986373pt;}
.y25{bottom:742.506370pt;}
.ya{bottom:748.586367pt;}
.y24{bottom:752.426366pt;}
.y23{bottom:762.506362pt;}
.y22{bottom:782.506354pt;}
.y40{bottom:803.306345pt;}
.y3{bottom:837.226332pt;}
.y2{bottom:850.346327pt;}
.y1{bottom:971.786278pt;}
.h6{height:4.480000pt;}
.h9{height:8.000000pt;}
.h5{height:15.703119pt;}
.hc{height:27.956239pt;}
.hd{height:28.202489pt;}
.he{height:29.521863pt;}
.ha{height:30.704988pt;}
.h2{height:32.149675pt;}
.h4{height:33.081549pt;}
.h8{height:34.709986pt;}
.h3{height:36.044986pt;}
.h7{height:36.431235pt;}
.hb{height:38.412485pt;}
.h1{height:57.310290pt;}
.h0{height:1122.666667pt;}
.w1{width:4.000000pt;}
.w2{width:16.800000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x34{left:18.079993pt;}
.x14{left:51.999979pt;}
.x13{left:53.119979pt;}
.x11{left:54.879978pt;}
.x22{left:57.119977pt;}
.x26{left:59.839976pt;}
.x1{left:63.519975pt;}
.x12{left:68.639973pt;}
.x25{left:72.799971pt;}
.x24{left:75.679970pt;}
.x27{left:83.679967pt;}
.x23{left:94.399962pt;}
.x28{left:193.759922pt;}
.x29{left:194.719922pt;}
.x3{left:292.639883pt;}
.xd{left:297.759881pt;}
.xc{left:311.519875pt;}
.x2{left:331.039868pt;}
.x2a{left:335.839866pt;}
.x2b{left:336.799865pt;}
.x2c{left:374.079850pt;}
.x20{left:376.159850pt;}
.x31{left:383.039847pt;}
.x9{left:384.959846pt;}
.x7{left:394.079842pt;}
.x8{left:395.839842pt;}
.x21{left:408.799836pt;}
.x4{left:421.119832pt;}
.xe{left:433.279827pt;}
.x1d{left:440.639824pt;}
.x17{left:442.399823pt;}
.x5{left:499.199800pt;}
.x6{left:501.439799pt;}
.xb{left:503.679799pt;}
.xa{left:508.159797pt;}
.x16{left:517.119793pt;}
.xf{left:519.359792pt;}
.x18{left:527.199789pt;}
.x15{left:531.199788pt;}
.x1e{left:581.279767pt;}
.x19{left:583.359767pt;}
.x1a{left:627.359749pt;}
.x2f{left:639.679744pt;}
.x32{left:643.519743pt;}
.x33{left:645.599742pt;}
.x10{left:646.719741pt;}
.x30{left:647.839741pt;}
.x2d{left:650.399740pt;}
.x2e{left:652.319739pt;}
.x1b{left:675.679730pt;}
.x1f{left:677.599729pt;}
.x1c{left:679.679728pt;}
}




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