
    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_1e406f81aa5d2b18cf334fb2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.776367;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_8c5e73837cd2207e7804e026.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_e6fb1d9bf0385531163a73a4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_7fdf9eb97e0f21595fb46844.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_359d01edf130577d36b3965b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_889dee253e36e96af03c5d29.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.939941;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_dec509c1efddf74c4859bc4a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.774902;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_1d08b211c9f6f9748b96715c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.963867;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_8ff2dbb69dfc9600b7115959.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.728516;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:ffa;src:url('chunks/assets/font_e47a53e2645fedf6cccb0ecd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.728027;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:ffb;src:url('chunks/assets/font_5882fbd6ad934ae51c0e087a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_3197ac2a84924fe6f9a24b07.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.687500;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(0.288450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288450,0.000000,0.000000,0.250000,0,0);}
.m2{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:-85.680000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls8{letter-spacing:-0.936000px;}
.ls4{letter-spacing:-0.720000px;}
.ls2{letter-spacing:-0.166800px;}
.lsb{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.127200px;}
.ls7{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.792000px;}
.lsa{letter-spacing:1.440000px;}
.ls0{letter-spacing:83.160000px;}
.sc_{text-shadow:none;}
.sc2{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);}
.sc1{text-shadow:-0.015em 0 rgb(35,31,32),0 0.015em rgb(35,31,32),0.015em 0 rgb(35,31,32),0 -0.015em  rgb(35,31,32);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(35,31,32);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-20.566320px;}
.wsa{word-spacing:-18.792000px;}
.ws8{word-spacing:-18.720000px;}
.ws4{word-spacing:-18.432000px;}
.wsb{word-spacing:-18.216000px;}
.ws5{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.928000px;}
.ws9{word-spacing:-17.280000px;}
.ws7{word-spacing:-17.064000px;}
.ws2{word-spacing:-0.059760px;}
.ws3{word-spacing:0.000000px;}
._3{margin-left:-6.504000px;}
._4{margin-left:-5.448000px;}
._2{margin-left:-2.160000px;}
._0{margin-left:-1.008000px;}
._1{width:1.512000px;}
._a{width:2.627040px;}
._19{width:3.780960px;}
._1d{width:4.788960px;}
._9{width:5.801760px;}
._10{width:7.488000px;}
._15{width:8.790240px;}
._1c{width:10.067040px;}
._5{width:11.194080px;}
._6{width:12.349920px;}
._1b{width:14.042400px;}
._f{width:15.243840px;}
._16{width:16.344000px;}
._18{width:19.393200px;}
._d{width:20.874960px;}
._e{width:22.467600px;}
._17{width:23.533200px;}
._50{width:24.540000px;}
._1a{width:25.560000px;}
._1e{width:26.928000px;}
._1f{width:28.368000px;}
._14{width:30.024000px;}
._13{width:31.032000px;}
._c{width:32.249520px;}
._b{width:33.274800px;}
._20{width:35.064000px;}
._11{width:36.504000px;}
._12{width:37.512000px;}
._21{width:39.168000px;}
._22{width:40.248000px;}
._3f{width:41.832000px;}
._33{width:43.128000px;}
._34{width:44.496000px;}
._3a{width:45.576000px;}
._3c{width:46.728000px;}
._3b{width:48.396000px;}
._2a{width:49.464000px;}
._2b{width:50.760000px;}
._25{width:54.072000px;}
._26{width:55.080000px;}
._37{width:56.580000px;}
._42{width:58.176000px;}
._4e{width:61.344000px;}
._4d{width:62.352000px;}
._8{width:68.256000px;}
._4f{width:73.164000px;}
._4b{width:74.520000px;}
._4c{width:75.672000px;}
._35{width:77.904000px;}
._36{width:78.924000px;}
._3d{width:82.296000px;}
._3e{width:83.388000px;}
._45{width:91.152000px;}
._46{width:92.160000px;}
._51{width:93.168000px;}
._52{width:94.380000px;}
._53{width:96.276000px;}
._49{width:97.896000px;}
._38{width:99.480000px;}
._39{width:100.788000px;}
._4a{width:101.868000px;}
._7{width:105.408000px;}
._27{width:107.064000px;}
._2f{width:109.512000px;}
._30{width:111.024000px;}
._31{width:117.588000px;}
._32{width:118.872000px;}
._23{width:130.512000px;}
._24{width:131.688000px;}
._43{width:133.128000px;}
._44{width:134.148000px;}
._47{width:135.792000px;}
._48{width:136.872000px;}
._28{width:140.616000px;}
._29{width:141.636000px;}
._40{width:143.064000px;}
._41{width:144.432000px;}
._2d{width:171.936000px;}
._2e{width:172.956000px;}
._2c{width:205.992000px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:12.240000px;}
.fsb{font-size:15.120000px;}
.fs3{font-size:18.000000px;}
.fs6{font-size:30.240000px;}
.fs8{font-size:33.120000px;}
.fs5{font-size:45.360000px;}
.fs2{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fsc{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.y7{bottom:-3.600000px;}
.y0{bottom:0.000000px;}
.y99{bottom:4.492500px;}
.y9d{bottom:4.500000px;}
.y6{bottom:8.100000px;}
.y54{bottom:14.220000px;}
.y98{bottom:25.186500px;}
.y9c{bottom:25.200000px;}
.y5{bottom:28.800000px;}
.y59{bottom:36.180000px;}
.y9f{bottom:45.900000px;}
.y3{bottom:46.620000px;}
.y96{bottom:52.545000px;}
.y58{bottom:56.160000px;}
.y2{bottom:66.456000px;}
.y95{bottom:73.245000px;}
.y1{bottom:86.436000px;}
.y8d{bottom:87.336000px;}
.yc2{bottom:95.616000px;}
.y88{bottom:96.876000px;}
.y8c{bottom:103.716000px;}
.y9a{bottom:105.523500px;}
.y3a{bottom:111.996000px;}
.yc1{bottom:116.316000px;}
.y87{bottom:117.576000px;}
.y39{bottom:128.916000px;}
.yc0{bottom:137.016000px;}
.y86{bottom:138.276000px;}
.y97{bottom:142.783500px;}
.y38{bottom:145.296000px;}
.ybf{bottom:157.710000px;}
.y85{bottom:158.970000px;}
.y37{bottom:161.670000px;}
.y36{bottom:177.870000px;}
.ybe{bottom:178.410000px;}
.y84{bottom:179.670000px;}
.y35{bottom:194.430000px;}
.ybd{bottom:199.110000px;}
.y83{bottom:200.370000px;}
.y94{bottom:200.565000px;}
.y34{bottom:210.810000px;}
.ybc{bottom:219.810000px;}
.y82{bottom:221.070000px;}
.y33{bottom:227.190000px;}
.ybb{bottom:240.510000px;}
.y81{bottom:241.770000px;}
.y32{bottom:243.390000px;}
.y31{bottom:260.130000px;}
.yba{bottom:261.210000px;}
.y80{bottom:262.470000px;}
.y30{bottom:276.510000px;}
.yb9{bottom:281.910000px;}
.y7f{bottom:283.170000px;}
.y52{bottom:289.650000px;}
.y2f{bottom:292.890000px;}
.yb8{bottom:302.610000px;}
.y7e{bottom:303.870000px;}
.y51{bottom:306.390000px;}
.y2e{bottom:309.315000px;}
.yb7{bottom:323.355000px;}
.y93{bottom:324.255000px;}
.y7d{bottom:324.615000px;}
.y2d{bottom:325.515000px;}
.y50{bottom:327.135000px;}
.y2c{bottom:342.075000px;}
.yb6{bottom:344.055000px;}
.y92{bottom:344.955000px;}
.y7c{bottom:345.315000px;}
.y4f{bottom:347.835000px;}
.y2b{bottom:358.455000px;}
.yb5{bottom:364.755000px;}
.yc4{bottom:365.655000px;}
.y7b{bottom:366.015000px;}
.y4e{bottom:368.535000px;}
.y2a{bottom:374.835000px;}
.yb4{bottom:385.455000px;}
.yc3{bottom:386.355000px;}
.y7a{bottom:386.715000px;}
.y4d{bottom:389.235000px;}
.y29{bottom:391.215000px;}
.yb3{bottom:406.155000px;}
.y28{bottom:407.415000px;}
.y4c{bottom:409.935000px;}
.y27{bottom:423.975000px;}
.yb2{bottom:426.855000px;}
.y79{bottom:428.115000px;}
.y4b{bottom:430.635000px;}
.y26{bottom:440.355000px;}
.yb1{bottom:447.555000px;}
.y78{bottom:448.815000px;}
.y4a{bottom:451.335000px;}
.y25{bottom:456.735000px;}
.yb0{bottom:468.255000px;}
.y77{bottom:469.515000px;}
.y49{bottom:472.035000px;}
.y24{bottom:473.115000px;}
.yaf{bottom:488.955000px;}
.y23{bottom:489.315000px;}
.y76{bottom:490.215000px;}
.y48{bottom:492.735000px;}
.y22{bottom:505.875000px;}
.yae{bottom:509.655000px;}
.y75{bottom:510.915000px;}
.y47{bottom:513.435000px;}
.y21{bottom:522.255000px;}
.yad{bottom:530.355000px;}
.y74{bottom:531.615000px;}
.y46{bottom:534.135000px;}
.y20{bottom:538.635000px;}
.yac{bottom:551.055000px;}
.y73{bottom:552.315000px;}
.y1f{bottom:554.835000px;}
.y1e{bottom:571.425000px;}
.yab{bottom:571.785000px;}
.y72{bottom:573.045000px;}
.y45{bottom:575.565000px;}
.y1d{bottom:587.805000px;}
.yaa{bottom:592.485000px;}
.y71{bottom:593.745000px;}
.y44{bottom:596.265000px;}
.y1c{bottom:604.185000px;}
.ya9{bottom:613.185000px;}
.y70{bottom:614.445000px;}
.y43{bottom:616.965000px;}
.y1b{bottom:620.385000px;}
.ya8{bottom:633.885000px;}
.y6f{bottom:635.145000px;}
.y1a{bottom:636.945000px;}
.y42{bottom:637.665000px;}
.y19{bottom:653.325000px;}
.ya7{bottom:654.225000px;}
.y8b{bottom:655.485000px;}
.y6e{bottom:655.845000px;}
.y41{bottom:658.365000px;}
.y18{bottom:669.705000px;}
.ya6{bottom:674.925000px;}
.y8a{bottom:676.185000px;}
.y6d{bottom:676.545000px;}
.y40{bottom:679.065000px;}
.y17{bottom:685.905000px;}
.ya5{bottom:695.985000px;}
.y6c{bottom:697.245000px;}
.y3f{bottom:699.765000px;}
.y16{bottom:703.185000px;}
.ya4{bottom:716.685000px;}
.y6b{bottom:717.765000px;}
.y15{bottom:720.285000px;}
.y3e{bottom:720.465000px;}
.ya3{bottom:737.385000px;}
.y6a{bottom:738.465000px;}
.y14{bottom:740.985000px;}
.y3d{bottom:741.165000px;}
.y69{bottom:759.165000px;}
.y13{bottom:761.685000px;}
.y3c{bottom:761.865000px;}
.ya2{bottom:762.585000px;}
.yc6{bottom:779.505000px;}
.y68{bottom:779.865000px;}
.y12{bottom:782.385000px;}
.y3b{bottom:782.565000px;}
.y11{bottom:799.665000px;}
.yc5{bottom:800.205000px;}
.y67{bottom:800.565000px;}
.y10{bottom:809.385000px;}
.yf{bottom:818.250000px;}
.y66{bottom:821.310000px;}
.ya1{bottom:841.110000px;}
.y65{bottom:842.010000px;}
.y4{bottom:846.690000px;}
.y64{bottom:862.710000px;}
.y63{bottom:883.410000px;}
.ya0{bottom:899.070000px;}
.y62{bottom:904.110000px;}
.ye{bottom:910.590000px;}
.yd{bottom:923.370000px;}
.y91{bottom:924.450000px;}
.y61{bottom:924.810000px;}
.y90{bottom:945.150000px;}
.y60{bottom:945.510000px;}
.y9e{bottom:957.030000px;}
.y5f{bottom:966.210000px;}
.yc{bottom:968.910000px;}
.y8f{bottom:986.550000px;}
.y5e{bottom:986.910000px;}
.y8e{bottom:1007.250000px;}
.y5d{bottom:1007.610000px;}
.y5c{bottom:1028.310000px;}
.y9{bottom:1030.290000px;}
.y9b{bottom:1035.510000px;}
.y5b{bottom:1049.010000px;}
.y8{bottom:1050.990000px;}
.y5a{bottom:1069.380000px;}
.y89{bottom:1069.740000px;}
.yb{bottom:1106.460000px;}
.y53{bottom:1108.080000px;}
.y56{bottom:1116.540000px;}
.ya{bottom:1120.680000px;}
.y55{bottom:1137.060000px;}
.y57{bottom:1171.620000px;}
.he{height:8.773594px;}
.hf{height:10.830586px;}
.h5{height:18.430664px;}
.h1a{height:20.692500px;}
.hb{height:25.163437px;}
.h9{height:29.678906px;}
.h16{height:29.700000px;}
.h11{height:40.472227px;}
.h1d{height:41.385000px;}
.h19{height:41.392500px;}
.h1b{height:41.430000px;}
.h6{height:42.602344px;}
.h8{height:44.518359px;}
.h2{height:44.985000px;}
.hd{height:45.457031px;}
.h17{height:47.221875px;}
.h1{height:50.326875px;}
.h7{height:51.328125px;}
.h15{height:52.998047px;}
.hc{height:55.760625px;}
.h13{height:55.824609px;}
.h12{height:57.324375px;}
.h14{height:58.651172px;}
.h1c{height:62.085000px;}
.h1e{height:62.122500px;}
.h1f{height:64.546875px;}
.h10{height:70.664062px;}
.h3{height:72.562500px;}
.h4{height:80.464922px;}
.ha{height:84.898125px;}
.h18{height:89.805000px;}
.h0{height:1188.000000px;}
.w7{width:110.901000px;}
.w5{width:121.140000px;}
.w3{width:135.754500px;}
.w6{width:140.256000px;}
.w4{width:146.901000px;}
.w8{width:180.750000px;}
.w2{width:406.260000px;}
.w1{width:783.495000px;}
.w0{width:918.000000px;}
.x5{left:-20.341500px;}
.x0{left:0.000000px;}
.x6{left:5.398500px;}
.x25{left:6.660000px;}
.x16{left:8.385000px;}
.x23{left:10.785000px;}
.x1d{left:15.658500px;}
.x21{left:24.480000px;}
.x1f{left:28.965000px;}
.x1c{left:41.581500px;}
.x3{left:58.500000px;}
.x4{left:67.321500px;}
.xa{left:76.500000px;}
.x19{left:81.000000px;}
.x26{left:135.036000px;}
.x1e{left:178.965000px;}
.x7{left:206.310000px;}
.x17{left:207.390000px;}
.x20{left:327.495000px;}
.x14{left:351.435000px;}
.xb{left:369.075000px;}
.xc{left:383.475000px;}
.xd{left:393.735000px;}
.xe{left:401.655000px;}
.x9{left:405.975000px;}
.xf{left:411.915000px;}
.x10{left:423.795000px;}
.x11{left:438.195000px;}
.x2{left:441.075000px;}
.x12{left:450.075000px;}
.x1a{left:454.575000px;}
.x1{left:459.075000px;}
.x18{left:470.055000px;}
.x8{left:472.215000px;}
.x13{left:509.325000px;}
.x15{left:511.560000px;}
.x22{left:591.960000px;}
.x24{left:704.490000px;}
.x1b{left:796.650000px;}
@media print{
.v2{vertical-align:-76.160000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls8{letter-spacing:-0.832000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls2{letter-spacing:-0.148267pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.113067pt;}
.ls7{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.704000pt;}
.lsa{letter-spacing:1.280000pt;}
.ls0{letter-spacing:73.920000pt;}
.ws0{word-spacing:-18.281173pt;}
.wsa{word-spacing:-16.704000pt;}
.ws8{word-spacing:-16.640000pt;}
.ws4{word-spacing:-16.384000pt;}
.wsb{word-spacing:-16.192000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.936000pt;}
.ws9{word-spacing:-15.360000pt;}
.ws7{word-spacing:-15.168000pt;}
.ws2{word-spacing:-0.053120pt;}
.ws3{word-spacing:0.000000pt;}
._3{margin-left:-5.781333pt;}
._4{margin-left:-4.842667pt;}
._2{margin-left:-1.920000pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.344000pt;}
._a{width:2.335147pt;}
._19{width:3.360853pt;}
._1d{width:4.256853pt;}
._9{width:5.157120pt;}
._10{width:6.656000pt;}
._15{width:7.813547pt;}
._1c{width:8.948480pt;}
._5{width:9.950293pt;}
._6{width:10.977707pt;}
._1b{width:12.482133pt;}
._f{width:13.550080pt;}
._16{width:14.528000pt;}
._18{width:17.238400pt;}
._d{width:18.555520pt;}
._e{width:19.971200pt;}
._17{width:20.918400pt;}
._50{width:21.813333pt;}
._1a{width:22.720000pt;}
._1e{width:23.936000pt;}
._1f{width:25.216000pt;}
._14{width:26.688000pt;}
._13{width:27.584000pt;}
._c{width:28.666240pt;}
._b{width:29.577600pt;}
._20{width:31.168000pt;}
._11{width:32.448000pt;}
._12{width:33.344000pt;}
._21{width:34.816000pt;}
._22{width:35.776000pt;}
._3f{width:37.184000pt;}
._33{width:38.336000pt;}
._34{width:39.552000pt;}
._3a{width:40.512000pt;}
._3c{width:41.536000pt;}
._3b{width:43.018667pt;}
._2a{width:43.968000pt;}
._2b{width:45.120000pt;}
._25{width:48.064000pt;}
._26{width:48.960000pt;}
._37{width:50.293333pt;}
._42{width:51.712000pt;}
._4e{width:54.528000pt;}
._4d{width:55.424000pt;}
._8{width:60.672000pt;}
._4f{width:65.034667pt;}
._4b{width:66.240000pt;}
._4c{width:67.264000pt;}
._35{width:69.248000pt;}
._36{width:70.154667pt;}
._3d{width:73.152000pt;}
._3e{width:74.122667pt;}
._45{width:81.024000pt;}
._46{width:81.920000pt;}
._51{width:82.816000pt;}
._52{width:83.893333pt;}
._53{width:85.578667pt;}
._49{width:87.018667pt;}
._38{width:88.426667pt;}
._39{width:89.589333pt;}
._4a{width:90.549333pt;}
._7{width:93.696000pt;}
._27{width:95.168000pt;}
._2f{width:97.344000pt;}
._30{width:98.688000pt;}
._31{width:104.522667pt;}
._32{width:105.664000pt;}
._23{width:116.010667pt;}
._24{width:117.056000pt;}
._43{width:118.336000pt;}
._44{width:119.242667pt;}
._47{width:120.704000pt;}
._48{width:121.664000pt;}
._28{width:124.992000pt;}
._29{width:125.898667pt;}
._40{width:127.168000pt;}
._41{width:128.384000pt;}
._2d{width:152.832000pt;}
._2e{width:153.738667pt;}
._2c{width:183.104000pt;}
.fsa{font-size:10.880000pt;}
.fsb{font-size:13.440000pt;}
.fs3{font-size:16.000000pt;}
.fs6{font-size:26.880000pt;}
.fs8{font-size:29.440000pt;}
.fs5{font-size:40.320000pt;}
.fs2{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fsc{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.y7{bottom:-3.200000pt;}
.y0{bottom:0.000000pt;}
.y99{bottom:3.993333pt;}
.y9d{bottom:4.000000pt;}
.y6{bottom:7.200000pt;}
.y54{bottom:12.640000pt;}
.y98{bottom:22.388000pt;}
.y9c{bottom:22.400000pt;}
.y5{bottom:25.600000pt;}
.y59{bottom:32.160000pt;}
.y9f{bottom:40.800000pt;}
.y3{bottom:41.440000pt;}
.y96{bottom:46.706667pt;}
.y58{bottom:49.920000pt;}
.y2{bottom:59.072000pt;}
.y95{bottom:65.106667pt;}
.y1{bottom:76.832000pt;}
.y8d{bottom:77.632000pt;}
.yc2{bottom:84.992000pt;}
.y88{bottom:86.112000pt;}
.y8c{bottom:92.192000pt;}
.y9a{bottom:93.798667pt;}
.y3a{bottom:99.552000pt;}
.yc1{bottom:103.392000pt;}
.y87{bottom:104.512000pt;}
.y39{bottom:114.592000pt;}
.yc0{bottom:121.792000pt;}
.y86{bottom:122.912000pt;}
.y97{bottom:126.918667pt;}
.y38{bottom:129.152000pt;}
.ybf{bottom:140.186667pt;}
.y85{bottom:141.306667pt;}
.y37{bottom:143.706667pt;}
.y36{bottom:158.106667pt;}
.ybe{bottom:158.586667pt;}
.y84{bottom:159.706667pt;}
.y35{bottom:172.826667pt;}
.ybd{bottom:176.986667pt;}
.y83{bottom:178.106667pt;}
.y94{bottom:178.280000pt;}
.y34{bottom:187.386667pt;}
.ybc{bottom:195.386667pt;}
.y82{bottom:196.506667pt;}
.y33{bottom:201.946667pt;}
.ybb{bottom:213.786667pt;}
.y81{bottom:214.906667pt;}
.y32{bottom:216.346667pt;}
.y31{bottom:231.226667pt;}
.yba{bottom:232.186667pt;}
.y80{bottom:233.306667pt;}
.y30{bottom:245.786667pt;}
.yb9{bottom:250.586667pt;}
.y7f{bottom:251.706667pt;}
.y52{bottom:257.466667pt;}
.y2f{bottom:260.346667pt;}
.yb8{bottom:268.986667pt;}
.y7e{bottom:270.106667pt;}
.y51{bottom:272.346667pt;}
.y2e{bottom:274.946667pt;}
.yb7{bottom:287.426667pt;}
.y93{bottom:288.226667pt;}
.y7d{bottom:288.546667pt;}
.y2d{bottom:289.346667pt;}
.y50{bottom:290.786667pt;}
.y2c{bottom:304.066667pt;}
.yb6{bottom:305.826667pt;}
.y92{bottom:306.626667pt;}
.y7c{bottom:306.946667pt;}
.y4f{bottom:309.186667pt;}
.y2b{bottom:318.626667pt;}
.yb5{bottom:324.226667pt;}
.yc4{bottom:325.026667pt;}
.y7b{bottom:325.346667pt;}
.y4e{bottom:327.586667pt;}
.y2a{bottom:333.186667pt;}
.yb4{bottom:342.626667pt;}
.yc3{bottom:343.426667pt;}
.y7a{bottom:343.746667pt;}
.y4d{bottom:345.986667pt;}
.y29{bottom:347.746667pt;}
.yb3{bottom:361.026667pt;}
.y28{bottom:362.146667pt;}
.y4c{bottom:364.386667pt;}
.y27{bottom:376.866667pt;}
.yb2{bottom:379.426667pt;}
.y79{bottom:380.546667pt;}
.y4b{bottom:382.786667pt;}
.y26{bottom:391.426667pt;}
.yb1{bottom:397.826667pt;}
.y78{bottom:398.946667pt;}
.y4a{bottom:401.186667pt;}
.y25{bottom:405.986667pt;}
.yb0{bottom:416.226667pt;}
.y77{bottom:417.346667pt;}
.y49{bottom:419.586667pt;}
.y24{bottom:420.546667pt;}
.yaf{bottom:434.626667pt;}
.y23{bottom:434.946667pt;}
.y76{bottom:435.746667pt;}
.y48{bottom:437.986667pt;}
.y22{bottom:449.666667pt;}
.yae{bottom:453.026667pt;}
.y75{bottom:454.146667pt;}
.y47{bottom:456.386667pt;}
.y21{bottom:464.226667pt;}
.yad{bottom:471.426667pt;}
.y74{bottom:472.546667pt;}
.y46{bottom:474.786667pt;}
.y20{bottom:478.786667pt;}
.yac{bottom:489.826667pt;}
.y73{bottom:490.946667pt;}
.y1f{bottom:493.186667pt;}
.y1e{bottom:507.933333pt;}
.yab{bottom:508.253333pt;}
.y72{bottom:509.373333pt;}
.y45{bottom:511.613333pt;}
.y1d{bottom:522.493333pt;}
.yaa{bottom:526.653333pt;}
.y71{bottom:527.773333pt;}
.y44{bottom:530.013333pt;}
.y1c{bottom:537.053333pt;}
.ya9{bottom:545.053333pt;}
.y70{bottom:546.173333pt;}
.y43{bottom:548.413333pt;}
.y1b{bottom:551.453333pt;}
.ya8{bottom:563.453333pt;}
.y6f{bottom:564.573333pt;}
.y1a{bottom:566.173333pt;}
.y42{bottom:566.813333pt;}
.y19{bottom:580.733333pt;}
.ya7{bottom:581.533333pt;}
.y8b{bottom:582.653333pt;}
.y6e{bottom:582.973333pt;}
.y41{bottom:585.213333pt;}
.y18{bottom:595.293333pt;}
.ya6{bottom:599.933333pt;}
.y8a{bottom:601.053333pt;}
.y6d{bottom:601.373333pt;}
.y40{bottom:603.613333pt;}
.y17{bottom:609.693333pt;}
.ya5{bottom:618.653333pt;}
.y6c{bottom:619.773333pt;}
.y3f{bottom:622.013333pt;}
.y16{bottom:625.053333pt;}
.ya4{bottom:637.053333pt;}
.y6b{bottom:638.013333pt;}
.y15{bottom:640.253333pt;}
.y3e{bottom:640.413333pt;}
.ya3{bottom:655.453333pt;}
.y6a{bottom:656.413333pt;}
.y14{bottom:658.653333pt;}
.y3d{bottom:658.813333pt;}
.y69{bottom:674.813333pt;}
.y13{bottom:677.053333pt;}
.y3c{bottom:677.213333pt;}
.ya2{bottom:677.853333pt;}
.yc6{bottom:692.893333pt;}
.y68{bottom:693.213333pt;}
.y12{bottom:695.453333pt;}
.y3b{bottom:695.613333pt;}
.y11{bottom:710.813333pt;}
.yc5{bottom:711.293333pt;}
.y67{bottom:711.613333pt;}
.y10{bottom:719.453333pt;}
.yf{bottom:727.333333pt;}
.y66{bottom:730.053333pt;}
.ya1{bottom:747.653333pt;}
.y65{bottom:748.453333pt;}
.y4{bottom:752.613333pt;}
.y64{bottom:766.853333pt;}
.y63{bottom:785.253333pt;}
.ya0{bottom:799.173333pt;}
.y62{bottom:803.653333pt;}
.ye{bottom:809.413333pt;}
.yd{bottom:820.773333pt;}
.y91{bottom:821.733333pt;}
.y61{bottom:822.053333pt;}
.y90{bottom:840.133333pt;}
.y60{bottom:840.453333pt;}
.y9e{bottom:850.693333pt;}
.y5f{bottom:858.853333pt;}
.yc{bottom:861.253333pt;}
.y8f{bottom:876.933333pt;}
.y5e{bottom:877.253333pt;}
.y8e{bottom:895.333333pt;}
.y5d{bottom:895.653333pt;}
.y5c{bottom:914.053333pt;}
.y9{bottom:915.813333pt;}
.y9b{bottom:920.453333pt;}
.y5b{bottom:932.453333pt;}
.y8{bottom:934.213333pt;}
.y5a{bottom:950.560000pt;}
.y89{bottom:950.880000pt;}
.yb{bottom:983.520000pt;}
.y53{bottom:984.960000pt;}
.y56{bottom:992.480000pt;}
.ya{bottom:996.160000pt;}
.y55{bottom:1010.720000pt;}
.y57{bottom:1041.440000pt;}
.he{height:7.798750pt;}
.hf{height:9.627187pt;}
.h5{height:16.382812pt;}
.h1a{height:18.393333pt;}
.hb{height:22.367500pt;}
.h9{height:26.381250pt;}
.h16{height:26.400000pt;}
.h11{height:35.975313pt;}
.h1d{height:36.786667pt;}
.h19{height:36.793333pt;}
.h1b{height:36.826667pt;}
.h6{height:37.868750pt;}
.h8{height:39.571875pt;}
.h2{height:39.986667pt;}
.hd{height:40.406250pt;}
.h17{height:41.975000pt;}
.h1{height:44.735000pt;}
.h7{height:45.625000pt;}
.h15{height:47.109375pt;}
.hc{height:49.565000pt;}
.h13{height:49.621875pt;}
.h12{height:50.955000pt;}
.h14{height:52.134375pt;}
.h1c{height:55.186667pt;}
.h1e{height:55.220000pt;}
.h1f{height:57.375000pt;}
.h10{height:62.812500pt;}
.h3{height:64.500000pt;}
.h4{height:71.524375pt;}
.ha{height:75.465000pt;}
.h18{height:79.826667pt;}
.h0{height:1056.000000pt;}
.w7{width:98.578667pt;}
.w5{width:107.680000pt;}
.w3{width:120.670667pt;}
.w6{width:124.672000pt;}
.w4{width:130.578667pt;}
.w8{width:160.666667pt;}
.w2{width:361.120000pt;}
.w1{width:696.440000pt;}
.w0{width:816.000000pt;}
.x5{left:-18.081333pt;}
.x0{left:0.000000pt;}
.x6{left:4.798667pt;}
.x25{left:5.920000pt;}
.x16{left:7.453333pt;}
.x23{left:9.586667pt;}
.x1d{left:13.918667pt;}
.x21{left:21.760000pt;}
.x1f{left:25.746667pt;}
.x1c{left:36.961333pt;}
.x3{left:52.000000pt;}
.x4{left:59.841333pt;}
.xa{left:68.000000pt;}
.x19{left:72.000000pt;}
.x26{left:120.032000pt;}
.x1e{left:159.080000pt;}
.x7{left:183.386667pt;}
.x17{left:184.346667pt;}
.x20{left:291.106667pt;}
.x14{left:312.386667pt;}
.xb{left:328.066667pt;}
.xc{left:340.866667pt;}
.xd{left:349.986667pt;}
.xe{left:357.026667pt;}
.x9{left:360.866667pt;}
.xf{left:366.146667pt;}
.x10{left:376.706667pt;}
.x11{left:389.506667pt;}
.x2{left:392.066667pt;}
.x12{left:400.066667pt;}
.x1a{left:404.066667pt;}
.x1{left:408.066667pt;}
.x18{left:417.826667pt;}
.x8{left:419.746667pt;}
.x13{left:452.733333pt;}
.x15{left:454.720000pt;}
.x22{left:526.186667pt;}
.x24{left:626.213333pt;}
.x1b{left:708.133333pt;}
}




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