
    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_b71db1d3f39022664464d218.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.731445;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_5509b73014f19458ff2ef675.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_2e922e9168c365524d7b42d9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.933594;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_ad44400a24527b076bf3b18b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.933594;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_4195869c5e0cc280a724a6a2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_1cafe1b67affa6fd8b792e8d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_21686ec1f66786fc41cab18b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893555;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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-0.014400px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000180px;}
.ls0{letter-spacing:0.014400px;}
.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:-18.014400px;}
.ws3{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.985600px;}
.ws2{word-spacing:0.000000px;}
._3{margin-left:-7.194938px;}
._1{margin-left:-5.776605px;}
._2{margin-left:-4.006125px;}
._5{margin-left:-2.541600px;}
._0{margin-left:-1.274400px;}
._4{width:66.024000px;}
.fc1{color:rgb(50,54,58);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.000015px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:38.523195px;}
.yb7{bottom:121.335938px;}
.y8c{bottom:131.777295px;}
.y68{bottom:131.777348px;}
.yf6{bottom:134.367113px;}
.yb6{bottom:152.384813px;}
.y53{bottom:155.742113px;}
.y20{bottom:162.820282px;}
.y8b{bottom:162.826125px;}
.y67{bottom:162.826163px;}
.y76{bottom:162.826245px;}
.yf5{bottom:165.410182px;}
.yb5{bottom:183.427763px;}
.y52{bottom:186.785213px;}
.y8a{bottom:193.869094px;}
.y1f{bottom:193.869112px;}
.y66{bottom:193.869172px;}
.y75{bottom:193.869225px;}
.yff{bottom:193.874963px;}
.yf4{bottom:196.464862px;}
.yb4{bottom:214.470712px;}
.y51{bottom:217.839862px;}
.yfe{bottom:224.906212px;}
.y89{bottom:224.912062px;}
.y65{bottom:224.912141px;}
.y74{bottom:224.912182px;}
.y1e{bottom:224.917912px;}
.yf3{bottom:227.507812px;}
.ye0{bottom:234.246113px;}
.yb3{bottom:245.519482px;}
.y50{bottom:248.888663px;}
.y64{bottom:255.960982px;}
.y1d{bottom:255.961012px;}
.yf2{bottom:258.562463px;}
.y3b{bottom:261.011662px;}
.y44{bottom:264.386662px;}
.ydf{bottom:265.288995px;}
.yb2{bottom:276.574162px;}
.y36{bottom:277.886662px;}
.yd5{bottom:278.138663px;}
.y4f{bottom:279.931613px;}
.y1c{bottom:287.009752px;}
.y2f{bottom:287.009812px;}
.y9a{bottom:287.015644px;}
.y63{bottom:287.015662px;}
.ye7{bottom:288.679613px;}
.yf1{bottom:289.593712px;}
.y3a{bottom:292.060612px;}
.y82{bottom:293.431613px;}
.y43{bottom:295.435612px;}
.yde{bottom:296.343675px;}
.ye5{bottom:306.257812px;}
.y3f{bottom:306.902362px;}
.yab{bottom:307.617113px;}
.yb1{bottom:307.617244px;}
.y35{bottom:308.935500px;}
.yd4{bottom:309.181613px;}
.y4e{bottom:310.974562px;}
.y88{bottom:318.058553px;}
.y1b{bottom:318.058582px;}
.y2e{bottom:318.058612px;}
.ye6{bottom:319.734300px;}
.yf0{bottom:320.648482px;}
.y39{bottom:323.109300px;}
.y81{bottom:324.474562px;}
.y42{bottom:326.484300px;}
.ydd{bottom:327.398355px;}
.ye4{bottom:337.312500px;}
.y3e{bottom:337.951200px;}
.yaa{bottom:338.660183px;}
.yb0{bottom:338.660213px;}
.yd3{bottom:340.224562px;}
.y4d{bottom:342.023438px;}
.y87{bottom:349.101533px;}
.y62{bottom:349.101562px;}
.y1a{bottom:349.107413px;}
.yef{bottom:351.703162px;}
.y80{bottom:355.523512px;}
.ydc{bottom:358.429613px;}
.y41{bottom:369.685613px;}
.ya9{bottom:369.714863px;}
.yd2{bottom:371.273453px;}
.y4c{bottom:373.078095px;}
.yfd{bottom:380.156182px;}
.y19{bottom:380.156213px;}
.y61{bottom:380.156325px;}
.yee{bottom:382.746113px;}
.y7f{bottom:386.578144px;}
.y38{bottom:389.484413px;}
.y40{bottom:400.734300px;}
.ya8{bottom:400.763663px;}
.yd1{bottom:402.328144px;}
.y4b{bottom:404.121053px;}
.y18{bottom:411.199162px;}
.y73{bottom:411.205013px;}
.y60{bottom:411.205144px;}
.yfc{bottom:411.210863px;}
.yed{bottom:413.789062px;}
.yc4{bottom:416.039062px;}
.y7e{bottom:417.621113px;}
.ydb{bottom:420.527363px;}
.y37{bottom:420.527400px;}
.ya7{bottom:431.806594px;}
.yaf{bottom:431.806613px;}
.yd0{bottom:433.371113px;}
.y4a{bottom:435.164033px;}
.yfb{bottom:442.242112px;}
.y99{bottom:442.248022px;}
.y17{bottom:442.248082px;}
.y5f{bottom:442.248112px;}
.y2d{bottom:442.248150px;}
.yec{bottom:444.843713px;}
.yc3{bottom:447.093713px;}
.y7d{bottom:448.664062px;}
.yda{bottom:451.582013px;}
.yc7{bottom:451.810612px;}
.yba{bottom:461.039062px;}
.y34{bottom:461.273362px;}
.ya6{bottom:462.849562px;}
.ycf{bottom:464.414062px;}
.y49{bottom:466.218713px;}
.yca{bottom:469.142513px;}
.y3d{bottom:469.810612px;}
.y98{bottom:473.290991px;}
.y86{bottom:473.291032px;}
.y5e{bottom:473.291062px;}
.y16{bottom:473.296912px;}
.yeb{bottom:475.898362px;}
.yc2{bottom:478.142550px;}
.y7c{bottom:479.718713px;}
.yd9{bottom:482.625000px;}
.yc6{bottom:482.853563px;}
.yb9{bottom:492.093713px;}
.y33{bottom:492.322200px;}
.yd8{bottom:493.435613px;}
.ya5{bottom:493.898362px;}
.yce{bottom:495.468713px;}
.y48{bottom:497.267513px;}
.yc9{bottom:500.185613px;}
.y3c{bottom:500.859300px;}
.y97{bottom:504.339832px;}
.y15{bottom:504.339862px;}
.y95{bottom:504.339900px;}
.y2c{bottom:504.339937px;}
.yea{bottom:506.929613px;}
.y7b{bottom:510.767513px;}
.yc5{bottom:513.902400px;}
.ybd{bottom:519.310612px;}
.yb8{bottom:523.142550px;}
.yd7{bottom:524.478562px;}
.ya4{bottom:524.953095px;}
.yae{bottom:524.953162px;}
.ycd{bottom:526.517513px;}
.y47{bottom:528.310612px;}
.yc8{bottom:531.228450px;}
.y14{bottom:535.388663px;}
.y2b{bottom:535.388722px;}
.y5d{bottom:535.394494px;}
.y72{bottom:535.394513px;}
.ye9{bottom:537.984413px;}
.y7a{bottom:541.810612px;}
.yc1{bottom:547.435613px;}
.ybc{bottom:550.353562px;}
.yd6{bottom:555.527400px;}
.ya3{bottom:555.996053px;}
.yad{bottom:555.996112px;}
.ycc{bottom:557.560612px;}
.y46{bottom:559.353562px;}
.y13{bottom:566.437432px;}
.y5c{bottom:566.437462px;}
.y71{bottom:566.437500px;}
.y94{bottom:566.437537px;}
.y2a{bottom:566.437552px;}
.ye8{bottom:569.027400px;}
.ybe{bottom:572.853450px;}
.y79{bottom:572.853562px;}
.yc0{bottom:578.478562px;}
.ybb{bottom:581.402400px;}
.ya2{bottom:587.039033px;}
.yac{bottom:587.039062px;}
.ycb{bottom:588.603450px;}
.y45{bottom:590.402400px;}
.y5b{bottom:597.480412px;}
.y93{bottom:597.480472px;}
.y85{bottom:597.480532px;}
.y12{bottom:597.486262px;}
.y29{bottom:597.486382px;}
.y78{bottom:603.902400px;}
.ybf{bottom:609.527400px;}
.ya1{bottom:618.093713px;}
.y70{bottom:628.535137px;}
.y92{bottom:628.535175px;}
.y11{bottom:628.535212px;}
.ya0{bottom:649.142513px;}
.y10{bottom:659.578162px;}
.y6f{bottom:659.583945px;}
.y5a{bottom:659.583994px;}
.y77{bottom:659.584012px;}
.y9f{bottom:680.185613px;}
.y28{bottom:690.626925px;}
.yf{bottom:690.626962px;}
.yfa{bottom:690.632812px;}
.y9e{bottom:711.228562px;}
.yf9{bottom:721.664032px;}
.ye3{bottom:721.664062px;}
.y6e{bottom:721.669882px;}
.y59{bottom:721.669913px;}
.y27{bottom:721.675744px;}
.ye{bottom:721.675763px;}
.y9d{bottom:742.277362px;}
.yd{bottom:752.718712px;}
.y91{bottom:752.718802px;}
.y9c{bottom:773.332013px;}
.y26{bottom:783.767513px;}
.yc{bottom:783.767572px;}
.y96{bottom:783.773445px;}
.y90{bottom:783.773494px;}
.y58{bottom:783.773513px;}
.y9b{bottom:804.375000px;}
.y84{bottom:814.816388px;}
.yb{bottom:814.816402px;}
.yf8{bottom:814.816444px;}
.y25{bottom:814.816462px;}
.y83{bottom:845.859322px;}
.y6d{bottom:845.859382px;}
.y57{bottom:845.859413px;}
.y24{bottom:845.865195px;}
.y32{bottom:845.865225px;}
.ya{bottom:845.865232px;}
.y23{bottom:876.914025px;}
.y31{bottom:876.914044px;}
.y9{bottom:876.914062px;}
.y22{bottom:907.956983px;}
.y8{bottom:907.957013px;}
.y56{bottom:907.962844px;}
.y6c{bottom:907.962863px;}
.y8f{bottom:907.962945px;}
.ye2{bottom:907.968712px;}
.ye1{bottom:938.999963px;}
.yf7{bottom:939.000052px;}
.y7{bottom:939.005813px;}
.y8e{bottom:939.005925px;}
.y55{bottom:970.048762px;}
.y6b{bottom:970.048822px;}
.y8d{bottom:970.048882px;}
.y6{bottom:970.054612px;}
.y30{bottom:970.054744px;}
.y6a{bottom:1001.097652px;}
.y5{bottom:1001.097712px;}
.y21{bottom:1032.146483px;}
.y4{bottom:1032.146512px;}
.y69{bottom:1032.152344px;}
.y54{bottom:1032.152362px;}
.y3{bottom:1063.195312px;}
.y1{bottom:1080.000000px;}
.h2{height:47.437511px;}
.h3{height:48.796875px;}
.h5{height:49.992188px;}
.h4{height:51.679688px;}
.h6{height:51.679987px;}
.h1{height:108.000000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:108.000000px;}
.x3{left:135.000000px;}
.xe{left:162.000000px;}
.x7{left:459.000000px;}
.xd{left:555.750000px;}
.x11{left:598.500000px;}
.xf{left:599.625000px;}
.xa{left:601.875000px;}
.x15{left:604.125000px;}
.xb{left:615.375000px;}
.x19{left:618.750000px;}
.xc{left:627.750000px;}
.x12{left:630.000000px;}
.x17{left:634.500000px;}
.x1a{left:649.125000px;}
.x16{left:651.375000px;}
.x10{left:657.000000px;}
.x4{left:658.125000px;}
.x9{left:661.500000px;}
.x14{left:681.750000px;}
.x8{left:690.750000px;}
.x18{left:697.500000px;}
.x13{left:700.875000px;}
.x6{left:771.187500px;}
.x1{left:791.660025px;}
.x5{left:814.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.012800pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000160pt;}
.ls0{letter-spacing:0.012800pt;}
.ws0{word-spacing:-16.012800pt;}
.ws3{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.987200pt;}
.ws2{word-spacing:0.000000pt;}
._3{margin-left:-6.395500pt;}
._1{margin-left:-5.134760pt;}
._2{margin-left:-3.561000pt;}
._5{margin-left:-2.259200pt;}
._0{margin-left:-1.132800pt;}
._4{width:58.688000pt;}
.fs0{font-size:58.666680pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:34.242840pt;}
.yb7{bottom:107.854167pt;}
.y8c{bottom:117.135373pt;}
.y68{bottom:117.135420pt;}
.yf6{bottom:119.437433pt;}
.yb6{bottom:135.453167pt;}
.y53{bottom:138.437433pt;}
.y20{bottom:144.729140pt;}
.y8b{bottom:144.734333pt;}
.y67{bottom:144.734367pt;}
.y76{bottom:144.734440pt;}
.yf5{bottom:147.031273pt;}
.yb5{bottom:163.046900pt;}
.y52{bottom:166.031300pt;}
.y8a{bottom:172.328083pt;}
.y1f{bottom:172.328100pt;}
.y66{bottom:172.328153pt;}
.y75{bottom:172.328200pt;}
.yff{bottom:172.333300pt;}
.yf4{bottom:174.635433pt;}
.yb4{bottom:190.640633pt;}
.y51{bottom:193.635433pt;}
.yfe{bottom:199.916633pt;}
.y89{bottom:199.921833pt;}
.y65{bottom:199.921903pt;}
.y74{bottom:199.921940pt;}
.y1e{bottom:199.927033pt;}
.yf3{bottom:202.229167pt;}
.ye0{bottom:208.218767pt;}
.yb3{bottom:218.239540pt;}
.y50{bottom:221.234367pt;}
.y64{bottom:227.520873pt;}
.y1d{bottom:227.520900pt;}
.yf2{bottom:229.833300pt;}
.y3b{bottom:232.010367pt;}
.y44{bottom:235.010367pt;}
.ydf{bottom:235.812440pt;}
.yb2{bottom:245.843700pt;}
.y36{bottom:247.010367pt;}
.yd5{bottom:247.234367pt;}
.y4f{bottom:248.828100pt;}
.y1c{bottom:255.119780pt;}
.y2f{bottom:255.119833pt;}
.y9a{bottom:255.125017pt;}
.y63{bottom:255.125033pt;}
.ye7{bottom:256.604100pt;}
.yf1{bottom:257.416633pt;}
.y3a{bottom:259.609433pt;}
.y82{bottom:260.828100pt;}
.y43{bottom:262.609433pt;}
.yde{bottom:263.416600pt;}
.ye5{bottom:272.229167pt;}
.y3f{bottom:272.802100pt;}
.yab{bottom:273.437433pt;}
.yb1{bottom:273.437550pt;}
.y35{bottom:274.609333pt;}
.yd4{bottom:274.828100pt;}
.y4e{bottom:276.421833pt;}
.y88{bottom:282.718713pt;}
.y1b{bottom:282.718740pt;}
.y2e{bottom:282.718767pt;}
.ye6{bottom:284.208267pt;}
.yf0{bottom:285.020873pt;}
.y39{bottom:287.208267pt;}
.y81{bottom:288.421833pt;}
.y42{bottom:290.208267pt;}
.ydd{bottom:291.020760pt;}
.ye4{bottom:299.833333pt;}
.y3e{bottom:300.401067pt;}
.yaa{bottom:301.031273pt;}
.yb0{bottom:301.031300pt;}
.yd3{bottom:302.421833pt;}
.y4d{bottom:304.020833pt;}
.y87{bottom:310.312473pt;}
.y62{bottom:310.312500pt;}
.y1a{bottom:310.317700pt;}
.yef{bottom:312.625033pt;}
.y80{bottom:316.020900pt;}
.ydc{bottom:318.604100pt;}
.y41{bottom:328.609433pt;}
.ya9{bottom:328.635433pt;}
.yd2{bottom:330.020847pt;}
.y4c{bottom:331.624973pt;}
.yfd{bottom:337.916607pt;}
.y19{bottom:337.916633pt;}
.y61{bottom:337.916733pt;}
.yee{bottom:340.218767pt;}
.y7f{bottom:343.625017pt;}
.y38{bottom:346.208367pt;}
.y40{bottom:356.208267pt;}
.ya8{bottom:356.234367pt;}
.yd1{bottom:357.625017pt;}
.y4b{bottom:359.218713pt;}
.y18{bottom:365.510367pt;}
.y73{bottom:365.515567pt;}
.y60{bottom:365.515683pt;}
.yfc{bottom:365.520767pt;}
.yed{bottom:367.812500pt;}
.yc4{bottom:369.812500pt;}
.y7e{bottom:371.218767pt;}
.ydb{bottom:373.802100pt;}
.y37{bottom:373.802133pt;}
.ya7{bottom:383.828083pt;}
.yaf{bottom:383.828100pt;}
.yd0{bottom:385.218767pt;}
.y4a{bottom:386.812473pt;}
.yfb{bottom:393.104100pt;}
.y99{bottom:393.109353pt;}
.y17{bottom:393.109407pt;}
.y5f{bottom:393.109433pt;}
.y2d{bottom:393.109467pt;}
.yec{bottom:395.416633pt;}
.yc3{bottom:397.416633pt;}
.y7d{bottom:398.812500pt;}
.yda{bottom:401.406233pt;}
.yc7{bottom:401.609433pt;}
.yba{bottom:409.812500pt;}
.y34{bottom:410.020767pt;}
.ya6{bottom:411.421833pt;}
.ycf{bottom:412.812500pt;}
.y49{bottom:414.416633pt;}
.yca{bottom:417.015567pt;}
.y3d{bottom:417.609433pt;}
.y98{bottom:420.703103pt;}
.y86{bottom:420.703140pt;}
.y5e{bottom:420.703167pt;}
.y16{bottom:420.708367pt;}
.yeb{bottom:423.020767pt;}
.yc2{bottom:425.015600pt;}
.y7c{bottom:426.416633pt;}
.yd9{bottom:429.000000pt;}
.yc6{bottom:429.203167pt;}
.yb9{bottom:437.416633pt;}
.y33{bottom:437.619733pt;}
.yd8{bottom:438.609433pt;}
.ya5{bottom:439.020767pt;}
.yce{bottom:440.416633pt;}
.y48{bottom:442.015567pt;}
.yc9{bottom:444.609433pt;}
.y3c{bottom:445.208267pt;}
.y97{bottom:448.302073pt;}
.y15{bottom:448.302100pt;}
.y95{bottom:448.302133pt;}
.y2c{bottom:448.302167pt;}
.yea{bottom:450.604100pt;}
.y7b{bottom:454.015567pt;}
.yc5{bottom:456.802133pt;}
.ybd{bottom:461.609433pt;}
.yb8{bottom:465.015600pt;}
.yd7{bottom:466.203167pt;}
.ya4{bottom:466.624973pt;}
.yae{bottom:466.625033pt;}
.ycd{bottom:468.015567pt;}
.y47{bottom:469.609433pt;}
.yc8{bottom:472.203067pt;}
.y14{bottom:475.901033pt;}
.y2b{bottom:475.901087pt;}
.y5d{bottom:475.906217pt;}
.y72{bottom:475.906233pt;}
.ye9{bottom:478.208367pt;}
.y7a{bottom:481.609433pt;}
.yc1{bottom:486.609433pt;}
.ybc{bottom:489.203167pt;}
.yd6{bottom:493.802133pt;}
.ya3{bottom:494.218713pt;}
.yad{bottom:494.218767pt;}
.ycc{bottom:495.609433pt;}
.y46{bottom:497.203167pt;}
.y13{bottom:503.499940pt;}
.y5c{bottom:503.499967pt;}
.y71{bottom:503.500000pt;}
.y94{bottom:503.500033pt;}
.y2a{bottom:503.500047pt;}
.ye8{bottom:505.802133pt;}
.ybe{bottom:509.203067pt;}
.y79{bottom:509.203167pt;}
.yc0{bottom:514.203167pt;}
.ybb{bottom:516.802133pt;}
.ya2{bottom:521.812473pt;}
.yac{bottom:521.812500pt;}
.ycb{bottom:523.203067pt;}
.y45{bottom:524.802133pt;}
.y5b{bottom:531.093700pt;}
.y93{bottom:531.093753pt;}
.y85{bottom:531.093807pt;}
.y12{bottom:531.098900pt;}
.y29{bottom:531.099007pt;}
.y78{bottom:536.802133pt;}
.ybf{bottom:541.802133pt;}
.ya1{bottom:549.416633pt;}
.y70{bottom:558.697900pt;}
.y92{bottom:558.697933pt;}
.y11{bottom:558.697967pt;}
.ya0{bottom:577.015567pt;}
.y10{bottom:586.291700pt;}
.y6f{bottom:586.296840pt;}
.y5a{bottom:586.296883pt;}
.y77{bottom:586.296900pt;}
.y9f{bottom:604.609433pt;}
.y28{bottom:613.890600pt;}
.yf{bottom:613.890633pt;}
.yfa{bottom:613.895833pt;}
.y9e{bottom:632.203167pt;}
.yf9{bottom:641.479140pt;}
.ye3{bottom:641.479167pt;}
.y6e{bottom:641.484340pt;}
.y59{bottom:641.484367pt;}
.y27{bottom:641.489550pt;}
.ye{bottom:641.489567pt;}
.y9d{bottom:659.802100pt;}
.yd{bottom:669.083300pt;}
.y91{bottom:669.083380pt;}
.y9c{bottom:687.406233pt;}
.y26{bottom:696.682233pt;}
.yc{bottom:696.682287pt;}
.y96{bottom:696.687507pt;}
.y90{bottom:696.687550pt;}
.y58{bottom:696.687567pt;}
.y9b{bottom:715.000000pt;}
.y84{bottom:724.281233pt;}
.yb{bottom:724.281247pt;}
.yf8{bottom:724.281283pt;}
.y25{bottom:724.281300pt;}
.y83{bottom:751.874953pt;}
.y6d{bottom:751.875007pt;}
.y57{bottom:751.875033pt;}
.y24{bottom:751.880173pt;}
.y32{bottom:751.880200pt;}
.ya{bottom:751.880207pt;}
.y23{bottom:779.479133pt;}
.y31{bottom:779.479150pt;}
.y9{bottom:779.479167pt;}
.y22{bottom:807.072873pt;}
.y8{bottom:807.072900pt;}
.y56{bottom:807.078083pt;}
.y6c{bottom:807.078100pt;}
.y8f{bottom:807.078173pt;}
.ye2{bottom:807.083300pt;}
.ye1{bottom:834.666633pt;}
.yf7{bottom:834.666713pt;}
.y7{bottom:834.671833pt;}
.y8e{bottom:834.671933pt;}
.y55{bottom:862.265567pt;}
.y6b{bottom:862.265620pt;}
.y8d{bottom:862.265673pt;}
.y6{bottom:862.270767pt;}
.y30{bottom:862.270883pt;}
.y6a{bottom:889.864580pt;}
.y5{bottom:889.864633pt;}
.y21{bottom:917.463540pt;}
.y4{bottom:917.463567pt;}
.y69{bottom:917.468750pt;}
.y54{bottom:917.468767pt;}
.y3{bottom:945.062500pt;}
.y1{bottom:960.000000pt;}
.h2{height:42.166676pt;}
.h3{height:43.375000pt;}
.h5{height:44.437500pt;}
.h4{height:45.937500pt;}
.h6{height:45.937767pt;}
.h1{height:96.000000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:96.000000pt;}
.x3{left:120.000000pt;}
.xe{left:144.000000pt;}
.x7{left:408.000000pt;}
.xd{left:494.000000pt;}
.x11{left:532.000000pt;}
.xf{left:533.000000pt;}
.xa{left:535.000000pt;}
.x15{left:537.000000pt;}
.xb{left:547.000000pt;}
.x19{left:550.000000pt;}
.xc{left:558.000000pt;}
.x12{left:560.000000pt;}
.x17{left:564.000000pt;}
.x1a{left:577.000000pt;}
.x16{left:579.000000pt;}
.x10{left:584.000000pt;}
.x4{left:585.000000pt;}
.x9{left:588.000000pt;}
.x14{left:606.000000pt;}
.x8{left:614.000000pt;}
.x18{left:620.000000pt;}
.x13{left:623.000000pt;}
.x6{left:685.500000pt;}
.x1{left:703.697800pt;}
.x5{left:724.000000pt;}
}




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