
    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_7d0e5d1d9e1ea59b9c4b5080.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_1e22cb398a931544bdec91a9.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_7969670900bb6cd3c8d310b0.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_05d9e8537942c4e759d17982.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c0a31ec423494397852cf415.woff2')format("woff");}.ff5{font-family:ff5;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;}
.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);}
.m2{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);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.182640px;}
.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;}
}
.ws2{word-spacing:-17.999993px;}
.ws0{word-spacing:-14.939994px;}
.ws1{word-spacing:0.000000px;}
._f{margin-left:-10.374006px;}
._16{margin-left:-9.366574px;}
._b{margin-left:-2.271141px;}
._3{margin-left:-1.104278px;}
._0{width:1.028705px;}
._7{width:2.865121px;}
._1{width:4.308345px;}
._11{width:5.324445px;}
._a{width:6.331877px;}
._5{width:7.527794px;}
._6{width:8.580510px;}
._8{width:10.547708px;}
._9{width:11.839791px;}
._10{width:12.886182px;}
._c{width:13.961886px;}
._4{width:15.266048px;}
._2{width:16.711475px;}
._1c{width:17.938561px;}
._d{width:19.249365px;}
._e{width:20.413346px;}
._14{width:21.442669px;}
._15{width:22.995740px;}
._12{width:24.048125px;}
._13{width:25.345812px;}
._17{width:28.055317px;}
._18{width:29.126537px;}
._19{width:35.095287px;}
._1a{width:41.044019px;}
._1b{width:42.167848px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.879984px;}
.fs5{font-size:41.759983px;}
.fs1{font-size:48.239981px;}
.fs4{font-size:59.759976px;}
.fs2{font-size:66.239974px;}
.fs0{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y5d{bottom:110.099956px;}
.y2c{bottom:110.100256px;}
.ya2{bottom:110.459956px;}
.ybd{bottom:110.460256px;}
.ybc{bottom:115.680254px;}
.y5c{bottom:127.379949px;}
.y2b{bottom:127.380249px;}
.ybb{bottom:129.360248px;}
.y5b{bottom:144.659942px;}
.y2a{bottom:145.020242px;}
.y7e{bottom:145.560242px;}
.y29{bottom:150.239940px;}
.y5a{bottom:161.939935px;}
.y28{bottom:163.919934px;}
.ya1{bottom:164.459934px;}
.y7d{bottom:175.439930px;}
.y59{bottom:179.219928px;}
.ya0{bottom:181.739927px;}
.y27{bottom:184.619926px;}
.yba{bottom:187.679925px;}
.y58{bottom:196.499921px;}
.y9f{bottom:199.019920px;}
.y7c{bottom:199.199920px;}
.y26{bottom:208.379917px;}
.yb9{bottom:211.439915px;}
.y57{bottom:213.599915px;}
.yc7{bottom:213.959914px;}
.y9e{bottom:216.299913px;}
.yc6{bottom:219.179912px;}
.y7b{bottom:222.959911px;}
.y56{bottom:230.879908px;}
.yc5{bottom:231.959907px;}
.y25{bottom:232.319907px;}
.y9d{bottom:233.399907px;}
.yb8{bottom:235.199906px;}
.y7a{bottom:246.899901px;}
.y55{bottom:248.159901px;}
.yc4{bottom:249.599900px;}
.y9c{bottom:250.679900px;}
.yc3{bottom:254.819898px;}
.y24{bottom:256.079898px;}
.yb7{bottom:258.959896px;}
.y54{bottom:265.799894px;}
.y9b{bottom:267.959893px;}
.yc2{bottom:268.499893px;}
.y79{bottom:270.659892px;}
.y53{bottom:271.019892px;}
.y23{bottom:279.839888px;}
.yb6{bottom:282.899887px;}
.y52{bottom:283.799886px;}
.y9a{bottom:285.239886px;}
.y78{bottom:294.419882px;}
.y51{bottom:300.899880px;}
.y99{bottom:303.419879px;}
.y22{bottom:303.599879px;}
.yb5{bottom:306.659877px;}
.y98{bottom:309.359876px;}
.y50{bottom:318.179873px;}
.y97{bottom:322.679871px;}
.yb4{bottom:330.419868px;}
.y4f{bottom:335.459866px;}
.y96{bottom:340.139864px;}
.y77{bottom:342.119863px;}
.y21{bottom:342.479863px;}
.y95{bottom:345.359862px;}
.y4e{bottom:352.739859px;}
.yb3{bottom:354.179858px;}
.y94{bottom:359.039856px;}
.y76{bottom:365.879854px;}
.y20{bottom:366.239854px;}
.y4d{bottom:370.379852px;}
.y4c{bottom:375.599850px;}
.yb2{bottom:378.119849px;}
.y93{bottom:388.559845px;}
.y75{bottom:389.639844px;}
.y1f{bottom:389.999844px;}
.yb1{bottom:401.879839px;}
.y4b{bottom:403.139839px;}
.y92{bottom:412.499835px;}
.y74{bottom:413.399835px;}
.y1e{bottom:413.939834px;}
.y4a{bottom:420.599832px;}
.yb0{bottom:425.639830px;}
.yc1{bottom:437.339825px;}
.y1d{bottom:437.699825px;}
.yaf{bottom:449.399820px;}
.yc0{bottom:461.099816px;}
.y1c{bottom:461.459815px;}
.yda{bottom:466.319813px;}
.y90{bottom:469.379812px;}
.y49{bottom:469.919812px;}
.y73{bottom:473.339811px;}
.y91{bottom:476.219810px;}
.ybf{bottom:484.859806px;}
.y1b{bottom:485.219806px;}
.y8f{bottom:490.079804px;}
.y72{bottom:497.099801px;}
.y48{bottom:502.139799px;}
.yd9{bottom:503.759798px;}
.y1a{bottom:509.159796px;}
.y8e{bottom:510.779796px;}
.y47{bottom:519.599792px;}
.y71{bottom:520.859792px;}
.y8d{bottom:531.479787px;}
.y19{bottom:532.919787px;}
.y46{bottom:536.699785px;}
.yd8{bottom:540.659784px;}
.y70{bottom:544.619782px;}
.y8c{bottom:552.179779px;}
.y18{bottom:556.679777px;}
.y6f{bottom:568.559773px;}
.y45{bottom:569.819772px;}
.y8b{bottom:572.879771px;}
.y44{bottom:575.759770px;}
.yd7{bottom:577.379769px;}
.y17{bottom:580.439768px;}
.y43{bottom:589.979764px;}
.y6e{bottom:592.319763px;}
.y8a{bottom:593.579763px;}
.ybe{bottom:599.159760px;}
.y16{bottom:604.199758px;}
.y89{bottom:614.279754px;}
.y6d{bottom:616.079754px;}
.y15{bottom:628.139749px;}
.y88{bottom:634.979746px;}
.y41{bottom:637.139745px;}
.y6c{bottom:639.839744px;}
.y42{bottom:643.979742px;}
.yd6{bottom:651.179740px;}
.y14{bottom:651.899739px;}
.yae{bottom:652.079739px;}
.y87{bottom:655.679738px;}
.y40{bottom:660.899736px;}
.y6b{bottom:663.779734px;}
.yd5{bottom:672.959731px;}
.y13{bottom:675.659730px;}
.yad{bottom:675.839730px;}
.y86{bottom:676.379729px;}
.y3f{bottom:684.659726px;}
.y6a{bottom:687.539725px;}
.y84{bottom:697.079721px;}
.y12{bottom:699.419720px;}
.yac{bottom:699.779720px;}
.y85{bottom:703.919718px;}
.y3e{bottom:708.419717px;}
.yd4{bottom:709.679716px;}
.y69{bottom:711.299715px;}
.y83{bottom:717.599713px;}
.y11{bottom:723.359711px;}
.yab{bottom:723.539711px;}
.yd3{bottom:731.639707px;}
.y82{bottom:738.299705px;}
.y10{bottom:747.119701px;}
.yaa{bottom:747.299701px;}
.yd2{bottom:753.419699px;}
.y81{bottom:758.999696px;}
.y3c{bottom:768.359693px;}
.yf{bottom:770.879692px;}
.y68{bottom:771.059692px;}
.y3d{bottom:775.199690px;}
.y3b{bottom:792.119683px;}
.ye{bottom:794.639682px;}
.y67{bottom:794.819682px;}
.yd1{bottom:812.099675px;}
.y3a{bottom:815.879674px;}
.yd{bottom:818.579673px;}
.y66{bottom:818.759672px;}
.ya8{bottom:830.819668px;}
.yd0{bottom:833.879666px;}
.ya9{bottom:837.659665px;}
.y39{bottom:839.639664px;}
.yc{bottom:842.339663px;}
.y65{bottom:842.519663px;}
.ya7{bottom:854.759658px;}
.ycf{bottom:855.659658px;}
.y38{bottom:863.579655px;}
.y64{bottom:866.279653px;}
.yce{bottom:877.439649px;}
.ya6{bottom:878.519649px;}
.yb{bottom:881.039648px;}
.y37{bottom:887.339645px;}
.y63{bottom:890.039644px;}
.ya5{bottom:902.279639px;}
.ya{bottom:904.979638px;}
.y36{bottom:911.099636px;}
.y62{bottom:913.979634px;}
.ycd{bottom:914.339634px;}
.ya4{bottom:926.039630px;}
.y9{bottom:928.739629px;}
.y35{bottom:934.859626px;}
.ycc{bottom:936.119626px;}
.y61{bottom:937.739625px;}
.ya3{bottom:949.979620px;}
.y8{bottom:952.499619px;}
.ycb{bottom:957.899617px;}
.y60{bottom:961.499615px;}
.y34{bottom:973.739611px;}
.y7{bottom:976.259609px;}
.y5f{bottom:985.259606px;}
.yca{bottom:994.799602px;}
.y33{bottom:997.499601px;}
.y6{bottom:1000.199600px;}
.y5e{bottom:1009.199596px;}
.yc9{bottom:1016.579593px;}
.y32{bottom:1021.259591px;}
.y80{bottom:1032.959587px;}
.y5{bottom:1038.899584px;}
.y31{bottom:1045.199582px;}
.yc8{bottom:1053.659579px;}
.y7f{bottom:1056.719577px;}
.y30{bottom:1068.959572px;}
.y3{bottom:1077.779569px;}
.y4{bottom:1084.619566px;}
.y2e{bottom:1092.719563px;}
.y2f{bottom:1099.559560px;}
.y2{bottom:1101.179560px;}
.y2d{bottom:1116.479553px;}
.y1{bottom:1140.419544px;}
.h5{height:25.913662px;}
.h7{height:27.833192px;}
.ha{height:39.830258px;}
.h4{height:44.149201px;}
.h3{height:47.344903px;}
.h9{height:58.621969px;}
.h6{height:58.651148px;}
.h8{height:65.010911px;}
.h1{height:70.664034px;}
.h2{height:72.562471px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.619949px;}
.x6{left:132.479947px;}
.xd{left:136.619945px;}
.x2{left:137.879948px;}
.xf{left:180.719840px;}
.x17{left:219.419912px;}
.x18{left:226.259909px;}
.x3{left:277.020251px;}
.x10{left:295.199882px;}
.x11{left:301.319879px;}
.x12{left:320.039872px;}
.x13{left:326.159870px;}
.x14{left:335.159866px;}
.x15{left:351.539859px;}
.x16{left:357.659857px;}
.x19{left:396.719841px;}
.x1a{left:403.739839px;}
.x7{left:510.479796px;}
.x8{left:516.599793px;}
.xe{left:532.439787px;}
.x9{left:553.859778px;}
.xa{left:559.979776px;}
.x4{left:605.159758px;}
.x5{left:611.279755px;}
.xb{left:725.939710px;}
.xc{left:734.579706px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.162347pt;}
.ws2{word-spacing:-15.999994pt;}
.ws0{word-spacing:-13.279995pt;}
.ws1{word-spacing:0.000000pt;}
._f{margin-left:-9.221339pt;}
._16{margin-left:-8.325843pt;}
._b{margin-left:-2.018792pt;}
._3{margin-left:-0.981581pt;}
._0{width:0.914404pt;}
._7{width:2.546774pt;}
._1{width:3.829640pt;}
._11{width:4.732840pt;}
._a{width:5.628336pt;}
._5{width:6.691373pt;}
._6{width:7.627120pt;}
._8{width:9.375740pt;}
._9{width:10.524259pt;}
._10{width:11.454384pt;}
._c{width:12.410566pt;}
._4{width:13.569821pt;}
._2{width:14.854645pt;}
._1c{width:15.945388pt;}
._d{width:17.110547pt;}
._e{width:18.145197pt;}
._14{width:19.060150pt;}
._15{width:20.440658pt;}
._12{width:21.376111pt;}
._13{width:22.529610pt;}
._17{width:24.938060pt;}
._18{width:25.890255pt;}
._19{width:31.195810pt;}
._1a{width:36.483573pt;}
._1b{width:37.482532pt;}
.fs3{font-size:34.559986pt;}
.fs5{font-size:37.119985pt;}
.fs1{font-size:42.879983pt;}
.fs4{font-size:53.119979pt;}
.fs2{font-size:58.879976pt;}
.fs0{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:97.866628pt;}
.y2c{bottom:97.866894pt;}
.ya2{bottom:98.186627pt;}
.ybd{bottom:98.186894pt;}
.ybc{bottom:102.826892pt;}
.y5c{bottom:113.226621pt;}
.y2b{bottom:113.226888pt;}
.ybb{bottom:114.986887pt;}
.y5b{bottom:128.586615pt;}
.y2a{bottom:128.906882pt;}
.y7e{bottom:129.386882pt;}
.y29{bottom:133.546613pt;}
.y5a{bottom:143.946609pt;}
.y28{bottom:145.706608pt;}
.ya1{bottom:146.186608pt;}
.y7d{bottom:155.946604pt;}
.y59{bottom:159.306603pt;}
.ya0{bottom:161.546602pt;}
.y27{bottom:164.106601pt;}
.yba{bottom:166.826600pt;}
.y58{bottom:174.666597pt;}
.y9f{bottom:176.906596pt;}
.y7c{bottom:177.066596pt;}
.y26{bottom:185.226593pt;}
.yb9{bottom:187.946591pt;}
.y57{bottom:189.866591pt;}
.yc7{bottom:190.186591pt;}
.y9e{bottom:192.266590pt;}
.yc6{bottom:194.826589pt;}
.y7b{bottom:198.186587pt;}
.y56{bottom:205.226585pt;}
.yc5{bottom:206.186584pt;}
.y25{bottom:206.506584pt;}
.y9d{bottom:207.466584pt;}
.yb8{bottom:209.066583pt;}
.y7a{bottom:219.466579pt;}
.y55{bottom:220.586578pt;}
.yc4{bottom:221.866578pt;}
.y9c{bottom:222.826578pt;}
.yc3{bottom:226.506576pt;}
.y24{bottom:227.626576pt;}
.yb7{bottom:230.186575pt;}
.y54{bottom:236.266572pt;}
.y9b{bottom:238.186571pt;}
.yc2{bottom:238.666571pt;}
.y79{bottom:240.586570pt;}
.y53{bottom:240.906570pt;}
.y23{bottom:248.746567pt;}
.yb6{bottom:251.466566pt;}
.y52{bottom:252.266566pt;}
.y9a{bottom:253.546565pt;}
.y78{bottom:261.706562pt;}
.y51{bottom:267.466560pt;}
.y99{bottom:269.706559pt;}
.y22{bottom:269.866559pt;}
.yb5{bottom:272.586558pt;}
.y98{bottom:274.986557pt;}
.y50{bottom:282.826554pt;}
.y97{bottom:286.826552pt;}
.yb4{bottom:293.706549pt;}
.y4f{bottom:298.186547pt;}
.y96{bottom:302.346546pt;}
.y77{bottom:304.106545pt;}
.y21{bottom:304.426545pt;}
.y95{bottom:306.986544pt;}
.y4e{bottom:313.546541pt;}
.yb3{bottom:314.826541pt;}
.y94{bottom:319.146539pt;}
.y76{bottom:325.226537pt;}
.y20{bottom:325.546536pt;}
.y4d{bottom:329.226535pt;}
.y4c{bottom:333.866533pt;}
.yb2{bottom:336.106532pt;}
.y93{bottom:345.386529pt;}
.y75{bottom:346.346528pt;}
.y1f{bottom:346.666528pt;}
.yb1{bottom:357.226524pt;}
.y4b{bottom:358.346523pt;}
.y92{bottom:366.666520pt;}
.y74{bottom:367.466520pt;}
.y1e{bottom:367.946519pt;}
.y4a{bottom:373.866517pt;}
.yb0{bottom:378.346515pt;}
.yc1{bottom:388.746511pt;}
.y1d{bottom:389.066511pt;}
.yaf{bottom:399.466507pt;}
.yc0{bottom:409.866503pt;}
.y1c{bottom:410.186503pt;}
.yda{bottom:414.506501pt;}
.y90{bottom:417.226500pt;}
.y49{bottom:417.706500pt;}
.y73{bottom:420.746498pt;}
.y91{bottom:423.306497pt;}
.ybf{bottom:430.986494pt;}
.y1b{bottom:431.306494pt;}
.y8f{bottom:435.626492pt;}
.y72{bottom:441.866490pt;}
.y48{bottom:446.346488pt;}
.yd9{bottom:447.786488pt;}
.y1a{bottom:452.586486pt;}
.y8e{bottom:454.026485pt;}
.y47{bottom:461.866482pt;}
.y71{bottom:462.986481pt;}
.y8d{bottom:472.426478pt;}
.y19{bottom:473.706477pt;}
.y46{bottom:477.066476pt;}
.yd8{bottom:480.586474pt;}
.y70{bottom:484.106473pt;}
.y8c{bottom:490.826470pt;}
.y18{bottom:494.826469pt;}
.y6f{bottom:505.386465pt;}
.y45{bottom:506.506464pt;}
.y8b{bottom:509.226463pt;}
.y44{bottom:511.786462pt;}
.yd7{bottom:513.226461pt;}
.y17{bottom:515.946460pt;}
.y43{bottom:524.426457pt;}
.y6e{bottom:526.506456pt;}
.y8a{bottom:527.626456pt;}
.ybe{bottom:532.586454pt;}
.y16{bottom:537.066452pt;}
.y89{bottom:546.026448pt;}
.y6d{bottom:547.626448pt;}
.y15{bottom:558.346443pt;}
.y88{bottom:564.426441pt;}
.y41{bottom:566.346440pt;}
.y6c{bottom:568.746439pt;}
.y42{bottom:572.426438pt;}
.yd6{bottom:578.826435pt;}
.y14{bottom:579.466435pt;}
.yae{bottom:579.626435pt;}
.y87{bottom:582.826434pt;}
.y40{bottom:587.466432pt;}
.y6b{bottom:590.026431pt;}
.yd5{bottom:598.186427pt;}
.y13{bottom:600.586426pt;}
.yad{bottom:600.746426pt;}
.y86{bottom:601.226426pt;}
.y3f{bottom:608.586423pt;}
.y6a{bottom:611.146422pt;}
.y84{bottom:619.626419pt;}
.y12{bottom:621.706418pt;}
.yac{bottom:622.026418pt;}
.y85{bottom:625.706416pt;}
.y3e{bottom:629.706415pt;}
.yd4{bottom:630.826414pt;}
.y69{bottom:632.266414pt;}
.y83{bottom:637.866412pt;}
.y11{bottom:642.986409pt;}
.yab{bottom:643.146409pt;}
.yd3{bottom:650.346407pt;}
.y82{bottom:656.266404pt;}
.y10{bottom:664.106401pt;}
.yaa{bottom:664.266401pt;}
.yd2{bottom:669.706399pt;}
.y81{bottom:674.666397pt;}
.y3c{bottom:682.986393pt;}
.yf{bottom:685.226393pt;}
.y68{bottom:685.386393pt;}
.y3d{bottom:689.066391pt;}
.y3b{bottom:704.106385pt;}
.ye{bottom:706.346384pt;}
.y67{bottom:706.506384pt;}
.yd1{bottom:721.866378pt;}
.y3a{bottom:725.226377pt;}
.yd{bottom:727.626376pt;}
.y66{bottom:727.786376pt;}
.ya8{bottom:738.506371pt;}
.yd0{bottom:741.226370pt;}
.ya9{bottom:744.586369pt;}
.y39{bottom:746.346368pt;}
.yc{bottom:748.746367pt;}
.y65{bottom:748.906367pt;}
.ya7{bottom:759.786363pt;}
.ycf{bottom:760.586362pt;}
.y38{bottom:767.626360pt;}
.y64{bottom:770.026359pt;}
.yce{bottom:779.946355pt;}
.ya6{bottom:780.906354pt;}
.yb{bottom:783.146353pt;}
.y37{bottom:788.746351pt;}
.y63{bottom:791.146350pt;}
.ya5{bottom:802.026346pt;}
.ya{bottom:804.426345pt;}
.y36{bottom:809.866343pt;}
.y62{bottom:812.426342pt;}
.ycd{bottom:812.746342pt;}
.ya4{bottom:823.146337pt;}
.y9{bottom:825.546336pt;}
.y35{bottom:830.986334pt;}
.ycc{bottom:832.106334pt;}
.y61{bottom:833.546333pt;}
.ya3{bottom:844.426329pt;}
.y8{bottom:846.666328pt;}
.ycb{bottom:851.466326pt;}
.y60{bottom:854.666325pt;}
.y34{bottom:865.546320pt;}
.y7{bottom:867.786320pt;}
.y5f{bottom:875.786316pt;}
.yca{bottom:884.266313pt;}
.y33{bottom:886.666312pt;}
.y6{bottom:889.066311pt;}
.y5e{bottom:897.066308pt;}
.yc9{bottom:903.626305pt;}
.y32{bottom:907.786304pt;}
.y80{bottom:918.186299pt;}
.y5{bottom:923.466297pt;}
.y31{bottom:929.066295pt;}
.yc8{bottom:936.586292pt;}
.y7f{bottom:939.306291pt;}
.y30{bottom:950.186287pt;}
.y3{bottom:958.026283pt;}
.y4{bottom:964.106281pt;}
.y2e{bottom:971.306278pt;}
.y2f{bottom:977.386276pt;}
.y2{bottom:978.826275pt;}
.y2d{bottom:992.426270pt;}
.y1{bottom:1013.706261pt;}
.h5{height:23.034366pt;}
.h7{height:24.740615pt;}
.ha{height:35.404673pt;}
.h4{height:39.243734pt;}
.h3{height:42.084358pt;}
.h9{height:52.108417pt;}
.h6{height:52.134354pt;}
.h8{height:57.787477pt;}
.h1{height:62.812475pt;}
.h2{height:64.499974pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.439955pt;}
.x6{left:117.759953pt;}
.xd{left:121.439951pt;}
.x2{left:122.559954pt;}
.xf{left:160.639858pt;}
.x17{left:195.039922pt;}
.x18{left:201.119920pt;}
.x3{left:246.240223pt;}
.x10{left:262.399895pt;}
.x11{left:267.839893pt;}
.x12{left:284.479886pt;}
.x13{left:289.919884pt;}
.x14{left:297.919881pt;}
.x15{left:312.479875pt;}
.x16{left:317.919873pt;}
.x19{left:352.639859pt;}
.x1a{left:358.879856pt;}
.x7{left:453.759818pt;}
.x8{left:459.199816pt;}
.xe{left:473.279811pt;}
.x9{left:492.319803pt;}
.xa{left:497.759801pt;}
.x4{left:537.919785pt;}
.x5{left:543.359783pt;}
.xb{left:645.279742pt;}
.xc{left:652.959739pt;}
}




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