
    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_85dc02cbcdd544acece52d5a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_57d4f6aadab00f3ea8b974b5.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_ee6d1c6e28507aeeb3078a8e.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_8a8bc94f34cedc2fb46f6761.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ef52599e89c22f65974567b8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.983398;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_91d7cf510ace242896d05bdd.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_305a3c9adf3edd93c3628f3b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.983398;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_f2e7d44b32b48becc06fbdd1.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a6da6b27bc238f472a3776fd.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v4{vertical-align:-61.020000px;}
.v7{vertical-align:-27.000000px;}
.v3{vertical-align:-5.550000px;}
.v2{vertical-align:-3.180000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:27.000000px;}
.v5{vertical-align:76.500000px;}
.v1{vertical-align:80.100000px;}
.ls17{letter-spacing:-4.248000px;}
.ls14{letter-spacing:-4.098000px;}
.ls22{letter-spacing:-3.366000px;}
.ls18{letter-spacing:-2.442000px;}
.ls1e{letter-spacing:-2.190000px;}
.ls13{letter-spacing:-1.932000px;}
.ls19{letter-spacing:-1.596000px;}
.ls1c{letter-spacing:-1.158000px;}
.lse{letter-spacing:-0.864000px;}
.ls15{letter-spacing:-0.834000px;}
.ls1d{letter-spacing:-0.786000px;}
.ls12{letter-spacing:-0.580200px;}
.lsf{letter-spacing:-0.504000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.164250px;}
.ls1b{letter-spacing:0.213300px;}
.ls1a{letter-spacing:0.393300px;}
.lsb{letter-spacing:1.086000px;}
.ls21{letter-spacing:2.514000px;}
.ls1f{letter-spacing:2.928000px;}
.ls20{letter-spacing:3.018000px;}
.ls0{letter-spacing:32.418600px;}
.ls1{letter-spacing:32.493300px;}
.lsa{letter-spacing:65.520000px;}
.ls7{letter-spacing:65.572500px;}
.lsc{letter-spacing:75.022500px;}
.lsd{letter-spacing:75.075000px;}
.ls11{letter-spacing:75.115950px;}
.ls10{letter-spacing:75.228000px;}
.ls4{letter-spacing:84.675000px;}
.ls3{letter-spacing:84.727500px;}
.ls16{letter-spacing:92.542500px;}
.ls6{letter-spacing:106.434300px;}
.ls9{letter-spacing:119.572500px;}
.ls8{letter-spacing:3299.046000px;}
.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;}
}
.ws16{word-spacing:-60.104700px;}
.ws2{word-spacing:-43.798800px;}
.ws1{word-spacing:-32.577900px;}
.ws4{word-spacing:-27.526800px;}
.ws3{word-spacing:-27.492900px;}
.ws5{word-spacing:-26.628900px;}
.ws8{word-spacing:-25.560900px;}
.ws6{word-spacing:-24.441900px;}
.ws19{word-spacing:-24.375000px;}
.ws15{word-spacing:-21.390900px;}
.ws1a{word-spacing:-21.357000px;}
.ws7{word-spacing:-19.356900px;}
.ws18{word-spacing:-17.166000px;}
.ws12{word-spacing:-16.305900px;}
.ws13{word-spacing:-15.288900px;}
.ws14{word-spacing:-15.255000px;}
.ws17{word-spacing:-12.081900px;}
.wsa{word-spacing:-3.788400px;}
.ws1c{word-spacing:-2.894400px;}
.ws10{word-spacing:-2.652000px;}
.wse{word-spacing:-2.343150px;}
.wsf{word-spacing:-2.223150px;}
.ws0{word-spacing:0.000000px;}
.ws11{word-spacing:0.672000px;}
.wsd{word-spacing:6.080250px;}
.ws1b{word-spacing:7.191600px;}
.ws9{word-spacing:8.782200px;}
.wsc{word-spacing:9.232200px;}
.wsb{word-spacing:57.974250px;}
._9{margin-left:-584.144250px;}
._16{margin-left:-20.452800px;}
._17{margin-left:-16.472550px;}
._b{margin-left:-10.437750px;}
._11{margin-left:-8.958300px;}
._7{margin-left:-7.951800px;}
._6{margin-left:-6.299550px;}
._4{margin-left:-4.579800px;}
._0{margin-left:-2.597400px;}
._1{margin-left:-1.587300px;}
._3{width:1.154400px;}
._2{width:2.308800px;}
._5{width:4.146900px;}
._8{width:5.988450px;}
._d{width:23.024400px;}
._15{width:24.667650px;}
._e{width:25.774200px;}
._a{width:29.594700px;}
._1a{width:34.503150px;}
._f{width:40.786650px;}
._1b{width:42.486000px;}
._c{width:44.514900px;}
._14{width:66.685050px;}
._19{width:79.187100px;}
._12{width:207.559350px;}
._10{width:353.529300px;}
._13{width:585.273900px;}
._18{width:2169.157200px;}
.fc8{color:rgb(255,0,0);}
.fc6{color:rgb(0,112,192);}
.fc5{color:rgb(0,119,200);}
.fc2{color:transparent;}
.fc1{color:rgb(234,118,0);}
.fc9{color:rgb(0,176,80);}
.fc7{color:rgb(166,166,166);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(33,33,33);}
.fc0{color:rgb(255,255,255);}
.fsd{font-size:36.000000px;}
.fsf{font-size:36.150000px;}
.fs14{font-size:63.000000px;}
.fs13{font-size:63.150000px;}
.fs12{font-size:67.500000px;}
.fs11{font-size:67.650000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:72.150000px;}
.fse{font-size:85.500000px;}
.fs10{font-size:85.650000px;}
.fsb{font-size:94.500000px;}
.fs2{font-size:94.650000px;}
.fs8{font-size:108.150000px;}
.fs6{font-size:121.650000px;}
.fsa{font-size:121.800000px;}
.fs1{font-size:144.150000px;}
.fs0{font-size:144.300000px;}
.fs15{font-size:157.800000px;}
.fs9{font-size:166.800000px;}
.fs5{font-size:193.800000px;}
.fsc{font-size:265.950000px;}
.fs3{font-size:301.950000px;}
.y0{bottom:0.000000px;}
.y89{bottom:7.575000px;}
.y81{bottom:16.425000px;}
.y8a{bottom:17.850000px;}
.y77{bottom:26.287500px;}
.y88{bottom:27.862500px;}
.y80{bottom:35.550000px;}
.y51{bottom:36.712500px;}
.y17{bottom:36.975000px;}
.y52{bottom:37.012500px;}
.ya2{bottom:46.950000px;}
.y87{bottom:47.025000px;}
.y5f{bottom:67.687500px;}
.y76{bottom:69.075000px;}
.y79{bottom:82.050000px;}
.y5a{bottom:88.837500px;}
.y66{bottom:89.137500px;}
.y4f{bottom:95.512500px;}
.y5e{bottom:103.725000px;}
.y75{bottom:111.900000px;}
.y4e{bottom:121.425000px;}
.y9e{bottom:123.712500px;}
.y4{bottom:128.400000px;}
.ya1{bottom:135.937500px;}
.y5d{bottom:139.762500px;}
.y4d{bottom:146.212500px;}
.y9d{bottom:149.625000px;}
.y3c{bottom:150.480000px;}
.y74{bottom:155.850000px;}
.y16{bottom:159.975000px;}
.ya0{bottom:160.725000px;}
.y65{bottom:161.205000px;}
.y2c{bottom:165.120000px;}
.y6f{bottom:166.125000px;}
.y34{bottom:167.355000px;}
.y4c{bottom:171.000000px;}
.y3b{bottom:176.400000px;}
.y5c{bottom:176.970000px;}
.y9f{bottom:186.645000px;}
.y3{bottom:189.225000px;}
.y9c{bottom:190.200000px;}
.y4b{bottom:196.920000px;}
.y64{bottom:197.280000px;}
.y2b{bottom:197.820000px;}
.y73{bottom:198.645000px;}
.y33{bottom:201.195000px;}
.y3a{bottom:211.320000px;}
.y15{bottom:214.050000px;}
.y9b{bottom:216.120000px;}
.y4a{bottom:221.655000px;}
.y1f{bottom:232.725000px;}
.y32{bottom:236.100000px;}
.y2a{bottom:238.350000px;}
.y10{bottom:241.380000px;}
.y9a{bottom:242.025000px;}
.y72{bottom:242.595000px;}
.y49{bottom:247.575000px;}
.y59{bottom:251.070000px;}
.y2{bottom:251.175000px;}
.y85{bottom:252.600000px;}
.y7d{bottom:253.350000px;}
.y39{bottom:257.520000px;}
.y86{bottom:260.130000px;}
.y1e{bottom:265.380000px;}
.y63{bottom:267.150000px;}
.y14{bottom:268.125000px;}
.y84{bottom:271.755000px;}
.y7c{bottom:272.505000px;}
.y29{bottom:277.800000px;}
.y31{bottom:282.300000px;}
.y99{bottom:282.570000px;}
.y38{bottom:283.425000px;}
.yf{bottom:285.345000px;}
.y71{bottom:285.375000px;}
.y45{bottom:288.450000px;}
.y62{bottom:303.225000px;}
.y25{bottom:305.955000px;}
.y98{bottom:309.600000px;}
.y1{bottom:312.030000px;}
.y1d{bottom:312.705000px;}
.y30{bottom:314.970000px;}
.y37{bottom:318.345000px;}
.y13{bottom:322.200000px;}
.y28{bottom:325.095000px;}
.y50{bottom:325.500000px;}
.ye{bottom:328.125000px;}
.y24{bottom:338.625000px;}
.y1c{bottom:345.375000px;}
.y2f{bottom:348.750000px;}
.y97{bottom:350.175000px;}
.y27{bottom:357.750000px;}
.y6b{bottom:359.655000px;}
.y36{bottom:363.405000px;}
.y7{bottom:367.125000px;}
.y6e{bottom:370.800000px;}
.yd{bottom:370.950000px;}
.y96{bottom:376.050000px;}
.y12{bottom:376.275000px;}
.y2e{bottom:382.530000px;}
.y23{bottom:385.950000px;}
.y35{bottom:389.325000px;}
.y26{bottom:390.450000px;}
.y1b{bottom:392.700000px;}
.y6a{bottom:395.745000px;}
.y48{bottom:398.595000px;}
.y58{bottom:413.280000px;}
.yc{bottom:414.870000px;}
.y2d{bottom:415.245000px;}
.y95{bottom:416.625000px;}
.y22{bottom:418.620000px;}
.y1a{bottom:425.370000px;}
.y47{bottom:431.250000px;}
.y69{bottom:431.775000px;}
.y21{bottom:451.275000px;}
.y19{bottom:456.900000px;}
.y6{bottom:457.245000px;}
.yb{bottom:457.695000px;}
.y94{bottom:458.280000px;}
.y68{bottom:467.820000px;}
.y93{bottom:484.200000px;}
.y83{bottom:485.745000px;}
.y7f{bottom:486.225000px;}
.y43{bottom:495.600000px;}
.ya{bottom:501.630000px;}
.y20{bottom:501.975000px;}
.y67{bottom:503.880000px;}
.y82{bottom:504.900000px;}
.y7e{bottom:505.380000px;}
.y18{bottom:506.475000px;}
.y92{bottom:510.120000px;}
.y3f{bottom:526.095000px;}
.y42{bottom:531.675000px;}
.y91{bottom:536.025000px;}
.y9{bottom:544.425000px;}
.y7b{bottom:547.245000px;}
.y54{bottom:548.850000px;}
.y61{bottom:551.445000px;}
.y3e{bottom:562.125000px;}
.y53{bottom:571.125000px;}
.y57{bottom:575.505000px;}
.y90{bottom:576.600000px;}
.y7a{bottom:579.900000px;}
.y41{bottom:585.750000px;}
.y60{bottom:587.475000px;}
.y8f{bottom:602.505000px;}
.y3d{bottom:616.200000px;}
.y56{bottom:629.370000px;}
.y6c{bottom:634.500000px;}
.y40{bottom:639.825000px;}
.y8e{bottom:644.175000px;}
.y44{bottom:663.195000px;}
.y6d{bottom:673.275000px;}
.y46{bottom:676.050000px;}
.y55{bottom:677.280000px;}
.y5b{bottom:688.200000px;}
.y8d{bottom:691.620000px;}
.y8b{bottom:719.550000px;}
.y78{bottom:723.900000px;}
.y11{bottom:734.370000px;}
.y8c{bottom:830.850000px;}
.y5{bottom:836.625000px;}
.y70{bottom:876.570000px;}
.y8{bottom:886.995000px;}
.h1a{height:67.137451px;}
.h19{height:67.286646px;}
.h1d{height:68.921484px;}
.h5{height:71.762476px;}
.hb{height:73.722656px;}
.h17{height:73.876245px;}
.h15{height:85.040771px;}
.h16{height:85.189966px;}
.h12{height:93.992432px;}
.h11{height:94.141626px;}
.h1c{height:96.760986px;}
.h3{height:96.914575px;}
.h14{height:107.569116px;}
.h6{height:115.995703px;}
.h7{height:116.116406px;}
.h9{height:120.996606px;}
.hf{height:121.145801px;}
.ha{height:124.560571px;}
.h10{height:124.714160px;}
.h2{height:143.375757px;}
.h1{height:143.524951px;}
.h1b{height:143.637451px;}
.hc{height:147.598901px;}
.h1e{height:156.952441px;}
.he{height:170.790820px;}
.hd{height:187.669116px;}
.h18{height:192.759082px;}
.h8{height:198.436816px;}
.h13{height:264.521558px;}
.h4{height:300.328198px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x6{left:61.312479px;}
.xf{left:65.287479px;}
.xc{left:71.999979px;}
.x17{left:77.249979px;}
.xb{left:79.499979px;}
.x35{left:80.587479px;}
.x7{left:84.112479px;}
.x8{left:88.049979px;}
.x3f{left:89.962479px;}
.x22{left:91.162479px;}
.x15{left:93.824979px;}
.x2{left:100.012479px;}
.x1{left:102.299979px;}
.x40{left:103.649979px;}
.x36{left:105.337479px;}
.x9{left:115.049979px;}
.x4{left:116.324979px;}
.x34{left:124.949979px;}
.x21{left:126.562479px;}
.x11{left:136.349979px;}
.xa{left:142.087479px;}
.x5{left:150.119979px;}
.x10{left:151.199979px;}
.x23{left:165.854979px;}
.x19{left:221.369979px;}
.x1d{left:356.774979px;}
.x3e{left:426.674979px;}
.x28{left:428.699979px;}
.x2a{left:432.629979px;}
.x29{left:437.774979px;}
.x25{left:439.724979px;}
.x26{left:453.719979px;}
.x24{left:462.674979px;}
.x27{left:469.424979px;}
.x14{left:545.444979px;}
.x12{left:568.499979px;}
.x13{left:594.029979px;}
.xe{left:608.549979px;}
.x3{left:646.799979px;}
.x3c{left:649.049979px;}
.x20{left:658.124979px;}
.x18{left:670.199979px;}
.x16{left:676.469979px;}
.x41{left:724.274979px;}
.x42{left:733.319979px;}
.x2c{left:734.999979px;}
.x2d{left:758.624979px;}
.x2e{left:769.319979px;}
.x43{left:773.369979px;}
.x37{left:790.649979px;}
.x2b{left:806.849979px;}
.x44{left:812.819979px;}
.x1a{left:836.324979px;}
.x1e{left:911.549979px;}
.x1c{left:915.674979px;}
.x1b{left:916.799979px;}
.x1f{left:1025.129979px;}
.xd{left:1081.004979px;}
.x33{left:1083.299979px;}
.x31{left:1092.599979px;}
.x30{left:1097.999979px;}
.x32{left:1109.399979px;}
.x3d{left:1135.694979px;}
.x2f{left:1137.029979px;}
.x38{left:1161.674979px;}
.x3b{left:1175.549979px;}
.x3a{left:1180.724979px;}
.x39{left:1213.724979px;}
@media print{
.v4{vertical-align:-54.240000pt;}
.v7{vertical-align:-24.000000pt;}
.v3{vertical-align:-4.933333pt;}
.v2{vertical-align:-2.826667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:24.000000pt;}
.v5{vertical-align:68.000000pt;}
.v1{vertical-align:71.200000pt;}
.ls17{letter-spacing:-3.776000pt;}
.ls14{letter-spacing:-3.642667pt;}
.ls22{letter-spacing:-2.992000pt;}
.ls18{letter-spacing:-2.170667pt;}
.ls1e{letter-spacing:-1.946667pt;}
.ls13{letter-spacing:-1.717333pt;}
.ls19{letter-spacing:-1.418667pt;}
.ls1c{letter-spacing:-1.029333pt;}
.lse{letter-spacing:-0.768000pt;}
.ls15{letter-spacing:-0.741333pt;}
.ls1d{letter-spacing:-0.698667pt;}
.ls12{letter-spacing:-0.515733pt;}
.lsf{letter-spacing:-0.448000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.146000pt;}
.ls1b{letter-spacing:0.189600pt;}
.ls1a{letter-spacing:0.349600pt;}
.lsb{letter-spacing:0.965333pt;}
.ls21{letter-spacing:2.234667pt;}
.ls1f{letter-spacing:2.602667pt;}
.ls20{letter-spacing:2.682667pt;}
.ls0{letter-spacing:28.816533pt;}
.ls1{letter-spacing:28.882933pt;}
.lsa{letter-spacing:58.240000pt;}
.ls7{letter-spacing:58.286667pt;}
.lsc{letter-spacing:66.686667pt;}
.lsd{letter-spacing:66.733333pt;}
.ls11{letter-spacing:66.769733pt;}
.ls10{letter-spacing:66.869333pt;}
.ls4{letter-spacing:75.266667pt;}
.ls3{letter-spacing:75.313333pt;}
.ls16{letter-spacing:82.260000pt;}
.ls6{letter-spacing:94.608267pt;}
.ls9{letter-spacing:106.286667pt;}
.ls8{letter-spacing:2932.485333pt;}
.ws16{word-spacing:-53.426400pt;}
.ws2{word-spacing:-38.932267pt;}
.ws1{word-spacing:-28.958133pt;}
.ws4{word-spacing:-24.468267pt;}
.ws3{word-spacing:-24.438133pt;}
.ws5{word-spacing:-23.670133pt;}
.ws8{word-spacing:-22.720800pt;}
.ws6{word-spacing:-21.726133pt;}
.ws19{word-spacing:-21.666667pt;}
.ws15{word-spacing:-19.014133pt;}
.ws1a{word-spacing:-18.984000pt;}
.ws7{word-spacing:-17.206133pt;}
.ws18{word-spacing:-15.258667pt;}
.ws12{word-spacing:-14.494133pt;}
.ws13{word-spacing:-13.590133pt;}
.ws14{word-spacing:-13.560000pt;}
.ws17{word-spacing:-10.739467pt;}
.wsa{word-spacing:-3.367467pt;}
.ws1c{word-spacing:-2.572800pt;}
.ws10{word-spacing:-2.357333pt;}
.wse{word-spacing:-2.082800pt;}
.wsf{word-spacing:-1.976133pt;}
.ws0{word-spacing:0.000000pt;}
.ws11{word-spacing:0.597333pt;}
.wsd{word-spacing:5.404667pt;}
.ws1b{word-spacing:6.392533pt;}
.ws9{word-spacing:7.806400pt;}
.wsc{word-spacing:8.206400pt;}
.wsb{word-spacing:51.532667pt;}
._9{margin-left:-519.239333pt;}
._16{margin-left:-18.180267pt;}
._17{margin-left:-14.642267pt;}
._b{margin-left:-9.278000pt;}
._11{margin-left:-7.962933pt;}
._7{margin-left:-7.068267pt;}
._6{margin-left:-5.599600pt;}
._4{margin-left:-4.070933pt;}
._0{margin-left:-2.308800pt;}
._1{margin-left:-1.410933pt;}
._3{width:1.026133pt;}
._2{width:2.052267pt;}
._5{width:3.686133pt;}
._8{width:5.323067pt;}
._d{width:20.466133pt;}
._15{width:21.926800pt;}
._e{width:22.910400pt;}
._a{width:26.306400pt;}
._1a{width:30.669467pt;}
._f{width:36.254800pt;}
._1b{width:37.765333pt;}
._c{width:39.568800pt;}
._14{width:59.275600pt;}
._19{width:70.388533pt;}
._12{width:184.497200pt;}
._10{width:314.248267pt;}
._13{width:520.243467pt;}
._18{width:1928.139733pt;}
.fsd{font-size:32.000000pt;}
.fsf{font-size:32.133333pt;}
.fs14{font-size:56.000000pt;}
.fs13{font-size:56.133333pt;}
.fs12{font-size:60.000000pt;}
.fs11{font-size:60.133333pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:64.133333pt;}
.fse{font-size:76.000000pt;}
.fs10{font-size:76.133333pt;}
.fsb{font-size:84.000000pt;}
.fs2{font-size:84.133333pt;}
.fs8{font-size:96.133333pt;}
.fs6{font-size:108.133333pt;}
.fsa{font-size:108.266667pt;}
.fs1{font-size:128.133333pt;}
.fs0{font-size:128.266667pt;}
.fs15{font-size:140.266667pt;}
.fs9{font-size:148.266667pt;}
.fs5{font-size:172.266667pt;}
.fsc{font-size:236.400000pt;}
.fs3{font-size:268.400000pt;}
.y0{bottom:0.000000pt;}
.y89{bottom:6.733333pt;}
.y81{bottom:14.600000pt;}
.y8a{bottom:15.866667pt;}
.y77{bottom:23.366667pt;}
.y88{bottom:24.766667pt;}
.y80{bottom:31.600000pt;}
.y51{bottom:32.633333pt;}
.y17{bottom:32.866667pt;}
.y52{bottom:32.900000pt;}
.ya2{bottom:41.733333pt;}
.y87{bottom:41.800000pt;}
.y5f{bottom:60.166667pt;}
.y76{bottom:61.400000pt;}
.y79{bottom:72.933333pt;}
.y5a{bottom:78.966667pt;}
.y66{bottom:79.233333pt;}
.y4f{bottom:84.900000pt;}
.y5e{bottom:92.200000pt;}
.y75{bottom:99.466667pt;}
.y4e{bottom:107.933333pt;}
.y9e{bottom:109.966667pt;}
.y4{bottom:114.133333pt;}
.ya1{bottom:120.833333pt;}
.y5d{bottom:124.233333pt;}
.y4d{bottom:129.966667pt;}
.y9d{bottom:133.000000pt;}
.y3c{bottom:133.760000pt;}
.y74{bottom:138.533333pt;}
.y16{bottom:142.200000pt;}
.ya0{bottom:142.866667pt;}
.y65{bottom:143.293333pt;}
.y2c{bottom:146.773333pt;}
.y6f{bottom:147.666667pt;}
.y34{bottom:148.760000pt;}
.y4c{bottom:152.000000pt;}
.y3b{bottom:156.800000pt;}
.y5c{bottom:157.306667pt;}
.y9f{bottom:165.906667pt;}
.y3{bottom:168.200000pt;}
.y9c{bottom:169.066667pt;}
.y4b{bottom:175.040000pt;}
.y64{bottom:175.360000pt;}
.y2b{bottom:175.840000pt;}
.y73{bottom:176.573333pt;}
.y33{bottom:178.840000pt;}
.y3a{bottom:187.840000pt;}
.y15{bottom:190.266667pt;}
.y9b{bottom:192.106667pt;}
.y4a{bottom:197.026667pt;}
.y1f{bottom:206.866667pt;}
.y32{bottom:209.866667pt;}
.y2a{bottom:211.866667pt;}
.y10{bottom:214.560000pt;}
.y9a{bottom:215.133333pt;}
.y72{bottom:215.640000pt;}
.y49{bottom:220.066667pt;}
.y59{bottom:223.173333pt;}
.y2{bottom:223.266667pt;}
.y85{bottom:224.533333pt;}
.y7d{bottom:225.200000pt;}
.y39{bottom:228.906667pt;}
.y86{bottom:231.226667pt;}
.y1e{bottom:235.893333pt;}
.y63{bottom:237.466667pt;}
.y14{bottom:238.333333pt;}
.y84{bottom:241.560000pt;}
.y7c{bottom:242.226667pt;}
.y29{bottom:246.933333pt;}
.y31{bottom:250.933333pt;}
.y99{bottom:251.173333pt;}
.y38{bottom:251.933333pt;}
.yf{bottom:253.640000pt;}
.y71{bottom:253.666667pt;}
.y45{bottom:256.400000pt;}
.y62{bottom:269.533333pt;}
.y25{bottom:271.960000pt;}
.y98{bottom:275.200000pt;}
.y1{bottom:277.360000pt;}
.y1d{bottom:277.960000pt;}
.y30{bottom:279.973333pt;}
.y37{bottom:282.973333pt;}
.y13{bottom:286.400000pt;}
.y28{bottom:288.973333pt;}
.y50{bottom:289.333333pt;}
.ye{bottom:291.666667pt;}
.y24{bottom:301.000000pt;}
.y1c{bottom:307.000000pt;}
.y2f{bottom:310.000000pt;}
.y97{bottom:311.266667pt;}
.y27{bottom:318.000000pt;}
.y6b{bottom:319.693333pt;}
.y36{bottom:323.026667pt;}
.y7{bottom:326.333333pt;}
.y6e{bottom:329.600000pt;}
.yd{bottom:329.733333pt;}
.y96{bottom:334.266667pt;}
.y12{bottom:334.466667pt;}
.y2e{bottom:340.026667pt;}
.y23{bottom:343.066667pt;}
.y35{bottom:346.066667pt;}
.y26{bottom:347.066667pt;}
.y1b{bottom:349.066667pt;}
.y6a{bottom:351.773333pt;}
.y48{bottom:354.306667pt;}
.y58{bottom:367.360000pt;}
.yc{bottom:368.773333pt;}
.y2d{bottom:369.106667pt;}
.y95{bottom:370.333333pt;}
.y22{bottom:372.106667pt;}
.y1a{bottom:378.106667pt;}
.y47{bottom:383.333333pt;}
.y69{bottom:383.800000pt;}
.y21{bottom:401.133333pt;}
.y19{bottom:406.133333pt;}
.y6{bottom:406.440000pt;}
.yb{bottom:406.840000pt;}
.y94{bottom:407.360000pt;}
.y68{bottom:415.840000pt;}
.y93{bottom:430.400000pt;}
.y83{bottom:431.773333pt;}
.y7f{bottom:432.200000pt;}
.y43{bottom:440.533333pt;}
.ya{bottom:445.893333pt;}
.y20{bottom:446.200000pt;}
.y67{bottom:447.893333pt;}
.y82{bottom:448.800000pt;}
.y7e{bottom:449.226667pt;}
.y18{bottom:450.200000pt;}
.y92{bottom:453.440000pt;}
.y3f{bottom:467.640000pt;}
.y42{bottom:472.600000pt;}
.y91{bottom:476.466667pt;}
.y9{bottom:483.933333pt;}
.y7b{bottom:486.440000pt;}
.y54{bottom:487.866667pt;}
.y61{bottom:490.173333pt;}
.y3e{bottom:499.666667pt;}
.y53{bottom:507.666667pt;}
.y57{bottom:511.560000pt;}
.y90{bottom:512.533333pt;}
.y7a{bottom:515.466667pt;}
.y41{bottom:520.666667pt;}
.y60{bottom:522.200000pt;}
.y8f{bottom:535.560000pt;}
.y3d{bottom:547.733333pt;}
.y56{bottom:559.440000pt;}
.y6c{bottom:564.000000pt;}
.y40{bottom:568.733333pt;}
.y8e{bottom:572.600000pt;}
.y44{bottom:589.506667pt;}
.y6d{bottom:598.466667pt;}
.y46{bottom:600.933333pt;}
.y55{bottom:602.026667pt;}
.y5b{bottom:611.733333pt;}
.y8d{bottom:614.773333pt;}
.y8b{bottom:639.600000pt;}
.y78{bottom:643.466667pt;}
.y11{bottom:652.773333pt;}
.y8c{bottom:738.533333pt;}
.y5{bottom:743.666667pt;}
.y70{bottom:779.173333pt;}
.y8{bottom:788.440000pt;}
.h1a{height:59.677734pt;}
.h19{height:59.810352pt;}
.h1d{height:61.263542pt;}
.h5{height:63.788867pt;}
.hb{height:65.531250pt;}
.h17{height:65.667773pt;}
.h15{height:75.591797pt;}
.h16{height:75.724414pt;}
.h12{height:83.548828pt;}
.h11{height:83.681445pt;}
.h1c{height:86.009766pt;}
.h3{height:86.146289pt;}
.h14{height:95.616992pt;}
.h6{height:103.107292pt;}
.h7{height:103.214583pt;}
.h9{height:107.552539pt;}
.hf{height:107.685156pt;}
.ha{height:110.720508pt;}
.h10{height:110.857031pt;}
.h2{height:127.445117pt;}
.h1{height:127.577734pt;}
.h1b{height:127.677734pt;}
.hc{height:131.199023pt;}
.h1e{height:139.513281pt;}
.he{height:151.814063pt;}
.hd{height:166.816992pt;}
.h18{height:171.341406pt;}
.h8{height:176.388281pt;}
.h13{height:235.130273pt;}
.h4{height:266.958398pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x6{left:54.499981pt;}
.xf{left:58.033314pt;}
.xc{left:63.999981pt;}
.x17{left:68.666648pt;}
.xb{left:70.666648pt;}
.x35{left:71.633314pt;}
.x7{left:74.766648pt;}
.x8{left:78.266648pt;}
.x3f{left:79.966648pt;}
.x22{left:81.033314pt;}
.x15{left:83.399981pt;}
.x2{left:88.899981pt;}
.x1{left:90.933314pt;}
.x40{left:92.133314pt;}
.x36{left:93.633314pt;}
.x9{left:102.266648pt;}
.x4{left:103.399981pt;}
.x34{left:111.066648pt;}
.x21{left:112.499981pt;}
.x11{left:121.199981pt;}
.xa{left:126.299981pt;}
.x5{left:133.439981pt;}
.x10{left:134.399981pt;}
.x23{left:147.426648pt;}
.x19{left:196.773314pt;}
.x1d{left:317.133314pt;}
.x3e{left:379.266648pt;}
.x28{left:381.066648pt;}
.x2a{left:384.559981pt;}
.x29{left:389.133314pt;}
.x25{left:390.866648pt;}
.x26{left:403.306648pt;}
.x24{left:411.266648pt;}
.x27{left:417.266648pt;}
.x14{left:484.839981pt;}
.x12{left:505.333314pt;}
.x13{left:528.026648pt;}
.xe{left:540.933314pt;}
.x3{left:574.933314pt;}
.x3c{left:576.933314pt;}
.x20{left:584.999981pt;}
.x18{left:595.733314pt;}
.x16{left:601.306648pt;}
.x41{left:643.799981pt;}
.x42{left:651.839981pt;}
.x2c{left:653.333314pt;}
.x2d{left:674.333314pt;}
.x2e{left:683.839981pt;}
.x43{left:687.439981pt;}
.x37{left:702.799981pt;}
.x2b{left:717.199981pt;}
.x44{left:722.506648pt;}
.x1a{left:743.399981pt;}
.x1e{left:810.266648pt;}
.x1c{left:813.933314pt;}
.x1b{left:814.933314pt;}
.x1f{left:911.226648pt;}
.xd{left:960.893314pt;}
.x33{left:962.933314pt;}
.x31{left:971.199981pt;}
.x30{left:975.999981pt;}
.x32{left:986.133314pt;}
.x3d{left:1009.506648pt;}
.x2f{left:1010.693314pt;}
.x38{left:1032.599981pt;}
.x3b{left:1044.933314pt;}
.x3a{left:1049.533314pt;}
.x39{left:1078.866648pt;}
}




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