
    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_47f6e40c0161b8c25d8f6e49.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_eee137f51b80204542d67bf1.woff')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_30be1cef4028cba16d53ef4a.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c6e421b29036225c8fc73a7c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_dcb459b074a60be8d31aa8ea.woff')format("woff");}.ff5{font-family:ff5;line-height:0.936523;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8d8de60564f0f119128888c6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_3ca927979b094d8c10129314.woff')format("woff");}.ff8{font-family:ff8;line-height:0.767090;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls18{letter-spacing:-1.554000px;}
.ls23{letter-spacing:-0.533400px;}
.ls5{letter-spacing:-0.463800px;}
.ls9{letter-spacing:-0.357000px;}
.ls6{letter-spacing:-0.310800px;}
.ls17{letter-spacing:-0.240600px;}
.ls21{letter-spacing:-0.214800px;}
.ls2e{letter-spacing:-0.208800px;}
.lsc{letter-spacing:-0.175800px;}
.ls19{letter-spacing:-0.169200px;}
.ls4{letter-spacing:-0.132600px;}
.lsd{letter-spacing:-0.115800px;}
.ls12{letter-spacing:-0.058320px;}
.ls32{letter-spacing:-0.041040px;}
.ls31{letter-spacing:-0.038160px;}
.ls2{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.014400px;}
.lsf{letter-spacing:0.023760px;}
.ls3{letter-spacing:0.038880px;}
.lsb{letter-spacing:0.066000px;}
.ls29{letter-spacing:0.067200px;}
.ls16{letter-spacing:0.143280px;}
.ls0{letter-spacing:0.149760px;}
.ls7{letter-spacing:0.150000px;}
.ls27{letter-spacing:0.174000px;}
.ls1b{letter-spacing:0.174240px;}
.lsa{letter-spacing:0.190200px;}
.ls1a{letter-spacing:0.192000px;}
.ls22{letter-spacing:0.314400px;}
.ls2d{letter-spacing:0.393600px;}
.ls11{letter-spacing:0.479400px;}
.ls10{letter-spacing:0.642000px;}
.ls8{letter-spacing:0.702000px;}
.ls30{letter-spacing:0.894240px;}
.ls34{letter-spacing:0.900000px;}
.ls14{letter-spacing:1.031760px;}
.ls15{letter-spacing:1.211760px;}
.ls20{letter-spacing:2.106720px;}
.ls13{letter-spacing:5.706720px;}
.ls33{letter-spacing:12.186720px;}
.ls2a{letter-spacing:15.786720px;}
.ls1c{letter-spacing:17.226720px;}
.ls2f{letter-spacing:17.946720px;}
.ls1{letter-spacing:20.106720px;}
.ls25{letter-spacing:22.266720px;}
.ls1d{letter-spacing:42.426720px;}
.ls1f{letter-spacing:45.306720px;}
.ls1e{letter-spacing:46.026720px;}
.ls26{letter-spacing:46.170720px;}
.ls2c{letter-spacing:64.026720px;}
.ls24{letter-spacing:64.890720px;}
.lse{letter-spacing:105.930720px;}
.ls28{letter-spacing:202.638240px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-21.641760px;}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws4{word-spacing:-14.659440px;}
.ws2{word-spacing:-14.506440px;}
.ws15{word-spacing:-14.405760px;}
.ws10{word-spacing:-13.820160px;}
.wse{word-spacing:-13.697760px;}
.ws11{word-spacing:-13.572960px;}
.ws8{word-spacing:-13.505760px;}
.ws13{word-spacing:-13.467600px;}
.ws14{word-spacing:-13.464720px;}
.wsb{word-spacing:-13.447440px;}
.ws9{word-spacing:-13.389960px;}
.wsd{word-spacing:-13.336560px;}
.ws12{word-spacing:-13.296960px;}
.wsf{word-spacing:-13.290960px;}
.wsc{word-spacing:-11.951760px;}
.ws6{word-spacing:-9.437760px;}
.ws7{word-spacing:-8.786880px;}
.wsa{word-spacing:0.000000px;}
._1f{margin-left:-532.558560px;}
._21{margin-left:-525.220560px;}
._1{margin-left:-485.718240px;}
._7{margin-left:-407.814240px;}
._a{margin-left:-307.041120px;}
._5{margin-left:-289.238160px;}
._6{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._9{margin-left:-273.882720px;}
._d{margin-left:-240.510240px;}
._14{margin-left:-232.410240px;}
._19{margin-left:-226.537200px;}
._18{margin-left:-219.434640px;}
._11{margin-left:-202.146240px;}
._1a{margin-left:-199.946880px;}
._23{margin-left:-196.208640px;}
._22{margin-left:-188.893440px;}
._10{margin-left:-171.054720px;}
._29{margin-left:-168.582240px;}
._f{margin-left:-165.490560px;}
._26{margin-left:-154.885440px;}
._b{margin-left:-153.774720px;}
._4{margin-left:-150.068400px;}
._c{margin-left:-148.690080px;}
._28{margin-left:-142.858800px;}
._12{margin-left:-141.587040px;}
._e{margin-left:-134.192160px;}
._13{margin-left:-116.242560px;}
._27{margin-left:-110.054880px;}
._1e{margin-left:-102.349440px;}
._8{margin-left:-91.638240px;}
._1d{margin-left:-86.399760px;}
._1c{margin-left:-83.520000px;}
._15{margin-left:-82.131840px;}
._24{margin-left:-80.367360px;}
._17{margin-left:-66.703680px;}
._16{margin-left:-49.583280px;}
._25{margin-left:-34.410240px;}
._1b{margin-left:-30.741360px;}
._42{margin-left:-8.493360px;}
._37{margin-left:-7.410240px;}
._30{margin-left:-5.796720px;}
._2a{margin-left:-4.288920px;}
._3a{margin-left:-3.283200px;}
._2{margin-left:-2.274480px;}
._3{margin-left:-1.179360px;}
._20{width:1.082160px;}
._2c{width:2.947920px;}
._2d{width:4.670880px;}
._2e{width:6.145680px;}
._2f{width:7.230960px;}
._35{width:8.645760px;}
._34{width:9.656640px;}
._38{width:11.041800px;}
._39{width:12.412800px;}
._31{width:15.358320px;}
._3d{width:17.210160px;}
._36{width:20.601360px;}
._32{width:22.589280px;}
._33{width:23.837760px;}
._43{width:25.373520px;}
._41{width:26.431800px;}
._3e{width:34.242480px;}
._3f{width:35.411760px;}
._40{width:37.049280px;}
._2b{width:45.147360px;}
._3b{width:84.739680px;}
._3c{width:85.875120px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs2{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:60.660000px;}
.y72{bottom:91.260000px;}
.y65{bottom:92.160000px;}
.yc8{bottom:93.240000px;}
.y89{bottom:108.000000px;}
.ya7{bottom:109.260000px;}
.y71{bottom:112.320000px;}
.y64{bottom:113.220000px;}
.y30{bottom:121.680000px;}
.y88{bottom:129.060000px;}
.ya6{bottom:130.320000px;}
.y70{bottom:133.380000px;}
.y63{bottom:134.280000px;}
.y2f{bottom:142.740000px;}
.y87{bottom:150.120000px;}
.ya5{bottom:151.380000px;}
.y6f{bottom:154.470000px;}
.y62{bottom:155.370000px;}
.y2e{bottom:163.830000px;}
.y86{bottom:171.210000px;}
.ya4{bottom:172.470000px;}
.y6e{bottom:175.530000px;}
.y61{bottom:176.430000px;}
.y2d{bottom:184.890000px;}
.y85{bottom:192.270000px;}
.ya3{bottom:193.530000px;}
.y6d{bottom:196.590000px;}
.y60{bottom:197.490000px;}
.y2c{bottom:205.950000px;}
.y84{bottom:213.330000px;}
.ya2{bottom:215.310000px;}
.y6c{bottom:217.650000px;}
.y5f{bottom:218.550000px;}
.y2b{bottom:227.010000px;}
.y83{bottom:234.390000px;}
.ya1{bottom:236.370000px;}
.y6b{bottom:238.710000px;}
.y5e{bottom:239.610000px;}
.y2a{bottom:248.070000px;}
.y82{bottom:255.450000px;}
.ya0{bottom:257.430000px;}
.y6a{bottom:259.770000px;}
.y5d{bottom:260.670000px;}
.y29{bottom:269.130000px;}
.y81{bottom:276.510000px;}
.y9f{bottom:278.490000px;}
.y69{bottom:280.830000px;}
.y5c{bottom:281.730000px;}
.y28{bottom:290.190000px;}
.y80{bottom:297.570000px;}
.y9e{bottom:299.550000px;}
.y68{bottom:301.890000px;}
.y5b{bottom:302.790000px;}
.y27{bottom:311.250000px;}
.y7f{bottom:318.630000px;}
.y9d{bottom:320.610000px;}
.y67{bottom:322.950000px;}
.y5a{bottom:323.850000px;}
.y26{bottom:332.310000px;}
.y7e{bottom:339.690000px;}
.y9c{bottom:342.390000px;}
.yc7{bottom:344.010000px;}
.y66{bottom:344.190000px;}
.y59{bottom:344.910000px;}
.y25{bottom:353.370000px;}
.y7d{bottom:360.750000px;}
.y9b{bottom:363.450000px;}
.yc6{bottom:365.070000px;}
.y58{bottom:365.970000px;}
.y24{bottom:374.430000px;}
.y7c{bottom:381.810000px;}
.y9a{bottom:384.510000px;}
.yc5{bottom:386.130000px;}
.y57{bottom:387.030000px;}
.y23{bottom:395.310000px;}
.y7b{bottom:402.915000px;}
.y99{bottom:405.615000px;}
.yc4{bottom:407.235000px;}
.y56{bottom:408.135000px;}
.y22{bottom:416.415000px;}
.y7a{bottom:423.975000px;}
.y98{bottom:426.675000px;}
.yc3{bottom:428.295000px;}
.y55{bottom:429.195000px;}
.y21{bottom:437.475000px;}
.y79{bottom:445.035000px;}
.y97{bottom:447.915000px;}
.yc2{bottom:449.355000px;}
.y54{bottom:450.255000px;}
.y20{bottom:458.535000px;}
.y78{bottom:466.095000px;}
.y96{bottom:469.695000px;}
.yc1{bottom:470.415000px;}
.y53{bottom:471.315000px;}
.y1f{bottom:479.595000px;}
.y77{bottom:487.155000px;}
.y95{bottom:490.755000px;}
.yc0{bottom:491.475000px;}
.y52{bottom:492.375000px;}
.y1e{bottom:500.655000px;}
.y76{bottom:508.215000px;}
.y94{bottom:511.815000px;}
.ybf{bottom:512.535000px;}
.y51{bottom:513.435000px;}
.y1d{bottom:521.715000px;}
.y75{bottom:529.275000px;}
.y93{bottom:532.875000px;}
.ybe{bottom:533.595000px;}
.y50{bottom:534.495000px;}
.y1c{bottom:545.295000px;}
.y74{bottom:550.335000px;}
.y92{bottom:553.935000px;}
.ybd{bottom:554.655000px;}
.y4f{bottom:555.555000px;}
.y73{bottom:571.395000px;}
.y1b{bottom:575.175000px;}
.y91{bottom:575.715000px;}
.y4e{bottom:576.615000px;}
.y1a{bottom:596.235000px;}
.y90{bottom:596.775000px;}
.y4d{bottom:597.675000px;}
.y19{bottom:617.295000px;}
.y8f{bottom:617.835000px;}
.y4c{bottom:618.735000px;}
.y18{bottom:638.355000px;}
.y8e{bottom:638.895000px;}
.y4b{bottom:639.795000px;}
.y17{bottom:659.445000px;}
.y8d{bottom:659.985000px;}
.y4a{bottom:660.705000px;}
.y16{bottom:680.505000px;}
.y8c{bottom:681.045000px;}
.y49{bottom:681.765000px;}
.y15{bottom:701.565000px;}
.y8b{bottom:702.105000px;}
.y48{bottom:702.825000px;}
.y14{bottom:722.625000px;}
.y8a{bottom:723.165000px;}
.y47{bottom:723.885000px;}
.y13{bottom:743.685000px;}
.ybc{bottom:744.225000px;}
.y46{bottom:744.945000px;}
.y12{bottom:764.745000px;}
.ybb{bottom:765.285000px;}
.y45{bottom:766.005000px;}
.y11{bottom:785.805000px;}
.yba{bottom:786.345000px;}
.y44{bottom:787.065000px;}
.y10{bottom:806.865000px;}
.yb9{bottom:807.405000px;}
.y43{bottom:808.125000px;}
.yf{bottom:827.925000px;}
.yb8{bottom:828.465000px;}
.y42{bottom:829.185000px;}
.ye{bottom:848.985000px;}
.yb7{bottom:849.525000px;}
.y41{bottom:850.245000px;}
.yd{bottom:870.045000px;}
.yb6{bottom:870.585000px;}
.y40{bottom:871.305000px;}
.yb5{bottom:891.645000px;}
.y3f{bottom:892.365000px;}
.yc{bottom:893.265000px;}
.yb4{bottom:912.750000px;}
.y3e{bottom:913.470000px;}
.yb{bottom:919.590000px;}
.yb3{bottom:933.810000px;}
.y3d{bottom:934.530000px;}
.ya{bottom:936.330000px;}
.yb2{bottom:954.870000px;}
.y3c{bottom:955.590000px;}
.y9{bottom:958.650000px;}
.yb1{bottom:975.930000px;}
.y3b{bottom:976.650000px;}
.y8{bottom:983.850000px;}
.yb0{bottom:996.990000px;}
.y3a{bottom:997.710000px;}
.y7{bottom:1017.510000px;}
.yaf{bottom:1018.050000px;}
.y39{bottom:1018.770000px;}
.yae{bottom:1039.110000px;}
.y38{bottom:1039.830000px;}
.y5{bottom:1056.210000px;}
.yad{bottom:1060.170000px;}
.y37{bottom:1060.890000px;}
.yac{bottom:1081.230000px;}
.y36{bottom:1081.950000px;}
.y4{bottom:1086.990000px;}
.yab{bottom:1102.290000px;}
.y35{bottom:1103.010000px;}
.y3{bottom:1117.770000px;}
.yaa{bottom:1123.350000px;}
.y34{bottom:1124.070000px;}
.ya9{bottom:1144.410000px;}
.y33{bottom:1145.130000px;}
.y2{bottom:1148.400000px;}
.ya8{bottom:1165.500000px;}
.y32{bottom:1166.220000px;}
.y1{bottom:1180.620000px;}
.y31{bottom:1194.120000px;}
.h7{height:39.810234px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:48.239987px;}
.x6{left:53.999987px;}
.xe{left:64.619987px;}
.xc{left:69.479987px;}
.x8{left:75.599987px;}
.x9{left:80.999987px;}
.xa{left:85.895987px;}
.xd{left:96.515987px;}
.x7{left:108.035987px;}
.x5{left:176.429987px;}
.x3{left:271.514987px;}
.x2{left:350.534987px;}
.x4{left:418.214987px;}
.x1{left:478.544987px;}
.xf{left:839.339987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls18{letter-spacing:-1.381333pt;}
.ls23{letter-spacing:-0.474133pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls9{letter-spacing:-0.317333pt;}
.ls6{letter-spacing:-0.276267pt;}
.ls17{letter-spacing:-0.213867pt;}
.ls21{letter-spacing:-0.190933pt;}
.ls2e{letter-spacing:-0.185600pt;}
.lsc{letter-spacing:-0.156267pt;}
.ls19{letter-spacing:-0.150400pt;}
.ls4{letter-spacing:-0.117867pt;}
.lsd{letter-spacing:-0.102933pt;}
.ls12{letter-spacing:-0.051840pt;}
.ls32{letter-spacing:-0.036480pt;}
.ls31{letter-spacing:-0.033920pt;}
.ls2{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.012800pt;}
.lsf{letter-spacing:0.021120pt;}
.ls3{letter-spacing:0.034560pt;}
.lsb{letter-spacing:0.058667pt;}
.ls29{letter-spacing:0.059733pt;}
.ls16{letter-spacing:0.127360pt;}
.ls0{letter-spacing:0.133120pt;}
.ls7{letter-spacing:0.133333pt;}
.ls27{letter-spacing:0.154667pt;}
.ls1b{letter-spacing:0.154880pt;}
.lsa{letter-spacing:0.169067pt;}
.ls1a{letter-spacing:0.170667pt;}
.ls22{letter-spacing:0.279467pt;}
.ls2d{letter-spacing:0.349867pt;}
.ls11{letter-spacing:0.426133pt;}
.ls10{letter-spacing:0.570667pt;}
.ls8{letter-spacing:0.624000pt;}
.ls30{letter-spacing:0.794880pt;}
.ls34{letter-spacing:0.800000pt;}
.ls14{letter-spacing:0.917120pt;}
.ls15{letter-spacing:1.077120pt;}
.ls20{letter-spacing:1.872640pt;}
.ls13{letter-spacing:5.072640pt;}
.ls33{letter-spacing:10.832640pt;}
.ls2a{letter-spacing:14.032640pt;}
.ls1c{letter-spacing:15.312640pt;}
.ls2f{letter-spacing:15.952640pt;}
.ls1{letter-spacing:17.872640pt;}
.ls25{letter-spacing:19.792640pt;}
.ls1d{letter-spacing:37.712640pt;}
.ls1f{letter-spacing:40.272640pt;}
.ls1e{letter-spacing:40.912640pt;}
.ls26{letter-spacing:41.040640pt;}
.ls2c{letter-spacing:56.912640pt;}
.ls24{letter-spacing:57.680640pt;}
.lse{letter-spacing:94.160640pt;}
.ls28{letter-spacing:180.122880pt;}
.ws5{word-spacing:-19.237120pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws4{word-spacing:-13.030613pt;}
.ws2{word-spacing:-12.894613pt;}
.ws15{word-spacing:-12.805120pt;}
.ws10{word-spacing:-12.284587pt;}
.wse{word-spacing:-12.175787pt;}
.ws11{word-spacing:-12.064853pt;}
.ws8{word-spacing:-12.005120pt;}
.ws13{word-spacing:-11.971200pt;}
.ws14{word-spacing:-11.968640pt;}
.wsb{word-spacing:-11.953280pt;}
.ws9{word-spacing:-11.902187pt;}
.wsd{word-spacing:-11.854720pt;}
.ws12{word-spacing:-11.819520pt;}
.wsf{word-spacing:-11.814187pt;}
.wsc{word-spacing:-10.623787pt;}
.ws6{word-spacing:-8.389120pt;}
.ws7{word-spacing:-7.810560pt;}
.wsa{word-spacing:0.000000pt;}
._1f{margin-left:-473.385387pt;}
._21{margin-left:-466.862720pt;}
._1{margin-left:-431.749547pt;}
._7{margin-left:-362.501547pt;}
._a{margin-left:-272.925440pt;}
._5{margin-left:-257.100587pt;}
._6{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._9{margin-left:-243.451307pt;}
._d{margin-left:-213.786880pt;}
._14{margin-left:-206.586880pt;}
._19{margin-left:-201.366400pt;}
._18{margin-left:-195.053013pt;}
._11{margin-left:-179.685547pt;}
._1a{margin-left:-177.730560pt;}
._23{margin-left:-174.407680pt;}
._22{margin-left:-167.905280pt;}
._10{margin-left:-152.048640pt;}
._29{margin-left:-149.850880pt;}
._f{margin-left:-147.102720pt;}
._26{margin-left:-137.675947pt;}
._b{margin-left:-136.688640pt;}
._4{margin-left:-133.394133pt;}
._c{margin-left:-132.168960pt;}
._28{margin-left:-126.985600pt;}
._12{margin-left:-125.855147pt;}
._e{margin-left:-119.281920pt;}
._13{margin-left:-103.326720pt;}
._27{margin-left:-97.826560pt;}
._1e{margin-left:-90.977280pt;}
._8{margin-left:-81.456213pt;}
._1d{margin-left:-76.799787pt;}
._1c{margin-left:-74.240000pt;}
._15{margin-left:-73.006080pt;}
._24{margin-left:-71.437653pt;}
._17{margin-left:-59.292160pt;}
._16{margin-left:-44.074027pt;}
._25{margin-left:-30.586880pt;}
._1b{margin-left:-27.325653pt;}
._42{margin-left:-7.549653pt;}
._37{margin-left:-6.586880pt;}
._30{margin-left:-5.152640pt;}
._2a{margin-left:-3.812373pt;}
._3a{margin-left:-2.918400pt;}
._2{margin-left:-2.021760pt;}
._3{margin-left:-1.048320pt;}
._20{width:0.961920pt;}
._2c{width:2.620373pt;}
._2d{width:4.151893pt;}
._2e{width:5.462827pt;}
._2f{width:6.427520pt;}
._35{width:7.685120pt;}
._34{width:8.583680pt;}
._38{width:9.814933pt;}
._39{width:11.033600pt;}
._31{width:13.651840pt;}
._3d{width:15.297920pt;}
._36{width:18.312320pt;}
._32{width:20.079360pt;}
._33{width:21.189120pt;}
._43{width:22.554240pt;}
._41{width:23.494933pt;}
._3e{width:30.437760pt;}
._3f{width:31.477120pt;}
._40{width:32.932693pt;}
._2b{width:40.130987pt;}
._3b{width:75.324160pt;}
._3c{width:76.333440pt;}
.fs2{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:53.920000pt;}
.y72{bottom:81.120000pt;}
.y65{bottom:81.920000pt;}
.yc8{bottom:82.880000pt;}
.y89{bottom:96.000000pt;}
.ya7{bottom:97.120000pt;}
.y71{bottom:99.840000pt;}
.y64{bottom:100.640000pt;}
.y30{bottom:108.160000pt;}
.y88{bottom:114.720000pt;}
.ya6{bottom:115.840000pt;}
.y70{bottom:118.560000pt;}
.y63{bottom:119.360000pt;}
.y2f{bottom:126.880000pt;}
.y87{bottom:133.440000pt;}
.ya5{bottom:134.560000pt;}
.y6f{bottom:137.306667pt;}
.y62{bottom:138.106667pt;}
.y2e{bottom:145.626667pt;}
.y86{bottom:152.186667pt;}
.ya4{bottom:153.306667pt;}
.y6e{bottom:156.026667pt;}
.y61{bottom:156.826667pt;}
.y2d{bottom:164.346667pt;}
.y85{bottom:170.906667pt;}
.ya3{bottom:172.026667pt;}
.y6d{bottom:174.746667pt;}
.y60{bottom:175.546667pt;}
.y2c{bottom:183.066667pt;}
.y84{bottom:189.626667pt;}
.ya2{bottom:191.386667pt;}
.y6c{bottom:193.466667pt;}
.y5f{bottom:194.266667pt;}
.y2b{bottom:201.786667pt;}
.y83{bottom:208.346667pt;}
.ya1{bottom:210.106667pt;}
.y6b{bottom:212.186667pt;}
.y5e{bottom:212.986667pt;}
.y2a{bottom:220.506667pt;}
.y82{bottom:227.066667pt;}
.ya0{bottom:228.826667pt;}
.y6a{bottom:230.906667pt;}
.y5d{bottom:231.706667pt;}
.y29{bottom:239.226667pt;}
.y81{bottom:245.786667pt;}
.y9f{bottom:247.546667pt;}
.y69{bottom:249.626667pt;}
.y5c{bottom:250.426667pt;}
.y28{bottom:257.946667pt;}
.y80{bottom:264.506667pt;}
.y9e{bottom:266.266667pt;}
.y68{bottom:268.346667pt;}
.y5b{bottom:269.146667pt;}
.y27{bottom:276.666667pt;}
.y7f{bottom:283.226667pt;}
.y9d{bottom:284.986667pt;}
.y67{bottom:287.066667pt;}
.y5a{bottom:287.866667pt;}
.y26{bottom:295.386667pt;}
.y7e{bottom:301.946667pt;}
.y9c{bottom:304.346667pt;}
.yc7{bottom:305.786667pt;}
.y66{bottom:305.946667pt;}
.y59{bottom:306.586667pt;}
.y25{bottom:314.106667pt;}
.y7d{bottom:320.666667pt;}
.y9b{bottom:323.066667pt;}
.yc6{bottom:324.506667pt;}
.y58{bottom:325.306667pt;}
.y24{bottom:332.826667pt;}
.y7c{bottom:339.386667pt;}
.y9a{bottom:341.786667pt;}
.yc5{bottom:343.226667pt;}
.y57{bottom:344.026667pt;}
.y23{bottom:351.386667pt;}
.y7b{bottom:358.146667pt;}
.y99{bottom:360.546667pt;}
.yc4{bottom:361.986667pt;}
.y56{bottom:362.786667pt;}
.y22{bottom:370.146667pt;}
.y7a{bottom:376.866667pt;}
.y98{bottom:379.266667pt;}
.yc3{bottom:380.706667pt;}
.y55{bottom:381.506667pt;}
.y21{bottom:388.866667pt;}
.y79{bottom:395.586667pt;}
.y97{bottom:398.146667pt;}
.yc2{bottom:399.426667pt;}
.y54{bottom:400.226667pt;}
.y20{bottom:407.586667pt;}
.y78{bottom:414.306667pt;}
.y96{bottom:417.506667pt;}
.yc1{bottom:418.146667pt;}
.y53{bottom:418.946667pt;}
.y1f{bottom:426.306667pt;}
.y77{bottom:433.026667pt;}
.y95{bottom:436.226667pt;}
.yc0{bottom:436.866667pt;}
.y52{bottom:437.666667pt;}
.y1e{bottom:445.026667pt;}
.y76{bottom:451.746667pt;}
.y94{bottom:454.946667pt;}
.ybf{bottom:455.586667pt;}
.y51{bottom:456.386667pt;}
.y1d{bottom:463.746667pt;}
.y75{bottom:470.466667pt;}
.y93{bottom:473.666667pt;}
.ybe{bottom:474.306667pt;}
.y50{bottom:475.106667pt;}
.y1c{bottom:484.706667pt;}
.y74{bottom:489.186667pt;}
.y92{bottom:492.386667pt;}
.ybd{bottom:493.026667pt;}
.y4f{bottom:493.826667pt;}
.y73{bottom:507.906667pt;}
.y1b{bottom:511.266667pt;}
.y91{bottom:511.746667pt;}
.y4e{bottom:512.546667pt;}
.y1a{bottom:529.986667pt;}
.y90{bottom:530.466667pt;}
.y4d{bottom:531.266667pt;}
.y19{bottom:548.706667pt;}
.y8f{bottom:549.186667pt;}
.y4c{bottom:549.986667pt;}
.y18{bottom:567.426667pt;}
.y8e{bottom:567.906667pt;}
.y4b{bottom:568.706667pt;}
.y17{bottom:586.173333pt;}
.y8d{bottom:586.653333pt;}
.y4a{bottom:587.293333pt;}
.y16{bottom:604.893333pt;}
.y8c{bottom:605.373333pt;}
.y49{bottom:606.013333pt;}
.y15{bottom:623.613333pt;}
.y8b{bottom:624.093333pt;}
.y48{bottom:624.733333pt;}
.y14{bottom:642.333333pt;}
.y8a{bottom:642.813333pt;}
.y47{bottom:643.453333pt;}
.y13{bottom:661.053333pt;}
.ybc{bottom:661.533333pt;}
.y46{bottom:662.173333pt;}
.y12{bottom:679.773333pt;}
.ybb{bottom:680.253333pt;}
.y45{bottom:680.893333pt;}
.y11{bottom:698.493333pt;}
.yba{bottom:698.973333pt;}
.y44{bottom:699.613333pt;}
.y10{bottom:717.213333pt;}
.yb9{bottom:717.693333pt;}
.y43{bottom:718.333333pt;}
.yf{bottom:735.933333pt;}
.yb8{bottom:736.413333pt;}
.y42{bottom:737.053333pt;}
.ye{bottom:754.653333pt;}
.yb7{bottom:755.133333pt;}
.y41{bottom:755.773333pt;}
.yd{bottom:773.373333pt;}
.yb6{bottom:773.853333pt;}
.y40{bottom:774.493333pt;}
.yb5{bottom:792.573333pt;}
.y3f{bottom:793.213333pt;}
.yc{bottom:794.013333pt;}
.yb4{bottom:811.333333pt;}
.y3e{bottom:811.973333pt;}
.yb{bottom:817.413333pt;}
.yb3{bottom:830.053333pt;}
.y3d{bottom:830.693333pt;}
.ya{bottom:832.293333pt;}
.yb2{bottom:848.773333pt;}
.y3c{bottom:849.413333pt;}
.y9{bottom:852.133333pt;}
.yb1{bottom:867.493333pt;}
.y3b{bottom:868.133333pt;}
.y8{bottom:874.533333pt;}
.yb0{bottom:886.213333pt;}
.y3a{bottom:886.853333pt;}
.y7{bottom:904.453333pt;}
.yaf{bottom:904.933333pt;}
.y39{bottom:905.573333pt;}
.yae{bottom:923.653333pt;}
.y38{bottom:924.293333pt;}
.y5{bottom:938.853333pt;}
.yad{bottom:942.373333pt;}
.y37{bottom:943.013333pt;}
.yac{bottom:961.093333pt;}
.y36{bottom:961.733333pt;}
.y4{bottom:966.213333pt;}
.yab{bottom:979.813333pt;}
.y35{bottom:980.453333pt;}
.y3{bottom:993.573333pt;}
.yaa{bottom:998.533333pt;}
.y34{bottom:999.173333pt;}
.ya9{bottom:1017.253333pt;}
.y33{bottom:1017.893333pt;}
.y2{bottom:1020.800000pt;}
.ya8{bottom:1036.000000pt;}
.y32{bottom:1036.640000pt;}
.y1{bottom:1049.440000pt;}
.y31{bottom:1061.440000pt;}
.h7{height:35.386875pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:42.879988pt;}
.x6{left:47.999988pt;}
.xe{left:57.439988pt;}
.xc{left:61.759988pt;}
.x8{left:67.199988pt;}
.x9{left:71.999988pt;}
.xa{left:76.351988pt;}
.xd{left:85.791988pt;}
.x7{left:96.031988pt;}
.x5{left:156.826655pt;}
.x3{left:241.346655pt;}
.x2{left:311.586655pt;}
.x4{left:371.746655pt;}
.x1{left:425.373322pt;}
.xf{left:746.079988pt;}
}




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