
    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_a94999303681a34314dfb7c0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_a476208eb29b4b3fbbbc2149.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.971191;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_5a091e8de382396dce23f047.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.766602;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_6a6829d24725abe65701771f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.113281;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_a05d8d6d0bb98f6ab4cef116.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104492;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_84f65dea96eda716f72eb908.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_66260d7a8055127dbc50e98f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.902832;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_d7c73059fba1593389e9f9a6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.971191;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_424c19eac7d9cb6e487971d8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.106934;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_20e3a854bcbb0dbc1c76d04a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_66260d7a8055127dbc50e98f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.902832;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_d7c73059fba1593389e9f9a6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.971191;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_abd9694119b22594d8c1ddd8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.791992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_eeb4387766177dde7d3487d6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.902832;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:fff;src:url('chunks/assets/font_6a583790a3cd638328fae43c.woff2')format("woff");}.fff{font-family:fff;line-height:0.971191;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:ff10;src:url('chunks/assets/font_33f5c84d5793077ddbbd0fd4.woff2')format("woff");}.ff10{font-family:ff10;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;}
.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);}
.v1{vertical-align:-10.903200px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:13.114200px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-82.080000px;}
.ws2{word-spacing:-16.680000px;}
.wsb{word-spacing:-9.372000px;}
.ws7{word-spacing:-5.760000px;}
.ws3{word-spacing:-3.300000px;}
.ws2a{word-spacing:-3.180000px;}
.ws2f{word-spacing:-3.000000px;}
.ws4e{word-spacing:-2.940000px;}
.ws1d{word-spacing:-2.460000px;}
.wsc{word-spacing:-2.442000px;}
.ws11{word-spacing:-2.400000px;}
.ws26{word-spacing:-2.340000px;}
.ws14{word-spacing:-2.160000px;}
.ws38{word-spacing:-2.040000px;}
.ws1a{word-spacing:-1.980000px;}
.ws1b{word-spacing:-1.740000px;}
.ws3d{word-spacing:-1.560000px;}
.ws28{word-spacing:-1.140000px;}
.ws13{word-spacing:-1.080000px;}
.ws39{word-spacing:-0.960000px;}
.ws45{word-spacing:-0.900000px;}
.ws2c{word-spacing:-0.660000px;}
.ws2b{word-spacing:-0.600000px;}
.ws50{word-spacing:-0.540000px;}
.ws4c{word-spacing:-0.420000px;}
.ws3b{word-spacing:-0.360000px;}
.ws4d{word-spacing:-0.300000px;}
.ws1e{word-spacing:-0.120000px;}
.wsa{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
.ws46{word-spacing:0.120000px;}
.ws1c{word-spacing:0.360000px;}
.ws44{word-spacing:0.420000px;}
.ws8{word-spacing:0.540000px;}
.ws4b{word-spacing:0.600000px;}
.ws29{word-spacing:0.660000px;}
.ws18{word-spacing:0.720000px;}
.ws48{word-spacing:0.780000px;}
.ws5{word-spacing:0.840000px;}
.ws3c{word-spacing:0.900000px;}
.ws3e{word-spacing:1.080000px;}
.ws25{word-spacing:1.200000px;}
.ws41{word-spacing:1.260000px;}
.ws31{word-spacing:1.320000px;}
.ws33{word-spacing:1.380000px;}
.ws21{word-spacing:1.680000px;}
.ws24{word-spacing:1.800000px;}
.ws36{word-spacing:1.980000px;}
.ws30{word-spacing:2.040000px;}
.ws16{word-spacing:2.100000px;}
.wsd{word-spacing:2.280000px;}
.ws43{word-spacing:2.460000px;}
.ws19{word-spacing:3.000000px;}
.wse{word-spacing:3.060000px;}
.ws4a{word-spacing:3.240000px;}
.wsf{word-spacing:3.420000px;}
.ws12{word-spacing:3.480000px;}
.ws3f{word-spacing:3.720000px;}
.ws37{word-spacing:4.260000px;}
.ws4f{word-spacing:4.440000px;}
.ws9{word-spacing:4.620000px;}
.ws10{word-spacing:4.800000px;}
.ws17{word-spacing:4.920000px;}
.ws6{word-spacing:5.400000px;}
.ws47{word-spacing:5.760000px;}
.ws42{word-spacing:5.880000px;}
.ws34{word-spacing:6.360000px;}
.ws22{word-spacing:6.840000px;}
.ws40{word-spacing:7.020000px;}
.ws15{word-spacing:7.320000px;}
.ws23{word-spacing:7.500000px;}
.ws35{word-spacing:7.560000px;}
.ws49{word-spacing:7.740000px;}
.ws3a{word-spacing:7.980000px;}
.ws2d{word-spacing:8.340000px;}
.ws20{word-spacing:8.460000px;}
.ws32{word-spacing:9.060000px;}
.ws4{word-spacing:9.300000px;}
.ws1f{word-spacing:9.840000px;}
.ws27{word-spacing:13.530000px;}
.ws2e{word-spacing:15.000000px;}
._e{margin-left:-7.638000px;}
._1{margin-left:-6.516000px;}
._5{margin-left:-5.436000px;}
._3{margin-left:-4.428000px;}
._0{margin-left:-2.577600px;}
._4{margin-left:-1.050000px;}
._8{width:1.104000px;}
._9{width:2.154000px;}
._2{width:3.318000px;}
._12{width:4.320000px;}
._b{width:6.480000px;}
._11{width:8.376000px;}
._13{width:12.660000px;}
._f{width:13.920000px;}
._d{width:155.940000px;}
._c{width:162.480000px;}
._14{width:168.660000px;}
._10{width:169.920000px;}
._a{width:171.180000px;}
._6{width:806.127000px;}
._7{width:1588.071600px;}
.fc4{color:rgb(138,149,151);}
.fc3{color:rgb(79,92,214);}
.fc2{color:rgb(191,77,40);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:42.000000px;}
.fs8{font-size:54.000000px;}
.fsa{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fsc{font-size:72.000000px;}
.fsb{font-size:84.000000px;}
.fs3{font-size:102.000000px;}
.fs9{font-size:108.000000px;}
.fs1{font-size:120.000000px;}
.fs0{font-size:144.000000px;}
.fs2{font-size:180.000000px;}
.fs4{font-size:240.000000px;}
.y0{bottom:0.000000px;}
.y39{bottom:54.000000px;}
.y22{bottom:56.725800px;}
.y4a{bottom:117.000000px;}
.y49{bottom:130.500000px;}
.y43{bottom:138.000000px;}
.y38{bottom:159.000000px;}
.y54{bottom:162.000000px;}
.y37{bottom:180.000000px;}
.y36{bottom:201.000000px;}
.y53{bottom:202.500000px;}
.y3{bottom:206.133900px;}
.y52{bottom:220.500000px;}
.y35{bottom:222.000000px;}
.y34{bottom:243.000000px;}
.y33{bottom:264.000000px;}
.y51{bottom:265.500000px;}
.y2{bottom:274.533900px;}
.y50{bottom:283.500000px;}
.y32{bottom:285.000000px;}
.y31{bottom:306.000000px;}
.y1{bottom:317.733900px;}
.y21{bottom:324.000000px;}
.y30{bottom:327.000000px;}
.y4f{bottom:346.500000px;}
.y20{bottom:348.000000px;}
.y4e{bottom:364.500000px;}
.y1f{bottom:369.000000px;}
.y2f{bottom:390.000000px;}
.y4d{bottom:406.500000px;}
.y2e{bottom:411.000000px;}
.y8{bottom:417.670950px;}
.y1e{bottom:432.000000px;}
.y42{bottom:448.500000px;}
.y2d{bottom:453.000000px;}
.y1d{bottom:474.000000px;}
.y7{bottom:480.670950px;}
.y2c{bottom:486.000000px;}
.y1c{bottom:495.000000px;}
.y46{bottom:498.000000px;}
.y1b{bottom:516.000000px;}
.y6{bottom:516.670950px;}
.y1a{bottom:537.000000px;}
.y19{bottom:558.000000px;}
.y45{bottom:579.000000px;}
.y2b{bottom:585.000000px;}
.y18{bottom:600.000000px;}
.y17{bottom:621.000000px;}
.y16{bottom:642.000000px;}
.y15{bottom:663.000000px;}
.y2a{bottom:684.000000px;}
.y14{bottom:705.000000px;}
.y4c{bottom:715.500000px;}
.y29{bottom:726.000000px;}
.y13{bottom:747.000000px;}
.y12{bottom:768.000000px;}
.y11{bottom:789.000000px;}
.y10{bottom:810.000000px;}
.y5{bottom:826.590750px;}
.y48{bottom:828.000000px;}
.yf{bottom:831.000000px;}
.y41{bottom:852.000000px;}
.ye{bottom:873.000000px;}
.y4{bottom:893.086800px;}
.yd{bottom:894.000000px;}
.yc{bottom:915.000000px;}
.y9{bottom:932.121150px;}
.y28{bottom:932.843250px;}
.yb{bottom:936.000000px;}
.y27{bottom:950.843250px;}
.ya{bottom:957.000000px;}
.y40{bottom:978.000000px;}
.y3f{bottom:999.000000px;}
.y26{bottom:1007.849250px;}
.y3e{bottom:1020.000000px;}
.y25{bottom:1037.846250px;}
.y3d{bottom:1041.000000px;}
.y4b{bottom:1062.000000px;}
.y24{bottom:1067.843250px;}
.y44{bottom:1069.895550px;}
.y47{bottom:1072.211400px;}
.y3c{bottom:1074.395550px;}
.y23{bottom:1132.276650px;}
.y3a{bottom:1132.426500px;}
.y3b{bottom:1135.555200px;}
.h12{height:39.313477px;}
.hf{height:41.291016px;}
.h8{height:42.885863px;}
.hd{height:43.681641px;}
.h11{height:48.278320px;}
.hc{height:50.960449px;}
.h6{height:53.789062px;}
.h7{height:54.169922px;}
.h9{height:58.523438px;}
.hb{height:59.586914px;}
.h10{height:64.371094px;}
.he{height:75.837891px;}
.h4{height:91.441406px;}
.ha{height:96.820312px;}
.h2{height:107.578125px;}
.h1{height:129.093750px;}
.h3{height:137.636719px;}
.h5{height:180.000000px;}
.h0{height:1200.000000px;}
.w0{width:900.000000px;}
.x0{left:0.000000px;}
.x5{left:112.500000px;}
.xb{left:114.550050px;}
.x2{left:121.550100px;}
.x4{left:129.038100px;}
.xd{left:132.000000px;}
.x1{left:146.484900px;}
.xa{left:157.500000px;}
.x3{left:168.000000px;}
.x8{left:186.964200px;}
.xc{left:269.152050px;}
.x6{left:330.549750px;}
.x7{left:671.718000px;}
.x9{left:770.815500px;}
@media print{
.v1{vertical-align:-9.691733pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:11.657067pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-72.960000pt;}
.ws2{word-spacing:-14.826667pt;}
.wsb{word-spacing:-8.330667pt;}
.ws7{word-spacing:-5.120000pt;}
.ws3{word-spacing:-2.933333pt;}
.ws2a{word-spacing:-2.826667pt;}
.ws2f{word-spacing:-2.666667pt;}
.ws4e{word-spacing:-2.613333pt;}
.ws1d{word-spacing:-2.186667pt;}
.wsc{word-spacing:-2.170667pt;}
.ws11{word-spacing:-2.133333pt;}
.ws26{word-spacing:-2.080000pt;}
.ws14{word-spacing:-1.920000pt;}
.ws38{word-spacing:-1.813333pt;}
.ws1a{word-spacing:-1.760000pt;}
.ws1b{word-spacing:-1.546667pt;}
.ws3d{word-spacing:-1.386667pt;}
.ws28{word-spacing:-1.013333pt;}
.ws13{word-spacing:-0.960000pt;}
.ws39{word-spacing:-0.853333pt;}
.ws45{word-spacing:-0.800000pt;}
.ws2c{word-spacing:-0.586667pt;}
.ws2b{word-spacing:-0.533333pt;}
.ws50{word-spacing:-0.480000pt;}
.ws4c{word-spacing:-0.373333pt;}
.ws3b{word-spacing:-0.320000pt;}
.ws4d{word-spacing:-0.266667pt;}
.ws1e{word-spacing:-0.106667pt;}
.wsa{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
.ws46{word-spacing:0.106667pt;}
.ws1c{word-spacing:0.320000pt;}
.ws44{word-spacing:0.373333pt;}
.ws8{word-spacing:0.480000pt;}
.ws4b{word-spacing:0.533333pt;}
.ws29{word-spacing:0.586667pt;}
.ws18{word-spacing:0.640000pt;}
.ws48{word-spacing:0.693333pt;}
.ws5{word-spacing:0.746667pt;}
.ws3c{word-spacing:0.800000pt;}
.ws3e{word-spacing:0.960000pt;}
.ws25{word-spacing:1.066667pt;}
.ws41{word-spacing:1.120000pt;}
.ws31{word-spacing:1.173333pt;}
.ws33{word-spacing:1.226667pt;}
.ws21{word-spacing:1.493333pt;}
.ws24{word-spacing:1.600000pt;}
.ws36{word-spacing:1.760000pt;}
.ws30{word-spacing:1.813333pt;}
.ws16{word-spacing:1.866667pt;}
.wsd{word-spacing:2.026667pt;}
.ws43{word-spacing:2.186667pt;}
.ws19{word-spacing:2.666667pt;}
.wse{word-spacing:2.720000pt;}
.ws4a{word-spacing:2.880000pt;}
.wsf{word-spacing:3.040000pt;}
.ws12{word-spacing:3.093333pt;}
.ws3f{word-spacing:3.306667pt;}
.ws37{word-spacing:3.786667pt;}
.ws4f{word-spacing:3.946667pt;}
.ws9{word-spacing:4.106667pt;}
.ws10{word-spacing:4.266667pt;}
.ws17{word-spacing:4.373333pt;}
.ws6{word-spacing:4.800000pt;}
.ws47{word-spacing:5.120000pt;}
.ws42{word-spacing:5.226667pt;}
.ws34{word-spacing:5.653333pt;}
.ws22{word-spacing:6.080000pt;}
.ws40{word-spacing:6.240000pt;}
.ws15{word-spacing:6.506667pt;}
.ws23{word-spacing:6.666667pt;}
.ws35{word-spacing:6.720000pt;}
.ws49{word-spacing:6.880000pt;}
.ws3a{word-spacing:7.093333pt;}
.ws2d{word-spacing:7.413333pt;}
.ws20{word-spacing:7.520000pt;}
.ws32{word-spacing:8.053333pt;}
.ws4{word-spacing:8.266667pt;}
.ws1f{word-spacing:8.746667pt;}
.ws27{word-spacing:12.026667pt;}
.ws2e{word-spacing:13.333333pt;}
._e{margin-left:-6.789333pt;}
._1{margin-left:-5.792000pt;}
._5{margin-left:-4.832000pt;}
._3{margin-left:-3.936000pt;}
._0{margin-left:-2.291200pt;}
._4{margin-left:-0.933333pt;}
._8{width:0.981333pt;}
._9{width:1.914667pt;}
._2{width:2.949333pt;}
._12{width:3.840000pt;}
._b{width:5.760000pt;}
._11{width:7.445333pt;}
._13{width:11.253333pt;}
._f{width:12.373333pt;}
._d{width:138.613333pt;}
._c{width:144.426667pt;}
._14{width:149.920000pt;}
._10{width:151.040000pt;}
._a{width:152.160000pt;}
._6{width:716.557333pt;}
._7{width:1411.619200pt;}
.fs6{font-size:37.333333pt;}
.fs8{font-size:48.000000pt;}
.fsa{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fsc{font-size:64.000000pt;}
.fsb{font-size:74.666667pt;}
.fs3{font-size:90.666667pt;}
.fs9{font-size:96.000000pt;}
.fs1{font-size:106.666667pt;}
.fs0{font-size:128.000000pt;}
.fs2{font-size:160.000000pt;}
.fs4{font-size:213.333333pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:48.000000pt;}
.y22{bottom:50.422933pt;}
.y4a{bottom:104.000000pt;}
.y49{bottom:116.000000pt;}
.y43{bottom:122.666667pt;}
.y38{bottom:141.333333pt;}
.y54{bottom:144.000000pt;}
.y37{bottom:160.000000pt;}
.y36{bottom:178.666667pt;}
.y53{bottom:180.000000pt;}
.y3{bottom:183.230133pt;}
.y52{bottom:196.000000pt;}
.y35{bottom:197.333333pt;}
.y34{bottom:216.000000pt;}
.y33{bottom:234.666667pt;}
.y51{bottom:236.000000pt;}
.y2{bottom:244.030133pt;}
.y50{bottom:252.000000pt;}
.y32{bottom:253.333333pt;}
.y31{bottom:272.000000pt;}
.y1{bottom:282.430133pt;}
.y21{bottom:288.000000pt;}
.y30{bottom:290.666667pt;}
.y4f{bottom:308.000000pt;}
.y20{bottom:309.333333pt;}
.y4e{bottom:324.000000pt;}
.y1f{bottom:328.000000pt;}
.y2f{bottom:346.666667pt;}
.y4d{bottom:361.333333pt;}
.y2e{bottom:365.333333pt;}
.y8{bottom:371.263067pt;}
.y1e{bottom:384.000000pt;}
.y42{bottom:398.666667pt;}
.y2d{bottom:402.666667pt;}
.y1d{bottom:421.333333pt;}
.y7{bottom:427.263067pt;}
.y2c{bottom:432.000000pt;}
.y1c{bottom:440.000000pt;}
.y46{bottom:442.666667pt;}
.y1b{bottom:458.666667pt;}
.y6{bottom:459.263067pt;}
.y1a{bottom:477.333333pt;}
.y19{bottom:496.000000pt;}
.y45{bottom:514.666667pt;}
.y2b{bottom:520.000000pt;}
.y18{bottom:533.333333pt;}
.y17{bottom:552.000000pt;}
.y16{bottom:570.666667pt;}
.y15{bottom:589.333333pt;}
.y2a{bottom:608.000000pt;}
.y14{bottom:626.666667pt;}
.y4c{bottom:636.000000pt;}
.y29{bottom:645.333333pt;}
.y13{bottom:664.000000pt;}
.y12{bottom:682.666667pt;}
.y11{bottom:701.333333pt;}
.y10{bottom:720.000000pt;}
.y5{bottom:734.747333pt;}
.y48{bottom:736.000000pt;}
.yf{bottom:738.666667pt;}
.y41{bottom:757.333333pt;}
.ye{bottom:776.000000pt;}
.y4{bottom:793.854933pt;}
.yd{bottom:794.666667pt;}
.yc{bottom:813.333333pt;}
.y9{bottom:828.552133pt;}
.y28{bottom:829.194000pt;}
.yb{bottom:832.000000pt;}
.y27{bottom:845.194000pt;}
.ya{bottom:850.666667pt;}
.y40{bottom:869.333333pt;}
.y3f{bottom:888.000000pt;}
.y26{bottom:895.866000pt;}
.y3e{bottom:906.666667pt;}
.y25{bottom:922.530000pt;}
.y3d{bottom:925.333333pt;}
.y4b{bottom:944.000000pt;}
.y24{bottom:949.194000pt;}
.y44{bottom:951.018267pt;}
.y47{bottom:953.076800pt;}
.y3c{bottom:955.018267pt;}
.y23{bottom:1006.468133pt;}
.y3a{bottom:1006.601333pt;}
.y3b{bottom:1009.382400pt;}
.h12{height:34.945312pt;}
.hf{height:36.703125pt;}
.h8{height:38.120767pt;}
.hd{height:38.828125pt;}
.h11{height:42.914062pt;}
.hc{height:45.298177pt;}
.h6{height:47.812500pt;}
.h7{height:48.151042pt;}
.h9{height:52.020833pt;}
.hb{height:52.966146pt;}
.h10{height:57.218750pt;}
.he{height:67.411458pt;}
.h4{height:81.281250pt;}
.ha{height:86.062500pt;}
.h2{height:95.625000pt;}
.h1{height:114.750000pt;}
.h3{height:122.343750pt;}
.h5{height:160.000000pt;}
.h0{height:1066.666667pt;}
.w0{width:800.000000pt;}
.x0{left:0.000000pt;}
.x5{left:100.000000pt;}
.xb{left:101.822267pt;}
.x2{left:108.044533pt;}
.x4{left:114.700533pt;}
.xd{left:117.333333pt;}
.x1{left:130.208800pt;}
.xa{left:140.000000pt;}
.x3{left:149.333333pt;}
.x8{left:166.190400pt;}
.xc{left:239.246267pt;}
.x6{left:293.822000pt;}
.x7{left:597.082667pt;}
.x9{left:685.169333pt;}
}




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