
    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_11d45c55c7ee7c75c58c4adf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.179000;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_8c8ba5b911b8b686eca2e3df.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958008;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_f7197e99020838738efc7ffd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.171000;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_07611e78df6fa00ec56c132a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.248000;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_5a246d386a46428d6897ab08.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.118652;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_9c510775f9dd45afd430684d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958008;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_d093cbac7a72de0d30b8fe16.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.009123;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_813d210108d911a00fe8ff82.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.118652;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_754eb1fc779a2e60da5e653c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.171000;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_49862df4be32800e19ff5000.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.179000;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_7c75520ac0c3933cce9f03f4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.248000;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;}
.ls3{letter-spacing:-0.570000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.570000px;}
.ls1{letter-spacing:1.140000px;}
.ls5{letter-spacing:1.425000px;}
.ls4{letter-spacing:1.881000px;}
.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;}
}
.ws4{word-spacing:-1.881000px;}
.ws5{word-spacing:-1.425000px;}
.ws1{word-spacing:-1.140000px;}
.ws2{word-spacing:-0.570000px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:0.570000px;}
._16{margin-left:-20.631000px;}
._11{margin-left:-17.715000px;}
._10{margin-left:-15.872400px;}
._e{margin-left:-14.495400px;}
._d{margin-left:-7.656600px;}
._f{margin-left:-6.385800px;}
._1{margin-left:-4.740000px;}
._4{margin-left:-3.294000px;}
._c{margin-left:-1.512000px;}
._b{width:1.873800px;}
._6{width:3.709800px;}
._7{width:5.475600px;}
._8{width:6.971400px;}
._a{width:8.947800px;}
._5{width:10.924200px;}
._9{width:12.128400px;}
._12{width:13.621800px;}
._3{width:15.233400px;}
._13{width:16.851900px;}
._14{width:18.473700px;}
._17{width:19.579500px;}
._18{width:22.053300px;}
._19{width:23.085000px;}
._1a{width:25.775700px;}
._0{width:27.300000px;}
._15{width:28.395000px;}
._2{width:146.040000px;}
.fc1{color:transparent;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:45.000000px;}
.fs5{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs0{font-size:54.000000px;}
.fs9{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.fs1{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y6f{bottom:100.393800px;}
.yc{bottom:102.968700px;}
.y2b{bottom:104.967150px;}
.yc1{bottom:113.860950px;}
.y9b{bottom:114.370650px;}
.y95{bottom:114.447300px;}
.y6e{bottom:118.391550px;}
.y2a{bottom:119.367150px;}
.yb{bottom:120.968700px;}
.y4d{bottom:126.346350px;}
.yc0{bottom:131.858700px;}
.y9a{bottom:132.368400px;}
.y94{bottom:132.445050px;}
.y6d{bottom:136.389300px;}
.ya{bottom:138.968700px;}
.y4c{bottom:141.342600px;}
.ybf{bottom:149.856450px;}
.y99{bottom:150.366150px;}
.y93{bottom:150.442800px;}
.y6c{bottom:154.387050px;}
.y4b{bottom:160.599750px;}
.ybe{bottom:167.854200px;}
.y98{bottom:168.363900px;}
.y92{bottom:168.440550px;}
.y6b{bottom:172.384800px;}
.y4a{bottom:175.593750px;}
.ybd{bottom:185.851950px;}
.y91{bottom:186.438300px;}
.y6a{bottom:190.382550px;}
.ybc{bottom:203.849700px;}
.y97{bottom:204.363900px;}
.y90{bottom:204.436050px;}
.y49{bottom:205.598250px;}
.y69{bottom:208.380300px;}
.y29{bottom:214.767150px;}
.y48{bottom:220.594500px;}
.ybb{bottom:221.847450px;}
.y8f{bottom:222.433800px;}
.y68{bottom:226.378050px;}
.y28{bottom:230.967150px;}
.yba{bottom:239.845200px;}
.y47{bottom:239.851800px;}
.y8e{bottom:240.431550px;}
.y67{bottom:244.375800px;}
.y46{bottom:254.845800px;}
.yb9{bottom:257.842950px;}
.y8d{bottom:258.429300px;}
.y66{bottom:262.373550px;}
.y27{bottom:263.367150px;}
.yb8{bottom:275.840700px;}
.y8c{bottom:276.427050px;}
.y26{bottom:279.567150px;}
.y65{bottom:280.371300px;}
.y45{bottom:284.850300px;}
.yb7{bottom:293.838450px;}
.y8b{bottom:294.424800px;}
.y25{bottom:295.767150px;}
.y64{bottom:298.369050px;}
.y44{bottom:299.846550px;}
.yb6{bottom:311.836200px;}
.y24{bottom:311.967150px;}
.y8a{bottom:312.422550px;}
.y63{bottom:316.366800px;}
.y43{bottom:319.103700px;}
.y23{bottom:328.167150px;}
.yb5{bottom:329.833950px;}
.y89{bottom:330.420300px;}
.y42{bottom:334.097700px;}
.y22{bottom:344.367150px;}
.yb4{bottom:347.831700px;}
.y88{bottom:348.418050px;}
.y62{bottom:352.362300px;}
.y9{bottom:354.968700px;}
.y21{bottom:360.567150px;}
.y41{bottom:364.109850px;}
.yb3{bottom:365.829450px;}
.y87{bottom:366.415800px;}
.y61{bottom:370.360050px;}
.y8{bottom:372.968700px;}
.y20{bottom:376.767150px;}
.y40{bottom:379.106100px;}
.yb2{bottom:383.827200px;}
.y86{bottom:384.413550px;}
.y1f{bottom:392.967150px;}
.y3f{bottom:394.102350px;}
.yb1{bottom:401.824950px;}
.y85{bottom:402.411300px;}
.y60{bottom:406.355550px;}
.y3e{bottom:409.098600px;}
.y1e{bottom:409.167150px;}
.yb0{bottom:419.822700px;}
.y84{bottom:420.409050px;}
.y5f{bottom:424.353300px;}
.y1d{bottom:425.367150px;}
.y3d{bottom:428.367750px;}
.yaf{bottom:437.820450px;}
.y83{bottom:438.406800px;}
.y1c{bottom:441.567150px;}
.y5e{bottom:442.351050px;}
.y3c{bottom:443.361750px;}
.yae{bottom:455.818200px;}
.y82{bottom:456.404550px;}
.y1b{bottom:457.767150px;}
.y3b{bottom:458.355750px;}
.y5d{bottom:460.348800px;}
.y3a{bottom:473.349750px;}
.yad{bottom:473.815950px;}
.y1a{bottom:473.967150px;}
.y81{bottom:474.402300px;}
.y5c{bottom:478.346550px;}
.y19{bottom:490.167150px;}
.yac{bottom:491.813700px;}
.y80{bottom:492.400050px;}
.y5b{bottom:496.344300px;}
.y7{bottom:498.968700px;}
.y39{bottom:503.358000px;}
.y18{bottom:506.367150px;}
.yab{bottom:509.811450px;}
.y7f{bottom:510.397800px;}
.y5a{bottom:514.342050px;}
.y38{bottom:518.354250px;}
.yaa{bottom:527.809200px;}
.y7e{bottom:528.395550px;}
.y59{bottom:532.339800px;}
.y37{bottom:533.350500px;}
.y17{bottom:540.567150px;}
.ya9{bottom:545.806950px;}
.y7d{bottom:546.393300px;}
.y58{bottom:550.337550px;}
.y36{bottom:552.613650px;}
.y6{bottom:556.568700px;}
.y16{bottom:558.567150px;}
.ya8{bottom:563.804700px;}
.y7c{bottom:564.391050px;}
.y35{bottom:567.607650px;}
.y57{bottom:568.335300px;}
.ya7{bottom:581.802450px;}
.y7b{bottom:582.388800px;}
.y34{bottom:582.601650px;}
.y5{bottom:585.368700px;}
.y56{bottom:586.333050px;}
.y15{bottom:594.567150px;}
.ya6{bottom:599.800200px;}
.y7a{bottom:600.386550px;}
.y55{bottom:604.330800px;}
.y14{bottom:612.567150px;}
.y33{bottom:612.606150px;}
.ya5{bottom:617.797950px;}
.y79{bottom:618.384300px;}
.y54{bottom:622.328550px;}
.y4{bottom:622.672650px;}
.y32{bottom:627.602400px;}
.y13{bottom:630.567150px;}
.ya4{bottom:635.795700px;}
.y78{bottom:636.382050px;}
.y53{bottom:640.326300px;}
.y31{bottom:646.859700px;}
.ya3{bottom:653.793450px;}
.y77{bottom:654.379800px;}
.y30{bottom:661.853700px;}
.ya2{bottom:671.791200px;}
.y76{bottom:672.377550px;}
.y52{bottom:676.308300px;}
.y12{bottom:684.567150px;}
.ya1{bottom:689.788950px;}
.y75{bottom:690.375300px;}
.y2f{bottom:691.854450px;}
.y51{bottom:697.314300px;}
.y11{bottom:702.567150px;}
.ya0{bottom:707.786700px;}
.y74{bottom:708.373050px;}
.y2e{bottom:711.106350px;}
.y50{bottom:718.320300px;}
.y10{bottom:720.567150px;}
.y9f{bottom:725.784450px;}
.y73{bottom:726.370800px;}
.y4f{bottom:739.326300px;}
.y9e{bottom:743.782200px;}
.y72{bottom:744.368550px;}
.y2d{bottom:756.106350px;}
.yf{bottom:756.567150px;}
.y3{bottom:759.477150px;}
.y9d{bottom:761.779950px;}
.y71{bottom:762.366300px;}
.ye{bottom:774.567150px;}
.y2{bottom:777.472650px;}
.y4e{bottom:778.326300px;}
.y9c{bottom:779.777700px;}
.y70{bottom:780.364050px;}
.yd{bottom:792.567150px;}
.y1{bottom:793.672650px;}
.y2c{bottom:813.631950px;}
.y96{bottom:814.756950px;}
.h15{height:40.500000px;}
.hc{height:42.030000px;}
.h10{height:44.505000px;}
.h8{height:44.832000px;}
.h9{height:45.000000px;}
.he{height:47.604000px;}
.hd{height:47.619000px;}
.hb{height:47.634000px;}
.h11{height:50.393400px;}
.h2{height:50.436000px;}
.hf{height:50.439000px;}
.h13{height:51.357000px;}
.h12{height:52.734000px;}
.h14{height:53.238000px;}
.h17{height:54.638672px;}
.h6{height:56.040000px;}
.h16{height:56.373000px;}
.h7{height:59.340000px;}
.h5{height:64.872000px;}
.ha{height:65.566406px;}
.h4{height:72.000000px;}
.h3{height:117.000000px;}
.h0{height:918.424500px;}
.h1{height:918.750000px;}
.w1{width:642.000000px;}
.w0{width:642.046500px;}
.x0{left:0.000000px;}
.x1a{left:85.039350px;}
.xd{left:97.795200px;}
.x1e{left:115.109100px;}
.xe{left:119.050200px;}
.x1b{left:127.561350px;}
.x15{left:129.823500px;}
.x1d{left:133.916850px;}
.x18{left:140.314950px;}
.x1{left:144.831300px;}
.x5{left:156.735450px;}
.x9{left:159.988950px;}
.x4{left:162.644700px;}
.x1c{left:165.437850px;}
.x17{left:170.899500px;}
.x1f{left:177.538350px;}
.x3{left:187.666800px;}
.x16{left:202.939500px;}
.x10{left:204.595200px;}
.x2{left:206.067300px;}
.x11{left:215.665200px;}
.x13{left:219.427950px;}
.x7{left:238.164750px;}
.x6{left:240.567450px;}
.x12{left:259.370100px;}
.x8{left:269.023950px;}
.xb{left:272.503950px;}
.xf{left:285.205200px;}
.xa{left:287.233950px;}
.xc{left:298.198950px;}
.x14{left:438.308100px;}
.x19{left:527.625900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.506667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.506667pt;}
.ls1{letter-spacing:1.013333pt;}
.ls5{letter-spacing:1.266667pt;}
.ls4{letter-spacing:1.672000pt;}
.ws4{word-spacing:-1.672000pt;}
.ws5{word-spacing:-1.266667pt;}
.ws1{word-spacing:-1.013333pt;}
.ws2{word-spacing:-0.506667pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:0.506667pt;}
._16{margin-left:-18.338667pt;}
._11{margin-left:-15.746667pt;}
._10{margin-left:-14.108800pt;}
._e{margin-left:-12.884800pt;}
._d{margin-left:-6.805867pt;}
._f{margin-left:-5.676267pt;}
._1{margin-left:-4.213333pt;}
._4{margin-left:-2.928000pt;}
._c{margin-left:-1.344000pt;}
._b{width:1.665600pt;}
._6{width:3.297600pt;}
._7{width:4.867200pt;}
._8{width:6.196800pt;}
._a{width:7.953600pt;}
._5{width:9.710400pt;}
._9{width:10.780800pt;}
._12{width:12.108267pt;}
._3{width:13.540800pt;}
._13{width:14.979467pt;}
._14{width:16.421067pt;}
._17{width:17.404000pt;}
._18{width:19.602933pt;}
._19{width:20.520000pt;}
._1a{width:22.911733pt;}
._0{width:24.266667pt;}
._15{width:25.240000pt;}
._2{width:129.813333pt;}
.fs7{font-size:40.000000pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs0{font-size:48.000000pt;}
.fs9{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.fs1{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y6f{bottom:89.238933pt;}
.yc{bottom:91.527733pt;}
.y2b{bottom:93.304133pt;}
.yc1{bottom:101.209733pt;}
.y9b{bottom:101.662800pt;}
.y95{bottom:101.730933pt;}
.y6e{bottom:105.236933pt;}
.y2a{bottom:106.104133pt;}
.yb{bottom:107.527733pt;}
.y4d{bottom:112.307867pt;}
.yc0{bottom:117.207733pt;}
.y9a{bottom:117.660800pt;}
.y94{bottom:117.728933pt;}
.y6d{bottom:121.234933pt;}
.ya{bottom:123.527733pt;}
.y4c{bottom:125.637867pt;}
.ybf{bottom:133.205733pt;}
.y99{bottom:133.658800pt;}
.y93{bottom:133.726933pt;}
.y6c{bottom:137.232933pt;}
.y4b{bottom:142.755333pt;}
.ybe{bottom:149.203733pt;}
.y98{bottom:149.656800pt;}
.y92{bottom:149.724933pt;}
.y6b{bottom:153.230933pt;}
.y4a{bottom:156.083333pt;}
.ybd{bottom:165.201733pt;}
.y91{bottom:165.722933pt;}
.y6a{bottom:169.228933pt;}
.ybc{bottom:181.199733pt;}
.y97{bottom:181.656800pt;}
.y90{bottom:181.720933pt;}
.y49{bottom:182.754000pt;}
.y69{bottom:185.226933pt;}
.y29{bottom:190.904133pt;}
.y48{bottom:196.084000pt;}
.ybb{bottom:197.197733pt;}
.y8f{bottom:197.718933pt;}
.y68{bottom:201.224933pt;}
.y28{bottom:205.304133pt;}
.yba{bottom:213.195733pt;}
.y47{bottom:213.201600pt;}
.y8e{bottom:213.716933pt;}
.y67{bottom:217.222933pt;}
.y46{bottom:226.529600pt;}
.yb9{bottom:229.193733pt;}
.y8d{bottom:229.714933pt;}
.y66{bottom:233.220933pt;}
.y27{bottom:234.104133pt;}
.yb8{bottom:245.191733pt;}
.y8c{bottom:245.712933pt;}
.y26{bottom:248.504133pt;}
.y65{bottom:249.218933pt;}
.y45{bottom:253.200267pt;}
.yb7{bottom:261.189733pt;}
.y8b{bottom:261.710933pt;}
.y25{bottom:262.904133pt;}
.y64{bottom:265.216933pt;}
.y44{bottom:266.530267pt;}
.yb6{bottom:277.187733pt;}
.y24{bottom:277.304133pt;}
.y8a{bottom:277.708933pt;}
.y63{bottom:281.214933pt;}
.y43{bottom:283.647733pt;}
.y23{bottom:291.704133pt;}
.yb5{bottom:293.185733pt;}
.y89{bottom:293.706933pt;}
.y42{bottom:296.975733pt;}
.y22{bottom:306.104133pt;}
.yb4{bottom:309.183733pt;}
.y88{bottom:309.704933pt;}
.y62{bottom:313.210933pt;}
.y9{bottom:315.527733pt;}
.y21{bottom:320.504133pt;}
.y41{bottom:323.653200pt;}
.yb3{bottom:325.181733pt;}
.y87{bottom:325.702933pt;}
.y61{bottom:329.208933pt;}
.y8{bottom:331.527733pt;}
.y20{bottom:334.904133pt;}
.y40{bottom:336.983200pt;}
.yb2{bottom:341.179733pt;}
.y86{bottom:341.700933pt;}
.y1f{bottom:349.304133pt;}
.y3f{bottom:350.313200pt;}
.yb1{bottom:357.177733pt;}
.y85{bottom:357.698933pt;}
.y60{bottom:361.204933pt;}
.y3e{bottom:363.643200pt;}
.y1e{bottom:363.704133pt;}
.yb0{bottom:373.175733pt;}
.y84{bottom:373.696933pt;}
.y5f{bottom:377.202933pt;}
.y1d{bottom:378.104133pt;}
.y3d{bottom:380.771333pt;}
.yaf{bottom:389.173733pt;}
.y83{bottom:389.694933pt;}
.y1c{bottom:392.504133pt;}
.y5e{bottom:393.200933pt;}
.y3c{bottom:394.099333pt;}
.yae{bottom:405.171733pt;}
.y82{bottom:405.692933pt;}
.y1b{bottom:406.904133pt;}
.y3b{bottom:407.427333pt;}
.y5d{bottom:409.198933pt;}
.y3a{bottom:420.755333pt;}
.yad{bottom:421.169733pt;}
.y1a{bottom:421.304133pt;}
.y81{bottom:421.690933pt;}
.y5c{bottom:425.196933pt;}
.y19{bottom:435.704133pt;}
.yac{bottom:437.167733pt;}
.y80{bottom:437.688933pt;}
.y5b{bottom:441.194933pt;}
.y7{bottom:443.527733pt;}
.y39{bottom:447.429333pt;}
.y18{bottom:450.104133pt;}
.yab{bottom:453.165733pt;}
.y7f{bottom:453.686933pt;}
.y5a{bottom:457.192933pt;}
.y38{bottom:460.759333pt;}
.yaa{bottom:469.163733pt;}
.y7e{bottom:469.684933pt;}
.y59{bottom:473.190933pt;}
.y37{bottom:474.089333pt;}
.y17{bottom:480.504133pt;}
.ya9{bottom:485.161733pt;}
.y7d{bottom:485.682933pt;}
.y58{bottom:489.188933pt;}
.y36{bottom:491.212133pt;}
.y6{bottom:494.727733pt;}
.y16{bottom:496.504133pt;}
.ya8{bottom:501.159733pt;}
.y7c{bottom:501.680933pt;}
.y35{bottom:504.540133pt;}
.y57{bottom:505.186933pt;}
.ya7{bottom:517.157733pt;}
.y7b{bottom:517.678933pt;}
.y34{bottom:517.868133pt;}
.y5{bottom:520.327733pt;}
.y56{bottom:521.184933pt;}
.y15{bottom:528.504133pt;}
.ya6{bottom:533.155733pt;}
.y7a{bottom:533.676933pt;}
.y55{bottom:537.182933pt;}
.y14{bottom:544.504133pt;}
.y33{bottom:544.538800pt;}
.ya5{bottom:549.153733pt;}
.y79{bottom:549.674933pt;}
.y54{bottom:553.180933pt;}
.y4{bottom:553.486800pt;}
.y32{bottom:557.868800pt;}
.y13{bottom:560.504133pt;}
.ya4{bottom:565.151733pt;}
.y78{bottom:565.672933pt;}
.y53{bottom:569.178933pt;}
.y31{bottom:574.986400pt;}
.ya3{bottom:581.149733pt;}
.y77{bottom:581.670933pt;}
.y30{bottom:588.314400pt;}
.ya2{bottom:597.147733pt;}
.y76{bottom:597.668933pt;}
.y52{bottom:601.162933pt;}
.y12{bottom:608.504133pt;}
.ya1{bottom:613.145733pt;}
.y75{bottom:613.666933pt;}
.y2f{bottom:614.981733pt;}
.y51{bottom:619.834933pt;}
.y11{bottom:624.504133pt;}
.ya0{bottom:629.143733pt;}
.y74{bottom:629.664933pt;}
.y2e{bottom:632.094533pt;}
.y50{bottom:638.506933pt;}
.y10{bottom:640.504133pt;}
.y9f{bottom:645.141733pt;}
.y73{bottom:645.662933pt;}
.y4f{bottom:657.178933pt;}
.y9e{bottom:661.139733pt;}
.y72{bottom:661.660933pt;}
.y2d{bottom:672.094533pt;}
.yf{bottom:672.504133pt;}
.y3{bottom:675.090800pt;}
.y9d{bottom:677.137733pt;}
.y71{bottom:677.658933pt;}
.ye{bottom:688.504133pt;}
.y2{bottom:691.086800pt;}
.y4e{bottom:691.845600pt;}
.y9c{bottom:693.135733pt;}
.y70{bottom:693.656933pt;}
.yd{bottom:704.504133pt;}
.y1{bottom:705.486800pt;}
.y2c{bottom:723.228400pt;}
.y96{bottom:724.228400pt;}
.h15{height:36.000000pt;}
.hc{height:37.360000pt;}
.h10{height:39.560000pt;}
.h8{height:39.850667pt;}
.h9{height:40.000000pt;}
.he{height:42.314667pt;}
.hd{height:42.328000pt;}
.hb{height:42.341333pt;}
.h11{height:44.794133pt;}
.h2{height:44.832000pt;}
.hf{height:44.834667pt;}
.h13{height:45.650667pt;}
.h12{height:46.874667pt;}
.h14{height:47.322667pt;}
.h17{height:48.567708pt;}
.h6{height:49.813333pt;}
.h16{height:50.109333pt;}
.h7{height:52.746667pt;}
.h5{height:57.664000pt;}
.ha{height:58.281250pt;}
.h4{height:64.000000pt;}
.h3{height:104.000000pt;}
.h0{height:816.377333pt;}
.h1{height:816.666667pt;}
.w1{width:570.666667pt;}
.w0{width:570.708000pt;}
.x0{left:0.000000pt;}
.x1a{left:75.590533pt;}
.xd{left:86.929067pt;}
.x1e{left:102.319200pt;}
.xe{left:105.822400pt;}
.x1b{left:113.387867pt;}
.x15{left:115.398667pt;}
.x1d{left:119.037200pt;}
.x18{left:124.724400pt;}
.x1{left:128.738933pt;}
.x5{left:139.320400pt;}
.x9{left:142.212400pt;}
.x4{left:144.573067pt;}
.x1c{left:147.055867pt;}
.x17{left:151.910667pt;}
.x1f{left:157.811867pt;}
.x3{left:166.814933pt;}
.x16{left:180.390667pt;}
.x10{left:181.862400pt;}
.x2{left:183.170933pt;}
.x11{left:191.702400pt;}
.x13{left:195.047067pt;}
.x7{left:211.702000pt;}
.x6{left:213.837733pt;}
.x12{left:230.551200pt;}
.x8{left:239.132400pt;}
.xb{left:242.225733pt;}
.xf{left:253.515733pt;}
.xa{left:255.319067pt;}
.xc{left:265.065733pt;}
.x14{left:389.607200pt;}
.x19{left:469.000800pt;}
}




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