
    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_e9e077f61c335a25008e0a6b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.130371;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_5f110a0952a642dc1685f4c3.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_2efa45c728106a60e238ec1d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_44fb0072fe5d18ecdf2a55a7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_8a8bc94f34cedc2fb46f6761.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_bde6270ff22d5da9e45e08e9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_daa46713ef022c55637084cc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093750;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_c22b118f29e76dbbdcb6f66c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.093750;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_c80dcbd4c8bd8ea59ba0051e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.202148;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.va{vertical-align:-71.280000px;}
.v12{vertical-align:-68.400000px;}
.v5{vertical-align:-43.920000px;}
.v10{vertical-align:-41.040000px;}
.v2{vertical-align:-32.400000px;}
.v3{vertical-align:-29.520000px;}
.v4{vertical-align:-26.640000px;}
.vf{vertical-align:-24.480000px;}
.vc{vertical-align:-22.320000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:19.440000px;}
.vd{vertical-align:22.320000px;}
.v13{vertical-align:24.480000px;}
.v9{vertical-align:26.640000px;}
.v11{vertical-align:28.800000px;}
.v1{vertical-align:32.400000px;}
.v7{vertical-align:54.000000px;}
.vb{vertical-align:63.360000px;}
.v14{vertical-align:87.840000px;}
.ve{vertical-align:92.340000px;}
.v8{vertical-align:117.360000px;}
.ls7{letter-spacing:-0.324000px;}
.ls17{letter-spacing:-0.280800px;}
.ls19{letter-spacing:-0.160010px;}
.ls18{letter-spacing:-0.136800px;}
.lsb{letter-spacing:-0.109200px;}
.ls25{letter-spacing:-0.075894px;}
.ls1c{letter-spacing:-0.072000px;}
.ls8{letter-spacing:-0.036000px;}
.ls0{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.027936px;}
.ls6{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.142992px;}
.ls24{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.201600px;}
.ls12{letter-spacing:0.212544px;}
.ls4{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.288000px;}
.ls1d{letter-spacing:0.324000px;}
.ls1f{letter-spacing:0.345600px;}
.lsf{letter-spacing:0.408000px;}
.ls11{letter-spacing:24.228000px;}
.ls5{letter-spacing:24.696000px;}
.ls3{letter-spacing:24.876000px;}
.ls28{letter-spacing:24.912000px;}
.ls20{letter-spacing:29.030400px;}
.lse{letter-spacing:47.988000px;}
.ls2{letter-spacing:97.509600px;}
.ls1{letter-spacing:97.560000px;}
.ls21{letter-spacing:99.523824px;}
.ls1e{letter-spacing:99.583200px;}
.ls22{letter-spacing:99.607200px;}
.ls23{letter-spacing:100.303200px;}
.lsc{letter-spacing:126.158400px;}
.ls10{letter-spacing:126.223200px;}
.ls13{letter-spacing:126.259824px;}
.ls16{letter-spacing:126.343200px;}
.lsd{letter-spacing:126.878400px;}
.ls15{letter-spacing:127.063200px;}
.ls1b{letter-spacing:152.280000px;}
.ls26{letter-spacing:155.136000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(64,64,64),0 0.015em rgb(64,64,64),0.015em 0 rgb(64,64,64),0 -0.015em  rgb(64,64,64);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(64,64,64);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-108.566784px;}
.ws1f{word-spacing:-108.324000px;}
.ws6{word-spacing:-108.144000px;}
.ws2{word-spacing:-108.000000px;}
.ws25{word-spacing:-89.820000px;}
.ws23{word-spacing:-83.556000px;}
.ws1e{word-spacing:-83.376000px;}
.ws29{word-spacing:-83.200608px;}
.ws24{word-spacing:-82.368000px;}
.ws1c{word-spacing:-79.401600px;}
.ws18{word-spacing:-79.344000px;}
.ws12{word-spacing:-79.200000px;}
.ws16{word-spacing:-79.063200px;}
.ws20{word-spacing:-78.984000px;}
.ws13{word-spacing:-78.919200px;}
.ws1b{word-spacing:-77.796000px;}
.ws26{word-spacing:-49.977600px;}
.ws21{word-spacing:-49.550400px;}
.ws2b{word-spacing:-49.521600px;}
.ws2d{word-spacing:-49.014000px;}
.ws22{word-spacing:-48.801600px;}
.ws2e{word-spacing:-48.780000px;}
.ws28{word-spacing:-48.729600px;}
.ws2a{word-spacing:-38.700000px;}
.wsc{word-spacing:-27.206784px;}
.ws9{word-spacing:-27.174240px;}
.ws8{word-spacing:-24.480000px;}
.ws7{word-spacing:-24.440544px;}
.ws3{word-spacing:-24.408000px;}
.ws5{word-spacing:-24.084000px;}
.wsb{word-spacing:-18.094464px;}
.wsa{word-spacing:-18.061920px;}
.ws11{word-spacing:-16.272000px;}
.ws1a{word-spacing:-0.252000px;}
.ws4{word-spacing:-0.096000px;}
.ws1{word-spacing:0.000000px;}
.ws17{word-spacing:21.960000px;}
.ws14{word-spacing:24.840000px;}
.ws1d{word-spacing:42.120000px;}
.ws27{word-spacing:55.728000px;}
.ws2c{word-spacing:55.805760px;}
.wsf{word-spacing:55.872000px;}
.ws10{word-spacing:55.949760px;}
.ws19{word-spacing:80.220000px;}
.ws15{word-spacing:597.240000px;}
.wse{word-spacing:673.764000px;}
.wsd{word-spacing:825.589536px;}
._0{margin-left:-12.009600px;}
._2{margin-left:-10.568448px;}
._b{margin-left:-9.396000px;}
._8{margin-left:-7.992000px;}
._4{margin-left:-6.725376px;}
._9{margin-left:-5.292000px;}
._3{margin-left:-3.843072px;}
._1{margin-left:-2.401920px;}
._6{margin-left:-1.136160px;}
._5{width:1.321920px;}
._7{width:2.380320px;}
._17{width:3.456000px;}
._1c{width:4.644000px;}
._19{width:6.575232px;}
._1b{width:19.224000px;}
._1e{width:24.444000px;}
._a{width:25.770240px;}
._1a{width:27.709920px;}
._14{width:30.860160px;}
._13{width:32.700000px;}
._1d{width:39.911520px;}
._15{width:41.940000px;}
._18{width:63.307680px;}
._16{width:64.476000px;}
._1f{width:74.856000px;}
._12{width:80.112000px;}
._e{width:465.288000px;}
._d{width:582.874080px;}
._10{width:813.257376px;}
._c{width:840.409536px;}
._f{width:963.299184px;}
._11{width:1281.238080px;}
.fc2{color:rgb(64,64,64);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fsf{font-size:64.944000px;}
.fs3{font-size:72.000000px;}
.fs9{font-size:72.144000px;}
.fsb{font-size:79.200000px;}
.fsd{font-size:79.344000px;}
.fs7{font-size:79.920000px;}
.fs8{font-size:80.064000px;}
.fs1{font-size:108.000000px;}
.fs2{font-size:108.144000px;}
.fs10{font-size:113.840857px;}
.fsc{font-size:113.992645px;}
.fs6{font-size:120.240000px;}
.fs5{font-size:120.384000px;}
.fsa{font-size:167.760000px;}
.fs4{font-size:167.904000px;}
.fse{font-size:174.384000px;}
.fs0{font-size:480.384000px;}
.y0{bottom:0.000000px;}
.y21{bottom:3.240000px;}
.y25{bottom:57.240000px;}
.y26{bottom:104.370000px;}
.y18{bottom:124.056000px;}
.y40{bottom:133.092000px;}
.y41{bottom:144.072000px;}
.y17{bottom:156.810000px;}
.y27{bottom:161.610000px;}
.y3e{bottom:171.435000px;}
.y3f{bottom:182.415000px;}
.y52{bottom:194.610000px;}
.ye{bottom:194.790000px;}
.y23{bottom:201.600000px;}
.y71{bottom:203.790000px;}
.y24{bottom:204.840000px;}
.y3c{bottom:209.775000px;}
.y3d{bottom:220.755000px;}
.y16{bottom:221.610000px;}
.y51{bottom:229.890000px;}
.y22{bottom:234.000000px;}
.y6e{bottom:240.015000px;}
.y3a{bottom:247.965000px;}
.y6f{bottom:250.275000px;}
.y70{bottom:250.995000px;}
.y3b{bottom:258.945000px;}
.yd{bottom:259.635000px;}
.y6b{bottom:278.175000px;}
.y20{bottom:280.440000px;}
.y5c{bottom:283.890000px;}
.y38{bottom:286.305000px;}
.y15{bottom:286.455000px;}
.y6c{bottom:288.435000px;}
.y6d{bottom:289.155000px;}
.y39{bottom:297.285000px;}
.y5b{bottom:297.390000px;}
.y77{bottom:297.615000px;}
.y1f{bottom:312.840000px;}
.y69{bottom:314.355000px;}
.y6a{bottom:324.615000px;}
.yc{bottom:324.795000px;}
.y49{bottom:330.945000px;}
.y50{bottom:331.410000px;}
.y3{bottom:336.135000px;}
.y48{bottom:344.445000px;}
.y4f{bottom:344.910000px;}
.y67{bottom:349.815000px;}
.y14{bottom:351.255000px;}
.y37{bottom:353.265000px;}
.yb{bottom:356.835000px;}
.y68{bottom:360.075000px;}
.y2f{bottom:369.330000px;}
.y76{bottom:372.855000px;}
.y5a{bottom:373.755000px;}
.y1e{bottom:384.945000px;}
.y65{bottom:386.205000px;}
.y66{bottom:396.465000px;}
.y2e{bottom:401.760000px;}
.y75{bottom:406.905000px;}
.y13{bottom:415.725000px;}
.y63{bottom:420.945000px;}
.ya{bottom:422.025000px;}
.y64{bottom:431.205000px;}
.y4e{bottom:438.150000px;}
.y74{bottom:443.625000px;}
.y36{bottom:447.990000px;}
.y47{bottom:452.625000px;}
.y9{bottom:454.065000px;}
.y62{bottom:454.785000px;}
.y1d{bottom:458.535000px;}
.y2{bottom:458.565000px;}
.y4d{bottom:460.830000px;}
.y34{bottom:461.490000px;}
.y2d{bottom:466.560000px;}
.y59{bottom:470.985000px;}
.y35{bottom:472.470000px;}
.y12{bottom:480.525000px;}
.y46{bottom:481.830000px;}
.y2c{bottom:498.960000px;}
.y58{bottom:503.385000px;}
.y4c{bottom:504.435000px;}
.y1c{bottom:508.395000px;}
.y73{bottom:509.505000px;}
.y61{bottom:517.065000px;}
.y8{bottom:518.865000px;}
.y72{bottom:523.005000px;}
.y5f{bottom:530.565000px;}
.y45{bottom:531.870000px;}
.y33{bottom:534.750000px;}
.y57{bottom:535.785000px;}
.y60{bottom:540.825000px;}
.y11{bottom:545.685000px;}
.y4b{bottom:548.175000px;}
.y7{bottom:551.670000px;}
.y1b{bottom:558.075000px;}
.y2b{bottom:563.790000px;}
.y32{bottom:567.180000px;}
.y56{bottom:568.185000px;}
.y1{bottom:581.010000px;}
.y44{bottom:582.090000px;}
.y6{bottom:584.070000px;}
.y2a{bottom:596.190000px;}
.y31{bottom:599.580000px;}
.y55{bottom:600.585000px;}
.y5e{bottom:606.930000px;}
.y1a{bottom:607.965000px;}
.y10{bottom:610.170000px;}
.y29{bottom:628.590000px;}
.y54{bottom:633.030000px;}
.y43{bottom:636.300000px;}
.y4a{bottom:639.105000px;}
.y5{bottom:648.510000px;}
.y30{bottom:668.340000px;}
.yf{bottom:675.330000px;}
.y19{bottom:678.750000px;}
.y4{bottom:681.270000px;}
.y28{bottom:693.390000px;}
.y5d{bottom:693.690000px;}
.y53{bottom:697.830000px;}
.y42{bottom:700.740000px;}
.hf{height:68.913281px;}
.h12{height:69.038578px;}
.hc{height:88.353281px;}
.hb{height:93.972656px;}
.h11{height:94.097953px;}
.h19{height:99.054887px;}
.h10{height:99.186960px;}
.h2{height:107.419922px;}
.h3{height:107.563148px;}
.h18{height:107.808891px;}
.h4{height:110.583984px;}
.h7{height:119.594180px;}
.h6{height:119.737406px;}
.h15{height:132.273281px;}
.h1a{height:143.808891px;}
.he{height:147.972656px;}
.h17{height:148.848891px;}
.h13{height:159.732422px;}
.h5{height:159.869531px;}
.ha{height:166.858945px;}
.h14{height:167.002172px;}
.h16{height:173.447367px;}
.hd{height:186.273281px;}
.h9{height:226.980000px;}
.h8{height:453.780000px;}
.h1{height:457.396875px;}
.h0{height:810.000000px;}
.w2{width:295.560000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.xe{left:10.980000px;}
.x2a{left:80.243979px;}
.x6{left:98.999979px;}
.x11{left:104.471979px;}
.xd{left:105.840000px;}
.x2{left:108.899979px;}
.xa{left:116.819979px;}
.x2f{left:120.743979px;}
.x15{left:121.931979px;}
.x33{left:123.623979px;}
.x27{left:127.619979px;}
.x4{left:136.655979px;}
.x1{left:140.435979px;}
.x13{left:145.007979px;}
.x1d{left:168.374979px;}
.x1f{left:169.994979px;}
.x31{left:172.769979px;}
.x2e{left:176.189979px;}
.x1e{left:183.314979px;}
.x20{left:184.934979px;}
.x22{left:188.489979px;}
.x23{left:203.789979px;}
.x5{left:217.109979px;}
.x16{left:229.964979px;}
.x17{left:246.164979px;}
.x32{left:249.809979px;}
.x30{left:253.409979px;}
.x21{left:262.724979px;}
.x18{left:329.144979px;}
.x7{left:334.649979px;}
.x28{left:440.609979px;}
.xb{left:469.439979px;}
.x2b{left:476.279979px;}
.x12{left:482.549979px;}
.x19{left:490.964979px;}
.x2c{left:492.119979px;}
.x10{left:516.059979px;}
.xf{left:527.579979px;}
.x3{left:533.954979px;}
.x2d{left:548.279979px;}
.x34{left:564.869979px;}
.x14{left:642.929979px;}
.x29{left:683.969979px;}
.x8{left:729.104979px;}
.x1a{left:738.329979px;}
.x24{left:797.144979px;}
.x1b{left:820.799979px;}
.x25{left:890.024979px;}
.x26{left:955.544979px;}
.x9{left:962.924979px;}
.x1c{left:982.619979px;}
.xc{left:1076.969979px;}
@media print{
.va{vertical-align:-63.360000pt;}
.v12{vertical-align:-60.800000pt;}
.v5{vertical-align:-39.040000pt;}
.v10{vertical-align:-36.480000pt;}
.v2{vertical-align:-28.800000pt;}
.v3{vertical-align:-26.240000pt;}
.v4{vertical-align:-23.680000pt;}
.vf{vertical-align:-21.760000pt;}
.vc{vertical-align:-19.840000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:17.280000pt;}
.vd{vertical-align:19.840000pt;}
.v13{vertical-align:21.760000pt;}
.v9{vertical-align:23.680000pt;}
.v11{vertical-align:25.600000pt;}
.v1{vertical-align:28.800000pt;}
.v7{vertical-align:48.000000pt;}
.vb{vertical-align:56.320000pt;}
.v14{vertical-align:78.080000pt;}
.ve{vertical-align:82.080000pt;}
.v8{vertical-align:104.320000pt;}
.ls7{letter-spacing:-0.288000pt;}
.ls17{letter-spacing:-0.249600pt;}
.ls19{letter-spacing:-0.142231pt;}
.ls18{letter-spacing:-0.121600pt;}
.lsb{letter-spacing:-0.097067pt;}
.ls25{letter-spacing:-0.067461pt;}
.ls1c{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:-0.032000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.024832pt;}
.ls6{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.127104pt;}
.ls24{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.179200pt;}
.ls12{letter-spacing:0.188928pt;}
.ls4{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.256000pt;}
.ls1d{letter-spacing:0.288000pt;}
.ls1f{letter-spacing:0.307200pt;}
.lsf{letter-spacing:0.362667pt;}
.ls11{letter-spacing:21.536000pt;}
.ls5{letter-spacing:21.952000pt;}
.ls3{letter-spacing:22.112000pt;}
.ls28{letter-spacing:22.144000pt;}
.ls20{letter-spacing:25.804800pt;}
.lse{letter-spacing:42.656000pt;}
.ls2{letter-spacing:86.675200pt;}
.ls1{letter-spacing:86.720000pt;}
.ls21{letter-spacing:88.465621pt;}
.ls1e{letter-spacing:88.518400pt;}
.ls22{letter-spacing:88.539733pt;}
.ls23{letter-spacing:89.158400pt;}
.lsc{letter-spacing:112.140800pt;}
.ls10{letter-spacing:112.198400pt;}
.ls13{letter-spacing:112.230955pt;}
.ls16{letter-spacing:112.305067pt;}
.lsd{letter-spacing:112.780800pt;}
.ls15{letter-spacing:112.945067pt;}
.ls1b{letter-spacing:135.360000pt;}
.ls26{letter-spacing:137.898667pt;}
.ws0{word-spacing:-96.503808pt;}
.ws1f{word-spacing:-96.288000pt;}
.ws6{word-spacing:-96.128000pt;}
.ws2{word-spacing:-96.000000pt;}
.ws25{word-spacing:-79.840000pt;}
.ws23{word-spacing:-74.272000pt;}
.ws1e{word-spacing:-74.112000pt;}
.ws29{word-spacing:-73.956096pt;}
.ws24{word-spacing:-73.216000pt;}
.ws1c{word-spacing:-70.579200pt;}
.ws18{word-spacing:-70.528000pt;}
.ws12{word-spacing:-70.400000pt;}
.ws16{word-spacing:-70.278400pt;}
.ws20{word-spacing:-70.208000pt;}
.ws13{word-spacing:-70.150400pt;}
.ws1b{word-spacing:-69.152000pt;}
.ws26{word-spacing:-44.424533pt;}
.ws21{word-spacing:-44.044800pt;}
.ws2b{word-spacing:-44.019200pt;}
.ws2d{word-spacing:-43.568000pt;}
.ws22{word-spacing:-43.379200pt;}
.ws2e{word-spacing:-43.360000pt;}
.ws28{word-spacing:-43.315200pt;}
.ws2a{word-spacing:-34.400000pt;}
.wsc{word-spacing:-24.183808pt;}
.ws9{word-spacing:-24.154880pt;}
.ws8{word-spacing:-21.760000pt;}
.ws7{word-spacing:-21.724928pt;}
.ws3{word-spacing:-21.696000pt;}
.ws5{word-spacing:-21.408000pt;}
.wsb{word-spacing:-16.083968pt;}
.wsa{word-spacing:-16.055040pt;}
.ws11{word-spacing:-14.464000pt;}
.ws1a{word-spacing:-0.224000pt;}
.ws4{word-spacing:-0.085333pt;}
.ws1{word-spacing:0.000000pt;}
.ws17{word-spacing:19.520000pt;}
.ws14{word-spacing:22.080000pt;}
.ws1d{word-spacing:37.440000pt;}
.ws27{word-spacing:49.536000pt;}
.ws2c{word-spacing:49.605120pt;}
.wsf{word-spacing:49.664000pt;}
.ws10{word-spacing:49.733120pt;}
.ws19{word-spacing:71.306667pt;}
.ws15{word-spacing:530.880000pt;}
.wse{word-spacing:598.901333pt;}
.wsd{word-spacing:733.857365pt;}
._0{margin-left:-10.675200pt;}
._2{margin-left:-9.394176pt;}
._b{margin-left:-8.352000pt;}
._8{margin-left:-7.104000pt;}
._4{margin-left:-5.978112pt;}
._9{margin-left:-4.704000pt;}
._3{margin-left:-3.416064pt;}
._1{margin-left:-2.135040pt;}
._6{margin-left:-1.009920pt;}
._5{width:1.175040pt;}
._7{width:2.115840pt;}
._17{width:3.072000pt;}
._1c{width:4.128000pt;}
._19{width:5.844651pt;}
._1b{width:17.088000pt;}
._1e{width:21.728000pt;}
._a{width:22.906880pt;}
._1a{width:24.631040pt;}
._14{width:27.431253pt;}
._13{width:29.066667pt;}
._1d{width:35.476907pt;}
._15{width:37.280000pt;}
._18{width:56.273493pt;}
._16{width:57.312000pt;}
._1f{width:66.538667pt;}
._12{width:71.210667pt;}
._e{width:413.589333pt;}
._d{width:518.110293pt;}
._10{width:722.895445pt;}
._c{width:747.030699pt;}
._f{width:856.265941pt;}
._11{width:1138.878293pt;}
.fsf{font-size:57.728000pt;}
.fs3{font-size:64.000000pt;}
.fs9{font-size:64.128000pt;}
.fsb{font-size:70.400000pt;}
.fsd{font-size:70.528000pt;}
.fs7{font-size:71.040000pt;}
.fs8{font-size:71.168000pt;}
.fs1{font-size:96.000000pt;}
.fs2{font-size:96.128000pt;}
.fs10{font-size:101.191873pt;}
.fsc{font-size:101.326796pt;}
.fs6{font-size:106.880000pt;}
.fs5{font-size:107.008000pt;}
.fsa{font-size:149.120000pt;}
.fs4{font-size:149.248000pt;}
.fse{font-size:155.008000pt;}
.fs0{font-size:427.008000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:2.880000pt;}
.y25{bottom:50.880000pt;}
.y26{bottom:92.773333pt;}
.y18{bottom:110.272000pt;}
.y40{bottom:118.304000pt;}
.y41{bottom:128.064000pt;}
.y17{bottom:139.386667pt;}
.y27{bottom:143.653333pt;}
.y3e{bottom:152.386667pt;}
.y3f{bottom:162.146667pt;}
.y52{bottom:172.986667pt;}
.ye{bottom:173.146667pt;}
.y23{bottom:179.200000pt;}
.y71{bottom:181.146667pt;}
.y24{bottom:182.080000pt;}
.y3c{bottom:186.466667pt;}
.y3d{bottom:196.226667pt;}
.y16{bottom:196.986667pt;}
.y51{bottom:204.346667pt;}
.y22{bottom:208.000000pt;}
.y6e{bottom:213.346667pt;}
.y3a{bottom:220.413333pt;}
.y6f{bottom:222.466667pt;}
.y70{bottom:223.106667pt;}
.y3b{bottom:230.173333pt;}
.yd{bottom:230.786667pt;}
.y6b{bottom:247.266667pt;}
.y20{bottom:249.280000pt;}
.y5c{bottom:252.346667pt;}
.y38{bottom:254.493333pt;}
.y15{bottom:254.626667pt;}
.y6c{bottom:256.386667pt;}
.y6d{bottom:257.026667pt;}
.y39{bottom:264.253333pt;}
.y5b{bottom:264.346667pt;}
.y77{bottom:264.546667pt;}
.y1f{bottom:278.080000pt;}
.y69{bottom:279.426667pt;}
.y6a{bottom:288.546667pt;}
.yc{bottom:288.706667pt;}
.y49{bottom:294.173333pt;}
.y50{bottom:294.586667pt;}
.y3{bottom:298.786667pt;}
.y48{bottom:306.173333pt;}
.y4f{bottom:306.586667pt;}
.y67{bottom:310.946667pt;}
.y14{bottom:312.226667pt;}
.y37{bottom:314.013333pt;}
.yb{bottom:317.186667pt;}
.y68{bottom:320.066667pt;}
.y2f{bottom:328.293333pt;}
.y76{bottom:331.426667pt;}
.y5a{bottom:332.226667pt;}
.y1e{bottom:342.173333pt;}
.y65{bottom:343.293333pt;}
.y66{bottom:352.413333pt;}
.y2e{bottom:357.120000pt;}
.y75{bottom:361.693333pt;}
.y13{bottom:369.533333pt;}
.y63{bottom:374.173333pt;}
.ya{bottom:375.133333pt;}
.y64{bottom:383.293333pt;}
.y4e{bottom:389.466667pt;}
.y74{bottom:394.333333pt;}
.y36{bottom:398.213333pt;}
.y47{bottom:402.333333pt;}
.y9{bottom:403.613333pt;}
.y62{bottom:404.253333pt;}
.y1d{bottom:407.586667pt;}
.y2{bottom:407.613333pt;}
.y4d{bottom:409.626667pt;}
.y34{bottom:410.213333pt;}
.y2d{bottom:414.720000pt;}
.y59{bottom:418.653333pt;}
.y35{bottom:419.973333pt;}
.y12{bottom:427.133333pt;}
.y46{bottom:428.293333pt;}
.y2c{bottom:443.520000pt;}
.y58{bottom:447.453333pt;}
.y4c{bottom:448.386667pt;}
.y1c{bottom:451.906667pt;}
.y73{bottom:452.893333pt;}
.y61{bottom:459.613333pt;}
.y8{bottom:461.213333pt;}
.y72{bottom:464.893333pt;}
.y5f{bottom:471.613333pt;}
.y45{bottom:472.773333pt;}
.y33{bottom:475.333333pt;}
.y57{bottom:476.253333pt;}
.y60{bottom:480.733333pt;}
.y11{bottom:485.053333pt;}
.y4b{bottom:487.266667pt;}
.y7{bottom:490.373333pt;}
.y1b{bottom:496.066667pt;}
.y2b{bottom:501.146667pt;}
.y32{bottom:504.160000pt;}
.y56{bottom:505.053333pt;}
.y1{bottom:516.453333pt;}
.y44{bottom:517.413333pt;}
.y6{bottom:519.173333pt;}
.y2a{bottom:529.946667pt;}
.y31{bottom:532.960000pt;}
.y55{bottom:533.853333pt;}
.y5e{bottom:539.493333pt;}
.y1a{bottom:540.413333pt;}
.y10{bottom:542.373333pt;}
.y29{bottom:558.746667pt;}
.y54{bottom:562.693333pt;}
.y43{bottom:565.600000pt;}
.y4a{bottom:568.093333pt;}
.y5{bottom:576.453333pt;}
.y30{bottom:594.080000pt;}
.yf{bottom:600.293333pt;}
.y19{bottom:603.333333pt;}
.y4{bottom:605.573333pt;}
.y28{bottom:616.346667pt;}
.y5d{bottom:616.613333pt;}
.y53{bottom:620.293333pt;}
.y42{bottom:622.880000pt;}
.hf{height:61.256250pt;}
.h12{height:61.367625pt;}
.hc{height:78.536250pt;}
.hb{height:83.531250pt;}
.h11{height:83.642625pt;}
.h19{height:88.048788pt;}
.h10{height:88.166187pt;}
.h2{height:95.484375pt;}
.h3{height:95.611688pt;}
.h18{height:95.830125pt;}
.h4{height:98.296875pt;}
.h7{height:106.305937pt;}
.h6{height:106.433250pt;}
.h15{height:117.576250pt;}
.h1a{height:127.830125pt;}
.he{height:131.531250pt;}
.h17{height:132.310125pt;}
.h13{height:141.984375pt;}
.h5{height:142.106250pt;}
.ha{height:148.319063pt;}
.h14{height:148.446375pt;}
.h16{height:154.175438pt;}
.hd{height:165.576250pt;}
.h9{height:201.760000pt;}
.h8{height:403.360000pt;}
.h1{height:406.575000pt;}
.h0{height:720.000000pt;}
.w2{width:262.720000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.xe{left:9.760000pt;}
.x2a{left:71.327981pt;}
.x6{left:87.999981pt;}
.x11{left:92.863981pt;}
.xd{left:94.080000pt;}
.x2{left:96.799981pt;}
.xa{left:103.839981pt;}
.x2f{left:107.327981pt;}
.x15{left:108.383981pt;}
.x33{left:109.887981pt;}
.x27{left:113.439981pt;}
.x4{left:121.471981pt;}
.x1{left:124.831981pt;}
.x13{left:128.895981pt;}
.x1d{left:149.666648pt;}
.x1f{left:151.106648pt;}
.x31{left:153.573314pt;}
.x2e{left:156.613314pt;}
.x1e{left:162.946648pt;}
.x20{left:164.386648pt;}
.x22{left:167.546648pt;}
.x23{left:181.146648pt;}
.x5{left:192.986648pt;}
.x16{left:204.413314pt;}
.x17{left:218.813314pt;}
.x32{left:222.053314pt;}
.x30{left:225.253314pt;}
.x21{left:233.533314pt;}
.x18{left:292.573314pt;}
.x7{left:297.466648pt;}
.x28{left:391.653314pt;}
.xb{left:417.279981pt;}
.x2b{left:423.359981pt;}
.x12{left:428.933314pt;}
.x19{left:436.413314pt;}
.x2c{left:437.439981pt;}
.x10{left:458.719981pt;}
.xf{left:468.959981pt;}
.x3{left:474.626648pt;}
.x2d{left:487.359981pt;}
.x34{left:502.106648pt;}
.x14{left:571.493314pt;}
.x29{left:607.973314pt;}
.x8{left:648.093314pt;}
.x1a{left:656.293314pt;}
.x24{left:708.573314pt;}
.x1b{left:729.599981pt;}
.x25{left:791.133314pt;}
.x26{left:849.373314pt;}
.x9{left:855.933314pt;}
.x1c{left:873.439981pt;}
.xc{left:957.306648pt;}
}




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