
    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_0761cc27f81ece1eebd52a24.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_0144b8ce2b2d0f92f96fe13a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_dbabd700a05a734417d8bf3c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.858398;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_64f7b4de076b928bb343dba6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_35d63297d0b4cae5e10fef09.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.765625;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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:155.232000px;}
.ls2{letter-spacing:155.880000px;}
.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;}
}
.wse{word-spacing:-55.944000px;}
.ws92{word-spacing:-38.863800px;}
.ws6{word-spacing:-38.657700px;}
.ws1a{word-spacing:-38.656800px;}
.ws4e{word-spacing:-38.653200px;}
.ws49{word-spacing:-38.651400px;}
.ws5{word-spacing:-38.647800px;}
.ws71{word-spacing:-38.647200px;}
.ws79{word-spacing:-38.594400px;}
.ws6a{word-spacing:-38.588400px;}
.ws61{word-spacing:-38.440800px;}
.ws57{word-spacing:-38.439900px;}
.ws48{word-spacing:-38.439600px;}
.ws67{word-spacing:-38.439000px;}
.ws63{word-spacing:-38.437200px;}
.ws55{word-spacing:-38.422800px;}
.ws53{word-spacing:-38.418300px;}
.ws3{word-spacing:-38.374200px;}
.ws21{word-spacing:-38.304000px;}
.ws87{word-spacing:-38.162400px;}
.ws47{word-spacing:-38.160000px;}
.wsa{word-spacing:-38.157300px;}
.wsb{word-spacing:-38.156400px;}
.ws96{word-spacing:-38.149800px;}
.ws41{word-spacing:-38.146800px;}
.ws75{word-spacing:-38.136000px;}
.ws9{word-spacing:-38.066700px;}
.ws0{word-spacing:-37.944000px;}
.ws81{word-spacing:-37.939200px;}
.ws4{word-spacing:-37.938600px;}
.ws4f{word-spacing:-37.937400px;}
.ws3b{word-spacing:-37.936800px;}
.ws2b{word-spacing:-37.935900px;}
.ws17{word-spacing:-37.935000px;}
.ws65{word-spacing:-37.933200px;}
.ws52{word-spacing:-37.932600px;}
.ws2{word-spacing:-37.931400px;}
.wsf{word-spacing:-37.930500px;}
.ws6b{word-spacing:-37.927800px;}
.ws74{word-spacing:-37.924200px;}
.ws26{word-spacing:-37.865700px;}
.wsc{word-spacing:-37.720800px;}
.ws25{word-spacing:-37.420200px;}
.ws3f{word-spacing:-37.217400px;}
.wsd{word-spacing:-37.213200px;}
.ws56{word-spacing:-36.501300px;}
.ws59{word-spacing:-36.006000px;}
.ws45{word-spacing:-35.790000px;}
.ws82{word-spacing:-35.775000px;}
.ws54{word-spacing:-35.559600px;}
.ws8f{word-spacing:-35.554800px;}
.ws83{word-spacing:-35.064000px;}
.ws50{word-spacing:-35.056800px;}
.ws32{word-spacing:-35.055300px;}
.ws68{word-spacing:-35.055000px;}
.ws20{word-spacing:-34.690500px;}
.ws7d{word-spacing:-33.840000px;}
.ws66{word-spacing:-33.605400px;}
.ws8{word-spacing:-33.547800px;}
.ws8c{word-spacing:-32.904000px;}
.ws12{word-spacing:-32.891100px;}
.ws78{word-spacing:-32.680800px;}
.ws18{word-spacing:-32.397900px;}
.ws27{word-spacing:-32.396400px;}
.ws10{word-spacing:-32.381100px;}
.ws19{word-spacing:-32.186400px;}
.ws7f{word-spacing:-32.184000px;}
.ws69{word-spacing:-32.181900px;}
.ws8e{word-spacing:-32.180400px;}
.ws7a{word-spacing:-32.175000px;}
.ws11{word-spacing:-32.167800px;}
.ws15{word-spacing:-31.674000px;}
.ws3a{word-spacing:-30.735000px;}
.ws1f{word-spacing:-30.160800px;}
.ws60{word-spacing:-30.024000px;}
.ws39{word-spacing:-29.307300px;}
.ws37{word-spacing:-29.302800px;}
.ws6e{word-spacing:-28.572000px;}
.ws5c{word-spacing:-28.571400px;}
.ws4a{word-spacing:-28.357200px;}
.ws4c{word-spacing:-27.845400px;}
.ws64{word-spacing:-27.129600px;}
.ws31{word-spacing:-26.640000px;}
.ws28{word-spacing:-26.409600px;}
.ws72{word-spacing:-26.407800px;}
.ws1c{word-spacing:-26.335800px;}
.ws1b{word-spacing:-25.920000px;}
.ws94{word-spacing:-25.703100px;}
.ws44{word-spacing:-25.701000px;}
.ws62{word-spacing:-25.700400px;}
.ws4d{word-spacing:-25.695000px;}
.ws2a{word-spacing:-25.616700px;}
.ws86{word-spacing:-25.191000px;}
.ws91{word-spacing:-24.990000px;}
.ws40{word-spacing:-24.971400px;}
.ws34{word-spacing:-24.760800px;}
.ws43{word-spacing:-24.031800px;}
.ws77{word-spacing:-23.544000px;}
.ws4b{word-spacing:-23.040000px;}
.ws30{word-spacing:-20.160000px;}
.ws2f{word-spacing:-20.145600px;}
.ws8d{word-spacing:-19.723200px;}
.ws38{word-spacing:-19.217400px;}
.ws7b{word-spacing:-19.216800px;}
.ws7{word-spacing:-18.472500px;}
.ws6c{word-spacing:-17.775000px;}
.ws5f{word-spacing:-17.557200px;}
.ws14{word-spacing:-17.049000px;}
.ws95{word-spacing:-16.551000px;}
.ws73{word-spacing:-16.327200px;}
.ws35{word-spacing:-16.122600px;}
.ws88{word-spacing:-14.891400px;}
.ws80{word-spacing:-14.178000px;}
.ws5a{word-spacing:-14.167800px;}
.ws42{word-spacing:-12.735000px;}
.ws93{word-spacing:-11.800800px;}
.ws5e{word-spacing:-11.787600px;}
.ws29{word-spacing:-11.221200px;}
.ws70{word-spacing:-11.055600px;}
.ws5b{word-spacing:-10.357200px;}
.ws16{word-spacing:-10.086000px;}
.ws7c{word-spacing:-9.621600px;}
.ws5d{word-spacing:-8.419500px;}
.ws33{word-spacing:-8.418600px;}
.ws1e{word-spacing:-7.920000px;}
.ws1d{word-spacing:-6.317100px;}
.ws8a{word-spacing:-6.258000px;}
.ws76{word-spacing:-5.533200px;}
.ws89{word-spacing:-5.304600px;}
.ws2e{word-spacing:-4.804200px;}
.ws13{word-spacing:-2.653200px;}
.ws51{word-spacing:-2.644200px;}
.ws6f{word-spacing:-2.155200px;}
.ws36{word-spacing:-0.491400px;}
.ws84{word-spacing:-0.490200px;}
.ws58{word-spacing:0.000000px;}
.ws8b{word-spacing:0.216000px;}
.ws46{word-spacing:2.880000px;}
.ws90{word-spacing:4.770000px;}
.ws85{word-spacing:5.262600px;}
.ws3c{word-spacing:6.199200px;}
.ws7e{word-spacing:7.210200px;}
.ws2d{word-spacing:8.146800px;}
.ws2c{word-spacing:8.652600px;}
.ws6d{word-spacing:9.586800px;}
.ws3e{word-spacing:11.032200px;}
.ws3d{word-spacing:21.114000px;}
.ws24{word-spacing:22.181700px;}
.ws23{word-spacing:49.896000px;}
.ws22{word-spacing:50.394000px;}
.ws97{word-spacing:106.056000px;}
.ws1{word-spacing:455.092800px;}
._19{margin-left:-2.421600px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._1e{width:2.421600px;}
._4{width:18.775800px;}
._11{width:19.917900px;}
._20{width:21.538200px;}
._f{width:22.869000px;}
._6{width:24.821700px;}
._7{width:25.969200px;}
._e{width:27.136800px;}
._12{width:28.303800px;}
._22{width:29.347200px;}
._c{width:30.871800px;}
._13{width:32.291400px;}
._18{width:33.702600px;}
._29{width:34.764000px;}
._1{width:36.000000px;}
._16{width:37.137600px;}
._1b{width:38.235600px;}
._26{width:39.429600px;}
._a{width:40.450800px;}
._28{width:41.748000px;}
._23{width:43.039800px;}
._5{width:44.568000px;}
._25{width:45.857400px;}
._b{width:46.868100px;}
._8{width:48.062100px;}
._17{width:49.066500px;}
._d{width:51.387000px;}
._15{width:52.777200px;}
._9{width:54.582000px;}
._1a{width:56.827800px;}
._2c{width:57.954000px;}
._21{width:60.170400px;}
._2b{width:62.643600px;}
._1c{width:63.788400px;}
._14{width:65.197800px;}
._27{width:66.567600px;}
._1f{width:68.809800px;}
._2d{width:74.028000px;}
._1d{width:78.390000px;}
._2a{width:83.434200px;}
._24{width:85.474800px;}
._10{width:107.076000px;}
._2e{width:121.692000px;}
._2f{width:162.000000px;}
._0{width:612.144000px;}
.fc4{color:rgb(57,100,254);}
.fc5{color:rgb(15,17,21);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:4.471500px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y2d{bottom:116.896500px;}
.y91{bottom:135.975000px;}
.y2c{bottom:137.596500px;}
.y70{bottom:141.736500px;}
.y55{bottom:143.536500px;}
.y2b{bottom:158.296500px;}
.y90{bottom:161.175000px;}
.y6f{bottom:162.436500px;}
.y54{bottom:164.236500px;}
.y6e{bottom:183.136500px;}
.y2a{bottom:199.875000px;}
.y8f{bottom:205.096500px;}
.y53{bottom:205.996500px;}
.y29{bottom:220.575000px;}
.y6d{bottom:224.896500px;}
.y52{bottom:226.696500px;}
.y28{bottom:241.275000px;}
.y8e{bottom:246.675000px;}
.y51{bottom:247.396500px;}
.y27{bottom:261.975000px;}
.y6c{bottom:266.475000px;}
.y8d{bottom:267.375000px;}
.y50{bottom:268.096500px;}
.y26{bottom:282.675000px;}
.y6b{bottom:287.175000px;}
.y8c{bottom:288.075000px;}
.y4f{bottom:288.795000px;}
.y25{bottom:303.375000px;}
.y6a{bottom:307.875000px;}
.y8b{bottom:308.775000px;}
.y4e{bottom:309.496500px;}
.y24{bottom:324.075000px;}
.y69{bottom:328.575000px;}
.y8a{bottom:329.475000px;}
.y23{bottom:344.775000px;}
.y89{bottom:350.175000px;}
.y4d{bottom:351.075000px;}
.y22{bottom:365.475000px;}
.y68{bottom:370.336500px;}
.y4c{bottom:371.775000px;}
.y21{bottom:386.175000px;}
.y67{bottom:391.036500px;}
.y88{bottom:391.936500px;}
.y4b{bottom:392.475000px;}
.y20{bottom:406.875000px;}
.y66{bottom:411.736500px;}
.y4a{bottom:413.175000px;}
.y1f{bottom:427.575000px;}
.y87{bottom:433.696500px;}
.y49{bottom:433.875000px;}
.y65{bottom:453.496500px;}
.y86{bottom:454.396500px;}
.y48{bottom:454.575000px;}
.y1e{bottom:469.336500px;}
.y64{bottom:474.196500px;}
.y85{bottom:475.096500px;}
.y47{bottom:475.275000px;}
.y1d{bottom:490.036500px;}
.y63{bottom:494.896500px;}
.y84{bottom:495.796500px;}
.y46{bottom:495.975000px;}
.y1c{bottom:510.736500px;}
.y83{bottom:516.496500px;}
.y45{bottom:516.675000px;}
.y1b{bottom:531.436500px;}
.y62{bottom:536.475000px;}
.y82{bottom:537.195000px;}
.y44{bottom:537.375000px;}
.y1a{bottom:552.136500px;}
.y61{bottom:557.175000px;}
.y81{bottom:557.896500px;}
.y43{bottom:558.075000px;}
.y19{bottom:572.836500px;}
.y80{bottom:578.596500px;}
.y18{bottom:593.536500px;}
.y60{bottom:598.936500px;}
.y7f{bottom:599.295000px;}
.y42{bottom:599.836500px;}
.y5f{bottom:619.636500px;}
.y7e{bottom:619.996500px;}
.y41{bottom:620.536500px;}
.y17{bottom:635.295000px;}
.y5e{bottom:640.336500px;}
.y7d{bottom:640.695000px;}
.y40{bottom:641.236500px;}
.y16{bottom:655.996500px;}
.y5d{bottom:661.036500px;}
.y7c{bottom:661.396500px;}
.y3f{bottom:661.936500px;}
.y7b{bottom:682.096500px;}
.y3e{bottom:682.636500px;}
.y15{bottom:697.575000px;}
.y5c{bottom:702.795000px;}
.y3d{bottom:703.336500px;}
.y14{bottom:718.275000px;}
.y5b{bottom:723.496500px;}
.y13{bottom:738.975000px;}
.y7a{bottom:744.195000px;}
.y3c{bottom:745.096500px;}
.y12{bottom:759.675000px;}
.y5a{bottom:765.075000px;}
.y3b{bottom:765.795000px;}
.y11{bottom:780.375000px;}
.y59{bottom:785.775000px;}
.y3a{bottom:786.496500px;}
.y10{bottom:801.075000px;}
.y79{bottom:806.475000px;}
.y39{bottom:807.195000px;}
.yf{bottom:821.775000px;}
.y78{bottom:827.175000px;}
.y58{bottom:827.536500px;}
.y38{bottom:827.895000px;}
.y77{bottom:847.875000px;}
.y57{bottom:848.236500px;}
.y37{bottom:848.596500px;}
.ye{bottom:863.536500px;}
.y36{bottom:869.295000px;}
.y76{bottom:889.636500px;}
.y56{bottom:889.995000px;}
.yd{bottom:907.455000px;}
.y75{bottom:910.336500px;}
.y35{bottom:910.875000px;}
.y74{bottom:931.036500px;}
.y34{bottom:931.575000px;}
.yc{bottom:951.375000px;}
.y33{bottom:952.275000px;}
.y73{bottom:972.795000px;}
.y32{bottom:972.975000px;}
.yb{bottom:993.136500px;}
.y72{bottom:993.495000px;}
.y31{bottom:993.675000px;}
.y71{bottom:1014.195000px;}
.y30{bottom:1014.375000px;}
.ya{bottom:1034.895000px;}
.y2f{bottom:1035.075000px;}
.y2e{bottom:1055.775000px;}
.y9{bottom:1076.475000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h4{height:20.175000px;}
.h3{height:45.095654px;}
.h2{height:48.796875px;}
.h5{height:50.027344px;}
.h6{height:55.125000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:33.450000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.xb{left:132.120000px;}
.x4{left:157.138500px;}
.x5{left:361.080000px;}
.x3{left:461.625000px;}
.x9{left:531.720000px;}
.x7{left:554.760000px;}
.xa{left:596.160000px;}
.x6{left:604.800000px;}
.x8{left:672.660000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:137.984000pt;}
.ls2{letter-spacing:138.560000pt;}
.wse{word-spacing:-49.728000pt;}
.ws92{word-spacing:-34.545600pt;}
.ws6{word-spacing:-34.362400pt;}
.ws1a{word-spacing:-34.361600pt;}
.ws4e{word-spacing:-34.358400pt;}
.ws49{word-spacing:-34.356800pt;}
.ws5{word-spacing:-34.353600pt;}
.ws71{word-spacing:-34.353067pt;}
.ws79{word-spacing:-34.306133pt;}
.ws6a{word-spacing:-34.300800pt;}
.ws61{word-spacing:-34.169600pt;}
.ws57{word-spacing:-34.168800pt;}
.ws48{word-spacing:-34.168533pt;}
.ws67{word-spacing:-34.168000pt;}
.ws63{word-spacing:-34.166400pt;}
.ws55{word-spacing:-34.153600pt;}
.ws53{word-spacing:-34.149600pt;}
.ws3{word-spacing:-34.110400pt;}
.ws21{word-spacing:-34.048000pt;}
.ws87{word-spacing:-33.922133pt;}
.ws47{word-spacing:-33.920000pt;}
.wsa{word-spacing:-33.917600pt;}
.wsb{word-spacing:-33.916800pt;}
.ws96{word-spacing:-33.910933pt;}
.ws41{word-spacing:-33.908267pt;}
.ws75{word-spacing:-33.898667pt;}
.ws9{word-spacing:-33.837067pt;}
.ws0{word-spacing:-33.728000pt;}
.ws81{word-spacing:-33.723733pt;}
.ws4{word-spacing:-33.723200pt;}
.ws4f{word-spacing:-33.722133pt;}
.ws3b{word-spacing:-33.721600pt;}
.ws2b{word-spacing:-33.720800pt;}
.ws17{word-spacing:-33.720000pt;}
.ws65{word-spacing:-33.718400pt;}
.ws52{word-spacing:-33.717867pt;}
.ws2{word-spacing:-33.716800pt;}
.wsf{word-spacing:-33.716000pt;}
.ws6b{word-spacing:-33.713600pt;}
.ws74{word-spacing:-33.710400pt;}
.ws26{word-spacing:-33.658400pt;}
.wsc{word-spacing:-33.529600pt;}
.ws25{word-spacing:-33.262400pt;}
.ws3f{word-spacing:-33.082133pt;}
.wsd{word-spacing:-33.078400pt;}
.ws56{word-spacing:-32.445600pt;}
.ws59{word-spacing:-32.005333pt;}
.ws45{word-spacing:-31.813333pt;}
.ws82{word-spacing:-31.800000pt;}
.ws54{word-spacing:-31.608533pt;}
.ws8f{word-spacing:-31.604267pt;}
.ws83{word-spacing:-31.168000pt;}
.ws50{word-spacing:-31.161600pt;}
.ws32{word-spacing:-31.160267pt;}
.ws68{word-spacing:-31.160000pt;}
.ws20{word-spacing:-30.836000pt;}
.ws7d{word-spacing:-30.080000pt;}
.ws66{word-spacing:-29.871467pt;}
.ws8{word-spacing:-29.820267pt;}
.ws8c{word-spacing:-29.248000pt;}
.ws12{word-spacing:-29.236533pt;}
.ws78{word-spacing:-29.049600pt;}
.ws18{word-spacing:-28.798133pt;}
.ws27{word-spacing:-28.796800pt;}
.ws10{word-spacing:-28.783200pt;}
.ws19{word-spacing:-28.610133pt;}
.ws7f{word-spacing:-28.608000pt;}
.ws69{word-spacing:-28.606133pt;}
.ws8e{word-spacing:-28.604800pt;}
.ws7a{word-spacing:-28.600000pt;}
.ws11{word-spacing:-28.593600pt;}
.ws15{word-spacing:-28.154667pt;}
.ws3a{word-spacing:-27.320000pt;}
.ws1f{word-spacing:-26.809600pt;}
.ws60{word-spacing:-26.688000pt;}
.ws39{word-spacing:-26.050933pt;}
.ws37{word-spacing:-26.046933pt;}
.ws6e{word-spacing:-25.397333pt;}
.ws5c{word-spacing:-25.396800pt;}
.ws4a{word-spacing:-25.206400pt;}
.ws4c{word-spacing:-24.751467pt;}
.ws64{word-spacing:-24.115200pt;}
.ws31{word-spacing:-23.680000pt;}
.ws28{word-spacing:-23.475200pt;}
.ws72{word-spacing:-23.473600pt;}
.ws1c{word-spacing:-23.409600pt;}
.ws1b{word-spacing:-23.040000pt;}
.ws94{word-spacing:-22.847200pt;}
.ws44{word-spacing:-22.845333pt;}
.ws62{word-spacing:-22.844800pt;}
.ws4d{word-spacing:-22.840000pt;}
.ws2a{word-spacing:-22.770400pt;}
.ws86{word-spacing:-22.392000pt;}
.ws91{word-spacing:-22.213333pt;}
.ws40{word-spacing:-22.196800pt;}
.ws34{word-spacing:-22.009600pt;}
.ws43{word-spacing:-21.361600pt;}
.ws77{word-spacing:-20.928000pt;}
.ws4b{word-spacing:-20.480000pt;}
.ws30{word-spacing:-17.920000pt;}
.ws2f{word-spacing:-17.907200pt;}
.ws8d{word-spacing:-17.531733pt;}
.ws38{word-spacing:-17.082133pt;}
.ws7b{word-spacing:-17.081600pt;}
.ws7{word-spacing:-16.420000pt;}
.ws6c{word-spacing:-15.800000pt;}
.ws5f{word-spacing:-15.606400pt;}
.ws14{word-spacing:-15.154667pt;}
.ws95{word-spacing:-14.712000pt;}
.ws73{word-spacing:-14.513067pt;}
.ws35{word-spacing:-14.331200pt;}
.ws88{word-spacing:-13.236800pt;}
.ws80{word-spacing:-12.602667pt;}
.ws5a{word-spacing:-12.593600pt;}
.ws42{word-spacing:-11.320000pt;}
.ws93{word-spacing:-10.489600pt;}
.ws5e{word-spacing:-10.477867pt;}
.ws29{word-spacing:-9.974400pt;}
.ws70{word-spacing:-9.827200pt;}
.ws5b{word-spacing:-9.206400pt;}
.ws16{word-spacing:-8.965333pt;}
.ws7c{word-spacing:-8.552533pt;}
.ws5d{word-spacing:-7.484000pt;}
.ws33{word-spacing:-7.483200pt;}
.ws1e{word-spacing:-7.040000pt;}
.ws1d{word-spacing:-5.615200pt;}
.ws8a{word-spacing:-5.562667pt;}
.ws76{word-spacing:-4.918400pt;}
.ws89{word-spacing:-4.715200pt;}
.ws2e{word-spacing:-4.270400pt;}
.ws13{word-spacing:-2.358400pt;}
.ws51{word-spacing:-2.350400pt;}
.ws6f{word-spacing:-1.915733pt;}
.ws36{word-spacing:-0.436800pt;}
.ws84{word-spacing:-0.435733pt;}
.ws58{word-spacing:0.000000pt;}
.ws8b{word-spacing:0.192000pt;}
.ws46{word-spacing:2.560000pt;}
.ws90{word-spacing:4.240000pt;}
.ws85{word-spacing:4.677867pt;}
.ws3c{word-spacing:5.510400pt;}
.ws7e{word-spacing:6.409067pt;}
.ws2d{word-spacing:7.241600pt;}
.ws2c{word-spacing:7.691200pt;}
.ws6d{word-spacing:8.521600pt;}
.ws3e{word-spacing:9.806400pt;}
.ws3d{word-spacing:18.768000pt;}
.ws24{word-spacing:19.717067pt;}
.ws23{word-spacing:44.352000pt;}
.ws22{word-spacing:44.794667pt;}
.ws97{word-spacing:94.272000pt;}
.ws1{word-spacing:404.526933pt;}
._19{margin-left:-2.152533pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._1e{width:2.152533pt;}
._4{width:16.689600pt;}
._11{width:17.704800pt;}
._20{width:19.145067pt;}
._f{width:20.328000pt;}
._6{width:22.063733pt;}
._7{width:23.083733pt;}
._e{width:24.121600pt;}
._12{width:25.158933pt;}
._22{width:26.086400pt;}
._c{width:27.441600pt;}
._13{width:28.703467pt;}
._18{width:29.957867pt;}
._29{width:30.901333pt;}
._1{width:32.000000pt;}
._16{width:33.011200pt;}
._1b{width:33.987200pt;}
._26{width:35.048533pt;}
._a{width:35.956267pt;}
._28{width:37.109333pt;}
._23{width:38.257600pt;}
._5{width:39.616000pt;}
._25{width:40.762133pt;}
._b{width:41.660533pt;}
._8{width:42.721867pt;}
._17{width:43.614667pt;}
._d{width:45.677333pt;}
._15{width:46.913067pt;}
._9{width:48.517333pt;}
._1a{width:50.513600pt;}
._2c{width:51.514667pt;}
._21{width:53.484800pt;}
._2b{width:55.683200pt;}
._1c{width:56.700800pt;}
._14{width:57.953600pt;}
._27{width:59.171200pt;}
._1f{width:61.164267pt;}
._2d{width:65.802667pt;}
._1d{width:69.680000pt;}
._2a{width:74.163733pt;}
._24{width:75.977600pt;}
._10{width:95.178667pt;}
._2e{width:108.170667pt;}
._2f{width:144.000000pt;}
._0{width:544.128000pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.974667pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y2d{bottom:103.908000pt;}
.y91{bottom:120.866667pt;}
.y2c{bottom:122.308000pt;}
.y70{bottom:125.988000pt;}
.y55{bottom:127.588000pt;}
.y2b{bottom:140.708000pt;}
.y90{bottom:143.266667pt;}
.y6f{bottom:144.388000pt;}
.y54{bottom:145.988000pt;}
.y6e{bottom:162.788000pt;}
.y2a{bottom:177.666667pt;}
.y8f{bottom:182.308000pt;}
.y53{bottom:183.108000pt;}
.y29{bottom:196.066667pt;}
.y6d{bottom:199.908000pt;}
.y52{bottom:201.508000pt;}
.y28{bottom:214.466667pt;}
.y8e{bottom:219.266667pt;}
.y51{bottom:219.908000pt;}
.y27{bottom:232.866667pt;}
.y6c{bottom:236.866667pt;}
.y8d{bottom:237.666667pt;}
.y50{bottom:238.308000pt;}
.y26{bottom:251.266667pt;}
.y6b{bottom:255.266667pt;}
.y8c{bottom:256.066667pt;}
.y4f{bottom:256.706667pt;}
.y25{bottom:269.666667pt;}
.y6a{bottom:273.666667pt;}
.y8b{bottom:274.466667pt;}
.y4e{bottom:275.108000pt;}
.y24{bottom:288.066667pt;}
.y69{bottom:292.066667pt;}
.y8a{bottom:292.866667pt;}
.y23{bottom:306.466667pt;}
.y89{bottom:311.266667pt;}
.y4d{bottom:312.066667pt;}
.y22{bottom:324.866667pt;}
.y68{bottom:329.188000pt;}
.y4c{bottom:330.466667pt;}
.y21{bottom:343.266667pt;}
.y67{bottom:347.588000pt;}
.y88{bottom:348.388000pt;}
.y4b{bottom:348.866667pt;}
.y20{bottom:361.666667pt;}
.y66{bottom:365.988000pt;}
.y4a{bottom:367.266667pt;}
.y1f{bottom:380.066667pt;}
.y87{bottom:385.508000pt;}
.y49{bottom:385.666667pt;}
.y65{bottom:403.108000pt;}
.y86{bottom:403.908000pt;}
.y48{bottom:404.066667pt;}
.y1e{bottom:417.188000pt;}
.y64{bottom:421.508000pt;}
.y85{bottom:422.308000pt;}
.y47{bottom:422.466667pt;}
.y1d{bottom:435.588000pt;}
.y63{bottom:439.908000pt;}
.y84{bottom:440.708000pt;}
.y46{bottom:440.866667pt;}
.y1c{bottom:453.988000pt;}
.y83{bottom:459.108000pt;}
.y45{bottom:459.266667pt;}
.y1b{bottom:472.388000pt;}
.y62{bottom:476.866667pt;}
.y82{bottom:477.506667pt;}
.y44{bottom:477.666667pt;}
.y1a{bottom:490.788000pt;}
.y61{bottom:495.266667pt;}
.y81{bottom:495.908000pt;}
.y43{bottom:496.066667pt;}
.y19{bottom:509.188000pt;}
.y80{bottom:514.308000pt;}
.y18{bottom:527.588000pt;}
.y60{bottom:532.388000pt;}
.y7f{bottom:532.706667pt;}
.y42{bottom:533.188000pt;}
.y5f{bottom:550.788000pt;}
.y7e{bottom:551.108000pt;}
.y41{bottom:551.588000pt;}
.y17{bottom:564.706667pt;}
.y5e{bottom:569.188000pt;}
.y7d{bottom:569.506667pt;}
.y40{bottom:569.988000pt;}
.y16{bottom:583.108000pt;}
.y5d{bottom:587.588000pt;}
.y7c{bottom:587.908000pt;}
.y3f{bottom:588.388000pt;}
.y7b{bottom:606.308000pt;}
.y3e{bottom:606.788000pt;}
.y15{bottom:620.066667pt;}
.y5c{bottom:624.706667pt;}
.y3d{bottom:625.188000pt;}
.y14{bottom:638.466667pt;}
.y5b{bottom:643.108000pt;}
.y13{bottom:656.866667pt;}
.y7a{bottom:661.506667pt;}
.y3c{bottom:662.308000pt;}
.y12{bottom:675.266667pt;}
.y5a{bottom:680.066667pt;}
.y3b{bottom:680.706667pt;}
.y11{bottom:693.666667pt;}
.y59{bottom:698.466667pt;}
.y3a{bottom:699.108000pt;}
.y10{bottom:712.066667pt;}
.y79{bottom:716.866667pt;}
.y39{bottom:717.506667pt;}
.yf{bottom:730.466667pt;}
.y78{bottom:735.266667pt;}
.y58{bottom:735.588000pt;}
.y38{bottom:735.906667pt;}
.y77{bottom:753.666667pt;}
.y57{bottom:753.988000pt;}
.y37{bottom:754.308000pt;}
.ye{bottom:767.588000pt;}
.y36{bottom:772.706667pt;}
.y76{bottom:790.788000pt;}
.y56{bottom:791.106667pt;}
.yd{bottom:806.626667pt;}
.y75{bottom:809.188000pt;}
.y35{bottom:809.666667pt;}
.y74{bottom:827.588000pt;}
.y34{bottom:828.066667pt;}
.yc{bottom:845.666667pt;}
.y33{bottom:846.466667pt;}
.y73{bottom:864.706667pt;}
.y32{bottom:864.866667pt;}
.yb{bottom:882.788000pt;}
.y72{bottom:883.106667pt;}
.y31{bottom:883.266667pt;}
.y71{bottom:901.506667pt;}
.y30{bottom:901.666667pt;}
.ya{bottom:919.906667pt;}
.y2f{bottom:920.066667pt;}
.y2e{bottom:938.466667pt;}
.y9{bottom:956.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h4{height:17.933333pt;}
.h3{height:40.085026pt;}
.h2{height:43.375000pt;}
.h5{height:44.468750pt;}
.h6{height:49.000000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:29.733333pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.xb{left:117.440000pt;}
.x4{left:139.678667pt;}
.x5{left:320.960000pt;}
.x3{left:410.333333pt;}
.x9{left:472.640000pt;}
.x7{left:493.120000pt;}
.xa{left:529.920000pt;}
.x6{left:537.600000pt;}
.x8{left:597.920000pt;}
.x2{left:649.920000pt;}
}




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