
    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_b423c28c813ea28db50f733c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.935000;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_d242010ea95d6e32d2ae1044.woff')format("woff");}.ff2{font-family:ff2;line-height:0.926000;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_88a435d25e5b1b780ac87a24.woff')format("woff");}.ff3{font-family:ff3;line-height:0.936000;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_972a52b928628e663b09a8bb.woff')format("woff");}.ff4{font-family:ff4;line-height:0.941000;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_87e0bed235f3adb4e9e1ce76.woff')format("woff");}.ff5{font-family:ff5;line-height:0.935000;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_db75d96c0f66787c8bcb3ad8.woff')format("woff");}.ff6{font-family:ff6;line-height:0.909000;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_71fbbad390f02fe9ea3c5769.woff')format("woff");}.ff7{font-family:ff7;line-height:0.919000;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-1.800000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-36.696000px;}
.ws5{word-spacing:-32.340000px;}
.ws4{word-spacing:-13.344000px;}
.ws7{word-spacing:-0.240000px;}
.ws8{word-spacing:-0.144000px;}
.ws3{word-spacing:-0.120000px;}
.ws2{word-spacing:-0.060000px;}
.ws1{word-spacing:0.000000px;}
.ws6{word-spacing:1.800000px;}
._1{margin-left:-16.560000px;}
._6{margin-left:-12.144000px;}
._2{margin-left:-9.936000px;}
._a{margin-left:-7.992000px;}
._5{margin-left:-6.660000px;}
._7{margin-left:-5.520000px;}
._3{margin-left:-3.900000px;}
._8{margin-left:-2.760000px;}
._0{margin-left:-1.620000px;}
._4{width:1.080000px;}
._9{width:2.340000px;}
.fc3{color:rgb(42,62,146);}
.fc2{color:rgb(157,23,28);}
.fc1{color:rgb(38,69,143);}
.fc4{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:48.000000px;}
.fs5{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs0{font-size:90.000000px;}
.fs3{font-size:108.000000px;}
.fs4{font-size:132.000000px;}
.fs1{font-size:168.000000px;}
.fs2{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y154{bottom:65.023350px;}
.y84{bottom:76.836000px;}
.yb7{bottom:78.693450px;}
.y153{bottom:86.623350px;}
.y83{bottom:94.836000px;}
.yb6{bottom:96.693450px;}
.y28{bottom:101.452650px;}
.yec{bottom:104.872200px;}
.y4b{bottom:105.349800px;}
.y82{bottom:112.836000px;}
.yb5{bottom:114.693450px;}
.y27{bottom:119.452650px;}
.yeb{bottom:122.872200px;}
.y4a{bottom:123.349800px;}
.y81{bottom:130.836000px;}
.yb4{bottom:132.693450px;}
.y127{bottom:133.014900px;}
.y26{bottom:137.452650px;}
.yea{bottom:140.872200px;}
.y49{bottom:141.349800px;}
.y80{bottom:148.836000px;}
.yb3{bottom:150.693450px;}
.y126{bottom:151.014900px;}
.y25{bottom:155.452650px;}
.y48{bottom:159.349800px;}
.ye9{bottom:163.379700px;}
.y7f{bottom:166.836000px;}
.yb2{bottom:168.693450px;}
.y125{bottom:169.014900px;}
.y24{bottom:173.452650px;}
.y152{bottom:173.873700px;}
.y47{bottom:177.349800px;}
.yf4{bottom:181.372200px;}
.ye8{bottom:184.372200px;}
.y7e{bottom:184.836000px;}
.yb1{bottom:186.693450px;}
.y124{bottom:187.014900px;}
.y23{bottom:191.452650px;}
.y151{bottom:193.376700px;}
.y46{bottom:195.349800px;}
.yf3{bottom:199.372200px;}
.y7d{bottom:202.836000px;}
.yb0{bottom:204.693450px;}
.y123{bottom:205.014900px;}
.y22{bottom:209.452650px;}
.y45{bottom:213.349800px;}
.yf2{bottom:217.372200px;}
.y7c{bottom:220.836000px;}
.y150{bottom:221.872200px;}
.yaf{bottom:222.693450px;}
.y122{bottom:223.014900px;}
.y21{bottom:227.452650px;}
.y44{bottom:231.349800px;}
.ye7{bottom:235.372200px;}
.y7b{bottom:238.836000px;}
.yae{bottom:240.693450px;}
.y121{bottom:241.014900px;}
.y14f{bottom:241.375200px;}
.y20{bottom:245.452650px;}
.y43{bottom:249.349800px;}
.ye6{bottom:253.372200px;}
.y7a{bottom:256.836000px;}
.yad{bottom:258.693450px;}
.y120{bottom:259.014900px;}
.y42{bottom:267.349800px;}
.y14e{bottom:269.870700px;}
.ye5{bottom:271.372200px;}
.y79{bottom:274.836000px;}
.yac{bottom:276.693450px;}
.y11f{bottom:277.014900px;}
.y1f{bottom:281.452650px;}
.y41{bottom:285.349800px;}
.ye4{bottom:289.372200px;}
.y14d{bottom:289.373700px;}
.y78{bottom:292.836000px;}
.yab{bottom:294.693450px;}
.y11e{bottom:295.014900px;}
.y1e{bottom:299.452650px;}
.ye3{bottom:307.372200px;}
.y77{bottom:310.836000px;}
.yaa{bottom:312.693450px;}
.y11d{bottom:313.014900px;}
.y1d{bottom:317.452650px;}
.y14c{bottom:317.869200px;}
.y40{bottom:321.349800px;}
.ye2{bottom:325.372200px;}
.y76{bottom:328.836000px;}
.ya9{bottom:330.693450px;}
.y11c{bottom:331.014900px;}
.y1c{bottom:335.452650px;}
.y14b{bottom:337.372200px;}
.y3f{bottom:339.349800px;}
.ye1{bottom:343.372200px;}
.y75{bottom:346.836000px;}
.ya8{bottom:348.693450px;}
.y11b{bottom:349.014900px;}
.y1b{bottom:353.452650px;}
.y3e{bottom:357.349800px;}
.ye0{bottom:361.372200px;}
.y74{bottom:364.836000px;}
.y11a{bottom:367.014900px;}
.y1a{bottom:371.452650px;}
.y14a{bottom:374.872200px;}
.y3d{bottom:375.349800px;}
.ydf{bottom:379.372200px;}
.y73{bottom:382.836000px;}
.y119{bottom:385.014900px;}
.y19{bottom:389.452650px;}
.y3c{bottom:393.349800px;}
.yde{bottom:397.372200px;}
.ya7{bottom:399.693450px;}
.y72{bottom:400.836000px;}
.y18{bottom:407.452650px;}
.y118{bottom:407.515050px;}
.y3b{bottom:411.349800px;}
.ydd{bottom:415.372200px;}
.y71{bottom:418.836000px;}
.y17{bottom:425.452650px;}
.y3a{bottom:429.349800px;}
.ydc{bottom:433.372200px;}
.y70{bottom:436.836000px;}
.y16{bottom:443.452650px;}
.y149{bottom:446.872200px;}
.y39{bottom:447.349800px;}
.ydb{bottom:451.372200px;}
.y6f{bottom:454.836000px;}
.y15{bottom:461.452650px;}
.y148{bottom:461.872200px;}
.y38{bottom:465.349800px;}
.yda{bottom:469.372200px;}
.y117{bottom:470.514900px;}
.y6e{bottom:472.836000px;}
.y147{bottom:476.872200px;}
.y14{bottom:479.452650px;}
.y37{bottom:483.349800px;}
.yd9{bottom:487.372200px;}
.y116{bottom:488.514900px;}
.y146{bottom:491.872200px;}
.y13{bottom:497.452650px;}
.ya6{bottom:498.693450px;}
.y36{bottom:501.349800px;}
.yd8{bottom:505.372200px;}
.y115{bottom:506.514900px;}
.y145{bottom:506.872200px;}
.y6d{bottom:508.836000px;}
.y12{bottom:515.452650px;}
.ya5{bottom:516.693450px;}
.yd7{bottom:523.372200px;}
.y114{bottom:524.514900px;}
.yf1{bottom:526.372200px;}
.y11{bottom:533.452650px;}
.ya4{bottom:534.693450px;}
.y144{bottom:536.872200px;}
.y35{bottom:537.349800px;}
.y6c{bottom:541.836000px;}
.y113{bottom:542.514900px;}
.y10{bottom:551.452650px;}
.y143{bottom:551.872200px;}
.ya3{bottom:552.693450px;}
.yd6{bottom:559.372200px;}
.y112{bottom:560.514900px;}
.yf{bottom:569.452650px;}
.y34{bottom:570.349800px;}
.ya2{bottom:570.693450px;}
.yd5{bottom:577.372200px;}
.y111{bottom:578.514900px;}
.y142{bottom:581.872200px;}
.ye{bottom:587.452650px;}
.ya1{bottom:588.693450px;}
.yd4{bottom:595.372200px;}
.y110{bottom:596.514900px;}
.y141{bottom:596.872200px;}
.ya0{bottom:606.693450px;}
.y6b{bottom:610.836000px;}
.y140{bottom:611.872200px;}
.yd3{bottom:613.372200px;}
.y10f{bottom:614.514900px;}
.yd{bottom:623.452650px;}
.y9f{bottom:624.693450px;}
.y13f{bottom:626.872200px;}
.y6a{bottom:628.836000px;}
.yd2{bottom:631.372200px;}
.y10e{bottom:632.514900px;}
.y33{bottom:639.352650px;}
.y9e{bottom:642.693450px;}
.y69{bottom:646.836000px;}
.yd1{bottom:649.372200px;}
.y10d{bottom:650.514900px;}
.y13e{bottom:656.872200px;}
.y32{bottom:657.352650px;}
.y9d{bottom:660.693450px;}
.y68{bottom:664.836000px;}
.yd0{bottom:667.372200px;}
.y10c{bottom:668.514900px;}
.y13d{bottom:671.872200px;}
.y31{bottom:675.352650px;}
.y9c{bottom:678.693450px;}
.y67{bottom:682.836000px;}
.ycf{bottom:685.372200px;}
.y10b{bottom:686.514900px;}
.y13c{bottom:686.872200px;}
.y30{bottom:693.352650px;}
.y9b{bottom:696.693450px;}
.yc{bottom:697.552500px;}
.y66{bottom:700.836000px;}
.yce{bottom:703.372200px;}
.y10a{bottom:704.514900px;}
.y2f{bottom:711.352650px;}
.y9a{bottom:714.693450px;}
.yb{bottom:715.552500px;}
.y13b{bottom:716.872200px;}
.y65{bottom:718.836000px;}
.ycd{bottom:721.372200px;}
.y109{bottom:722.514900px;}
.y2e{bottom:729.352650px;}
.y13a{bottom:731.872200px;}
.y99{bottom:732.693450px;}
.ya{bottom:733.552500px;}
.y64{bottom:736.836000px;}
.ycc{bottom:739.372200px;}
.y108{bottom:740.514900px;}
.y139{bottom:746.872200px;}
.y2d{bottom:747.352650px;}
.y98{bottom:750.693450px;}
.y9{bottom:751.552500px;}
.y63{bottom:754.836000px;}
.ycb{bottom:757.372200px;}
.y107{bottom:758.514900px;}
.y2c{bottom:765.352650px;}
.y97{bottom:768.693450px;}
.y8{bottom:769.552500px;}
.y62{bottom:772.836000px;}
.yca{bottom:775.372200px;}
.y106{bottom:776.514900px;}
.y138{bottom:776.872200px;}
.y2b{bottom:783.352650px;}
.y96{bottom:786.693450px;}
.y61{bottom:790.836000px;}
.y137{bottom:791.872200px;}
.yc9{bottom:793.372200px;}
.y105{bottom:794.514900px;}
.y2a{bottom:801.352650px;}
.y95{bottom:804.693450px;}
.y7{bottom:805.552500px;}
.y136{bottom:806.872200px;}
.y60{bottom:808.836000px;}
.yc8{bottom:811.372200px;}
.y104{bottom:812.514900px;}
.y29{bottom:819.352650px;}
.y94{bottom:822.693450px;}
.y5f{bottom:826.836000px;}
.yf0{bottom:829.372200px;}
.y103{bottom:830.514900px;}
.yc7{bottom:832.372200px;}
.y93{bottom:840.693450px;}
.y135{bottom:842.872200px;}
.y5e{bottom:844.836000px;}
.yef{bottom:847.372200px;}
.y102{bottom:848.514900px;}
.y92{bottom:858.693450px;}
.y5d{bottom:862.836000px;}
.yee{bottom:865.372200px;}
.y101{bottom:866.514900px;}
.y91{bottom:876.693450px;}
.y5c{bottom:880.836000px;}
.yc6{bottom:883.372200px;}
.y100{bottom:884.514900px;}
.y6{bottom:891.723750px;}
.y90{bottom:894.693450px;}
.yc5{bottom:901.372200px;}
.y134{bottom:908.872200px;}
.y8f{bottom:912.693450px;}
.y5b{bottom:916.836000px;}
.yc4{bottom:919.372200px;}
.yff{bottom:920.514900px;}
.y133{bottom:926.872200px;}
.y8e{bottom:930.693450px;}
.y5{bottom:933.723750px;}
.y5a{bottom:934.836000px;}
.yc3{bottom:937.372200px;}
.yfe{bottom:938.514900px;}
.y4f{bottom:942.717150px;}
.y132{bottom:944.872200px;}
.y8d{bottom:948.693450px;}
.y59{bottom:952.836000px;}
.yed{bottom:955.372200px;}
.yfd{bottom:956.514900px;}
.y131{bottom:962.872200px;}
.y4e{bottom:963.721650px;}
.y8c{bottom:966.693450px;}
.y58{bottom:970.836000px;}
.yc2{bottom:973.372200px;}
.yfc{bottom:974.514900px;}
.y4{bottom:978.723750px;}
.y130{bottom:980.872200px;}
.y8b{bottom:984.693450px;}
.y57{bottom:988.836000px;}
.y4d{bottom:989.214150px;}
.yc1{bottom:991.372200px;}
.yfb{bottom:992.514900px;}
.y12f{bottom:998.872200px;}
.y8a{bottom:1002.693450px;}
.y56{bottom:1006.836000px;}
.yc0{bottom:1009.372200px;}
.yfa{bottom:1010.514900px;}
.y4c{bottom:1010.812650px;}
.y12e{bottom:1016.872200px;}
.y55{bottom:1024.836000px;}
.ybf{bottom:1027.372200px;}
.yf9{bottom:1028.514900px;}
.y12d{bottom:1034.872200px;}
.y89{bottom:1038.693450px;}
.y54{bottom:1042.836000px;}
.ybe{bottom:1045.372200px;}
.yf8{bottom:1046.514900px;}
.y12c{bottom:1052.872200px;}
.y53{bottom:1060.836000px;}
.ybd{bottom:1063.372200px;}
.yf7{bottom:1067.514900px;}
.y12b{bottom:1070.872200px;}
.y52{bottom:1078.836000px;}
.ybc{bottom:1081.372200px;}
.y12a{bottom:1088.872200px;}
.yf6{bottom:1094.514900px;}
.ybb{bottom:1099.372200px;}
.y2{bottom:1106.822250px;}
.y129{bottom:1106.872200px;}
.y88{bottom:1107.696000px;}
.y51{bottom:1114.836000px;}
.yba{bottom:1117.372200px;}
.y87{bottom:1125.696000px;}
.y128{bottom:1126.372200px;}
.y1{bottom:1133.822250px;}
.yb9{bottom:1135.372200px;}
.yf5{bottom:1139.514900px;}
.y86{bottom:1143.696000px;}
.y50{bottom:1147.836000px;}
.yb8{bottom:1153.372200px;}
.y85{bottom:1161.696000px;}
.y3{bottom:1188.577950px;}
.hc{height:35.088000px;}
.h8{height:43.740000px;}
.h7{height:43.860000px;}
.hd{height:47.124000px;}
.h9{height:48.048000px;}
.ha{height:48.246000px;}
.he{height:52.632000px;}
.h2{height:65.610000px;}
.hb{height:65.790000px;}
.h5{height:78.948000px;}
.h6{height:96.492000px;}
.h3{height:122.808000px;}
.h4{height:131.580000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.x5{left:72.283500px;}
.x9{left:436.535400px;}
.x7{left:452.834700px;}
.x2{left:457.079550px;}
.x6{left:461.338500px;}
.x4{left:472.724550px;}
.x8{left:474.086700px;}
.x3{left:651.968550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-1.600000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-32.618667pt;}
.ws5{word-spacing:-28.746667pt;}
.ws4{word-spacing:-11.861333pt;}
.ws7{word-spacing:-0.213333pt;}
.ws8{word-spacing:-0.128000pt;}
.ws3{word-spacing:-0.106667pt;}
.ws2{word-spacing:-0.053333pt;}
.ws1{word-spacing:0.000000pt;}
.ws6{word-spacing:1.600000pt;}
._1{margin-left:-14.720000pt;}
._6{margin-left:-10.794667pt;}
._2{margin-left:-8.832000pt;}
._a{margin-left:-7.104000pt;}
._5{margin-left:-5.920000pt;}
._7{margin-left:-4.906667pt;}
._3{margin-left:-3.466667pt;}
._8{margin-left:-2.453333pt;}
._0{margin-left:-1.440000pt;}
._4{width:0.960000pt;}
._9{width:2.080000pt;}
.fs7{font-size:42.666667pt;}
.fs5{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs0{font-size:80.000000pt;}
.fs3{font-size:96.000000pt;}
.fs4{font-size:117.333333pt;}
.fs1{font-size:149.333333pt;}
.fs2{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y154{bottom:57.798533pt;}
.y84{bottom:68.298667pt;}
.yb7{bottom:69.949733pt;}
.y153{bottom:76.998533pt;}
.y83{bottom:84.298667pt;}
.yb6{bottom:85.949733pt;}
.y28{bottom:90.180133pt;}
.yec{bottom:93.219733pt;}
.y4b{bottom:93.644267pt;}
.y82{bottom:100.298667pt;}
.yb5{bottom:101.949733pt;}
.y27{bottom:106.180133pt;}
.yeb{bottom:109.219733pt;}
.y4a{bottom:109.644267pt;}
.y81{bottom:116.298667pt;}
.yb4{bottom:117.949733pt;}
.y127{bottom:118.235467pt;}
.y26{bottom:122.180133pt;}
.yea{bottom:125.219733pt;}
.y49{bottom:125.644267pt;}
.y80{bottom:132.298667pt;}
.yb3{bottom:133.949733pt;}
.y126{bottom:134.235467pt;}
.y25{bottom:138.180133pt;}
.y48{bottom:141.644267pt;}
.ye9{bottom:145.226400pt;}
.y7f{bottom:148.298667pt;}
.yb2{bottom:149.949733pt;}
.y125{bottom:150.235467pt;}
.y24{bottom:154.180133pt;}
.y152{bottom:154.554400pt;}
.y47{bottom:157.644267pt;}
.yf4{bottom:161.219733pt;}
.ye8{bottom:163.886400pt;}
.y7e{bottom:164.298667pt;}
.yb1{bottom:165.949733pt;}
.y124{bottom:166.235467pt;}
.y23{bottom:170.180133pt;}
.y151{bottom:171.890400pt;}
.y46{bottom:173.644267pt;}
.yf3{bottom:177.219733pt;}
.y7d{bottom:180.298667pt;}
.yb0{bottom:181.949733pt;}
.y123{bottom:182.235467pt;}
.y22{bottom:186.180133pt;}
.y45{bottom:189.644267pt;}
.yf2{bottom:193.219733pt;}
.y7c{bottom:196.298667pt;}
.y150{bottom:197.219733pt;}
.yaf{bottom:197.949733pt;}
.y122{bottom:198.235467pt;}
.y21{bottom:202.180133pt;}
.y44{bottom:205.644267pt;}
.ye7{bottom:209.219733pt;}
.y7b{bottom:212.298667pt;}
.yae{bottom:213.949733pt;}
.y121{bottom:214.235467pt;}
.y14f{bottom:214.555733pt;}
.y20{bottom:218.180133pt;}
.y43{bottom:221.644267pt;}
.ye6{bottom:225.219733pt;}
.y7a{bottom:228.298667pt;}
.yad{bottom:229.949733pt;}
.y120{bottom:230.235467pt;}
.y42{bottom:237.644267pt;}
.y14e{bottom:239.885067pt;}
.ye5{bottom:241.219733pt;}
.y79{bottom:244.298667pt;}
.yac{bottom:245.949733pt;}
.y11f{bottom:246.235467pt;}
.y1f{bottom:250.180133pt;}
.y41{bottom:253.644267pt;}
.ye4{bottom:257.219733pt;}
.y14d{bottom:257.221067pt;}
.y78{bottom:260.298667pt;}
.yab{bottom:261.949733pt;}
.y11e{bottom:262.235467pt;}
.y1e{bottom:266.180133pt;}
.ye3{bottom:273.219733pt;}
.y77{bottom:276.298667pt;}
.yaa{bottom:277.949733pt;}
.y11d{bottom:278.235467pt;}
.y1d{bottom:282.180133pt;}
.y14c{bottom:282.550400pt;}
.y40{bottom:285.644267pt;}
.ye2{bottom:289.219733pt;}
.y76{bottom:292.298667pt;}
.ya9{bottom:293.949733pt;}
.y11c{bottom:294.235467pt;}
.y1c{bottom:298.180133pt;}
.y14b{bottom:299.886400pt;}
.y3f{bottom:301.644267pt;}
.ye1{bottom:305.219733pt;}
.y75{bottom:308.298667pt;}
.ya8{bottom:309.949733pt;}
.y11b{bottom:310.235467pt;}
.y1b{bottom:314.180133pt;}
.y3e{bottom:317.644267pt;}
.ye0{bottom:321.219733pt;}
.y74{bottom:324.298667pt;}
.y11a{bottom:326.235467pt;}
.y1a{bottom:330.180133pt;}
.y14a{bottom:333.219733pt;}
.y3d{bottom:333.644267pt;}
.ydf{bottom:337.219733pt;}
.y73{bottom:340.298667pt;}
.y119{bottom:342.235467pt;}
.y19{bottom:346.180133pt;}
.y3c{bottom:349.644267pt;}
.yde{bottom:353.219733pt;}
.ya7{bottom:355.283067pt;}
.y72{bottom:356.298667pt;}
.y18{bottom:362.180133pt;}
.y118{bottom:362.235600pt;}
.y3b{bottom:365.644267pt;}
.ydd{bottom:369.219733pt;}
.y71{bottom:372.298667pt;}
.y17{bottom:378.180133pt;}
.y3a{bottom:381.644267pt;}
.ydc{bottom:385.219733pt;}
.y70{bottom:388.298667pt;}
.y16{bottom:394.180133pt;}
.y149{bottom:397.219733pt;}
.y39{bottom:397.644267pt;}
.ydb{bottom:401.219733pt;}
.y6f{bottom:404.298667pt;}
.y15{bottom:410.180133pt;}
.y148{bottom:410.553067pt;}
.y38{bottom:413.644267pt;}
.yda{bottom:417.219733pt;}
.y117{bottom:418.235467pt;}
.y6e{bottom:420.298667pt;}
.y147{bottom:423.886400pt;}
.y14{bottom:426.180133pt;}
.y37{bottom:429.644267pt;}
.yd9{bottom:433.219733pt;}
.y116{bottom:434.235467pt;}
.y146{bottom:437.219733pt;}
.y13{bottom:442.180133pt;}
.ya6{bottom:443.283067pt;}
.y36{bottom:445.644267pt;}
.yd8{bottom:449.219733pt;}
.y115{bottom:450.235467pt;}
.y145{bottom:450.553067pt;}
.y6d{bottom:452.298667pt;}
.y12{bottom:458.180133pt;}
.ya5{bottom:459.283067pt;}
.yd7{bottom:465.219733pt;}
.y114{bottom:466.235467pt;}
.yf1{bottom:467.886400pt;}
.y11{bottom:474.180133pt;}
.ya4{bottom:475.283067pt;}
.y144{bottom:477.219733pt;}
.y35{bottom:477.644267pt;}
.y6c{bottom:481.632000pt;}
.y113{bottom:482.235467pt;}
.y10{bottom:490.180133pt;}
.y143{bottom:490.553067pt;}
.ya3{bottom:491.283067pt;}
.yd6{bottom:497.219733pt;}
.y112{bottom:498.235467pt;}
.yf{bottom:506.180133pt;}
.y34{bottom:506.977600pt;}
.ya2{bottom:507.283067pt;}
.yd5{bottom:513.219733pt;}
.y111{bottom:514.235467pt;}
.y142{bottom:517.219733pt;}
.ye{bottom:522.180133pt;}
.ya1{bottom:523.283067pt;}
.yd4{bottom:529.219733pt;}
.y110{bottom:530.235467pt;}
.y141{bottom:530.553067pt;}
.ya0{bottom:539.283067pt;}
.y6b{bottom:542.965333pt;}
.y140{bottom:543.886400pt;}
.yd3{bottom:545.219733pt;}
.y10f{bottom:546.235467pt;}
.yd{bottom:554.180133pt;}
.y9f{bottom:555.283067pt;}
.y13f{bottom:557.219733pt;}
.y6a{bottom:558.965333pt;}
.yd2{bottom:561.219733pt;}
.y10e{bottom:562.235467pt;}
.y33{bottom:568.313467pt;}
.y9e{bottom:571.283067pt;}
.y69{bottom:574.965333pt;}
.yd1{bottom:577.219733pt;}
.y10d{bottom:578.235467pt;}
.y13e{bottom:583.886400pt;}
.y32{bottom:584.313467pt;}
.y9d{bottom:587.283067pt;}
.y68{bottom:590.965333pt;}
.yd0{bottom:593.219733pt;}
.y10c{bottom:594.235467pt;}
.y13d{bottom:597.219733pt;}
.y31{bottom:600.313467pt;}
.y9c{bottom:603.283067pt;}
.y67{bottom:606.965333pt;}
.ycf{bottom:609.219733pt;}
.y10b{bottom:610.235467pt;}
.y13c{bottom:610.553067pt;}
.y30{bottom:616.313467pt;}
.y9b{bottom:619.283067pt;}
.yc{bottom:620.046667pt;}
.y66{bottom:622.965333pt;}
.yce{bottom:625.219733pt;}
.y10a{bottom:626.235467pt;}
.y2f{bottom:632.313467pt;}
.y9a{bottom:635.283067pt;}
.yb{bottom:636.046667pt;}
.y13b{bottom:637.219733pt;}
.y65{bottom:638.965333pt;}
.ycd{bottom:641.219733pt;}
.y109{bottom:642.235467pt;}
.y2e{bottom:648.313467pt;}
.y13a{bottom:650.553067pt;}
.y99{bottom:651.283067pt;}
.ya{bottom:652.046667pt;}
.y64{bottom:654.965333pt;}
.ycc{bottom:657.219733pt;}
.y108{bottom:658.235467pt;}
.y139{bottom:663.886400pt;}
.y2d{bottom:664.313467pt;}
.y98{bottom:667.283067pt;}
.y9{bottom:668.046667pt;}
.y63{bottom:670.965333pt;}
.ycb{bottom:673.219733pt;}
.y107{bottom:674.235467pt;}
.y2c{bottom:680.313467pt;}
.y97{bottom:683.283067pt;}
.y8{bottom:684.046667pt;}
.y62{bottom:686.965333pt;}
.yca{bottom:689.219733pt;}
.y106{bottom:690.235467pt;}
.y138{bottom:690.553067pt;}
.y2b{bottom:696.313467pt;}
.y96{bottom:699.283067pt;}
.y61{bottom:702.965333pt;}
.y137{bottom:703.886400pt;}
.yc9{bottom:705.219733pt;}
.y105{bottom:706.235467pt;}
.y2a{bottom:712.313467pt;}
.y95{bottom:715.283067pt;}
.y7{bottom:716.046667pt;}
.y136{bottom:717.219733pt;}
.y60{bottom:718.965333pt;}
.yc8{bottom:721.219733pt;}
.y104{bottom:722.235467pt;}
.y29{bottom:728.313467pt;}
.y94{bottom:731.283067pt;}
.y5f{bottom:734.965333pt;}
.yf0{bottom:737.219733pt;}
.y103{bottom:738.235467pt;}
.yc7{bottom:739.886400pt;}
.y93{bottom:747.283067pt;}
.y135{bottom:749.219733pt;}
.y5e{bottom:750.965333pt;}
.yef{bottom:753.219733pt;}
.y102{bottom:754.235467pt;}
.y92{bottom:763.283067pt;}
.y5d{bottom:766.965333pt;}
.yee{bottom:769.219733pt;}
.y101{bottom:770.235467pt;}
.y91{bottom:779.283067pt;}
.y5c{bottom:782.965333pt;}
.yc6{bottom:785.219733pt;}
.y100{bottom:786.235467pt;}
.y6{bottom:792.643333pt;}
.y90{bottom:795.283067pt;}
.yc5{bottom:801.219733pt;}
.y134{bottom:807.886400pt;}
.y8f{bottom:811.283067pt;}
.y5b{bottom:814.965333pt;}
.yc4{bottom:817.219733pt;}
.yff{bottom:818.235467pt;}
.y133{bottom:823.886400pt;}
.y8e{bottom:827.283067pt;}
.y5{bottom:829.976667pt;}
.y5a{bottom:830.965333pt;}
.yc3{bottom:833.219733pt;}
.yfe{bottom:834.235467pt;}
.y4f{bottom:837.970800pt;}
.y132{bottom:839.886400pt;}
.y8d{bottom:843.283067pt;}
.y59{bottom:846.965333pt;}
.yed{bottom:849.219733pt;}
.yfd{bottom:850.235467pt;}
.y131{bottom:855.886400pt;}
.y4e{bottom:856.641467pt;}
.y8c{bottom:859.283067pt;}
.y58{bottom:862.965333pt;}
.yc2{bottom:865.219733pt;}
.yfc{bottom:866.235467pt;}
.y4{bottom:869.976667pt;}
.y130{bottom:871.886400pt;}
.y8b{bottom:875.283067pt;}
.y57{bottom:878.965333pt;}
.y4d{bottom:879.301467pt;}
.yc1{bottom:881.219733pt;}
.yfb{bottom:882.235467pt;}
.y12f{bottom:887.886400pt;}
.y8a{bottom:891.283067pt;}
.y56{bottom:894.965333pt;}
.yc0{bottom:897.219733pt;}
.yfa{bottom:898.235467pt;}
.y4c{bottom:898.500133pt;}
.y12e{bottom:903.886400pt;}
.y55{bottom:910.965333pt;}
.ybf{bottom:913.219733pt;}
.yf9{bottom:914.235467pt;}
.y12d{bottom:919.886400pt;}
.y89{bottom:923.283067pt;}
.y54{bottom:926.965333pt;}
.ybe{bottom:929.219733pt;}
.yf8{bottom:930.235467pt;}
.y12c{bottom:935.886400pt;}
.y53{bottom:942.965333pt;}
.ybd{bottom:945.219733pt;}
.yf7{bottom:948.902133pt;}
.y12b{bottom:951.886400pt;}
.y52{bottom:958.965333pt;}
.ybc{bottom:961.219733pt;}
.y12a{bottom:967.886400pt;}
.yf6{bottom:972.902133pt;}
.ybb{bottom:977.219733pt;}
.y2{bottom:983.842000pt;}
.y129{bottom:983.886400pt;}
.y88{bottom:984.618667pt;}
.y51{bottom:990.965333pt;}
.yba{bottom:993.219733pt;}
.y87{bottom:1000.618667pt;}
.y128{bottom:1001.219733pt;}
.y1{bottom:1007.842000pt;}
.yb9{bottom:1009.219733pt;}
.yf5{bottom:1012.902133pt;}
.y86{bottom:1016.618667pt;}
.y50{bottom:1020.298667pt;}
.yb8{bottom:1025.219733pt;}
.y85{bottom:1032.618667pt;}
.y3{bottom:1056.513733pt;}
.hc{height:31.189333pt;}
.h8{height:38.880000pt;}
.h7{height:38.986667pt;}
.hd{height:41.888000pt;}
.h9{height:42.709333pt;}
.ha{height:42.885333pt;}
.he{height:46.784000pt;}
.h2{height:58.320000pt;}
.hb{height:58.480000pt;}
.h5{height:70.176000pt;}
.h6{height:85.770667pt;}
.h3{height:109.162667pt;}
.h4{height:116.960000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.x5{left:64.252000pt;}
.x9{left:388.031467pt;}
.x7{left:402.519733pt;}
.x2{left:406.292933pt;}
.x6{left:410.078667pt;}
.x4{left:420.199600pt;}
.x8{left:421.410400pt;}
.x3{left:579.527600pt;}
}




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