
    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_2b1621a21550fa299547e513.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a4e05a9bd336c6f109891399.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.942000;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_e230b86d8bbc7a4ed79ca755.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942000;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_19cfcd94fa05f6246205a76e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.943000;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_a24d7fdc51bee0543a9f9be5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6c2d8bf9aaf0678bccc5178d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7b051fa318ab1789b1e84dd2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_db3d7a1bef600bd9d83e2fe3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.731445;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250003,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250003,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250003,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-5.217755px;}
.v3{vertical-align:-2.310000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.199484px;}
.v2{vertical-align:2.975400px;}
.ls2{letter-spacing:-0.011995px;}
.ls1{letter-spacing:-0.005997px;}
.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;}
}
.wse{word-spacing:-12.714530px;}
.ws4{word-spacing:0.000000px;}
.ws5{word-spacing:0.011995px;}
.ws6{word-spacing:0.017992px;}
.ws2{word-spacing:192.065037px;}
.wsd{word-spacing:485.850994px;}
.ws10{word-spacing:527.173218px;}
.ws7{word-spacing:547.924291px;}
.wsf{word-spacing:570.054771px;}
.wsc{word-spacing:576.771881px;}
.wsa{word-spacing:582.769301px;}
.ws8{word-spacing:582.949224px;}
.ws3{word-spacing:606.279728px;}
.ws9{word-spacing:610.417408px;}
.wsb{word-spacing:622.652144px;}
.ws0{word-spacing:724.897082px;}
.ws1{word-spacing:784.882355px;}
._0{margin-left:-3172.027315px;}
._7{margin-left:-1137.748453px;}
._5{margin-left:-1058.607124px;}
._3{width:59.615675px;}
._1{width:63.573972px;}
._2{width:85.644478px;}
._4{width:173.925720px;}
._6{width:441.829931px;}
.fc1{color:rgb(149,149,149);}
.fc0{color:rgb(16,15,13);}
.fs5{font-size:47.979000px;}
.fs1{font-size:47.979600px;}
.fs6{font-size:53.976600px;}
.fs2{font-size:59.974200px;}
.fs4{font-size:71.968800px;}
.fs3{font-size:83.964000px;}
.fs0{font-size:95.958600px;}
.y0{bottom:0.000000px;}
.y2{bottom:23.656050px;}
.y4b{bottom:54.226050px;}
.y68{bottom:57.728550px;}
.y69{bottom:58.018050px;}
.yb4{bottom:58.115550px;}
.yb3{bottom:58.123050px;}
.y67{bottom:58.241550px;}
.y4a{bottom:74.747700px;}
.y1a{bottom:81.881700px;}
.y6a{bottom:84.721563px;}
.y66{bottom:85.010700px;}
.yb2{bottom:85.091700px;}
.yb5{bottom:85.103940px;}
.y49{bottom:95.269200px;}
.y6b{bottom:111.722700px;}
.y6c{bottom:111.998700px;}
.yb7{bottom:112.070700px;}
.yb6{bottom:112.091700px;}
.y48{bottom:115.790700px;}
.y19{bottom:135.857700px;}
.y47{bottom:136.312200px;}
.y6d{bottom:138.717206px;}
.y65{bottom:138.986700px;}
.yb1{bottom:139.054200px;}
.yb8{bottom:139.074084px;}
.y46{bottom:156.833850px;}
.y6e{bottom:165.721350px;}
.y6f{bottom:165.980850px;}
.yba{bottom:166.043850px;}
.yb9{bottom:166.064850px;}
.y45{bottom:177.355350px;}
.y18{bottom:189.835350px;}
.y70{bottom:192.714350px;}
.y64{bottom:192.968850px;}
.yb0{bottom:193.040850px;}
.ybb{bottom:193.047234px;}
.y44{bottom:197.876850px;}
.y43{bottom:218.400000px;}
.y71{bottom:219.709500px;}
.y72{bottom:219.961500px;}
.ybc{bottom:220.037850px;}
.y42{bottom:238.921500px;}
.y73{bottom:246.709993px;}
.y63{bottom:246.949500px;}
.yaf{bottom:247.026000px;}
.ybd{bottom:247.026240px;}
.y17{bottom:257.305500px;}
.y41{bottom:259.443000px;}
.y74{bottom:273.708000px;}
.y75{bottom:273.939150px;}
.ybf{bottom:274.006500px;}
.yc0{bottom:274.015500px;}
.ybe{bottom:274.092000px;}
.y40{bottom:279.964500px;}
.y3f{bottom:300.486150px;}
.y76{bottom:300.702637px;}
.y62{bottom:300.930000px;}
.yc1{bottom:300.988896px;}
.yae{bottom:301.006650px;}
.y3e{bottom:321.007650px;}
.y77{bottom:327.697650px;}
.y78{bottom:327.918150px;}
.yc3{bottom:327.973650px;}
.yc4{bottom:327.999150px;}
.yc2{bottom:328.054650px;}
.y16{bottom:339.147390px;}
.y3d{bottom:341.529150px;}
.y12{bottom:348.142650px;}
.y79{bottom:354.696630px;}
.y61{bottom:354.910650px;}
.yc5{bottom:354.957553px;}
.yad{bottom:354.996150px;}
.y15{bottom:357.139650px;}
.y3c{bottom:362.050650px;}
.y11{bottom:379.629540px;}
.y7b{bottom:381.696300px;}
.y7c{bottom:381.900300px;}
.y7a{bottom:381.934800px;}
.yc6{bottom:381.946800px;}
.yc7{bottom:381.990300px;}
.y3b{bottom:382.572300px;}
.y14{bottom:388.626300px;}
.y10{bottom:397.621800px;}
.y3a{bottom:403.095300px;}
.y7d{bottom:408.693774px;}
.y60{bottom:408.888300px;}
.yc8{bottom:408.933709px;}
.yac{bottom:408.978300px;}
.yf{bottom:420.113190px;}
.y39{bottom:423.616800px;}
.y13{bottom:429.108300px;}
.y7f{bottom:435.688950px;}
.y7e{bottom:435.880800px;}
.yc9{bottom:435.915300px;}
.yca{bottom:435.966300px;}
.ye{bottom:438.105450px;}
.y38{bottom:444.138450px;}
.yd{bottom:458.969992px;}
.y80{bottom:462.689267px;}
.y5f{bottom:462.868950px;}
.ycb{bottom:462.909709px;}
.yab{bottom:462.970950px;}
.y37{bottom:464.659950px;}
.y36{bottom:485.181450px;}
.y81{bottom:489.684450px;}
.y82{bottom:489.862950px;}
.ycd{bottom:489.888450px;}
.ycc{bottom:489.948450px;}
.yce{bottom:489.960450px;}
.y35{bottom:505.702950px;}
.yc{bottom:513.696450px;}
.y83{bottom:516.686411px;}
.y5e{bottom:516.851100px;}
.ycf{bottom:516.873872px;}
.yaa{bottom:516.948450px;}
.y34{bottom:526.224450px;}
.y85{bottom:543.677100px;}
.y84{bottom:543.774600px;}
.y86{bottom:543.839100px;}
.yd0{bottom:543.855600px;}
.yd1{bottom:543.945600px;}
.y33{bottom:546.745950px;}
.y32{bottom:567.267600px;}
.y87{bottom:570.677555px;}
.y5d{bottom:570.831600px;}
.yd2{bottom:570.844029px;}
.ya9{bottom:570.929100px;}
.yb{bottom:584.292600px;}
.y31{bottom:587.790600px;}
.y88{bottom:597.671100px;}
.y89{bottom:597.821100px;}
.yd3{bottom:597.828750px;}
.yd4{bottom:597.930750px;}
.y30{bottom:608.312100px;}
.y4c{bottom:611.280600px;}
.y8a{bottom:624.674548px;}
.y5c{bottom:624.809250px;}
.yd5{bottom:624.814185px;}
.ya8{bottom:624.923250px;}
.y2f{bottom:628.833750px;}
.ya{bottom:638.268750px;}
.y2e{bottom:649.355250px;}
.y8b{bottom:651.665250px;}
.yd6{bottom:651.797250px;}
.y8c{bottom:651.801750px;}
.yd7{bottom:651.911250px;}
.y9{bottom:665.256750px;}
.y2d{bottom:669.876750px;}
.y8d{bottom:678.670192px;}
.yd8{bottom:678.779692px;}
.y5b{bottom:678.789900px;}
.ya7{bottom:678.912900px;}
.y8{bottom:688.373400px;}
.y2c{bottom:690.398400px;}
.y8e{bottom:705.663900px;}
.yda{bottom:705.770400px;}
.y8f{bottom:705.779400px;}
.yd9{bottom:705.804900px;}
.ydb{bottom:705.902400px;}
.y2b{bottom:710.919900px;}
.y2a{bottom:731.441400px;}
.y90{bottom:732.662835px;}
.ydc{bottom:732.755848px;}
.y5a{bottom:732.770400px;}
.ya6{bottom:732.894900px;}
.y7{bottom:738.725400px;}
.y29{bottom:751.963050px;}
.y91{bottom:759.656400px;}
.yde{bottom:759.737550px;}
.y92{bottom:759.758550px;}
.ydd{bottom:759.767550px;}
.ydf{bottom:759.882900px;}
.y28{bottom:772.486050px;}
.y93{bottom:786.656979px;}
.ye0{bottom:786.721354px;}
.y59{bottom:786.752550px;}
.ya5{bottom:786.871050px;}
.y27{bottom:793.007550px;}
.y50{bottom:810.545700px;}
.y94{bottom:813.520050px;}
.y26{bottom:813.529050px;}
.y95{bottom:813.647550px;}
.ye1{bottom:813.710700px;}
.y96{bottom:813.740550px;}
.ye2{bottom:813.877050px;}
.y25{bottom:834.050700px;}
.y97{bottom:840.653972px;}
.y55{bottom:840.682200px;}
.ye3{bottom:840.700511px;}
.y58{bottom:840.733200px;}
.ya4{bottom:840.865050px;}
.y24{bottom:854.572200px;}
.ye4{bottom:862.948200px;}
.y98{bottom:867.644700px;}
.y54{bottom:867.670200px;}
.ye5{bottom:867.679200px;}
.y99{bottom:867.721200px;}
.ye6{bottom:867.853200px;}
.y23{bottom:875.093700px;}
.y9a{bottom:894.649616px;}
.y53{bottom:894.659700px;}
.ye7{bottom:894.661667px;}
.y57{bottom:894.710700px;}
.ya3{bottom:894.847200px;}
.y22{bottom:895.615200px;}
.y21{bottom:916.136850px;}
.y52{bottom:917.780788px;}
.y9b{bottom:921.638850px;}
.ye8{bottom:921.652350px;}
.y9c{bottom:921.703350px;}
.ye9{bottom:921.847350px;}
.y20{bottom:936.658200px;}
.ya2{bottom:948.417379px;}
.y9d{bottom:948.631766px;}
.yea{bottom:948.640824px;}
.y56{bottom:948.691350px;}
.y1f{bottom:957.185913px;}
.y9f{bottom:972.625831px;}
.ya0{bottom:972.631500px;}
.y51{bottom:973.077000px;}
.y9e{bottom:973.405500px;}
.ya1{bottom:975.624000px;}
.y1e{bottom:980.186019px;}
.y1d{bottom:998.223259px;}
.y1b{bottom:998.224500px;}
.y1c{bottom:1016.260500px;}
.y4f{bottom:1027.054500px;}
.y4e{bottom:1056.589650px;}
.y4d{bottom:1081.006650px;}
.y6{bottom:1116.564000px;}
.y4{bottom:1173.155700px;}
.y5{bottom:1190.906700px;}
.y3{bottom:1213.638450px;}
.y1{bottom:1215.646200px;}
.hf{height:34.592859px;}
.h2{height:34.593292px;}
.h11{height:38.917129px;}
.h7{height:43.106456px;}
.h3{height:43.241398px;}
.h9{height:43.337398px;}
.he{height:43.361347px;}
.h10{height:43.421321px;}
.h6{height:43.662858px;}
.hd{height:43.721192px;}
.hc{height:43.901114px;}
.hb{height:44.440882px;}
.ha{height:45.220547px;}
.h8{height:46.216798px;}
.h5{height:51.889505px;}
.h4{height:60.538044px;}
.h1{height:68.130606px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x1{left:69.595650px;}
.x3b{left:71.346900px;}
.x9{left:73.221150px;}
.x6{left:92.618250px;}
.x5{left:94.258650px;}
.x14{left:98.085000px;}
.x39{left:110.511600px;}
.x38{left:116.164350px;}
.x3c{left:123.749400px;}
.x1e{left:127.307550px;}
.x21{left:134.699400px;}
.x1f{left:137.158200px;}
.x25{left:139.452300px;}
.x2c{left:144.205200px;}
.x2a{left:146.289300px;}
.x35{left:147.905700px;}
.x27{left:150.517800px;}
.x3d{left:153.453300px;}
.x15{left:154.654800px;}
.x17{left:157.653300px;}
.x2b{left:160.563300px;}
.x16{left:161.928300px;}
.x26{left:163.710300px;}
.x20{left:165.375300px;}
.x3e{left:167.757300px;}
.x28{left:169.992300px;}
.x29{left:172.990800px;}
.x37{left:176.212800px;}
.x18{left:177.549300px;}
.x1a{left:178.854300px;}
.x36{left:179.899800px;}
.x3a{left:181.549800px;}
.x24{left:183.246300px;}
.x19{left:185.301300px;}
.x1d{left:187.159800px;}
.x1c{left:192.543300px;}
.x2d{left:200.100300px;}
.x1b{left:208.195950px;}
.x2e{left:245.893950px;}
.x30{left:272.884500px;}
.x7{left:298.997100px;}
.x12{left:310.613100px;}
.x32{left:313.365600px;}
.x8{left:323.882100px;}
.x31{left:353.849063px;}
.x2f{left:380.837250px;}
.x23{left:402.050250px;}
.xa{left:541.894050px;}
.x13{left:545.518050px;}
.xb{left:550.649550px;}
.x11{left:552.304050px;}
.x10{left:556.472550px;}
.xf{left:560.646123px;}
.x33{left:569.753381px;}
.x22{left:590.846700px;}
.x3{left:609.014700px;}
.xc{left:620.905200px;}
.xd{left:632.555188px;}
.x34{left:643.472700px;}
.xe{left:660.503166px;}
.x4{left:669.062850px;}
.x2{left:757.801500px;}
@media print{
.v1{vertical-align:-4.638005pt;}
.v3{vertical-align:-2.053333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.066208pt;}
.v2{vertical-align:2.644800pt;}
.ls2{letter-spacing:-0.010662pt;}
.ls1{letter-spacing:-0.005331pt;}
.ls0{letter-spacing:0.000000pt;}
.wse{word-spacing:-11.301805pt;}
.ws4{word-spacing:0.000000pt;}
.ws5{word-spacing:0.010662pt;}
.ws6{word-spacing:0.015993pt;}
.ws2{word-spacing:170.724477pt;}
.wsd{word-spacing:431.867550pt;}
.ws10{word-spacing:468.598416pt;}
.ws7{word-spacing:487.043814pt;}
.wsf{word-spacing:506.715352pt;}
.wsc{word-spacing:512.686117pt;}
.wsa{word-spacing:518.017157pt;}
.ws8{word-spacing:518.177088pt;}
.ws3{word-spacing:538.915314pt;}
.ws9{word-spacing:542.593251pt;}
.wsb{word-spacing:553.468573pt;}
.ws0{word-spacing:644.352962pt;}
.ws1{word-spacing:697.673205pt;}
._0{margin-left:-2819.579836pt;}
._7{margin-left:-1011.331958pt;}
._5{margin-left:-940.984110pt;}
._3{width:52.991711pt;}
._1{width:56.510197pt;}
._2{width:76.128425pt;}
._4{width:154.600640pt;}
._6{width:392.737717pt;}
.fs5{font-size:42.648000pt;}
.fs1{font-size:42.648533pt;}
.fs6{font-size:47.979200pt;}
.fs2{font-size:53.310400pt;}
.fs4{font-size:63.972267pt;}
.fs3{font-size:74.634667pt;}
.fs0{font-size:85.296533pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:21.027600pt;}
.y4b{bottom:48.200933pt;}
.y68{bottom:51.314267pt;}
.y69{bottom:51.571600pt;}
.yb4{bottom:51.658267pt;}
.yb3{bottom:51.664933pt;}
.y67{bottom:51.770267pt;}
.y4a{bottom:66.442400pt;}
.y1a{bottom:72.783733pt;}
.y6a{bottom:75.308056pt;}
.y66{bottom:75.565067pt;}
.yb2{bottom:75.637067pt;}
.yb5{bottom:75.647947pt;}
.y49{bottom:84.683733pt;}
.y6b{bottom:99.309067pt;}
.y6c{bottom:99.554400pt;}
.yb7{bottom:99.618400pt;}
.yb6{bottom:99.637067pt;}
.y48{bottom:102.925067pt;}
.y19{bottom:120.762400pt;}
.y47{bottom:121.166400pt;}
.y6d{bottom:123.304183pt;}
.y65{bottom:123.543733pt;}
.yb1{bottom:123.603733pt;}
.yb8{bottom:123.621408pt;}
.y46{bottom:139.407867pt;}
.y6e{bottom:147.307867pt;}
.y6f{bottom:147.538533pt;}
.yba{bottom:147.594533pt;}
.yb9{bottom:147.613200pt;}
.y45{bottom:157.649200pt;}
.y18{bottom:168.742533pt;}
.y70{bottom:171.301644pt;}
.y64{bottom:171.527867pt;}
.yb0{bottom:171.591867pt;}
.ybb{bottom:171.597541pt;}
.y44{bottom:175.890533pt;}
.y43{bottom:194.133333pt;}
.y71{bottom:195.297333pt;}
.y72{bottom:195.521333pt;}
.ybc{bottom:195.589200pt;}
.y42{bottom:212.374667pt;}
.y73{bottom:219.297772pt;}
.y63{bottom:219.510667pt;}
.yaf{bottom:219.578667pt;}
.ybd{bottom:219.578880pt;}
.y17{bottom:228.716000pt;}
.y41{bottom:230.616000pt;}
.y74{bottom:243.296000pt;}
.y75{bottom:243.501467pt;}
.ybf{bottom:243.561333pt;}
.yc0{bottom:243.569333pt;}
.ybe{bottom:243.637333pt;}
.y40{bottom:248.857333pt;}
.y3f{bottom:267.098800pt;}
.y76{bottom:267.291233pt;}
.y62{bottom:267.493333pt;}
.yc1{bottom:267.545686pt;}
.yae{bottom:267.561467pt;}
.y3e{bottom:285.340133pt;}
.y77{bottom:291.286800pt;}
.y78{bottom:291.482800pt;}
.yc3{bottom:291.532133pt;}
.yc4{bottom:291.554800pt;}
.yc2{bottom:291.604133pt;}
.y16{bottom:301.464347pt;}
.y3d{bottom:303.581467pt;}
.y12{bottom:309.460133pt;}
.y79{bottom:315.285894pt;}
.y61{bottom:315.476133pt;}
.yc5{bottom:315.517825pt;}
.yad{bottom:315.552133pt;}
.y15{bottom:317.457467pt;}
.y3c{bottom:321.822800pt;}
.y11{bottom:337.448480pt;}
.y7b{bottom:339.285600pt;}
.y7c{bottom:339.466933pt;}
.y7a{bottom:339.497600pt;}
.yc6{bottom:339.508267pt;}
.yc7{bottom:339.546933pt;}
.y3b{bottom:340.064267pt;}
.y14{bottom:345.445600pt;}
.y10{bottom:353.441600pt;}
.y3a{bottom:358.306933pt;}
.y7d{bottom:363.283355pt;}
.y60{bottom:363.456267pt;}
.yc8{bottom:363.496631pt;}
.yac{bottom:363.536267pt;}
.yf{bottom:373.433947pt;}
.y39{bottom:376.548267pt;}
.y13{bottom:381.429600pt;}
.y7f{bottom:387.279067pt;}
.y7e{bottom:387.449600pt;}
.yc9{bottom:387.480267pt;}
.yca{bottom:387.525600pt;}
.ye{bottom:389.427067pt;}
.y38{bottom:394.789733pt;}
.yd{bottom:407.973327pt;}
.y80{bottom:411.279349pt;}
.y5f{bottom:411.439067pt;}
.ycb{bottom:411.475297pt;}
.yab{bottom:411.529733pt;}
.y37{bottom:413.031067pt;}
.y36{bottom:431.272400pt;}
.y81{bottom:435.275067pt;}
.y82{bottom:435.433733pt;}
.ycd{bottom:435.456400pt;}
.ycc{bottom:435.509733pt;}
.yce{bottom:435.520400pt;}
.y35{bottom:449.513733pt;}
.yc{bottom:456.619067pt;}
.y83{bottom:459.276810pt;}
.y5e{bottom:459.423200pt;}
.ycf{bottom:459.443442pt;}
.yaa{bottom:459.509733pt;}
.y34{bottom:467.755067pt;}
.y85{bottom:483.268533pt;}
.y84{bottom:483.355200pt;}
.y86{bottom:483.412533pt;}
.yd0{bottom:483.427200pt;}
.yd1{bottom:483.507200pt;}
.y33{bottom:485.996400pt;}
.y32{bottom:504.237867pt;}
.y87{bottom:507.268937pt;}
.y5d{bottom:507.405867pt;}
.yd2{bottom:507.416914pt;}
.ya9{bottom:507.492533pt;}
.yb{bottom:519.371200pt;}
.y31{bottom:522.480533pt;}
.y88{bottom:531.263200pt;}
.y89{bottom:531.396533pt;}
.yd3{bottom:531.403333pt;}
.yd4{bottom:531.494000pt;}
.y30{bottom:540.721867pt;}
.y4c{bottom:543.360533pt;}
.y8a{bottom:555.266265pt;}
.y5c{bottom:555.386000pt;}
.yd5{bottom:555.390387pt;}
.ya8{bottom:555.487333pt;}
.y2f{bottom:558.963333pt;}
.ya{bottom:567.350000pt;}
.y2e{bottom:577.204667pt;}
.y8b{bottom:579.258000pt;}
.yd6{bottom:579.375333pt;}
.y8c{bottom:579.379333pt;}
.yd7{bottom:579.476667pt;}
.y9{bottom:591.339333pt;}
.y2d{bottom:595.446000pt;}
.y8d{bottom:603.262393pt;}
.yd8{bottom:603.359726pt;}
.y5b{bottom:603.368800pt;}
.ya7{bottom:603.478133pt;}
.y8{bottom:611.887467pt;}
.y2c{bottom:613.687467pt;}
.y8e{bottom:627.256800pt;}
.yda{bottom:627.351467pt;}
.y8f{bottom:627.359467pt;}
.yd9{bottom:627.382133pt;}
.ydb{bottom:627.468800pt;}
.y2b{bottom:631.928800pt;}
.y2a{bottom:650.170133pt;}
.y90{bottom:651.255853pt;}
.ydc{bottom:651.338532pt;}
.y5a{bottom:651.351467pt;}
.ya6{bottom:651.462133pt;}
.y7{bottom:656.644800pt;}
.y29{bottom:668.411600pt;}
.y91{bottom:675.250133pt;}
.yde{bottom:675.322267pt;}
.y92{bottom:675.340933pt;}
.ydd{bottom:675.348933pt;}
.ydf{bottom:675.451467pt;}
.y28{bottom:686.654267pt;}
.y93{bottom:699.250648pt;}
.ye0{bottom:699.307871pt;}
.y59{bottom:699.335600pt;}
.ya5{bottom:699.440933pt;}
.y27{bottom:704.895600pt;}
.y50{bottom:720.485067pt;}
.y94{bottom:723.128933pt;}
.y26{bottom:723.136933pt;}
.y95{bottom:723.242267pt;}
.ye1{bottom:723.298400pt;}
.y96{bottom:723.324933pt;}
.ye2{bottom:723.446267pt;}
.y25{bottom:741.378400pt;}
.y97{bottom:747.247975pt;}
.y55{bottom:747.273067pt;}
.ye3{bottom:747.289343pt;}
.y58{bottom:747.318400pt;}
.ya4{bottom:747.435600pt;}
.y24{bottom:759.619733pt;}
.ye4{bottom:767.065067pt;}
.y98{bottom:771.239733pt;}
.y54{bottom:771.262400pt;}
.ye5{bottom:771.270400pt;}
.y99{bottom:771.307733pt;}
.ye6{bottom:771.425067pt;}
.y23{bottom:777.861067pt;}
.y9a{bottom:795.244103pt;}
.y53{bottom:795.253067pt;}
.ye7{bottom:795.254815pt;}
.y57{bottom:795.298400pt;}
.ya3{bottom:795.419733pt;}
.y22{bottom:796.102400pt;}
.y21{bottom:814.343867pt;}
.y52{bottom:815.805145pt;}
.y9b{bottom:819.234533pt;}
.ye8{bottom:819.246533pt;}
.y9c{bottom:819.291867pt;}
.ye9{bottom:819.419867pt;}
.y20{bottom:832.585067pt;}
.ya2{bottom:843.037670pt;}
.y9d{bottom:843.228236pt;}
.yea{bottom:843.236288pt;}
.y56{bottom:843.281200pt;}
.y1f{bottom:850.831923pt;}
.y9f{bottom:864.556295pt;}
.ya0{bottom:864.561333pt;}
.y51{bottom:864.957333pt;}
.y9e{bottom:865.249333pt;}
.ya1{bottom:867.221333pt;}
.y1e{bottom:871.276461pt;}
.y1d{bottom:887.309564pt;}
.y1b{bottom:887.310667pt;}
.y1c{bottom:903.342667pt;}
.y4f{bottom:912.937333pt;}
.y4e{bottom:939.190800pt;}
.y4d{bottom:960.894800pt;}
.y6{bottom:992.501333pt;}
.y4{bottom:1042.805067pt;}
.y5{bottom:1058.583733pt;}
.y3{bottom:1078.789733pt;}
.y1{bottom:1080.574400pt;}
.hf{height:30.749208pt;}
.h2{height:30.749593pt;}
.h11{height:34.593003pt;}
.h7{height:38.316850pt;}
.h3{height:38.436798pt;}
.h9{height:38.522132pt;}
.he{height:38.543419pt;}
.h10{height:38.596730pt;}
.h6{height:38.811429pt;}
.hd{height:38.863282pt;}
.hc{height:39.023213pt;}
.hb{height:39.503006pt;}
.ha{height:40.196042pt;}
.h8{height:41.081598pt;}
.h5{height:46.124004pt;}
.h4{height:53.811595pt;}
.h1{height:60.560539pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1{left:61.862800pt;}
.x3b{left:63.419467pt;}
.x9{left:65.085467pt;}
.x6{left:82.327333pt;}
.x5{left:83.785467pt;}
.x14{left:87.186667pt;}
.x39{left:98.232533pt;}
.x38{left:103.257200pt;}
.x3c{left:109.999467pt;}
.x1e{left:113.162267pt;}
.x21{left:119.732800pt;}
.x1f{left:121.918400pt;}
.x25{left:123.957600pt;}
.x2c{left:128.182400pt;}
.x2a{left:130.034933pt;}
.x35{left:131.471733pt;}
.x27{left:133.793600pt;}
.x3d{left:136.402933pt;}
.x15{left:137.470933pt;}
.x17{left:140.136267pt;}
.x2b{left:142.722933pt;}
.x16{left:143.936267pt;}
.x26{left:145.520267pt;}
.x20{left:147.000267pt;}
.x3e{left:149.117600pt;}
.x28{left:151.104267pt;}
.x29{left:153.769600pt;}
.x37{left:156.633600pt;}
.x18{left:157.821600pt;}
.x1a{left:158.981600pt;}
.x36{left:159.910933pt;}
.x3a{left:161.377600pt;}
.x24{left:162.885600pt;}
.x19{left:164.712267pt;}
.x1d{left:166.364267pt;}
.x1c{left:171.149600pt;}
.x2d{left:177.866933pt;}
.x1b{left:185.063067pt;}
.x2e{left:218.572400pt;}
.x30{left:242.564000pt;}
.x7{left:265.775200pt;}
.x12{left:276.100533pt;}
.x32{left:278.547200pt;}
.x8{left:287.895200pt;}
.x31{left:314.532500pt;}
.x2f{left:338.522000pt;}
.x23{left:357.378000pt;}
.xa{left:481.683600pt;}
.x13{left:484.904933pt;}
.xb{left:489.466267pt;}
.x11{left:490.936933pt;}
.x10{left:494.642267pt;}
.xf{left:498.352109pt;}
.x33{left:506.447450pt;}
.x22{left:525.197067pt;}
.x3{left:541.346400pt;}
.xc{left:551.915733pt;}
.xd{left:562.271279pt;}
.x34{left:571.975733pt;}
.xe{left:587.113925pt;}
.x4{left:594.722533pt;}
.x2{left:673.601333pt;}
}




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