
    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_e189adfb07613b2bc833a12d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b8898f4627a0726dc0a901d5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_f6e6c1ae88ed58ceeb29b50b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_92d4236d8dc475e129b28f2f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_e69aa61ae1492f36b1915e2b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.675781;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_75137e1e7f2048a1f85f1c42.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.858398;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;}
.m3{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-82.799967px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.010620px;}
.lsc{letter-spacing:0.021238px;}
.ls6{letter-spacing:0.182640px;}
.ls1{letter-spacing:0.189300px;}
.lsb{letter-spacing:0.731040px;}
.ls3{letter-spacing:2.892299px;}
.ls4{letter-spacing:3.612719px;}
.ls9{letter-spacing:3.784858px;}
.ls8{letter-spacing:9.376136px;}
.ls5{letter-spacing:13.698715px;}
.lsa{letter-spacing:152.020139px;}
.ls0{letter-spacing:813.371675px;}
.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:-18.021231px;}
.ws1{word-spacing:-17.999993px;}
.ws2{word-spacing:-14.939994px;}
.ws0{word-spacing:-14.219994px;}
.ws3{word-spacing:0.000000px;}
._11{margin-left:-9.882357px;}
._9{margin-left:-4.545746px;}
._a{margin-left:-3.402490px;}
._3{margin-left:-1.599281px;}
._0{width:1.212998px;}
._f{width:2.214391px;}
._4{width:3.257206px;}
._6{width:4.647763px;}
._1{width:5.840228px;}
._2{width:6.890079px;}
._10{width:7.891671px;}
._8{width:8.904899px;}
._d{width:10.540628px;}
._e{width:11.779562px;}
._b{width:13.649071px;}
._c{width:14.903959px;}
._13{width:16.173003px;}
._16{width:19.066312px;}
._12{width:20.109324px;}
._15{width:21.628538px;}
._5{width:23.024569px;}
._14{width:24.183404px;}
._7{width:25.579754px;}
._18{width:26.914298px;}
._17{width:28.012709px;}
._1b{width:42.621360px;}
._19{width:44.379261px;}
._1a{width:152.020019px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.879984px;}
.fs2{font-size:48.239981px;}
.fs1{font-size:56.879977px;}
.fs3{font-size:59.759976px;}
.fs4{font-size:66.239974px;}
.fs0{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y6c{bottom:110.099956px;}
.y36{bottom:110.100256px;}
.y80{bottom:110.460256px;}
.yaf{bottom:115.859954px;}
.y64{bottom:126.299949px;}
.y6b{bottom:127.379949px;}
.y35{bottom:127.740249px;}
.y7f{bottom:128.460249px;}
.ydb{bottom:129.899948px;}
.y34{bottom:132.960247px;}
.yae{bottom:136.559945px;}
.y6a{bottom:144.659942px;}
.y7e{bottom:146.100242px;}
.y33{bottom:146.640241px;}
.y63{bottom:146.999941px;}
.y7d{bottom:151.319939px;}
.yad{bottom:157.259937px;}
.yda{bottom:159.599936px;}
.y69{bottom:162.299935px;}
.y7c{bottom:164.999934px;}
.y68{bottom:167.519933px;}
.y62{bottom:167.699933px;}
.yb5{bottom:170.399932px;}
.yac{bottom:177.959929px;}
.yd9{bottom:180.299928px;}
.y67{bottom:181.199928px;}
.y32{bottom:181.559927px;}
.y7b{bottom:185.519926px;}
.y61{bottom:188.399925px;}
.yb4{bottom:191.099924px;}
.yab{bottom:198.659921px;}
.yd8{bottom:200.999920px;}
.y31{bottom:202.259919px;}
.y7a{bottom:206.219918px;}
.y60{bottom:209.099916px;}
.yaa{bottom:219.359912px;}
.yb3{bottom:220.799912px;}
.y30{bottom:222.959911px;}
.y79{bottom:226.919909px;}
.y5f{bottom:229.799908px;}
.yd7{bottom:230.699908px;}
.ya9{bottom:239.699904px;}
.y2f{bottom:243.659903px;}
.y78{bottom:247.619901px;}
.y5e{bottom:250.499900px;}
.yd6{bottom:251.399899px;}
.ya8{bottom:260.399896px;}
.y2e{bottom:264.359894px;}
.y77{bottom:268.319893px;}
.y5d{bottom:271.199892px;}
.yd5{bottom:272.099891px;}
.ya7{bottom:281.459887px;}
.y2d{bottom:285.059886px;}
.y76{bottom:289.019884px;}
.yb2{bottom:291.539883px;}
.y5c{bottom:291.899883px;}
.yd4{bottom:301.799879px;}
.ya6{bottom:302.159879px;}
.y2c{bottom:305.759878px;}
.y75{bottom:308.999876px;}
.y5b{bottom:312.599875px;}
.yd3{bottom:322.499871px;}
.ya5{bottom:322.859871px;}
.y2b{bottom:326.459869px;}
.y74{bottom:327.179869px;}
.y5a{bottom:333.299867px;}
.ya4{bottom:343.559863px;}
.y73{bottom:345.359862px;}
.y2a{bottom:347.159861px;}
.yd2{bottom:352.199859px;}
.y59{bottom:353.999858px;}
.y72{bottom:363.359855px;}
.ya3{bottom:364.259854px;}
.y29{bottom:367.859853px;}
.yd1{bottom:372.899851px;}
.y58{bottom:374.699850px;}
.y71{bottom:381.539847px;}
.ya2{bottom:384.959846px;}
.y28{bottom:388.559845px;}
.yd0{bottom:393.599843px;}
.y57{bottom:395.399842px;}
.y70{bottom:399.719840px;}
.ya1{bottom:405.659838px;}
.y27{bottom:409.259836px;}
.y56{bottom:416.099834px;}
.y6f{bottom:417.899833px;}
.ycf{bottom:423.299831px;}
.ya0{bottom:426.359829px;}
.y26{bottom:429.959828px;}
.yb1{bottom:436.439825px;}
.y55{bottom:436.799825px;}
.yce{bottom:443.999822px;}
.y9f{bottom:447.059821px;}
.y25{bottom:450.659820px;}
.y54{bottom:457.499817px;}
.ycd{bottom:464.699814px;}
.y9e{bottom:467.759813px;}
.y24{bottom:471.359811px;}
.y53{bottom:478.199809px;}
.y9d{bottom:488.459805px;}
.y23{bottom:492.059803px;}
.ycc{bottom:494.399802px;}
.y52{bottom:498.899800px;}
.y9c{bottom:509.159796px;}
.y22{bottom:512.759795px;}
.ycb{bottom:515.099794px;}
.y51{bottom:519.599792px;}
.y9b{bottom:529.679788px;}
.y21{bottom:533.459787px;}
.yca{bottom:535.799786px;}
.y50{bottom:540.299784px;}
.y9a{bottom:550.379780px;}
.y20{bottom:554.159778px;}
.y4f{bottom:560.999776px;}
.yc9{bottom:565.499774px;}
.y99{bottom:571.079772px;}
.y1f{bottom:574.859770px;}
.y4e{bottom:581.699767px;}
.yc8{bottom:586.199766px;}
.y98{bottom:591.779763px;}
.y1e{bottom:595.559762px;}
.y4d{bottom:602.399759px;}
.y97{bottom:612.479755px;}
.yc7{bottom:615.899754px;}
.y1d{bottom:616.079754px;}
.y4c{bottom:623.099751px;}
.y96{bottom:633.179747px;}
.yc6{bottom:636.599745px;}
.y1c{bottom:636.779745px;}
.y4b{bottom:643.799742px;}
.y66{bottom:650.639740px;}
.y95{bottom:653.879738px;}
.y1b{bottom:657.479737px;}
.y4a{bottom:664.499734px;}
.yc5{bottom:666.299733px;}
.y94{bottom:674.579730px;}
.y1a{bottom:678.179729px;}
.y49{bottom:685.199726px;}
.yc4{bottom:686.999725px;}
.y93{bottom:695.279722px;}
.y19{bottom:698.879720px;}
.y48{bottom:705.899718px;}
.y92{bottom:715.979714px;}
.yc3{bottom:716.699713px;}
.y18{bottom:719.579712px;}
.y47{bottom:726.599709px;}
.y91{bottom:736.679705px;}
.yc2{bottom:737.399705px;}
.y17{bottom:740.279704px;}
.y46{bottom:747.299701px;}
.y90{bottom:757.379697px;}
.ye3{bottom:758.099697px;}
.y16{bottom:760.979696px;}
.yc1{bottom:767.099693px;}
.y45{bottom:767.999693px;}
.y8f{bottom:778.079689px;}
.y15{bottom:781.319687px;}
.yc0{bottom:787.799685px;}
.y44{bottom:788.699685px;}
.ye2{bottom:796.799681px;}
.y8e{bottom:798.779680px;}
.y14{bottom:802.379679px;}
.y43{bottom:809.399676px;}
.ybf{bottom:817.499673px;}
.y8d{bottom:819.479672px;}
.y13{bottom:823.079671px;}
.ye1{bottom:826.499669px;}
.y42{bottom:830.099668px;}
.y8c{bottom:840.179664px;}
.y12{bottom:843.779662px;}
.ybe{bottom:847.199661px;}
.y41{bottom:850.799660px;}
.y8b{bottom:860.879656px;}
.y11{bottom:863.759654px;}
.ybd{bottom:867.899653px;}
.y40{bottom:871.499651px;}
.y10{bottom:881.039648px;}
.y8a{bottom:881.579647px;}
.ybc{bottom:888.599645px;}
.y3f{bottom:892.199643px;}
.ye0{bottom:897.599641px;}
.yf{bottom:898.319641px;}
.y89{bottom:902.279639px;}
.y3e{bottom:912.899635px;}
.ye{bottom:915.599634px;}
.ybb{bottom:918.299633px;}
.y88{bottom:922.979631px;}
.yd{bottom:932.879627px;}
.y3d{bottom:933.599627px;}
.yba{bottom:938.999624px;}
.y87{bottom:943.679623px;}
.ydf{bottom:947.999621px;}
.yc{bottom:949.979620px;}
.y3c{bottom:953.939618px;}
.y65{bottom:954.299618px;}
.y86{bottom:964.379614px;}
.yb{bottom:967.259613px;}
.yb9{bottom:968.699613px;}
.y3b{bottom:974.999610px;}
.ya{bottom:984.539606px;}
.yde{bottom:989.399604px;}
.yb0{bottom:995.339602px;}
.y3a{bottom:995.699602px;}
.yb8{bottom:998.399601px;}
.y9{bottom:1001.819599px;}
.y85{bottom:1005.779598px;}
.y39{bottom:1016.399593px;}
.y8{bottom:1019.099592px;}
.y84{bottom:1025.759590px;}
.y7{bottom:1037.099585px;}
.ydd{bottom:1039.799584px;}
.y83{bottom:1043.939582px;}
.yb7{bottom:1048.799580px;}
.y6e{bottom:1057.439577px;}
.y6{bottom:1057.799577px;}
.y82{bottom:1062.119575px;}
.yb6{bottom:1069.499572px;}
.y5{bottom:1078.499569px;}
.y81{bottom:1080.299568px;}
.ydc{bottom:1090.199564px;}
.y4{bottom:1099.199560px;}
.y2{bottom:1119.539552px;}
.y38{bottom:1119.899552px;}
.y3{bottom:1125.479550px;}
.y6d{bottom:1126.739549px;}
.y1{bottom:1140.239544px;}
.y37{bottom:1140.599544px;}
.ha{height:25.913662px;}
.h9{height:44.149201px;}
.hb{height:47.321348px;}
.hc{height:47.344903px;}
.h4{height:48.616856px;}
.h6{height:55.824587px;}
.h2{height:57.324352px;}
.h8{height:58.621969px;}
.h7{height:58.651148px;}
.h3{height:70.628878px;}
.h5{height:70.664034px;}
.h1{height:72.562471px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xe{left:106.379397px;}
.x1e{left:111.239956px;}
.x1{left:144.899942px;}
.x1c{left:148.859940px;}
.x2{left:156.959937px;}
.xf{left:330.119868px;}
.x3{left:347.399861px;}
.x17{left:350.459707px;}
.x4{left:353.339859px;}
.x18{left:363.419855px;}
.x10{left:368.459853px;}
.x11{left:375.659850px;}
.x12{left:406.079838px;}
.xb{left:408.959917px;}
.x13{left:419.039832px;}
.x5{left:445.139822px;}
.x6{left:449.639820px;}
.x7{left:453.239819px;}
.x8{left:466.199814px;}
.x19{left:476.459809px;}
.xc{left:477.899809px;}
.xd{left:484.019806px;}
.x1a{left:492.479803px;}
.x14{left:499.319800px;}
.x9{left:510.299796px;}
.x15{left:512.279795px;}
.x21{left:515.879794px;}
.x1b{left:542.519783px;}
.xa{left:545.399782px;}
.x16{left:578.879768px;}
.x1f{left:660.779736px;}
.x20{left:666.899733px;}
.x1d{left:703.799718px;}
@media print{
.v1{vertical-align:-73.599971pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.009440pt;}
.lsc{letter-spacing:0.018878pt;}
.ls6{letter-spacing:0.162347pt;}
.ls1{letter-spacing:0.168267pt;}
.lsb{letter-spacing:0.649813pt;}
.ls3{letter-spacing:2.570932pt;}
.ls4{letter-spacing:3.211305pt;}
.ls9{letter-spacing:3.364319pt;}
.ls8{letter-spacing:8.334343pt;}
.ls5{letter-spacing:12.176635pt;}
.lsa{letter-spacing:135.129013pt;}
.ls0{letter-spacing:722.997044pt;}
.ws4{word-spacing:-16.018872pt;}
.ws1{word-spacing:-15.999994pt;}
.ws2{word-spacing:-13.279995pt;}
.ws0{word-spacing:-12.639995pt;}
.ws3{word-spacing:0.000000pt;}
._11{margin-left:-8.784317pt;}
._9{margin-left:-4.040663pt;}
._a{margin-left:-3.024436pt;}
._3{margin-left:-1.421583pt;}
._0{width:1.078220pt;}
._f{width:1.968348pt;}
._4{width:2.895294pt;}
._6{width:4.131345pt;}
._1{width:5.191314pt;}
._2{width:6.124515pt;}
._10{width:7.014819pt;}
._8{width:7.915466pt;}
._d{width:9.369447pt;}
._e{width:10.470722pt;}
._b{width:12.132508pt;}
._c{width:13.247963pt;}
._13{width:14.376003pt;}
._16{width:16.947833pt;}
._12{width:17.874954pt;}
._15{width:19.225367pt;}
._5{width:20.466284pt;}
._14{width:21.496359pt;}
._7{width:22.737559pt;}
._18{width:23.923820pt;}
._17{width:24.900186pt;}
._1b{width:37.885653pt;}
._19{width:39.448232pt;}
._1a{width:135.128906pt;}
.fs5{font-size:34.559986pt;}
.fs2{font-size:42.879983pt;}
.fs1{font-size:50.559980pt;}
.fs3{font-size:53.119979pt;}
.fs4{font-size:58.879976pt;}
.fs0{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:97.866628pt;}
.y36{bottom:97.866894pt;}
.y80{bottom:98.186894pt;}
.yaf{bottom:102.986625pt;}
.y64{bottom:112.266622pt;}
.y6b{bottom:113.226621pt;}
.y35{bottom:113.546888pt;}
.y7f{bottom:114.186888pt;}
.ydb{bottom:115.466620pt;}
.y34{bottom:118.186886pt;}
.yae{bottom:121.386618pt;}
.y6a{bottom:128.586615pt;}
.y7e{bottom:129.866881pt;}
.y33{bottom:130.346881pt;}
.y63{bottom:130.666614pt;}
.y7d{bottom:134.506613pt;}
.yad{bottom:139.786611pt;}
.yda{bottom:141.866610pt;}
.y69{bottom:144.266609pt;}
.y7c{bottom:146.666608pt;}
.y68{bottom:148.906607pt;}
.y62{bottom:149.066607pt;}
.yb5{bottom:151.466606pt;}
.yac{bottom:158.186603pt;}
.yd9{bottom:160.266603pt;}
.y67{bottom:161.066602pt;}
.y32{bottom:161.386602pt;}
.y7b{bottom:164.906601pt;}
.y61{bottom:167.466600pt;}
.yb4{bottom:169.866599pt;}
.yab{bottom:176.586596pt;}
.yd8{bottom:178.666595pt;}
.y31{bottom:179.786595pt;}
.y7a{bottom:183.306593pt;}
.y60{bottom:185.866592pt;}
.yaa{bottom:194.986589pt;}
.yb3{bottom:196.266588pt;}
.y30{bottom:198.186587pt;}
.y79{bottom:201.706586pt;}
.y5f{bottom:204.266585pt;}
.yd7{bottom:205.066585pt;}
.ya9{bottom:213.066581pt;}
.y2f{bottom:216.586580pt;}
.y78{bottom:220.106579pt;}
.y5e{bottom:222.666578pt;}
.yd6{bottom:223.466577pt;}
.ya8{bottom:231.466574pt;}
.y2e{bottom:234.986573pt;}
.y77{bottom:238.506571pt;}
.y5d{bottom:241.066570pt;}
.yd5{bottom:241.866570pt;}
.ya7{bottom:250.186567pt;}
.y2d{bottom:253.386565pt;}
.y76{bottom:256.906564pt;}
.yb2{bottom:259.146563pt;}
.y5c{bottom:259.466563pt;}
.yd4{bottom:268.266559pt;}
.ya6{bottom:268.586559pt;}
.y2c{bottom:271.786558pt;}
.y75{bottom:274.666557pt;}
.y5b{bottom:277.866556pt;}
.yd3{bottom:286.666552pt;}
.ya5{bottom:286.986552pt;}
.y2b{bottom:290.186551pt;}
.y74{bottom:290.826550pt;}
.y5a{bottom:296.266548pt;}
.ya4{bottom:305.386545pt;}
.y73{bottom:306.986544pt;}
.y2a{bottom:308.586543pt;}
.yd2{bottom:313.066541pt;}
.y59{bottom:314.666541pt;}
.y72{bottom:322.986537pt;}
.ya3{bottom:323.786537pt;}
.y29{bottom:326.986536pt;}
.yd1{bottom:331.466534pt;}
.y58{bottom:333.066533pt;}
.y71{bottom:339.146531pt;}
.ya2{bottom:342.186530pt;}
.y28{bottom:345.386529pt;}
.yd0{bottom:349.866527pt;}
.y57{bottom:351.466526pt;}
.y70{bottom:355.306525pt;}
.ya1{bottom:360.586522pt;}
.y27{bottom:363.786521pt;}
.y56{bottom:369.866519pt;}
.y6f{bottom:371.466518pt;}
.ycf{bottom:376.266516pt;}
.ya0{bottom:378.986515pt;}
.y26{bottom:382.186514pt;}
.yb1{bottom:387.946511pt;}
.y55{bottom:388.266511pt;}
.yce{bottom:394.666509pt;}
.y9f{bottom:397.386508pt;}
.y25{bottom:400.586506pt;}
.y54{bottom:406.666504pt;}
.ycd{bottom:413.066501pt;}
.y9e{bottom:415.786500pt;}
.y24{bottom:418.986499pt;}
.y53{bottom:425.066497pt;}
.y9d{bottom:434.186493pt;}
.y23{bottom:437.386492pt;}
.ycc{bottom:439.466491pt;}
.y52{bottom:443.466489pt;}
.y9c{bottom:452.586486pt;}
.y22{bottom:455.786484pt;}
.ycb{bottom:457.866484pt;}
.y51{bottom:461.866482pt;}
.y9b{bottom:470.826478pt;}
.y21{bottom:474.186477pt;}
.yca{bottom:476.266476pt;}
.y50{bottom:480.266475pt;}
.y9a{bottom:489.226471pt;}
.y20{bottom:492.586470pt;}
.y4f{bottom:498.666467pt;}
.yc9{bottom:502.666466pt;}
.y99{bottom:507.626464pt;}
.y1f{bottom:510.986462pt;}
.y4e{bottom:517.066460pt;}
.yc8{bottom:521.066458pt;}
.y98{bottom:526.026456pt;}
.y1e{bottom:529.386455pt;}
.y4d{bottom:535.466452pt;}
.y97{bottom:544.426449pt;}
.yc7{bottom:547.466448pt;}
.y1d{bottom:547.626448pt;}
.y4c{bottom:553.866445pt;}
.y96{bottom:562.826442pt;}
.yc6{bottom:565.866440pt;}
.y1c{bottom:566.026440pt;}
.y4b{bottom:572.266438pt;}
.y66{bottom:578.346435pt;}
.y95{bottom:581.226434pt;}
.y1b{bottom:584.426433pt;}
.y4a{bottom:590.666430pt;}
.yc5{bottom:592.266430pt;}
.y94{bottom:599.626427pt;}
.y1a{bottom:602.826426pt;}
.y49{bottom:609.066423pt;}
.yc4{bottom:610.666422pt;}
.y93{bottom:618.026419pt;}
.y19{bottom:621.226418pt;}
.y48{bottom:627.466416pt;}
.y92{bottom:636.426412pt;}
.yc3{bottom:637.066412pt;}
.y18{bottom:639.626411pt;}
.y47{bottom:645.866408pt;}
.y91{bottom:654.826405pt;}
.yc2{bottom:655.466404pt;}
.y17{bottom:658.026403pt;}
.y46{bottom:664.266401pt;}
.y90{bottom:673.226397pt;}
.ye3{bottom:673.866397pt;}
.y16{bottom:676.426396pt;}
.yc1{bottom:681.866394pt;}
.y45{bottom:682.666394pt;}
.y8f{bottom:691.626390pt;}
.y15{bottom:694.506389pt;}
.yc0{bottom:700.266387pt;}
.y44{bottom:701.066386pt;}
.ye2{bottom:708.266383pt;}
.y8e{bottom:710.026383pt;}
.y14{bottom:713.226381pt;}
.y43{bottom:719.466379pt;}
.ybf{bottom:726.666376pt;}
.y8d{bottom:728.426375pt;}
.y13{bottom:731.626374pt;}
.ye1{bottom:734.666373pt;}
.y42{bottom:737.866372pt;}
.y8c{bottom:746.826368pt;}
.y12{bottom:750.026367pt;}
.ybe{bottom:753.066365pt;}
.y41{bottom:756.266364pt;}
.y8b{bottom:765.226361pt;}
.y11{bottom:767.786360pt;}
.ybd{bottom:771.466358pt;}
.y40{bottom:774.666357pt;}
.y10{bottom:783.146353pt;}
.y8a{bottom:783.626353pt;}
.ybc{bottom:789.866351pt;}
.y3f{bottom:793.066349pt;}
.ye0{bottom:797.866348pt;}
.yf{bottom:798.506347pt;}
.y89{bottom:802.026346pt;}
.y3e{bottom:811.466342pt;}
.ye{bottom:813.866341pt;}
.ybb{bottom:816.266340pt;}
.y88{bottom:820.426338pt;}
.yd{bottom:829.226335pt;}
.y3d{bottom:829.866335pt;}
.yba{bottom:834.666333pt;}
.y87{bottom:838.826331pt;}
.ydf{bottom:842.666330pt;}
.yc{bottom:844.426329pt;}
.y3c{bottom:847.946327pt;}
.y65{bottom:848.266327pt;}
.y86{bottom:857.226324pt;}
.yb{bottom:859.786323pt;}
.yb9{bottom:861.066322pt;}
.y3b{bottom:866.666320pt;}
.ya{bottom:875.146317pt;}
.yde{bottom:879.466315pt;}
.yb0{bottom:884.746313pt;}
.y3a{bottom:885.066313pt;}
.yb8{bottom:887.466312pt;}
.y9{bottom:890.506310pt;}
.y85{bottom:894.026309pt;}
.y39{bottom:903.466305pt;}
.y8{bottom:905.866304pt;}
.y84{bottom:911.786302pt;}
.y7{bottom:921.866298pt;}
.ydd{bottom:924.266297pt;}
.y83{bottom:927.946295pt;}
.yb7{bottom:932.266294pt;}
.y6e{bottom:939.946291pt;}
.y6{bottom:940.266291pt;}
.y82{bottom:944.106289pt;}
.yb6{bottom:950.666286pt;}
.y5{bottom:958.666283pt;}
.y81{bottom:960.266283pt;}
.ydc{bottom:969.066279pt;}
.y4{bottom:977.066276pt;}
.y2{bottom:995.146269pt;}
.y38{bottom:995.466268pt;}
.y3{bottom:1000.426266pt;}
.y6d{bottom:1001.546266pt;}
.y1{bottom:1013.546261pt;}
.y37{bottom:1013.866261pt;}
.ha{height:23.034366pt;}
.h9{height:39.243734pt;}
.hb{height:42.063421pt;}
.hc{height:42.084358pt;}
.h4{height:43.214983pt;}
.h6{height:49.621855pt;}
.h2{height:50.954980pt;}
.h8{height:52.108417pt;}
.h7{height:52.134354pt;}
.h3{height:62.781225pt;}
.h5{height:62.812475pt;}
.h1{height:64.499974pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xe{left:94.559464pt;}
.x1e{left:98.879960pt;}
.x1{left:128.799948pt;}
.x1c{left:132.319947pt;}
.x2{left:139.519944pt;}
.xf{left:293.439883pt;}
.x3{left:308.799876pt;}
.x17{left:311.519740pt;}
.x4{left:314.079874pt;}
.x18{left:323.039871pt;}
.x10{left:327.519869pt;}
.x11{left:333.919866pt;}
.x12{left:360.959856pt;}
.xb{left:363.519926pt;}
.x13{left:372.479851pt;}
.x5{left:395.679842pt;}
.x6{left:399.679840pt;}
.x7{left:402.879839pt;}
.x8{left:414.399834pt;}
.x19{left:423.519831pt;}
.xc{left:424.799830pt;}
.xd{left:430.239828pt;}
.x1a{left:437.759825pt;}
.x14{left:443.839822pt;}
.x9{left:453.599819pt;}
.x15{left:455.359818pt;}
.x21{left:458.559817pt;}
.x1b{left:482.239807pt;}
.xa{left:484.799806pt;}
.x16{left:514.559794pt;}
.x1f{left:587.359765pt;}
.x20{left:592.799763pt;}
.x1d{left:625.599750pt;}
}




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