
    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_57df1f36fc0fdfa6b60f695e.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8d53342aa3975d8f6b77f1fe.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b93f60fe65d169c6b9eb597c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_4ff119c4edd20fc2df34fdd5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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;}
.m4{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);}
.m5{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0{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);}
.m1{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);}
.m3{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);}
.v2{vertical-align:-84.239966px;}
.v1{vertical-align:-82.799967px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.009850px;}
.ls0{letter-spacing:0.009938px;}
.ls8{letter-spacing:28.252489px;}
.ls7{letter-spacing:31.854587px;}
.ls2{letter-spacing:34.015846px;}
.ls5{letter-spacing:64.273774px;}
.ls4{letter-spacing:90.063564px;}
.ls3{letter-spacing:194.525322px;}
.ls9{letter-spacing:198.127121px;}
.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;}
}
.ws0{word-spacing:-17.999993px;}
.ws2{word-spacing:-12.059995px;}
.ws3{word-spacing:-10.439996px;}
.ws4{word-spacing:-9.719996px;}
.ws1{word-spacing:0.000000px;}
._20{margin-left:-15.844409px;}
._13{margin-left:-13.691044px;}
._10{margin-left:-2.058046px;}
._1{margin-left:-1.035784px;}
._0{width:1.229567px;}
._17{width:2.350218px;}
._2{width:3.400030px;}
._12{width:4.415581px;}
._d{width:6.065743px;}
._e{width:7.073082px;}
._18{width:8.302836px;}
._11{width:9.915654px;}
._c{width:11.129894px;}
._b{width:12.188827px;}
._a{width:13.346604px;}
._5{width:15.324868px;}
._4{width:16.430536px;}
._1c{width:17.980928px;}
._19{width:19.355660px;}
._1a{width:20.484287px;}
._21{width:21.564134px;}
._f{width:22.985310px;}
._22{width:23.987419px;}
._7{width:25.016350px;}
._8{width:26.046952px;}
._14{width:27.071413px;}
._15{width:28.309099px;}
._9{width:29.407425px;}
._6{width:31.294934px;}
._3{width:32.511245px;}
._16{width:34.026596px;}
._23{width:37.175059px;}
._25{width:38.178638px;}
._26{width:42.545162px;}
._27{width:43.591607px;}
._1d{width:46.119004px;}
._1e{width:47.668551px;}
._1f{width:48.717209px;}
._2c{width:56.956066px;}
._1b{width:94.187023px;}
._2b{width:104.339001px;}
._2a{width:105.346475px;}
._24{width:126.968611px;}
._28{width:179.762247px;}
._29{width:180.974097px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.879984px;}
.fs5{font-size:41.759983px;}
.fs2{font-size:48.239981px;}
.fs4{font-size:59.759976px;}
.fs0{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y4{bottom:57.359977px;}
.y3{bottom:76.259969px;}
.y62{bottom:110.099956px;}
.y39{bottom:110.100256px;}
.y6a{bottom:115.320254px;}
.y67{bottom:126.299949px;}
.y61{bottom:127.379949px;}
.y38{bottom:127.380249px;}
.y69{bottom:127.740249px;}
.y5d{bottom:132.600247px;}
.y79{bottom:133.680247px;}
.y5c{bottom:144.659942px;}
.y37{bottom:144.660242px;}
.y78{bottom:146.459941px;}
.y66{bottom:146.999941px;}
.y36{bottom:149.880240px;}
.y5b{bottom:161.939935px;}
.y35{bottom:162.119935px;}
.y77{bottom:163.559935px;}
.y7c{bottom:167.159933px;}
.y65{bottom:167.699933px;}
.y76{bottom:168.779932px;}
.y5a{bottom:179.219928px;}
.y7b{bottom:179.399928px;}
.y75{bottom:181.199928px;}
.y93{bottom:184.439926px;}
.y34{bottom:188.399925px;}
.y59{bottom:196.499921px;}
.y64{bottom:196.679921px;}
.y58{bottom:201.719919px;}
.y33{bottom:209.099916px;}
.y71{bottom:213.599915px;}
.y57{bottom:213.959914px;}
.y32{bottom:229.799908px;}
.y70{bottom:230.879908px;}
.y6f{bottom:248.159901px;}
.y31{bottom:250.139900px;}
.y56{bottom:250.499900px;}
.y60{bottom:257.339897px;}
.y6e{bottom:265.439894px;}
.y6d{bottom:270.659892px;}
.y30{bottom:270.839892px;}
.y54{bottom:271.199892px;}
.y55{bottom:278.039889px;}
.y8c{bottom:282.719887px;}
.y6c{bottom:282.899887px;}
.y92{bottom:287.939885px;}
.y2f{bottom:291.539883px;}
.y53{bottom:291.899883px;}
.y8b{bottom:299.819880px;}
.y91{bottom:300.179880px;}
.y2e{bottom:312.239875px;}
.y52{bottom:312.599875px;}
.y8a{bottom:317.099873px;}
.y96{bottom:322.319871px;}
.y2d{bottom:332.939867px;}
.y51{bottom:333.299867px;}
.y89{bottom:334.379866px;}
.y95{bottom:334.739866px;}
.y88{bottom:351.659859px;}
.y2c{bottom:353.639859px;}
.y50{bottom:353.999858px;}
.y87{bottom:368.939852px;}
.y2b{bottom:374.339850px;}
.y4f{bottom:374.699850px;}
.y90{bottom:381.539847px;}
.y86{bottom:386.219846px;}
.y2a{bottom:395.039842px;}
.y4e{bottom:395.399842px;}
.y85{bottom:403.319839px;}
.y29{bottom:415.739834px;}
.y4d{bottom:416.099834px;}
.y84{bottom:420.599832px;}
.y6b{bottom:422.939831px;}
.y28{bottom:436.439825px;}
.y4c{bottom:436.799825px;}
.y83{bottom:437.879825px;}
.y82{bottom:455.159818px;}
.y27{bottom:457.139817px;}
.y4b{bottom:457.499817px;}
.y81{bottom:472.439811px;}
.y80{bottom:477.659809px;}
.y26{bottom:477.839809px;}
.y4a{bottom:478.199809px;}
.y7f{bottom:489.899804px;}
.y25{bottom:498.899800px;}
.y8f{bottom:505.739798px;}
.y24{bottom:519.599792px;}
.y23{bottom:540.299784px;}
.y72{bottom:547.139781px;}
.y22{bottom:560.999776px;}
.y21{bottom:581.699767px;}
.y74{bottom:588.539765px;}
.y20{bottom:602.399759px;}
.y1f{bottom:623.099751px;}
.y73{bottom:629.939748px;}
.y1e{bottom:643.799742px;}
.y1d{bottom:664.499734px;}
.y1c{bottom:685.199726px;}
.y1b{bottom:705.899718px;}
.y68{bottom:712.739715px;}
.y1a{bottom:726.599709px;}
.y49{bottom:733.439707px;}
.y19{bottom:747.299701px;}
.y18{bottom:767.999693px;}
.y17{bottom:788.699685px;}
.y16{bottom:809.039676px;}
.y48{bottom:809.399676px;}
.y15{bottom:829.739668px;}
.y47{bottom:830.099668px;}
.y14{bottom:850.439660px;}
.y46{bottom:850.799660px;}
.y13{bottom:871.139652px;}
.y45{bottom:871.499651px;}
.y8e{bottom:878.339649px;}
.y12{bottom:891.839643px;}
.y44{bottom:892.199643px;}
.y63{bottom:899.039640px;}
.y11{bottom:912.539635px;}
.y43{bottom:912.899635px;}
.y7a{bottom:919.739632px;}
.y10{bottom:933.239627px;}
.y42{bottom:933.599627px;}
.y7e{bottom:940.439624px;}
.yf{bottom:953.939618px;}
.y5f{bottom:954.299618px;}
.ye{bottom:974.639610px;}
.y41{bottom:974.999610px;}
.yd{bottom:995.339602px;}
.y40{bottom:995.699602px;}
.yc{bottom:1016.039594px;}
.y3f{bottom:1016.399593px;}
.yb{bottom:1036.739585px;}
.y3e{bottom:1037.099585px;}
.y7d{bottom:1043.939582px;}
.ya{bottom:1057.439577px;}
.y3d{bottom:1057.799577px;}
.y9{bottom:1078.139569px;}
.y3c{bottom:1078.499569px;}
.y7{bottom:1098.839560px;}
.y3b{bottom:1099.199560px;}
.y8{bottom:1104.779558px;}
.y6{bottom:1119.539552px;}
.y3a{bottom:1119.899552px;}
.y94{bottom:1126.739549px;}
.y5{bottom:1140.239544px;}
.y5e{bottom:1140.599544px;}
.y8d{bottom:1147.439541px;}
.y2{bottom:1176.059530px;}
.y1{bottom:1194.959522px;}
.h6{height:38.158578px;}
.ha{height:40.985140px;}
.h9{height:47.344903px;}
.h3{height:48.616856px;}
.h7{height:58.651148px;}
.h1{height:65.010911px;}
.h4{height:70.628878px;}
.h5{height:70.664034px;}
.h2{height:72.562471px;}
.h8{height:75.093720px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:127.620193px;}
.xb{left:132.479947px;}
.x1d{left:138.059945px;}
.x4{left:140.220696px;}
.x1e{left:144.179942px;}
.xc{left:154.619938px;}
.xd{left:180.720000px;}
.x14{left:186.119926px;}
.x10{left:189.179924px;}
.x15{left:192.239923px;}
.x11{left:195.299922px;}
.x12{left:200.159920px;}
.x13{left:206.279917px;}
.x16{left:242.639903px;}
.x17{left:248.759900px;}
.xe{left:252.179899px;}
.xf{left:258.299897px;}
.x25{left:276.479889px;}
.x2f{left:286.019886px;}
.x26{left:288.719885px;}
.x2d{left:291.059884px;}
.x30{left:298.259881px;}
.x2e{left:303.299879px;}
.x27{left:309.059876px;}
.x28{left:321.299871px;}
.x9{left:324.179802px;}
.x8{left:336.959797px;}
.x31{left:340.199864px;}
.x32{left:352.439859px;}
.xa{left:356.939799px;}
.x5{left:375.301323px;}
.x1b{left:392.219843px;}
.x1c{left:404.459838px;}
.x23{left:432.539827px;}
.x18{left:438.120279px;}
.x3{left:442.259301px;}
.x24{left:444.779822px;}
.x1{left:446.399821px;}
.x21{left:485.459806px;}
.x22{left:497.699801px;}
.x6{left:511.379795px;}
.x1f{left:512.639795px;}
.x7{left:517.499793px;}
.x20{left:524.879790px;}
.x29{left:546.119782px;}
.x2a{left:558.359777px;}
.x2b{left:604.439758px;}
.x2c{left:616.679753px;}
.x19{left:644.219742px;}
.x1a{left:650.339740px;}
@media print{
.v2{vertical-align:-74.879970pt;}
.v1{vertical-align:-73.599971pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.008755pt;}
.ls0{letter-spacing:0.008833pt;}
.ls8{letter-spacing:25.113323pt;}
.ls7{letter-spacing:28.315189pt;}
.ls2{letter-spacing:30.236308pt;}
.ls5{letter-spacing:57.132244pt;}
.ls4{letter-spacing:80.056501pt;}
.ls3{letter-spacing:172.911398pt;}
.ls9{letter-spacing:176.112996pt;}
.ws0{word-spacing:-15.999994pt;}
.ws2{word-spacing:-10.719996pt;}
.ws3{word-spacing:-9.279996pt;}
.ws4{word-spacing:-8.639997pt;}
.ws1{word-spacing:0.000000pt;}
._20{margin-left:-14.083919pt;}
._13{margin-left:-12.169817pt;}
._10{margin-left:-1.829374pt;}
._1{margin-left:-0.920697pt;}
._0{width:1.092949pt;}
._17{width:2.089083pt;}
._2{width:3.022249pt;}
._12{width:3.924961pt;}
._d{width:5.391771pt;}
._e{width:6.287184pt;}
._18{width:7.380299pt;}
._11{width:8.813914pt;}
._c{width:9.893239pt;}
._b{width:10.834513pt;}
._a{width:11.863648pt;}
._5{width:13.622105pt;}
._4{width:14.604921pt;}
._1c{width:15.983047pt;}
._19{width:17.205031pt;}
._1a{width:18.208255pt;}
._21{width:19.168119pt;}
._f{width:20.431386pt;}
._22{width:21.322151pt;}
._7{width:22.236756pt;}
._8{width:23.152846pt;}
._14{width:24.063478pt;}
._15{width:25.163643pt;}
._9{width:26.139933pt;}
._6{width:27.817719pt;}
._3{width:28.898885pt;}
._16{width:30.245863pt;}
._23{width:33.044497pt;}
._25{width:33.936567pt;}
._26{width:37.817922pt;}
._27{width:38.748095pt;}
._1d{width:40.994670pt;}
._1e{width:42.372045pt;}
._1f{width:43.304186pt;}
._2c{width:50.627614pt;}
._1b{width:83.721798pt;}
._2b{width:92.745779pt;}
._2a{width:93.641312pt;}
._24{width:112.860988pt;}
._28{width:159.788664pt;}
._29{width:160.865864pt;}
.fs3{font-size:34.559986pt;}
.fs5{font-size:37.119985pt;}
.fs2{font-size:42.879983pt;}
.fs4{font-size:53.119979pt;}
.fs0{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:50.986646pt;}
.y3{bottom:67.786640pt;}
.y62{bottom:97.866628pt;}
.y39{bottom:97.866894pt;}
.y6a{bottom:102.506892pt;}
.y67{bottom:112.266622pt;}
.y61{bottom:113.226621pt;}
.y38{bottom:113.226888pt;}
.y69{bottom:113.546888pt;}
.y5d{bottom:117.866886pt;}
.y79{bottom:118.826886pt;}
.y5c{bottom:128.586615pt;}
.y37{bottom:128.586882pt;}
.y78{bottom:130.186615pt;}
.y66{bottom:130.666614pt;}
.y36{bottom:133.226880pt;}
.y5b{bottom:143.946609pt;}
.y35{bottom:144.106609pt;}
.y77{bottom:145.386609pt;}
.y7c{bottom:148.586607pt;}
.y65{bottom:149.066607pt;}
.y76{bottom:150.026607pt;}
.y5a{bottom:159.306603pt;}
.y7b{bottom:159.466603pt;}
.y75{bottom:161.066602pt;}
.y93{bottom:163.946601pt;}
.y34{bottom:167.466600pt;}
.y59{bottom:174.666597pt;}
.y64{bottom:174.826597pt;}
.y58{bottom:179.306595pt;}
.y33{bottom:185.866592pt;}
.y71{bottom:189.866591pt;}
.y57{bottom:190.186591pt;}
.y32{bottom:204.266585pt;}
.y70{bottom:205.226585pt;}
.y6f{bottom:220.586578pt;}
.y31{bottom:222.346578pt;}
.y56{bottom:222.666578pt;}
.y60{bottom:228.746575pt;}
.y6e{bottom:235.946572pt;}
.y6d{bottom:240.586570pt;}
.y30{bottom:240.746570pt;}
.y54{bottom:241.066570pt;}
.y55{bottom:247.146568pt;}
.y8c{bottom:251.306566pt;}
.y6c{bottom:251.466566pt;}
.y92{bottom:255.946564pt;}
.y2f{bottom:259.146563pt;}
.y53{bottom:259.466563pt;}
.y8b{bottom:266.506560pt;}
.y91{bottom:266.826560pt;}
.y2e{bottom:277.546556pt;}
.y52{bottom:277.866556pt;}
.y8a{bottom:281.866554pt;}
.y96{bottom:286.506552pt;}
.y2d{bottom:295.946548pt;}
.y51{bottom:296.266548pt;}
.y89{bottom:297.226548pt;}
.y95{bottom:297.546548pt;}
.y88{bottom:312.586542pt;}
.y2c{bottom:314.346541pt;}
.y50{bottom:314.666541pt;}
.y87{bottom:327.946535pt;}
.y2b{bottom:332.746534pt;}
.y4f{bottom:333.066533pt;}
.y90{bottom:339.146531pt;}
.y86{bottom:343.306529pt;}
.y2a{bottom:351.146526pt;}
.y4e{bottom:351.466526pt;}
.y85{bottom:358.506523pt;}
.y29{bottom:369.546519pt;}
.y4d{bottom:369.866519pt;}
.y84{bottom:373.866517pt;}
.y6b{bottom:375.946516pt;}
.y28{bottom:387.946511pt;}
.y4c{bottom:388.266511pt;}
.y83{bottom:389.226511pt;}
.y82{bottom:404.586505pt;}
.y27{bottom:406.346504pt;}
.y4b{bottom:406.666504pt;}
.y81{bottom:419.946499pt;}
.y80{bottom:424.586497pt;}
.y26{bottom:424.746497pt;}
.y4a{bottom:425.066497pt;}
.y7f{bottom:435.466492pt;}
.y25{bottom:443.466489pt;}
.y8f{bottom:449.546487pt;}
.y24{bottom:461.866482pt;}
.y23{bottom:480.266475pt;}
.y72{bottom:486.346472pt;}
.y22{bottom:498.666467pt;}
.y21{bottom:517.066460pt;}
.y74{bottom:523.146457pt;}
.y20{bottom:535.466452pt;}
.y1f{bottom:553.866445pt;}
.y73{bottom:559.946443pt;}
.y1e{bottom:572.266438pt;}
.y1d{bottom:590.666430pt;}
.y1c{bottom:609.066423pt;}
.y1b{bottom:627.466416pt;}
.y68{bottom:633.546413pt;}
.y1a{bottom:645.866408pt;}
.y49{bottom:651.946406pt;}
.y19{bottom:664.266401pt;}
.y18{bottom:682.666394pt;}
.y17{bottom:701.066386pt;}
.y16{bottom:719.146379pt;}
.y48{bottom:719.466379pt;}
.y15{bottom:737.546372pt;}
.y47{bottom:737.866372pt;}
.y14{bottom:755.946364pt;}
.y46{bottom:756.266364pt;}
.y13{bottom:774.346357pt;}
.y45{bottom:774.666357pt;}
.y8e{bottom:780.746354pt;}
.y12{bottom:792.746350pt;}
.y44{bottom:793.066349pt;}
.y63{bottom:799.146347pt;}
.y11{bottom:811.146342pt;}
.y43{bottom:811.466342pt;}
.y7a{bottom:817.546340pt;}
.y10{bottom:829.546335pt;}
.y42{bottom:829.866335pt;}
.y7e{bottom:835.946332pt;}
.yf{bottom:847.946327pt;}
.y5f{bottom:848.266327pt;}
.ye{bottom:866.346320pt;}
.y41{bottom:866.666320pt;}
.yd{bottom:884.746313pt;}
.y40{bottom:885.066313pt;}
.yc{bottom:903.146305pt;}
.y3f{bottom:903.466305pt;}
.yb{bottom:921.546298pt;}
.y3e{bottom:921.866298pt;}
.y7d{bottom:927.946295pt;}
.ya{bottom:939.946291pt;}
.y3d{bottom:940.266291pt;}
.y9{bottom:958.346283pt;}
.y3c{bottom:958.666283pt;}
.y7{bottom:976.746276pt;}
.y3b{bottom:977.066276pt;}
.y8{bottom:982.026274pt;}
.y6{bottom:995.146269pt;}
.y3a{bottom:995.466268pt;}
.y94{bottom:1001.546266pt;}
.y5{bottom:1013.546261pt;}
.y5e{bottom:1013.866261pt;}
.y8d{bottom:1019.946259pt;}
.y2{bottom:1045.386249pt;}
.y1{bottom:1062.186242pt;}
.h6{height:33.918736pt;}
.ha{height:36.431235pt;}
.h9{height:42.084358pt;}
.h3{height:43.214983pt;}
.h7{height:52.134354pt;}
.h1{height:57.787477pt;}
.h4{height:62.781225pt;}
.h5{height:62.812475pt;}
.h2{height:64.499974pt;}
.h8{height:66.749973pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:113.440172pt;}
.xb{left:117.759953pt;}
.x1d{left:122.719951pt;}
.x4{left:124.640619pt;}
.x1e{left:128.159949pt;}
.xc{left:137.439945pt;}
.xd{left:160.640000pt;}
.x14{left:165.439934pt;}
.x10{left:168.159933pt;}
.x15{left:170.879932pt;}
.x11{left:173.599931pt;}
.x12{left:177.919929pt;}
.x13{left:183.359927pt;}
.x16{left:215.679914pt;}
.x17{left:221.119912pt;}
.xe{left:224.159910pt;}
.xf{left:229.599908pt;}
.x25{left:245.759902pt;}
.x2f{left:254.239898pt;}
.x26{left:256.639897pt;}
.x2d{left:258.719897pt;}
.x30{left:265.119894pt;}
.x2e{left:269.599892pt;}
.x27{left:274.719890pt;}
.x28{left:285.599886pt;}
.x9{left:288.159824pt;}
.x8{left:299.519819pt;}
.x31{left:302.399879pt;}
.x32{left:313.279875pt;}
.xa{left:317.279821pt;}
.x5{left:333.601176pt;}
.x1b{left:348.639861pt;}
.x1c{left:359.519856pt;}
.x23{left:384.479846pt;}
.x18{left:389.440248pt;}
.x3{left:393.119378pt;}
.x24{left:395.359842pt;}
.x1{left:396.799841pt;}
.x21{left:431.519827pt;}
.x22{left:442.399823pt;}
.x6{left:454.559818pt;}
.x1f{left:455.679818pt;}
.x7{left:459.999816pt;}
.x20{left:466.559813pt;}
.x29{left:485.439806pt;}
.x2a{left:496.319801pt;}
.x2b{left:537.279785pt;}
.x2c{left:548.159781pt;}
.x19{left:572.639771pt;}
.x1a{left:578.079769pt;}
}




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