
    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_b9eae8834f09fe22e20f54cf.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_c4b6457901fa47cc3930f4a8.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c53037aed880b423b4760efa.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_111edd957cf6ba21f728e7f5.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_500d8e6ea8bf33d28f21d7f1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_094e66bd7ef012bc428bee4f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_e2949f02a6ebb20746d5adbe.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:52.200000px;}
.v1{vertical-align:101.700000px;}
.lsd{letter-spacing:-1.842000px;}
.ls14{letter-spacing:-1.650000px;}
.ls15{letter-spacing:-0.900000px;}
.lsc{letter-spacing:-0.816000px;}
.lsa{letter-spacing:-0.786000px;}
.ls11{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.202800px;}
.ls10{letter-spacing:-0.180000px;}
.ls9{letter-spacing:0.000000px;}
.lse{letter-spacing:0.571800px;}
.lsf{letter-spacing:0.612000px;}
.ls4{letter-spacing:1.008000px;}
.ls18{letter-spacing:1.086000px;}
.ls16{letter-spacing:1.218000px;}
.ls3{letter-spacing:1.236000px;}
.ls12{letter-spacing:1.260000px;}
.ls17{letter-spacing:1.572000px;}
.ls13{letter-spacing:1.980000px;}
.ls7{letter-spacing:59.193900px;}
.ls8{letter-spacing:59.313000px;}
.ls1{letter-spacing:98.376900px;}
.ls0{letter-spacing:98.496000px;}
.ls2{letter-spacing:98.676000px;}
.ls6{letter-spacing:155.016000px;}
.ls5{letter-spacing:233.616000px;}
.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;}
}
.ws1c{word-spacing:-104.040000px;}
.ws28{word-spacing:-65.121900px;}
.ws31{word-spacing:-60.036900px;}
.ws0{word-spacing:-48.849900px;}
.ws10{word-spacing:-48.816000px;}
.wse{word-spacing:-43.731000px;}
.ws27{word-spacing:-40.713900px;}
.ws26{word-spacing:-40.680000px;}
.ws2c{word-spacing:-37.662900px;}
.ws1{word-spacing:-37.629000px;}
.wsf{word-spacing:-32.544000px;}
.ws32{word-spacing:-27.492900px;}
.ws9{word-spacing:-27.459000px;}
.ws7{word-spacing:-26.673000px;}
.wsb{word-spacing:-2.673000px;}
.ws14{word-spacing:-2.076000px;}
.ws15{word-spacing:-1.308000px;}
.ws29{word-spacing:-1.104000px;}
.wsc{word-spacing:-1.077000px;}
.ws25{word-spacing:-0.180150px;}
.ws16{word-spacing:-0.060000px;}
.ws33{word-spacing:0.000000px;}
.ws17{word-spacing:0.324000px;}
.ws18{word-spacing:0.660000px;}
.wsa{word-spacing:1.519500px;}
.wsd{word-spacing:3.603000px;}
.ws2{word-spacing:4.797000px;}
.ws6{word-spacing:5.025000px;}
.ws8{word-spacing:5.266500px;}
.ws4{word-spacing:7.416000px;}
.ws5{word-spacing:7.559400px;}
.ws3{word-spacing:8.052000px;}
.ws1b{word-spacing:8.340000px;}
.ws1a{word-spacing:8.532000px;}
.ws19{word-spacing:9.396000px;}
.ws1e{word-spacing:73.680000px;}
.ws24{word-spacing:76.380000px;}
.ws11{word-spacing:78.036000px;}
.ws13{word-spacing:78.864000px;}
.ws1d{word-spacing:79.200000px;}
.ws12{word-spacing:79.908000px;}
.ws1f{word-spacing:80.460000px;}
.ws23{word-spacing:104.640000px;}
.ws22{word-spacing:133.800000px;}
.ws20{word-spacing:135.240000px;}
.ws21{word-spacing:137.250000px;}
.ws2d{word-spacing:1146.930750px;}
.ws30{word-spacing:1189.710300px;}
.ws2f{word-spacing:1192.665000px;}
.ws2a{word-spacing:1226.983500px;}
.ws2b{word-spacing:1464.858000px;}
.ws2e{word-spacing:1464.887100px;}
._9{margin-left:-18.224400px;}
._2{margin-left:-15.126300px;}
._1a{margin-left:-13.268100px;}
._3{margin-left:-11.524800px;}
._1c{margin-left:-9.610350px;}
._0{margin-left:-7.923300px;}
._4{margin-left:-6.482700px;}
._7{margin-left:-5.040840px;}
._d{margin-left:-4.021800px;}
._1{margin-left:-2.881200px;}
._6{margin-left:-1.440600px;}
._8{width:1.116450px;}
._5{width:2.160900px;}
._c{width:3.853650px;}
._a{width:4.874820px;}
._11{width:26.054250px;}
._12{width:27.169650px;}
._10{width:33.563100px;}
._e{width:35.111100px;}
._f{width:36.315300px;}
._1b{width:38.769090px;}
._15{width:59.316000px;}
._b{width:74.764200px;}
._19{width:77.673000px;}
._17{width:105.852390px;}
._18{width:108.493500px;}
._13{width:127.970100px;}
._14{width:129.519600px;}
._16{width:135.227250px;}
._21{width:492.378000px;}
._22{width:722.358600px;}
._24{width:786.873300px;}
._27{width:796.695300px;}
._26{width:858.772200px;}
._25{width:868.304850px;}
._20{width:886.789200px;}
._23{width:959.345400px;}
._1e{width:1117.234500px;}
._1d{width:1280.269200px;}
._1f{width:1282.421700px;}
._28{width:1685.637900px;}
.fc3{color:transparent;}
.fc2{color:rgb(23,43,77);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(30,100,200);}
.fs8{font-size:108.000000px;}
.fs5{font-size:121.500000px;}
.fse{font-size:121.650000px;}
.fs7{font-size:144.000000px;}
.fs9{font-size:144.150000px;}
.fs4{font-size:166.500000px;}
.fs10{font-size:166.650000px;}
.fsc{font-size:180.000000px;}
.fsd{font-size:180.150000px;}
.fs6{font-size:193.500000px;}
.fsb{font-size:216.000000px;}
.fs3{font-size:216.150000px;}
.fs15{font-size:229.500000px;}
.fs14{font-size:229.650000px;}
.fs13{font-size:265.500000px;}
.fs12{font-size:265.650000px;}
.fsf{font-size:288.150000px;}
.fs2{font-size:324.150000px;}
.fs11{font-size:409.500000px;}
.fsa{font-size:409.650000px;}
.fs1{font-size:720.120000px;}
.fs0{font-size:720.300000px;}
.y0{bottom:0.000000px;}
.y5{bottom:76.687500px;}
.y7{bottom:98.062500px;}
.y6{bottom:134.062500px;}
.y4{bottom:134.662500px;}
.y6a{bottom:350.970000px;}
.y6d{bottom:432.750000px;}
.y6f{bottom:472.980000px;}
.y68{bottom:504.825000px;}
.y6e{bottom:508.995000px;}
.y67{bottom:584.700000px;}
.y6c{bottom:616.530000px;}
.y66{bottom:663.480000px;}
.y65{bottom:743.370000px;}
.y69{bottom:746.475000px;}
.y64{bottom:822.150000px;}
.y6b{bottom:824.625000px;}
.y63{bottom:995.400000px;}
.y54{bottom:995.925000px;}
.y62{bottom:1379.355000px;}
.y5b{bottom:1426.575000px;}
.y61{bottom:1462.950000px;}
.y5a{bottom:1491.825000px;}
.y60{bottom:1546.530000px;}
.y59{bottom:1557.075000px;}
.y58{bottom:1621.245000px;}
.y5f{bottom:1637.205000px;}
.y57{bottom:1686.480000px;}
.y5e{bottom:1727.895000px;}
.y56{bottom:1750.650000px;}
.y5d{bottom:1811.475000px;}
.y55{bottom:1815.900000px;}
.y5c{bottom:1889.775000px;}
.y53{bottom:1925.475000px;}
.y40{bottom:2200.005000px;}
.y3f{bottom:2236.020000px;}
.y3e{bottom:2272.020000px;}
.y51{bottom:2292.750000px;}
.y48{bottom:2307.075000px;}
.y3d{bottom:2308.050000px;}
.y3c{bottom:2344.050000px;}
.y47{bottom:2349.825000px;}
.y50{bottom:2370.675000px;}
.y3b{bottom:2380.050000px;}
.y46{bottom:2393.730000px;}
.y49{bottom:2403.675000px;}
.y3a{bottom:2416.050000px;}
.y45{bottom:2443.245000px;}
.y4f{bottom:2448.645000px;}
.y39{bottom:2452.080000px;}
.y38{bottom:2488.080000px;}
.y44{bottom:2508.480000px;}
.y37{bottom:2524.095000px;}
.y4e{bottom:2536.575000px;}
.y36{bottom:2560.125000px;}
.y43{bottom:2572.650000px;}
.y4d{bottom:2587.200000px;}
.y35{bottom:2596.125000px;}
.y34{bottom:2632.125000px;}
.y42{bottom:2637.900000px;}
.y33{bottom:2668.125000px;}
.y4c{bottom:2675.370000px;}
.y32{bottom:2704.170000px;}
.y31{bottom:2740.170000px;}
.y41{bottom:2742.105000px;}
.y4b{bottom:2753.325000px;}
.y4a{bottom:2847.825000px;}
.y52{bottom:2850.150000px;}
.y30{bottom:3204.105000px;}
.y16{bottom:3208.980000px;}
.y2a{bottom:3231.105000px;}
.y20{bottom:3249.780000px;}
.y15{bottom:3252.855000px;}
.y2f{bottom:3258.105000px;}
.y29{bottom:3285.105000px;}
.y14{bottom:3295.605000px;}
.y1f{bottom:3303.825000px;}
.y2e{bottom:3312.105000px;}
.y13{bottom:3338.400000px;}
.y28{bottom:3339.105000px;}
.y1e{bottom:3365.700000px;}
.y2d{bottom:3366.150000px;}
.y12{bottom:3380.025000px;}
.y27{bottom:3393.150000px;}
.y11{bottom:3412.650000px;}
.y1d{bottom:3418.575000px;}
.y2c{bottom:3420.150000px;}
.y26{bottom:3447.150000px;}
.y10{bottom:3450.900000px;}
.y2b{bottom:3474.180000px;}
.y1c{bottom:3483.855000px;}
.yf{bottom:3491.430000px;}
.ye{bottom:3524.055000px;}
.yd{bottom:3560.055000px;}
.y24{bottom:3589.230000px;}
.yc{bottom:3592.680000px;}
.y1b{bottom:3624.525000px;}
.yb{bottom:3630.975000px;}
.y23{bottom:3653.400000px;}
.ya{bottom:3672.600000px;}
.y1a{bottom:3689.805000px;}
.y9{bottom:3709.725000px;}
.y19{bottom:3753.930000px;}
.y22{bottom:3782.805000px;}
.y8{bottom:3788.505000px;}
.y18{bottom:3819.225000px;}
.y21{bottom:3848.055000px;}
.y17{bottom:3951.375000px;}
.y25{bottom:3951.675000px;}
.y3{bottom:4215.105000px;}
.y2{bottom:4357.155000px;}
.y1{bottom:4573.230000px;}
.h9{height:107.419922px;}
.h6{height:120.847412px;}
.h13{height:120.996606px;}
.h1f{height:124.406982px;}
.h1d{height:124.560571px;}
.hf{height:137.460938px;}
.h10{height:137.575488px;}
.h15{height:143.226562px;}
.h16{height:143.375757px;}
.h8{height:147.445312px;}
.ha{height:147.598901px;}
.h5{height:165.605713px;}
.h19{height:165.754907px;}
.h17{height:170.483643px;}
.h12{height:184.306641px;}
.h11{height:184.460229px;}
.h7{height:198.129639px;}
.hc{height:214.839844px;}
.hd{height:214.989038px;}
.he{height:221.167969px;}
.h4{height:221.321558px;}
.h1c{height:264.073975px;}
.h1b{height:264.223169px;}
.h18{height:267.305713px;}
.h1e{height:280.467334px;}
.h14{height:286.602319px;}
.h3{height:331.905542px;}
.h1a{height:407.300537px;}
.hb{height:407.449731px;}
.h2{height:716.252168px;}
.h1{height:716.431201px;}
.h0{height:5103.000000px;}
.w2{width:3571.874947px;}
.w0{width:3571.875000px;}
.w1{width:3572.250000px;}
.x0{left:0.000000px;}
.x5{left:81.712447px;}
.x4{left:91.987447px;}
.x12{left:134.099947px;}
.x15{left:177.869947px;}
.x13{left:201.644947px;}
.x22{left:230.699947px;}
.x2e{left:245.399947px;}
.x14{left:256.199947px;}
.x1{left:257.549947px;}
.x1a{left:266.099947px;}
.x19{left:403.694947px;}
.x6{left:630.254947px;}
.x3{left:810.629947px;}
.x1b{left:918.449947px;}
.x16{left:1109.954947px;}
.x18{left:1136.579947px;}
.x2{left:1143.899947px;}
.x17{left:1150.454947px;}
.x24{left:1390.919947px;}
.x25{left:1478.099947px;}
.x26{left:1492.199947px;}
.xf{left:1884.104947px;}
.x10{left:1897.274947px;}
.x23{left:1955.279947px;}
.x11{left:1964.774947px;}
.x1c{left:1966.274947px;}
.xe{left:1998.494947px;}
.x20{left:2033.099947px;}
.x21{left:2044.574947px;}
.x1e{left:2053.274947px;}
.x1f{left:2057.024947px;}
.x1d{left:2093.324947px;}
.x30{left:2105.474947px;}
.x33{left:2145.794947px;}
.x32{left:2156.924947px;}
.x31{left:2169.479947px;}
.x29{left:2388.644947px;}
.x2a{left:2405.219947px;}
.x2d{left:2407.349947px;}
.x2c{left:2423.249947px;}
.x2b{left:2425.799947px;}
.x28{left:2484.854947px;}
.x27{left:2690.549947px;}
.x9{left:2823.404947px;}
.x2f{left:2872.349947px;}
.x35{left:2920.604947px;}
.x8{left:2938.574947px;}
.x34{left:2954.954947px;}
.xa{left:2969.354947px;}
.xb{left:2995.199947px;}
.xc{left:3000.869947px;}
.x7{left:3021.329947px;}
.xd{left:3041.174947px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:46.400000pt;}
.v1{vertical-align:90.400000pt;}
.lsd{letter-spacing:-1.637333pt;}
.ls14{letter-spacing:-1.466667pt;}
.ls15{letter-spacing:-0.800000pt;}
.lsc{letter-spacing:-0.725333pt;}
.lsa{letter-spacing:-0.698667pt;}
.ls11{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.180267pt;}
.ls10{letter-spacing:-0.160000pt;}
.ls9{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.508267pt;}
.lsf{letter-spacing:0.544000pt;}
.ls4{letter-spacing:0.896000pt;}
.ls18{letter-spacing:0.965333pt;}
.ls16{letter-spacing:1.082667pt;}
.ls3{letter-spacing:1.098667pt;}
.ls12{letter-spacing:1.120000pt;}
.ls17{letter-spacing:1.397333pt;}
.ls13{letter-spacing:1.760000pt;}
.ls7{letter-spacing:52.616800pt;}
.ls8{letter-spacing:52.722667pt;}
.ls1{letter-spacing:87.446133pt;}
.ls0{letter-spacing:87.552000pt;}
.ls2{letter-spacing:87.712000pt;}
.ls6{letter-spacing:137.792000pt;}
.ls5{letter-spacing:207.658667pt;}
.ws1c{word-spacing:-92.480000pt;}
.ws28{word-spacing:-57.886133pt;}
.ws31{word-spacing:-53.366133pt;}
.ws0{word-spacing:-43.422133pt;}
.ws10{word-spacing:-43.392000pt;}
.wse{word-spacing:-38.872000pt;}
.ws27{word-spacing:-36.190133pt;}
.ws26{word-spacing:-36.160000pt;}
.ws2c{word-spacing:-33.478133pt;}
.ws1{word-spacing:-33.448000pt;}
.wsf{word-spacing:-28.928000pt;}
.ws32{word-spacing:-24.438133pt;}
.ws9{word-spacing:-24.408000pt;}
.ws7{word-spacing:-23.709333pt;}
.wsb{word-spacing:-2.376000pt;}
.ws14{word-spacing:-1.845333pt;}
.ws15{word-spacing:-1.162667pt;}
.ws29{word-spacing:-0.981333pt;}
.wsc{word-spacing:-0.957333pt;}
.ws25{word-spacing:-0.160133pt;}
.ws16{word-spacing:-0.053333pt;}
.ws33{word-spacing:0.000000pt;}
.ws17{word-spacing:0.288000pt;}
.ws18{word-spacing:0.586667pt;}
.wsa{word-spacing:1.350667pt;}
.wsd{word-spacing:3.202667pt;}
.ws2{word-spacing:4.264000pt;}
.ws6{word-spacing:4.466667pt;}
.ws8{word-spacing:4.681333pt;}
.ws4{word-spacing:6.592000pt;}
.ws5{word-spacing:6.719467pt;}
.ws3{word-spacing:7.157333pt;}
.ws1b{word-spacing:7.413333pt;}
.ws1a{word-spacing:7.584000pt;}
.ws19{word-spacing:8.352000pt;}
.ws1e{word-spacing:65.493333pt;}
.ws24{word-spacing:67.893333pt;}
.ws11{word-spacing:69.365333pt;}
.ws13{word-spacing:70.101333pt;}
.ws1d{word-spacing:70.400000pt;}
.ws12{word-spacing:71.029333pt;}
.ws1f{word-spacing:71.520000pt;}
.ws23{word-spacing:93.013333pt;}
.ws22{word-spacing:118.933333pt;}
.ws20{word-spacing:120.213333pt;}
.ws21{word-spacing:122.000000pt;}
.ws2d{word-spacing:1019.494000pt;}
.ws30{word-spacing:1057.520267pt;}
.ws2f{word-spacing:1060.146667pt;}
.ws2a{word-spacing:1090.652000pt;}
.ws2b{word-spacing:1302.096000pt;}
.ws2e{word-spacing:1302.121867pt;}
._9{margin-left:-16.199467pt;}
._2{margin-left:-13.445600pt;}
._1a{margin-left:-11.793867pt;}
._3{margin-left:-10.244267pt;}
._1c{margin-left:-8.542533pt;}
._0{margin-left:-7.042933pt;}
._4{margin-left:-5.762400pt;}
._7{margin-left:-4.480747pt;}
._d{margin-left:-3.574933pt;}
._1{margin-left:-2.561067pt;}
._6{margin-left:-1.280533pt;}
._8{width:0.992400pt;}
._5{width:1.920800pt;}
._c{width:3.425467pt;}
._a{width:4.333173pt;}
._11{width:23.159333pt;}
._12{width:24.150800pt;}
._10{width:29.833867pt;}
._e{width:31.209867pt;}
._f{width:32.280267pt;}
._1b{width:34.461413pt;}
._15{width:52.725333pt;}
._b{width:66.457067pt;}
._19{width:69.042667pt;}
._17{width:94.091013pt;}
._18{width:96.438667pt;}
._13{width:113.751200pt;}
._14{width:115.128533pt;}
._16{width:120.202000pt;}
._21{width:437.669333pt;}
._22{width:642.096533pt;}
._24{width:699.442933pt;}
._27{width:708.173600pt;}
._26{width:763.353067pt;}
._25{width:771.826533pt;}
._20{width:788.257067pt;}
._23{width:852.751467pt;}
._1e{width:993.097333pt;}
._1d{width:1138.017067pt;}
._1f{width:1139.930400pt;}
._28{width:1498.344800pt;}
.fs8{font-size:96.000000pt;}
.fs5{font-size:108.000000pt;}
.fse{font-size:108.133333pt;}
.fs7{font-size:128.000000pt;}
.fs9{font-size:128.133333pt;}
.fs4{font-size:148.000000pt;}
.fs10{font-size:148.133333pt;}
.fsc{font-size:160.000000pt;}
.fsd{font-size:160.133333pt;}
.fs6{font-size:172.000000pt;}
.fsb{font-size:192.000000pt;}
.fs3{font-size:192.133333pt;}
.fs15{font-size:204.000000pt;}
.fs14{font-size:204.133333pt;}
.fs13{font-size:236.000000pt;}
.fs12{font-size:236.133333pt;}
.fsf{font-size:256.133333pt;}
.fs2{font-size:288.133333pt;}
.fs11{font-size:364.000000pt;}
.fsa{font-size:364.133333pt;}
.fs1{font-size:640.106667pt;}
.fs0{font-size:640.266667pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:68.166667pt;}
.y7{bottom:87.166667pt;}
.y6{bottom:119.166667pt;}
.y4{bottom:119.700000pt;}
.y6a{bottom:311.973333pt;}
.y6d{bottom:384.666667pt;}
.y6f{bottom:420.426667pt;}
.y68{bottom:448.733333pt;}
.y6e{bottom:452.440000pt;}
.y67{bottom:519.733333pt;}
.y6c{bottom:548.026667pt;}
.y66{bottom:589.760000pt;}
.y65{bottom:660.773333pt;}
.y69{bottom:663.533333pt;}
.y64{bottom:730.800000pt;}
.y6b{bottom:733.000000pt;}
.y63{bottom:884.800000pt;}
.y54{bottom:885.266667pt;}
.y62{bottom:1226.093333pt;}
.y5b{bottom:1268.066667pt;}
.y61{bottom:1300.400000pt;}
.y5a{bottom:1326.066667pt;}
.y60{bottom:1374.693333pt;}
.y59{bottom:1384.066667pt;}
.y58{bottom:1441.106667pt;}
.y5f{bottom:1455.293333pt;}
.y57{bottom:1499.093333pt;}
.y5e{bottom:1535.906667pt;}
.y56{bottom:1556.133333pt;}
.y5d{bottom:1610.200000pt;}
.y55{bottom:1614.133333pt;}
.y5c{bottom:1679.800000pt;}
.y53{bottom:1711.533333pt;}
.y40{bottom:1955.560000pt;}
.y3f{bottom:1987.573333pt;}
.y3e{bottom:2019.573333pt;}
.y51{bottom:2038.000000pt;}
.y48{bottom:2050.733333pt;}
.y3d{bottom:2051.600000pt;}
.y3c{bottom:2083.600000pt;}
.y47{bottom:2088.733333pt;}
.y50{bottom:2107.266667pt;}
.y3b{bottom:2115.600000pt;}
.y46{bottom:2127.760000pt;}
.y49{bottom:2136.600000pt;}
.y3a{bottom:2147.600000pt;}
.y45{bottom:2171.773333pt;}
.y4f{bottom:2176.573333pt;}
.y39{bottom:2179.626667pt;}
.y38{bottom:2211.626667pt;}
.y44{bottom:2229.760000pt;}
.y37{bottom:2243.640000pt;}
.y4e{bottom:2254.733333pt;}
.y36{bottom:2275.666667pt;}
.y43{bottom:2286.800000pt;}
.y4d{bottom:2299.733333pt;}
.y35{bottom:2307.666667pt;}
.y34{bottom:2339.666667pt;}
.y42{bottom:2344.800000pt;}
.y33{bottom:2371.666667pt;}
.y4c{bottom:2378.106667pt;}
.y32{bottom:2403.706667pt;}
.y31{bottom:2435.706667pt;}
.y41{bottom:2437.426667pt;}
.y4b{bottom:2447.400000pt;}
.y4a{bottom:2531.400000pt;}
.y52{bottom:2533.466667pt;}
.y30{bottom:2848.093333pt;}
.y16{bottom:2852.426667pt;}
.y2a{bottom:2872.093333pt;}
.y20{bottom:2888.693333pt;}
.y15{bottom:2891.426667pt;}
.y2f{bottom:2896.093333pt;}
.y29{bottom:2920.093333pt;}
.y14{bottom:2929.426667pt;}
.y1f{bottom:2936.733333pt;}
.y2e{bottom:2944.093333pt;}
.y13{bottom:2967.466667pt;}
.y28{bottom:2968.093333pt;}
.y1e{bottom:2991.733333pt;}
.y2d{bottom:2992.133333pt;}
.y12{bottom:3004.466667pt;}
.y27{bottom:3016.133333pt;}
.y11{bottom:3033.466667pt;}
.y1d{bottom:3038.733333pt;}
.y2c{bottom:3040.133333pt;}
.y26{bottom:3064.133333pt;}
.y10{bottom:3067.466667pt;}
.y2b{bottom:3088.160000pt;}
.y1c{bottom:3096.760000pt;}
.yf{bottom:3103.493333pt;}
.ye{bottom:3132.493333pt;}
.yd{bottom:3164.493333pt;}
.y24{bottom:3190.426667pt;}
.yc{bottom:3193.493333pt;}
.y1b{bottom:3221.800000pt;}
.yb{bottom:3227.533333pt;}
.y23{bottom:3247.466667pt;}
.ya{bottom:3264.533333pt;}
.y1a{bottom:3279.826667pt;}
.y9{bottom:3297.533333pt;}
.y19{bottom:3336.826667pt;}
.y22{bottom:3362.493333pt;}
.y8{bottom:3367.560000pt;}
.y18{bottom:3394.866667pt;}
.y21{bottom:3420.493333pt;}
.y17{bottom:3512.333333pt;}
.y25{bottom:3512.600000pt;}
.y3{bottom:3746.760000pt;}
.y2{bottom:3873.026667pt;}
.y1{bottom:4065.093333pt;}
.h9{height:95.484375pt;}
.h6{height:107.419922pt;}
.h13{height:107.552539pt;}
.h1f{height:110.583984pt;}
.h1d{height:110.720508pt;}
.hf{height:122.187500pt;}
.h10{height:122.289323pt;}
.h15{height:127.312500pt;}
.h16{height:127.445117pt;}
.h8{height:131.062500pt;}
.ha{height:131.199023pt;}
.h5{height:147.205078pt;}
.h19{height:147.337695pt;}
.h17{height:151.541016pt;}
.h12{height:163.828125pt;}
.h11{height:163.964648pt;}
.h7{height:176.115234pt;}
.hc{height:190.968750pt;}
.hd{height:191.101367pt;}
.he{height:196.593750pt;}
.h4{height:196.730273pt;}
.h1c{height:234.732422pt;}
.h1b{height:234.865039pt;}
.h18{height:237.605078pt;}
.h1e{height:249.304297pt;}
.h14{height:254.757617pt;}
.h3{height:295.027148pt;}
.h1a{height:362.044922pt;}
.hb{height:362.177539pt;}
.h2{height:636.668594pt;}
.h1{height:636.827734pt;}
.h0{height:4536.000000pt;}
.w2{width:3174.999953pt;}
.w0{width:3175.000000pt;}
.w1{width:3175.333333pt;}
.x0{left:0.000000pt;}
.x5{left:72.633286pt;}
.x4{left:81.766619pt;}
.x12{left:119.199953pt;}
.x15{left:158.106619pt;}
.x13{left:179.239953pt;}
.x22{left:205.066619pt;}
.x2e{left:218.133286pt;}
.x14{left:227.733286pt;}
.x1{left:228.933286pt;}
.x1a{left:236.533286pt;}
.x19{left:358.839953pt;}
.x6{left:560.226619pt;}
.x3{left:720.559953pt;}
.x1b{left:816.399953pt;}
.x16{left:986.626619pt;}
.x18{left:1010.293286pt;}
.x2{left:1016.799953pt;}
.x17{left:1022.626619pt;}
.x24{left:1236.373286pt;}
.x25{left:1313.866619pt;}
.x26{left:1326.399953pt;}
.xf{left:1674.759953pt;}
.x10{left:1686.466619pt;}
.x23{left:1738.026619pt;}
.x11{left:1746.466619pt;}
.x1c{left:1747.799953pt;}
.xe{left:1776.439953pt;}
.x20{left:1807.199953pt;}
.x21{left:1817.399953pt;}
.x1e{left:1825.133286pt;}
.x1f{left:1828.466619pt;}
.x1d{left:1860.733286pt;}
.x30{left:1871.533286pt;}
.x33{left:1907.373286pt;}
.x32{left:1917.266619pt;}
.x31{left:1928.426619pt;}
.x29{left:2123.239953pt;}
.x2a{left:2137.973286pt;}
.x2d{left:2139.866619pt;}
.x2c{left:2153.999953pt;}
.x2b{left:2156.266619pt;}
.x28{left:2208.759953pt;}
.x27{left:2391.599953pt;}
.x9{left:2509.693286pt;}
.x2f{left:2553.199953pt;}
.x35{left:2596.093286pt;}
.x8{left:2612.066619pt;}
.x34{left:2626.626619pt;}
.xa{left:2639.426619pt;}
.xb{left:2662.399953pt;}
.xc{left:2667.439953pt;}
.x7{left:2685.626619pt;}
.xd{left:2703.266619pt;}
}




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