
    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_6cfc60e0f9191e8318140fdf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984027;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_3c7652592ed93c23d495279c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_7f617d3271b4402afc81a9d6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.859000;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_1c907c43025d62ada45472cd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.978000;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_7dbf26755a8abd0dd0604015.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.978000;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_1c9b8e74ff2d65d147e505da.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722656;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_ad3eb80b7ccfdeaade3ab481.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.066406;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_d8cc3a3e1d51ca5bb08aad30.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-14.383415px;}
.vb{vertical-align:-5.728311px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.103163px;}
.v9{vertical-align:22.344821px;}
.v2{vertical-align:26.656048px;}
.v7{vertical-align:40.369147px;}
.va{vertical-align:41.758669px;}
.v4{vertical-align:48.984336px;}
.v6{vertical-align:55.447994px;}
.v5{vertical-align:75.637500px;}
.v8{vertical-align:82.111562px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.254008px;}
.ls11{letter-spacing:0.293760px;}
.lsf{letter-spacing:0.395305px;}
.lsd{letter-spacing:1.087144px;}
.ls8{letter-spacing:2.645318px;}
.lsc{letter-spacing:4.342157px;}
.ls7{letter-spacing:18.468554px;}
.lse{letter-spacing:23.643467px;}
.lsa{letter-spacing:24.526346px;}
.ls10{letter-spacing:25.350455px;}
.ls12{letter-spacing:25.742993px;}
.lsb{letter-spacing:25.749660px;}
.ls3{letter-spacing:26.100165px;}
.ls2{letter-spacing:26.179666px;}
.ls5{letter-spacing:35.648661px;}
.ls6{letter-spacing:35.662777px;}
.ls4{letter-spacing:35.705023px;}
.ls14{letter-spacing:40.573415px;}
.ls15{letter-spacing:40.600643px;}
.ls13{letter-spacing:81.314621px;}
.ls9{letter-spacing:153.642639px;}
.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:-35.028000px;}
.ws16{word-spacing:-29.223360px;}
.ws8{word-spacing:-23.418720px;}
.wsd{word-spacing:-16.156901px;}
.ws2{word-spacing:-14.611680px;}
.wsb{word-spacing:-11.879969px;}
.ws5{word-spacing:-1.516320px;}
.wsc{word-spacing:-1.179360px;}
.ws15{word-spacing:-0.927360px;}
.ws4{word-spacing:-0.840960px;}
.ws14{word-spacing:-0.807840px;}
.ws10{word-spacing:-0.220321px;}
.wsa{word-spacing:-0.146881px;}
.ws3{word-spacing:-0.105120px;}
.ws6{word-spacing:-0.000083px;}
.ws0{word-spacing:0.000000px;}
.ws13{word-spacing:0.514083px;}
.ws7{word-spacing:0.842462px;}
.ws11{word-spacing:0.954726px;}
.wsf{word-spacing:4.626749px;}
.ws12{word-spacing:6.095558px;}
.ws9{word-spacing:22.913280px;}
.wse{word-spacing:87.304055px;}
._e{margin-left:-2628.665379px;}
._f{margin-left:-2167.246118px;}
._9{margin-left:-1148.278297px;}
._7{margin-left:-18.936000px;}
._13{margin-left:-16.276571px;}
._4{margin-left:-11.753821px;}
._3{margin-left:-9.408960px;}
._21{margin-left:-6.523200px;}
._0{margin-left:-5.417280px;}
._15{margin-left:-3.969350px;}
._c{margin-left:-2.707200px;}
._1{margin-left:-1.425600px;}
._2{width:1.330560px;}
._6{width:2.661840px;}
._17{width:3.944776px;}
._16{width:5.268514px;}
._11{width:10.134783px;}
._19{width:17.246517px;}
._1c{width:18.722735px;}
._14{width:19.841084px;}
._10{width:21.042165px;}
._18{width:22.252459px;}
._b{width:29.538720px;}
._a{width:31.489920px;}
._20{width:36.601200px;}
._1b{width:43.939993px;}
._12{width:50.012953px;}
._1a{width:51.202643px;}
._5{width:53.778240px;}
._8{width:113.319360px;}
._d{width:183.404120px;}
._1d{width:655.810589px;}
._1f{width:684.240480px;}
._1e{width:756.829440px;}
.fc4{color:rgb(23,156,125);}
.fc3{color:transparent;}
.fc2{color:rgb(0,91,127);}
.fc6{color:rgb(13,13,13);}
.fc5{color:rgb(166,166,166);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:41.760000px;}
.fs6{font-size:52.560000px;}
.fsd{font-size:53.999861px;}
.fs7{font-size:73.440000px;}
.fsc{font-size:73.440459px;}
.fsb{font-size:84.240000px;}
.fsa{font-size:84.240136px;}
.fs1{font-size:95.039814px;}
.fs0{font-size:95.040000px;}
.fs8{font-size:105.119906px;}
.fs9{font-size:105.120000px;}
.fse{font-size:115.920000px;}
.fs5{font-size:126.000000px;}
.fs3{font-size:189.360000px;}
.fsf{font-size:284.400000px;}
.fs2{font-size:328.320000px;}
.y0{bottom:0.000000px;}
.y8{bottom:122.043042px;}
.y6{bottom:122.938635px;}
.y25{bottom:149.040447px;}
.yc{bottom:152.816979px;}
.yb{bottom:168.479837px;}
.yf{bottom:169.741306px;}
.y55{bottom:181.254622px;}
.ye{bottom:183.603990px;}
.ya{bottom:184.313521px;}
.y24{bottom:187.017689px;}
.y32{bottom:188.456513px;}
.y31{bottom:200.693623px;}
.y9{bottom:203.213166px;}
.y54{bottom:207.546155px;}
.y1f{bottom:210.951898px;}
.y3b{bottom:215.275699px;}
.y18{bottom:220.505174px;}
.y23{bottom:224.830430px;}
.y5{bottom:231.119482px;}
.y53{bottom:233.819311px;}
.y1e{bottom:248.755546px;}
.y30{bottom:255.233856px;}
.y52{bottom:260.091667px;}
.y46{bottom:261.359311px;}
.y22{bottom:262.618624px;}
.y59{bottom:267.297360px;}
.y2f{bottom:267.470911px;}
.y17{bottom:267.842475px;}
.y39{bottom:268.740010px;}
.y51{bottom:286.381247px;}
.y1d{bottom:286.743081px;}
.y45{bottom:287.632466px;}
.y4{bottom:288.022146px;}
.y38{bottom:295.379798px;}
.y21{bottom:300.594548px;}
.y58{bottom:309.956209px;}
.y50{bottom:312.654029px;}
.y44{bottom:313.923944px;}
.y16{bottom:315.179816px;}
.y37{bottom:321.304699px;}
.y1c{bottom:328.143272px;}
.y2e{bottom:328.677285px;}
.y20{bottom:338.395675px;}
.y4f{bottom:338.940217px;}
.y43{bottom:340.197155px;}
.y36{bottom:347.945077px;}
.y57{bottom:356.030989px;}
.y3{bottom:361.594108px;}
.y15{bottom:362.517117px;}
.y35{bottom:374.217131px;}
.y1b{bottom:386.648993px;}
.y2d{bottom:388.973322px;}
.y14{bottom:409.854457px;}
.y2c{bottom:415.079106px;}
.y2{bottom:416.710818px;}
.y42{bottom:434.158307px;}
.y4e{bottom:442.439998px;}
.y56{bottom:446.045406px;}
.y1{bottom:448.026480px;}
.yd{bottom:451.436592px;}
.y2b{bottom:455.584865px;}
.y13{bottom:457.204603px;}
.y41{bottom:465.660900px;}
.y4d{bottom:468.716118px;}
.y4c{bottom:495.001211px;}
.y40{bottom:497.343160px;}
.y12{bottom:504.541944px;}
.y4b{bottom:521.277331px;}
.y3f{bottom:528.845793px;}
.y2a{bottom:533.693723px;}
.y1a{bottom:536.938582px;}
.y4a{bottom:547.553451px;}
.y11{bottom:551.879245px;}
.y29{bottom:566.819012px;}
.y49{bottom:573.838544px;}
.y34{bottom:578.877127px;}
.y19{bottom:587.871009px;}
.y3e{bottom:592.021459px;}
.y10{bottom:599.216586px;}
.y48{bottom:600.119661px;}
.y33{bottom:605.168661px;}
.y28{bottom:611.997494px;}
.y3d{bottom:623.531174px;}
.y47{bottom:626.399757px;}
.y3c{bottom:629.812638px;}
.y26{bottom:638.819288px;}
.y27{bottom:654.665043px;}
.y3a{bottom:694.802521px;}
.y7{bottom:729.369015px;}
.h6{height:31.821120px;}
.h8{height:40.050720px;}
.h2c{height:55.933516px;}
.h9{height:55.961280px;}
.h36{height:55.964477px;}
.h31{height:55.965317px;}
.h2e{height:55.967363px;}
.h35{height:55.972066px;}
.h34{height:55.973784px;}
.h32{height:55.977173px;}
.h2f{height:55.979220px;}
.h30{height:55.991077px;}
.h2d{height:55.993012px;}
.h33{height:55.994943px;}
.h25{height:61.877405px;}
.h26{height:61.882571px;}
.h1f{height:61.893668px;}
.h14{height:64.136865px;}
.h1a{height:64.164682px;}
.h1c{height:64.171134px;}
.h16{height:64.187190px;}
.h17{height:64.190880px;}
.h15{height:64.206080px;}
.h19{height:64.230019px;}
.h1b{height:64.231198px;}
.h18{height:64.236414px;}
.h1d{height:72.165696px;}
.h1e{height:72.172074px;}
.h3{height:72.420480px;}
.h11{height:80.056971px;}
.h29{height:80.067208px;}
.hc{height:80.075011px;}
.he{height:80.077611px;}
.h12{height:80.085115px;}
.h28{height:80.095615px;}
.h2b{height:80.098215px;}
.h13{height:80.101440px;}
.hd{height:80.103151px;}
.hf{height:80.105750px;}
.ha{height:80.123791px;}
.h2a{height:80.126618px;}
.h10{height:80.133893px;}
.hb{height:80.152090px;}
.h27{height:88.331040px;}
.h2{height:94.528018px;}
.h38{height:94.529346px;}
.h7{height:96.012000px;}
.h22{height:110.841891px;}
.h23{height:117.319119px;}
.h24{height:121.126400px;}
.h20{height:121.147149px;}
.h21{height:127.621210px;}
.h5{height:144.292320px;}
.h37{height:216.712800px;}
.h4{height:246.240000px;}
.h0{height:892.980015px;}
.h1{height:893.250000px;}
.w0{width:1262.880060px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x1d{left:39.956559px;}
.x14{left:45.005222px;}
.x1{left:49.848479px;}
.x19{left:60.844779px;}
.x8{left:61.914497px;}
.x24{left:67.317431px;}
.xd{left:75.777051px;}
.x25{left:85.851357px;}
.x16{left:90.724785px;}
.x15{left:95.404464px;}
.x1b{left:104.037667px;}
.x9{left:109.264652px;}
.x26{left:114.661072px;}
.x17{left:116.642314px;}
.x27{left:133.201806px;}
.x1a{left:134.464540px;}
.x18{left:136.983675px;}
.x3{left:144.001255px;}
.x1c{left:146.343033px;}
.x1e{left:163.624325px;}
.x4{left:256.507572px;}
.x2a{left:288.356280px;}
.x29{left:319.851003px;}
.xb{left:338.223592px;}
.x1f{left:350.629014px;}
.x13{left:442.449532px;}
.xe{left:453.418012px;}
.x28{left:469.473291px;}
.xf{left:471.954613px;}
.xa{left:541.264506px;}
.x2{left:542.337100px;}
.xc{left:561.235494px;}
.x20{left:569.876067px;}
.x21{left:585.353533px;}
.x7{left:726.116368px;}
.x6{left:730.084674px;}
.x5{left:731.346142px;}
.x22{left:791.095689px;}
.x23{left:800.459300px;}
.x10{left:828.724725px;}
.x12{left:833.928506px;}
.x11{left:847.264855px;}
@media print{
.v1{vertical-align:-12.785258pt;}
.vb{vertical-align:-5.091832pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.425034pt;}
.v9{vertical-align:19.862063pt;}
.v2{vertical-align:23.694265pt;}
.v7{vertical-align:35.883686pt;}
.va{vertical-align:37.118817pt;}
.v4{vertical-align:43.541632pt;}
.v6{vertical-align:49.287106pt;}
.v5{vertical-align:67.233334pt;}
.v8{vertical-align:72.988055pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.225785pt;}
.ls11{letter-spacing:0.261120pt;}
.lsf{letter-spacing:0.351382pt;}
.lsd{letter-spacing:0.966351pt;}
.ls8{letter-spacing:2.351394pt;}
.lsc{letter-spacing:3.859695pt;}
.ls7{letter-spacing:16.416492pt;}
.lse{letter-spacing:21.016415pt;}
.lsa{letter-spacing:21.801196pt;}
.ls10{letter-spacing:22.533738pt;}
.ls12{letter-spacing:22.882661pt;}
.lsb{letter-spacing:22.888586pt;}
.ls3{letter-spacing:23.200147pt;}
.ls2{letter-spacing:23.270814pt;}
.ls5{letter-spacing:31.687699pt;}
.ls6{letter-spacing:31.700247pt;}
.ls4{letter-spacing:31.737798pt;}
.ls14{letter-spacing:36.065257pt;}
.ls15{letter-spacing:36.089461pt;}
.ls13{letter-spacing:72.279663pt;}
.ls9{letter-spacing:136.571235pt;}
.ws1{word-spacing:-31.136000pt;}
.ws16{word-spacing:-25.976320pt;}
.ws8{word-spacing:-20.816640pt;}
.wsd{word-spacing:-14.361690pt;}
.ws2{word-spacing:-12.988160pt;}
.wsb{word-spacing:-10.559973pt;}
.ws5{word-spacing:-1.347840pt;}
.wsc{word-spacing:-1.048320pt;}
.ws15{word-spacing:-0.824320pt;}
.ws4{word-spacing:-0.747520pt;}
.ws14{word-spacing:-0.718080pt;}
.ws10{word-spacing:-0.195841pt;}
.wsa{word-spacing:-0.130561pt;}
.ws3{word-spacing:-0.093440pt;}
.ws6{word-spacing:-0.000073pt;}
.ws0{word-spacing:0.000000pt;}
.ws13{word-spacing:0.456963pt;}
.ws7{word-spacing:0.748855pt;}
.ws11{word-spacing:0.848645pt;}
.wsf{word-spacing:4.112666pt;}
.ws12{word-spacing:5.418274pt;}
.ws9{word-spacing:20.367360pt;}
.wse{word-spacing:77.603605pt;}
._e{margin-left:-2336.591448pt;}
._f{margin-left:-1926.440994pt;}
._9{margin-left:-1020.691819pt;}
._7{margin-left:-16.832000pt;}
._13{margin-left:-14.468063pt;}
._4{margin-left:-10.447841pt;}
._3{margin-left:-8.363520pt;}
._21{margin-left:-5.798400pt;}
._0{margin-left:-4.815360pt;}
._15{margin-left:-3.528311pt;}
._c{margin-left:-2.406400pt;}
._1{margin-left:-1.267200pt;}
._2{width:1.182720pt;}
._6{width:2.366080pt;}
._17{width:3.506467pt;}
._16{width:4.683123pt;}
._11{width:9.008696pt;}
._19{width:15.330238pt;}
._1c{width:16.642431pt;}
._14{width:17.636519pt;}
._10{width:18.704147pt;}
._18{width:19.779964pt;}
._b{width:26.256640pt;}
._a{width:27.991040pt;}
._20{width:32.534400pt;}
._1b{width:39.057772pt;}
._12{width:44.455958pt;}
._1a{width:45.513461pt;}
._5{width:47.802880pt;}
._8{width:100.728320pt;}
._d{width:163.025884pt;}
._1d{width:582.942746pt;}
._1f{width:608.213760pt;}
._1e{width:672.737280pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:46.720000pt;}
.fsd{font-size:47.999876pt;}
.fs7{font-size:65.280000pt;}
.fsc{font-size:65.280408pt;}
.fsb{font-size:74.880000pt;}
.fsa{font-size:74.880121pt;}
.fs1{font-size:84.479834pt;}
.fs0{font-size:84.480000pt;}
.fs8{font-size:93.439916pt;}
.fs9{font-size:93.440000pt;}
.fse{font-size:103.040000pt;}
.fs5{font-size:112.000000pt;}
.fs3{font-size:168.320000pt;}
.fsf{font-size:252.800000pt;}
.fs2{font-size:291.840000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:108.482704pt;}
.y6{bottom:109.278787pt;}
.y25{bottom:132.480397pt;}
.yc{bottom:135.837315pt;}
.yb{bottom:149.759855pt;}
.yf{bottom:150.881161pt;}
.y55{bottom:161.115219pt;}
.ye{bottom:163.203546pt;}
.ya{bottom:163.834241pt;}
.y24{bottom:166.237946pt;}
.y32{bottom:167.516900pt;}
.y31{bottom:178.394332pt;}
.y9{bottom:180.633925pt;}
.y54{bottom:184.485471pt;}
.y1f{bottom:187.512798pt;}
.y3b{bottom:191.356177pt;}
.y18{bottom:196.004599pt;}
.y23{bottom:199.849271pt;}
.y5{bottom:205.439540pt;}
.y53{bottom:207.839387pt;}
.y1e{bottom:221.116041pt;}
.y30{bottom:226.874538pt;}
.y52{bottom:231.192593pt;}
.y46{bottom:232.319387pt;}
.y22{bottom:233.438777pt;}
.y59{bottom:237.597653pt;}
.y2f{bottom:237.751921pt;}
.y17{bottom:238.082200pt;}
.y39{bottom:238.880009pt;}
.y51{bottom:254.561109pt;}
.y1d{bottom:254.882739pt;}
.y45{bottom:255.673303pt;}
.y4{bottom:256.019685pt;}
.y38{bottom:262.559821pt;}
.y21{bottom:267.195154pt;}
.y58{bottom:275.516631pt;}
.y50{bottom:277.914693pt;}
.y44{bottom:279.043505pt;}
.y16{bottom:280.159836pt;}
.y37{bottom:285.604177pt;}
.y1c{bottom:291.682909pt;}
.y2e{bottom:292.157587pt;}
.y20{bottom:300.796156pt;}
.y4f{bottom:301.280193pt;}
.y43{bottom:302.397471pt;}
.y36{bottom:309.284513pt;}
.y57{bottom:316.471991pt;}
.y3{bottom:321.416985pt;}
.y15{bottom:322.237437pt;}
.y35{bottom:332.637450pt;}
.y1b{bottom:343.687994pt;}
.y2d{bottom:345.754064pt;}
.y14{bottom:364.315073pt;}
.y2c{bottom:368.959205pt;}
.y2{bottom:370.409616pt;}
.y42{bottom:385.918495pt;}
.y4e{bottom:393.279998pt;}
.y56{bottom:396.484805pt;}
.y1{bottom:398.245760pt;}
.yd{bottom:401.276971pt;}
.y2b{bottom:404.964325pt;}
.y13{bottom:406.404092pt;}
.y41{bottom:413.920800pt;}
.y4d{bottom:416.636549pt;}
.y4c{bottom:440.001077pt;}
.y40{bottom:442.082809pt;}
.y12{bottom:448.481728pt;}
.y4b{bottom:463.357628pt;}
.y3f{bottom:470.085149pt;}
.y2a{bottom:474.394420pt;}
.y1a{bottom:477.278739pt;}
.y4a{bottom:486.714178pt;}
.y11{bottom:490.559329pt;}
.y29{bottom:503.839122pt;}
.y49{bottom:510.078706pt;}
.y34{bottom:514.557446pt;}
.y19{bottom:522.552008pt;}
.y3e{bottom:526.241297pt;}
.y10{bottom:532.636965pt;}
.y48{bottom:533.439698pt;}
.y33{bottom:537.927698pt;}
.y28{bottom:543.997773pt;}
.y3d{bottom:554.249932pt;}
.y47{bottom:556.799784pt;}
.y3c{bottom:559.833456pt;}
.y26{bottom:567.839367pt;}
.y27{bottom:581.924482pt;}
.y3a{bottom:617.602241pt;}
.y7{bottom:648.328013pt;}
.h6{height:28.285440pt;}
.h8{height:35.600640pt;}
.h2c{height:49.718681pt;}
.h9{height:49.743360pt;}
.h36{height:49.746202pt;}
.h31{height:49.746948pt;}
.h2e{height:49.748768pt;}
.h35{height:49.752947pt;}
.h34{height:49.754475pt;}
.h32{height:49.757488pt;}
.h2f{height:49.759307pt;}
.h30{height:49.769846pt;}
.h2d{height:49.771566pt;}
.h33{height:49.773283pt;}
.h25{height:55.002138pt;}
.h26{height:55.006730pt;}
.h1f{height:55.016594pt;}
.h14{height:57.010547pt;}
.h1a{height:57.035273pt;}
.h1c{height:57.041008pt;}
.h16{height:57.055280pt;}
.h17{height:57.058560pt;}
.h15{height:57.072071pt;}
.h19{height:57.093350pt;}
.h1b{height:57.094398pt;}
.h18{height:57.099035pt;}
.h1d{height:64.147285pt;}
.h1e{height:64.152955pt;}
.h3{height:64.373760pt;}
.h11{height:71.161752pt;}
.h29{height:71.170851pt;}
.hc{height:71.177788pt;}
.he{height:71.180098pt;}
.h12{height:71.186768pt;}
.h28{height:71.196103pt;}
.h2b{height:71.198413pt;}
.h13{height:71.201280pt;}
.hd{height:71.202801pt;}
.hf{height:71.205111pt;}
.ha{height:71.221148pt;}
.h2a{height:71.223660pt;}
.h10{height:71.230127pt;}
.hb{height:71.246303pt;}
.h27{height:78.516480pt;}
.h2{height:84.024905pt;}
.h38{height:84.026085pt;}
.h7{height:85.344000pt;}
.h22{height:98.526125pt;}
.h23{height:104.283661pt;}
.h24{height:107.667911pt;}
.h20{height:107.686354pt;}
.h21{height:113.441075pt;}
.h5{height:128.259840pt;}
.h37{height:192.633600pt;}
.h4{height:218.880000pt;}
.h0{height:793.760013pt;}
.h1{height:794.000000pt;}
.w0{width:1122.560053pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1d{left:35.516941pt;}
.x14{left:40.004642pt;}
.x1{left:44.309759pt;}
.x19{left:54.084248pt;}
.x8{left:55.035108pt;}
.x24{left:59.837716pt;}
.xd{left:67.357378pt;}
.x25{left:76.312317pt;}
.x16{left:80.644254pt;}
.x15{left:84.803968pt;}
.x1b{left:92.477926pt;}
.x9{left:97.124135pt;}
.x26{left:101.920953pt;}
.x17{left:103.682057pt;}
.x27{left:118.401605pt;}
.x1a{left:119.524036pt;}
.x18{left:121.763266pt;}
.x3{left:128.001116pt;}
.x1c{left:130.082696pt;}
.x1e{left:145.443844pt;}
.x4{left:228.006731pt;}
.x2a{left:256.316694pt;}
.x29{left:284.312003pt;}
.xb{left:300.643193pt;}
.x1f{left:311.670235pt;}
.x13{left:393.288473pt;}
.xe{left:403.038233pt;}
.x28{left:417.309592pt;}
.xf{left:419.515211pt;}
.xa{left:481.124005pt;}
.x2{left:482.077422pt;}
.xc{left:498.875995pt;}
.x20{left:506.556504pt;}
.x21{left:520.314252pt;}
.x7{left:645.436771pt;}
.x6{left:648.964154pt;}
.x5{left:650.085460pt;}
.x22{left:703.196168pt;}
.x23{left:711.519378pt;}
.x10{left:736.644200pt;}
.x12{left:741.269783pt;}
.x11{left:753.124315pt;}
}




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