
    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_1890d3a17df52bad5eff514b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.926758;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_7967efe76314f6c3fa3963c5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941895;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_829214893e039ba537daa88e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2f88bbf912d98a2aab74beb2.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_377ff81da8910aa8cd239519.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_f96dc2d1dc7ab57ee396408b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_70ea3ccf0ccfd89a837d158d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.018000;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_eee2cc66bc0d9f5f45b7ffa8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.955000;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_90568b993d5f1082bee7eda2.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_76607d1cfb7e3829fa88bf75.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.916016;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_e7be705a496c38a1d37a235f.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:13.375575px;}
.v3{vertical-align:16.393631px;}
.v1{vertical-align:58.249424px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.036010px;}
.ls5{letter-spacing:0.089865px;}
.ls7{letter-spacing:107.972030px;}
.ls2{letter-spacing:107.985051px;}
.ls6{letter-spacing:107.985334px;}
.ls4{letter-spacing:108.017301px;}
.ls8{letter-spacing:108.908353px;}
.ls1{letter-spacing:671.446889px;}
.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;}
}
.wsc{word-spacing:-49.860002px;}
.ws1{word-spacing:-29.916001px;}
.ws2{word-spacing:-26.592002px;}
.ws7{word-spacing:-26.372284px;}
.wsb{word-spacing:-24.930001px;}
.ws4{word-spacing:-23.268000px;}
.ws6{word-spacing:-17.840076px;}
.wsa{word-spacing:-16.620000px;}
.ws8{word-spacing:-13.296001px;}
.ws5{word-spacing:-9.972000px;}
.ws9{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.wsd{word-spacing:1047.627484px;}
.ws3{word-spacing:1346.992566px;}
._7{margin-left:-3480.007903px;}
._0{margin-left:-14.832000px;}
._10{margin-left:-10.260000px;}
._2{margin-left:-8.208000px;}
._4{margin-left:-5.832000px;}
._9{margin-left:-4.620000px;}
._3{margin-left:-3.132000px;}
._8{margin-left:-2.052000px;}
._1{margin-left:-1.008000px;}
._5{width:1.296000px;}
._e{width:3.094470px;}
._a{width:108.017301px;}
._d{width:534.502835px;}
._c{width:540.045220px;}
._b{width:596.782135px;}
._f{width:2930.534989px;}
._6{width:2943.869612px;}
.fc10{color:rgb(105,146,58);}
.fcf{color:rgb(55,66,74);}
.fce{color:rgb(158,158,158);}
.fcd{color:rgb(54,54,54);}
.fc0{color:rgb(51,51,51);}
.fc2{color:rgb(63,63,63);}
.fc3{color:rgb(255,255,255);}
.fc5{color:rgb(77,77,77);}
.fc8{color:rgb(0,0,0);}
.fcc{color:rgb(89,89,89);}
.fc1{color:rgb(35,74,148);}
.fc4{color:rgb(5,99,193);}
.fc6{color:rgb(164,0,0);}
.fc7{color:transparent;}
.fc9{color:rgb(0,0,255);}
.fca{color:rgb(152,0,0);}
.fcb{color:rgb(112,173,71);}
.fs5{font-size:36.000001px;}
.fs2{font-size:48.000003px;}
.fsa{font-size:54.000002px;}
.fs8{font-size:58.404606px;}
.fse{font-size:60.000000px;}
.fs6{font-size:64.404605px;}
.fsb{font-size:78.000005px;}
.fs3{font-size:84.000000px;}
.fsf{font-size:90.000003px;}
.fs7{font-size:95.206800px;}
.fs4{font-size:96.000006px;}
.fs1{font-size:108.000003px;}
.fsd{font-size:120.000001px;}
.fsc{font-size:132.000007px;}
.fs0{font-size:144.000005px;}
.fs9{font-size:174.000012px;}
.fs10{font-size:180.000006px;}
.y0{bottom:0.000000px;}
.y9{bottom:5.841363px;}
.yb{bottom:5.884669px;}
.y8b{bottom:26.078078px;}
.y1e{bottom:27.175481px;}
.y37{bottom:33.785731px;}
.y80{bottom:34.739622px;}
.y6d{bottom:35.118769px;}
.y2e{bottom:38.847865px;}
.y4b{bottom:40.708186px;}
.y6c{bottom:40.857464px;}
.y1d{bottom:41.575482px;}
.y29{bottom:41.894644px;}
.y8{bottom:43.871314px;}
.y8a{bottom:44.078078px;}
.y4a{bottom:55.108186px;}
.y1b{bottom:55.132857px;}
.y89{bottom:62.078079px;}
.ya1{bottom:65.959548px;}
.yd{bottom:69.832315px;}
.y28{bottom:74.294634px;}
.y7{bottom:80.996317px;}
.y43{bottom:82.086958px;}
.ya3{bottom:92.810301px;}
.ya0{bottom:94.039549px;}
.y36{bottom:101.577283px;}
.y88{bottom:105.919330px;}
.yc{bottom:106.732313px;}
.y5b{bottom:109.525855px;}
.y75{bottom:112.156787px;}
.y42{bottom:114.486959px;}
.y7e{bottom:116.873597px;}
.y6b{bottom:124.099918px;}
.y9f{bottom:130.939528px;}
.y54{bottom:136.424766px;}
.y6{bottom:137.084992px;}
.y34{bottom:137.352060px;}
.y27{bottom:139.094614px;}
.y5a{bottom:141.925856px;}
.y87{bottom:142.319213px;}
.y49{bottom:143.224421px;}
.y74{bottom:144.556793px;}
.y6a{bottom:144.799907px;}
.y41{bottom:146.886960px;}
.y2d{bottom:151.751195px;}
.y7d{bottom:153.273502px;}
.y53{bottom:165.224765px;}
.y69{bottom:165.499908px;}
.y35{bottom:167.182628px;}
.y5{bottom:168.959995px;}
.y26{bottom:171.494592px;}
.y48{bottom:175.624434px;}
.y2c{bottom:176.951193px;}
.y86{bottom:178.719101px;}
.y40{bottom:179.286950px;}
.y68{bottom:186.199898px;}
.y7c{bottom:189.673418px;}
.y10{bottom:197.026935px;}
.y95{bottom:200.543308px;}
.y25{bottom:203.894593px;}
.y9e{bottom:204.739508px;}
.y59{bottom:206.725847px;}
.y67{bottom:206.899887px;}
.y47{bottom:208.024423px;}
.y85{bottom:215.118989px;}
.y33{bottom:217.889597px;}
.y73{bottom:220.156791px;}
.y7b{bottom:226.073278px;}
.y66{bottom:227.599888px;}
.y94{bottom:228.623309px;}
.y4{bottom:234.743996px;}
.y9d{bottom:237.139531px;}
.y58{bottom:239.125855px;}
.y46{bottom:240.424425px;}
.y3f{bottom:244.086959px;}
.y65{bottom:248.299877px;}
.y84{bottom:251.518873px;}
.y4f{bottom:252.465817px;}
.y72{bottom:252.556796px;}
.y32{bottom:259.877186px;}
.y93{bottom:259.943310px;}
.y3{bottom:266.018997px;}
.y3a{bottom:266.468965px;}
.y24{bottom:268.694595px;}
.y64{bottom:268.999878px;}
.y57{bottom:271.525860px;}
.y45{bottom:272.824432px;}
.y9c{bottom:274.039555px;}
.y3e{bottom:276.486964px;}
.y4e{bottom:284.865818px;}
.y3b{bottom:287.726221px;}
.y92{bottom:288.023334px;}
.y63{bottom:289.699867px;}
.y39{bottom:298.868966px;}
.y7a{bottom:298.873043px;}
.y23{bottom:301.094619px;}
.y2b{bottom:306.733684px;}
.yf{bottom:307.726939px;}
.y44{bottom:309.724438px;}
.y62{bottom:310.399856px;}
.y91{bottom:320.423335px;}
.y56{bottom:321.395533px;}
.y61{bottom:331.099857px;}
.y38{bottom:331.268967px;}
.y9b{bottom:347.839557px;}
.y17{bottom:351.314510px;}
.y60{bottom:351.799847px;}
.y55{bottom:353.795538px;}
.y2{bottom:355.971479px;}
.y90{bottom:357.323336px;}
.y71{bottom:359.721291px;}
.y22{bottom:365.894621px;}
.y1a{bottom:367.641015px;}
.y79{bottom:371.672819px;}
.y51{bottom:378.306944px;}
.y16{bottom:380.114509px;}
.y9a{bottom:380.239547px;}
.y4d{bottom:382.065817px;}
.y31{bottom:382.402357px;}
.y83{bottom:391.996658px;}
.y1{bottom:399.171485px;}
.y50{bottom:406.608542px;}
.y99{bottom:412.639543px;}
.y5f{bottom:412.639843px;}
.y13{bottom:413.021333px;}
.y4c{bottom:414.465823px;}
.y15{bottom:416.114510px;}
.ye{bottom:418.426948px;}
.y21{bottom:430.694606px;}
.y8f{bottom:431.123321px;}
.y70{bottom:433.521282px;}
.y30{bottom:435.086402px;}
.y82{bottom:438.091656px;}
.y78{bottom:444.472595px;}
.y98{bottom:445.039549px;}
.y5e{bottom:445.039838px;}
.y20{bottom:463.094602px;}
.y8e{bottom:463.523328px;}
.y6f{bottom:465.921288px;}
.y97{bottom:477.439543px;}
.y12{bottom:477.821323px;}
.y81{bottom:477.991657px;}
.y77{bottom:480.872480px;}
.y5d{bottom:481.939844px;}
.y52{bottom:486.027994px;}
.ya2{bottom:490.309842px;}
.y18{bottom:492.670214px;}
.y2a{bottom:494.006331px;}
.y8d{bottom:495.923322px;}
.y6e{bottom:498.321286px;}
.y3d{bottom:500.423046px;}
.y96{bottom:514.339541px;}
.y76{bottom:514.339839px;}
.y5c{bottom:514.339842px;}
.y2f{bottom:522.063721px;}
.y1f{bottom:527.894605px;}
.y3c{bottom:532.823043px;}
.y8c{bottom:532.823320px;}
.y1c{bottom:536.571611px;}
.y11{bottom:542.621337px;}
.y7f{bottom:573.919502px;}
.y19{bottom:575.463021px;}
.y14{bottom:576.434698px;}
.ya{bottom:577.116495px;}
.hb{height:26.226563px;}
.hc{height:34.968752px;}
.h4{height:35.132815px;}
.h6{height:35.306038px;}
.h13{height:41.796001px;}
.h18{height:43.710938px;}
.he{height:47.139894px;}
.h15{height:57.090824px;}
.ha{height:61.154297px;}
.hd{height:61.195312px;}
.h19{height:65.874026px;}
.hf{height:69.359641px;}
.h8{height:69.890629px;}
.h12{height:69.937504px;}
.h9{height:74.570888px;}
.h7{height:78.626956px;}
.h2{height:78.943362px;}
.h3{height:79.048831px;}
.h17{height:87.421876px;}
.h14{height:95.336993px;}
.h11{height:95.442462px;}
.h16{height:96.164068px;}
.h1{height:105.257816px;}
.h10{height:127.186532px;}
.h1a{height:131.748051px;}
.h5{height:137.192786px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x8{left:7.875000px;}
.x42{left:10.349410px;}
.xf{left:12.835630px;}
.x4e{left:17.131879px;}
.x20{left:33.351380px;}
.x1d{left:37.990070px;}
.x3b{left:42.410434px;}
.x48{left:47.511974px;}
.x2f{left:53.632441px;}
.x36{left:64.588892px;}
.x52{left:67.926726px;}
.x45{left:69.158981px;}
.x1e{left:71.979333px;}
.x34{left:78.754665px;}
.x53{left:87.937465px;}
.xe{left:91.632790px;}
.x28{left:99.094492px;}
.x49{left:101.511975px;}
.x56{left:108.885742px;}
.x54{left:136.099641px;}
.x4a{left:141.188981px;}
.x57{left:157.047918px;}
.x12{left:197.440454px;}
.xb{left:210.024057px;}
.x25{left:212.142213px;}
.x58{left:275.699585px;}
.x15{left:295.099953px;}
.xc{left:306.903694px;}
.x59{left:310.311044px;}
.x2{left:312.675644px;}
.x4b{left:321.125973px;}
.x50{left:349.529524px;}
.x1a{left:363.643695px;}
.x3{left:393.526615px;}
.x4{left:406.802495px;}
.x30{left:430.787129px;}
.x23{left:434.821300px;}
.x18{left:436.574714px;}
.x19{left:437.852377px;}
.x13{left:449.209004px;}
.x1f{left:451.327177px;}
.x3c{left:462.520027px;}
.x26{left:471.102540px;}
.x2a{left:482.797811px;}
.x1{left:486.786976px;}
.x40{left:491.707703px;}
.x44{left:498.432143px;}
.x2b{left:520.305137px;}
.x3a{left:527.027361px;}
.x4f{left:530.998982px;}
.x2c{left:536.797817px;}
.x6{left:539.673351px;}
.x37{left:542.188480px;}
.x7{left:544.390820px;}
.x5{left:545.994884px;}
.x31{left:550.125018px;}
.x41{left:563.835956px;}
.x10{left:567.440428px;}
.x2d{left:574.305138px;}
.x32{left:575.976393px;}
.x4c{left:584.601386px;}
.x29{left:591.837904px;}
.x2e{left:599.721702px;}
.x38{left:601.591576px;}
.x39{left:617.394732px;}
.x3d{left:623.013815px;}
.x3e{left:643.024554px;}
.x51{left:662.396511px;}
.x1c{left:673.431175px;}
.x3f{left:677.013817px;}
.x14{left:684.165397px;}
.x24{left:688.786627px;}
.x22{left:701.625060px;}
.x21{left:703.485248px;}
.x33{left:713.891610px;}
.x47{left:718.584998px;}
.x43{left:720.453893px;}
.x35{left:724.646273px;}
.x4d{left:747.931636px;}
.x27{left:830.034477px;}
.x46{left:834.746595px;}
.x16{left:845.837633px;}
.x17{left:851.512831px;}
.x55{left:903.682649px;}
.x9{left:905.818416px;}
.x11{left:920.648617px;}
.xd{left:943.259768px;}
.x1b{left:1024.665765px;}
.xa{left:1027.999421px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:11.889400pt;}
.v3{vertical-align:14.572116pt;}
.v1{vertical-align:51.777266pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.032008pt;}
.ls5{letter-spacing:0.079880pt;}
.ls7{letter-spacing:95.975138pt;}
.ls2{letter-spacing:95.986712pt;}
.ls6{letter-spacing:95.986964pt;}
.ls4{letter-spacing:96.015379pt;}
.ls8{letter-spacing:96.807425pt;}
.ls1{letter-spacing:596.841679pt;}
.wsc{word-spacing:-44.320001pt;}
.ws1{word-spacing:-26.592001pt;}
.ws2{word-spacing:-23.637335pt;}
.ws7{word-spacing:-23.442030pt;}
.wsb{word-spacing:-22.160001pt;}
.ws4{word-spacing:-20.682667pt;}
.ws6{word-spacing:-15.857845pt;}
.wsa{word-spacing:-14.773333pt;}
.ws8{word-spacing:-11.818667pt;}
.ws5{word-spacing:-8.864000pt;}
.ws9{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.wsd{word-spacing:931.224430pt;}
.ws3{word-spacing:1197.326725pt;}
._7{margin-left:-3093.340358pt;}
._0{margin-left:-13.184000pt;}
._10{margin-left:-9.120000pt;}
._2{margin-left:-7.296000pt;}
._4{margin-left:-5.184000pt;}
._9{margin-left:-4.106667pt;}
._3{margin-left:-2.784000pt;}
._8{margin-left:-1.824000pt;}
._1{margin-left:-0.896000pt;}
._5{width:1.152000pt;}
._e{width:2.750640pt;}
._a{width:96.015379pt;}
._d{width:475.113631pt;}
._c{width:480.040195pt;}
._b{width:530.473009pt;}
._f{width:2604.919990pt;}
._6{width:2616.772988pt;}
.fs5{font-size:32.000001pt;}
.fs2{font-size:42.666669pt;}
.fsa{font-size:48.000002pt;}
.fs8{font-size:51.915206pt;}
.fse{font-size:53.333334pt;}
.fs6{font-size:57.248538pt;}
.fsb{font-size:69.333338pt;}
.fs3{font-size:74.666666pt;}
.fsf{font-size:80.000003pt;}
.fs7{font-size:84.628267pt;}
.fs4{font-size:85.333339pt;}
.fs1{font-size:96.000003pt;}
.fsd{font-size:106.666667pt;}
.fsc{font-size:117.333340pt;}
.fs0{font-size:128.000004pt;}
.fs9{font-size:154.666677pt;}
.fs10{font-size:160.000005pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:5.192323pt;}
.yb{bottom:5.230817pt;}
.y8b{bottom:23.180513pt;}
.y1e{bottom:24.155983pt;}
.y37{bottom:30.031761pt;}
.y80{bottom:30.879664pt;}
.y6d{bottom:31.216684pt;}
.y2e{bottom:34.531436pt;}
.y4b{bottom:36.185054pt;}
.y6c{bottom:36.317746pt;}
.y1d{bottom:36.955984pt;}
.y29{bottom:37.239684pt;}
.y8{bottom:38.996724pt;}
.y8a{bottom:39.180514pt;}
.y4a{bottom:48.985054pt;}
.y1b{bottom:49.006984pt;}
.y89{bottom:55.180514pt;}
.ya1{bottom:58.630710pt;}
.yd{bottom:62.073169pt;}
.y28{bottom:66.039675pt;}
.y7{bottom:71.996726pt;}
.y43{bottom:72.966185pt;}
.ya3{bottom:82.498045pt;}
.ya0{bottom:83.590710pt;}
.y36{bottom:90.290919pt;}
.y88{bottom:94.150516pt;}
.yc{bottom:94.873167pt;}
.y5b{bottom:97.356316pt;}
.y75{bottom:99.694922pt;}
.y42{bottom:101.766186pt;}
.y7e{bottom:103.887642pt;}
.y6b{bottom:110.311038pt;}
.y9f{bottom:116.390691pt;}
.y54{bottom:121.266459pt;}
.y6{bottom:121.853327pt;}
.y34{bottom:122.090720pt;}
.y27{bottom:123.639657pt;}
.y5a{bottom:126.156317pt;}
.y87{bottom:126.505967pt;}
.y49{bottom:127.310597pt;}
.y74{bottom:128.494927pt;}
.y6a{bottom:128.711029pt;}
.y41{bottom:130.566187pt;}
.y2d{bottom:134.889951pt;}
.y7d{bottom:136.243113pt;}
.y53{bottom:146.866457pt;}
.y69{bottom:147.111029pt;}
.y35{bottom:148.606780pt;}
.y5{bottom:150.186663pt;}
.y26{bottom:152.439638pt;}
.y48{bottom:156.110608pt;}
.y2c{bottom:157.289950pt;}
.y86{bottom:158.861423pt;}
.y40{bottom:159.366178pt;}
.y68{bottom:165.511020pt;}
.y7c{bottom:168.598594pt;}
.y10{bottom:175.135053pt;}
.y95{bottom:178.260718pt;}
.y25{bottom:181.239639pt;}
.y9e{bottom:181.990674pt;}
.y59{bottom:183.756309pt;}
.y67{bottom:183.911011pt;}
.y47{bottom:184.910599pt;}
.y85{bottom:191.216879pt;}
.y33{bottom:193.679642pt;}
.y73{bottom:195.694925pt;}
.y7b{bottom:200.954025pt;}
.y66{bottom:202.311011pt;}
.y94{bottom:203.220719pt;}
.y4{bottom:208.661329pt;}
.y9d{bottom:210.790694pt;}
.y58{bottom:212.556316pt;}
.y46{bottom:213.710600pt;}
.y3f{bottom:216.966186pt;}
.y65{bottom:220.711002pt;}
.y84{bottom:223.572332pt;}
.y4f{bottom:224.414060pt;}
.y72{bottom:224.494930pt;}
.y32{bottom:231.001943pt;}
.y93{bottom:231.060720pt;}
.y3{bottom:236.461330pt;}
.y3a{bottom:236.861302pt;}
.y24{bottom:238.839640pt;}
.y64{bottom:239.111002pt;}
.y57{bottom:241.356320pt;}
.y45{bottom:242.510606pt;}
.y9c{bottom:243.590716pt;}
.y3e{bottom:245.766191pt;}
.y4e{bottom:253.214061pt;}
.y3b{bottom:255.756641pt;}
.y92{bottom:256.020741pt;}
.y63{bottom:257.510993pt;}
.y39{bottom:265.661303pt;}
.y7a{bottom:265.664927pt;}
.y23{bottom:267.639661pt;}
.y2b{bottom:272.652163pt;}
.yf{bottom:273.535056pt;}
.y44{bottom:275.310612pt;}
.y62{bottom:275.910984pt;}
.y91{bottom:284.820742pt;}
.y56{bottom:285.684918pt;}
.y61{bottom:294.310984pt;}
.y38{bottom:294.461304pt;}
.y9b{bottom:309.190718pt;}
.y17{bottom:312.279565pt;}
.y60{bottom:312.710975pt;}
.y55{bottom:314.484923pt;}
.y2{bottom:316.419093pt;}
.y90{bottom:317.620743pt;}
.y71{bottom:319.752259pt;}
.y22{bottom:325.239663pt;}
.y1a{bottom:326.792013pt;}
.y79{bottom:330.375839pt;}
.y51{bottom:336.272839pt;}
.y16{bottom:337.879564pt;}
.y9a{bottom:337.990709pt;}
.y4d{bottom:339.614060pt;}
.y31{bottom:339.913207pt;}
.y83{bottom:348.441474pt;}
.y1{bottom:354.819098pt;}
.y50{bottom:361.429815pt;}
.y99{bottom:366.790704pt;}
.y5f{bottom:366.790971pt;}
.y13{bottom:367.130073pt;}
.y4c{bottom:368.414065pt;}
.y15{bottom:369.879565pt;}
.ye{bottom:371.935065pt;}
.y21{bottom:382.839650pt;}
.y8f{bottom:383.220730pt;}
.y70{bottom:385.352251pt;}
.y30{bottom:386.743468pt;}
.y82{bottom:389.414805pt;}
.y78{bottom:395.086751pt;}
.y98{bottom:395.590710pt;}
.y5e{bottom:395.590967pt;}
.y20{bottom:411.639646pt;}
.y8e{bottom:412.020736pt;}
.y6f{bottom:414.152256pt;}
.y97{bottom:424.390705pt;}
.y12{bottom:424.730065pt;}
.y81{bottom:424.881473pt;}
.y77{bottom:427.442204pt;}
.y5d{bottom:428.390972pt;}
.y52{bottom:432.024884pt;}
.ya2{bottom:435.830971pt;}
.y18{bottom:437.929079pt;}
.y2a{bottom:439.116739pt;}
.y8d{bottom:440.820731pt;}
.y6e{bottom:442.952254pt;}
.y3d{bottom:444.820485pt;}
.y96{bottom:457.190703pt;}
.y76{bottom:457.190968pt;}
.y5c{bottom:457.190970pt;}
.y2f{bottom:464.056641pt;}
.y1f{bottom:469.239649pt;}
.y3c{bottom:473.620483pt;}
.y8c{bottom:473.620729pt;}
.y1c{bottom:476.952543pt;}
.y11{bottom:482.330077pt;}
.y7f{bottom:510.150668pt;}
.y19{bottom:511.522685pt;}
.y14{bottom:512.386398pt;}
.ya{bottom:512.992440pt;}
.hb{height:23.312501pt;}
.hc{height:31.083335pt;}
.h4{height:31.229169pt;}
.h6{height:31.383145pt;}
.h13{height:37.152001pt;}
.h18{height:38.854167pt;}
.he{height:41.902128pt;}
.h15{height:50.747399pt;}
.ha{height:54.359375pt;}
.hd{height:54.395833pt;}
.h19{height:58.554689pt;}
.hf{height:61.653015pt;}
.h8{height:62.125004pt;}
.h12{height:62.166671pt;}
.h9{height:66.285234pt;}
.h7{height:69.890627pt;}
.h2{height:70.171877pt;}
.h3{height:70.265627pt;}
.h17{height:77.708334pt;}
.h14{height:84.743994pt;}
.h11{height:84.837744pt;}
.h16{height:85.479171pt;}
.h1{height:93.562503pt;}
.h10{height:113.054695pt;}
.h1a{height:117.109379pt;}
.h5{height:121.949143pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.000000pt;}
.x42{left:9.199475pt;}
.xf{left:11.409449pt;}
.x4e{left:15.228336pt;}
.x20{left:29.645671pt;}
.x1d{left:33.768951pt;}
.x3b{left:37.698163pt;}
.x48{left:42.232865pt;}
.x2f{left:47.673281pt;}
.x36{left:57.412349pt;}
.x52{left:60.379312pt;}
.x45{left:61.474650pt;}
.x1e{left:63.981629pt;}
.x34{left:70.004146pt;}
.x53{left:78.166636pt;}
.xe{left:81.451369pt;}
.x28{left:88.083993pt;}
.x49{left:90.232867pt;}
.x56{left:96.787326pt;}
.x54{left:120.977459pt;}
.x4a{left:125.501316pt;}
.x57{left:139.598149pt;}
.x12{left:175.502626pt;}
.xb{left:186.688051pt;}
.x25{left:188.570856pt;}
.x58{left:245.066298pt;}
.x15{left:262.311069pt;}
.xc{left:272.803284pt;}
.x59{left:275.832039pt;}
.x2{left:277.933906pt;}
.x4b{left:285.445309pt;}
.x50{left:310.692910pt;}
.x1a{left:323.238840pt;}
.x3{left:349.801435pt;}
.x4{left:361.602218pt;}
.x30{left:382.921892pt;}
.x23{left:386.507822pt;}
.x18{left:388.066412pt;}
.x19{left:389.202112pt;}
.x13{left:399.296893pt;}
.x1f{left:401.179713pt;}
.x3c{left:411.128913pt;}
.x26{left:418.757813pt;}
.x2a{left:429.153610pt;}
.x1{left:432.699534pt;}
.x40{left:437.073514pt;}
.x44{left:443.050794pt;}
.x2b{left:462.493455pt;}
.x3a{left:468.468765pt;}
.x4f{left:471.999095pt;}
.x2c{left:477.153615pt;}
.x6{left:479.709645pt;}
.x37{left:481.945315pt;}
.x7{left:483.902951pt;}
.x5{left:485.328786pt;}
.x31{left:489.000016pt;}
.x41{left:501.187516pt;}
.x10{left:504.391491pt;}
.x2d{left:510.493456pt;}
.x32{left:511.979016pt;}
.x4c{left:519.645677pt;}
.x29{left:526.078137pt;}
.x2e{left:533.085957pt;}
.x38{left:534.748067pt;}
.x39{left:548.795318pt;}
.x3d{left:553.790058pt;}
.x3e{left:571.577381pt;}
.x51{left:588.796899pt;}
.x1c{left:598.605489pt;}
.x3f{left:601.790059pt;}
.x14{left:608.147019pt;}
.x24{left:612.254780pt;}
.x22{left:623.666720pt;}
.x21{left:625.320220pt;}
.x33{left:634.570320pt;}
.x47{left:638.742220pt;}
.x43{left:640.403460pt;}
.x35{left:644.130021pt;}
.x4d{left:664.828121pt;}
.x27{left:737.808424pt;}
.x46{left:741.996974pt;}
.x16{left:751.855674pt;}
.x17{left:756.900294pt;}
.x55{left:803.273466pt;}
.x9{left:805.171926pt;}
.x11{left:818.354326pt;}
.xd{left:838.453127pt;}
.x1b{left:910.814014pt;}
.xa{left:913.777263pt;}
}




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