
    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_dbe1037c56bf8aeba4ff201f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.024902;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_927b68a144f59a595ca958df.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.006836;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_529802f2ecc66de88068321d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973633;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_863562e7f64eba3cd6440124.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.963379;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_ce7db5ea25e10e01b2aad51f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.021484;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_4ebba324189c986fa4f2a359.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.710938;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_e0a8d2c86030336f7f956f7f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.939453;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_243a0fca17767b11e4698f6d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,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);}
.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);}
.v5{vertical-align:-79.008795px;}
.v4{vertical-align:-55.668675px;}
.v3{vertical-align:-43.603409px;}
.v2{vertical-align:-22.499955px;}
.v6{vertical-align:-10.899655px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:29.249942px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:108.032284px;}
.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;}
}
.ws5{word-spacing:-69.935898px;}
.ws4{word-spacing:-38.219960px;}
.ws6{word-spacing:-29.399978px;}
.wsa{word-spacing:-26.459947px;}
.wse{word-spacing:-24.989987px;}
.ws7{word-spacing:-20.087960px;}
.wsb{word-spacing:-17.855964px;}
.wsd{word-spacing:-16.368005px;}
.wsc{word-spacing:-14.879933px;}
.ws0{word-spacing:-12.895956px;}
.ws1{word-spacing:-9.919960px;}
.ws3{word-spacing:-0.575999px;}
.ws2{word-spacing:0.000000px;}
.ws9{word-spacing:102.419951px;}
.ws8{word-spacing:546.732321px;}
._7{margin-left:-54.143892px;}
._6{margin-left:-47.231906px;}
._5{margin-left:-17.279966px;}
._f{margin-left:-13.644889px;}
._b{margin-left:-12.125982px;}
._d{margin-left:-10.772978px;}
._10{margin-left:-8.184681px;}
._e{margin-left:-7.041308px;}
._4{margin-left:-5.916482px;}
._0{margin-left:-4.133984px;}
._3{margin-left:-2.174762px;}
._1{margin-left:-1.170140px;}
._2{width:1.810774px;}
._9{width:3.595268px;}
._c{width:5.357992px;}
._8{width:108.079382px;}
._11{width:338.923989px;}
._a{width:496.012481px;}
._12{width:3015.827571px;}
.fc4{color:rgb(0,102,178);}
.fc2{color:transparent;}
.fc3{color:rgb(89,89,89);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:39.999840px;}
.fs6{font-size:41.999766px;}
.fs7{font-size:48.000054px;}
.fs1{font-size:51.999822px;}
.fs11{font-size:53.999892px;}
.fs3{font-size:59.999730px;}
.fs19{font-size:66.000018px;}
.fs13{font-size:71.999856px;}
.fs18{font-size:75.000000px;}
.fs0{font-size:77.999694px;}
.fs15{font-size:80.999838px;}
.fs1b{font-size:83.999982px;}
.fs12{font-size:95.999658px;}
.fs1c{font-size:101.999946px;}
.fs16{font-size:107.999784px;}
.fs9{font-size:113.999622px;}
.fs5{font-size:119.999910px;}
.fse{font-size:131.999586px;}
.fs17{font-size:146.999857px;}
.fsa{font-size:155.999839px;}
.fs14{font-size:161.999677px;}
.fs1a{font-size:167.999515px;}
.fs4{font-size:173.999803px;}
.fs1e{font-size:185.999479px;}
.fsf{font-size:191.999767px;}
.fsc{font-size:197.999605px;}
.fsb{font-size:281.999587px;}
.fs1d{font-size:287.999425px;}
.fs10{font-size:431.999138px;}
.fs8{font-size:575.998850px;}
.fsd{font-size:983.998186px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.001215px;}
.y3a{bottom:6.218112px;}
.ye{bottom:8.188074px;}
.y1e{bottom:9.181703px;}
.y67{bottom:9.236885px;}
.y6c{bottom:9.883426px;}
.y2f{bottom:11.493124px;}
.y85{bottom:14.218039px;}
.y17{bottom:17.133023px;}
.y2b{bottom:19.025852px;}
.y12{bottom:19.593730px;}
.yd{bottom:20.788049px;}
.y66{bottom:25.796852px;}
.y6b{bottom:27.883390px;}
.y84{bottom:28.618010px;}
.y54{bottom:28.909837px;}
.y56{bottom:28.910152px;}
.y50{bottom:28.958189px;}
.y7b{bottom:30.837295px;}
.y2e{bottom:32.852276px;}
.y6f{bottom:33.484753px;}
.y11{bottom:33.993701px;}
.y82{bottom:34.339082px;}
.y53{bottom:43.309808px;}
.y55{bottom:43.310123px;}
.y3f{bottom:57.132864px;}
.y2d{bottom:63.527226px;}
.y16{bottom:63.932930px;}
.y7{bottom:70.990624px;}
.y81{bottom:77.898995px;}
.y36{bottom:83.788399px;}
.y6{bottom:88.990588px;}
.y5{bottom:106.990552px;}
.y2a{bottom:111.191882px;}
.y80{bottom:113.898923px;}
.y15{bottom:114.169841px;}
.y21{bottom:118.951397px;}
.y4{bottom:131.920490px;}
.y8b{bottom:133.467276px;}
.y5b{bottom:137.329178px;}
.y65{bottom:137.649621px;}
.y4c{bottom:140.962777px;}
.y3d{bottom:142.027753px;}
.y7f{bottom:149.898851px;}
.y1c{bottom:155.003027px;}
.y3{bottom:155.545443px;}
.y71{bottom:158.500176px;}
.y5a{bottom:162.168903px;}
.y48{bottom:165.262728px;}
.y29{bottom:168.791767px;}
.y64{bottom:173.649549px;}
.y20{bottom:176.911282px;}
.y2{bottom:178.420396px;}
.y7e{bottom:185.898779px;}
.y8a{bottom:189.267145px;}
.y47{bottom:189.562680px;}
.y2c{bottom:193.126967px;}
.y4b{bottom:203.479849px;}
.y46{bottom:205.167345px;}
.y63{bottom:209.649477px;}
.y43{bottom:211.917332px;}
.y14{bottom:213.888579px;}
.yc{bottom:215.924705px;}
.y88{bottom:217.804379px;}
.y1b{bottom:218.332863px;}
.y7d{bottom:221.898707px;}
.y4a{bottom:227.779800px;}
.y45{bottom:229.467297px;}
.y7a{bottom:230.391885px;}
.y1f{bottom:235.591164px;}
.y42{bottom:236.217283px;}
.y3c{bottom:239.317559px;}
.y70{bottom:243.100007px;}
.y58{bottom:247.606717px;}
.yb{bottom:251.924633px;}
.y49{bottom:252.079752px;}
.y44{bottom:253.767248px;}
.y28{bottom:258.791587px;}
.y13{bottom:260.307714px;}
.y41{bottom:260.517235px;}
.y62{bottom:260.649338px;}
.y79{bottom:263.511818px;}
.y38{bottom:266.809491px;}
.y1a{bottom:281.662699px;}
.ya{bottom:287.924561px;}
.y78{bottom:296.631752px;}
.y61{bottom:296.649266px;}
.y39{bottom:298.143283px;}
.y27{bottom:298.391508px;}
.y89{bottom:299.604671px;}
.y22{bottom:311.735023px;}
.y3e{bottom:311.804374px;}
.y19{bottom:320.992621px;}
.y77{bottom:329.751690px;}
.y57{bottom:335.929752px;}
.y86{bottom:335.958303px;}
.y26{bottom:337.991429px;}
.y9{bottom:345.164447px;}
.y60{bottom:347.649127px;}
.y76{bottom:362.871629px;}
.y25{bottom:377.591350px;}
.y5f{bottom:383.649055px;}
.y18{bottom:384.322457px;}
.y75{bottom:395.991563px;}
.y8{bottom:397.364343px;}
.y24{bottom:417.191271px;}
.y35{bottom:417.747399px;}
.y59{bottom:424.252673px;}
.y74{bottom:429.111480px;}
.y5e{bottom:434.648916px;}
.y4f{bottom:436.147617px;}
.y37{bottom:440.316064px;}
.y33{bottom:442.994361px;}
.y23{bottom:456.791193px;}
.y1d{bottom:459.413517px;}
.y87{bottom:460.635666px;}
.y32{bottom:466.034315px;}
.y4e{bottom:468.547552px;}
.y5d{bottom:470.648844px;}
.y6e{bottom:474.568795px;}
.y73{bottom:481.983612px;}
.y6d{bottom:493.283452px;}
.y40{bottom:493.659435px;}
.y31{bottom:494.834257px;}
.y52{bottom:505.074722px;}
.y69{bottom:514.645994px;}
.y3b{bottom:519.126895px;}
.y6a{bottom:525.193694px;}
.y4d{bottom:528.073685px;}
.y34{bottom:528.474674px;}
.y72{bottom:529.233518px;}
.y30{bottom:534.535052px;}
.y10{bottom:537.450215px;}
.y68{bottom:541.465940px;}
.y5c{bottom:545.374233px;}
.y7c{bottom:545.993260px;}
.y83{bottom:546.360895px;}
.y51{bottom:551.874629px;}
.yf{bottom:560.850168px;}
.h6{height:31.930486px;}
.h3{height:31.952997px;}
.hb{height:34.992227px;}
.he{height:36.492229px;}
.h8{height:38.179731px;}
.h19{height:39.366132px;}
.h16{height:41.053629px;}
.h1d{height:47.929472px;}
.h24{height:55.986316px;}
.h18{height:56.671762px;}
.h1e{height:57.515510px;}
.h7{height:58.499771px;}
.h21{height:59.912110px;}
.h1b{height:64.704949px;}
.h2{height:70.788862px;}
.h23{height:72.984115px;}
.h17{height:75.562231px;}
.h25{height:81.480426px;}
.h1c{height:86.273265px;}
.ha{height:91.066105px;}
.h5{height:94.453055px;}
.h1f{height:95.859303px;}
.h13{height:103.898112px;}
.h20{height:115.704965px;}
.hd{height:122.788935px;}
.hc{height:124.617059px;}
.h1a{height:129.409898px;}
.h22{height:132.233993px;}
.h4{height:136.956876px;}
.h10{height:138.995936px;}
.h27{height:148.581615px;}
.h14{height:151.124816px;}
.h11{height:158.167653px;}
.hf{height:225.269201px;}
.h26{height:226.687047px;}
.h15{height:323.999353px;}
.h9{height:409.499183px;}
.h1{height:607.498785px;}
.h0{height:607.500000px;}
.h12{height:774.514197px;}
.w1{width:1079.997840px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xc{left:10.718246px;}
.x2{left:12.493085px;}
.x20{left:13.608486px;}
.x7{left:15.194010px;}
.x2f{left:18.125476px;}
.x2b{left:31.822261px;}
.x3b{left:35.661401px;}
.x10{left:37.582013px;}
.xe{left:46.334552px;}
.x29{left:47.941113px;}
.x14{left:49.809941px;}
.x38{left:52.128561px;}
.x28{left:55.629814px;}
.x16{left:58.470358px;}
.x1c{left:60.381094px;}
.x36{left:62.966115px;}
.x32{left:65.748888px;}
.x34{left:73.666771px;}
.x3d{left:108.130979px;}
.x3c{left:117.111918px;}
.xd{left:163.679803px;}
.x5{left:168.566340px;}
.x22{left:174.485209px;}
.x17{left:183.989043px;}
.x1d{left:192.613797px;}
.x39{left:213.105524px;}
.x3a{left:245.604300px;}
.x1e{left:284.278003px;}
.x1f{left:290.738654px;}
.x21{left:301.872528px;}
.x4{left:350.289080px;}
.x23{left:413.248335px;}
.x1b{left:435.081804px;}
.x1{left:456.078832px;}
.x3{left:459.200591px;}
.x2c{left:461.845544px;}
.xf{left:473.580109px;}
.x2d{left:480.977390px;}
.xb{left:495.681124px;}
.x9{left:499.524402px;}
.x8{left:503.517582px;}
.x2e{left:518.095453px;}
.x2a{left:544.236432px;}
.xa{left:549.119253px;}
.x24{left:557.148409px;}
.x15{left:577.042000px;}
.x30{left:649.040964px;}
.x6{left:667.557513px;}
.x25{left:680.337952px;}
.x37{left:705.942362px;}
.x19{left:794.196275px;}
.x18{left:805.540764px;}
.x26{left:817.025133px;}
.x35{left:821.587929px;}
.x31{left:836.079153px;}
.x33{left:857.639676px;}
.x1a{left:867.480728px;}
.x27{left:948.649962px;}
.x11{left:1041.346990px;}
.x13{left:1056.860508px;}
.x12{left:1059.976953px;}
@media print{
.v5{vertical-align:-70.230040pt;}
.v4{vertical-align:-49.483267pt;}
.v3{vertical-align:-38.758585pt;}
.v2{vertical-align:-19.999960pt;}
.v6{vertical-align:-9.688582pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:25.999948pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:96.028697pt;}
.ws5{word-spacing:-62.165242pt;}
.ws4{word-spacing:-33.973298pt;}
.ws6{word-spacing:-26.133314pt;}
.wsa{word-spacing:-23.519953pt;}
.wse{word-spacing:-22.213322pt;}
.ws7{word-spacing:-17.855964pt;}
.wsb{word-spacing:-15.871968pt;}
.wsd{word-spacing:-14.549337pt;}
.wsc{word-spacing:-13.226607pt;}
.ws0{word-spacing:-11.463072pt;}
.ws1{word-spacing:-8.817743pt;}
.ws3{word-spacing:-0.511999pt;}
.ws2{word-spacing:0.000000pt;}
.ws9{word-spacing:91.039956pt;}
.ws8{word-spacing:485.984286pt;}
._7{margin-left:-48.127904pt;}
._6{margin-left:-41.983916pt;}
._5{margin-left:-15.359969pt;}
._f{margin-left:-12.128791pt;}
._b{margin-left:-10.778651pt;}
._d{margin-left:-9.575981pt;}
._10{margin-left:-7.275272pt;}
._e{margin-left:-6.258940pt;}
._4{margin-left:-5.259096pt;}
._0{margin-left:-3.674652pt;}
._3{margin-left:-1.933121pt;}
._1{margin-left:-1.040124pt;}
._2{width:1.609577pt;}
._9{width:3.195794pt;}
._c{width:4.762660pt;}
._8{width:96.070562pt;}
._11{width:301.265768pt;}
._a{width:440.899983pt;}
._12{width:2680.735619pt;}
.fs2{font-size:35.555413pt;}
.fs6{font-size:37.333125pt;}
.fs7{font-size:42.666715pt;}
.fs1{font-size:46.222064pt;}
.fs11{font-size:47.999904pt;}
.fs3{font-size:53.333094pt;}
.fs19{font-size:58.666683pt;}
.fs13{font-size:63.999872pt;}
.fs18{font-size:66.666667pt;}
.fs0{font-size:69.333062pt;}
.fs15{font-size:71.999856pt;}
.fs1b{font-size:74.666651pt;}
.fs12{font-size:85.333030pt;}
.fs1c{font-size:90.666619pt;}
.fs16{font-size:95.999808pt;}
.fs9{font-size:101.332998pt;}
.fs5{font-size:106.666587pt;}
.fse{font-size:117.332966pt;}
.fs17{font-size:130.666539pt;}
.fsa{font-size:138.666523pt;}
.fs14{font-size:143.999713pt;}
.fs1a{font-size:149.332902pt;}
.fs4{font-size:154.666491pt;}
.fs1e{font-size:165.332870pt;}
.fsf{font-size:170.666459pt;}
.fsc{font-size:175.999649pt;}
.fsb{font-size:250.666300pt;}
.fs1d{font-size:255.999489pt;}
.fs10{font-size:383.999233pt;}
.fs8{font-size:511.998978pt;}
.fsd{font-size:874.665054pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.001080pt;}
.y3a{bottom:5.527210pt;}
.ye{bottom:7.278288pt;}
.y1e{bottom:8.161514pt;}
.y67{bottom:8.210565pt;}
.y6c{bottom:8.785268pt;}
.y2f{bottom:10.216110pt;}
.y85{bottom:12.638256pt;}
.y17{bottom:15.229354pt;}
.y2b{bottom:16.911868pt;}
.y12{bottom:17.416649pt;}
.yd{bottom:18.478266pt;}
.y66{bottom:22.930535pt;}
.y6b{bottom:24.785236pt;}
.y84{bottom:25.438231pt;}
.y54{bottom:25.697633pt;}
.y56{bottom:25.697913pt;}
.y50{bottom:25.740612pt;}
.y7b{bottom:27.410929pt;}
.y2e{bottom:29.202023pt;}
.y6f{bottom:29.764225pt;}
.y11{bottom:30.216623pt;}
.y82{bottom:30.523628pt;}
.y53{bottom:38.497607pt;}
.y55{bottom:38.497887pt;}
.y3f{bottom:50.784768pt;}
.y2d{bottom:56.468645pt;}
.y16{bottom:56.829271pt;}
.y7{bottom:63.102777pt;}
.y81{bottom:69.243551pt;}
.y36{bottom:74.478576pt;}
.y6{bottom:79.102745pt;}
.y5{bottom:95.102713pt;}
.y2a{bottom:98.837228pt;}
.y80{bottom:101.243487pt;}
.y15{bottom:101.484303pt;}
.y21{bottom:105.734575pt;}
.y4{bottom:117.262658pt;}
.y8b{bottom:118.637579pt;}
.y5b{bottom:122.070380pt;}
.y65{bottom:122.355219pt;}
.y4c{bottom:125.300246pt;}
.y3d{bottom:126.246892pt;}
.y7f{bottom:133.243423pt;}
.y1c{bottom:137.780469pt;}
.y3{bottom:138.262616pt;}
.y71{bottom:140.889045pt;}
.y5a{bottom:144.150136pt;}
.y48{bottom:146.900203pt;}
.y29{bottom:150.037126pt;}
.y64{bottom:154.355155pt;}
.y20{bottom:157.254472pt;}
.y2{bottom:158.595907pt;}
.y7e{bottom:165.243359pt;}
.y8a{bottom:168.237462pt;}
.y47{bottom:168.500160pt;}
.y2c{bottom:171.668415pt;}
.y4b{bottom:180.870977pt;}
.y46{bottom:182.370974pt;}
.y63{bottom:186.355091pt;}
.y43{bottom:188.370962pt;}
.y14{bottom:190.123181pt;}
.yc{bottom:191.933071pt;}
.y88{bottom:193.603893pt;}
.y1b{bottom:194.073656pt;}
.y7d{bottom:197.243295pt;}
.y4a{bottom:202.470934pt;}
.y45{bottom:203.970931pt;}
.y7a{bottom:204.792786pt;}
.y1f{bottom:209.414368pt;}
.y42{bottom:209.970919pt;}
.y3c{bottom:212.726719pt;}
.y70{bottom:216.088895pt;}
.y58{bottom:220.094860pt;}
.yb{bottom:223.933007pt;}
.y49{bottom:224.070890pt;}
.y44{bottom:225.570887pt;}
.y28{bottom:230.036966pt;}
.y13{bottom:231.384635pt;}
.y41{bottom:231.570875pt;}
.y62{bottom:231.688300pt;}
.y79{bottom:234.232727pt;}
.y38{bottom:237.163992pt;}
.y1a{bottom:250.366844pt;}
.ya{bottom:255.932943pt;}
.y78{bottom:263.672669pt;}
.y61{bottom:263.688237pt;}
.y39{bottom:265.016252pt;}
.y27{bottom:265.236896pt;}
.y89{bottom:266.315263pt;}
.y22{bottom:277.097798pt;}
.y3e{bottom:277.159443pt;}
.y19{bottom:285.326774pt;}
.y77{bottom:293.112613pt;}
.y57{bottom:298.604224pt;}
.y86{bottom:298.629602pt;}
.y26{bottom:300.436826pt;}
.y9{bottom:306.812842pt;}
.y60{bottom:309.021446pt;}
.y76{bottom:322.552559pt;}
.y25{bottom:335.636755pt;}
.y5f{bottom:341.021382pt;}
.y18{bottom:341.619962pt;}
.y75{bottom:351.992500pt;}
.y8{bottom:353.212749pt;}
.y24{bottom:370.836685pt;}
.y35{bottom:371.331021pt;}
.y59{bottom:377.113487pt;}
.y74{bottom:381.432427pt;}
.y5e{bottom:386.354592pt;}
.y4f{bottom:387.686770pt;}
.y37{bottom:391.392057pt;}
.y33{bottom:393.772765pt;}
.y23{bottom:406.036616pt;}
.y1d{bottom:408.367571pt;}
.y87{bottom:409.453925pt;}
.y32{bottom:414.252724pt;}
.y4e{bottom:416.486713pt;}
.y5d{bottom:418.354528pt;}
.y6e{bottom:421.838929pt;}
.y73{bottom:428.429878pt;}
.y6d{bottom:438.474180pt;}
.y40{bottom:438.808387pt;}
.y31{bottom:439.852673pt;}
.y52{bottom:448.955308pt;}
.y69{bottom:457.463106pt;}
.y3b{bottom:461.446129pt;}
.y6a{bottom:466.838839pt;}
.y4d{bottom:469.398831pt;}
.y34{bottom:469.755266pt;}
.y72{bottom:470.429794pt;}
.y30{bottom:475.142268pt;}
.y10{bottom:477.733524pt;}
.y68{bottom:481.303058pt;}
.y5c{bottom:484.777096pt;}
.y7c{bottom:485.327342pt;}
.y83{bottom:485.654129pt;}
.y51{bottom:490.555225pt;}
.yf{bottom:498.533483pt;}
.h6{height:28.382654pt;}
.h3{height:28.402664pt;}
.hb{height:31.104202pt;}
.he{height:32.437537pt;}
.h8{height:33.937538pt;}
.h19{height:34.992118pt;}
.h16{height:36.492115pt;}
.h1d{height:42.603975pt;}
.h24{height:49.765615pt;}
.h18{height:50.374899pt;}
.h1e{height:51.124898pt;}
.h7{height:51.999796pt;}
.h21{height:53.255209pt;}
.h1b{height:57.515510pt;}
.h2{height:62.923433pt;}
.h23{height:64.874769pt;}
.h17{height:67.166428pt;}
.h25{height:72.427045pt;}
.h1c{height:76.687347pt;}
.ha{height:80.947649pt;}
.h5{height:83.958271pt;}
.h1f{height:85.208270pt;}
.h13{height:92.353877pt;}
.h20{height:102.848858pt;}
.hd{height:109.145720pt;}
.hc{height:110.770719pt;}
.h1a{height:115.031020pt;}
.h22{height:117.541327pt;}
.h4{height:121.739445pt;}
.h10{height:123.551943pt;}
.h27{height:132.072547pt;}
.h14{height:134.333170pt;}
.h11{height:140.593469pt;}
.hf{height:200.239290pt;}
.h26{height:201.499598pt;}
.h15{height:287.999425pt;}
.h9{height:363.999273pt;}
.h1{height:539.998920pt;}
.h0{height:540.000000pt;}
.h12{height:688.457064pt;}
.w1{width:959.998080pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xc{left:9.527330pt;}
.x2{left:11.104965pt;}
.x20{left:12.096432pt;}
.x7{left:13.505787pt;}
.x2f{left:16.111534pt;}
.x2b{left:28.286454pt;}
.x3b{left:31.699023pt;}
.x10{left:33.406234pt;}
.xe{left:41.186268pt;}
.x29{left:42.614323pt;}
.x14{left:44.275503pt;}
.x38{left:46.336499pt;}
.x28{left:49.448723pt;}
.x16{left:51.973651pt;}
.x1c{left:53.672083pt;}
.x36{left:55.969880pt;}
.x32{left:58.443456pt;}
.x34{left:65.481574pt;}
.x3d{left:96.116426pt;}
.x3c{left:104.099483pt;}
.xd{left:145.493158pt;}
.x5{left:149.836747pt;}
.x22{left:155.097963pt;}
.x17{left:163.545816pt;}
.x1d{left:171.212264pt;}
.x39{left:189.427132pt;}
.x3a{left:218.314933pt;}
.x1e{left:252.691558pt;}
.x1f{left:258.434359pt;}
.x21{left:268.331136pt;}
.x4{left:311.368071pt;}
.x23{left:367.331854pt;}
.x1b{left:386.739381pt;}
.x1{left:405.403406pt;}
.x3{left:408.178303pt;}
.x2c{left:410.529373pt;}
.xf{left:420.960097pt;}
.x2d{left:427.535458pt;}
.xb{left:440.605444pt;}
.x9{left:444.021691pt;}
.x8{left:447.571184pt;}
.x2e{left:460.529292pt;}
.x2a{left:483.765717pt;}
.xa{left:488.106003pt;}
.x24{left:495.243030pt;}
.x15{left:512.926222pt;}
.x30{left:576.925301pt;}
.x6{left:593.384456pt;}
.x25{left:604.744846pt;}
.x37{left:627.504322pt;}
.x19{left:705.952244pt;}
.x18{left:716.036235pt;}
.x26{left:726.244563pt;}
.x35{left:730.300381pt;}
.x31{left:743.181469pt;}
.x33{left:762.346379pt;}
.x1a{left:771.093980pt;}
.x27{left:843.244410pt;}
.x11{left:925.641769pt;}
.x13{left:939.431563pt;}
.x12{left:942.201736pt;}
}




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