
    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_bf7c1ed5e333b2750c49d666.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_23098b310fb416db9360b496.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.766602;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_e3781e6a301128c818e4ba31.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.065430;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_f09e3953c71c5aa3a4db3f03.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.909180;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_2bf8f7e19e73da41378db653.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_92715a1280f4b92a399aa6e4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.940918;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_5c4d7ecef9a0c50b667ab6ac.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.736816;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_5ae978abae9ad788145f25ec.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.895996;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_91440f870591969be86c0171.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.748047;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_32f73b59a334f277e0eb91b3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.110352;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_ecca6647305ddc7716d5a16c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.084473;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_a5142edc81b08aa951d37631.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.921387;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:ffd;src:url('chunks/assets/font_b0207f19111975ed6e98cb4e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.948242;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:ffe;src:url('chunks/assets/font_df2e6c879bfb0b2f436215be.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.949000;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:-63.360005px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.440311px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.119817px;}
.ls4{letter-spacing:19.252323px;}
.ls3{letter-spacing:55.619406px;}
.ls0{letter-spacing:73.619406px;}
.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;}
}
.ws3{word-spacing:-17.107894px;}
.ws1{word-spacing:-14.573394px;}
.ws2{word-spacing:-13.147695px;}
.ws0{word-spacing:0.000000px;}
._3{margin-left:-4.143531px;}
._4{margin-left:-2.993456px;}
._2{margin-left:-1.008038px;}
._0{width:1.008038px;}
._1{width:2.207366px;}
._8{width:3.518743px;}
._b{width:5.257961px;}
._7{width:6.324393px;}
._a{width:7.511109px;}
._9{width:8.717390px;}
._f{width:9.779683px;}
._14{width:11.277733px;}
._5{width:12.314431px;}
._28{width:13.419638px;}
._2c{width:14.597092px;}
._11{width:15.681478px;}
._10{width:17.257258px;}
._15{width:19.227461px;}
._16{width:20.667722px;}
._12{width:21.922970px;}
._13{width:22.990264px;}
._6{width:24.070280px;}
._1d{width:25.147011px;}
._1a{width:26.174312px;}
._19{width:27.448191px;}
._20{width:28.988646px;}
._1b{width:30.056073px;}
._1c{width:31.130871px;}
._40{width:32.859334px;}
._56{width:33.917642px;}
._4a{width:35.277134px;}
._49{width:36.470920px;}
._31{width:37.506290px;}
._23{width:38.948405px;}
._c{width:40.117459px;}
._50{width:41.509878px;}
._d{width:42.735598px;}
._e{width:43.953325px;}
._58{width:45.353996px;}
._3f{width:46.376913px;}
._51{width:47.607299px;}
._55{width:48.909838px;}
._2d{width:50.068834px;}
._3d{width:51.282674px;}
._44{width:52.411306px;}
._37{width:53.656726px;}
._2f{width:54.945893px;}
._2e{width:56.780468px;}
._32{width:58.156512px;}
._33{width:59.279825px;}
._18{width:61.341848px;}
._17{width:62.602198px;}
._25{width:63.685290px;}
._30{width:65.039152px;}
._22{width:66.742657px;}
._21{width:67.908342px;}
._24{width:70.000205px;}
._43{width:71.280557px;}
._1e{width:73.987145px;}
._1f{width:75.700139px;}
._42{width:77.254656px;}
._52{width:78.933092px;}
._4c{width:80.682763px;}
._45{width:82.281619px;}
._3b{width:86.415824px;}
._3c{width:87.900305px;}
._47{width:89.424900px;}
._57{width:90.702661px;}
._5b{width:92.190042px;}
._3a{width:97.497985px;}
._41{width:99.580883px;}
._38{width:100.990948px;}
._39{width:102.261586px;}
._2a{width:103.666487px;}
._29{width:105.031291px;}
._4d{width:109.365068px;}
._4b{width:114.556515px;}
._35{width:120.239300px;}
._36{width:121.376283px;}
._46{width:132.829945px;}
._3e{width:134.385815px;}
._48{width:136.943494px;}
._5d{width:139.515295px;}
._5c{width:140.910326px;}
._53{width:143.751112px;}
._54{width:159.705013px;}
._2b{width:168.630461px;}
._34{width:170.247995px;}
._5a{width:196.395552px;}
._59{width:213.906694px;}
._4f{width:225.543518px;}
._4e{width:226.581784px;}
._27{width:230.230118px;}
._26{width:231.882585px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc8{color:rgb(0,103,152);}
.fc6{color:rgb(255,255,255);}
.fc5{color:rgb(68,84,106);}
.fc1{color:rgb(0,0,0);}
.fc7{color:rgb(5,99,193);}
.fc2{color:rgb(0,32,96);}
.fc0{color:rgb(83,129,53);}
.fs8{font-size:18.000720px;}
.fs6{font-size:48.241800px;}
.fs9{font-size:54.002250px;}
.fs1{font-size:59.762250px;}
.fsa{font-size:66.242700px;}
.fs0{font-size:72.002705px;}
.fs7{font-size:77.763154px;}
.fs5{font-size:84.243145px;}
.fs4{font-size:131.764946px;}
.fs3{font-size:144.005409px;}
.fs2{font-size:270.010350px;}
.y5{bottom:-12.959997px;}
.y6e{bottom:-8.100006px;}
.y0{bottom:0.000000px;}
.y6b{bottom:3.420001px;}
.y3{bottom:4.140000px;}
.y34{bottom:4.680004px;}
.y8{bottom:5.219879px;}
.yb{bottom:49.680039px;}
.ya{bottom:57.240005px;}
.y7{bottom:80.280121px;}
.y9{bottom:85.500000px;}
.yce{bottom:119.700096px;}
.ya0{bottom:120.960091px;}
.y30{bottom:135.000068px;}
.ycd{bottom:142.560036px;}
.y9f{bottom:143.820099px;}
.y68{bottom:153.360077px;}
.y2f{bottom:155.700096px;}
.ycc{bottom:165.420043px;}
.y9e{bottom:166.680039px;}
.y67{bottom:172.620072px;}
.y2e{bottom:176.400055px;}
.ycb{bottom:188.280052px;}
.y9d{bottom:189.540047px;}
.y66{bottom:192.060036px;}
.y2d{bottom:197.100083px;}
.yca{bottom:211.140060px;}
.y65{bottom:211.320099px;}
.y9c{bottom:212.400055px;}
.y2c{bottom:217.800041px;}
.y64{bottom:230.760064px;}
.yc9{bottom:234.000068px;}
.y9b{bottom:235.260064px;}
.y2b{bottom:238.500068px;}
.y63{bottom:250.020058px;}
.yc8{bottom:256.860077px;}
.y9a{bottom:258.120072px;}
.y2a{bottom:259.200096px;}
.y62{bottom:269.460091px;}
.yc7{bottom:279.720085px;}
.y29{bottom:279.900055px;}
.y99{bottom:280.980079px;}
.y61{bottom:288.720085px;}
.y28{bottom:300.600083px;}
.yc6{bottom:302.580093px;}
.y98{bottom:303.840088px;}
.y60{bottom:308.160049px;}
.y27{bottom:321.300041px;}
.yc5{bottom:325.440033px;}
.y97{bottom:326.700096px;}
.y5f{bottom:327.420043px;}
.y26{bottom:342.000068px;}
.y5e{bottom:347.940033px;}
.yc4{bottom:348.300041px;}
.y96{bottom:349.560036px;}
.y5d{bottom:353.880066px;}
.y25{bottom:362.700096px;}
.yc3{bottom:371.160049px;}
.y95{bottom:372.420043px;}
.y5c{bottom:376.200096px;}
.y24{bottom:383.400055px;}
.yc2{bottom:394.020058px;}
.y94{bottom:395.280052px;}
.y5b{bottom:395.460091px;}
.y23{bottom:404.100083px;}
.y5a{bottom:414.900055px;}
.yc1{bottom:416.880066px;}
.y93{bottom:418.140060px;}
.y22{bottom:424.800041px;}
.y59{bottom:434.160049px;}
.yc0{bottom:439.740074px;}
.y92{bottom:441.180039px;}
.y21{bottom:445.860077px;}
.y58{bottom:453.600083px;}
.ybf{bottom:462.600083px;}
.y91{bottom:464.040047px;}
.y20{bottom:466.560036px;}
.y57{bottom:472.860077px;}
.ybe{bottom:485.460091px;}
.y90{bottom:486.900055px;}
.y1f{bottom:487.260064px;}
.y56{bottom:492.300041px;}
.ybd{bottom:508.320099px;}
.y1e{bottom:508.500068px;}
.y8f{bottom:509.760064px;}
.y55{bottom:511.560036px;}
.y1d{bottom:529.560036px;}
.y54{bottom:530.820099px;}
.ybc{bottom:531.180039px;}
.y8e{bottom:532.620072px;}
.y1c{bottom:550.620072px;}
.y53{bottom:551.340088px;}
.ybb{bottom:554.220085px;}
.y8d{bottom:555.480079px;}
.y52{bottom:557.280052px;}
.y1b{bottom:571.680039px;}
.yba{bottom:577.080093px;}
.y8c{bottom:578.340088px;}
.y51{bottom:579.600083px;}
.y1a{bottom:592.920043px;}
.y50{bottom:598.860077px;}
.yb9{bottom:599.940033px;}
.y8b{bottom:601.200096px;}
.y19{bottom:614.520058px;}
.y4f{bottom:618.300041px;}
.yb8{bottom:622.800041px;}
.y8a{bottom:623.700096px;}
.y4e{bottom:637.560036px;}
.y18{bottom:638.640060px;}
.y89{bottom:641.880066px;}
.yb7{bottom:645.660049px;}
.y4d{bottom:657.000068px;}
.y88{bottom:659.520058px;}
.y17{bottom:662.760064px;}
.yb6{bottom:668.520058px;}
.y87{bottom:674.280052px;}
.y4c{bottom:676.260064px;}
.y16{bottom:690.480079px;}
.yb5{bottom:691.380066px;}
.y4b{bottom:695.700061px;}
.y86{bottom:713.520058px;}
.yb4{bottom:714.240074px;}
.y4a{bottom:714.960056px;}
.y85{bottom:730.800076px;}
.y15{bottom:732.600083px;}
.y49{bottom:734.400055px;}
.yb3{bottom:737.100083px;}
.y84{bottom:748.080059px;}
.y48{bottom:753.660049px;}
.yb2{bottom:759.960056px;}
.y83{bottom:765.360077px;}
.y47{bottom:773.100083px;}
.y14{bottom:774.180073px;}
.yb1{bottom:782.820065px;}
.y82{bottom:786.600083px;}
.y46{bottom:793.440067px;}
.y45{bottom:799.380066px;}
.yb0{bottom:805.680073px;}
.y81{bottom:808.740074px;}
.y13{bottom:812.880066px;}
.y44{bottom:820.440067px;}
.y80{bottom:828.180073px;}
.yaf{bottom:828.540081px;}
.y43{bottom:836.640060px;}
.y7f{bottom:847.440067px;}
.yae{bottom:851.400055px;}
.y12{bottom:851.580059px;}
.y42{bottom:853.740074px;}
.y41{bottom:862.740074px;}
.y7e{bottom:866.880066px;}
.yad{bottom:874.260064px;}
.y3e{bottom:880.200061px;}
.y11{bottom:890.280052px;}
.yac{bottom:897.120072px;}
.y3d{bottom:897.840054px;}
.y7d{bottom:901.980079px;}
.y7c{bottom:908.100083px;}
.y40{bottom:914.040081px;}
.y3c{bottom:916.200061px;}
.yab{bottom:919.980079px;}
.y7b{bottom:930.420078px;}
.y10{bottom:935.460056px;}
.y3b{bottom:938.160049px;}
.yaa{bottom:942.840054px;}
.y3f{bottom:944.640060px;}
.y7a{bottom:949.680073px;}
.y3a{bottom:955.800076px;}
.ya9{bottom:965.700061px;}
.y39{bottom:974.340054px;}
.yf{bottom:981.180073px;}
.y79{bottom:984.960074px;}
.ya8{bottom:988.560070px;}
.y78{bottom:990.900072px;}
.y38{bottom:997.380066px;}
.ya7{bottom:1011.420061px;}
.y77{bottom:1013.220068px;}
.ye{bottom:1029.420061px;}
.y76{bottom:1032.660067px;}
.ya6{bottom:1034.280069px;}
.y37{bottom:1038.240074px;}
.y75{bottom:1051.920061px;}
.ya5{bottom:1057.140060px;}
.y36{bottom:1061.100065px;}
.yd{bottom:1077.660067px;}
.ya4{bottom:1080.000068px;}
.y74{bottom:1087.200061px;}
.y73{bottom:1093.140060px;}
.y35{bottom:1099.080059px;}
.ya3{bottom:1102.860060px;}
.y72{bottom:1114.020058px;}
.y33{bottom:1121.400064px;}
.ya2{bottom:1125.720068px;}
.yc{bottom:1126.080068px;}
.y71{bottom:1131.300067px;}
.y32{bottom:1142.820065px;}
.ya1{bottom:1148.580068px;}
.y70{bottom:1150.560070px;}
.y6{bottom:1164.780069px;}
.y31{bottom:1167.480063px;}
.y6f{bottom:1171.080068px;}
.y4{bottom:1181.880066px;}
.y6d{bottom:1185.300067px;}
.y2{bottom:1188.540064px;}
.y6a{bottom:1192.140065px;}
.y1{bottom:1192.680064px;}
.y69{bottom:1195.560066px;}
.y6c{bottom:1197.000065px;}
.h5{height:5.939999px;}
.h24{height:6.119999px;}
.h15{height:16.020006px;}
.h1c{height:16.058259px;}
.h21{height:16.200001px;}
.h3{height:21.240001px;}
.h8{height:24.119934px;}
.h14{height:34.037793px;}
.h17{height:35.262683px;}
.h22{height:40.791739px;}
.h25{height:41.899207px;}
.h1b{height:42.166236px;}
.h27{height:43.683637px;}
.h28{height:44.092168px;}
.h23{height:45.722608px;}
.h1d{height:48.174859px;}
.h29{height:49.722192px;}
.h20{height:50.599483px;}
.h12{height:50.802689px;}
.ha{height:51.715636px;}
.h1e{height:51.766715px;}
.h9{height:52.771513px;}
.h1a{height:53.313296px;}
.h4{height:54.388762px;}
.h6{height:55.865380px;}
.h1f{height:57.380151px;}
.h19{height:58.822118px;}
.h26{height:59.094440px;}
.h16{height:59.439133px;}
.hb{height:59.441261px;}
.h2{height:60.963227px;}
.h10{height:61.578120px;}
.h11{height:62.369530px;}
.h18{height:65.840483px;}
.h2a{height:67.359295px;}
.h13{height:71.326960px;}
.h7{height:71.615971px;}
.hd{height:105.261766px;}
.he{height:117.546170px;}
.hf{height:128.465763px;}
.hc{height:197.365964px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w5{width:6.660016px;}
.w6{width:6.839985px;}
.w2{width:9.000000px;}
.w4{width:10.440033px;}
.w3{width:570.599980px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:84.959997px;}
.x1{left:93.060001px;}
.xb{left:127.799998px;}
.xd{left:135.180005px;}
.x17{left:138.060001px;}
.x8{left:140.939999px;}
.xc{left:161.280001px;}
.x16{left:183.960005px;}
.x6{left:193.319996px;}
.xf{left:229.860008px;}
.xa{left:230.939999px;}
.x4{left:265.860008px;}
.x11{left:273.960005px;}
.xe{left:297.000000px;}
.x10{left:309.779983px;}
.x14{left:336.060001px;}
.x2{left:384.480011px;}
.x9{left:446.399987px;}
.x18{left:467.819996px;}
.x19{left:520.920010px;}
.x3{left:536.040012px;}
.x15{left:558.899987px;}
.x12{left:583.919975px;}
.x13{left:751.860008px;}
.x7{left:763.200027px;}
@media print{
.v2{vertical-align:-56.320004pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.280276pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.106504pt;}
.ls4{letter-spacing:17.113176pt;}
.ls3{letter-spacing:49.439472pt;}
.ls0{letter-spacing:65.439472pt;}
.ws3{word-spacing:-15.207017pt;}
.ws1{word-spacing:-12.954128pt;}
.ws2{word-spacing:-11.686840pt;}
.ws0{word-spacing:0.000000pt;}
._3{margin-left:-3.683138pt;}
._4{margin-left:-2.660850pt;}
._2{margin-left:-0.896034pt;}
._0{width:0.896034pt;}
._1{width:1.962103pt;}
._8{width:3.127771pt;}
._b{width:4.673744pt;}
._7{width:5.621683pt;}
._a{width:6.676541pt;}
._9{width:7.748791pt;}
._f{width:8.693052pt;}
._14{width:10.024651pt;}
._5{width:10.946161pt;}
._28{width:11.928567pt;}
._2c{width:12.975193pt;}
._11{width:13.939091pt;}
._10{width:15.339785pt;}
._15{width:17.091077pt;}
._16{width:18.371309pt;}
._12{width:19.487084pt;}
._13{width:20.435790pt;}
._6{width:21.395804pt;}
._1d{width:22.352899pt;}
._1a{width:23.266055pt;}
._19{width:24.398392pt;}
._20{width:25.767685pt;}
._1b{width:26.716509pt;}
._1c{width:27.671885pt;}
._40{width:29.208297pt;}
._56{width:30.149015pt;}
._4a{width:31.357452pt;}
._49{width:32.418595pt;}
._31{width:33.338925pt;}
._23{width:34.620804pt;}
._c{width:35.659963pt;}
._50{width:36.897669pt;}
._d{width:37.987198pt;}
._e{width:39.069622pt;}
._58{width:40.314663pt;}
._3f{width:41.223922pt;}
._51{width:42.317599pt;}
._55{width:43.475411pt;}
._2d{width:44.505630pt;}
._3d{width:45.584599pt;}
._44{width:46.587828pt;}
._37{width:47.694867pt;}
._2f{width:48.840794pt;}
._2e{width:50.471527pt;}
._32{width:51.694677pt;}
._33{width:52.693178pt;}
._18{width:54.526087pt;}
._17{width:55.646398pt;}
._25{width:56.609146pt;}
._30{width:57.812580pt;}
._22{width:59.326807pt;}
._21{width:60.362971pt;}
._24{width:62.222404pt;}
._43{width:63.360495pt;}
._1e{width:65.766351pt;}
._1f{width:67.289013pt;}
._42{width:68.670806pt;}
._52{width:70.162749pt;}
._4c{width:71.718012pt;}
._45{width:73.139217pt;}
._3b{width:76.814066pt;}
._3c{width:78.133604pt;}
._47{width:79.488800pt;}
._57{width:80.624588pt;}
._5b{width:81.946704pt;}
._3a{width:86.664876pt;}
._41{width:88.516341pt;}
._38{width:89.769732pt;}
._39{width:90.899187pt;}
._2a{width:92.147988pt;}
._29{width:93.361147pt;}
._4d{width:97.213394pt;}
._4b{width:101.828013pt;}
._35{width:106.879378pt;}
._36{width:107.890029pt;}
._46{width:118.071062pt;}
._3e{width:119.454058pt;}
._48{width:121.727550pt;}
._5d{width:124.013595pt;}
._5c{width:125.253623pt;}
._53{width:127.778766pt;}
._54{width:141.960011pt;}
._2b{width:149.893743pt;}
._34{width:151.331551pt;}
._5a{width:174.573824pt;}
._59{width:190.139283pt;}
._4f{width:200.483127pt;}
._4e{width:201.406030pt;}
._27{width:204.648994pt;}
._26{width:206.117854pt;}
.fs8{font-size:16.000640pt;}
.fs6{font-size:42.881600pt;}
.fs9{font-size:48.002000pt;}
.fs1{font-size:53.122000pt;}
.fsa{font-size:58.882400pt;}
.fs0{font-size:64.002404pt;}
.fs7{font-size:69.122804pt;}
.fs5{font-size:74.882796pt;}
.fs4{font-size:117.124396pt;}
.fs3{font-size:128.004808pt;}
.fs2{font-size:240.009200pt;}
.y5{bottom:-11.519997pt;}
.y6e{bottom:-7.200005pt;}
.y0{bottom:0.000000pt;}
.y6b{bottom:3.040001pt;}
.y3{bottom:3.680000pt;}
.y34{bottom:4.160004pt;}
.y8{bottom:4.639892pt;}
.yb{bottom:44.160035pt;}
.ya{bottom:50.880005pt;}
.y7{bottom:71.360108pt;}
.y9{bottom:76.000000pt;}
.yce{bottom:106.400086pt;}
.ya0{bottom:107.520081pt;}
.y30{bottom:120.000061pt;}
.ycd{bottom:126.720032pt;}
.y9f{bottom:127.840088pt;}
.y68{bottom:136.320069pt;}
.y2f{bottom:138.400086pt;}
.ycc{bottom:147.040039pt;}
.y9e{bottom:148.160035pt;}
.y67{bottom:153.440064pt;}
.y2e{bottom:156.800049pt;}
.ycb{bottom:167.360047pt;}
.y9d{bottom:168.480042pt;}
.y66{bottom:170.720032pt;}
.y2d{bottom:175.200074pt;}
.yca{bottom:187.680054pt;}
.y65{bottom:187.840088pt;}
.y9c{bottom:188.800049pt;}
.y2c{bottom:193.600037pt;}
.y64{bottom:205.120057pt;}
.yc9{bottom:208.000061pt;}
.y9b{bottom:209.120057pt;}
.y2b{bottom:212.000061pt;}
.y63{bottom:222.240052pt;}
.yc8{bottom:228.320069pt;}
.y9a{bottom:229.440064pt;}
.y2a{bottom:230.400086pt;}
.y62{bottom:239.520081pt;}
.yc7{bottom:248.640076pt;}
.y29{bottom:248.800049pt;}
.y99{bottom:249.760071pt;}
.y61{bottom:256.640076pt;}
.y28{bottom:267.200074pt;}
.yc6{bottom:268.960083pt;}
.y98{bottom:270.080079pt;}
.y60{bottom:273.920044pt;}
.y27{bottom:285.600037pt;}
.yc5{bottom:289.280030pt;}
.y97{bottom:290.400086pt;}
.y5f{bottom:291.040039pt;}
.y26{bottom:304.000061pt;}
.y5e{bottom:309.280030pt;}
.yc4{bottom:309.600037pt;}
.y96{bottom:310.720032pt;}
.y5d{bottom:314.560059pt;}
.y25{bottom:322.400086pt;}
.yc3{bottom:329.920044pt;}
.y95{bottom:331.040039pt;}
.y5c{bottom:334.400086pt;}
.y24{bottom:340.800049pt;}
.yc2{bottom:350.240052pt;}
.y94{bottom:351.360047pt;}
.y5b{bottom:351.520081pt;}
.y23{bottom:359.200074pt;}
.y5a{bottom:368.800049pt;}
.yc1{bottom:370.560059pt;}
.y93{bottom:371.680054pt;}
.y22{bottom:377.600037pt;}
.y59{bottom:385.920044pt;}
.yc0{bottom:390.880066pt;}
.y92{bottom:392.160035pt;}
.y21{bottom:396.320069pt;}
.y58{bottom:403.200074pt;}
.ybf{bottom:411.200074pt;}
.y91{bottom:412.480042pt;}
.y20{bottom:414.720032pt;}
.y57{bottom:420.320069pt;}
.ybe{bottom:431.520081pt;}
.y90{bottom:432.800049pt;}
.y1f{bottom:433.120057pt;}
.y56{bottom:437.600037pt;}
.ybd{bottom:451.840088pt;}
.y1e{bottom:452.000061pt;}
.y8f{bottom:453.120057pt;}
.y55{bottom:454.720032pt;}
.y1d{bottom:470.720032pt;}
.y54{bottom:471.840088pt;}
.ybc{bottom:472.160035pt;}
.y8e{bottom:473.440064pt;}
.y1c{bottom:489.440064pt;}
.y53{bottom:490.080079pt;}
.ybb{bottom:492.640076pt;}
.y8d{bottom:493.760071pt;}
.y52{bottom:495.360047pt;}
.y1b{bottom:508.160035pt;}
.yba{bottom:512.960083pt;}
.y8c{bottom:514.080079pt;}
.y51{bottom:515.200074pt;}
.y1a{bottom:527.040039pt;}
.y50{bottom:532.320069pt;}
.yb9{bottom:533.280030pt;}
.y8b{bottom:534.400086pt;}
.y19{bottom:546.240052pt;}
.y4f{bottom:549.600037pt;}
.yb8{bottom:553.600037pt;}
.y8a{bottom:554.400086pt;}
.y4e{bottom:566.720032pt;}
.y18{bottom:567.680054pt;}
.y89{bottom:570.560059pt;}
.yb7{bottom:573.920044pt;}
.y4d{bottom:584.000061pt;}
.y88{bottom:586.240052pt;}
.y17{bottom:589.120057pt;}
.yb6{bottom:594.240052pt;}
.y87{bottom:599.360047pt;}
.y4c{bottom:601.120057pt;}
.y16{bottom:613.760071pt;}
.yb5{bottom:614.560059pt;}
.y4b{bottom:618.400055pt;}
.y86{bottom:634.240052pt;}
.yb4{bottom:634.880066pt;}
.y4a{bottom:635.520050pt;}
.y85{bottom:649.600068pt;}
.y15{bottom:651.200074pt;}
.y49{bottom:652.800049pt;}
.yb3{bottom:655.200074pt;}
.y84{bottom:664.960053pt;}
.y48{bottom:669.920044pt;}
.yb2{bottom:675.520050pt;}
.y83{bottom:680.320069pt;}
.y47{bottom:687.200074pt;}
.y14{bottom:688.160065pt;}
.yb1{bottom:695.840058pt;}
.y82{bottom:699.200074pt;}
.y46{bottom:705.280060pt;}
.y45{bottom:710.560059pt;}
.yb0{bottom:716.160065pt;}
.y81{bottom:718.880066pt;}
.y13{bottom:722.560059pt;}
.y44{bottom:729.280060pt;}
.y80{bottom:736.160065pt;}
.yaf{bottom:736.480072pt;}
.y43{bottom:743.680054pt;}
.y7f{bottom:753.280060pt;}
.yae{bottom:756.800049pt;}
.y12{bottom:756.960053pt;}
.y42{bottom:758.880066pt;}
.y41{bottom:766.880066pt;}
.y7e{bottom:770.560059pt;}
.yad{bottom:777.120057pt;}
.y3e{bottom:782.400055pt;}
.y11{bottom:791.360047pt;}
.yac{bottom:797.440064pt;}
.y3d{bottom:798.080048pt;}
.y7d{bottom:801.760071pt;}
.y7c{bottom:807.200074pt;}
.y40{bottom:812.480072pt;}
.y3c{bottom:814.400055pt;}
.yab{bottom:817.760071pt;}
.y7b{bottom:827.040070pt;}
.y10{bottom:831.520050pt;}
.y3b{bottom:833.920044pt;}
.yaa{bottom:838.080048pt;}
.y3f{bottom:839.680054pt;}
.y7a{bottom:844.160065pt;}
.y3a{bottom:849.600068pt;}
.ya9{bottom:858.400055pt;}
.y39{bottom:866.080048pt;}
.yf{bottom:872.160065pt;}
.y79{bottom:875.520066pt;}
.ya8{bottom:878.720063pt;}
.y78{bottom:880.800064pt;}
.y38{bottom:886.560059pt;}
.ya7{bottom:899.040055pt;}
.y77{bottom:900.640061pt;}
.ye{bottom:915.040055pt;}
.y76{bottom:917.920060pt;}
.ya6{bottom:919.360062pt;}
.y37{bottom:922.880066pt;}
.y75{bottom:935.040055pt;}
.ya5{bottom:939.680054pt;}
.y36{bottom:943.200058pt;}
.yd{bottom:957.920060pt;}
.ya4{bottom:960.000061pt;}
.y74{bottom:966.400055pt;}
.y73{bottom:971.680054pt;}
.y35{bottom:976.960053pt;}
.ya3{bottom:980.320054pt;}
.y72{bottom:990.240052pt;}
.y33{bottom:996.800057pt;}
.ya2{bottom:1000.640061pt;}
.yc{bottom:1000.960061pt;}
.y71{bottom:1005.600060pt;}
.y32{bottom:1015.840058pt;}
.ya1{bottom:1020.960061pt;}
.y70{bottom:1022.720063pt;}
.y6{bottom:1035.360062pt;}
.y31{bottom:1037.760056pt;}
.y6f{bottom:1040.960061pt;}
.y4{bottom:1050.560059pt;}
.y6d{bottom:1053.600060pt;}
.y2{bottom:1056.480057pt;}
.y6a{bottom:1059.680058pt;}
.y1{bottom:1060.160057pt;}
.y69{bottom:1062.720059pt;}
.y6c{bottom:1064.000058pt;}
.h5{height:5.279999pt;}
.h24{height:5.439999pt;}
.h15{height:14.240005pt;}
.h1c{height:14.274008pt;}
.h21{height:14.400001pt;}
.h3{height:18.880001pt;}
.h8{height:21.439941pt;}
.h14{height:30.255816pt;}
.h17{height:31.344607pt;}
.h22{height:36.259323pt;}
.h25{height:37.243739pt;}
.h1b{height:37.481099pt;}
.h27{height:38.829899pt;}
.h28{height:39.193038pt;}
.h23{height:40.642318pt;}
.h1d{height:42.822097pt;}
.h29{height:44.197504pt;}
.h20{height:44.977318pt;}
.h12{height:45.157946pt;}
.ha{height:45.969455pt;}
.h1e{height:46.014857pt;}
.h9{height:46.908012pt;}
.h1a{height:47.389597pt;}
.h4{height:48.345566pt;}
.h6{height:49.658115pt;}
.h1f{height:51.004579pt;}
.h19{height:52.286327pt;}
.h26{height:52.528391pt;}
.h16{height:52.834785pt;}
.hb{height:52.836677pt;}
.h2{height:54.189535pt;}
.h10{height:54.736106pt;}
.h11{height:55.439582pt;}
.h18{height:58.524874pt;}
.h2a{height:59.874929pt;}
.h13{height:63.401742pt;}
.h7{height:63.658641pt;}
.hd{height:93.566014pt;}
.he{height:104.485484pt;}
.hf{height:114.191789pt;}
.hc{height:175.436412pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w5{width:5.920014pt;}
.w6{width:6.079987pt;}
.w2{width:8.000000pt;}
.w4{width:9.280029pt;}
.w3{width:507.199982pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:75.519997pt;}
.x1{left:82.720001pt;}
.xb{left:113.599998pt;}
.xd{left:120.160004pt;}
.x17{left:122.720001pt;}
.x8{left:125.279999pt;}
.xc{left:143.360001pt;}
.x16{left:163.520004pt;}
.x6{left:171.839996pt;}
.xf{left:204.320007pt;}
.xa{left:205.279999pt;}
.x4{left:236.320007pt;}
.x11{left:243.520004pt;}
.xe{left:264.000000pt;}
.x10{left:275.359985pt;}
.x14{left:298.720001pt;}
.x2{left:341.760010pt;}
.x9{left:396.799988pt;}
.x18{left:415.839996pt;}
.x19{left:463.040009pt;}
.x3{left:476.480011pt;}
.x15{left:496.799988pt;}
.x12{left:519.039978pt;}
.x13{left:668.320007pt;}
.x7{left:678.400024pt;}
}




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