
    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_68d593e22c6bd13df703806d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_f9487bd4f619b9439a4495cb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_448b2b141e1a6cdc33ba8349.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.091797;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_e4439269b80084bdfeec1289.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_f618b4802d0bb0d7e3721145.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_4f620bc71a8eb869b779a57d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941406;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_46e38261b799bed46f0f0998.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.090332;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_5e7da7adecce820d5d14787f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.767578;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_b16f6ac1a89bf1c0b34d3456.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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:-45.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:5.100000px;}
.v4{vertical-align:54.000000px;}
.v1{vertical-align:58.620000px;}
.lsa{letter-spacing:-1.728000px;}
.ls8{letter-spacing:-0.960000px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.048600px;}
.ls2{letter-spacing:0.384000px;}
.lsc{letter-spacing:0.612000px;}
.lsb{letter-spacing:0.762000px;}
.ls0{letter-spacing:0.855900px;}
.ls9{letter-spacing:2.334000px;}
.ls6{letter-spacing:29.121150px;}
.ls5{letter-spacing:29.268000px;}
.ls4{letter-spacing:102.026100px;}
.ls3{letter-spacing:102.072000px;}
.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;}
}
.ws6{word-spacing:-108.000000px;}
.ws1{word-spacing:-48.415500px;}
.ws2{word-spacing:-33.799500px;}
.ws3{word-spacing:-30.024000px;}
.ws0{word-spacing:-25.608450px;}
.ws5{word-spacing:-24.694950px;}
.ws4{word-spacing:-24.664500px;}
.ws9{word-spacing:-21.954450px;}
.ws8{word-spacing:-21.924000px;}
.ws1c{word-spacing:-20.196000px;}
.ws7{word-spacing:-20.016000px;}
.wsc{word-spacing:-18.300450px;}
.ws11{word-spacing:-18.270000px;}
.ws1d{word-spacing:0.000000px;}
.ws13{word-spacing:157.560000px;}
.ws19{word-spacing:186.336000px;}
.ws1b{word-spacing:186.420000px;}
.wsb{word-spacing:214.773600px;}
.wse{word-spacing:247.188000px;}
.ws10{word-spacing:247.260000px;}
.wsa{word-spacing:275.770500px;}
.ws15{word-spacing:276.036000px;}
.ws17{word-spacing:276.120000px;}
.ws12{word-spacing:943.980000px;}
.ws18{word-spacing:1030.920150px;}
.wsd{word-spacing:1128.633000px;}
.wsf{word-spacing:1138.500000px;}
.ws1a{word-spacing:1165.050000px;}
.ws14{word-spacing:1207.754400px;}
.ws16{word-spacing:1229.280000px;}
._6{margin-left:-14.709000px;}
._8{margin-left:-12.384900px;}
._5{margin-left:-10.184400px;}
._f{margin-left:-8.788200px;}
._d{margin-left:-7.724700px;}
._a{margin-left:-6.590550px;}
._9{margin-left:-5.172450px;}
._3{margin-left:-3.953400px;}
._0{margin-left:-2.160750px;}
._7{margin-left:-1.041600px;}
._1{width:1.296450px;}
._4{width:2.426550px;}
._2{width:3.521250px;}
._18{width:4.768350px;}
._10{width:6.191850px;}
._1e{width:13.752450px;}
._13{width:32.150550px;}
._1f{width:37.888950px;}
._16{width:60.091950px;}
._17{width:65.406750px;}
._14{width:115.120500px;}
._1d{width:126.019800px;}
._15{width:163.682550px;}
._12{width:175.355550px;}
._e{width:185.934300px;}
._11{width:191.335500px;}
._c{width:194.076000px;}
._1c{width:288.558900px;}
._19{width:318.783300px;}
._1b{width:378.068250px;}
._1a{width:388.795650px;}
._b{width:3695.369100px;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:72.000000px;}
.fse{font-size:72.150000px;}
.fs10{font-size:90.000000px;}
.fsf{font-size:90.150000px;}
.fs3{font-size:94.500000px;}
.fs9{font-size:108.000000px;}
.fsa{font-size:108.150000px;}
.fsc{font-size:121.500000px;}
.fsb{font-size:121.650000px;}
.fs2{font-size:126.150000px;}
.fs4{font-size:144.000000px;}
.fs5{font-size:144.150000px;}
.fs8{font-size:166.500000px;}
.fs1{font-size:193.500000px;}
.fs6{font-size:238.500000px;}
.fs7{font-size:238.650000px;}
.fs0{font-size:432.150000px;}
.y0{bottom:0.000000px;}
.y17{bottom:57.075000px;}
.y16{bottom:89.737500px;}
.y15{bottom:120.112500px;}
.y14{bottom:152.730000px;}
.y13{bottom:185.355000px;}
.y12{bottom:218.025000px;}
.y11{bottom:250.650000px;}
.y10{bottom:283.275000px;}
.yf{bottom:315.900000px;}
.ye{bottom:347.445000px;}
.yd{bottom:381.195000px;}
.yc{bottom:418.320000px;}
.y8b{bottom:528.750000px;}
.y30{bottom:539.550000px;}
.y2f{bottom:560.925000px;}
.y8a{bottom:561.405000px;}
.y24{bottom:591.480000px;}
.y89{bottom:594.030000px;}
.y23{bottom:627.480000px;}
.y3d{bottom:642.645000px;}
.y22{bottom:663.495000px;}
.y3c{bottom:664.020000px;}
.y41{bottom:668.475000px;}
.y3b{bottom:685.380000px;}
.y40{bottom:689.850000px;}
.y21{bottom:699.480000px;}
.y3a{bottom:706.770000px;}
.y3f{bottom:711.270000px;}
.y39{bottom:728.145000px;}
.y3e{bottom:732.630000px;}
.y20{bottom:735.525000px;}
.y1f{bottom:807.525000px;}
.y1e{bottom:843.570000px;}
.y1d{bottom:879.570000px;}
.y1c{bottom:951.570000px;}
.y1b{bottom:987.600000px;}
.y1a{bottom:1023.600000px;}
.y19{bottom:1059.600000px;}
.y18{bottom:1095.645000px;}
.yb{bottom:1241.595000px;}
.y88{bottom:1335.780000px;}
.y87{bottom:1368.405000px;}
.y5a{bottom:1399.245000px;}
.y86{bottom:1401.045000px;}
.y59{bottom:1431.855000px;}
.y85{bottom:1433.655000px;}
.y58{bottom:1464.480000px;}
.y84{bottom:1465.200000px;}
.y83{bottom:1497.825000px;}
.y82{bottom:1530.450000px;}
.y38{bottom:1538.250000px;}
.y37{bottom:1559.625000px;}
.y81{bottom:1563.075000px;}
.y56{bottom:1625.730000px;}
.y2e{bottom:1637.625000px;}
.y55{bottom:1647.105000px;}
.y54{bottom:1668.525000px;}
.y2d{bottom:1670.250000px;}
.y53{bottom:1689.900000px;}
.y52{bottom:1711.275000px;}
.y2c{bottom:1734.375000px;}
.y2b{bottom:1767.030000px;}
.y2a{bottom:1832.280000px;}
.y29{bottom:1863.795000px;}
.y28{bottom:1897.575000px;}
.y27{bottom:1965.075000px;}
.y26{bottom:1997.700000px;}
.y25{bottom:2030.355000px;}
.y9{bottom:2202.570000px;}
.y36{bottom:2350.650000px;}
.y80{bottom:2390.445000px;}
.y7f{bottom:2426.445000px;}
.y7e{bottom:2462.445000px;}
.y51{bottom:2556.495000px;}
.y50{bottom:2587.980000px;}
.y4f{bottom:2620.650000px;}
.y4e{bottom:2653.275000px;}
.y4d{bottom:2685.900000px;}
.y4c{bottom:2718.525000px;}
.y4b{bottom:2750.070000px;}
.y4a{bottom:2782.695000px;}
.y49{bottom:2815.320000px;}
.y48{bottom:2849.070000px;}
.ya{bottom:2856.900000px;}
.y47{bottom:2916.600000px;}
.y46{bottom:2948.100000px;}
.y45{bottom:2980.755000px;}
.y44{bottom:3013.395000px;}
.y7b{bottom:3032.370000px;}
.y43{bottom:3046.020000px;}
.y7a{bottom:3075.150000px;}
.y42{bottom:3078.630000px;}
.y6f{bottom:3137.805000px;}
.y6e{bottom:3170.430000px;}
.y35{bottom:3185.850000px;}
.y6d{bottom:3203.100000px;}
.y34{bottom:3207.255000px;}
.y57{bottom:3212.625000px;}
.y33{bottom:3228.630000px;}
.y79{bottom:3229.500000px;}
.y32{bottom:3250.005000px;}
.y6c{bottom:3267.225000px;}
.y31{bottom:3272.505000px;}
.y78{bottom:3299.325000px;}
.y6b{bottom:3299.850000px;}
.y77{bottom:3326.325000px;}
.y6a{bottom:3332.505000px;}
.y69{bottom:3365.130000px;}
.y76{bottom:3394.455000px;}
.y68{bottom:3396.630000px;}
.y67{bottom:3429.255000px;}
.y66{bottom:3461.925000px;}
.y75{bottom:3476.880000px;}
.y65{bottom:3494.550000px;}
.y64{bottom:3527.175000px;}
.y74{bottom:3559.050000px;}
.y63{bottom:3591.330000px;}
.y62{bottom:3623.955000px;}
.y73{bottom:3641.205000px;}
.y61{bottom:3656.580000px;}
.y60{bottom:3689.205000px;}
.y5f{bottom:3720.750000px;}
.y72{bottom:3725.925000px;}
.y5e{bottom:3753.375000px;}
.y5d{bottom:3786.000000px;}
.y71{bottom:3788.625000px;}
.y70{bottom:3802.125000px;}
.y5c{bottom:3818.625000px;}
.y5b{bottom:3861.405000px;}
.y7d{bottom:3862.980000px;}
.y7c{bottom:3913.605000px;}
.y8{bottom:4022.775000px;}
.y7{bottom:4193.580000px;}
.y6{bottom:4237.455000px;}
.y5{bottom:4280.250000px;}
.y4{bottom:4323.000000px;}
.y3{bottom:4370.700000px;}
.y2{bottom:4493.280000px;}
.y1{bottom:4619.325000px;}
.h13{height:52.628906px;}
.h11{height:75.093750px;}
.h12{height:75.250195px;}
.h19{height:78.134766px;}
.h18{height:78.264990px;}
.h4{height:81.903076px;}
.hf{height:93.603516px;}
.h10{height:93.733521px;}
.h14{height:93.761719px;}
.h15{height:93.891943px;}
.hc{height:105.303955px;}
.hd{height:105.433960px;}
.he{height:105.481934px;}
.hb{height:105.612158px;}
.h9{height:112.640625px;}
.ha{height:112.797070px;}
.h1c{height:124.804688px;}
.h1b{height:125.145850px;}
.h1a{height:132.132935px;}
.h16{height:132.134766px;}
.h17{height:132.264990px;}
.h1d{height:144.305420px;}
.h8{height:144.549316px;}
.h3{height:167.954106px;}
.h7{height:207.057129px;}
.h6{height:207.187354px;}
.h5{height:212.157129px;}
.h2{height:450.718945px;}
.h0{height:5056.875000px;}
.h1{height:5057.250000px;}
.w2{width:3576.374947px;}
.w0{width:3576.375000px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.x7{left:60.224947px;}
.x1{left:61.424947px;}
.x16{left:112.874947px;}
.x6{left:114.224947px;}
.xf{left:126.899947px;}
.x22{left:168.149947px;}
.x23{left:222.194947px;}
.x20{left:260.129947px;}
.x13{left:377.099947px;}
.x4{left:431.444947px;}
.x2{left:497.024947px;}
.x21{left:600.119947px;}
.xc{left:734.654947px;}
.x24{left:867.074947px;}
.x10{left:874.994947px;}
.x8{left:1684.199947px;}
.xa{left:1703.924947px;}
.x11{left:1711.169947px;}
.x15{left:1724.579947px;}
.x1b{left:1726.649947px;}
.x9{left:1738.199947px;}
.x1f{left:1741.394947px;}
.x12{left:1744.949947px;}
.x1e{left:1750.619947px;}
.x19{left:1773.299947px;}
.x17{left:1774.349947px;}
.x1a{left:1775.654947px;}
.x1c{left:1784.969947px;}
.x1d{left:1791.119947px;}
.x3{left:2231.849947px;}
.x18{left:2325.269947px;}
.xe{left:2393.474947px;}
.x5{left:2430.374947px;}
.xb{left:2707.829947px;}
.xd{left:2741.924947px;}
.x14{left:2813.099947px;}
@media print{
.v2{vertical-align:-40.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:4.533333pt;}
.v4{vertical-align:48.000000pt;}
.v1{vertical-align:52.106667pt;}
.lsa{letter-spacing:-1.536000pt;}
.ls8{letter-spacing:-0.853333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.043200pt;}
.ls2{letter-spacing:0.341333pt;}
.lsc{letter-spacing:0.544000pt;}
.lsb{letter-spacing:0.677333pt;}
.ls0{letter-spacing:0.760800pt;}
.ls9{letter-spacing:2.074667pt;}
.ls6{letter-spacing:25.885467pt;}
.ls5{letter-spacing:26.016000pt;}
.ls4{letter-spacing:90.689867pt;}
.ls3{letter-spacing:90.730667pt;}
.ws6{word-spacing:-96.000000pt;}
.ws1{word-spacing:-43.036000pt;}
.ws2{word-spacing:-30.044000pt;}
.ws3{word-spacing:-26.688000pt;}
.ws0{word-spacing:-22.763067pt;}
.ws5{word-spacing:-21.951067pt;}
.ws4{word-spacing:-21.924000pt;}
.ws9{word-spacing:-19.515067pt;}
.ws8{word-spacing:-19.488000pt;}
.ws1c{word-spacing:-17.952000pt;}
.ws7{word-spacing:-17.792000pt;}
.wsc{word-spacing:-16.267067pt;}
.ws11{word-spacing:-16.240000pt;}
.ws1d{word-spacing:0.000000pt;}
.ws13{word-spacing:140.053333pt;}
.ws19{word-spacing:165.632000pt;}
.ws1b{word-spacing:165.706667pt;}
.wsb{word-spacing:190.909867pt;}
.wse{word-spacing:219.722667pt;}
.ws10{word-spacing:219.786667pt;}
.wsa{word-spacing:245.129333pt;}
.ws15{word-spacing:245.365333pt;}
.ws17{word-spacing:245.440000pt;}
.ws12{word-spacing:839.093333pt;}
.ws18{word-spacing:916.373467pt;}
.wsd{word-spacing:1003.229333pt;}
.wsf{word-spacing:1012.000000pt;}
.ws1a{word-spacing:1035.600000pt;}
.ws14{word-spacing:1073.559467pt;}
.ws16{word-spacing:1092.693333pt;}
._6{margin-left:-13.074667pt;}
._8{margin-left:-11.008800pt;}
._5{margin-left:-9.052800pt;}
._f{margin-left:-7.811733pt;}
._d{margin-left:-6.866400pt;}
._a{margin-left:-5.858267pt;}
._9{margin-left:-4.597733pt;}
._3{margin-left:-3.514133pt;}
._0{margin-left:-1.920667pt;}
._7{margin-left:-0.925867pt;}
._1{width:1.152400pt;}
._4{width:2.156933pt;}
._2{width:3.130000pt;}
._18{width:4.238533pt;}
._10{width:5.503867pt;}
._1e{width:12.224400pt;}
._13{width:28.578267pt;}
._1f{width:33.679067pt;}
._16{width:53.415067pt;}
._17{width:58.139333pt;}
._14{width:102.329333pt;}
._1d{width:112.017600pt;}
._15{width:145.495600pt;}
._12{width:155.871600pt;}
._e{width:165.274933pt;}
._11{width:170.076000pt;}
._c{width:172.512000pt;}
._1c{width:256.496800pt;}
._19{width:283.362933pt;}
._1b{width:336.060667pt;}
._1a{width:345.596133pt;}
._b{width:3284.772533pt;}
.fsd{font-size:64.000000pt;}
.fse{font-size:64.133333pt;}
.fs10{font-size:80.000000pt;}
.fsf{font-size:80.133333pt;}
.fs3{font-size:84.000000pt;}
.fs9{font-size:96.000000pt;}
.fsa{font-size:96.133333pt;}
.fsc{font-size:108.000000pt;}
.fsb{font-size:108.133333pt;}
.fs2{font-size:112.133333pt;}
.fs4{font-size:128.000000pt;}
.fs5{font-size:128.133333pt;}
.fs8{font-size:148.000000pt;}
.fs1{font-size:172.000000pt;}
.fs6{font-size:212.000000pt;}
.fs7{font-size:212.133333pt;}
.fs0{font-size:384.133333pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:50.733333pt;}
.y16{bottom:79.766667pt;}
.y15{bottom:106.766667pt;}
.y14{bottom:135.760000pt;}
.y13{bottom:164.760000pt;}
.y12{bottom:193.800000pt;}
.y11{bottom:222.800000pt;}
.y10{bottom:251.800000pt;}
.yf{bottom:280.800000pt;}
.ye{bottom:308.840000pt;}
.yd{bottom:338.840000pt;}
.yc{bottom:371.840000pt;}
.y8b{bottom:470.000000pt;}
.y30{bottom:479.600000pt;}
.y2f{bottom:498.600000pt;}
.y8a{bottom:499.026667pt;}
.y24{bottom:525.760000pt;}
.y89{bottom:528.026667pt;}
.y23{bottom:557.760000pt;}
.y3d{bottom:571.240000pt;}
.y22{bottom:589.773333pt;}
.y3c{bottom:590.240000pt;}
.y41{bottom:594.200000pt;}
.y3b{bottom:609.226667pt;}
.y40{bottom:613.200000pt;}
.y21{bottom:621.760000pt;}
.y3a{bottom:628.240000pt;}
.y3f{bottom:632.240000pt;}
.y39{bottom:647.240000pt;}
.y3e{bottom:651.226667pt;}
.y20{bottom:653.800000pt;}
.y1f{bottom:717.800000pt;}
.y1e{bottom:749.840000pt;}
.y1d{bottom:781.840000pt;}
.y1c{bottom:845.840000pt;}
.y1b{bottom:877.866667pt;}
.y1a{bottom:909.866667pt;}
.y19{bottom:941.866667pt;}
.y18{bottom:973.906667pt;}
.yb{bottom:1103.640000pt;}
.y88{bottom:1187.360000pt;}
.y87{bottom:1216.360000pt;}
.y5a{bottom:1243.773333pt;}
.y86{bottom:1245.373333pt;}
.y59{bottom:1272.760000pt;}
.y85{bottom:1274.360000pt;}
.y58{bottom:1301.760000pt;}
.y84{bottom:1302.400000pt;}
.y83{bottom:1331.400000pt;}
.y82{bottom:1360.400000pt;}
.y38{bottom:1367.333333pt;}
.y37{bottom:1386.333333pt;}
.y81{bottom:1389.400000pt;}
.y56{bottom:1445.093333pt;}
.y2e{bottom:1455.666667pt;}
.y55{bottom:1464.093333pt;}
.y54{bottom:1483.133333pt;}
.y2d{bottom:1484.666667pt;}
.y53{bottom:1502.133333pt;}
.y52{bottom:1521.133333pt;}
.y2c{bottom:1541.666667pt;}
.y2b{bottom:1570.693333pt;}
.y2a{bottom:1628.693333pt;}
.y29{bottom:1656.706667pt;}
.y28{bottom:1686.733333pt;}
.y27{bottom:1746.733333pt;}
.y26{bottom:1775.733333pt;}
.y25{bottom:1804.760000pt;}
.y9{bottom:1957.840000pt;}
.y36{bottom:2089.466667pt;}
.y80{bottom:2124.840000pt;}
.y7f{bottom:2156.840000pt;}
.y7e{bottom:2188.840000pt;}
.y51{bottom:2272.440000pt;}
.y50{bottom:2300.426667pt;}
.y4f{bottom:2329.466667pt;}
.y4e{bottom:2358.466667pt;}
.y4d{bottom:2387.466667pt;}
.y4c{bottom:2416.466667pt;}
.y4b{bottom:2444.506667pt;}
.y4a{bottom:2473.506667pt;}
.y49{bottom:2502.506667pt;}
.y48{bottom:2532.506667pt;}
.ya{bottom:2539.466667pt;}
.y47{bottom:2592.533333pt;}
.y46{bottom:2620.533333pt;}
.y45{bottom:2649.560000pt;}
.y44{bottom:2678.573333pt;}
.y7b{bottom:2695.440000pt;}
.y43{bottom:2707.573333pt;}
.y7a{bottom:2733.466667pt;}
.y42{bottom:2736.560000pt;}
.y6f{bottom:2789.160000pt;}
.y6e{bottom:2818.160000pt;}
.y35{bottom:2831.866667pt;}
.y6d{bottom:2847.200000pt;}
.y34{bottom:2850.893333pt;}
.y57{bottom:2855.666667pt;}
.y33{bottom:2869.893333pt;}
.y79{bottom:2870.666667pt;}
.y32{bottom:2888.893333pt;}
.y6c{bottom:2904.200000pt;}
.y31{bottom:2908.893333pt;}
.y78{bottom:2932.733333pt;}
.y6b{bottom:2933.200000pt;}
.y77{bottom:2956.733333pt;}
.y6a{bottom:2962.226667pt;}
.y69{bottom:2991.226667pt;}
.y76{bottom:3017.293333pt;}
.y68{bottom:3019.226667pt;}
.y67{bottom:3048.226667pt;}
.y66{bottom:3077.266667pt;}
.y75{bottom:3090.560000pt;}
.y65{bottom:3106.266667pt;}
.y64{bottom:3135.266667pt;}
.y74{bottom:3163.600000pt;}
.y63{bottom:3192.293333pt;}
.y62{bottom:3221.293333pt;}
.y73{bottom:3236.626667pt;}
.y61{bottom:3250.293333pt;}
.y60{bottom:3279.293333pt;}
.y5f{bottom:3307.333333pt;}
.y72{bottom:3311.933333pt;}
.y5e{bottom:3336.333333pt;}
.y5d{bottom:3365.333333pt;}
.y71{bottom:3367.666667pt;}
.y70{bottom:3379.666667pt;}
.y5c{bottom:3394.333333pt;}
.y5b{bottom:3432.360000pt;}
.y7d{bottom:3433.760000pt;}
.y7c{bottom:3478.760000pt;}
.y8{bottom:3575.800000pt;}
.y7{bottom:3727.626667pt;}
.y6{bottom:3766.626667pt;}
.y5{bottom:3804.666667pt;}
.y4{bottom:3842.666667pt;}
.y3{bottom:3885.066667pt;}
.y2{bottom:3994.026667pt;}
.y1{bottom:4106.066667pt;}
.h13{height:46.781250pt;}
.h11{height:66.750000pt;}
.h12{height:66.889063pt;}
.h19{height:69.453125pt;}
.h18{height:69.568880pt;}
.h4{height:72.802734pt;}
.hf{height:83.203125pt;}
.h10{height:83.318685pt;}
.h14{height:83.343750pt;}
.h15{height:83.459505pt;}
.hc{height:93.603516pt;}
.hd{height:93.719076pt;}
.he{height:93.761719pt;}
.hb{height:93.877474pt;}
.h9{height:100.125000pt;}
.ha{height:100.264062pt;}
.h1c{height:110.937500pt;}
.h1b{height:111.240755pt;}
.h1a{height:117.451497pt;}
.h16{height:117.453125pt;}
.h17{height:117.568880pt;}
.h1d{height:128.271484pt;}
.h8{height:128.488281pt;}
.h3{height:149.292539pt;}
.h7{height:184.050781pt;}
.h6{height:184.166536pt;}
.h5{height:188.584115pt;}
.h2{height:400.639062pt;}
.h0{height:4495.000000pt;}
.h1{height:4495.333333pt;}
.w2{width:3178.999953pt;}
.w0{width:3179.000000pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.x7{left:53.533286pt;}
.x1{left:54.599953pt;}
.x16{left:100.333286pt;}
.x6{left:101.533286pt;}
.xf{left:112.799953pt;}
.x22{left:149.466619pt;}
.x23{left:197.506619pt;}
.x20{left:231.226619pt;}
.x13{left:335.199953pt;}
.x4{left:383.506619pt;}
.x2{left:441.799953pt;}
.x21{left:533.439953pt;}
.xc{left:653.026619pt;}
.x24{left:770.733286pt;}
.x10{left:777.773286pt;}
.x8{left:1497.066619pt;}
.xa{left:1514.599953pt;}
.x11{left:1521.039953pt;}
.x15{left:1532.959953pt;}
.x1b{left:1534.799953pt;}
.x9{left:1545.066619pt;}
.x1f{left:1547.906619pt;}
.x12{left:1551.066619pt;}
.x1e{left:1556.106619pt;}
.x19{left:1576.266619pt;}
.x17{left:1577.199953pt;}
.x1a{left:1578.359953pt;}
.x1c{left:1586.639953pt;}
.x1d{left:1592.106619pt;}
.x3{left:1983.866619pt;}
.x18{left:2066.906619pt;}
.xe{left:2127.533286pt;}
.x5{left:2160.333286pt;}
.xb{left:2406.959953pt;}
.xd{left:2437.266619pt;}
.x14{left:2500.533286pt;}
}




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