
    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_a9a7f50a95b88d138b26c491.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.197000;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_8a0e2e120edd13f2650ec573.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.985000;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_d3437fa663daa9c89adbaf4e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.212000;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_6414e002c20dbf5a8892e407.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_79e168736fda917a7a720d6a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.225000;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_a2d6fcb89d5a8238516f49f3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_bc1aa3fc1fd4156384b111d5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.034000;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_b3fbe7a85988208af77a2adf.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.216000;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);}
.v1{vertical-align:-95.810844px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000135px;}
.ls2{letter-spacing:107.971985px;}
.ls5{letter-spacing:107.972030px;}
.ls3{letter-spacing:107.972093px;}
.ls9{letter-spacing:107.986253px;}
.ls4{letter-spacing:107.986325px;}
.ls8{letter-spacing:107.986397px;}
.ls1{letter-spacing:108.000354px;}
.lsa{letter-spacing:108.000363px;}
.ls7{letter-spacing:108.000426px;}
.lsb{letter-spacing:108.000498px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-30.438002px;}
.ws8{word-spacing:-28.836001px;}
.wsa{word-spacing:-25.632002px;}
.ws6{word-spacing:-25.440000px;}
.ws2{word-spacing:-24.168001px;}
.ws0{word-spacing:-22.428000px;}
.ws9{word-spacing:-21.840000px;}
.wsb{word-spacing:-17.808000px;}
.ws7{word-spacing:-17.622001px;}
.ws3{word-spacing:-16.020000px;}
.ws5{word-spacing:-12.816001px;}
.ws1{word-spacing:0.000000px;}
._4{margin-left:-9.240001px;}
._3{margin-left:-6.468000px;}
._2{margin-left:-3.960000px;}
._0{margin-left:-2.640000px;}
._1{margin-left:-1.320000px;}
._5{width:533.006882px;}
.fc7{color:rgb(50,101,55);}
.fc6{color:rgb(48,39,46);}
.fc4{color:rgb(116,73,39);}
.fc3{color:rgb(46,182,88);}
.fca{color:rgb(34,34,34);}
.fc9{color:rgb(51,51,51);}
.fc8{color:rgb(255,255,255);}
.fc5{color:rgb(0,0,0);}
.fc2{color:rgb(27,27,27);}
.fc1{color:rgb(166,166,166);}
.fc0{color:rgb(204,0,0);}
.fse{font-size:48.000003px;}
.fsb{font-size:54.000002px;}
.fs9{font-size:60.000000px;}
.fsf{font-size:66.000004px;}
.fs5{font-size:74.999999px;}
.fs3{font-size:84.000000px;}
.fs4{font-size:90.000003px;}
.fs10{font-size:96.000006px;}
.fs7{font-size:102.000000px;}
.fs2{font-size:108.000003px;}
.fs8{font-size:114.000007px;}
.fsa{font-size:120.000001px;}
.fs11{font-size:126.000004px;}
.fs1{font-size:132.000007px;}
.fsd{font-size:138.000001px;}
.fs6{font-size:144.000005px;}
.fs0{font-size:156.000011px;}
.fsc{font-size:288.000009px;}
.y0{bottom:0.000000px;}
.y68{bottom:16.982702px;}
.y1e{bottom:20.120640px;}
.y35{bottom:24.174803px;}
.y9d{bottom:28.043736px;}
.y87{bottom:28.045142px;}
.yc9{bottom:29.024027px;}
.y78{bottom:32.377324px;}
.yaa{bottom:33.399060px;}
.y4e{bottom:34.569321px;}
.y44{bottom:36.429565px;}
.y1d{bottom:38.120641px;}
.y34{bottom:42.174803px;}
.y74{bottom:45.532897px;}
.y2c{bottom:49.388528px;}
.y4{bottom:50.828855px;}
.y54{bottom:56.753310px;}
.y13{bottom:58.836009px;}
.yb6{bottom:61.089136px;}
.y92{bottom:63.090928px;}
.ybf{bottom:63.528834px;}
.ya9{bottom:64.449084px;}
.y5c{bottom:74.353629px;}
.y85{bottom:76.522427px;}
.y43{bottom:83.032014px;}
.y9c{bottom:85.499623px;}
.y2b{bottom:88.718518px;}
.y1c{bottom:89.515041px;}
.y12{bottom:90.336010px;}
.yc8{bottom:91.226551px;}
.ybe{bottom:92.328835px;}
.y91{bottom:94.590929px;}
.ya8{bottom:95.499085px;}
.y3c{bottom:96.086796px;}
.y4d{bottom:97.961935px;}
.yb5{bottom:104.559115px;}
.y73{bottom:104.815019px;}
.y84{bottom:109.642439px;}
.y5b{bottom:111.613619px;}
.yc6{bottom:114.616515px;}
.y42{bottom:120.292004px;}
.y67{bottom:120.452958px;}
.ybd{bottom:121.128869px;}
.y11{bottom:121.836011px;}
.y9b{bottom:122.759613px;}
.y53{bottom:126.041925px;}
.y90{bottom:126.090930px;}
.ya7{bottom:126.549120px;}
.y2a{bottom:128.048508px;}
.y1b{bottom:128.845031px;}
.y3b{bottom:132.086797px;}
.y77{bottom:134.620950px;}
.y4c{bottom:135.221936px;}
.y72{bottom:137.215020px;}
.y6{bottom:141.438360px;}
.y83{bottom:142.762440px;}
.yb4{bottom:148.029094px;}
.y5a{bottom:148.873620px;}
.ybc{bottom:149.928870px;}
.y66{bottom:152.852959px;}
.y10{bottom:153.336012px;}
.y52{bottom:156.641926px;}
.y8f{bottom:157.590931px;}
.ya6{bottom:157.599109px;}
.y9a{bottom:160.019614px;}
.y29{bottom:164.228521px;}
.y3a{bottom:168.086798px;}
.y1a{bottom:168.175021px;}
.y71{bottom:169.615021px;}
.y4b{bottom:172.481926px;}
.y76{bottom:174.220951px;}
.y82{bottom:175.882447px;}
.yf{bottom:184.836013px;}
.y65{bottom:185.252971px;}
.y59{bottom:186.133610px;}
.y51{bottom:187.241915px;}
.ya5{bottom:188.649099px;}
.y8e{bottom:189.090932px;}
.y5{bottom:190.038362px;}
.yb3{bottom:191.499095px;}
.y28{bottom:193.208510px;}
.y41{bottom:194.811996px;}
.y99{bottom:197.279604px;}
.y70{bottom:202.015022px;}
.yc7{bottom:202.511193px;}
.y39{bottom:204.086800px;}
.y19{bottom:207.505022px;}
.ybb{bottom:207.528883px;}
.y81{bottom:209.002438px;}
.y4a{bottom:209.741916px;}
.y75{bottom:213.820952px;}
.ye{bottom:216.336014px;}
.y8d{bottom:216.900933px;}
.y64{bottom:217.652973px;}
.y50{bottom:217.841916px;}
.ya4{bottom:219.699089px;}
.y27{bottom:222.188500px;}
.y58{bottom:223.393600px;}
.y40{bottom:232.071985px;}
.y6f{bottom:234.415023px;}
.y98{bottom:234.539594px;}
.yb2{bottom:234.969097px;}
.yba{bottom:236.328896px;}
.y38{bottom:240.086801px;}
.y80{bottom:242.122432px;}
.y5e{bottom:243.629997px;}
.y8c{bottom:246.150938px;}
.y18{bottom:246.835023px;}
.y49{bottom:247.001906px;}
.yd{bottom:247.836015px;}
.y4f{bottom:248.441917px;}
.y63{bottom:250.052951px;}
.y7c{bottom:250.500819px;}
.ya3{bottom:250.749079px;}
.y26{bottom:251.168501px;}
.y57{bottom:260.653590px;}
.yb9{bottom:265.128908px;}
.y6e{bottom:266.815013px;}
.y3{bottom:270.201499px;}
.y97{bottom:271.799584px;}
.y8b{bottom:275.400939px;}
.y37{bottom:276.086802px;}
.yb1{bottom:278.439109px;}
.yc{bottom:279.336016px;}
.y25{bottom:280.148491px;}
.ya2{bottom:281.799080px;}
.y48{bottom:284.261918px;}
.y17{bottom:286.165025px;}
.y2f{bottom:286.942487px;}
.y62{bottom:287.312941px;}
.y7b{bottom:296.040815px;}
.y56{bottom:297.913603px;}
.y6d{bottom:299.215014px;}
.y88{bottom:304.071201px;}
.y8a{bottom:304.650935px;}
.y3f{bottom:306.591988px;}
.y96{bottom:309.059597px;}
.yb{bottom:310.836017px;}
.y36{bottom:312.086803px;}
.y24{bottom:312.278492px;}
.ya1{bottom:312.849076px;}
.yc5{bottom:314.249402px;}
.yae{bottom:318.267975px;}
.y47{bottom:321.521920px;}
.yb0{bottom:321.909100px;}
.yb8{bottom:322.728889px;}
.y2{bottom:324.021495px;}
.y7d{bottom:324.524882px;}
.y61{bottom:324.572953px;}
.y16{bottom:325.495026px;}
.y5d{bottom:330.254989px;}
.y6c{bottom:331.615022px;}
.y89{bottom:333.900936px;}
.y55{bottom:335.173604px;}
.y7a{bottom:341.580816px;}
.ya{bottom:342.336018px;}
.y3e{bottom:343.851989px;}
.ya0{bottom:343.899076px;}
.y95{bottom:346.319598px;}
.yb7{bottom:351.528888px;}
.y23{bottom:351.608493px;}
.yc4{bottom:354.749403px;}
.y86{bottom:358.427593px;}
.y60{bottom:361.832955px;}
.y6b{bottom:364.015027px;}
.y15{bottom:364.825027px;}
.yaf{bottom:365.379093px;}
.y9{bottom:373.836019px;}
.y9f{bottom:374.949072px;}
.y1{bottom:377.841491px;}
.y22{bottom:382.390738px;}
.y31{bottom:391.906186px;}
.y93{bottom:392.055939px;}
.yc3{bottom:395.249404px;}
.y46{bottom:398.535939px;}
.y8{bottom:405.336023px;}
.y7f{bottom:414.316333px;}
.y21{bottom:419.830740px;}
.y79{bottom:421.071328px;}
.y6a{bottom:424.378812px;}
.y30{bottom:433.306176px;}
.y94{bottom:434.116329px;}
.y14{bottom:435.255940px;}
.yc2{bottom:435.749406px;}
.y7{bottom:436.836022px;}
.y3d{bottom:438.135940px;}
.y9e{bottom:444.962706px;}
.y5f{bottom:448.138817px;}
.y7e{bottom:453.916329px;}
.y69{bottom:456.778818px;}
.yc1{bottom:476.249410px;}
.yad{bottom:515.517638px;}
.yc0{bottom:516.749409px;}
.yac{bottom:538.287636px;}
.y20{bottom:555.455312px;}
.y2e{bottom:557.251413px;}
.yab{bottom:561.057637px;}
.y33{bottom:567.392006px;}
.y2d{bottom:573.451416px;}
.y1f{bottom:573.455313px;}
.y45{bottom:581.534999px;}
.y32{bottom:581.792007px;}
.he{height:45.216003px;}
.h1a{height:50.424003px;}
.hb{height:50.868002px;}
.h8{height:56.520000px;}
.h12{height:62.172003px;}
.ha{height:79.128000px;}
.h15{height:79.296000px;}
.h18{height:79.800000px;}
.h1c{height:83.160003px;}
.h4{height:84.780003px;}
.h19{height:85.500003px;}
.h16{height:90.432006px;}
.h13{height:96.084000px;}
.h2{height:98.208005px;}
.h14{height:99.792003px;}
.h3{height:101.736003px;}
.h6{height:107.388006px;}
.h7{height:108.300006px;}
.h9{height:110.880001px;}
.hf{height:113.040001px;}
.h10{height:114.000001px;}
.h1b{height:118.692004px;}
.h11{height:121.968007px;}
.h17{height:124.344007px;}
.hd{height:127.512001px;}
.h5{height:133.056004px;}
.h1{height:144.144010px;}
.hc{height:266.112009px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x17{left:19.957677px;}
.x30{left:27.443379px;}
.x23{left:35.974589px;}
.x27{left:37.290356px;}
.x14{left:38.509845px;}
.xd{left:40.089568px;}
.x26{left:41.446044px;}
.x1a{left:43.116108px;}
.x7{left:44.506891px;}
.x39{left:47.471458px;}
.x28{left:49.797794px;}
.x24{left:53.169827px;}
.x4{left:56.124479px;}
.x13{left:57.903549px;}
.x2d{left:62.261776px;}
.x1{left:64.514770px;}
.x8{left:66.236870px;}
.xe{left:68.992177px;}
.x3{left:74.639770px;}
.x20{left:77.663390px;}
.x1b{left:86.424215px;}
.x2{left:88.164874px;}
.x29{left:91.290358px;}
.x6{left:96.714568px;}
.x1c{left:98.029193px;}
.x25{left:101.323826px;}
.x2e{left:105.569883px;}
.xa{left:106.739177px;}
.x9{left:108.631893px;}
.x5{left:112.396573px;}
.x34{left:119.650059px;}
.x36{left:129.947838px;}
.x2a{left:132.874021px;}
.x1d{left:140.424217px;}
.x2b{left:146.283931px;}
.x1e{left:152.506895px;}
.x35{left:165.676185px;}
.xf{left:181.525756px;}
.x2c{left:186.874023px;}
.x1f{left:200.204137px;}
.x10{left:221.202763px;}
.x18{left:226.845491px;}
.x22{left:367.204163px;}
.x31{left:381.444359px;}
.xc{left:403.477982px;}
.x33{left:418.458681px;}
.x32{left:422.034449px;}
.xb{left:464.174070px;}
.x11{left:501.464547px;}
.x15{left:533.208985px;}
.x37{left:613.122095px;}
.x38{left:615.705657px;}
.x16{left:619.597269px;}
.x12{left:641.203963px;}
.x19{left:690.333705px;}
.x2f{left:692.571903px;}
.x21{left:855.076797px;}
@media print{
.v1{vertical-align:-85.165195pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000120pt;}
.ls2{letter-spacing:95.975098pt;}
.ls5{letter-spacing:95.975138pt;}
.ls3{letter-spacing:95.975194pt;}
.ls9{letter-spacing:95.987780pt;}
.ls4{letter-spacing:95.987844pt;}
.ls8{letter-spacing:95.987908pt;}
.ls1{letter-spacing:96.000315pt;}
.lsa{letter-spacing:96.000323pt;}
.ls7{letter-spacing:96.000379pt;}
.lsb{letter-spacing:96.000443pt;}
.ws4{word-spacing:-27.056002pt;}
.ws8{word-spacing:-25.632001pt;}
.wsa{word-spacing:-22.784001pt;}
.ws6{word-spacing:-22.613333pt;}
.ws2{word-spacing:-21.482668pt;}
.ws0{word-spacing:-19.936000pt;}
.ws9{word-spacing:-19.413333pt;}
.wsb{word-spacing:-15.829333pt;}
.ws7{word-spacing:-15.664001pt;}
.ws3{word-spacing:-14.240000pt;}
.ws5{word-spacing:-11.392001pt;}
.ws1{word-spacing:0.000000pt;}
._4{margin-left:-8.213334pt;}
._3{margin-left:-5.749334pt;}
._2{margin-left:-3.520000pt;}
._0{margin-left:-2.346667pt;}
._1{margin-left:-1.173333pt;}
._5{width:473.783895pt;}
.fse{font-size:42.666669pt;}
.fsb{font-size:48.000002pt;}
.fs9{font-size:53.333334pt;}
.fsf{font-size:58.666670pt;}
.fs5{font-size:66.666666pt;}
.fs3{font-size:74.666666pt;}
.fs4{font-size:80.000003pt;}
.fs10{font-size:85.333339pt;}
.fs7{font-size:90.666667pt;}
.fs2{font-size:96.000003pt;}
.fs8{font-size:101.333339pt;}
.fsa{font-size:106.666667pt;}
.fs11{font-size:112.000004pt;}
.fs1{font-size:117.333340pt;}
.fsd{font-size:122.666668pt;}
.fs6{font-size:128.000004pt;}
.fs0{font-size:138.666676pt;}
.fsc{font-size:256.000008pt;}
.y0{bottom:0.000000pt;}
.y68{bottom:15.095735pt;}
.y1e{bottom:17.885013pt;}
.y35{bottom:21.488713pt;}
.y9d{bottom:24.927766pt;}
.y87{bottom:24.929016pt;}
.yc9{bottom:25.799136pt;}
.y78{bottom:28.779844pt;}
.yaa{bottom:29.688054pt;}
.y4e{bottom:30.728286pt;}
.y44{bottom:32.381836pt;}
.y1d{bottom:33.885014pt;}
.y34{bottom:37.488714pt;}
.y74{bottom:40.473686pt;}
.y2c{bottom:43.900914pt;}
.y4{bottom:45.181204pt;}
.y54{bottom:50.447386pt;}
.y13{bottom:52.298674pt;}
.yb6{bottom:54.301454pt;}
.y92{bottom:56.080825pt;}
.ybf{bottom:56.470075pt;}
.ya9{bottom:57.288075pt;}
.y5c{bottom:66.092115pt;}
.y85{bottom:68.019935pt;}
.y43{bottom:73.806235pt;}
.y9c{bottom:75.999665pt;}
.y2b{bottom:78.860905pt;}
.y1c{bottom:79.568925pt;}
.y12{bottom:80.298675pt;}
.yc8{bottom:81.090267pt;}
.ybe{bottom:82.070075pt;}
.y91{bottom:84.080825pt;}
.ya8{bottom:84.888075pt;}
.y3c{bottom:85.410485pt;}
.y4d{bottom:87.077276pt;}
.yb5{bottom:92.941436pt;}
.y73{bottom:93.168906pt;}
.y84{bottom:97.459946pt;}
.y5b{bottom:99.212106pt;}
.yc6{bottom:101.881347pt;}
.y42{bottom:106.926226pt;}
.y67{bottom:107.069296pt;}
.ybd{bottom:107.670106pt;}
.y11{bottom:108.298676pt;}
.y9b{bottom:109.119656pt;}
.y53{bottom:112.037266pt;}
.y90{bottom:112.080826pt;}
.ya7{bottom:112.488106pt;}
.y2a{bottom:113.820896pt;}
.y1b{bottom:114.528916pt;}
.y3b{bottom:117.410486pt;}
.y77{bottom:119.663067pt;}
.y4c{bottom:120.197277pt;}
.y72{bottom:121.968907pt;}
.y6{bottom:125.722987pt;}
.y83{bottom:126.899947pt;}
.yb4{bottom:131.581417pt;}
.y5a{bottom:132.332107pt;}
.ybc{bottom:133.270107pt;}
.y66{bottom:135.869297pt;}
.y10{bottom:136.298677pt;}
.y52{bottom:139.237267pt;}
.y8f{bottom:140.080827pt;}
.ya6{bottom:140.088097pt;}
.y9a{bottom:142.239657pt;}
.y29{bottom:145.980907pt;}
.y3a{bottom:149.410488pt;}
.y1a{bottom:149.488908pt;}
.y71{bottom:150.768908pt;}
.y4b{bottom:153.317268pt;}
.y76{bottom:154.863068pt;}
.y82{bottom:156.339953pt;}
.yf{bottom:164.298678pt;}
.y65{bottom:164.669308pt;}
.y59{bottom:165.452098pt;}
.y51{bottom:166.437258pt;}
.ya5{bottom:167.688088pt;}
.y8e{bottom:168.080828pt;}
.y5{bottom:168.922988pt;}
.yb3{bottom:170.221418pt;}
.y28{bottom:171.740898pt;}
.y41{bottom:173.166218pt;}
.y99{bottom:175.359648pt;}
.y70{bottom:179.568908pt;}
.yc7{bottom:180.009949pt;}
.y39{bottom:181.410489pt;}
.y19{bottom:184.448909pt;}
.ybb{bottom:184.470119pt;}
.y81{bottom:185.779945pt;}
.y4a{bottom:186.437259pt;}
.y75{bottom:190.063069pt;}
.ye{bottom:192.298679pt;}
.y8d{bottom:192.800829pt;}
.y64{bottom:193.469309pt;}
.y50{bottom:193.637259pt;}
.ya4{bottom:195.288079pt;}
.y27{bottom:197.500889pt;}
.y58{bottom:198.572089pt;}
.y40{bottom:206.286209pt;}
.y6f{bottom:208.368909pt;}
.y98{bottom:208.479639pt;}
.yb2{bottom:208.861419pt;}
.yba{bottom:210.070129pt;}
.y38{bottom:213.410490pt;}
.y80{bottom:215.219940pt;}
.y5e{bottom:216.559998pt;}
.y8c{bottom:218.800834pt;}
.y18{bottom:219.408910pt;}
.y49{bottom:219.557250pt;}
.yd{bottom:220.298680pt;}
.y4f{bottom:220.837260pt;}
.y63{bottom:222.269290pt;}
.y7c{bottom:222.667395pt;}
.ya3{bottom:222.888070pt;}
.y26{bottom:223.260890pt;}
.y57{bottom:231.692080pt;}
.yb9{bottom:235.670140pt;}
.y6e{bottom:237.168900pt;}
.y3{bottom:240.179110pt;}
.y97{bottom:241.599630pt;}
.y8b{bottom:244.800835pt;}
.y37{bottom:245.410491pt;}
.yb1{bottom:247.501431pt;}
.yc{bottom:248.298681pt;}
.y25{bottom:249.020881pt;}
.ya2{bottom:250.488071pt;}
.y48{bottom:252.677261pt;}
.y17{bottom:254.368911pt;}
.y2f{bottom:255.059989pt;}
.y62{bottom:255.389281pt;}
.y7b{bottom:263.147391pt;}
.y56{bottom:264.812091pt;}
.y6d{bottom:265.968901pt;}
.y88{bottom:270.285512pt;}
.y8a{bottom:270.800831pt;}
.y3f{bottom:272.526211pt;}
.y96{bottom:274.719642pt;}
.yb{bottom:276.298682pt;}
.y36{bottom:277.410492pt;}
.y24{bottom:277.580882pt;}
.ya1{bottom:278.088068pt;}
.yc5{bottom:279.332802pt;}
.yae{bottom:282.904867pt;}
.y47{bottom:285.797262pt;}
.yb0{bottom:286.141422pt;}
.yb8{bottom:286.870124pt;}
.y2{bottom:288.019107pt;}
.y7d{bottom:288.466562pt;}
.y61{bottom:288.509292pt;}
.y16{bottom:289.328912pt;}
.y5d{bottom:293.559990pt;}
.y6c{bottom:294.768908pt;}
.y89{bottom:296.800832pt;}
.y55{bottom:297.932092pt;}
.y7a{bottom:303.627392pt;}
.ya{bottom:304.298682pt;}
.y3e{bottom:305.646213pt;}
.ya0{bottom:305.688068pt;}
.y95{bottom:307.839643pt;}
.yb7{bottom:312.470123pt;}
.y23{bottom:312.540883pt;}
.yc4{bottom:315.332803pt;}
.y86{bottom:318.602305pt;}
.y60{bottom:321.629293pt;}
.y6b{bottom:323.568913pt;}
.y15{bottom:324.288913pt;}
.yaf{bottom:324.781416pt;}
.y9{bottom:332.298683pt;}
.y9f{bottom:333.288064pt;}
.y1{bottom:335.859103pt;}
.y22{bottom:339.902879pt;}
.y31{bottom:348.361054pt;}
.y93{bottom:348.494168pt;}
.yc3{bottom:351.332804pt;}
.y46{bottom:354.254168pt;}
.y8{bottom:360.298687pt;}
.y7f{bottom:368.281185pt;}
.y21{bottom:373.182880pt;}
.y79{bottom:374.285625pt;}
.y6a{bottom:377.225611pt;}
.y30{bottom:385.161045pt;}
.y94{bottom:385.881181pt;}
.y14{bottom:386.894169pt;}
.yc2{bottom:387.332805pt;}
.y7{bottom:388.298686pt;}
.y3d{bottom:389.454169pt;}
.y9e{bottom:395.522405pt;}
.y5f{bottom:398.345615pt;}
.y7e{bottom:403.481182pt;}
.y69{bottom:406.025616pt;}
.yc1{bottom:423.332809pt;}
.yad{bottom:458.237900pt;}
.yc0{bottom:459.332808pt;}
.yac{bottom:478.477899pt;}
.y20{bottom:493.738056pt;}
.y2e{bottom:495.334590pt;}
.yab{bottom:498.717900pt;}
.y33{bottom:504.348450pt;}
.y2d{bottom:509.734592pt;}
.y1f{bottom:509.738056pt;}
.y45{bottom:516.919999pt;}
.y32{bottom:517.148451pt;}
.he{height:40.192003pt;}
.h1a{height:44.821336pt;}
.hb{height:45.216001pt;}
.h8{height:50.240000pt;}
.h12{height:55.264003pt;}
.ha{height:70.336000pt;}
.h15{height:70.485333pt;}
.h18{height:70.933333pt;}
.h1c{height:73.920002pt;}
.h4{height:75.360002pt;}
.h19{height:76.000002pt;}
.h16{height:80.384005pt;}
.h13{height:85.408000pt;}
.h2{height:87.296005pt;}
.h14{height:88.704003pt;}
.h3{height:90.432003pt;}
.h6{height:95.456006pt;}
.h7{height:96.266672pt;}
.h9{height:98.560001pt;}
.hf{height:100.480001pt;}
.h10{height:101.333334pt;}
.h1b{height:105.504003pt;}
.h11{height:108.416006pt;}
.h17{height:110.528006pt;}
.hd{height:113.344001pt;}
.h5{height:118.272004pt;}
.h1{height:128.128009pt;}
.hc{height:236.544008pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x17{left:17.740158pt;}
.x30{left:24.394115pt;}
.x23{left:31.977412pt;}
.x27{left:33.146983pt;}
.x14{left:34.230973pt;}
.xd{left:35.635171pt;}
.x26{left:36.840928pt;}
.x1a{left:38.325429pt;}
.x7{left:39.561681pt;}
.x39{left:42.196851pt;}
.x28{left:44.264705pt;}
.x24{left:47.262069pt;}
.x4{left:49.888426pt;}
.x13{left:51.469822pt;}
.x2d{left:55.343801pt;}
.x1{left:57.346462pt;}
.x8{left:58.877218pt;}
.xe{left:61.326380pt;}
.x3{left:66.346462pt;}
.x20{left:69.034124pt;}
.x1b{left:76.821524pt;}
.x2{left:78.368777pt;}
.x29{left:81.146985pt;}
.x6{left:85.968505pt;}
.x1c{left:87.137061pt;}
.x25{left:90.065623pt;}
.x2e{left:93.839896pt;}
.xa{left:94.879268pt;}
.x9{left:96.561683pt;}
.x5{left:99.908065pt;}
.x34{left:106.355608pt;}
.x36{left:115.509190pt;}
.x2a{left:118.110241pt;}
.x1d{left:124.821526pt;}
.x2b{left:130.030161pt;}
.x1e{left:135.561684pt;}
.x35{left:147.267720pt;}
.xf{left:161.356227pt;}
.x2c{left:166.110242pt;}
.x1f{left:177.959233pt;}
.x10{left:196.624678pt;}
.x18{left:201.640436pt;}
.x22{left:326.403700pt;}
.x31{left:339.061653pt;}
.xc{left:358.647095pt;}
.x33{left:371.963272pt;}
.x32{left:375.141732pt;}
.xb{left:412.599173pt;}
.x11{left:445.746264pt;}
.x15{left:473.963542pt;}
.x37{left:544.997417pt;}
.x38{left:547.293918pt;}
.x16{left:550.753128pt;}
.x12{left:569.959078pt;}
.x19{left:613.629960pt;}
.x2f{left:615.619470pt;}
.x21{left:760.068264pt;}
}




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