
    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_1263e196dd8d53390f44dca6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7abbac5f9bc6e7c94fa9eab9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.978000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f06dc904f82ffd894203762e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.859000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5e01175909c8ce956b0178c6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.978000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_87d46d41fc414e4e8d92e355.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_80ce994da0590f862ee6fb9d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d592d0c3ce6909b231abc1b9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.984000;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);}
.v2{vertical-align:-90.000000px;}
.v3{vertical-align:-57.600000px;}
.v5{vertical-align:-54.000000px;}
.v6{vertical-align:-5.880000px;}
.v7{vertical-align:-2.460000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:3.000000px;}
.v9{vertical-align:4.200000px;}
.v8{vertical-align:9.660000px;}
.vc{vertical-align:22.320000px;}
.va{vertical-align:36.000000px;}
.v4{vertical-align:54.000000px;}
.v1{vertical-align:90.000000px;}
.ls18{letter-spacing:-20.160000px;}
.ls1a{letter-spacing:-0.798000px;}
.ls1c{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.612000px;}
.ls17{letter-spacing:-0.180000px;}
.ls1e{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.079800px;}
.ls19{letter-spacing:-0.072000px;}
.lsf{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.054720px;}
.ls5{letter-spacing:0.106800px;}
.ls13{letter-spacing:0.109200px;}
.ls16{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.280200px;}
.ls0{letter-spacing:0.311040px;}
.ls1d{letter-spacing:0.325200px;}
.ls1b{letter-spacing:0.328200px;}
.ls15{letter-spacing:0.360000px;}
.lse{letter-spacing:50.580000px;}
.ls2{letter-spacing:52.560000px;}
.ls4{letter-spacing:53.256960px;}
.ls3{letter-spacing:53.303040px;}
.lsc{letter-spacing:59.760000px;}
.lsb{letter-spacing:60.480000px;}
.lsa{letter-spacing:61.200000px;}
.ls1{letter-spacing:80.951040px;}
.ls6{letter-spacing:88.920000px;}
.lsd{letter-spacing:104.940000px;}
.ls8{letter-spacing:133.758432px;}
.ls7{letter-spacing:133.866000px;}
.ls9{letter-spacing:133.890000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-83.466720px;}
.ws4{word-spacing:-72.567360px;}
.ws1{word-spacing:-55.644480px;}
.ws57{word-spacing:-53.442720px;}
.ws23{word-spacing:-50.400000px;}
.ws21{word-spacing:-50.080032px;}
.ws27{word-spacing:-50.040000px;}
.ws37{word-spacing:-50.008032px;}
.ws39{word-spacing:-50.000232px;}
.ws43{word-spacing:-49.860000px;}
.ws47{word-spacing:-49.320000px;}
.ws58{word-spacing:-40.176000px;}
.ws5a{word-spacing:-39.888000px;}
.ws2{word-spacing:-33.426720px;}
.ws1b{word-spacing:-31.625280px;}
.ws34{word-spacing:-2.568096px;}
.wsf{word-spacing:-2.478240px;}
.ws51{word-spacing:-1.980000px;}
.ws13{word-spacing:-1.810800px;}
.ws55{word-spacing:-1.800000px;}
.ws19{word-spacing:-1.774080px;}
.ws42{word-spacing:-1.620000px;}
.ws31{word-spacing:-1.440000px;}
.ws32{word-spacing:-1.260000px;}
.ws40{word-spacing:-1.148160px;}
.ws56{word-spacing:-1.080000px;}
.ws44{word-spacing:-1.026720px;}
.ws10{word-spacing:-0.960720px;}
.ws1a{word-spacing:-0.960480px;}
.ws41{word-spacing:-0.900000px;}
.ws12{word-spacing:-0.880560px;}
.ws11{word-spacing:-0.560160px;}
.ws36{word-spacing:-0.487872px;}
.ws3f{word-spacing:-0.360000px;}
.ws35{word-spacing:-0.344160px;}
.ws50{word-spacing:-0.180000px;}
.ws5c{word-spacing:0.000000px;}
.ws4e{word-spacing:0.180000px;}
.wsb{word-spacing:0.986400px;}
.wse{word-spacing:1.199520px;}
.ws9{word-spacing:1.537920px;}
.wsd{word-spacing:1.655280px;}
.wsc{word-spacing:1.926000px;}
.ws15{word-spacing:2.839320px;}
.ws18{word-spacing:3.119040px;}
.wsa{word-spacing:3.355920px;}
.ws16{word-spacing:3.546000px;}
.ws14{word-spacing:3.720960px;}
.ws17{word-spacing:5.515920px;}
.ws4b{word-spacing:9.408000px;}
.ws4a{word-spacing:10.260000px;}
.ws48{word-spacing:10.440000px;}
.ws45{word-spacing:10.620000px;}
.ws4c{word-spacing:11.160000px;}
.ws46{word-spacing:11.340000px;}
.ws49{word-spacing:12.420000px;}
.ws3{word-spacing:13.364640px;}
.ws5{word-spacing:13.489920px;}
.ws1c{word-spacing:15.743952px;}
.ws1e{word-spacing:15.924432px;}
.ws20{word-spacing:15.944544px;}
.ws1d{word-spacing:16.247304px;}
.ws1f{word-spacing:16.975368px;}
.ws54{word-spacing:24.480000px;}
.ws52{word-spacing:25.560000px;}
.ws53{word-spacing:25.920000px;}
.ws4d{word-spacing:27.540000px;}
.ws26{word-spacing:33.300000px;}
.ws22{word-spacing:33.480000px;}
.ws25{word-spacing:33.768000px;}
.ws24{word-spacing:34.380000px;}
.ws2a{word-spacing:37.260000px;}
.ws30{word-spacing:37.620000px;}
.ws2e{word-spacing:37.800000px;}
.ws2f{word-spacing:37.980000px;}
.ws2c{word-spacing:38.100000px;}
.ws28{word-spacing:38.160000px;}
.ws2b{word-spacing:38.340000px;}
.ws3d{word-spacing:49.263336px;}
.ws3c{word-spacing:49.763520px;}
.ws38{word-spacing:50.287968px;}
.ws3e{word-spacing:50.377680px;}
.ws3a{word-spacing:51.039936px;}
.ws3b{word-spacing:52.085952px;}
.ws29{word-spacing:52.200000px;}
.ws8{word-spacing:54.106560px;}
.ws7{word-spacing:54.486000px;}
.ws6{word-spacing:55.134000px;}
.ws4f{word-spacing:59.220000px;}
.ws2d{word-spacing:77.400000px;}
.ws33{word-spacing:85.320000px;}
.ws59{word-spacing:3245.389440px;}
.ws5b{word-spacing:3650.245440px;}
._7{margin-left:-21.840768px;}
._1a{margin-left:-20.160000px;}
._13{margin-left:-18.328176px;}
._6{margin-left:-16.601280px;}
._9{margin-left:-13.737600px;}
._f{margin-left:-12.625200px;}
._11{margin-left:-10.758240px;}
._3{margin-left:-8.340000px;}
._1{margin-left:-6.912000px;}
._0{margin-left:-5.104080px;}
._4{margin-left:-3.177600px;}
._2{margin-left:-1.296000px;}
._5{width:1.386720px;}
._12{width:2.478240px;}
._2b{width:21.187200px;}
._c{width:32.013360px;}
._b{width:33.013440px;}
._10{width:34.464960px;}
._a{width:36.099120px;}
._e{width:37.596960px;}
._d{width:39.261600px;}
._8{width:47.959920px;}
._19{width:49.680000px;}
._26{width:50.685600px;}
._1d{width:52.061280px;}
._27{width:61.320000px;}
._14{width:67.319712px;}
._28{width:75.331200px;}
._29{width:76.476000px;}
._15{width:84.780000px;}
._16{width:87.156000px;}
._18{width:89.220000px;}
._1c{width:100.877952px;}
._17{width:103.955280px;}
._2a{width:107.875200px;}
._1b{width:137.133600px;}
._25{width:156.060000px;}
._24{width:571.395600px;}
._21{width:627.894480px;}
._23{width:646.734480px;}
._20{width:1455.773040px;}
._22{width:1465.673040px;}
._1f{width:1478.214480px;}
._1e{width:1503.233040px;}
._2c{width:2384.753520px;}
._2d{width:2975.998560px;}
.fc3{color:rgb(127,127,127);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(23,156,125);}
.fsd{font-size:84.240000px;}
.fs8{font-size:113.760000px;}
.fs7{font-size:120.240000px;}
.fs4{font-size:128.160000px;}
.fse{font-size:144.000000px;}
.fsb{font-size:162.000000px;}
.fsc{font-size:162.144000px;}
.fsf{font-size:167.760000px;}
.fsa{font-size:180.000000px;}
.fs9{font-size:180.144000px;}
.fs5{font-size:192.240000px;}
.fs6{font-size:192.384000px;}
.fs3{font-size:200.160000px;}
.fs10{font-size:239.760000px;}
.fs0{font-size:300.240000px;}
.fs1{font-size:432.000000px;}
.fs2{font-size:576.000000px;}
.y0{bottom:0.000000px;}
.y19{bottom:63.828000px;}
.y11{bottom:66.852000px;}
.y18{bottom:98.028000px;}
.y10{bottom:102.852000px;}
.y17{bottom:150.225000px;}
.yf{bottom:174.855000px;}
.y16{bottom:184.425000px;}
.y46{bottom:185.295000px;}
.y4c{bottom:185.325000px;}
.y3e{bottom:185.370000px;}
.ye{bottom:210.885000px;}
.y15{bottom:218.625000px;}
.yd{bottom:246.885000px;}
.y14{bottom:252.825000px;}
.yc{bottom:282.885000px;}
.y13{bottom:287.025000px;}
.yb{bottom:318.885000px;}
.y12{bottom:321.225000px;}
.y3b{bottom:371.595000px;}
.y43{bottom:371.775000px;}
.y63{bottom:398.010000px;}
.y66{bottom:401.190000px;}
.y62{bottom:423.210000px;}
.y3a{bottom:433.695000px;}
.y41{bottom:433.875000px;}
.y61{bottom:448.410000px;}
.y65{bottom:452.130000px;}
.y60{bottom:473.610000px;}
.y5f{bottom:498.810000px;}
.y5e{bottom:541.950000px;}
.y6d{bottom:617.685000px;}
.y71{bottom:646.995000px;}
.y6c{bottom:668.625000px;}
.y6b{bottom:1042.920000px;}
.y70{bottom:1045.440000px;}
.y64{bottom:1136.625000px;}
.y6e{bottom:1197.870000px;}
.y56{bottom:1221.270000px;}
.y6f{bottom:1272.675000px;}
.y55{bottom:1284.270000px;}
.y68{bottom:1304.355000px;}
.y54{bottom:1347.270000px;}
.y67{bottom:1355.295000px;}
.y5d{bottom:1409.790000px;}
.y53{bottom:1410.270000px;}
.y5c{bottom:1472.790000px;}
.y52{bottom:1473.270000px;}
.y5b{bottom:1535.790000px;}
.y51{bottom:1536.270000px;}
.y50{bottom:1599.270000px;}
.y4b{bottom:1614.960000px;}
.y5a{bottom:1661.790000px;}
.y4f{bottom:1671.045000px;}
.y49{bottom:1704.060000px;}
.y40{bottom:1705.860000px;}
.y4e{bottom:1769.250000px;}
.y59{bottom:1792.290000px;}
.y45{bottom:1793.160000px;}
.y4d{bottom:1831.350000px;}
.y39{bottom:1836.180000px;}
.y58{bottom:1873.290000px;}
.y4a{bottom:1889.385000px;}
.y3d{bottom:1923.300000px;}
.y48{bottom:1947.420000px;}
.y57{bottom:1957.065000px;}
.y47{bottom:2009.520000px;}
.y6a{bottom:2042.310000px;}
.y44{bottom:2077.635000px;}
.y3f{bottom:2108.670000px;}
.y2f{bottom:2121.735000px;}
.y32{bottom:2123.385000px;}
.y31{bottom:2125.335000px;}
.y42{bottom:2139.735000px;}
.y3c{bottom:2238.840000px;}
.y38{bottom:2333.010000px;}
.y37{bottom:2420.025000px;}
.y2d{bottom:2421.720000px;}
.y30{bottom:2423.550000px;}
.y2e{bottom:2424.750000px;}
.y36{bottom:2546.025000px;}
.y35{bottom:2672.025000px;}
.y69{bottom:2717.490000px;}
.y26{bottom:2778.945000px;}
.y28{bottom:2780.535000px;}
.y27{bottom:2780.790000px;}
.y29{bottom:2782.440000px;}
.y2a{bottom:2787.225000px;}
.y34{bottom:2798.025000px;}
.y33{bottom:2924.070000px;}
.y21{bottom:3075.870000px;}
.y2b{bottom:3078.360000px;}
.y2c{bottom:3080.775000px;}
.y20{bottom:3156.870000px;}
.y1f{bottom:3237.870000px;}
.y1e{bottom:3318.870000px;}
.y25{bottom:3363.480000px;}
.y1d{bottom:3399.870000px;}
.y24{bottom:3426.510000px;}
.y1c{bottom:3480.870000px;}
.y23{bottom:3489.510000px;}
.y22{bottom:3552.510000px;}
.y1b{bottom:3561.915000px;}
.y1a{bottom:3646.545000px;}
.y1{bottom:3649.890000px;}
.ya{bottom:4010.115000px;}
.y9{bottom:4067.715000px;}
.y8{bottom:4134.345000px;}
.y7{bottom:4200.945000px;}
.y6{bottom:4270.785000px;}
.y5{bottom:4399.845000px;}
.y4{bottom:4593.165000px;}
.y3{bottom:4746.345000px;}
.y2{bottom:4908.345000px;}
.hd{height:64.190880px;}
.he{height:64.310880px;}
.h10{height:68.390880px;}
.hf{height:68.810880px;}
.h9{height:85.320000px;}
.h19{height:86.510880px;}
.h8{height:86.685120px;}
.h7{height:91.622880px;}
.h6{height:97.657920px;}
.h15{height:109.728000px;}
.h17{height:130.833120px;}
.hb{height:137.160000px;}
.ha{height:137.269728px;}
.hc{height:145.622880px;}
.h14{height:146.486880px;}
.h16{height:163.833120px;}
.h18{height:182.697120px;}
.h2{height:228.782880px;}
.h5{height:242.521920px;}
.h3{height:329.184000px;}
.h12{height:406.080000px;}
.h4{height:432.000000px;}
.h11{height:840.780000px;}
.h13{height:841.140000px;}
.h0{height:5081.040000px;}
.h1{height:5081.250000px;}
.w3{width:454.500000px;}
.w4{width:1196.100000px;}
.w2{width:3601.439946px;}
.w0{width:3601.440000px;}
.w1{width:3601.500000px;}
.x0{left:0.000000px;}
.x14{left:8.208000px;}
.x18{left:9.615000px;}
.x12{left:78.947946px;}
.x20{left:84.419946px;}
.x21{left:89.603946px;}
.x1{left:90.899946px;}
.x2b{left:100.403946px;}
.x29{left:119.879946px;}
.x22{left:153.329946px;}
.x16{left:179.789946px;}
.x2e{left:369.359946px;}
.x2{left:425.009946px;}
.x17{left:533.160000px;}
.x1f{left:602.534946px;}
.x19{left:617.834946px;}
.x1e{left:619.994946px;}
.x1d{left:656.174946px;}
.x15{left:719.894946px;}
.x1c{left:747.434946px;}
.x2f{left:751.469946px;}
.x1b{left:766.154946px;}
.x1a{left:851.685000px;}
.x13{left:905.294946px;}
.x23{left:1863.179946px;}
.x24{left:1866.599946px;}
.x27{left:1868.684946px;}
.x4{left:1869.734946px;}
.x2c{left:1871.714946px;}
.x2d{left:1873.229946px;}
.x5{left:1875.704946px;}
.x28{left:1877.399946px;}
.x26{left:1879.379946px;}
.xe{left:1891.829946px;}
.xb{left:1896.404946px;}
.x25{left:1934.639946px;}
.x6{left:1939.424946px;}
.xc{left:2317.649946px;}
.xa{left:2325.599946px;}
.x11{left:2735.534946px;}
.xd{left:2738.549946px;}
.x9{left:2748.344946px;}
.x3{left:2790.749946px;}
.x2a{left:2954.369946px;}
.x8{left:3170.444946px;}
.x10{left:3171.629946px;}
.xf{left:3176.849946px;}
.x7{left:3402.719946px;}
@media print{
.v2{vertical-align:-80.000000pt;}
.v3{vertical-align:-51.200000pt;}
.v5{vertical-align:-48.000000pt;}
.v6{vertical-align:-5.226667pt;}
.v7{vertical-align:-2.186667pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:2.666667pt;}
.v9{vertical-align:3.733333pt;}
.v8{vertical-align:8.586667pt;}
.vc{vertical-align:19.840000pt;}
.va{vertical-align:32.000000pt;}
.v4{vertical-align:48.000000pt;}
.v1{vertical-align:80.000000pt;}
.ls18{letter-spacing:-17.920000pt;}
.ls1a{letter-spacing:-0.709333pt;}
.ls1c{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.544000pt;}
.ls17{letter-spacing:-0.160000pt;}
.ls1e{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.070933pt;}
.ls19{letter-spacing:-0.064000pt;}
.lsf{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.048640pt;}
.ls5{letter-spacing:0.094933pt;}
.ls13{letter-spacing:0.097067pt;}
.ls16{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.249067pt;}
.ls0{letter-spacing:0.276480pt;}
.ls1d{letter-spacing:0.289067pt;}
.ls1b{letter-spacing:0.291733pt;}
.ls15{letter-spacing:0.320000pt;}
.lse{letter-spacing:44.960000pt;}
.ls2{letter-spacing:46.720000pt;}
.ls4{letter-spacing:47.339520pt;}
.ls3{letter-spacing:47.380480pt;}
.lsc{letter-spacing:53.120000pt;}
.lsb{letter-spacing:53.760000pt;}
.lsa{letter-spacing:54.400000pt;}
.ls1{letter-spacing:71.956480pt;}
.ls6{letter-spacing:79.040000pt;}
.lsd{letter-spacing:93.280000pt;}
.ls8{letter-spacing:118.896384pt;}
.ls7{letter-spacing:118.992000pt;}
.ls9{letter-spacing:119.013333pt;}
.ws0{word-spacing:-74.192640pt;}
.ws4{word-spacing:-64.504320pt;}
.ws1{word-spacing:-49.461760pt;}
.ws57{word-spacing:-47.504640pt;}
.ws23{word-spacing:-44.800000pt;}
.ws21{word-spacing:-44.515584pt;}
.ws27{word-spacing:-44.480000pt;}
.ws37{word-spacing:-44.451584pt;}
.ws39{word-spacing:-44.444651pt;}
.ws43{word-spacing:-44.320000pt;}
.ws47{word-spacing:-43.840000pt;}
.ws58{word-spacing:-35.712000pt;}
.ws5a{word-spacing:-35.456000pt;}
.ws2{word-spacing:-29.712640pt;}
.ws1b{word-spacing:-28.111360pt;}
.ws34{word-spacing:-2.282752pt;}
.wsf{word-spacing:-2.202880pt;}
.ws51{word-spacing:-1.760000pt;}
.ws13{word-spacing:-1.609600pt;}
.ws55{word-spacing:-1.600000pt;}
.ws19{word-spacing:-1.576960pt;}
.ws42{word-spacing:-1.440000pt;}
.ws31{word-spacing:-1.280000pt;}
.ws32{word-spacing:-1.120000pt;}
.ws40{word-spacing:-1.020587pt;}
.ws56{word-spacing:-0.960000pt;}
.ws44{word-spacing:-0.912640pt;}
.ws10{word-spacing:-0.853973pt;}
.ws1a{word-spacing:-0.853760pt;}
.ws41{word-spacing:-0.800000pt;}
.ws12{word-spacing:-0.782720pt;}
.ws11{word-spacing:-0.497920pt;}
.ws36{word-spacing:-0.433664pt;}
.ws3f{word-spacing:-0.320000pt;}
.ws35{word-spacing:-0.305920pt;}
.ws50{word-spacing:-0.160000pt;}
.ws5c{word-spacing:0.000000pt;}
.ws4e{word-spacing:0.160000pt;}
.wsb{word-spacing:0.876800pt;}
.wse{word-spacing:1.066240pt;}
.ws9{word-spacing:1.367040pt;}
.wsd{word-spacing:1.471360pt;}
.wsc{word-spacing:1.712000pt;}
.ws15{word-spacing:2.523840pt;}
.ws18{word-spacing:2.772480pt;}
.wsa{word-spacing:2.983040pt;}
.ws16{word-spacing:3.152000pt;}
.ws14{word-spacing:3.307520pt;}
.ws17{word-spacing:4.903040pt;}
.ws4b{word-spacing:8.362667pt;}
.ws4a{word-spacing:9.120000pt;}
.ws48{word-spacing:9.280000pt;}
.ws45{word-spacing:9.440000pt;}
.ws4c{word-spacing:9.920000pt;}
.ws46{word-spacing:10.080000pt;}
.ws49{word-spacing:11.040000pt;}
.ws3{word-spacing:11.879680pt;}
.ws5{word-spacing:11.991040pt;}
.ws1c{word-spacing:13.994624pt;}
.ws1e{word-spacing:14.155051pt;}
.ws20{word-spacing:14.172928pt;}
.ws1d{word-spacing:14.442048pt;}
.ws1f{word-spacing:15.089216pt;}
.ws54{word-spacing:21.760000pt;}
.ws52{word-spacing:22.720000pt;}
.ws53{word-spacing:23.040000pt;}
.ws4d{word-spacing:24.480000pt;}
.ws26{word-spacing:29.600000pt;}
.ws22{word-spacing:29.760000pt;}
.ws25{word-spacing:30.016000pt;}
.ws24{word-spacing:30.560000pt;}
.ws2a{word-spacing:33.120000pt;}
.ws30{word-spacing:33.440000pt;}
.ws2e{word-spacing:33.600000pt;}
.ws2f{word-spacing:33.760000pt;}
.ws2c{word-spacing:33.866667pt;}
.ws28{word-spacing:33.920000pt;}
.ws2b{word-spacing:34.080000pt;}
.ws3d{word-spacing:43.789632pt;}
.ws3c{word-spacing:44.234240pt;}
.ws38{word-spacing:44.700416pt;}
.ws3e{word-spacing:44.780160pt;}
.ws3a{word-spacing:45.368832pt;}
.ws3b{word-spacing:46.298624pt;}
.ws29{word-spacing:46.400000pt;}
.ws8{word-spacing:48.094720pt;}
.ws7{word-spacing:48.432000pt;}
.ws6{word-spacing:49.008000pt;}
.ws4f{word-spacing:52.640000pt;}
.ws2d{word-spacing:68.800000pt;}
.ws33{word-spacing:75.840000pt;}
.ws59{word-spacing:2884.790613pt;}
.ws5b{word-spacing:3244.662613pt;}
._7{margin-left:-19.414016pt;}
._1a{margin-left:-17.920000pt;}
._13{margin-left:-16.291712pt;}
._6{margin-left:-14.756693pt;}
._9{margin-left:-12.211200pt;}
._f{margin-left:-11.222400pt;}
._11{margin-left:-9.562880pt;}
._3{margin-left:-7.413333pt;}
._1{margin-left:-6.144000pt;}
._0{margin-left:-4.536960pt;}
._4{margin-left:-2.824533pt;}
._2{margin-left:-1.152000pt;}
._5{width:1.232640pt;}
._12{width:2.202880pt;}
._2b{width:18.833067pt;}
._c{width:28.456320pt;}
._b{width:29.345280pt;}
._10{width:30.635520pt;}
._a{width:32.088107pt;}
._e{width:33.419520pt;}
._d{width:34.899200pt;}
._8{width:42.631040pt;}
._19{width:44.160000pt;}
._26{width:45.053867pt;}
._1d{width:46.276693pt;}
._27{width:54.506667pt;}
._14{width:59.839744pt;}
._28{width:66.961067pt;}
._29{width:67.978667pt;}
._15{width:75.360000pt;}
._16{width:77.472000pt;}
._18{width:79.306667pt;}
._1c{width:89.669291pt;}
._17{width:92.404693pt;}
._2a{width:95.889067pt;}
._1b{width:121.896533pt;}
._25{width:138.720000pt;}
._24{width:507.907200pt;}
._21{width:558.128427pt;}
._23{width:574.875093pt;}
._20{width:1294.020480pt;}
._22{width:1302.820480pt;}
._1f{width:1313.968427pt;}
._1e{width:1336.207147pt;}
._2c{width:2119.780907pt;}
._2d{width:2645.332053pt;}
.fsd{font-size:74.880000pt;}
.fs8{font-size:101.120000pt;}
.fs7{font-size:106.880000pt;}
.fs4{font-size:113.920000pt;}
.fse{font-size:128.000000pt;}
.fsb{font-size:144.000000pt;}
.fsc{font-size:144.128000pt;}
.fsf{font-size:149.120000pt;}
.fsa{font-size:160.000000pt;}
.fs9{font-size:160.128000pt;}
.fs5{font-size:170.880000pt;}
.fs6{font-size:171.008000pt;}
.fs3{font-size:177.920000pt;}
.fs10{font-size:213.120000pt;}
.fs0{font-size:266.880000pt;}
.fs1{font-size:384.000000pt;}
.fs2{font-size:512.000000pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:56.736000pt;}
.y11{bottom:59.424000pt;}
.y18{bottom:87.136000pt;}
.y10{bottom:91.424000pt;}
.y17{bottom:133.533333pt;}
.yf{bottom:155.426667pt;}
.y16{bottom:163.933333pt;}
.y46{bottom:164.706667pt;}
.y4c{bottom:164.733333pt;}
.y3e{bottom:164.773333pt;}
.ye{bottom:187.453333pt;}
.y15{bottom:194.333333pt;}
.yd{bottom:219.453333pt;}
.y14{bottom:224.733333pt;}
.yc{bottom:251.453333pt;}
.y13{bottom:255.133333pt;}
.yb{bottom:283.453333pt;}
.y12{bottom:285.533333pt;}
.y3b{bottom:330.306667pt;}
.y43{bottom:330.466667pt;}
.y63{bottom:353.786667pt;}
.y66{bottom:356.613333pt;}
.y62{bottom:376.186667pt;}
.y3a{bottom:385.506667pt;}
.y41{bottom:385.666667pt;}
.y61{bottom:398.586667pt;}
.y65{bottom:401.893333pt;}
.y60{bottom:420.986667pt;}
.y5f{bottom:443.386667pt;}
.y5e{bottom:481.733333pt;}
.y6d{bottom:549.053333pt;}
.y71{bottom:575.106667pt;}
.y6c{bottom:594.333333pt;}
.y6b{bottom:927.040000pt;}
.y70{bottom:929.280000pt;}
.y64{bottom:1010.333333pt;}
.y6e{bottom:1064.773333pt;}
.y56{bottom:1085.573333pt;}
.y6f{bottom:1131.266667pt;}
.y55{bottom:1141.573333pt;}
.y68{bottom:1159.426667pt;}
.y54{bottom:1197.573333pt;}
.y67{bottom:1204.706667pt;}
.y5d{bottom:1253.146667pt;}
.y53{bottom:1253.573333pt;}
.y5c{bottom:1309.146667pt;}
.y52{bottom:1309.573333pt;}
.y5b{bottom:1365.146667pt;}
.y51{bottom:1365.573333pt;}
.y50{bottom:1421.573333pt;}
.y4b{bottom:1435.520000pt;}
.y5a{bottom:1477.146667pt;}
.y4f{bottom:1485.373333pt;}
.y49{bottom:1514.720000pt;}
.y40{bottom:1516.320000pt;}
.y4e{bottom:1572.666667pt;}
.y59{bottom:1593.146667pt;}
.y45{bottom:1593.920000pt;}
.y4d{bottom:1627.866667pt;}
.y39{bottom:1632.160000pt;}
.y58{bottom:1665.146667pt;}
.y4a{bottom:1679.453333pt;}
.y3d{bottom:1709.600000pt;}
.y48{bottom:1731.040000pt;}
.y57{bottom:1739.613333pt;}
.y47{bottom:1786.240000pt;}
.y6a{bottom:1815.386667pt;}
.y44{bottom:1846.786667pt;}
.y3f{bottom:1874.373333pt;}
.y2f{bottom:1885.986667pt;}
.y32{bottom:1887.453333pt;}
.y31{bottom:1889.186667pt;}
.y42{bottom:1901.986667pt;}
.y3c{bottom:1990.080000pt;}
.y38{bottom:2073.786667pt;}
.y37{bottom:2151.133333pt;}
.y2d{bottom:2152.640000pt;}
.y30{bottom:2154.266667pt;}
.y2e{bottom:2155.333333pt;}
.y36{bottom:2263.133333pt;}
.y35{bottom:2375.133333pt;}
.y69{bottom:2415.546667pt;}
.y26{bottom:2470.173333pt;}
.y28{bottom:2471.586667pt;}
.y27{bottom:2471.813333pt;}
.y29{bottom:2473.280000pt;}
.y2a{bottom:2477.533333pt;}
.y34{bottom:2487.133333pt;}
.y33{bottom:2599.173333pt;}
.y21{bottom:2734.106667pt;}
.y2b{bottom:2736.320000pt;}
.y2c{bottom:2738.466667pt;}
.y20{bottom:2806.106667pt;}
.y1f{bottom:2878.106667pt;}
.y1e{bottom:2950.106667pt;}
.y25{bottom:2989.760000pt;}
.y1d{bottom:3022.106667pt;}
.y24{bottom:3045.786667pt;}
.y1c{bottom:3094.106667pt;}
.y23{bottom:3101.786667pt;}
.y22{bottom:3157.786667pt;}
.y1b{bottom:3166.146667pt;}
.y1a{bottom:3241.373333pt;}
.y1{bottom:3244.346667pt;}
.ya{bottom:3564.546667pt;}
.y9{bottom:3615.746667pt;}
.y8{bottom:3674.973333pt;}
.y7{bottom:3734.173333pt;}
.y6{bottom:3796.253333pt;}
.y5{bottom:3910.973333pt;}
.y4{bottom:4082.813333pt;}
.y3{bottom:4218.973333pt;}
.y2{bottom:4362.973333pt;}
.hd{height:57.058560pt;}
.he{height:57.165227pt;}
.h10{height:60.791893pt;}
.hf{height:61.165227pt;}
.h9{height:75.840000pt;}
.h19{height:76.898560pt;}
.h8{height:77.053440pt;}
.h7{height:81.442560pt;}
.h6{height:86.807040pt;}
.h15{height:97.536000pt;}
.h17{height:116.296107pt;}
.hb{height:121.920000pt;}
.ha{height:122.017536pt;}
.hc{height:129.442560pt;}
.h14{height:130.210560pt;}
.h16{height:145.629440pt;}
.h18{height:162.397440pt;}
.h2{height:203.362560pt;}
.h5{height:215.575040pt;}
.h3{height:292.608000pt;}
.h12{height:360.960000pt;}
.h4{height:384.000000pt;}
.h11{height:747.360000pt;}
.h13{height:747.680000pt;}
.h0{height:4516.480000pt;}
.h1{height:4516.666667pt;}
.w3{width:404.000000pt;}
.w4{width:1063.200000pt;}
.w2{width:3201.279952pt;}
.w0{width:3201.280000pt;}
.w1{width:3201.333333pt;}
.x0{left:0.000000pt;}
.x14{left:7.296000pt;}
.x18{left:8.546667pt;}
.x12{left:70.175952pt;}
.x20{left:75.039952pt;}
.x21{left:79.647952pt;}
.x1{left:80.799952pt;}
.x2b{left:89.247952pt;}
.x29{left:106.559952pt;}
.x22{left:136.293286pt;}
.x16{left:159.813286pt;}
.x2e{left:328.319952pt;}
.x2{left:377.786619pt;}
.x17{left:473.920000pt;}
.x1f{left:535.586619pt;}
.x19{left:549.186619pt;}
.x1e{left:551.106619pt;}
.x1d{left:583.266619pt;}
.x15{left:639.906619pt;}
.x1c{left:664.386619pt;}
.x2f{left:667.973286pt;}
.x1b{left:681.026619pt;}
.x1a{left:757.053333pt;}
.x13{left:804.706619pt;}
.x23{left:1656.159952pt;}
.x24{left:1659.199952pt;}
.x27{left:1661.053286pt;}
.x4{left:1661.986619pt;}
.x2c{left:1663.746619pt;}
.x2d{left:1665.093286pt;}
.x5{left:1667.293286pt;}
.x28{left:1668.799952pt;}
.x26{left:1670.559952pt;}
.xe{left:1681.626619pt;}
.xb{left:1685.693286pt;}
.x25{left:1719.679952pt;}
.x6{left:1723.933286pt;}
.xc{left:2060.133286pt;}
.xa{left:2067.199952pt;}
.x11{left:2431.586619pt;}
.xd{left:2434.266619pt;}
.x9{left:2442.973286pt;}
.x3{left:2480.666619pt;}
.x2a{left:2626.106619pt;}
.x8{left:2818.173286pt;}
.x10{left:2819.226619pt;}
.xf{left:2823.866619pt;}
.x7{left:3024.639952pt;}
}




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