
    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_f76baed6bebeae52b8491c32.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941000;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_afc79eb20f010e0eca1e9e22.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.128000;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_943fc0a94f96d8cc8be88536.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.132000;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_3896248ad76bd374ff984e62.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.692383;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_749c212ec6f93f826b2d5a3d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.750000;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);}
.m2{transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281273,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;}
.ls1{letter-spacing:-3.108336px;}
.ls4{letter-spacing:-1.590036px;}
.ls2{letter-spacing:-1.135740px;}
.ls5{letter-spacing:-1.022166px;}
.ls7{letter-spacing:-1.016184px;}
.ls3{letter-spacing:-0.567870px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.142266px;}
.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:0.000000px;}
._0{margin-left:-1.112721px;}
._2{width:1.476457px;}
._5{width:2.499532px;}
._f{width:3.568936px;}
._1{width:4.615879px;}
._4{width:5.645532px;}
._e{width:6.757653px;}
._7{width:7.773236px;}
._8{width:8.786503px;}
._9{width:9.975921px;}
._10{width:11.790536px;}
._6{width:13.129154px;}
._d{width:14.333039px;}
._c{width:15.837894px;}
._a{width:18.046909px;}
._b{width:19.080432px;}
._14{width:21.153158px;}
._11{width:26.065120px;}
._12{width:28.348070px;}
._13{width:31.386175px;}
._3{width:42.732217px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:37.854000px;}
.fs4{font-size:47.820600px;}
.fs0{font-size:50.809200px;}
.fs3{font-size:56.787000px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:77.708400px;}
.y0{bottom:0.000000px;}
.y29{bottom:41.414100px;}
.y72{bottom:41.415811px;}
.y28{bottom:73.133850px;}
.yb2{bottom:73.567984px;}
.y4f{bottom:74.673911px;}
.yef{bottom:80.618916px;}
.y81{bottom:85.048896px;}
.y9a{bottom:85.814101px;}
.y70{bottom:86.740050px;}
.ycd{bottom:87.513077px;}
.y71{bottom:89.121150px;}
.y6f{bottom:89.130462px;}
.yb1{bottom:90.066027px;}
.y4e{bottom:91.086774px;}
.yee{bottom:95.586036px;}
.y80{bottom:101.460339px;}
.y99{bottom:102.225544px;}
.ycc{bottom:103.925940px;}
.y6e{bottom:105.543324px;}
.yb0{bottom:106.477470px;}
.y4d{bottom:107.583397px;}
.yed{bottom:110.468051px;}
.y7f{bottom:117.873202px;}
.y98{bottom:118.638406px;}
.ycb{bottom:120.422563px;}
.y27{bottom:121.951568px;}
.y6d{bottom:121.954767px;}
.yaf{bottom:122.890333px;}
.y4c{bottom:123.996260px;}
.yec{bottom:125.435171px;}
.y7e{bottom:134.371245px;}
.y97{bottom:135.136450px;}
.yca{bottom:136.835426px;}
.y26{bottom:138.363011px;}
.y6c{bottom:138.452810px;}
.yae{bottom:139.388376px;}
.yeb{bottom:140.401021px;}
.y7d{bottom:150.782688px;}
.y96{bottom:151.547893px;}
.yc9{bottom:153.248288px;}
.y25{bottom:154.861054px;}
.y6b{bottom:154.865673px;}
.yea{bottom:155.283036px;}
.yad{bottom:155.799819px;}
.y50{bottom:166.422000px;}
.y7c{bottom:167.195550px;}
.y95{bottom:167.960755px;}
.yc8{bottom:169.659731px;}
.ye9{bottom:170.250156px;}
.y24{bottom:171.273917px;}
.y6a{bottom:171.277116px;}
.yac{bottom:172.212682px;}
.y7b{bottom:183.693594px;}
.y94{bottom:184.373618px;}
.ye8{bottom:185.217276px;}
.yc7{bottom:186.157775px;}
.y23{bottom:187.685360px;}
.y69{bottom:187.775159px;}
.yab{bottom:188.625545px;}
.y7a{bottom:200.105037px;}
.ye7{bottom:200.184396px;}
.y93{bottom:200.870241px;}
.yc6{bottom:202.570637px;}
.y22{bottom:204.183403px;}
.y68{bottom:204.186602px;}
.yaa{bottom:205.122168px;}
.ye6{bottom:215.066411px;}
.y79{bottom:216.517899px;}
.y92{bottom:217.283104px;}
.y21{bottom:220.596266px;}
.y67{bottom:220.599465px;}
.ya9{bottom:221.535031px;}
.ye5{bottom:230.032261px;}
.y78{bottom:233.015942px;}
.y91{bottom:233.695967px;}
.yc5{bottom:235.480123px;}
.y20{bottom:237.007709px;}
.y66{bottom:237.097508px;}
.ya8{bottom:237.947893px;}
.ye4{bottom:244.999381px;}
.y77{bottom:249.427385px;}
.y90{bottom:250.192590px;}
.y1f{bottom:253.505752px;}
.y65{bottom:253.508951px;}
.ya7{bottom:254.444517px;}
.ye3{bottom:259.966501px;}
.y8f{bottom:266.605453px;}
.y64{bottom:269.921814px;}
.ya6{bottom:270.857380px;}
.yd0{bottom:272.212150px;}
.y76{bottom:273.323355px;}
.ye2{bottom:274.848515px;}
.y8e{bottom:283.018316px;}
.y1e{bottom:286.330057px;}
.ycf{bottom:287.178000px;}
.ya5{bottom:287.270242px;}
.ye1{bottom:289.815635px;}
.y63{bottom:294.582988px;}
.y8d{bottom:299.514939px;}
.ya4{bottom:303.766866px;}
.ye0{bottom:304.782756px;}
.y75{bottom:306.914285px;}
.y62{bottom:310.995851px;}
.y8c{bottom:315.927802px;}
.ydf{bottom:319.663500px;}
.ya3{bottom:320.179728px;}
.y61{bottom:327.492474px;}
.y8b{bottom:332.340664px;}
.y1d{bottom:334.121997px;}
.ya2{bottom:336.592591px;}
.y82{bottom:337.690500px;}
.y8a{bottom:348.752107px;}
.y1c{bottom:350.534859px;}
.yde{bottom:351.049142px;}
.y60{bottom:352.153649px;}
.ya1{bottom:353.004034px;}
.y89{bottom:365.250151px;}
.y1b{bottom:366.947722px;}
.y5f{bottom:368.566511px;}
.ya0{bottom:369.502077px;}
.y88{bottom:381.663013px;}
.y1a{bottom:383.444345px;}
.y5e{bottom:384.979374px;}
.y9f{bottom:385.914940px;}
.ydd{bottom:394.418793px;}
.y87{bottom:398.074456px;}
.y19{bottom:399.857208px;}
.y5d{bottom:401.475998px;}
.y9e{bottom:402.326383px;}
.ydc{bottom:410.830236px;}
.y86{bottom:414.572500px;}
.y18{bottom:416.270071px;}
.y5c{bottom:417.888860px;}
.y4b{bottom:418.314763px;}
.y9d{bottom:418.824426px;}
.ydb{bottom:427.328279px;}
.y85{bottom:430.985362px;}
.y17{bottom:432.766694px;}
.y4a{bottom:434.811386px;}
.y5b{bottom:441.784830px;}
.y9c{bottom:442.720396px;}
.yda{bottom:443.741142px;}
.y84{bottom:447.396805px;}
.y16{bottom:449.179557px;}
.y49{bottom:451.224249px;}
.yd9{bottom:460.152585px;}
.y15{bottom:465.591000px;}
.y48{bottom:467.637112px;}
.y83{bottom:471.292775px;}
.yb3{bottom:474.435000px;}
.y5a{bottom:475.885423px;}
.yd8{bottom:476.650628px;}
.y47{bottom:484.048555px;}
.y59{bottom:492.298286px;}
.y46{bottom:500.546598px;}
.yd7{bottom:506.499295px;}
.yc4{bottom:508.453813px;}
.y9b{bottom:512.107500px;}
.y45{bottom:516.959461px;}
.y14{bottom:519.420000px;}
.yc3{bottom:524.866675px;}
.y44{bottom:533.370904px;}
.y13{bottom:535.833000px;}
.yc2{bottom:541.363299px;}
.y43{bottom:549.868947px;}
.yc1{bottom:557.776162px;}
.y12{bottom:565.767000px;}
.y42{bottom:566.281809px;}
.yc0{bottom:574.189024px;}
.y11{bottom:582.180000px;}
.y41{bottom:582.693252px;}
.ybf{bottom:590.685648px;}
.y40{bottom:599.191296px;}
.ybe{bottom:607.098510px;}
.y10{bottom:612.028500px;}
.y3f{bottom:615.604158px;}
.ybd{bottom:623.511373px;}
.yf{bottom:628.525500px;}
.y3e{bottom:632.015601px;}
.ybc{bottom:640.007997px;}
.y3d{bottom:648.513644px;}
.ybb{bottom:656.420859px;}
.ye{bottom:658.374000px;}
.y3c{bottom:664.926507px;}
.yba{bottom:672.833722px;}
.yd6{bottom:673.089638px;}
.yd{bottom:674.872500px;}
.y3b{bottom:681.337950px;}
.yb9{bottom:689.245165px;}
.yd5{bottom:689.587681px;}
.y3a{bottom:697.750813px;}
.yc{bottom:704.721000px;}
.yb8{bottom:705.743208px;}
.y58{bottom:705.999124px;}
.y39{bottom:714.247436px;}
.yb{bottom:721.134000px;}
.yb7{bottom:722.156071px;}
.y57{bottom:722.411987px;}
.y38{bottom:730.660299px;}
.yb6{bottom:738.567514px;}
.y56{bottom:738.908611px;}
.y37{bottom:747.073162px;}
.ya{bottom:751.068000px;}
.yb5{bottom:755.065557px;}
.y55{bottom:755.321473px;}
.y36{bottom:763.569785px;}
.y9{bottom:767.481000px;}
.yb4{bottom:771.477000px;}
.y54{bottom:771.734336px;}
.y35{bottom:779.982648px;}
.y53{bottom:788.230960px;}
.y34{bottom:796.395510px;}
.y8{bottom:797.413500px;}
.yd4{bottom:804.643822px;}
.yce{bottom:805.407000px;}
.y33{bottom:812.892134px;}
.y7{bottom:813.826500px;}
.yd3{bottom:821.056685px;}
.y32{bottom:829.304997px;}
.yd2{bottom:837.553308px;}
.y6{bottom:843.675000px;}
.y31{bottom:845.717859px;}
.yd1{bottom:853.966171px;}
.y5{bottom:860.173500px;}
.y30{bottom:862.214483px;}
.y2f{bottom:878.627345px;}
.y2e{bottom:895.040208px;}
.y52{bottom:903.288520px;}
.y4{bottom:904.989000px;}
.y2d{bottom:911.453071px;}
.y51{bottom:927.184489px;}
.y2c{bottom:927.949694px;}
.y2b{bottom:944.362557px;}
.y74{bottom:958.479000px;}
.y2a{bottom:960.774000px;}
.y73{bottom:967.153500px;}
.y3{bottom:976.338157px;}
.y2{bottom:990.539329px;}
.y1{bottom:1004.740500px;}
.h9{height:34.674264px;}
.h2{height:37.141525px;}
.ha{height:38.541958px;}
.h7{height:43.803670px;}
.h5{height:45.931517px;}
.h8{height:46.541227px;}
.hb{height:51.335448px;}
.h6{height:52.016892px;}
.h4{height:54.754450px;}
.h3{height:71.180894px;}
.h0{height:1045.984500px;}
.h1{height:1046.250000px;}
.w1{width:739.500000px;}
.w0{width:739.842000px;}
.x0{left:0.000000px;}
.x4{left:80.787300px;}
.x7{left:89.291250px;}
.x5{left:94.988309px;}
.x1{left:96.774750px;}
.xa{left:99.579538px;}
.x8{left:103.492259px;}
.x17{left:108.083488px;}
.xd{left:170.079000px;}
.xe{left:175.351500px;}
.xf{left:255.202500px;}
.x10{left:265.833000px;}
.x3{left:284.030786px;}
.x6{left:355.039500px;}
.x11{left:359.631000px;}
.x9{left:363.543000px;}
.x12{left:364.989000px;}
.x2{left:379.103691px;}
.x13{left:473.329500px;}
.x14{left:483.958500px;}
.x15{left:592.044000px;}
.x16{left:597.316500px;}
.xb{left:627.079500px;}
.xc{left:639.496500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-2.762965pt;}
.ls4{letter-spacing:-1.413365pt;}
.ls2{letter-spacing:-1.009547pt;}
.ls5{letter-spacing:-0.908592pt;}
.ls7{letter-spacing:-0.903275pt;}
.ls3{letter-spacing:-0.504773pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.126458pt;}
.ws0{word-spacing:0.000000pt;}
._0{margin-left:-0.989086pt;}
._2{width:1.312407pt;}
._5{width:2.221806pt;}
._f{width:3.172388pt;}
._1{width:4.103004pt;}
._4{width:5.018251pt;}
._e{width:6.006803pt;}
._7{width:6.909543pt;}
._8{width:7.810225pt;}
._9{width:8.867486pt;}
._10{width:10.480476pt;}
._6{width:11.670359pt;}
._d{width:12.740479pt;}
._c{width:14.078128pt;}
._a{width:16.041697pt;}
._b{width:16.960384pt;}
._14{width:18.802807pt;}
._11{width:23.168995pt;}
._12{width:25.198285pt;}
._13{width:27.898822pt;}
._3{width:37.984193pt;}
.fs5{font-size:33.648000pt;}
.fs4{font-size:42.507200pt;}
.fs0{font-size:45.163733pt;}
.fs3{font-size:50.477333pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:69.074133pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:36.812533pt;}
.y72{bottom:36.814054pt;}
.y28{bottom:65.007867pt;}
.yb2{bottom:65.393764pt;}
.y4f{bottom:66.376810pt;}
.yef{bottom:71.661259pt;}
.y81{bottom:75.599019pt;}
.y9a{bottom:76.279201pt;}
.y70{bottom:77.102267pt;}
.ycd{bottom:77.789402pt;}
.y71{bottom:79.218800pt;}
.y6f{bottom:79.227077pt;}
.yb1{bottom:80.058691pt;}
.y4e{bottom:80.966021pt;}
.yee{bottom:84.965366pt;}
.y80{bottom:90.186968pt;}
.y99{bottom:90.867150pt;}
.ycc{bottom:92.378613pt;}
.y6e{bottom:93.816288pt;}
.yb0{bottom:94.646640pt;}
.y4d{bottom:95.629686pt;}
.yed{bottom:98.193823pt;}
.y7f{bottom:104.776179pt;}
.y98{bottom:105.456361pt;}
.ycb{bottom:107.042278pt;}
.y27{bottom:108.401394pt;}
.y6d{bottom:108.404238pt;}
.yaf{bottom:109.235852pt;}
.y4c{bottom:110.218898pt;}
.yec{bottom:111.497930pt;}
.y7e{bottom:119.441106pt;}
.y97{bottom:120.121289pt;}
.yca{bottom:121.631490pt;}
.y26{bottom:122.989343pt;}
.y6c{bottom:123.069165pt;}
.yae{bottom:123.900779pt;}
.yeb{bottom:124.800908pt;}
.y7d{bottom:134.029056pt;}
.y96{bottom:134.709238pt;}
.yc9{bottom:136.220701pt;}
.y25{bottom:137.654270pt;}
.y6b{bottom:137.658376pt;}
.yea{bottom:138.029365pt;}
.yad{bottom:138.488728pt;}
.y50{bottom:147.930667pt;}
.y7c{bottom:148.618267pt;}
.y95{bottom:149.298449pt;}
.yc8{bottom:150.808650pt;}
.ye9{bottom:151.333472pt;}
.y24{bottom:152.243482pt;}
.y6a{bottom:152.246325pt;}
.yac{bottom:153.077939pt;}
.y7b{bottom:163.283194pt;}
.y94{bottom:163.887660pt;}
.ye8{bottom:164.637579pt;}
.yc7{bottom:165.473577pt;}
.y23{bottom:166.831431pt;}
.y69{bottom:166.911253pt;}
.yab{bottom:167.667151pt;}
.y7a{bottom:177.871144pt;}
.ye7{bottom:177.941685pt;}
.y93{bottom:178.551326pt;}
.yc6{bottom:180.062789pt;}
.y22{bottom:181.496358pt;}
.y68{bottom:181.499202pt;}
.yaa{bottom:182.330816pt;}
.ye6{bottom:191.170143pt;}
.y79{bottom:192.460355pt;}
.y92{bottom:193.140537pt;}
.y21{bottom:196.085569pt;}
.y67{bottom:196.088413pt;}
.ya9{bottom:196.920027pt;}
.ye5{bottom:204.473120pt;}
.y78{bottom:207.125282pt;}
.y91{bottom:207.729748pt;}
.yc5{bottom:209.315665pt;}
.y20{bottom:210.673519pt;}
.y66{bottom:210.753341pt;}
.ya8{bottom:211.509239pt;}
.ye4{bottom:217.777227pt;}
.y77{bottom:221.713232pt;}
.y90{bottom:222.393414pt;}
.y1f{bottom:225.338446pt;}
.y65{bottom:225.341290pt;}
.ya7{bottom:226.172904pt;}
.ye3{bottom:231.081334pt;}
.y8f{bottom:236.982625pt;}
.y64{bottom:239.930501pt;}
.ya6{bottom:240.762115pt;}
.yd0{bottom:241.966356pt;}
.y76{bottom:242.954093pt;}
.ye2{bottom:244.309791pt;}
.y8e{bottom:251.571836pt;}
.y1e{bottom:254.515607pt;}
.ycf{bottom:255.269333pt;}
.ya5{bottom:255.351326pt;}
.ye1{bottom:257.613898pt;}
.y63{bottom:261.851545pt;}
.y8d{bottom:266.235501pt;}
.ya4{bottom:270.014992pt;}
.ye0{bottom:270.918005pt;}
.y75{bottom:272.812698pt;}
.y62{bottom:276.440756pt;}
.y8c{bottom:280.824713pt;}
.ydf{bottom:284.145333pt;}
.ya3{bottom:284.604203pt;}
.y61{bottom:291.104422pt;}
.y8b{bottom:295.413924pt;}
.y1d{bottom:296.997330pt;}
.ya2{bottom:299.193414pt;}
.y82{bottom:300.169333pt;}
.y8a{bottom:310.001873pt;}
.y1c{bottom:311.586542pt;}
.yde{bottom:312.043681pt;}
.y60{bottom:313.025466pt;}
.ya1{bottom:313.781364pt;}
.y89{bottom:324.666801pt;}
.y1b{bottom:326.175753pt;}
.y5f{bottom:327.614677pt;}
.ya0{bottom:328.446291pt;}
.y88{bottom:339.256012pt;}
.y1a{bottom:340.839418pt;}
.y5e{bottom:342.203888pt;}
.y9f{bottom:343.035502pt;}
.ydd{bottom:350.594483pt;}
.y87{bottom:353.843961pt;}
.y19{bottom:355.428629pt;}
.y5d{bottom:356.867553pt;}
.y9e{bottom:357.623452pt;}
.ydc{bottom:365.182432pt;}
.y86{bottom:368.508888pt;}
.y18{bottom:370.017841pt;}
.y5c{bottom:371.456765pt;}
.y4b{bottom:371.835345pt;}
.y9d{bottom:372.288379pt;}
.ydb{bottom:379.847359pt;}
.y85{bottom:383.098100pt;}
.y17{bottom:384.681506pt;}
.y4a{bottom:386.499010pt;}
.y5b{bottom:392.697627pt;}
.y9c{bottom:393.529241pt;}
.yda{bottom:394.436571pt;}
.y84{bottom:397.686049pt;}
.y16{bottom:399.270717pt;}
.y49{bottom:401.088221pt;}
.yd9{bottom:409.024520pt;}
.y15{bottom:413.858667pt;}
.y48{bottom:415.677433pt;}
.y83{bottom:418.926911pt;}
.yb3{bottom:421.720000pt;}
.y5a{bottom:423.009265pt;}
.yd8{bottom:423.689447pt;}
.y47{bottom:430.265382pt;}
.y59{bottom:437.598477pt;}
.y46{bottom:444.930309pt;}
.yd7{bottom:450.221596pt;}
.yc4{bottom:451.958945pt;}
.y9b{bottom:455.206667pt;}
.y45{bottom:459.519520pt;}
.y14{bottom:461.706667pt;}
.yc3{bottom:466.548156pt;}
.y44{bottom:474.107470pt;}
.y13{bottom:476.296000pt;}
.yc2{bottom:481.211821pt;}
.y43{bottom:488.772397pt;}
.yc1{bottom:495.801033pt;}
.y12{bottom:502.904000pt;}
.y42{bottom:503.361608pt;}
.yc0{bottom:510.390244pt;}
.y11{bottom:517.493333pt;}
.y41{bottom:517.949558pt;}
.ybf{bottom:525.053909pt;}
.y40{bottom:532.614485pt;}
.ybe{bottom:539.643120pt;}
.y10{bottom:544.025333pt;}
.y3f{bottom:547.203696pt;}
.ybd{bottom:554.232332pt;}
.yf{bottom:558.689333pt;}
.y3e{bottom:561.791646pt;}
.ybc{bottom:568.895997pt;}
.y3d{bottom:576.456573pt;}
.ybb{bottom:583.485208pt;}
.ye{bottom:585.221333pt;}
.y3c{bottom:591.045784pt;}
.yba{bottom:598.074420pt;}
.yd6{bottom:598.301901pt;}
.yd{bottom:599.886667pt;}
.y3b{bottom:605.633733pt;}
.yb9{bottom:612.662369pt;}
.yd5{bottom:612.966828pt;}
.y3a{bottom:620.222945pt;}
.yc{bottom:626.418667pt;}
.yb8{bottom:627.327296pt;}
.y58{bottom:627.554777pt;}
.y39{bottom:634.886610pt;}
.yb{bottom:641.008000pt;}
.yb7{bottom:641.916507pt;}
.y57{bottom:642.143989pt;}
.y38{bottom:649.475821pt;}
.yb6{bottom:656.504457pt;}
.y56{bottom:656.807654pt;}
.y37{bottom:664.065033pt;}
.ya{bottom:667.616000pt;}
.yb5{bottom:671.169384pt;}
.y55{bottom:671.396865pt;}
.y36{bottom:678.728698pt;}
.y9{bottom:682.205333pt;}
.yb4{bottom:685.757333pt;}
.y54{bottom:685.986076pt;}
.y35{bottom:693.317909pt;}
.y53{bottom:700.649742pt;}
.y34{bottom:707.907120pt;}
.y8{bottom:708.812000pt;}
.yd4{bottom:715.238953pt;}
.yce{bottom:715.917333pt;}
.y33{bottom:722.570786pt;}
.y7{bottom:723.401333pt;}
.yd3{bottom:729.828164pt;}
.y32{bottom:737.159997pt;}
.yd2{bottom:744.491830pt;}
.y6{bottom:749.933333pt;}
.y31{bottom:751.749208pt;}
.yd1{bottom:759.081041pt;}
.y5{bottom:764.598667pt;}
.y30{bottom:766.412874pt;}
.y2f{bottom:781.002085pt;}
.y2e{bottom:795.591296pt;}
.y52{bottom:802.923129pt;}
.y4{bottom:804.434667pt;}
.y2d{bottom:810.180507pt;}
.y51{bottom:824.163991pt;}
.y2c{bottom:824.844173pt;}
.y2b{bottom:839.433384pt;}
.y74{bottom:851.981333pt;}
.y2a{bottom:854.021333pt;}
.y73{bottom:859.692000pt;}
.y3{bottom:867.856140pt;}
.y2{bottom:880.479403pt;}
.y1{bottom:893.102667pt;}
.h9{height:30.821568pt;}
.h2{height:33.014689pt;}
.ha{height:34.259518pt;}
.h7{height:38.936595pt;}
.h5{height:40.828015pt;}
.h8{height:41.369980pt;}
.hb{height:45.631509pt;}
.h6{height:46.237237pt;}
.h4{height:48.670622pt;}
.h3{height:63.271906pt;}
.h0{height:929.764000pt;}
.h1{height:930.000000pt;}
.w1{width:657.333333pt;}
.w0{width:657.637333pt;}
.x0{left:0.000000pt;}
.x4{left:71.810933pt;}
.x7{left:79.370000pt;}
.x5{left:84.434052pt;}
.x1{left:86.022000pt;}
.xa{left:88.515145pt;}
.x8{left:91.993119pt;}
.x17{left:96.074212pt;}
.xd{left:151.181333pt;}
.xe{left:155.868000pt;}
.xf{left:226.846667pt;}
.x10{left:236.296000pt;}
.x3{left:252.471810pt;}
.x6{left:315.590667pt;}
.x11{left:319.672000pt;}
.x9{left:323.149333pt;}
.x12{left:324.434667pt;}
.x2{left:336.981059pt;}
.x13{left:420.737333pt;}
.x14{left:430.185333pt;}
.x15{left:526.261333pt;}
.x16{left:530.948000pt;}
.xb{left:557.404000pt;}
.xc{left:568.441333pt;}
}




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