
    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_007fae6ce51a3327459e471e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936523;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_6e194042c98720531fb89579.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.936523;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_ad36666eb795c549a2dce038.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.932129;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_55aec60cf41a2e6357d4ab52.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.936523;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_327d4e49f908f77773f986d1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.931641;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_6e6712448e3e95ee837dd1d0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.734375;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_0b9cdf2d88207dff8a3bb776.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.132812;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_aea383c87194f29c5fd5849b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.931641;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_50ff51ebb3d9de390536aa22.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.932129;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_1bdc5fd15facef0f8aa6d53e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.932129;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_e09b8bb4d18723b9c5c739b1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.932129;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:ffc;src:url('chunks/assets/font_409981c4dda9baefd248ecc6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.932129;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:ffd;src:url('chunks/assets/font_c4f4c73251718b4a2fe522f2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.932129;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:ffe;src:url('chunks/assets/font_24a864090e4935ac4c6359f1.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.697754;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:fff;src:url('chunks/assets/font_b91c16235a71d8c867fde73a.woff2')format("woff");}.fff{font-family:fff;line-height:0.932129;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;}
.v1{vertical-align:9.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.018950px;}
.ls3{letter-spacing:0.018971px;}
.ls5{letter-spacing:0.018993px;}
.ls2{letter-spacing:0.020082px;}
.ls1{letter-spacing:0.020105px;}
.ls6{letter-spacing:0.020127px;}
.ls7{letter-spacing:44.387290px;}
.ls8{letter-spacing:44.387313px;}
.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;}
}
.ws7{word-spacing:-156.600000px;}
.ws3{word-spacing:-66.565830px;}
.wsa{word-spacing:-65.249997px;}
.ws6{word-spacing:-62.814174px;}
.ws5{word-spacing:-58.317663px;}
.ws0{word-spacing:-58.011328px;}
.ws8{word-spacing:-47.134203px;}
.ws2{word-spacing:-36.257078px;}
.ws4{word-spacing:-30.005858px;}
.ws9{word-spacing:-22.212390px;}
.ws1{word-spacing:0.000000px;}
._b{margin-left:-15.618684px;}
._3{margin-left:-14.464599px;}
._8{margin-left:-12.187868px;}
._5{margin-left:-9.621778px;}
._0{margin-left:-8.041063px;}
._1{margin-left:-5.594002px;}
._6{margin-left:-3.812086px;}
._4{margin-left:-2.357668px;}
._7{margin-left:-1.011310px;}
._c{width:44.413331px;}
._9{width:4613.427081px;}
._a{width:4621.442706px;}
._2{width:4673.473953px;}
.fcb{color:rgb(10,48,105);}
.fc9{color:rgb(102,57,186);}
.fc8{color:rgb(5,80,174);}
.fc7{color:rgb(207,34,46);}
.fc6{color:rgb(149,56,0);}
.fc5{color:transparent;}
.fc4{color:rgb(119,119,119);}
.fc3{color:rgb(102,102,102);}
.fca{color:rgb(89,99,110);}
.fc2{color:rgb(9,105,218);}
.fc1{color:rgb(31,35,40);}
.fc0{color:rgb(34,68,102);}
.fs3{font-size:80.999997px;}
.fs6{font-size:97.180288px;}
.fs7{font-size:104.673252px;}
.fs4{font-size:107.999996px;}
.fs5{font-size:110.924995px;}
.fs2{font-size:130.499995px;}
.fs1{font-size:143.549994px;}
.fs8{font-size:169.649997px;}
.fs0{font-size:208.800000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000034px;}
.y58{bottom:7.498095px;}
.y6b{bottom:8.264244px;}
.y39{bottom:9.000000px;}
.yc{bottom:32.624999px;}
.yd{bottom:34.874999px;}
.y38{bottom:40.499998px;}
.y8c{bottom:41.624998px;}
.y57{bottom:63.677369px;}
.y6a{bottom:68.775150px;}
.y8e{bottom:70.874997px;}
.y44{bottom:71.999997px;}
.y37{bottom:73.124997px;}
.yb8{bottom:89.999996px;}
.y6d{bottom:93.375030px;}
.y69{bottom:98.499806px;}
.y36{bottom:104.624996px;}
.ya8{bottom:109.124995px;}
.y79{bottom:111.374995px;}
.yb{bottom:112.499995px;}
.y8d{bottom:119.249995px;}
.y85{bottom:122.625029px;}
.y68{bottom:128.224461px;}
.y81{bottom:129.374995px;}
.y43{bottom:136.124994px;}
.y98{bottom:137.250028px;}
.yb7{bottom:139.499994px;}
.y20{bottom:143.999994px;}
.y4d{bottom:157.499993px;}
.y67{bottom:159.010712px;}
.y62{bottom:159.750027px;}
.ya{bottom:161.999993px;}
.y87{bottom:165.375027px;}
.y42{bottom:167.624993px;}
.y8b{bottom:168.749993px;}
.y40{bottom:169.875027px;}
.y78{bottom:177.749993px;}
.y5e{bottom:180.000026px;}
.y9e{bottom:182.249992px;}
.y80{bottom:186.749992px;}
.y89{bottom:191.250026px;}
.yb6{bottom:196.874992px;}
.y1f{bottom:200.249992px;}
.y35{bottom:201.375025px;}
.y4c{bottom:206.999991px;}
.y9{bottom:210.374991px;}
.ya7{bottom:214.874991px;}
.y66{bottom:218.460024px;}
.y5c{bottom:219.374991px;}
.y26{bottom:221.624991px;}
.y13{bottom:226.124991px;}
.yab{bottom:230.624990px;}
.y41{bottom:231.749990px;}
.y8a{bottom:232.874990px;}
.y30{bottom:233.999990px;}
.y2c{bottom:235.124990px;}
.ybe{bottom:238.499990px;}
.y9d{bottom:239.624990px;}
.y7f{bottom:244.124990px;}
.y90{bottom:244.125024px;}
.y77{bottom:245.249990px;}
.yb5{bottom:253.124989px;}
.y4b{bottom:255.374989px;}
.y1e{bottom:257.624989px;}
.y8{bottom:259.874989px;}
.ya6{bottom:263.249989px;}
.y71{bottom:264.374989px;}
.y3c{bottom:265.500023px;}
.y53{bottom:267.749989px;}
.y65{bottom:278.970930px;}
.y56{bottom:280.125022px;}
.y94{bottom:282.375022px;}
.y12{bottom:283.499988px;}
.ybd{bottom:286.874988px;}
.y25{bottom:287.999988px;}
.y5b{bottom:291.375022px;}
.y2b{bottom:292.499988px;}
.y60{bottom:295.874988px;}
.y7e{bottom:300.374987px;}
.y2f{bottom:301.499987px;}
.y64{bottom:308.695586px;}
.yb4{bottom:310.499987px;}
.y76{bottom:311.624987px;}
.y4a{bottom:312.749987px;}
.y1d{bottom:314.999987px;}
.y17{bottom:316.124987px;}
.yb0{bottom:320.624987px;}
.ya5{bottom:320.712872px;}
.y52{bottom:325.124986px;}
.y7{bottom:326.249986px;}
.y5f{bottom:327.374986px;}
.ybc{bottom:336.374986px;}
.y11{bottom:339.749986px;}
.y2a{bottom:340.874986px;}
.y24{bottom:345.374986px;}
.y2e{bottom:349.874985px;}
.y7d{bottom:357.749985px;}
.yb3{bottom:359.999985px;}
.y93{bottom:365.712870px;}
.ya4{bottom:369.087870px;}
.y63{bottom:369.206492px;}
.y49{bottom:370.124985px;}
.y16{bottom:373.499984px;}
.y6{bottom:375.749984px;}
.yaf{bottom:377.999984px;}
.y75{bottom:379.124984px;}
.y34{bottom:380.249984px;}
.y1c{bottom:381.374984px;}
.ybb{bottom:384.749984px;}
.y70{bottom:391.499984px;}
.y9c{bottom:393.749984px;}
.y10{bottom:397.124983px;}
.y29{bottom:398.249983px;}
.y23{bottom:402.749983px;}
.y2d{bottom:407.249983px;}
.y55{bottom:415.124983px;}
.yb2{bottom:416.249983px;}
.ya3{bottom:418.587868px;}
.y6f{bottom:422.999982px;}
.y48{bottom:426.374982px;}
.y3b{bottom:429.749982px;}
.y15{bottom:430.874982px;}
.y84{bottom:432.000016px;}
.yae{bottom:435.374982px;}
.y33{bottom:437.624982px;}
.y5{bottom:438.749982px;}
.y9b{bottom:443.249982px;}
.y97{bottom:444.374981px;}
.y74{bottom:445.499981px;}
.y1b{bottom:448.874981px;}
.yba{bottom:452.249981px;}
.y28{bottom:455.624981px;}
.yaa{bottom:458.999981px;}
.yf{bottom:464.624981px;}
.ya2{bottom:467.999981px;}
.y22{bottom:469.124980px;}
.y5a{bottom:471.374980px;}
.y7c{bottom:472.499980px;}
.yb1{bottom:473.624980px;}
.y3f{bottom:476.999980px;}
.y51{bottom:479.249980px;}
.y92{bottom:480.374980px;}
.y47{bottom:483.749980px;}
.yac{bottom:484.874980px;}
.y6e{bottom:487.124980px;}
.y32{bottom:494.999979px;}
.y1a{bottom:497.249979px;}
.y54{bottom:498.374979px;}
.y96{bottom:500.624979px;}
.y3a{bottom:512.999979px;}
.y14{bottom:514.124979px;}
.ya1{bottom:516.374978px;}
.y7b{bottom:520.874978px;}
.y3e{bottom:525.374978px;}
.y9a{bottom:526.499978px;}
.y4{bottom:529.874978px;}
.y88{bottom:530.999978px;}
.y46{bottom:533.249978px;}
.y8f{bottom:534.374978px;}
.yb9{bottom:535.499978px;}
.y50{bottom:536.712863px;}
.y27{bottom:538.874978px;}
.ya9{bottom:542.249977px;}
.y19{bottom:546.749977px;}
.ye{bottom:547.874977px;}
.y21{bottom:552.374977px;}
.y59{bottom:553.499977px;}
.y83{bottom:557.999977px;}
.y91{bottom:563.624977px;}
.yad{bottom:566.999976px;}
.y31{bottom:577.124976px;}
.y73{bottom:579.374976px;}
.y4f{bottom:586.124976px;}
.y7a{bottom:588.374975px;}
.y99{bottom:591.749975px;}
.y3{bottom:595.124975px;}
.y5d{bottom:598.499975px;}
.ya0{bottom:599.624975px;}
.y3d{bottom:608.624975px;}
.y86{bottom:613.124974px;}
.y45{bottom:615.374974px;}
.y61{bottom:618.749974px;}
.y18{bottom:629.999974px;}
.y95{bottom:641.249973px;}
.y82{bottom:655.874973px;}
.y2{bottom:660.374972px;}
.y72{bottom:662.624972px;}
.y9f{bottom:664.874972px;}
.y4e{bottom:669.374972px;}
.y6c{bottom:670.499972px;}
.h19{height:32.624999px;}
.h5{height:58.693357px;}
.ha{height:64.124997px;}
.h12{height:75.847220px;}
.h6{height:78.257809px;}
.hf{height:80.377292px;}
.hd{height:80.904488px;}
.hc{height:84.374996px;}
.h11{height:87.142527px;}
.h7{height:87.257809px;}
.h9{height:92.347225px;}
.h18{height:94.209980px;}
.h4{height:94.561519px;}
.h3{height:104.017671px;}
.h14{height:122.929979px;}
.h8{height:128.249995px;}
.h2{height:151.298438px;}
.h15{height:159.749993px;}
.h17{height:223.874991px;}
.hb{height:255.374989px;}
.h16{height:287.999988px;}
.he{height:350.999985px;}
.h10{height:391.499984px;}
.h13{height:510.749979px;}
.h1{height:809.999966px;}
.h0{height:810.000000px;}
.w1{width:719.999970px;}
.w4{width:863.999964px;}
.w6{width:1225.080489px;}
.w5{width:1225.102449px;}
.w3{width:1225.124949px;}
.w2{width:1439.999940px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x2{left:33.749999px;}
.x1{left:88.312496px;}
.x6{left:107.999996px;}
.x5{left:125.806635px;}
.x4{left:153.562494px;}
.x8{left:164.654290px;}
.x7{left:218.812491px;}
.x9{left:1376.208933px;}
.x3{left:1391.220651px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:8.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.016845pt;}
.ls3{letter-spacing:0.016864pt;}
.ls5{letter-spacing:0.016882pt;}
.ls2{letter-spacing:0.017851pt;}
.ls1{letter-spacing:0.017871pt;}
.ls6{letter-spacing:0.017891pt;}
.ls7{letter-spacing:39.455369pt;}
.ls8{letter-spacing:39.455389pt;}
.ws7{word-spacing:-139.200000pt;}
.ws3{word-spacing:-59.169627pt;}
.wsa{word-spacing:-57.999998pt;}
.ws6{word-spacing:-55.834821pt;}
.ws5{word-spacing:-51.837923pt;}
.ws0{word-spacing:-51.565625pt;}
.ws8{word-spacing:-41.897069pt;}
.ws2{word-spacing:-32.228514pt;}
.ws4{word-spacing:-26.671874pt;}
.ws9{word-spacing:-19.744347pt;}
.ws1{word-spacing:0.000000pt;}
._b{margin-left:-13.883275pt;}
._3{margin-left:-12.857421pt;}
._8{margin-left:-10.833661pt;}
._5{margin-left:-8.552692pt;}
._0{margin-left:-7.147611pt;}
._1{margin-left:-4.972446pt;}
._6{margin-left:-3.388521pt;}
._4{margin-left:-2.095704pt;}
._7{margin-left:-0.898943pt;}
._c{width:39.478516pt;}
._9{width:4100.824072pt;}
._a{width:4107.949072pt;}
._2{width:4154.199070pt;}
.fs3{font-size:71.999997pt;}
.fs6{font-size:86.382478pt;}
.fs7{font-size:93.042891pt;}
.fs4{font-size:95.999996pt;}
.fs5{font-size:98.599996pt;}
.fs2{font-size:115.999995pt;}
.fs1{font-size:127.599995pt;}
.fs8{font-size:150.799998pt;}
.fs0{font-size:185.600000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000030pt;}
.y58{bottom:6.664973pt;}
.y6b{bottom:7.345994pt;}
.y39{bottom:8.000000pt;}
.yc{bottom:28.999999pt;}
.yd{bottom:30.999999pt;}
.y38{bottom:35.999999pt;}
.y8c{bottom:36.999998pt;}
.y57{bottom:56.602106pt;}
.y6a{bottom:61.133467pt;}
.y8e{bottom:62.999997pt;}
.y44{bottom:63.999997pt;}
.y37{bottom:64.999997pt;}
.yb8{bottom:79.999997pt;}
.y6d{bottom:83.000027pt;}
.y69{bottom:87.555383pt;}
.y36{bottom:92.999996pt;}
.ya8{bottom:96.999996pt;}
.y79{bottom:98.999996pt;}
.yb{bottom:99.999996pt;}
.y8d{bottom:105.999996pt;}
.y85{bottom:109.000025pt;}
.y68{bottom:113.977299pt;}
.y81{bottom:114.999995pt;}
.y43{bottom:120.999995pt;}
.y98{bottom:122.000025pt;}
.yb7{bottom:123.999995pt;}
.y20{bottom:127.999995pt;}
.y4d{bottom:139.999994pt;}
.y67{bottom:141.342855pt;}
.y62{bottom:142.000024pt;}
.ya{bottom:143.999994pt;}
.y87{bottom:147.000024pt;}
.y42{bottom:148.999994pt;}
.y8b{bottom:149.999994pt;}
.y40{bottom:151.000024pt;}
.y78{bottom:157.999993pt;}
.y5e{bottom:160.000023pt;}
.y9e{bottom:161.999993pt;}
.y80{bottom:165.999993pt;}
.y89{bottom:170.000023pt;}
.yb6{bottom:174.999993pt;}
.y1f{bottom:177.999993pt;}
.y35{bottom:179.000023pt;}
.y4c{bottom:183.999992pt;}
.y9{bottom:186.999992pt;}
.ya7{bottom:190.999992pt;}
.y66{bottom:194.186688pt;}
.y5c{bottom:194.999992pt;}
.y26{bottom:196.999992pt;}
.y13{bottom:200.999992pt;}
.yab{bottom:204.999991pt;}
.y41{bottom:205.999991pt;}
.y8a{bottom:206.999991pt;}
.y30{bottom:207.999991pt;}
.y2c{bottom:208.999991pt;}
.ybe{bottom:211.999991pt;}
.y9d{bottom:212.999991pt;}
.y7f{bottom:216.999991pt;}
.y90{bottom:217.000021pt;}
.y77{bottom:217.999991pt;}
.yb5{bottom:224.999991pt;}
.y4b{bottom:226.999991pt;}
.y1e{bottom:228.999990pt;}
.y8{bottom:230.999990pt;}
.ya6{bottom:233.999990pt;}
.y71{bottom:234.999990pt;}
.y3c{bottom:236.000020pt;}
.y53{bottom:237.999990pt;}
.y65{bottom:247.974160pt;}
.y56{bottom:249.000020pt;}
.y94{bottom:251.000020pt;}
.y12{bottom:251.999989pt;}
.ybd{bottom:254.999989pt;}
.y25{bottom:255.999989pt;}
.y5b{bottom:259.000019pt;}
.y2b{bottom:259.999989pt;}
.y60{bottom:262.999989pt;}
.y7e{bottom:266.999989pt;}
.y2f{bottom:267.999989pt;}
.y64{bottom:274.396076pt;}
.yb4{bottom:275.999988pt;}
.y76{bottom:276.999988pt;}
.y4a{bottom:277.999988pt;}
.y1d{bottom:279.999988pt;}
.y17{bottom:280.999988pt;}
.yb0{bottom:284.999988pt;}
.ya5{bottom:285.078108pt;}
.y52{bottom:288.999988pt;}
.y7{bottom:289.999988pt;}
.y5f{bottom:290.999988pt;}
.ybc{bottom:298.999988pt;}
.y11{bottom:301.999987pt;}
.y2a{bottom:302.999987pt;}
.y24{bottom:306.999987pt;}
.y2e{bottom:310.999987pt;}
.y7d{bottom:317.999987pt;}
.yb3{bottom:319.999987pt;}
.y93{bottom:325.078106pt;}
.ya4{bottom:328.078106pt;}
.y63{bottom:328.183548pt;}
.y49{bottom:328.999986pt;}
.y16{bottom:331.999986pt;}
.y6{bottom:333.999986pt;}
.yaf{bottom:335.999986pt;}
.y75{bottom:336.999986pt;}
.y34{bottom:337.999986pt;}
.y1c{bottom:338.999986pt;}
.ybb{bottom:341.999986pt;}
.y70{bottom:347.999986pt;}
.y9c{bottom:349.999985pt;}
.y10{bottom:352.999985pt;}
.y29{bottom:353.999985pt;}
.y23{bottom:357.999985pt;}
.y2d{bottom:361.999985pt;}
.y55{bottom:368.999985pt;}
.yb2{bottom:369.999985pt;}
.ya3{bottom:372.078104pt;}
.y6f{bottom:375.999984pt;}
.y48{bottom:378.999984pt;}
.y3b{bottom:381.999984pt;}
.y15{bottom:382.999984pt;}
.y84{bottom:384.000014pt;}
.yae{bottom:386.999984pt;}
.y33{bottom:388.999984pt;}
.y5{bottom:389.999984pt;}
.y9b{bottom:393.999984pt;}
.y97{bottom:394.999984pt;}
.y74{bottom:395.999984pt;}
.y1b{bottom:398.999983pt;}
.yba{bottom:401.999983pt;}
.y28{bottom:404.999983pt;}
.yaa{bottom:407.999983pt;}
.yf{bottom:412.999983pt;}
.ya2{bottom:415.999983pt;}
.y22{bottom:416.999983pt;}
.y5a{bottom:418.999983pt;}
.y7c{bottom:419.999982pt;}
.yb1{bottom:420.999982pt;}
.y3f{bottom:423.999982pt;}
.y51{bottom:425.999982pt;}
.y92{bottom:426.999982pt;}
.y47{bottom:429.999982pt;}
.yac{bottom:430.999982pt;}
.y6e{bottom:432.999982pt;}
.y32{bottom:439.999982pt;}
.y1a{bottom:441.999982pt;}
.y54{bottom:442.999982pt;}
.y96{bottom:444.999981pt;}
.y3a{bottom:455.999981pt;}
.y14{bottom:456.999981pt;}
.ya1{bottom:458.999981pt;}
.y7b{bottom:462.999981pt;}
.y3e{bottom:466.999981pt;}
.y9a{bottom:467.999981pt;}
.y4{bottom:470.999980pt;}
.y88{bottom:471.999980pt;}
.y46{bottom:473.999980pt;}
.y8f{bottom:474.999980pt;}
.yb9{bottom:475.999980pt;}
.y50{bottom:477.078100pt;}
.y27{bottom:478.999980pt;}
.ya9{bottom:481.999980pt;}
.y19{bottom:485.999980pt;}
.ye{bottom:486.999980pt;}
.y21{bottom:490.999980pt;}
.y59{bottom:491.999980pt;}
.y83{bottom:495.999979pt;}
.y91{bottom:500.999979pt;}
.yad{bottom:503.999979pt;}
.y31{bottom:512.999979pt;}
.y73{bottom:514.999979pt;}
.y4f{bottom:520.999978pt;}
.y7a{bottom:522.999978pt;}
.y99{bottom:525.999978pt;}
.y3{bottom:528.999978pt;}
.y5d{bottom:531.999978pt;}
.ya0{bottom:532.999978pt;}
.y3d{bottom:540.999977pt;}
.y86{bottom:544.999977pt;}
.y45{bottom:546.999977pt;}
.y61{bottom:549.999977pt;}
.y18{bottom:559.999977pt;}
.y95{bottom:569.999976pt;}
.y82{bottom:582.999976pt;}
.y2{bottom:586.999976pt;}
.y72{bottom:588.999975pt;}
.y9f{bottom:590.999975pt;}
.y4e{bottom:594.999975pt;}
.y6c{bottom:595.999975pt;}
.h19{height:28.999999pt;}
.h5{height:52.171873pt;}
.ha{height:56.999998pt;}
.h12{height:67.419751pt;}
.h6{height:69.562497pt;}
.hf{height:71.446481pt;}
.hd{height:71.915100pt;}
.hc{height:74.999997pt;}
.h11{height:77.460024pt;}
.h7{height:77.562497pt;}
.h9{height:82.086422pt;}
.h18{height:83.742204pt;}
.h4{height:84.054684pt;}
.h3{height:92.460152pt;}
.h14{height:109.271092pt;}
.h8{height:113.999995pt;}
.h2{height:134.487500pt;}
.h15{height:141.999994pt;}
.h17{height:198.999992pt;}
.hb{height:226.999991pt;}
.h16{height:255.999989pt;}
.he{height:311.999987pt;}
.h10{height:347.999986pt;}
.h13{height:453.999981pt;}
.h1{height:719.999970pt;}
.h0{height:720.000000pt;}
.w1{width:639.999973pt;}
.w4{width:767.999968pt;}
.w6{width:1088.960435pt;}
.w5{width:1088.979955pt;}
.w3{width:1088.999955pt;}
.w2{width:1279.999947pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x2{left:29.999999pt;}
.x1{left:78.499997pt;}
.x6{left:95.999996pt;}
.x5{left:111.828120pt;}
.x4{left:136.499994pt;}
.x8{left:146.359369pt;}
.x7{left:194.499992pt;}
.x9{left:1223.296829pt;}
.x3{left:1236.640578pt;}
}




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