
    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_6cbfad0f592485b5d48c2aaa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2c1da153374993ba7a06f07e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.978000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a370950d6e8cfe484f7502ca.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.978000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.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_450f3e9d61b3c8d1bb83b18b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.984027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b5d1b0ffeffb531b994757a5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_822d5275672b115fc100cc40.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a901804a3d0d8c8dbab16478.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-72.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:90.000000px;}
.lsa{letter-spacing:-0.666000px;}
.ls11{letter-spacing:-0.384000px;}
.lsf{letter-spacing:-0.319800px;}
.lsb{letter-spacing:-0.310800px;}
.lsd{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.223800px;}
.lse{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.144000px;}
.ls9{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.000006px;}
.ls12{letter-spacing:0.247800px;}
.ls8{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.311040px;}
.ls2{letter-spacing:0.360000px;}
.ls4{letter-spacing:49.248000px;}
.ls3{letter-spacing:82.857600px;}
.ls5{letter-spacing:96.048000px;}
.ls1{letter-spacing:136.845600px;}
.ls6{letter-spacing:136.857600px;}
.ls7{letter-spacing:156.577248px;}
.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;}
}
.ws4{word-spacing:-108.000000px;}
.ws0{word-spacing:-55.644480px;}
.ws1{word-spacing:-45.036000px;}
.ws8{word-spacing:-40.320000px;}
.wsc{word-spacing:-40.032006px;}
.ws2{word-spacing:-40.032000px;}
.ws7{word-spacing:-39.888000px;}
.wsa{word-spacing:-39.848232px;}
.ws9{word-spacing:-39.752232px;}
.ws6{word-spacing:-39.744000px;}
.wsb{word-spacing:-39.688032px;}
.ws3{word-spacing:-35.028000px;}
.ws5{word-spacing:-33.426720px;}
.wsd{word-spacing:0.000000px;}
._6{margin-left:-26.336880px;}
._7{margin-left:-22.143360px;}
._8{margin-left:-15.840000px;}
._9{margin-left:-13.248000px;}
._a{margin-left:-11.088000px;}
._b{margin-left:-9.509040px;}
._1{margin-left:-7.975440px;}
._d{margin-left:-6.733440px;}
._3{margin-left:-5.104080px;}
._c{margin-left:-3.744000px;}
._5{margin-left:-2.723280px;}
._4{margin-left:-1.200960px;}
._0{width:1.259280px;}
._2{width:2.518560px;}
._1c{width:5.760000px;}
._1d{width:6.768000px;}
._22{width:8.388000px;}
._1b{width:10.656000px;}
._20{width:12.564000px;}
._21{width:13.680000px;}
._13{width:22.176000px;}
._14{width:23.245680px;}
._1e{width:24.282720px;}
._11{width:45.360000px;}
._18{width:46.512000px;}
._19{width:47.964720px;}
._f{width:49.140720px;}
._e{width:51.827280px;}
._1f{width:54.419280px;}
._12{width:55.872000px;}
._10{width:72.144000px;}
._1a{width:83.988720px;}
._16{width:85.776960px;}
._15{width:86.832000px;}
._17{width:144.756720px;}
.fc3{color:rgb(0,91,127);}
.fc1{color:rgb(23,156,125);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsc{font-size:108.000000px;}
.fsd{font-size:120.240000px;}
.fsa{font-size:126.000000px;}
.fsb{font-size:126.144000px;}
.fse{font-size:129.744000px;}
.fs8{font-size:144.000000px;}
.fs9{font-size:144.144000px;}
.fs3{font-size:159.840000px;}
.fs6{font-size:162.000000px;}
.fs5{font-size:162.144000px;}
.fs7{font-size:172.800000px;}
.fs2{font-size:200.160000px;}
.fs4{font-size:239.760000px;}
.fs1{font-size:300.240000px;}
.fs0{font-size:419.760000px;}
.y0{bottom:0.000000px;}
.y34{bottom:121.320000px;}
.y65{bottom:150.150000px;}
.y2e{bottom:168.045000px;}
.y64{bottom:182.550000px;}
.y63{bottom:214.950000px;}
.y3a{bottom:215.820000px;}
.y56{bottom:221.220000px;}
.y4f{bottom:232.020000px;}
.y4d{bottom:234.690000px;}
.y32{bottom:234.720000px;}
.y62{bottom:247.350000px;}
.y31{bottom:272.520000px;}
.y61{bottom:279.750000px;}
.y60{bottom:312.150000px;}
.y59{bottom:348.090000px;}
.y39{bottom:348.120000px;}
.y55{bottom:348.270000px;}
.y44{bottom:348.300000px;}
.y53{bottom:383.220000px;}
.y58{bottom:385.890000px;}
.y37{bottom:385.920000px;}
.y54{bottom:386.070000px;}
.y43{bottom:386.100000px;}
.y47{bottom:394.020000px;}
.y57{bottom:423.690000px;}
.y36{bottom:423.720000px;}
.y5f{bottom:423.870000px;}
.y42{bottom:423.900000px;}
.y52{bottom:461.670000px;}
.y4b{bottom:461.700000px;}
.y5e{bottom:493.890000px;}
.y51{bottom:499.470000px;}
.y4a{bottom:499.500000px;}
.y5d{bottom:531.690000px;}
.y4c{bottom:534.420000px;}
.y6d{bottom:534.705000px;}
.y50{bottom:537.270000px;}
.y49{bottom:537.300000px;}
.y46{bottom:545.220000px;}
.y5c{bottom:569.490000px;}
.y6c{bottom:570.705000px;}
.y48{bottom:575.100000px;}
.y6b{bottom:606.705000px;}
.y5b{bottom:607.290000px;}
.y6a{bottom:642.750000px;}
.y5a{bottom:645.090000px;}
.ya0{bottom:653.865000px;}
.y69{bottom:678.750000px;}
.y9f{bottom:697.065000px;}
.y68{bottom:716.370000px;}
.y9e{bottom:740.265000px;}
.y67{bottom:759.570000px;}
.y4e{bottom:769.110000px;}
.y41{bottom:801.900000px;}
.y66{bottom:802.770000px;}
.y35{bottom:820.620000px;}
.y40{bottom:839.700000px;}
.y3f{bottom:877.500000px;}
.y3e{bottom:915.300000px;}
.y3d{bottom:953.100000px;}
.y3c{bottom:990.900000px;}
.y3b{bottom:1028.700000px;}
.y88{bottom:1049.610000px;}
.y30{bottom:1058.220000px;}
.y87{bottom:1092.810000px;}
.y86{bottom:1136.010000px;}
.y45{bottom:1168.920000px;}
.y38{bottom:1206.540000px;}
.y33{bottom:1209.420000px;}
.y2d{bottom:1228.320000px;}
.y85{bottom:1230.375000px;}
.y84{bottom:1273.575000px;}
.y83{bottom:1316.775000px;}
.y2f{bottom:1396.365000px;}
.y82{bottom:1411.995000px;}
.y2c{bottom:1626.270000px;}
.y2b{bottom:1669.470000px;}
.y2a{bottom:1712.670000px;}
.y29{bottom:1755.870000px;}
.y28{bottom:1893.135000px;}
.y27{bottom:1936.335000px;}
.y26{bottom:1979.535000px;}
.y25{bottom:2040.735000px;}
.y24{bottom:2083.935000px;}
.y23{bottom:2145.135000px;}
.y22{bottom:2188.335000px;}
.y21{bottom:2231.535000px;}
.y20{bottom:2329.275000px;}
.y1f{bottom:2465.790000px;}
.y81{bottom:2488.170000px;}
.y1e{bottom:2508.990000px;}
.y80{bottom:2531.370000px;}
.y1d{bottom:2552.190000px;}
.y1c{bottom:2613.390000px;}
.y1b{bottom:2656.590000px;}
.y9d{bottom:2688.015000px;}
.y1a{bottom:2699.790000px;}
.y9c{bottom:2731.215000px;}
.y19{bottom:2742.990000px;}
.y9b{bottom:2774.415000px;}
.y18{bottom:2804.190000px;}
.y9a{bottom:2835.615000px;}
.y17{bottom:2847.420000px;}
.y99{bottom:2878.815000px;}
.y16{bottom:2890.620000px;}
.y98{bottom:2922.045000px;}
.y15{bottom:2951.820000px;}
.y7f{bottom:2956.890000px;}
.y97{bottom:2983.245000px;}
.y14{bottom:2995.020000px;}
.y7e{bottom:3000.090000px;}
.y13{bottom:3038.220000px;}
.y7d{bottom:3043.290000px;}
.y96{bottom:3044.445000px;}
.y7c{bottom:3086.490000px;}
.y95{bottom:3087.645000px;}
.y12{bottom:3135.960000px;}
.y7b{bottom:3147.690000px;}
.y94{bottom:3148.845000px;}
.y7a{bottom:3190.890000px;}
.y93{bottom:3192.045000px;}
.y79{bottom:3234.090000px;}
.y11{bottom:3244.680000px;}
.y92{bottom:3260.445000px;}
.y10{bottom:3287.880000px;}
.y78{bottom:3295.290000px;}
.y77{bottom:3338.490000px;}
.yf{bottom:3349.080000px;}
.y76{bottom:3381.690000px;}
.y91{bottom:3387.165000px;}
.ye{bottom:3392.280000px;}
.y75{bottom:3424.890000px;}
.y90{bottom:3430.365000px;}
.yd{bottom:3453.480000px;}
.y74{bottom:3486.090000px;}
.y8f{bottom:3491.565000px;}
.yc{bottom:3496.680000px;}
.y73{bottom:3529.290000px;}
.y8e{bottom:3534.765000px;}
.yb{bottom:3539.880000px;}
.y72{bottom:3590.490000px;}
.y8d{bottom:3595.965000px;}
.ya{bottom:3601.080000px;}
.y71{bottom:3633.690000px;}
.y8c{bottom:3639.165000px;}
.y9{bottom:3644.280000px;}
.y70{bottom:3676.890000px;}
.y8b{bottom:3700.365000px;}
.y6f{bottom:3720.090000px;}
.y8{bottom:3742.020000px;}
.y8a{bottom:3743.565000px;}
.y6e{bottom:3790.830000px;}
.y7{bottom:3792.990000px;}
.y89{bottom:3811.785000px;}
.y6{bottom:4317.630000px;}
.y5{bottom:4389.630000px;}
.y4{bottom:4447.410000px;}
.y3{bottom:4545.150000px;}
.y2{bottom:4670.970000px;}
.y1{bottom:4796.970000px;}
.h13{height:82.296000px;}
.h14{height:91.622880px;}
.hc{height:96.012000px;}
.h11{height:96.121728px;}
.h8{height:109.728000px;}
.h9{height:109.837728px;}
.h4{height:121.798080px;}
.h6{height:123.444000px;}
.h5{height:123.553728px;}
.h7{height:127.996875px;}
.h3{height:242.521920px;}
.hd{height:264.780000px;}
.h2{height:319.857120px;}
.ha{height:371.160000px;}
.hb{height:529.380000px;}
.he{height:793.980000px;}
.h10{height:1058.580000px;}
.h12{height:1242.000000px;}
.hf{height:1852.380000px;}
.h0{height:5081.040000px;}
.h1{height:5081.250000px;}
.w4{width:295.740000px;}
.w5{width:327.960000px;}
.w6{width:501.660000px;}
.w3{width:1127.880000px;}
.w2{width:3601.439946px;}
.w0{width:3601.440000px;}
.w1{width:3601.500000px;}
.x0{left:0.000000px;}
.x7{left:10.980000px;}
.xb{left:73.980000px;}
.x2{left:144.647946px;}
.x4{left:195.659946px;}
.x3{left:198.644946px;}
.xe{left:203.429946px;}
.x1{left:210.389946px;}
.x5{left:1275.300000px;}
.x11{left:1318.964946px;}
.x15{left:1326.419946px;}
.x14{left:1329.479946px;}
.xa{left:1338.839946px;}
.x6{left:1373.399946px;}
.x16{left:1380.419946px;}
.xd{left:1396.439946px;}
.x8{left:1570.860000px;}
.x9{left:1898.640000px;}
.xc{left:2285.534946px;}
.xf{left:2453.474946px;}
.x12{left:2464.814946px;}
.x10{left:2493.974946px;}
.x17{left:2499.149946px;}
.x13{left:2505.314946px;}
@media print{
.v2{vertical-align:-64.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:80.000000pt;}
.lsa{letter-spacing:-0.592000pt;}
.ls11{letter-spacing:-0.341333pt;}
.lsf{letter-spacing:-0.284267pt;}
.lsb{letter-spacing:-0.276267pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.198933pt;}
.lse{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.000005pt;}
.ls12{letter-spacing:0.220267pt;}
.ls8{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.276480pt;}
.ls2{letter-spacing:0.320000pt;}
.ls4{letter-spacing:43.776000pt;}
.ls3{letter-spacing:73.651200pt;}
.ls5{letter-spacing:85.376000pt;}
.ls1{letter-spacing:121.640533pt;}
.ls6{letter-spacing:121.651200pt;}
.ls7{letter-spacing:139.179776pt;}
.ws4{word-spacing:-96.000000pt;}
.ws0{word-spacing:-49.461760pt;}
.ws1{word-spacing:-40.032000pt;}
.ws8{word-spacing:-35.840000pt;}
.wsc{word-spacing:-35.584005pt;}
.ws2{word-spacing:-35.584000pt;}
.ws7{word-spacing:-35.456000pt;}
.wsa{word-spacing:-35.420651pt;}
.ws9{word-spacing:-35.335317pt;}
.ws6{word-spacing:-35.328000pt;}
.wsb{word-spacing:-35.278251pt;}
.ws3{word-spacing:-31.136000pt;}
.ws5{word-spacing:-29.712640pt;}
.wsd{word-spacing:0.000000pt;}
._6{margin-left:-23.410560pt;}
._7{margin-left:-19.682987pt;}
._8{margin-left:-14.080000pt;}
._9{margin-left:-11.776000pt;}
._a{margin-left:-9.856000pt;}
._b{margin-left:-8.452480pt;}
._1{margin-left:-7.089280pt;}
._d{margin-left:-5.985280pt;}
._3{margin-left:-4.536960pt;}
._c{margin-left:-3.328000pt;}
._5{margin-left:-2.420693pt;}
._4{margin-left:-1.067520pt;}
._0{width:1.119360pt;}
._2{width:2.238720pt;}
._1c{width:5.120000pt;}
._1d{width:6.016000pt;}
._22{width:7.456000pt;}
._1b{width:9.472000pt;}
._20{width:11.168000pt;}
._21{width:12.160000pt;}
._13{width:19.712000pt;}
._14{width:20.662827pt;}
._1e{width:21.584640pt;}
._11{width:40.320000pt;}
._18{width:41.344000pt;}
._19{width:42.635307pt;}
._f{width:43.680640pt;}
._e{width:46.068693pt;}
._1f{width:48.372693pt;}
._12{width:49.664000pt;}
._10{width:64.128000pt;}
._1a{width:74.656640pt;}
._16{width:76.246187pt;}
._15{width:77.184000pt;}
._17{width:128.672640pt;}
.fsc{font-size:96.000000pt;}
.fsd{font-size:106.880000pt;}
.fsa{font-size:112.000000pt;}
.fsb{font-size:112.128000pt;}
.fse{font-size:115.328000pt;}
.fs8{font-size:128.000000pt;}
.fs9{font-size:128.128000pt;}
.fs3{font-size:142.080000pt;}
.fs6{font-size:144.000000pt;}
.fs5{font-size:144.128000pt;}
.fs7{font-size:153.600000pt;}
.fs2{font-size:177.920000pt;}
.fs4{font-size:213.120000pt;}
.fs1{font-size:266.880000pt;}
.fs0{font-size:373.120000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:107.840000pt;}
.y65{bottom:133.466667pt;}
.y2e{bottom:149.373333pt;}
.y64{bottom:162.266667pt;}
.y63{bottom:191.066667pt;}
.y3a{bottom:191.840000pt;}
.y56{bottom:196.640000pt;}
.y4f{bottom:206.240000pt;}
.y4d{bottom:208.613333pt;}
.y32{bottom:208.640000pt;}
.y62{bottom:219.866667pt;}
.y31{bottom:242.240000pt;}
.y61{bottom:248.666667pt;}
.y60{bottom:277.466667pt;}
.y59{bottom:309.413333pt;}
.y39{bottom:309.440000pt;}
.y55{bottom:309.573333pt;}
.y44{bottom:309.600000pt;}
.y53{bottom:340.640000pt;}
.y58{bottom:343.013333pt;}
.y37{bottom:343.040000pt;}
.y54{bottom:343.173333pt;}
.y43{bottom:343.200000pt;}
.y47{bottom:350.240000pt;}
.y57{bottom:376.613333pt;}
.y36{bottom:376.640000pt;}
.y5f{bottom:376.773333pt;}
.y42{bottom:376.800000pt;}
.y52{bottom:410.373333pt;}
.y4b{bottom:410.400000pt;}
.y5e{bottom:439.013333pt;}
.y51{bottom:443.973333pt;}
.y4a{bottom:444.000000pt;}
.y5d{bottom:472.613333pt;}
.y4c{bottom:475.040000pt;}
.y6d{bottom:475.293333pt;}
.y50{bottom:477.573333pt;}
.y49{bottom:477.600000pt;}
.y46{bottom:484.640000pt;}
.y5c{bottom:506.213333pt;}
.y6c{bottom:507.293333pt;}
.y48{bottom:511.200000pt;}
.y6b{bottom:539.293333pt;}
.y5b{bottom:539.813333pt;}
.y6a{bottom:571.333333pt;}
.y5a{bottom:573.413333pt;}
.ya0{bottom:581.213333pt;}
.y69{bottom:603.333333pt;}
.y9f{bottom:619.613333pt;}
.y68{bottom:636.773333pt;}
.y9e{bottom:658.013333pt;}
.y67{bottom:675.173333pt;}
.y4e{bottom:683.653333pt;}
.y41{bottom:712.800000pt;}
.y66{bottom:713.573333pt;}
.y35{bottom:729.440000pt;}
.y40{bottom:746.400000pt;}
.y3f{bottom:780.000000pt;}
.y3e{bottom:813.600000pt;}
.y3d{bottom:847.200000pt;}
.y3c{bottom:880.800000pt;}
.y3b{bottom:914.400000pt;}
.y88{bottom:932.986667pt;}
.y30{bottom:940.640000pt;}
.y87{bottom:971.386667pt;}
.y86{bottom:1009.786667pt;}
.y45{bottom:1039.040000pt;}
.y38{bottom:1072.480000pt;}
.y33{bottom:1075.040000pt;}
.y2d{bottom:1091.840000pt;}
.y85{bottom:1093.666667pt;}
.y84{bottom:1132.066667pt;}
.y83{bottom:1170.466667pt;}
.y2f{bottom:1241.213333pt;}
.y82{bottom:1255.106667pt;}
.y2c{bottom:1445.573333pt;}
.y2b{bottom:1483.973333pt;}
.y2a{bottom:1522.373333pt;}
.y29{bottom:1560.773333pt;}
.y28{bottom:1682.786667pt;}
.y27{bottom:1721.186667pt;}
.y26{bottom:1759.586667pt;}
.y25{bottom:1813.986667pt;}
.y24{bottom:1852.386667pt;}
.y23{bottom:1906.786667pt;}
.y22{bottom:1945.186667pt;}
.y21{bottom:1983.586667pt;}
.y20{bottom:2070.466667pt;}
.y1f{bottom:2191.813333pt;}
.y81{bottom:2211.706667pt;}
.y1e{bottom:2230.213333pt;}
.y80{bottom:2250.106667pt;}
.y1d{bottom:2268.613333pt;}
.y1c{bottom:2323.013333pt;}
.y1b{bottom:2361.413333pt;}
.y9d{bottom:2389.346667pt;}
.y1a{bottom:2399.813333pt;}
.y9c{bottom:2427.746667pt;}
.y19{bottom:2438.213333pt;}
.y9b{bottom:2466.146667pt;}
.y18{bottom:2492.613333pt;}
.y9a{bottom:2520.546667pt;}
.y17{bottom:2531.040000pt;}
.y99{bottom:2558.946667pt;}
.y16{bottom:2569.440000pt;}
.y98{bottom:2597.373333pt;}
.y15{bottom:2623.840000pt;}
.y7f{bottom:2628.346667pt;}
.y97{bottom:2651.773333pt;}
.y14{bottom:2662.240000pt;}
.y7e{bottom:2666.746667pt;}
.y13{bottom:2700.640000pt;}
.y7d{bottom:2705.146667pt;}
.y96{bottom:2706.173333pt;}
.y7c{bottom:2743.546667pt;}
.y95{bottom:2744.573333pt;}
.y12{bottom:2787.520000pt;}
.y7b{bottom:2797.946667pt;}
.y94{bottom:2798.973333pt;}
.y7a{bottom:2836.346667pt;}
.y93{bottom:2837.373333pt;}
.y79{bottom:2874.746667pt;}
.y11{bottom:2884.160000pt;}
.y92{bottom:2898.173333pt;}
.y10{bottom:2922.560000pt;}
.y78{bottom:2929.146667pt;}
.y77{bottom:2967.546667pt;}
.yf{bottom:2976.960000pt;}
.y76{bottom:3005.946667pt;}
.y91{bottom:3010.813333pt;}
.ye{bottom:3015.360000pt;}
.y75{bottom:3044.346667pt;}
.y90{bottom:3049.213333pt;}
.yd{bottom:3069.760000pt;}
.y74{bottom:3098.746667pt;}
.y8f{bottom:3103.613333pt;}
.yc{bottom:3108.160000pt;}
.y73{bottom:3137.146667pt;}
.y8e{bottom:3142.013333pt;}
.yb{bottom:3146.560000pt;}
.y72{bottom:3191.546667pt;}
.y8d{bottom:3196.413333pt;}
.ya{bottom:3200.960000pt;}
.y71{bottom:3229.946667pt;}
.y8c{bottom:3234.813333pt;}
.y9{bottom:3239.360000pt;}
.y70{bottom:3268.346667pt;}
.y8b{bottom:3289.213333pt;}
.y6f{bottom:3306.746667pt;}
.y8{bottom:3326.240000pt;}
.y8a{bottom:3327.613333pt;}
.y6e{bottom:3369.626667pt;}
.y7{bottom:3371.546667pt;}
.y89{bottom:3388.253333pt;}
.y6{bottom:3837.893333pt;}
.y5{bottom:3901.893333pt;}
.y4{bottom:3953.253333pt;}
.y3{bottom:4040.133333pt;}
.y2{bottom:4151.973333pt;}
.y1{bottom:4263.973333pt;}
.h13{height:73.152000pt;}
.h14{height:81.442560pt;}
.hc{height:85.344000pt;}
.h11{height:85.441536pt;}
.h8{height:97.536000pt;}
.h9{height:97.633536pt;}
.h4{height:108.264960pt;}
.h6{height:109.728000pt;}
.h5{height:109.825536pt;}
.h7{height:113.775000pt;}
.h3{height:215.575040pt;}
.hd{height:235.360000pt;}
.h2{height:284.317440pt;}
.ha{height:329.920000pt;}
.hb{height:470.560000pt;}
.he{height:705.760000pt;}
.h10{height:940.960000pt;}
.h12{height:1104.000000pt;}
.hf{height:1646.560000pt;}
.h0{height:4516.480000pt;}
.h1{height:4516.666667pt;}
.w4{width:262.880000pt;}
.w5{width:291.520000pt;}
.w6{width:445.920000pt;}
.w3{width:1002.560000pt;}
.w2{width:3201.279952pt;}
.w0{width:3201.280000pt;}
.w1{width:3201.333333pt;}
.x0{left:0.000000pt;}
.x7{left:9.760000pt;}
.xb{left:65.760000pt;}
.x2{left:128.575952pt;}
.x4{left:173.919952pt;}
.x3{left:176.573286pt;}
.xe{left:180.826619pt;}
.x1{left:187.013286pt;}
.x5{left:1133.600000pt;}
.x11{left:1172.413286pt;}
.x15{left:1179.039952pt;}
.x14{left:1181.759952pt;}
.xa{left:1190.079952pt;}
.x6{left:1220.799952pt;}
.x16{left:1227.039952pt;}
.xd{left:1241.279952pt;}
.x8{left:1396.320000pt;}
.x9{left:1687.680000pt;}
.xc{left:2031.586619pt;}
.xf{left:2180.866619pt;}
.x12{left:2190.946619pt;}
.x10{left:2216.866619pt;}
.x17{left:2221.466619pt;}
.x13{left:2226.946619pt;}
}




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