
    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_581a52b7de9769e99585b07e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_02fa763315cc64c2459433e6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_06ad797e75c62383a71cd997.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_d589015e376495127ea3fbb0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.850586;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_65e27ee2f6e4cfba563624ef.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172363;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_05f19b28dc868dab37f91eb9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_941509cb1cfb3839ae1f3064.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_cf3e099e7948153a922dde98.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_3b0d68577a2506c27205bc87.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_44cae2f3727c2a40cbbc018b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.208008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b0d8e1f3bf303ceca59e6d90.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.208008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_3150e63dbe6d5212dfd12f64.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_77f9168d6c80f1e651b9a4e0.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;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.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);}
.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);}
.v7{vertical-align:-31.080000px;}
.v1{vertical-align:-17.280000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.280000px;}
.vd{vertical-align:22.320000px;}
.v9{vertical-align:25.200000px;}
.v2{vertical-align:30.960000px;}
.va{vertical-align:42.480000px;}
.v6{vertical-align:48.360000px;}
.ve{vertical-align:49.680000px;}
.v5{vertical-align:56.160000px;}
.v4{vertical-align:64.080000px;}
.vb{vertical-align:92.160000px;}
.v8{vertical-align:95.040000px;}
.vc{vertical-align:114.480000px;}
.ls7{letter-spacing:-2.622000px;}
.ls2e{letter-spacing:-0.360000px;}
.ls1f{letter-spacing:-0.200400px;}
.ls6{letter-spacing:-0.180000px;}
.ls21{letter-spacing:-0.157800px;}
.ls10{letter-spacing:-0.154800px;}
.ls5{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.028080px;}
.ls2c{letter-spacing:0.144000px;}
.ls2d{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.187200px;}
.ls3{letter-spacing:0.205920px;}
.ls1{letter-spacing:0.360000px;}
.ls29{letter-spacing:0.480000px;}
.ls24{letter-spacing:0.527760px;}
.ls26{letter-spacing:0.676080px;}
.ls25{letter-spacing:0.719280px;}
.ls19{letter-spacing:1.131840px;}
.ls14{letter-spacing:1.193040px;}
.ls1d{letter-spacing:1.251840px;}
.ls1a{letter-spacing:1.833840px;}
.ls9{letter-spacing:2.033280px;}
.ls1e{letter-spacing:2.324880px;}
.lsf{letter-spacing:2.459520px;}
.ls8{letter-spacing:2.475120px;}
.lsd{letter-spacing:2.838960px;}
.lsb{letter-spacing:3.558960px;}
.lsa{letter-spacing:3.708720px;}
.ls2f{letter-spacing:4.140000px;}
.ls15{letter-spacing:4.882320px;}
.lsc{letter-spacing:5.016960px;}
.ls11{letter-spacing:5.559840px;}
.ls13{letter-spacing:5.602320px;}
.ls16{letter-spacing:5.679840px;}
.ls12{letter-spacing:5.804640px;}
.ls4{letter-spacing:11.340000px;}
.lse{letter-spacing:13.500000px;}
.ls18{letter-spacing:22.752720px;}
.ls17{letter-spacing:23.602320px;}
.ls22{letter-spacing:24.891840px;}
.ls2{letter-spacing:36.540000px;}
.ls2a{letter-spacing:41.381280px;}
.ls1b{letter-spacing:42.373440px;}
.ls1c{letter-spacing:68.112720px;}
.ls27{letter-spacing:87.682320px;}
.ls23{letter-spacing:103.392720px;}
.ls2b{letter-spacing:127.061280px;}
.ls28{letter-spacing:168.821280px;}
.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;}
}
.wsa{word-spacing:-84.240000px;}
.ws10{word-spacing:-66.108960px;}
.wsc{word-spacing:-65.919600px;}
.ws14{word-spacing:-65.807280px;}
.ws6{word-spacing:-61.599600px;}
.ws8{word-spacing:-61.487280px;}
.wsf{word-spacing:-61.479600px;}
.ws12{word-spacing:-60.935760px;}
.wse{word-spacing:-60.879600px;}
.wsb{word-spacing:-60.767280px;}
.ws7{word-spacing:-60.647280px;}
.ws1c{word-spacing:-60.587280px;}
.ws15{word-spacing:-59.760000px;}
.ws9{word-spacing:-59.605200px;}
.ws1a{word-spacing:-59.602200px;}
.ws11{word-spacing:-59.575920px;}
.ws17{word-spacing:-59.559600px;}
.ws13{word-spacing:-59.215680px;}
.ws18{word-spacing:-48.240000px;}
.ws19{word-spacing:-35.961120px;}
.ws16{word-spacing:-34.724160px;}
.ws1b{word-spacing:-27.262800px;}
.ws1d{word-spacing:-21.420000px;}
.ws4{word-spacing:-21.060000px;}
.ws1e{word-spacing:-20.700000px;}
.ws1{word-spacing:-19.800000px;}
.ws0{word-spacing:-19.620000px;}
.ws2{word-spacing:-14.970240px;}
.ws3{word-spacing:-12.348240px;}
.wsd{word-spacing:-7.599600px;}
.ws5{word-spacing:0.000000px;}
._21{margin-left:-13.202160px;}
._17{margin-left:-6.318000px;}
._16{margin-left:-5.027760px;}
._0{margin-left:-3.032640px;}
._1{margin-left:-1.121760px;}
._5{width:1.531200px;}
._e{width:2.894640px;}
._b{width:3.956400px;}
._1a{width:4.970880px;}
._9{width:6.708240px;}
._8{width:7.776720px;}
._12{width:9.182160px;}
._13{width:10.456560px;}
._7{width:11.962080px;}
._a{width:13.068960px;}
._11{width:14.940000px;}
._10{width:16.331520px;}
._f{width:17.908080px;}
._6{width:19.689600px;}
._20{width:22.063440px;}
._3{width:23.070000px;}
._2{width:24.188160px;}
._1d{width:25.356240px;}
._4{width:26.476080px;}
._1e{width:27.801120px;}
._24{width:28.810080px;}
._1f{width:29.998320px;}
._2a{width:31.034400px;}
._18{width:32.432400px;}
._19{width:33.623520px;}
._14{width:35.970480px;}
._15{width:37.567920px;}
._2b{width:38.750400px;}
._1c{width:41.672160px;}
._1b{width:43.073280px;}
._29{width:44.562960px;}
._27{width:47.342880px;}
._28{width:62.869680px;}
._22{width:87.552720px;}
._c{width:109.074960px;}
._d{width:111.463200px;}
._25{width:618.911280px;}
._26{width:620.836560px;}
._23{width:1483.673520px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(4,98,193);}
.fc2{color:rgb(30,78,120);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(196,88,17);}
.fs5{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:88.795869px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:4.860000px;}
.y4{bottom:7.200000px;}
.y8{bottom:11.340000px;}
.y7{bottom:12.780000px;}
.y5{bottom:19.440000px;}
.ya{bottom:22.320000px;}
.y3{bottom:35.640000px;}
.y61{bottom:57.780000px;}
.y3f{bottom:62.280000px;}
.y84{bottom:64.080000px;}
.y30{bottom:65.700000px;}
.y2{bottom:72.720000px;}
.y60{bottom:84.420000px;}
.y3e{bottom:90.000000px;}
.y83{bottom:91.800000px;}
.y2f{bottom:93.600000px;}
.y5f{bottom:107.460000px;}
.y3d{bottom:117.720000px;}
.y82{bottom:119.520000px;}
.y2e{bottom:121.320000px;}
.y5e{bottom:132.660000px;}
.y3c{bottom:145.620000px;}
.y81{bottom:147.420000px;}
.y2d{bottom:149.040000px;}
.y5d{bottom:160.380000px;}
.y3b{bottom:173.340000px;}
.y80{bottom:175.140000px;}
.y2c{bottom:176.760000px;}
.y5c{bottom:188.280000px;}
.y3a{bottom:201.240000px;}
.y7f{bottom:202.860000px;}
.y2b{bottom:204.660000px;}
.y5b{bottom:216.210000px;}
.y39{bottom:229.710000px;}
.y5a{bottom:230.250000px;}
.y7e{bottom:230.790000px;}
.y2a{bottom:232.410000px;}
.y38{bottom:258.510000px;}
.y29{bottom:260.130000px;}
.y59{bottom:275.790000px;}
.y7d{bottom:286.230000px;}
.y37{bottom:286.410000px;}
.y28{bottom:288.030000px;}
.y58{bottom:303.690000px;}
.y7c{bottom:313.950000px;}
.y36{bottom:314.130000px;}
.y27{bottom:315.750000px;}
.y57{bottom:331.770000px;}
.y35{bottom:341.850000px;}
.y26{bottom:343.470000px;}
.y56{bottom:359.670000px;}
.y34{bottom:369.570000px;}
.y25{bottom:371.190000px;}
.y55{bottom:373.710000px;}
.y7b{bottom:397.290000px;}
.y33{bottom:397.650000px;}
.y24{bottom:399.090000px;}
.y54{bottom:419.430000px;}
.y7a{bottom:425.190000px;}
.y32{bottom:425.910000px;}
.y23{bottom:426.810000px;}
.y53{bottom:447.195000px;}
.y79{bottom:452.955000px;}
.y31{bottom:454.215000px;}
.y22{bottom:454.575000px;}
.y52{bottom:474.915000px;}
.y78{bottom:480.675000px;}
.y21{bottom:482.475000px;}
.y51{bottom:502.635000px;}
.y77{bottom:508.395000px;}
.y20{bottom:510.195000px;}
.y50{bottom:530.535000px;}
.y76{bottom:536.295000px;}
.y1f{bottom:537.915000px;}
.y4f{bottom:558.255000px;}
.y75{bottom:564.015000px;}
.y1e{bottom:565.635000px;}
.y4e{bottom:586.155000px;}
.y74{bottom:591.735000px;}
.y1d{bottom:593.535000px;}
.y4d{bottom:600.195000px;}
.y73{bottom:619.455000px;}
.y1c{bottom:621.255000px;}
.y4c{bottom:645.735000px;}
.y72{bottom:647.355000px;}
.y1b{bottom:648.975000px;}
.y4b{bottom:669.495000px;}
.y4a{bottom:673.815000px;}
.y71{bottom:675.075000px;}
.y1a{bottom:676.695000px;}
.y70{bottom:702.825000px;}
.y49{bottom:703.365000px;}
.y19{bottom:704.625000px;}
.y6f{bottom:730.725000px;}
.y48{bottom:731.265000px;}
.y18{bottom:732.345000px;}
.y6e{bottom:758.445000px;}
.y47{bottom:758.985000px;}
.y17{bottom:760.065000px;}
.y6d{bottom:786.165000px;}
.y46{bottom:786.705000px;}
.y16{bottom:787.965000px;}
.y6c{bottom:813.885000px;}
.y45{bottom:814.425000px;}
.y15{bottom:815.685000px;}
.y44{bottom:838.185000px;}
.y6b{bottom:841.785000px;}
.y43{bottom:842.505000px;}
.y14{bottom:843.405000px;}
.y6a{bottom:869.505000px;}
.y42{bottom:870.765000px;}
.y13{bottom:871.125000px;}
.y40{bottom:884.805000px;}
.y41{bottom:896.505000px;}
.y69{bottom:897.225000px;}
.y12{bottom:899.025000px;}
.y68{bottom:925.170000px;}
.y11{bottom:926.790000px;}
.y67{bottom:952.890000px;}
.y10{bottom:954.510000px;}
.y66{bottom:980.610000px;}
.yf{bottom:982.410000px;}
.y65{bottom:1006.890000px;}
.ye{bottom:1010.130000px;}
.y64{bottom:1017.510000px;}
.yd{bottom:1037.850000px;}
.y63{bottom:1051.710000px;}
.y62{bottom:1062.330000px;}
.yc{bottom:1065.570000px;}
.yb{bottom:1093.470000px;}
.y1{bottom:1165.320000px;}
.y9{bottom:1256.580000px;}
.h5{height:19.440000px;}
.h7{height:26.100000px;}
.h3{height:48.224531px;}
.h15{height:53.165391px;}
.h8{height:58.651172px;}
.hb{height:58.819922px;}
.h6{height:65.884219px;}
.hc{height:74.943984px;}
.h4{height:75.849609px;}
.hd{height:78.997106px;}
.ha{height:82.676953px;}
.he{height:84.125391px;}
.h9{height:84.898125px;}
.h1b{height:86.585445px;}
.h10{height:92.223984px;}
.h2{height:92.340000px;}
.h12{height:99.956953px;}
.h13{height:101.525391px;}
.h19{height:102.845391px;}
.h18{height:125.115820px;}
.h1a{height:125.156953px;}
.h11{height:131.103984px;}
.hf{height:139.023984px;}
.h17{height:145.325391px;}
.h14{height:148.205391px;}
.h16{height:157.396641px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:64.800000px;}
.w3{width:207.255000px;}
.w2{width:625.470000px;}
.w1{width:893.250000px;}
.w5{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x3{left:1.440000px;}
.x6{left:4.500000px;}
.x4{left:62.280000px;}
.x7{left:63.899987px;}
.x1c{left:65.159987px;}
.x8{left:107.315987px;}
.x1d{left:116.855987px;}
.x1{left:137.736000px;}
.x12{left:151.949987px;}
.x13{left:252.074987px;}
.x14{left:259.814987px;}
.x21{left:264.674987px;}
.x22{left:291.674987px;}
.x19{left:314.714987px;}
.x15{left:324.794987px;}
.x2{left:340.269000px;}
.x1a{left:353.774987px;}
.xb{left:355.034987px;}
.x17{left:357.554987px;}
.xa{left:359.534987px;}
.xf{left:366.014987px;}
.xc{left:374.114987px;}
.xe{left:392.834987px;}
.x10{left:436.964987px;}
.x11{left:448.484987px;}
.x9{left:452.084987px;}
.x16{left:487.724987px;}
.xd{left:530.204987px;}
.x18{left:546.584987px;}
.x1b{left:589.649987px;}
.x1e{left:641.309987px;}
.x1f{left:687.929987px;}
.x5{left:752.580000px;}
.x20{left:790.559987px;}
@media print{
.v7{vertical-align:-27.626667pt;}
.v1{vertical-align:-15.360000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.360000pt;}
.vd{vertical-align:19.840000pt;}
.v9{vertical-align:22.400000pt;}
.v2{vertical-align:27.520000pt;}
.va{vertical-align:37.760000pt;}
.v6{vertical-align:42.986667pt;}
.ve{vertical-align:44.160000pt;}
.v5{vertical-align:49.920000pt;}
.v4{vertical-align:56.960000pt;}
.vb{vertical-align:81.920000pt;}
.v8{vertical-align:84.480000pt;}
.vc{vertical-align:101.760000pt;}
.ls7{letter-spacing:-2.330667pt;}
.ls2e{letter-spacing:-0.320000pt;}
.ls1f{letter-spacing:-0.178133pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls21{letter-spacing:-0.140267pt;}
.ls10{letter-spacing:-0.137600pt;}
.ls5{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.024960pt;}
.ls2c{letter-spacing:0.128000pt;}
.ls2d{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.166400pt;}
.ls3{letter-spacing:0.183040pt;}
.ls1{letter-spacing:0.320000pt;}
.ls29{letter-spacing:0.426667pt;}
.ls24{letter-spacing:0.469120pt;}
.ls26{letter-spacing:0.600960pt;}
.ls25{letter-spacing:0.639360pt;}
.ls19{letter-spacing:1.006080pt;}
.ls14{letter-spacing:1.060480pt;}
.ls1d{letter-spacing:1.112747pt;}
.ls1a{letter-spacing:1.630080pt;}
.ls9{letter-spacing:1.807360pt;}
.ls1e{letter-spacing:2.066560pt;}
.lsf{letter-spacing:2.186240pt;}
.ls8{letter-spacing:2.200107pt;}
.lsd{letter-spacing:2.523520pt;}
.lsb{letter-spacing:3.163520pt;}
.lsa{letter-spacing:3.296640pt;}
.ls2f{letter-spacing:3.680000pt;}
.ls15{letter-spacing:4.339840pt;}
.lsc{letter-spacing:4.459520pt;}
.ls11{letter-spacing:4.942080pt;}
.ls13{letter-spacing:4.979840pt;}
.ls16{letter-spacing:5.048747pt;}
.ls12{letter-spacing:5.159680pt;}
.ls4{letter-spacing:10.080000pt;}
.lse{letter-spacing:12.000000pt;}
.ls18{letter-spacing:20.224640pt;}
.ls17{letter-spacing:20.979840pt;}
.ls22{letter-spacing:22.126080pt;}
.ls2{letter-spacing:32.480000pt;}
.ls2a{letter-spacing:36.783360pt;}
.ls1b{letter-spacing:37.665280pt;}
.ls1c{letter-spacing:60.544640pt;}
.ls27{letter-spacing:77.939840pt;}
.ls23{letter-spacing:91.904640pt;}
.ls2b{letter-spacing:112.943360pt;}
.ls28{letter-spacing:150.063360pt;}
.wsa{word-spacing:-74.880000pt;}
.ws10{word-spacing:-58.763520pt;}
.wsc{word-spacing:-58.595200pt;}
.ws14{word-spacing:-58.495360pt;}
.ws6{word-spacing:-54.755200pt;}
.ws8{word-spacing:-54.655360pt;}
.wsf{word-spacing:-54.648533pt;}
.ws12{word-spacing:-54.165120pt;}
.wse{word-spacing:-54.115200pt;}
.wsb{word-spacing:-54.015360pt;}
.ws7{word-spacing:-53.908693pt;}
.ws1c{word-spacing:-53.855360pt;}
.ws15{word-spacing:-53.120000pt;}
.ws9{word-spacing:-52.982400pt;}
.ws1a{word-spacing:-52.979733pt;}
.ws11{word-spacing:-52.956373pt;}
.ws17{word-spacing:-52.941867pt;}
.ws13{word-spacing:-52.636160pt;}
.ws18{word-spacing:-42.880000pt;}
.ws19{word-spacing:-31.965440pt;}
.ws16{word-spacing:-30.865920pt;}
.ws1b{word-spacing:-24.233600pt;}
.ws1d{word-spacing:-19.040000pt;}
.ws4{word-spacing:-18.720000pt;}
.ws1e{word-spacing:-18.400000pt;}
.ws1{word-spacing:-17.600000pt;}
.ws0{word-spacing:-17.440000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws3{word-spacing:-10.976213pt;}
.wsd{word-spacing:-6.755200pt;}
.ws5{word-spacing:0.000000pt;}
._21{margin-left:-11.735253pt;}
._17{margin-left:-5.616000pt;}
._16{margin-left:-4.469120pt;}
._0{margin-left:-2.695680pt;}
._1{margin-left:-0.997120pt;}
._5{width:1.361067pt;}
._e{width:2.573013pt;}
._b{width:3.516800pt;}
._1a{width:4.418560pt;}
._9{width:5.962880pt;}
._8{width:6.912640pt;}
._12{width:8.161920pt;}
._13{width:9.294720pt;}
._7{width:10.632960pt;}
._a{width:11.616853pt;}
._11{width:13.280000pt;}
._10{width:14.516907pt;}
._f{width:15.918293pt;}
._6{width:17.501867pt;}
._20{width:19.611947pt;}
._3{width:20.506667pt;}
._2{width:21.500587pt;}
._1d{width:22.538880pt;}
._4{width:23.534293pt;}
._1e{width:24.712107pt;}
._24{width:25.608960pt;}
._1f{width:26.665173pt;}
._2a{width:27.586133pt;}
._18{width:28.828800pt;}
._19{width:29.887573pt;}
._14{width:31.973760pt;}
._15{width:33.393707pt;}
._2b{width:34.444800pt;}
._1c{width:37.041920pt;}
._1b{width:38.287360pt;}
._29{width:39.611520pt;}
._27{width:42.082560pt;}
._28{width:55.884160pt;}
._22{width:77.824640pt;}
._c{width:96.955520pt;}
._d{width:99.078400pt;}
._25{width:550.143360pt;}
._26{width:551.854720pt;}
._23{width:1318.820907pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:78.929661pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:4.320000pt;}
.y4{bottom:6.400000pt;}
.y8{bottom:10.080000pt;}
.y7{bottom:11.360000pt;}
.y5{bottom:17.280000pt;}
.ya{bottom:19.840000pt;}
.y3{bottom:31.680000pt;}
.y61{bottom:51.360000pt;}
.y3f{bottom:55.360000pt;}
.y84{bottom:56.960000pt;}
.y30{bottom:58.400000pt;}
.y2{bottom:64.640000pt;}
.y60{bottom:75.040000pt;}
.y3e{bottom:80.000000pt;}
.y83{bottom:81.600000pt;}
.y2f{bottom:83.200000pt;}
.y5f{bottom:95.520000pt;}
.y3d{bottom:104.640000pt;}
.y82{bottom:106.240000pt;}
.y2e{bottom:107.840000pt;}
.y5e{bottom:117.920000pt;}
.y3c{bottom:129.440000pt;}
.y81{bottom:131.040000pt;}
.y2d{bottom:132.480000pt;}
.y5d{bottom:142.560000pt;}
.y3b{bottom:154.080000pt;}
.y80{bottom:155.680000pt;}
.y2c{bottom:157.120000pt;}
.y5c{bottom:167.360000pt;}
.y3a{bottom:178.880000pt;}
.y7f{bottom:180.320000pt;}
.y2b{bottom:181.920000pt;}
.y5b{bottom:192.186667pt;}
.y39{bottom:204.186667pt;}
.y5a{bottom:204.666667pt;}
.y7e{bottom:205.146667pt;}
.y2a{bottom:206.586667pt;}
.y38{bottom:229.786667pt;}
.y29{bottom:231.226667pt;}
.y59{bottom:245.146667pt;}
.y7d{bottom:254.426667pt;}
.y37{bottom:254.586667pt;}
.y28{bottom:256.026667pt;}
.y58{bottom:269.946667pt;}
.y7c{bottom:279.066667pt;}
.y36{bottom:279.226667pt;}
.y27{bottom:280.666667pt;}
.y57{bottom:294.906667pt;}
.y35{bottom:303.866667pt;}
.y26{bottom:305.306667pt;}
.y56{bottom:319.706667pt;}
.y34{bottom:328.506667pt;}
.y25{bottom:329.946667pt;}
.y55{bottom:332.186667pt;}
.y7b{bottom:353.146667pt;}
.y33{bottom:353.466667pt;}
.y24{bottom:354.746667pt;}
.y54{bottom:372.826667pt;}
.y7a{bottom:377.946667pt;}
.y32{bottom:378.586667pt;}
.y23{bottom:379.386667pt;}
.y53{bottom:397.506667pt;}
.y79{bottom:402.626667pt;}
.y31{bottom:403.746667pt;}
.y22{bottom:404.066667pt;}
.y52{bottom:422.146667pt;}
.y78{bottom:427.266667pt;}
.y21{bottom:428.866667pt;}
.y51{bottom:446.786667pt;}
.y77{bottom:451.906667pt;}
.y20{bottom:453.506667pt;}
.y50{bottom:471.586667pt;}
.y76{bottom:476.706667pt;}
.y1f{bottom:478.146667pt;}
.y4f{bottom:496.226667pt;}
.y75{bottom:501.346667pt;}
.y1e{bottom:502.786667pt;}
.y4e{bottom:521.026667pt;}
.y74{bottom:525.986667pt;}
.y1d{bottom:527.586667pt;}
.y4d{bottom:533.506667pt;}
.y73{bottom:550.626667pt;}
.y1c{bottom:552.226667pt;}
.y4c{bottom:573.986667pt;}
.y72{bottom:575.426667pt;}
.y1b{bottom:576.866667pt;}
.y4b{bottom:595.106667pt;}
.y4a{bottom:598.946667pt;}
.y71{bottom:600.066667pt;}
.y1a{bottom:601.506667pt;}
.y70{bottom:624.733333pt;}
.y49{bottom:625.213333pt;}
.y19{bottom:626.333333pt;}
.y6f{bottom:649.533333pt;}
.y48{bottom:650.013333pt;}
.y18{bottom:650.973333pt;}
.y6e{bottom:674.173333pt;}
.y47{bottom:674.653333pt;}
.y17{bottom:675.613333pt;}
.y6d{bottom:698.813333pt;}
.y46{bottom:699.293333pt;}
.y16{bottom:700.413333pt;}
.y6c{bottom:723.453333pt;}
.y45{bottom:723.933333pt;}
.y15{bottom:725.053333pt;}
.y44{bottom:745.053333pt;}
.y6b{bottom:748.253333pt;}
.y43{bottom:748.893333pt;}
.y14{bottom:749.693333pt;}
.y6a{bottom:772.893333pt;}
.y42{bottom:774.013333pt;}
.y13{bottom:774.333333pt;}
.y40{bottom:786.493333pt;}
.y41{bottom:796.893333pt;}
.y69{bottom:797.533333pt;}
.y12{bottom:799.133333pt;}
.y68{bottom:822.373333pt;}
.y11{bottom:823.813333pt;}
.y67{bottom:847.013333pt;}
.y10{bottom:848.453333pt;}
.y66{bottom:871.653333pt;}
.yf{bottom:873.253333pt;}
.y65{bottom:895.013333pt;}
.ye{bottom:897.893333pt;}
.y64{bottom:904.453333pt;}
.yd{bottom:922.533333pt;}
.y63{bottom:934.853333pt;}
.y62{bottom:944.293333pt;}
.yc{bottom:947.173333pt;}
.yb{bottom:971.973333pt;}
.y1{bottom:1035.840000pt;}
.y9{bottom:1116.960000pt;}
.h5{height:17.280000pt;}
.h7{height:23.200000pt;}
.h3{height:42.866250pt;}
.h15{height:47.258125pt;}
.h8{height:52.134375pt;}
.hb{height:52.284375pt;}
.h6{height:58.563750pt;}
.hc{height:66.616875pt;}
.h4{height:67.421875pt;}
.hd{height:70.219650pt;}
.ha{height:73.490625pt;}
.he{height:74.778125pt;}
.h9{height:75.465000pt;}
.h1b{height:76.964840pt;}
.h10{height:81.976875pt;}
.h2{height:82.080000pt;}
.h12{height:88.850625pt;}
.h13{height:90.244792pt;}
.h19{height:91.418125pt;}
.h18{height:111.214062pt;}
.h1a{height:111.250625pt;}
.h11{height:116.536875pt;}
.hf{height:123.576875pt;}
.h17{height:129.178125pt;}
.h14{height:131.738125pt;}
.h16{height:139.908125pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:57.600000pt;}
.w3{width:184.226667pt;}
.w2{width:555.973333pt;}
.w1{width:794.000000pt;}
.w5{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x3{left:1.280000pt;}
.x6{left:4.000000pt;}
.x4{left:55.360000pt;}
.x7{left:56.799988pt;}
.x1c{left:57.919988pt;}
.x8{left:95.391988pt;}
.x1d{left:103.871988pt;}
.x1{left:122.432000pt;}
.x12{left:135.066655pt;}
.x13{left:224.066655pt;}
.x14{left:230.946655pt;}
.x21{left:235.266655pt;}
.x22{left:259.266655pt;}
.x19{left:279.746655pt;}
.x15{left:288.706655pt;}
.x2{left:302.461333pt;}
.x1a{left:314.466655pt;}
.xb{left:315.586655pt;}
.x17{left:317.826655pt;}
.xa{left:319.586655pt;}
.xf{left:325.346655pt;}
.xc{left:332.546655pt;}
.xe{left:349.186655pt;}
.x10{left:388.413321pt;}
.x11{left:398.653321pt;}
.x9{left:401.853321pt;}
.x16{left:433.533321pt;}
.xd{left:471.293321pt;}
.x18{left:485.853322pt;}
.x1b{left:524.133322pt;}
.x1e{left:570.053322pt;}
.x1f{left:611.493322pt;}
.x5{left:668.960000pt;}
.x20{left:702.719988pt;}
}




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