
    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_2f81928501b921382ea44684.woff')format("woff");}.ff1{font-family:ff1;line-height:0.987000;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_453154cfc026c02151d4331e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.987000;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_cf9dfb36fcd5799bbe179b89.woff')format("woff");}.ff3{font-family:ff3;line-height:0.773000;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_53242fbe710f4ce27f5222d2.woff')format("woff");}.ff4{font-family:ff4;line-height:1.194000;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_8c2a09e844b2e3d8c4597f67.woff')format("woff");}.ff5{font-family:ff5;line-height:0.951000;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_56fb37e06e805887f2668e83.woff')format("woff");}.ff6{font-family:ff6;line-height:0.758000;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_b25d5ae5c3475461119e9cc9.woff')format("woff");}.ff7{font-family:ff7;line-height:1.067000;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_ed9790b9cdee058aca5be64b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.719000;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_d4dd69435e789fe848acb374.woff')format("woff");}.ff9{font-family:ff9;line-height:1.085000;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_9006f63c78c636714a215555.woff')format("woff");}.ffa{font-family:ffa;line-height:1.067000;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_ede2288cb022885af8dc6eb1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.997000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_9b4ebeabe34d33cefa5948cd.woff')format("woff");}.ffc{font-family:ffc;line-height:0.724000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_87502f92fd86236785709d0e.woff')format("woff");}.ffd{font-family:ffd;line-height:0.992000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_f5bbbe1802baa4daabe7ee96.woff')format("woff");}.ffe{font-family:ffe;line-height:0.992000;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;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
.ff11{font-family:sans-serif;visibility:hidden;}
.ff12{font-family:sans-serif;visibility:hidden;}
.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;}
.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;}
}
.ws1{word-spacing:-179.164845px;}
.ws0{word-spacing:-124.671461px;}
.ws4{word-spacing:-47.193974px;}
.ws6{word-spacing:-35.364597px;}
.ws8{word-spacing:-34.071478px;}
.wsa{word-spacing:-27.980819px;}
.ws2{word-spacing:-23.188948px;}
.wsb{word-spacing:-16.595999px;}
.ws3{word-spacing:-15.235380px;}
.ws9{word-spacing:-13.826542px;}
.ws7{word-spacing:-12.446999px;}
.ws5{word-spacing:-11.064030px;}
.wsc{word-spacing:0.000000px;}
._8{margin-left:-9.842318px;}
._7{margin-left:-6.046824px;}
._a{margin-left:-4.282428px;}
._6{margin-left:-2.702362px;}
._1{margin-left:-1.359245px;}
._4{width:1.114434px;}
._5{width:2.420825px;}
._9{width:7.194375px;}
._0{width:12.306706px;}
._2{width:40.370727px;}
._3{width:41.648958px;}
.fc4{color:transparent;}
.fc2{color:rgb(254,230,224);}
.fc1{color:rgb(58,161,126);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs15{font-size:44.400009px;}
.fsa{font-size:44.603174px;}
.fs8{font-size:48.000131px;}
.fs3{font-size:49.772646px;}
.fse{font-size:53.999998px;}
.fs4{font-size:54.090000px;}
.fs17{font-size:56.564996px;}
.fsd{font-size:59.984997px;}
.fs5{font-size:71.864998px;}
.fs12{font-size:71.999997px;}
.fs10{font-size:83.969997px;}
.fs13{font-size:86.579996px;}
.fs2{font-size:86.849992px;}
.fs16{font-size:95.984996px;}
.fs18{font-size:107.999996px;}
.fs9{font-size:119.879991px;}
.fsf{font-size:119.969995px;}
.fs7{font-size:121.948253px;}
.fs6{font-size:121.951016px;}
.fs14{font-size:122.579995px;}
.fs19{font-size:125.999995px;}
.fs11{font-size:131.984995px;}
.fsb{font-size:149.985003px;}
.fsc{font-size:173.969993px;}
.fs0{font-size:197.577592px;}
.fs1{font-size:283.937947px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.000008px;}
.y25{bottom:2.833132px;}
.y41{bottom:2.924001px;}
.y22{bottom:3.241591px;}
.y1d{bottom:3.281552px;}
.y17{bottom:3.321513px;}
.y9{bottom:5.204613px;}
.y4{bottom:16.450921px;}
.y21{bottom:17.241629px;}
.y1c{bottom:17.281590px;}
.y16{bottom:17.321551px;}
.y7f{bottom:17.997551px;}
.y8{bottom:19.721635px;}
.y20{bottom:31.241667px;}
.y1b{bottom:31.281629px;}
.y15{bottom:31.321590px;}
.y7e{bottom:38.247550px;}
.y1f{bottom:45.241706px;}
.y1a{bottom:45.281667px;}
.y14{bottom:45.321628px;}
.y7d{bottom:58.497550px;}
.y19{bottom:59.281705px;}
.y13{bottom:59.321666px;}
.ye{bottom:62.808107px;}
.y10{bottom:63.232972px;}
.y12{bottom:73.321705px;}
.y2b{bottom:92.772608px;}
.y2a{bottom:110.772607px;}
.y2{bottom:116.714789px;}
.y29{bottom:128.772607px;}
.y28{bottom:160.746689px;}
.y82{bottom:200.139760px;}
.y81{bottom:220.389759px;}
.y80{bottom:240.639758px;}
.y2c{bottom:269.889757px;}
.y37{bottom:309.266519px;}
.y36{bottom:329.516518px;}
.y35{bottom:349.766517px;}
.y34{bottom:370.016517px;}
.y33{bottom:390.266516px;}
.y32{bottom:410.516515px;}
.y31{bottom:430.766514px;}
.y3d{bottom:459.716633px;}
.y3c{bottom:508.796691px;}
.y3b{bottom:538.046690px;}
.y3a{bottom:567.296688px;}
.y39{bottom:596.546687px;}
.y38{bottom:629.068510px;}
.y7{bottom:728.459977px;}
.y3{bottom:796.859974px;}
.ya{bottom:856.199664px;}
.yc{bottom:874.502532px;}
.y6{bottom:891.975887px;}
.yb{bottom:899.252531px;}
.y40{bottom:932.219969px;}
.y24{bottom:958.859968px;}
.y11{bottom:989.459966px;}
.y18{bottom:1003.499966px;}
.y1e{bottom:1017.539965px;}
.y6c{bottom:1040.037581px;}
.y6b{bottom:1062.537580px;}
.y6a{bottom:1085.037579px;}
.yf{bottom:1088.819962px;}
.yd{bottom:1089.179962px;}
.y69{bottom:1107.537578px;}
.y68{bottom:1130.037577px;}
.y67{bottom:1152.537576px;}
.y66{bottom:1175.037575px;}
.y65{bottom:1197.537574px;}
.y64{bottom:1220.037573px;}
.y63{bottom:1242.537572px;}
.y62{bottom:1265.037571px;}
.y23{bottom:1272.281779px;}
.y61{bottom:1287.537570px;}
.y60{bottom:1310.037569px;}
.y3f{bottom:1313.469701px;}
.y5f{bottom:1332.537568px;}
.y5e{bottom:1355.037568px;}
.y5d{bottom:1377.537567px;}
.y4d{bottom:1398.098354px;}
.y5c{bottom:1400.037566px;}
.y4c{bottom:1420.598353px;}
.y5b{bottom:1422.537565px;}
.y4b{bottom:1443.098352px;}
.y5a{bottom:1445.037564px;}
.y4a{bottom:1465.598351px;}
.y59{bottom:1467.537563px;}
.y49{bottom:1488.098350px;}
.y58{bottom:1490.037562px;}
.y48{bottom:1510.598349px;}
.y57{bottom:1512.537561px;}
.y47{bottom:1533.098348px;}
.y56{bottom:1535.037560px;}
.y46{bottom:1555.598347px;}
.y55{bottom:1557.537559px;}
.y45{bottom:1578.098346px;}
.y54{bottom:1580.037558px;}
.y44{bottom:1600.598345px;}
.y53{bottom:1602.537557px;}
.y43{bottom:1636.380472px;}
.y6e{bottom:1646.575239px;}
.y42{bottom:1660.005471px;}
.y6d{bottom:1664.575239px;}
.y3e{bottom:1746.383651px;}
.y52{bottom:1802.258709px;}
.y51{bottom:1854.008707px;}
.y79{bottom:1955.684439px;}
.y78{bottom:1975.934438px;}
.y77{bottom:1996.184437px;}
.y72{bottom:1998.428029px;}
.y76{bottom:2016.434436px;}
.y71{bottom:2018.678028px;}
.y75{bottom:2036.684435px;}
.y70{bottom:2038.928027px;}
.y74{bottom:2056.934434px;}
.y6f{bottom:2081.182413px;}
.y73{bottom:2085.359493px;}
.y50{bottom:2161.119416px;}
.y4f{bottom:2180.244416px;}
.y4e{bottom:2199.369415px;}
.y26{bottom:2264.807411px;}
.y7c{bottom:2345.832763px;}
.y30{bottom:2396.589247px;}
.y2f{bottom:2425.839246px;}
.y2e{bottom:2455.089245px;}
.y2d{bottom:2484.339243px;}
.y1{bottom:2557.979901px;}
.y7b{bottom:2567.964223px;}
.y7a{bottom:2611.839221px;}
.y27{bottom:2676.039224px;}
.h15{height:13.319999px;}
.h8{height:32.399999px;}
.h9{height:37.876984px;}
.h23{height:40.581609px;}
.h16{height:40.767301px;}
.h11{height:43.008118px;}
.h1a{height:48.383998px;}
.ha{height:50.520060px;}
.h26{height:51.700407px;}
.h1d{height:53.746557px;}
.h19{height:54.826287px;}
.h13{height:56.519998px;}
.h1f{height:64.511997px;}
.h27{height:65.807997px;}
.h7{height:66.092844px;}
.hb{height:67.768693px;}
.h25{height:68.399997px;}
.h12{height:70.559997px;}
.h21{height:71.515077px;}
.h1c{height:75.237117px;}
.h4{height:83.879997px;}
.h10{height:84.599996px;}
.h14{height:85.354553px;}
.h24{height:87.730286px;}
.hf{height:91.095345px;}
.hd{height:91.097409px;}
.h28{height:98.711996px;}
.h29{height:104.075996px;}
.h1e{height:109.019605px;}
.h1b{height:109.652575px;}
.h22{height:112.038115px;}
.h20{height:120.634285px;}
.h17{height:137.086293px;}
.hc{height:146.879994px;}
.he{height:147.599994px;}
.h18{height:159.008573px;}
.h3{height:163.199091px;}
.h2{height:228.239990px;}
.h5{height:234.532744px;}
.h6{height:2812.499883px;}
.h0{height:2812.499891px;}
.h1{height:2812.500000px;}
.wc{width:105.839996px;}
.wb{width:124.199995px;}
.w9{width:130.319995px;}
.wa{width:139.319994px;}
.w8{width:142.199994px;}
.w5{width:146.879994px;}
.w7{width:147.239994px;}
.w6{width:147.599994px;}
.w2{width:151.559994px;}
.w4{width:174.599993px;}
.w1{width:233.999990px;}
.w3{width:1012.499958px;}
.w0{width:1012.500000px;}
.x0{left:0.000000px;}
.x10{left:6.875391px;}
.x14{left:11.437135px;}
.x11{left:15.562915px;}
.x6{left:23.872806px;}
.x1a{left:25.015868px;}
.x19{left:26.683246px;}
.x1{left:28.079999px;}
.x1b{left:30.411361px;}
.x2{left:37.478862px;}
.x36{left:41.748045px;}
.xd{left:45.364327px;}
.xb{left:49.626055px;}
.x1c{left:55.601804px;}
.x5{left:57.959998px;}
.x22{left:62.313374px;}
.xa{left:64.799997px;}
.xf{left:68.399997px;}
.x25{left:75.496967px;}
.x3{left:78.119997px;}
.x34{left:85.822230px;}
.x4{left:89.394253px;}
.x29{left:96.843508px;}
.x28{left:102.421398px;}
.x27{left:106.100482px;}
.x1f{left:108.359995px;}
.x20{left:113.587739px;}
.x21{left:137.441253px;}
.x1e{left:144.917111px;}
.x37{left:167.466790px;}
.x17{left:180.983291px;}
.x38{left:185.466789px;}
.x33{left:191.969709px;}
.x2a{left:197.056394px;}
.x15{left:224.286759px;}
.xc{left:249.479990px;}
.x12{left:254.519989px;}
.x23{left:268.364529px;}
.x26{left:273.251754px;}
.x18{left:284.984352px;}
.x24{left:286.364562px;}
.x8{left:310.137679px;}
.x39{left:311.554675px;}
.x3a{left:329.554674px;}
.x7{left:359.550755px;}
.x35{left:376.289722px;}
.x9{left:378.586895px;}
.xe{left:440.639982px;}
.x13{left:445.679981px;}
.x16{left:464.759981px;}
.x1d{left:533.141915px;}
.x2f{left:546.742066px;}
.x31{left:564.800338px;}
.x30{left:570.653853px;}
.x32{left:602.786665px;}
.x2d{left:664.404268px;}
.x2b{left:667.814424px;}
.x2c{left:680.998017px;}
.x2e{left:727.910971px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-159.257640pt;}
.ws0{word-spacing:-110.819076pt;}
.ws4{word-spacing:-41.950199pt;}
.ws6{word-spacing:-31.435198pt;}
.ws8{word-spacing:-30.285759pt;}
.wsa{word-spacing:-24.871839pt;}
.ws2{word-spacing:-20.612398pt;}
.wsb{word-spacing:-14.751999pt;}
.ws3{word-spacing:-13.542560pt;}
.ws9{word-spacing:-12.290259pt;}
.ws7{word-spacing:-11.064000pt;}
.ws5{word-spacing:-9.834694pt;}
.wsc{word-spacing:0.000000pt;}
._8{margin-left:-8.748727pt;}
._7{margin-left:-5.374955pt;}
._a{margin-left:-3.806602pt;}
._6{margin-left:-2.402100pt;}
._1{margin-left:-1.208217pt;}
._4{width:0.990608pt;}
._5{width:2.151845pt;}
._9{width:6.395000pt;}
._0{width:10.939294pt;}
._2{width:35.885091pt;}
._3{width:37.021296pt;}
.fs15{font-size:39.466675pt;}
.fsa{font-size:39.647266pt;}
.fs8{font-size:42.666784pt;}
.fs3{font-size:44.242352pt;}
.fse{font-size:47.999998pt;}
.fs4{font-size:48.080000pt;}
.fs17{font-size:50.279997pt;}
.fsd{font-size:53.319997pt;}
.fs5{font-size:63.879999pt;}
.fs12{font-size:63.999997pt;}
.fs10{font-size:74.639997pt;}
.fs13{font-size:76.959997pt;}
.fs2{font-size:77.199993pt;}
.fs16{font-size:85.319996pt;}
.fs18{font-size:95.999996pt;}
.fs9{font-size:106.559992pt;}
.fsf{font-size:106.639996pt;}
.fs7{font-size:108.398447pt;}
.fs6{font-size:108.400903pt;}
.fs14{font-size:108.959995pt;}
.fs19{font-size:111.999995pt;}
.fs11{font-size:117.319995pt;}
.fsb{font-size:133.320002pt;}
.fsc{font-size:154.639994pt;}
.fs0{font-size:175.624526pt;}
.fs1{font-size:252.389286pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.000007pt;}
.y25{bottom:2.518339pt;}
.y41{bottom:2.599112pt;}
.y22{bottom:2.881414pt;}
.y1d{bottom:2.916935pt;}
.y17{bottom:2.952456pt;}
.y9{bottom:4.626323pt;}
.y4{bottom:14.623041pt;}
.y21{bottom:15.325893pt;}
.y1c{bottom:15.361414pt;}
.y16{bottom:15.396934pt;}
.y7f{bottom:15.997823pt;}
.y8{bottom:17.530342pt;}
.y20{bottom:27.770371pt;}
.y1b{bottom:27.805892pt;}
.y15{bottom:27.841413pt;}
.y7e{bottom:33.997823pt;}
.y1f{bottom:40.214850pt;}
.y1a{bottom:40.250371pt;}
.y14{bottom:40.285892pt;}
.y7d{bottom:51.997822pt;}
.y19{bottom:52.694849pt;}
.y13{bottom:52.730370pt;}
.ye{bottom:55.829429pt;}
.y10{bottom:56.207087pt;}
.y12{bottom:65.174849pt;}
.y2b{bottom:82.464541pt;}
.y2a{bottom:98.464540pt;}
.y2{bottom:103.746479pt;}
.y29{bottom:114.464539pt;}
.y28{bottom:142.885946pt;}
.y82{bottom:177.902009pt;}
.y81{bottom:195.902008pt;}
.y80{bottom:213.902007pt;}
.y2c{bottom:239.902006pt;}
.y37{bottom:274.903573pt;}
.y36{bottom:292.903572pt;}
.y35{bottom:310.903571pt;}
.y34{bottom:328.903570pt;}
.y33{bottom:346.903570pt;}
.y32{bottom:364.903569pt;}
.y31{bottom:382.903568pt;}
.y3d{bottom:408.637007pt;}
.y3c{bottom:452.263725pt;}
.y3b{bottom:478.263724pt;}
.y3a{bottom:504.263723pt;}
.y39{bottom:530.263722pt;}
.y38{bottom:559.172009pt;}
.y7{bottom:647.519980pt;}
.y3{bottom:708.319977pt;}
.ya{bottom:761.066368pt;}
.yc{bottom:777.335584pt;}
.y6{bottom:792.867455pt;}
.yb{bottom:799.335583pt;}
.y40{bottom:828.639972pt;}
.y24{bottom:852.319971pt;}
.y11{bottom:879.519970pt;}
.y18{bottom:891.999970pt;}
.y1e{bottom:904.479969pt;}
.y6c{bottom:924.477849pt;}
.y6b{bottom:944.477849pt;}
.y6a{bottom:964.477848pt;}
.yf{bottom:967.839967pt;}
.yd{bottom:968.159966pt;}
.y69{bottom:984.477847pt;}
.y68{bottom:1004.477846pt;}
.y67{bottom:1024.477845pt;}
.y66{bottom:1044.477844pt;}
.y65{bottom:1064.477844pt;}
.y64{bottom:1084.477843pt;}
.y63{bottom:1104.477842pt;}
.y62{bottom:1124.477841pt;}
.y23{bottom:1130.917137pt;}
.y61{bottom:1144.477840pt;}
.y60{bottom:1164.477839pt;}
.y3f{bottom:1167.528623pt;}
.y5f{bottom:1184.477839pt;}
.y5e{bottom:1204.477838pt;}
.y5d{bottom:1224.477837pt;}
.y4d{bottom:1242.754092pt;}
.y5c{bottom:1244.477836pt;}
.y4c{bottom:1262.754091pt;}
.y5b{bottom:1264.477835pt;}
.y4b{bottom:1282.754091pt;}
.y5a{bottom:1284.477834pt;}
.y4a{bottom:1302.754090pt;}
.y59{bottom:1304.477834pt;}
.y49{bottom:1322.754089pt;}
.y58{bottom:1324.477833pt;}
.y48{bottom:1342.754088pt;}
.y57{bottom:1344.477832pt;}
.y47{bottom:1362.754087pt;}
.y56{bottom:1364.477831pt;}
.y46{bottom:1382.754086pt;}
.y55{bottom:1384.477830pt;}
.y45{bottom:1402.754086pt;}
.y54{bottom:1404.477829pt;}
.y44{bottom:1422.754085pt;}
.y53{bottom:1424.477829pt;}
.y43{bottom:1454.560419pt;}
.y6e{bottom:1463.622435pt;}
.y42{bottom:1475.560419pt;}
.y6d{bottom:1479.622434pt;}
.y3e{bottom:1552.341023pt;}
.y52{bottom:1602.007741pt;}
.y51{bottom:1648.007739pt;}
.y79{bottom:1738.386168pt;}
.y78{bottom:1756.386167pt;}
.y77{bottom:1774.386166pt;}
.y72{bottom:1776.380470pt;}
.y76{bottom:1792.386165pt;}
.y71{bottom:1794.380469pt;}
.y75{bottom:1810.386165pt;}
.y70{bottom:1812.380468pt;}
.y74{bottom:1828.386164pt;}
.y6f{bottom:1849.939923pt;}
.y73{bottom:1853.652883pt;}
.y50{bottom:1920.995037pt;}
.y4f{bottom:1937.995036pt;}
.y4e{bottom:1954.995035pt;}
.y26{bottom:2013.162143pt;}
.y7c{bottom:2085.184678pt;}
.y30{bottom:2130.301553pt;}
.y2f{bottom:2156.301552pt;}
.y2e{bottom:2182.301551pt;}
.y2d{bottom:2208.301550pt;}
.y1{bottom:2273.759912pt;}
.y7b{bottom:2282.634865pt;}
.y7a{bottom:2321.634863pt;}
.y27{bottom:2378.701533pt;}
.h15{height:11.840000pt;}
.h8{height:28.799999pt;}
.h9{height:33.668430pt;}
.h23{height:36.072541pt;}
.h16{height:36.237601pt;}
.h11{height:38.229438pt;}
.h1a{height:43.007998pt;}
.ha{height:44.906720pt;}
.h26{height:45.955917pt;}
.h1d{height:47.774718pt;}
.h19{height:48.734478pt;}
.h13{height:50.239998pt;}
.h1f{height:57.343998pt;}
.h27{height:58.495998pt;}
.h7{height:58.749195pt;}
.hb{height:60.238839pt;}
.h25{height:60.799997pt;}
.h12{height:62.719997pt;}
.h21{height:63.568957pt;}
.h1c{height:66.877437pt;}
.h4{height:74.559997pt;}
.h10{height:75.199997pt;}
.h14{height:75.870714pt;}
.h24{height:77.982477pt;}
.hf{height:80.973640pt;}
.hd{height:80.975474pt;}
.h28{height:87.743996pt;}
.h29{height:92.511996pt;}
.h1e{height:96.906316pt;}
.h1b{height:97.468956pt;}
.h22{height:99.589436pt;}
.h20{height:107.230476pt;}
.h17{height:121.854482pt;}
.hc{height:130.559995pt;}
.he{height:131.199995pt;}
.h18{height:141.340954pt;}
.h3{height:145.065859pt;}
.h2{height:202.879992pt;}
.h5{height:208.473551pt;}
.h6{height:2499.999896pt;}
.h0{height:2499.999903pt;}
.h1{height:2500.000000pt;}
.wc{width:94.079996pt;}
.wb{width:110.399995pt;}
.w9{width:115.839995pt;}
.wa{width:123.839995pt;}
.w8{width:126.399995pt;}
.w5{width:130.559995pt;}
.w7{width:130.879995pt;}
.w6{width:131.199995pt;}
.w2{width:134.719994pt;}
.w4{width:155.199994pt;}
.w1{width:207.999991pt;}
.w3{width:899.999963pt;}
.w0{width:900.000000pt;}
.x0{left:0.000000pt;}
.x10{left:6.111459pt;}
.x14{left:10.166342pt;}
.x11{left:13.833702pt;}
.x6{left:21.220272pt;}
.x1a{left:22.236327pt;}
.x19{left:23.718441pt;}
.x1{left:24.959999pt;}
.x1b{left:27.032321pt;}
.x2{left:33.314544pt;}
.x36{left:37.109373pt;}
.xd{left:40.323846pt;}
.xb{left:44.112049pt;}
.x1c{left:49.423826pt;}
.x5{left:51.519998pt;}
.x22{left:55.389666pt;}
.xa{left:57.599998pt;}
.xf{left:60.799997pt;}
.x25{left:67.108415pt;}
.x3{left:69.439997pt;}
.x34{left:76.286427pt;}
.x4{left:79.461558pt;}
.x29{left:86.083118pt;}
.x28{left:91.041243pt;}
.x27{left:94.311539pt;}
.x1f{left:96.319996pt;}
.x20{left:100.966879pt;}
.x21{left:122.170003pt;}
.x1e{left:128.815210pt;}
.x37{left:148.859369pt;}
.x17{left:160.874036pt;}
.x38{left:164.859368pt;}
.x33{left:170.639741pt;}
.x2a{left:175.161239pt;}
.x15{left:199.366008pt;}
.xc{left:221.759991pt;}
.x12{left:226.239991pt;}
.x23{left:238.546248pt;}
.x26{left:242.890448pt;}
.x18{left:253.319424pt;}
.x24{left:254.546277pt;}
.x8{left:275.677937pt;}
.x39{left:276.937488pt;}
.x3a{left:292.937488pt;}
.x7{left:319.600671pt;}
.x35{left:334.479753pt;}
.x9{left:336.521684pt;}
.xe{left:391.679984pt;}
.x13{left:396.159983pt;}
.x16{left:413.119983pt;}
.x1d{left:473.903924pt;}
.x2f{left:485.992947pt;}
.x31{left:502.044745pt;}
.x30{left:507.247870pt;}
.x32{left:535.810368pt;}
.x2d{left:590.581571pt;}
.x2b{left:593.612821pt;}
.x2c{left:605.331571pt;}
.x2e{left:647.031974pt;}
}




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