
    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_04ca4955190a783df24f6631.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b12234bbecc36cbe034b8d25.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2140241bb6ae39195fb35c6f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e87a3361f975451cdf6052d5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_cb1c7ac4a4c8f83a45555c8b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.951172;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_150be0be98e978dd0cd94d89.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_80ce994da0590f862ee6fb9d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_844a3bff5bacb6e41412afd7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.940918;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(0.250535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250535,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-90.000000px;}
.v3{vertical-align:-57.600000px;}
.v5{vertical-align:-10.260000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:57.600000px;}
.v1{vertical-align:90.000000px;}
.ls17{letter-spacing:-1.398000px;}
.ls1a{letter-spacing:-1.260000px;}
.ls1c{letter-spacing:-1.080000px;}
.ls1f{letter-spacing:-0.900000px;}
.ls21{letter-spacing:-0.594000px;}
.ls1d{letter-spacing:-0.540000px;}
.ls1e{letter-spacing:-0.360000px;}
.ls20{letter-spacing:-0.303000px;}
.ls13{letter-spacing:-0.211800px;}
.ls1b{letter-spacing:-0.180000px;}
.ls24{letter-spacing:-0.125400px;}
.ls19{letter-spacing:-0.076200px;}
.ls23{letter-spacing:-0.033120px;}
.ls16{letter-spacing:-0.006480px;}
.ls11{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.008640px;}
.ls1{letter-spacing:0.036000px;}
.ls10{letter-spacing:0.072000px;}
.ls22{letter-spacing:0.108000px;}
.ls7{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.234000px;}
.ls14{letter-spacing:0.256200px;}
.ls0{letter-spacing:0.292320px;}
.lsa{letter-spacing:0.324000px;}
.lsb{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.396000px;}
.lsf{letter-spacing:24.696000px;}
.lsd{letter-spacing:25.416000px;}
.lse{letter-spacing:41.101920px;}
.ls6{letter-spacing:42.120000px;}
.ls8{letter-spacing:42.840000px;}
.ls5{letter-spacing:43.711200px;}
.ls3{letter-spacing:43.731360px;}
.ls4{letter-spacing:44.316000px;}
.ls2{letter-spacing:66.391200px;}
.lsc{letter-spacing:104.940000px;}
.ls9{letter-spacing:133.866000px;}
.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;}
}
.ws0{word-spacing:-67.854240px;}
.ws1{word-spacing:-45.236160px;}
.ws2{word-spacing:-43.446240px;}
.wsf{word-spacing:-41.004000px;}
.wsa{word-spacing:-40.860000px;}
.ws8{word-spacing:-40.680000px;}
.wsb{word-spacing:-40.500000px;}
.wse{word-spacing:-40.320000px;}
.wsd{word-spacing:-40.140000px;}
.ws10{word-spacing:-39.780000px;}
.wsc{word-spacing:-39.600000px;}
.ws9{word-spacing:-39.420000px;}
.ws4{word-spacing:-27.408240px;}
.ws3{word-spacing:-27.174240px;}
.ws5{word-spacing:-27.167760px;}
.ws6{word-spacing:-25.776240px;}
.ws7{word-spacing:-25.709760px;}
.ws20{word-spacing:-24.444000px;}
.ws1d{word-spacing:-21.641760px;}
.ws21{word-spacing:-21.608640px;}
.ws15{word-spacing:-1.620000px;}
.ws11{word-spacing:-1.080000px;}
.ws12{word-spacing:-0.900000px;}
.ws1f{word-spacing:-0.744000px;}
.ws19{word-spacing:-0.737280px;}
.ws13{word-spacing:-0.720000px;}
.ws1e{word-spacing:-0.586080px;}
.ws1a{word-spacing:-0.574560px;}
.ws22{word-spacing:-0.540000px;}
.ws16{word-spacing:-0.180000px;}
.ws17{word-spacing:-0.144000px;}
.ws23{word-spacing:0.000000px;}
.ws1b{word-spacing:0.625680px;}
.ws18{word-spacing:0.720000px;}
.ws1c{word-spacing:0.966960px;}
.ws14{word-spacing:1.260000px;}
._1f{margin-left:-3941.356992px;}
._9{margin-left:-30.460128px;}
._1{margin-left:-23.760000px;}
._c{margin-left:-17.847072px;}
._d{margin-left:-13.456800px;}
._e{margin-left:-12.015120px;}
._7{margin-left:-10.180512px;}
._5{margin-left:-8.640000px;}
._4{margin-left:-6.912000px;}
._a{margin-left:-5.840640px;}
._2{margin-left:-4.752000px;}
._0{margin-left:-3.002400px;}
._8{margin-left:-1.073088px;}
._3{width:1.296000px;}
._6{width:3.288000px;}
._11{width:8.202240px;}
._12{width:9.457344px;}
._16{width:12.053088px;}
._15{width:13.262400px;}
._17{width:14.296800px;}
._f{width:18.393840px;}
._10{width:19.895040px;}
._19{width:21.305088px;}
._1e{width:22.415472px;}
._14{width:28.318176px;}
._13{width:35.518080px;}
._18{width:42.653088px;}
._b{width:44.949168px;}
._1b{width:61.366176px;}
._1a{width:62.402400px;}
._1c{width:67.692000px;}
._1d{width:568.637088px;}
.fc4{color:rgb(248,247,242);}
.fc3{color:rgb(28,33,32);}
.fc5{color:rgb(127,127,127);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(23,156,125);}
.fs10{font-size:84.240000px;}
.fsd{font-size:95.760000px;}
.fsc{font-size:108.000000px;}
.fs8{font-size:113.760000px;}
.fs7{font-size:120.240000px;}
.fs5{font-size:128.160000px;}
.fsf{font-size:144.000000px;}
.fs11{font-size:149.760000px;}
.fsb{font-size:162.000000px;}
.fsa{font-size:180.000000px;}
.fs6{font-size:192.240000px;}
.fs4{font-size:200.160000px;}
.fse{font-size:239.760000px;}
.fs0{font-size:300.240000px;}
.fs3{font-size:300.384000px;}
.fs1{font-size:432.000000px;}
.fs2{font-size:576.000000px;}
.fs9{font-size:698.114331px;}
.y0{bottom:0.000000px;}
.y18{bottom:64.188000px;}
.y17{bottom:98.388000px;}
.y10{bottom:139.212000px;}
.y16{bottom:150.585000px;}
.y1a{bottom:163.787239px;}
.y15{bottom:184.785000px;}
.yf{bottom:211.215000px;}
.y14{bottom:218.985000px;}
.ye{bottom:247.215000px;}
.y13{bottom:253.185000px;}
.yd{bottom:283.215000px;}
.y12{bottom:287.385000px;}
.yc{bottom:319.215000px;}
.y11{bottom:321.585000px;}
.y5d{bottom:408.855000px;}
.y5c{bottom:452.055000px;}
.y41{bottom:467.460000px;}
.y35{bottom:469.365000px;}
.y3b{bottom:469.470000px;}
.y40{bottom:497.520000px;}
.y34{bottom:499.425000px;}
.y3a{bottom:499.530000px;}
.y3f{bottom:527.580000px;}
.y33{bottom:529.485000px;}
.y39{bottom:529.590000px;}
.y5f{bottom:530.925000px;}
.y3e{bottom:557.460000px;}
.y32{bottom:559.365000px;}
.y38{bottom:559.470000px;}
.y3d{bottom:587.520000px;}
.y31{bottom:589.425000px;}
.y37{bottom:589.530000px;}
.y3c{bottom:645.660000px;}
.y30{bottom:647.565000px;}
.y36{bottom:647.670000px;}
.y5e{bottom:836.355000px;}
.y42{bottom:1086.945000px;}
.y5b{bottom:1207.185000px;}
.y60{bottom:1215.030000px;}
.y5a{bottom:1270.185000px;}
.y59{bottom:1333.185000px;}
.y58{bottom:1396.185000px;}
.y1b{bottom:1481.685000px;}
.y61{bottom:1587.570000px;}
.y2f{bottom:1633.350000px;}
.y2e{bottom:1671.555000px;}
.y67{bottom:1778.940000px;}
.y65{bottom:1779.270000px;}
.y66{bottom:2025.075000px;}
.y2d{bottom:2081.445000px;}
.y2c{bottom:2144.445000px;}
.y2b{bottom:2207.445000px;}
.y64{bottom:2269.770000px;}
.y68{bottom:2270.010000px;}
.y2a{bottom:2270.445000px;}
.y69{bottom:2271.345000px;}
.y29{bottom:2333.445000px;}
.y63{bottom:2362.320000px;}
.y28{bottom:2396.445000px;}
.y62{bottom:2416.320000px;}
.y57{bottom:2490.045000px;}
.y25{bottom:2496.525000px;}
.y55{bottom:2680.230000px;}
.y24{bottom:2700.870000px;}
.y54{bottom:2743.230000px;}
.y23{bottom:2763.870000px;}
.y53{bottom:2806.230000px;}
.y22{bottom:2826.870000px;}
.y52{bottom:2869.230000px;}
.y21{bottom:2903.370000px;}
.y51{bottom:2919.345000px;}
.y50{bottom:2982.345000px;}
.y4f{bottom:3045.345000px;}
.y20{bottom:3047.370000px;}
.y4e{bottom:3108.345000px;}
.y1f{bottom:3128.370000px;}
.y48{bottom:3134.340000px;}
.y4d{bottom:3171.345000px;}
.y47{bottom:3197.340000px;}
.y1e{bottom:3209.370000px;}
.y4c{bottom:3234.345000px;}
.y46{bottom:3260.340000px;}
.y1d{bottom:3290.370000px;}
.y4b{bottom:3297.345000px;}
.y45{bottom:3323.340000px;}
.y1c{bottom:3371.400000px;}
.y44{bottom:3386.340000px;}
.y4a{bottom:3427.845000px;}
.y27{bottom:3471.195000px;}
.y49{bottom:3508.845000px;}
.y43{bottom:3516.840000px;}
.y26{bottom:3552.195000px;}
.y56{bottom:3634.560000px;}
.y1{bottom:3649.890000px;}
.y19{bottom:3747.415461px;}
.yb{bottom:3839.475000px;}
.ya{bottom:3906.075000px;}
.y9{bottom:3972.675000px;}
.y8{bottom:4039.275000px;}
.y7{bottom:4108.755000px;}
.y6{bottom:4237.845000px;}
.y5{bottom:4432.425000px;}
.y4{bottom:4584.345000px;}
.y3{bottom:4746.345000px;}
.y2{bottom:4908.345000px;}
.h15{height:83.787539px;}
.h10{height:95.245664px;}
.h11{height:98.051133px;}
.hf{height:107.419922px;}
.h14{height:109.828125px;}
.ha{height:113.148984px;}
.h9{height:119.594180px;}
.h8{height:123.116836px;}
.h7{height:133.607461px;}
.h16{height:148.955625px;}
.he{height:179.033203px;}
.hd{height:184.306641px;}
.h12{height:245.496445px;}
.h6{height:298.627383px;}
.h5{height:298.770609px;}
.h2{height:307.423477px;}
.h13{height:307.570922px;}
.hb{height:368.129229px;}
.h3{height:429.679688px;}
.hc{height:532.789404px;}
.h4{height:589.781250px;}
.h0{height:5081.040000px;}
.h1{height:5081.250000px;}
.w3{width:882.289300px;}
.w2{width:3601.439946px;}
.w0{width:3601.440000px;}
.w1{width:3601.500000px;}
.x0{left:0.000000px;}
.x20{left:56.375946px;}
.x1b{left:67.031946px;}
.x6{left:71.747946px;}
.x7{left:78.947946px;}
.x8{left:87.371946px;}
.x1{left:90.899946px;}
.x5{left:105.887315px;}
.x1c{left:136.475946px;}
.x24{left:152.924946px;}
.x21{left:166.064946px;}
.x2{left:425.009946px;}
.x23{left:702.509946px;}
.x22{left:707.249946px;}
.x26{left:747.869946px;}
.x1d{left:1178.924946px;}
.x1e{left:1181.129946px;}
.x25{left:1322.639946px;}
.x16{left:1830.629946px;}
.x19{left:1833.119946px;}
.x1a{left:1848.989946px;}
.x9{left:1850.144946px;}
.x15{left:1860.764946px;}
.x1f{left:1865.774946px;}
.xe{left:1874.009946px;}
.xf{left:1895.249946px;}
.xa{left:1913.864946px;}
.xb{left:1918.184946px;}
.xc{left:1964.594946px;}
.x4{left:2179.252370px;}
.x18{left:2200.244946px;}
.x10{left:2323.649946px;}
.x11{left:2344.889946px;}
.xd{left:2369.339946px;}
.x3{left:2790.749946px;}
.x12{left:2798.564946px;}
.x17{left:3025.514946px;}
.x13{left:3180.029946px;}
.x14{left:3201.269946px;}
@media print{
.v2{vertical-align:-80.000000pt;}
.v3{vertical-align:-51.200000pt;}
.v5{vertical-align:-9.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:51.200000pt;}
.v1{vertical-align:80.000000pt;}
.ls17{letter-spacing:-1.242667pt;}
.ls1a{letter-spacing:-1.120000pt;}
.ls1c{letter-spacing:-0.960000pt;}
.ls1f{letter-spacing:-0.800000pt;}
.ls21{letter-spacing:-0.528000pt;}
.ls1d{letter-spacing:-0.480000pt;}
.ls1e{letter-spacing:-0.320000pt;}
.ls20{letter-spacing:-0.269333pt;}
.ls13{letter-spacing:-0.188267pt;}
.ls1b{letter-spacing:-0.160000pt;}
.ls24{letter-spacing:-0.111467pt;}
.ls19{letter-spacing:-0.067733pt;}
.ls23{letter-spacing:-0.029440pt;}
.ls16{letter-spacing:-0.005760pt;}
.ls11{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.007680pt;}
.ls1{letter-spacing:0.032000pt;}
.ls10{letter-spacing:0.064000pt;}
.ls22{letter-spacing:0.096000pt;}
.ls7{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.208000pt;}
.ls14{letter-spacing:0.227733pt;}
.ls0{letter-spacing:0.259840pt;}
.lsa{letter-spacing:0.288000pt;}
.lsb{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.352000pt;}
.lsf{letter-spacing:21.952000pt;}
.lsd{letter-spacing:22.592000pt;}
.lse{letter-spacing:36.535040pt;}
.ls6{letter-spacing:37.440000pt;}
.ls8{letter-spacing:38.080000pt;}
.ls5{letter-spacing:38.854400pt;}
.ls3{letter-spacing:38.872320pt;}
.ls4{letter-spacing:39.392000pt;}
.ls2{letter-spacing:59.014400pt;}
.lsc{letter-spacing:93.280000pt;}
.ls9{letter-spacing:118.992000pt;}
.ws0{word-spacing:-60.314880pt;}
.ws1{word-spacing:-40.209920pt;}
.ws2{word-spacing:-38.618880pt;}
.wsf{word-spacing:-36.448000pt;}
.wsa{word-spacing:-36.320000pt;}
.ws8{word-spacing:-36.160000pt;}
.wsb{word-spacing:-36.000000pt;}
.wse{word-spacing:-35.840000pt;}
.wsd{word-spacing:-35.680000pt;}
.ws10{word-spacing:-35.360000pt;}
.wsc{word-spacing:-35.200000pt;}
.ws9{word-spacing:-35.040000pt;}
.ws4{word-spacing:-24.362880pt;}
.ws3{word-spacing:-24.154880pt;}
.ws5{word-spacing:-24.149120pt;}
.ws6{word-spacing:-22.912213pt;}
.ws7{word-spacing:-22.853120pt;}
.ws20{word-spacing:-21.728000pt;}
.ws1d{word-spacing:-19.237120pt;}
.ws21{word-spacing:-19.207680pt;}
.ws15{word-spacing:-1.440000pt;}
.ws11{word-spacing:-0.960000pt;}
.ws12{word-spacing:-0.800000pt;}
.ws1f{word-spacing:-0.661333pt;}
.ws19{word-spacing:-0.655360pt;}
.ws13{word-spacing:-0.640000pt;}
.ws1e{word-spacing:-0.520960pt;}
.ws1a{word-spacing:-0.510720pt;}
.ws22{word-spacing:-0.480000pt;}
.ws16{word-spacing:-0.160000pt;}
.ws17{word-spacing:-0.128000pt;}
.ws23{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.556160pt;}
.ws18{word-spacing:0.640000pt;}
.ws1c{word-spacing:0.859520pt;}
.ws14{word-spacing:1.120000pt;}
._1f{margin-left:-3503.428437pt;}
._9{margin-left:-27.075669pt;}
._1{margin-left:-21.120000pt;}
._c{margin-left:-15.864064pt;}
._d{margin-left:-11.961600pt;}
._e{margin-left:-10.680107pt;}
._7{margin-left:-9.049344pt;}
._5{margin-left:-7.680000pt;}
._4{margin-left:-6.144000pt;}
._a{margin-left:-5.191680pt;}
._2{margin-left:-4.224000pt;}
._0{margin-left:-2.668800pt;}
._8{margin-left:-0.953856pt;}
._3{width:1.152000pt;}
._6{width:2.922667pt;}
._11{width:7.290880pt;}
._12{width:8.406528pt;}
._16{width:10.713856pt;}
._15{width:11.788800pt;}
._17{width:12.708267pt;}
._f{width:16.350080pt;}
._10{width:17.684480pt;}
._19{width:18.937856pt;}
._1e{width:19.924864pt;}
._14{width:25.171712pt;}
._13{width:31.571627pt;}
._18{width:37.913856pt;}
._b{width:39.954816pt;}
._1b{width:54.547712pt;}
._1a{width:55.468800pt;}
._1c{width:60.170667pt;}
._1d{width:505.455189pt;}
.fs10{font-size:74.880000pt;}
.fsd{font-size:85.120000pt;}
.fsc{font-size:96.000000pt;}
.fs8{font-size:101.120000pt;}
.fs7{font-size:106.880000pt;}
.fs5{font-size:113.920000pt;}
.fsf{font-size:128.000000pt;}
.fs11{font-size:133.120000pt;}
.fsb{font-size:144.000000pt;}
.fsa{font-size:160.000000pt;}
.fs6{font-size:170.880000pt;}
.fs4{font-size:177.920000pt;}
.fse{font-size:213.120000pt;}
.fs0{font-size:266.880000pt;}
.fs3{font-size:267.008000pt;}
.fs1{font-size:384.000000pt;}
.fs2{font-size:512.000000pt;}
.fs9{font-size:620.546072pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:57.056000pt;}
.y17{bottom:87.456000pt;}
.y10{bottom:123.744000pt;}
.y16{bottom:133.853333pt;}
.y1a{bottom:145.588657pt;}
.y15{bottom:164.253333pt;}
.yf{bottom:187.746667pt;}
.y14{bottom:194.653333pt;}
.ye{bottom:219.746667pt;}
.y13{bottom:225.053333pt;}
.yd{bottom:251.746667pt;}
.y12{bottom:255.453333pt;}
.yc{bottom:283.746667pt;}
.y11{bottom:285.853333pt;}
.y5d{bottom:363.426667pt;}
.y5c{bottom:401.826667pt;}
.y41{bottom:415.520000pt;}
.y35{bottom:417.213333pt;}
.y3b{bottom:417.306667pt;}
.y40{bottom:442.240000pt;}
.y34{bottom:443.933333pt;}
.y3a{bottom:444.026667pt;}
.y3f{bottom:468.960000pt;}
.y33{bottom:470.653333pt;}
.y39{bottom:470.746667pt;}
.y5f{bottom:471.933333pt;}
.y3e{bottom:495.520000pt;}
.y32{bottom:497.213333pt;}
.y38{bottom:497.306667pt;}
.y3d{bottom:522.240000pt;}
.y31{bottom:523.933333pt;}
.y37{bottom:524.026667pt;}
.y3c{bottom:573.920000pt;}
.y30{bottom:575.613333pt;}
.y36{bottom:575.706667pt;}
.y5e{bottom:743.426667pt;}
.y42{bottom:966.173333pt;}
.y5b{bottom:1073.053333pt;}
.y60{bottom:1080.026667pt;}
.y5a{bottom:1129.053333pt;}
.y59{bottom:1185.053333pt;}
.y58{bottom:1241.053333pt;}
.y1b{bottom:1317.053333pt;}
.y61{bottom:1411.173333pt;}
.y2f{bottom:1451.866667pt;}
.y2e{bottom:1485.826667pt;}
.y67{bottom:1581.280000pt;}
.y65{bottom:1581.573333pt;}
.y66{bottom:1800.066667pt;}
.y2d{bottom:1850.173333pt;}
.y2c{bottom:1906.173333pt;}
.y2b{bottom:1962.173333pt;}
.y64{bottom:2017.573333pt;}
.y68{bottom:2017.786667pt;}
.y2a{bottom:2018.173333pt;}
.y69{bottom:2018.973333pt;}
.y29{bottom:2074.173333pt;}
.y63{bottom:2099.840000pt;}
.y28{bottom:2130.173333pt;}
.y62{bottom:2147.840000pt;}
.y57{bottom:2213.373333pt;}
.y25{bottom:2219.133333pt;}
.y55{bottom:2382.426667pt;}
.y24{bottom:2400.773333pt;}
.y54{bottom:2438.426667pt;}
.y23{bottom:2456.773333pt;}
.y53{bottom:2494.426667pt;}
.y22{bottom:2512.773333pt;}
.y52{bottom:2550.426667pt;}
.y21{bottom:2580.773333pt;}
.y51{bottom:2594.973333pt;}
.y50{bottom:2650.973333pt;}
.y4f{bottom:2706.973333pt;}
.y20{bottom:2708.773333pt;}
.y4e{bottom:2762.973333pt;}
.y1f{bottom:2780.773333pt;}
.y48{bottom:2786.080000pt;}
.y4d{bottom:2818.973333pt;}
.y47{bottom:2842.080000pt;}
.y1e{bottom:2852.773333pt;}
.y4c{bottom:2874.973333pt;}
.y46{bottom:2898.080000pt;}
.y1d{bottom:2924.773333pt;}
.y4b{bottom:2930.973333pt;}
.y45{bottom:2954.080000pt;}
.y1c{bottom:2996.800000pt;}
.y44{bottom:3010.080000pt;}
.y4a{bottom:3046.973333pt;}
.y27{bottom:3085.506667pt;}
.y49{bottom:3118.973333pt;}
.y43{bottom:3126.080000pt;}
.y26{bottom:3157.506667pt;}
.y56{bottom:3230.720000pt;}
.y1{bottom:3244.346667pt;}
.y19{bottom:3331.035965pt;}
.yb{bottom:3412.866667pt;}
.ya{bottom:3472.066667pt;}
.y9{bottom:3531.266667pt;}
.y8{bottom:3590.466667pt;}
.y7{bottom:3652.226667pt;}
.y6{bottom:3766.973333pt;}
.y5{bottom:3939.933333pt;}
.y4{bottom:4074.973333pt;}
.y3{bottom:4218.973333pt;}
.y2{bottom:4362.973333pt;}
.h15{height:74.477812pt;}
.h10{height:84.662813pt;}
.h11{height:87.156562pt;}
.hf{height:95.484375pt;}
.h14{height:97.625000pt;}
.ha{height:100.576875pt;}
.h9{height:106.305937pt;}
.h8{height:109.437187pt;}
.h7{height:118.762187pt;}
.h16{height:132.405000pt;}
.he{height:159.140625pt;}
.hd{height:163.828125pt;}
.h12{height:218.219062pt;}
.h6{height:265.446562pt;}
.h5{height:265.573875pt;}
.h2{height:273.265312pt;}
.h13{height:273.396375pt;}
.hb{height:327.225981pt;}
.h3{height:381.937500pt;}
.hc{height:473.590581pt;}
.h4{height:524.250000pt;}
.h0{height:4516.480000pt;}
.h1{height:4516.666667pt;}
.w3{width:784.257156pt;}
.w2{width:3201.279952pt;}
.w0{width:3201.280000pt;}
.w1{width:3201.333333pt;}
.x0{left:0.000000pt;}
.x20{left:50.111952pt;}
.x1b{left:59.583952pt;}
.x6{left:63.775952pt;}
.x7{left:70.175952pt;}
.x8{left:77.663952pt;}
.x1{left:80.799952pt;}
.x5{left:94.122058pt;}
.x1c{left:121.311952pt;}
.x24{left:135.933286pt;}
.x21{left:147.613286pt;}
.x2{left:377.786619pt;}
.x23{left:624.453286pt;}
.x22{left:628.666619pt;}
.x26{left:664.773286pt;}
.x1d{left:1047.933286pt;}
.x1e{left:1049.893286pt;}
.x25{left:1175.679952pt;}
.x16{left:1627.226619pt;}
.x19{left:1629.439952pt;}
.x1a{left:1643.546619pt;}
.x9{left:1644.573286pt;}
.x15{left:1654.013286pt;}
.x1f{left:1658.466619pt;}
.xe{left:1665.786619pt;}
.xf{left:1684.666619pt;}
.xa{left:1701.213286pt;}
.xb{left:1705.053286pt;}
.xc{left:1746.306619pt;}
.x4{left:1937.113217pt;}
.x18{left:1955.773286pt;}
.x10{left:2065.466619pt;}
.x11{left:2084.346619pt;}
.xd{left:2106.079952pt;}
.x3{left:2480.666619pt;}
.x12{left:2487.613286pt;}
.x17{left:2689.346619pt;}
.x13{left:2826.693286pt;}
.x14{left:2845.573286pt;}
}




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