
    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_f82f3d10288f894e1fe74f3f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.079000;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_cc7623256674d5b3c0544471.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.062000;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_4221bcdf095ebfd6dd1ec59c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.123000;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_d653e543083a1d59f18becdc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.062000;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_915c742e9627ad0f0e028c65.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.061000;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_88a56eb049e24d6222b8246c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.075000;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_9e40196f0ed40ccae01e0e7b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.063000;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:ff8;src:url('chunks/assets/font_bc8fda9498ff7dc6d5ff8ee2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.079000;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);}
.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;}
.ls0{letter-spacing:0.000000px;}
.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:-16.492499px;}
.ws5{word-spacing:-14.996249px;}
.ws4{word-spacing:-10.500723px;}
.ws2{word-spacing:-6.993414px;}
.ws3{word-spacing:-4.667118px;}
.ws1{word-spacing:0.000000px;}
._25{margin-left:-1.006022px;}
._1{width:1.085385px;}
._0{width:2.365383px;}
._6{width:3.534835px;}
._1a{width:5.022724px;}
._30{width:6.066706px;}
._4{width:7.392464px;}
._2{width:8.781540px;}
._1f{width:10.217129px;}
._7{width:11.792862px;}
._e{width:13.041050px;}
._9{width:14.126311px;}
._11{width:15.137523px;}
._12{width:17.713171px;}
._8{width:18.799298px;}
._d{width:19.880267px;}
._b{width:21.782304px;}
._5{width:23.054518px;}
._24{width:24.317040px;}
._19{width:25.559491px;}
._39{width:26.611160px;}
._a{width:27.965836px;}
._3{width:29.414739px;}
._2c{width:31.282864px;}
._22{width:33.317666px;}
._3b{width:35.513963px;}
._26{width:36.701174px;}
._2e{width:38.058099px;}
._31{width:39.265580px;}
._3a{width:41.011593px;}
._20{width:42.673636px;}
._28{width:43.772656px;}
._2d{width:45.740141px;}
._1b{width:47.135374px;}
._14{width:49.023954px;}
._10{width:51.058846px;}
._2b{width:52.231786px;}
._2a{width:54.266205px;}
._29{width:55.731829px;}
._18{width:56.819842px;}
._35{width:58.101589px;}
._27{width:60.457551px;}
._32{width:61.503291px;}
._34{width:63.078589px;}
._3c{width:65.893264px;}
._c{width:68.950631px;}
._13{width:70.566050px;}
._1e{width:71.806135px;}
._36{width:73.367244px;}
._40{width:75.418282px;}
._15{width:76.902574px;}
._33{width:78.133718px;}
._2f{width:81.294564px;}
._23{width:87.677792px;}
._1c{width:92.717222px;}
._37{width:94.246259px;}
._f{width:97.617817px;}
._17{width:112.058239px;}
._38{width:116.761672px;}
._41{width:123.279110px;}
._16{width:125.333701px;}
._3d{width:128.300224px;}
._1d{width:179.098923px;}
._3e{width:210.053280px;}
._21{width:245.177672px;}
._3f{width:1125.064882px;}
.fc3{color:transparent;}
.fc2{color:rgb(1,52,44);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,76,62);}
.fs5{font-size:18.668471px;}
.fs4{font-size:27.973655px;}
.fs6{font-size:29.739314px;}
.fs7{font-size:42.002892px;}
.fs8{font-size:48.000646px;}
.fs3{font-size:59.984997px;}
.fs1{font-size:65.969996px;}
.fs2{font-size:71.999997px;}
.fs0{font-size:83.969997px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.yd6{bottom:5.654213px;}
.yd5{bottom:15.567317px;}
.yd1{bottom:21.375020px;}
.yd4{bottom:25.480422px;}
.ycf{bottom:27.271477px;}
.yd3{bottom:35.393527px;}
.y2f{bottom:41.254990px;}
.yd2{bottom:45.306632px;}
.yce{bottom:45.620605px;}
.yd0{bottom:46.493345px;}
.yb9{bottom:55.882798px;}
.yaa{bottom:60.309429px;}
.y3d{bottom:61.913301px;}
.ycd{bottom:62.752248px;}
.y2e{bottom:63.754989px;}
.yb8{bottom:78.382797px;}
.ya9{bottom:82.809429px;}
.y3c{bottom:84.413300px;}
.y2d{bottom:86.254988px;}
.yb7{bottom:100.882796px;}
.ya8{bottom:105.309428px;}
.y3b{bottom:106.913300px;}
.y2c{bottom:108.754987px;}
.yb6{bottom:123.382795px;}
.ya7{bottom:127.809427px;}
.y3a{bottom:129.413299px;}
.y2b{bottom:131.254987px;}
.yd7{bottom:135.591392px;}
.yb5{bottom:145.882794px;}
.ya6{bottom:150.309426px;}
.y39{bottom:151.913298px;}
.y2a{bottom:153.754986px;}
.yb4{bottom:168.382793px;}
.ya5{bottom:172.809425px;}
.y38{bottom:174.413297px;}
.y78{bottom:174.992249px;}
.y29{bottom:176.254985px;}
.yb3{bottom:190.882792px;}
.ya4{bottom:195.309424px;}
.y37{bottom:196.913296px;}
.y77{bottom:197.492248px;}
.yd8{bottom:197.830792px;}
.y28{bottom:198.754984px;}
.yee{bottom:198.805960px;}
.y6c{bottom:205.377705px;}
.yb2{bottom:213.382791px;}
.ya3{bottom:217.809423px;}
.y36{bottom:219.413295px;}
.y76{bottom:219.992247px;}
.y27{bottom:221.254983px;}
.yed{bottom:221.305959px;}
.y6b{bottom:227.877705px;}
.yb1{bottom:235.882790px;}
.ya2{bottom:240.309422px;}
.y35{bottom:241.913294px;}
.y75{bottom:242.492246px;}
.y26{bottom:243.754982px;}
.yec{bottom:243.805958px;}
.y6a{bottom:250.377704px;}
.y11e{bottom:251.870430px;}
.yb0{bottom:258.382789px;}
.ya1{bottom:262.809421px;}
.y34{bottom:264.413293px;}
.y74{bottom:264.992245px;}
.y25{bottom:266.254981px;}
.yeb{bottom:266.305957px;}
.y11d{bottom:267.870646px;}
.y69{bottom:272.877703px;}
.yaf{bottom:280.882788px;}
.y11c{bottom:283.870861px;}
.ya0{bottom:285.309420px;}
.y73{bottom:287.492244px;}
.y24{bottom:288.754980px;}
.yea{bottom:288.805956px;}
.y68{bottom:295.377702px;}
.y33{bottom:298.429872px;}
.y11b{bottom:299.871076px;}
.yae{bottom:303.382787px;}
.y9f{bottom:307.809419px;}
.y72{bottom:309.992243px;}
.y23{bottom:311.254979px;}
.ye9{bottom:311.305955px;}
.y67{bottom:317.877701px;}
.y119{bottom:321.796139px;}
.y32{bottom:323.179871px;}
.yad{bottom:325.882786px;}
.y9e{bottom:330.309418px;}
.y71{bottom:332.492242px;}
.y22{bottom:333.754978px;}
.ye8{bottom:333.805954px;}
.y66{bottom:340.377700px;}
.yac{bottom:348.382785px;}
.y9d{bottom:352.809417px;}
.y70{bottom:354.992241px;}
.y21{bottom:356.254977px;}
.ye7{bottom:356.305953px;}
.y65{bottom:362.877699px;}
.y31{bottom:367.129929px;}
.yab{bottom:370.882785px;}
.y9c{bottom:375.309416px;}
.y6f{bottom:377.492240px;}
.y20{bottom:378.754976px;}
.ye6{bottom:378.805952px;}
.y64{bottom:385.377698px;}
.y30{bottom:387.379928px;}
.y9b{bottom:397.809415px;}
.y6e{bottom:399.992239px;}
.y1f{bottom:401.254975px;}
.y63{bottom:407.877697px;}
.yca{bottom:415.807723px;}
.y11a{bottom:418.113091px;}
.y9a{bottom:420.309414px;}
.y6d{bottom:422.492238px;}
.y118{bottom:422.605890px;}
.y1e{bottom:423.754974px;}
.y62{bottom:430.377696px;}
.yc9{bottom:440.557722px;}
.y99{bottom:442.809414px;}
.y1d{bottom:446.254973px;}
.y61{bottom:452.877695px;}
.y98{bottom:465.309413px;}
.y115{bottom:466.405865px;}
.y7c{bottom:467.417249px;}
.y1c{bottom:468.754972px;}
.y60{bottom:475.377694px;}
.ycc{bottom:484.507672px;}
.y97{bottom:487.809412px;}
.y114{bottom:488.905864px;}
.y1b{bottom:491.254972px;}
.y7b{bottom:492.167247px;}
.y5f{bottom:497.877693px;}
.ycb{bottom:504.757671px;}
.y96{bottom:510.309411px;}
.y113{bottom:511.405863px;}
.y1a{bottom:513.754971px;}
.y5e{bottom:520.377692px;}
.y106{bottom:531.730832px;}
.y95{bottom:532.809410px;}
.y112{bottom:533.905862px;}
.y19{bottom:536.254970px;}
.y55{bottom:537.092294px;}
.y5d{bottom:542.877691px;}
.y105{bottom:554.230831px;}
.y94{bottom:555.309409px;}
.y111{bottom:556.405861px;}
.y18{bottom:558.754969px;}
.y54{bottom:559.592293px;}
.y5c{bottom:565.377690px;}
.y104{bottom:576.730830px;}
.y93{bottom:577.809408px;}
.y110{bottom:578.905860px;}
.y17{bottom:581.254968px;}
.y53{bottom:582.092292px;}
.y5b{bottom:587.877690px;}
.y103{bottom:599.230829px;}
.y92{bottom:600.309407px;}
.y16{bottom:603.754967px;}
.y52{bottom:604.592291px;}
.y5a{bottom:610.377689px;}
.y102{bottom:621.730828px;}
.y91{bottom:622.809406px;}
.y10f{bottom:623.905858px;}
.y15{bottom:626.254966px;}
.y51{bottom:627.092290px;}
.y59{bottom:632.877688px;}
.y10e{bottom:646.405857px;}
.y50{bottom:649.592289px;}
.y58{bottom:655.377687px;}
.y101{bottom:666.730826px;}
.yc8{bottom:667.734405px;}
.y10d{bottom:668.905856px;}
.y14{bottom:671.179936px;}
.y4f{bottom:672.092288px;}
.y57{bottom:677.877686px;}
.y100{bottom:689.230825px;}
.y10c{bottom:691.405855px;}
.yc7{bottom:692.484404px;}
.y4e{bottom:694.592287px;}
.y13{bottom:695.929935px;}
.y56{bottom:700.377685px;}
.yff{bottom:711.730824px;}
.y10b{bottom:713.905854px;}
.y4d{bottom:717.092286px;}
.yfe{bottom:734.230823px;}
.y10a{bottom:736.405853px;}
.y90{bottom:737.409389px;}
.y4c{bottom:739.592285px;}
.y12{bottom:746.119809px;}
.y7e{bottom:746.427670px;}
.yfd{bottom:756.730822px;}
.y109{bottom:758.905852px;}
.y8f{bottom:759.909388px;}
.y4b{bottom:762.092284px;}
.y11{bottom:768.619808px;}
.y7d{bottom:771.177669px;}
.yfc{bottom:779.230822px;}
.y108{bottom:781.405851px;}
.y8e{bottom:782.409387px;}
.y4a{bottom:784.592283px;}
.y10{bottom:791.119807px;}
.yfb{bottom:801.730821px;}
.y107{bottom:803.905851px;}
.y8d{bottom:804.909386px;}
.yf{bottom:813.619806px;}
.y80{bottom:816.252680px;}
.y8c{bottom:827.409386px;}
.y7a{bottom:829.517265px;}
.ye{bottom:836.119805px;}
.y7f{bottom:836.502679px;}
.yfa{bottom:846.730819px;}
.y116{bottom:847.705835px;}
.y8b{bottom:849.909385px;}
.y79{bottom:854.267264px;}
.yd{bottom:858.619804px;}
.yf9{bottom:869.230818px;}
.y8a{bottom:872.409384px;}
.yc{bottom:881.119803px;}
.ye5{bottom:891.108622px;}
.yf8{bottom:891.730817px;}
.y89{bottom:894.909383px;}
.y49{bottom:899.272611px;}
.yb{bottom:903.619802px;}
.ye4{bottom:913.608621px;}
.yf7{bottom:914.230816px;}
.y88{bottom:917.409382px;}
.yc4{bottom:920.559360px;}
.y48{bottom:921.772610px;}
.ya{bottom:926.119801px;}
.ye3{bottom:936.108620px;}
.yf6{bottom:936.730815px;}
.y87{bottom:939.909381px;}
.yc3{bottom:943.059359px;}
.y47{bottom:944.272609px;}
.y9{bottom:948.619800px;}
.ye2{bottom:958.608619px;}
.yf5{bottom:959.230814px;}
.y86{bottom:962.409380px;}
.yc2{bottom:965.559358px;}
.y46{bottom:966.772609px;}
.y8{bottom:971.119799px;}
.ye1{bottom:981.108618px;}
.y85{bottom:984.909379px;}
.yc1{bottom:988.059357px;}
.y45{bottom:989.272608px;}
.y7{bottom:993.619798px;}
.ye0{bottom:1003.608617px;}
.yf4{bottom:1004.230812px;}
.y84{bottom:1007.409378px;}
.yc0{bottom:1010.559356px;}
.y44{bottom:1011.772607px;}
.y6{bottom:1016.119797px;}
.ydf{bottom:1026.108616px;}
.yf3{bottom:1026.730811px;}
.y83{bottom:1029.909377px;}
.ybf{bottom:1033.059355px;}
.y43{bottom:1034.272606px;}
.y5{bottom:1038.619796px;}
.yde{bottom:1048.608615px;}
.yf2{bottom:1049.230810px;}
.y82{bottom:1052.409376px;}
.ybe{bottom:1055.559354px;}
.y42{bottom:1056.772605px;}
.ydd{bottom:1071.108614px;}
.yf1{bottom:1071.730809px;}
.y81{bottom:1074.909375px;}
.ybd{bottom:1078.059353px;}
.y41{bottom:1079.272604px;}
.y4{bottom:1082.073724px;}
.ydc{bottom:1093.608613px;}
.yf0{bottom:1094.230808px;}
.ybc{bottom:1100.559353px;}
.y40{bottom:1101.772603px;}
.ydb{bottom:1116.108612px;}
.yef{bottom:1116.730807px;}
.yc6{bottom:1119.834357px;}
.ybb{bottom:1123.059352px;}
.y3f{bottom:1124.272602px;}
.yda{bottom:1138.608611px;}
.y3{bottom:1139.193817px;}
.yc5{bottom:1144.584356px;}
.yba{bottom:1145.559351px;}
.y3e{bottom:1146.772601px;}
.y117{bottom:1160.133615px;}
.yd9{bottom:1161.108610px;}
.y2{bottom:1168.443815px;}
.hd{height:15.457494px;}
.hc{height:22.770555px;}
.hf{height:24.207802px;}
.h10{height:34.190354px;}
.h11{height:39.072526px;}
.hb{height:48.767803px;}
.h7{height:48.827788px;}
.h9{height:52.486872px;}
.ha{height:53.633607px;}
.he{height:53.639998px;}
.h5{height:53.699577px;}
.h4{height:54.623157px;}
.h8{height:57.723747px;}
.h6{height:59.615998px;}
.h3{height:69.527157px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w2{width:200.519992px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:43.535941px;}
.x1{left:61.553518px;}
.x8{left:119.519995px;}
.x9{left:127.235486px;}
.x2{left:360.698043px;}
.x4{left:469.058798px;}
.xb{left:470.607345px;}
.xc{left:477.061022px;}
.x7{left:496.232558px;}
.x6{left:618.425974px;}
.x5{left:620.329942px;}
.xa{left:730.129375px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-14.659999pt;}
.ws5{word-spacing:-13.329999pt;}
.ws4{word-spacing:-9.333976pt;}
.ws2{word-spacing:-6.216368pt;}
.ws3{word-spacing:-4.148549pt;}
.ws1{word-spacing:0.000000pt;}
._25{margin-left:-0.894241pt;}
._1{width:0.964786pt;}
._0{width:2.102562pt;}
._6{width:3.142075pt;}
._1a{width:4.464643pt;}
._30{width:5.392627pt;}
._4{width:6.571079pt;}
._2{width:7.805814pt;}
._1f{width:9.081892pt;}
._7{width:10.482544pt;}
._e{width:11.592045pt;}
._9{width:12.556720pt;}
._11{width:13.455576pt;}
._12{width:15.745041pt;}
._8{width:16.710488pt;}
._d{width:17.671349pt;}
._b{width:19.362048pt;}
._5{width:20.492905pt;}
._24{width:21.615146pt;}
._19{width:22.719548pt;}
._39{width:23.654365pt;}
._a{width:24.858521pt;}
._3{width:26.146435pt;}
._2c{width:27.806990pt;}
._22{width:29.615703pt;}
._3b{width:31.567967pt;}
._26{width:32.623266pt;}
._2e{width:33.829421pt;}
._31{width:34.902738pt;}
._3a{width:36.454749pt;}
._20{width:37.932120pt;}
._28{width:38.909027pt;}
._2d{width:40.657903pt;}
._1b{width:41.898110pt;}
._14{width:43.576848pt;}
._10{width:45.385641pt;}
._2b{width:46.428254pt;}
._2a{width:48.236627pt;}
._29{width:49.539404pt;}
._18{width:50.506526pt;}
._35{width:51.645857pt;}
._27{width:53.740046pt;}
._32{width:54.669592pt;}
._34{width:56.069857pt;}
._3c{width:58.571790pt;}
._c{width:61.289450pt;}
._13{width:62.725378pt;}
._1e{width:63.827676pt;}
._36{width:65.215328pt;}
._40{width:67.038473pt;}
._15{width:68.357843pt;}
._33{width:69.452194pt;}
._2f{width:72.261835pt;}
._23{width:77.935815pt;}
._1c{width:82.415308pt;}
._37{width:83.774452pt;}
._f{width:86.771392pt;}
._17{width:99.607324pt;}
._38{width:103.788153pt;}
._41{width:109.581431pt;}
._16{width:111.407735pt;}
._3d{width:114.044643pt;}
._1d{width:159.199042pt;}
._3e{width:186.714027pt;}
._21{width:217.935708pt;}
._3f{width:1000.057673pt;}
.fs5{font-size:16.594196pt;}
.fs4{font-size:24.865471pt;}
.fs6{font-size:26.434946pt;}
.fs7{font-size:37.335904pt;}
.fs8{font-size:42.667241pt;}
.fs3{font-size:53.319997pt;}
.fs1{font-size:58.639997pt;}
.fs2{font-size:63.999997pt;}
.fs0{font-size:74.639997pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.yd6{bottom:5.025967pt;}
.yd5{bottom:13.837615pt;}
.yd1{bottom:19.000018pt;}
.yd4{bottom:22.649264pt;}
.ycf{bottom:24.241313pt;}
.yd3{bottom:31.460913pt;}
.y2f{bottom:36.671102pt;}
.yd2{bottom:40.272561pt;}
.yce{bottom:40.551649pt;}
.yd0{bottom:41.327418pt;}
.yb9{bottom:49.673598pt;}
.yaa{bottom:53.608382pt;}
.y3d{bottom:55.034046pt;}
.ycd{bottom:55.779776pt;}
.y2e{bottom:56.671102pt;}
.yb8{bottom:69.673597pt;}
.ya9{bottom:73.608381pt;}
.y3c{bottom:75.034045pt;}
.y2d{bottom:76.671101pt;}
.yb7{bottom:89.673596pt;}
.ya8{bottom:93.608380pt;}
.y3b{bottom:95.034044pt;}
.y2c{bottom:96.671100pt;}
.yb6{bottom:109.673595pt;}
.ya7{bottom:113.608379pt;}
.y3a{bottom:115.034043pt;}
.y2b{bottom:116.671099pt;}
.yd7{bottom:120.525681pt;}
.yb5{bottom:129.673595pt;}
.ya6{bottom:133.608378pt;}
.y39{bottom:135.034042pt;}
.y2a{bottom:136.671098pt;}
.yb4{bottom:149.673594pt;}
.ya5{bottom:153.608378pt;}
.y38{bottom:155.034042pt;}
.y78{bottom:155.548666pt;}
.y29{bottom:156.671097pt;}
.yb3{bottom:169.673593pt;}
.ya4{bottom:173.608377pt;}
.y37{bottom:175.034041pt;}
.y77{bottom:175.548665pt;}
.yd8{bottom:175.849593pt;}
.y28{bottom:176.671097pt;}
.yee{bottom:176.716409pt;}
.y6c{bottom:182.557960pt;}
.yb2{bottom:189.673592pt;}
.ya3{bottom:193.608376pt;}
.y36{bottom:195.034040pt;}
.y76{bottom:195.548664pt;}
.y27{bottom:196.671096pt;}
.yed{bottom:196.716408pt;}
.y6b{bottom:202.557960pt;}
.yb1{bottom:209.673591pt;}
.ya2{bottom:213.608375pt;}
.y35{bottom:215.034039pt;}
.y75{bottom:215.548663pt;}
.y26{bottom:216.671095pt;}
.yec{bottom:216.716407pt;}
.y6a{bottom:222.557959pt;}
.y11e{bottom:223.884827pt;}
.yb0{bottom:229.673590pt;}
.ya1{bottom:233.608374pt;}
.y34{bottom:235.034038pt;}
.y74{bottom:235.548662pt;}
.y25{bottom:236.671094pt;}
.yeb{bottom:236.716406pt;}
.y11d{bottom:238.107240pt;}
.y69{bottom:242.557958pt;}
.yaf{bottom:249.673590pt;}
.y11c{bottom:252.329654pt;}
.ya0{bottom:253.608373pt;}
.y73{bottom:255.548661pt;}
.y24{bottom:256.671093pt;}
.yea{bottom:256.716405pt;}
.y68{bottom:262.557957pt;}
.y33{bottom:265.270997pt;}
.y11b{bottom:266.552068pt;}
.yae{bottom:269.673589pt;}
.y9f{bottom:273.608373pt;}
.y72{bottom:275.548661pt;}
.y23{bottom:276.671092pt;}
.ye9{bottom:276.716404pt;}
.y67{bottom:282.557956pt;}
.y119{bottom:286.041012pt;}
.y32{bottom:287.270996pt;}
.yad{bottom:289.673588pt;}
.y9e{bottom:293.608372pt;}
.y71{bottom:295.548660pt;}
.y22{bottom:296.671092pt;}
.ye8{bottom:296.716404pt;}
.y66{bottom:302.557955pt;}
.yac{bottom:309.673587pt;}
.y9d{bottom:313.608371pt;}
.y70{bottom:315.548659pt;}
.y21{bottom:316.671091pt;}
.ye7{bottom:316.716403pt;}
.y65{bottom:322.557955pt;}
.y31{bottom:326.337714pt;}
.yab{bottom:329.673586pt;}
.y9c{bottom:333.608370pt;}
.y6f{bottom:335.548658pt;}
.y20{bottom:336.671090pt;}
.ye6{bottom:336.716402pt;}
.y64{bottom:342.557954pt;}
.y30{bottom:344.337714pt;}
.y9b{bottom:353.608369pt;}
.y6e{bottom:355.548657pt;}
.y1f{bottom:356.671089pt;}
.y63{bottom:362.557953pt;}
.yca{bottom:369.606865pt;}
.y11a{bottom:371.656081pt;}
.y9a{bottom:373.608368pt;}
.y6d{bottom:375.548656pt;}
.y118{bottom:375.649680pt;}
.y1e{bottom:376.671088pt;}
.y62{bottom:382.557952pt;}
.yc9{bottom:391.606864pt;}
.y99{bottom:393.608368pt;}
.y1d{bottom:396.671087pt;}
.y61{bottom:402.557951pt;}
.y98{bottom:413.608367pt;}
.y115{bottom:414.582991pt;}
.y7c{bottom:415.481999pt;}
.y1c{bottom:416.671087pt;}
.y60{bottom:422.557950pt;}
.ycc{bottom:430.673486pt;}
.y97{bottom:433.608366pt;}
.y114{bottom:434.582990pt;}
.y1b{bottom:436.671086pt;}
.y7b{bottom:437.481998pt;}
.y5f{bottom:442.557950pt;}
.ycb{bottom:448.673485pt;}
.y96{bottom:453.608365pt;}
.y113{bottom:454.582989pt;}
.y1a{bottom:456.671085pt;}
.y5e{bottom:462.557949pt;}
.y106{bottom:472.649628pt;}
.y95{bottom:473.608364pt;}
.y112{bottom:474.582988pt;}
.y19{bottom:476.671084pt;}
.y55{bottom:477.415372pt;}
.y5d{bottom:482.557948pt;}
.y105{bottom:492.649627pt;}
.y94{bottom:493.608363pt;}
.y111{bottom:494.582987pt;}
.y18{bottom:496.671083pt;}
.y54{bottom:497.415371pt;}
.y5c{bottom:502.557947pt;}
.y104{bottom:512.649627pt;}
.y93{bottom:513.608363pt;}
.y110{bottom:514.582987pt;}
.y17{bottom:516.671082pt;}
.y53{bottom:517.415370pt;}
.y5b{bottom:522.557946pt;}
.y103{bottom:532.649626pt;}
.y92{bottom:533.608362pt;}
.y16{bottom:536.671082pt;}
.y52{bottom:537.415370pt;}
.y5a{bottom:542.557945pt;}
.y102{bottom:552.649625pt;}
.y91{bottom:553.608361pt;}
.y10f{bottom:554.582985pt;}
.y15{bottom:556.671081pt;}
.y51{bottom:557.415369pt;}
.y59{bottom:562.557945pt;}
.y10e{bottom:574.582984pt;}
.y50{bottom:577.415368pt;}
.y58{bottom:582.557944pt;}
.y101{bottom:592.649623pt;}
.yc8{bottom:593.541694pt;}
.y10d{bottom:594.582983pt;}
.y14{bottom:596.604388pt;}
.y4f{bottom:597.415367pt;}
.y57{bottom:602.557943pt;}
.y100{bottom:612.649622pt;}
.y10c{bottom:614.582982pt;}
.yc7{bottom:615.541693pt;}
.y4e{bottom:617.415366pt;}
.y13{bottom:618.604387pt;}
.y56{bottom:622.557942pt;}
.yff{bottom:632.649622pt;}
.y10b{bottom:634.582982pt;}
.y4d{bottom:637.415365pt;}
.yfe{bottom:652.649621pt;}
.y10a{bottom:654.582981pt;}
.y90{bottom:655.475013pt;}
.y4c{bottom:657.415365pt;}
.y12{bottom:663.217608pt;}
.y7e{bottom:663.491262pt;}
.yfd{bottom:672.649620pt;}
.y109{bottom:674.582980pt;}
.y8f{bottom:675.475012pt;}
.y4b{bottom:677.415364pt;}
.y11{bottom:683.217607pt;}
.y7d{bottom:685.491261pt;}
.yfc{bottom:692.649619pt;}
.y108{bottom:694.582979pt;}
.y8e{bottom:695.475011pt;}
.y4a{bottom:697.415363pt;}
.y10{bottom:703.217606pt;}
.yfb{bottom:712.649618pt;}
.y107{bottom:714.582978pt;}
.y8d{bottom:715.475010pt;}
.yf{bottom:723.217605pt;}
.y80{bottom:725.557938pt;}
.y8c{bottom:735.475009pt;}
.y7a{bottom:737.348680pt;}
.ye{bottom:743.217604pt;}
.y7f{bottom:743.557937pt;}
.yfa{bottom:752.649617pt;}
.y116{bottom:753.516298pt;}
.y8b{bottom:755.475009pt;}
.y79{bottom:759.348679pt;}
.yd{bottom:763.217603pt;}
.yf9{bottom:772.649616pt;}
.y8a{bottom:775.475008pt;}
.yc{bottom:783.217603pt;}
.ye5{bottom:792.096553pt;}
.yf8{bottom:792.649615pt;}
.y89{bottom:795.475007pt;}
.y49{bottom:799.353432pt;}
.yb{bottom:803.217602pt;}
.ye4{bottom:812.096552pt;}
.yf7{bottom:812.649614pt;}
.y88{bottom:815.475006pt;}
.yc4{bottom:818.274987pt;}
.y48{bottom:819.353431pt;}
.ya{bottom:823.217601pt;}
.ye3{bottom:832.096551pt;}
.yf6{bottom:832.649613pt;}
.y87{bottom:835.475005pt;}
.yc3{bottom:838.274986pt;}
.y47{bottom:839.353431pt;}
.y9{bottom:843.217600pt;}
.ye2{bottom:852.096550pt;}
.yf5{bottom:852.649612pt;}
.y86{bottom:855.475004pt;}
.yc2{bottom:858.274985pt;}
.y46{bottom:859.353430pt;}
.y8{bottom:863.217599pt;}
.ye1{bottom:872.096549pt;}
.y85{bottom:875.475004pt;}
.yc1{bottom:878.274984pt;}
.y45{bottom:879.353429pt;}
.y7{bottom:883.217598pt;}
.ye0{bottom:892.096548pt;}
.yf4{bottom:892.649611pt;}
.y84{bottom:895.475003pt;}
.yc0{bottom:898.274983pt;}
.y44{bottom:899.353428pt;}
.y6{bottom:903.217598pt;}
.ydf{bottom:912.096548pt;}
.yf3{bottom:912.649610pt;}
.y83{bottom:915.475002pt;}
.ybf{bottom:918.274983pt;}
.y43{bottom:919.353427pt;}
.y5{bottom:923.217597pt;}
.yde{bottom:932.096547pt;}
.yf2{bottom:932.649609pt;}
.y82{bottom:935.475001pt;}
.ybe{bottom:938.274982pt;}
.y42{bottom:939.353426pt;}
.ydd{bottom:952.096546pt;}
.yf1{bottom:952.649608pt;}
.y81{bottom:955.475000pt;}
.ybd{bottom:958.274981pt;}
.y41{bottom:959.353426pt;}
.y4{bottom:961.843310pt;}
.ydc{bottom:972.096545pt;}
.yf0{bottom:972.649607pt;}
.ybc{bottom:978.274980pt;}
.y40{bottom:979.353425pt;}
.ydb{bottom:992.096544pt;}
.yef{bottom:992.649607pt;}
.yc6{bottom:995.408317pt;}
.ybb{bottom:998.274979pt;}
.y3f{bottom:999.353424pt;}
.yda{bottom:1012.096543pt;}
.y3{bottom:1012.616726pt;}
.yc5{bottom:1017.408316pt;}
.yba{bottom:1018.274978pt;}
.y3e{bottom:1019.353423pt;}
.y117{bottom:1031.229880pt;}
.yd9{bottom:1032.096543pt;}
.y2{bottom:1038.616725pt;}
.hd{height:13.739994pt;}
.hc{height:20.240493pt;}
.hf{height:21.518046pt;}
.h10{height:30.391426pt;}
.h11{height:34.731134pt;}
.hb{height:43.349158pt;}
.h7{height:43.402478pt;}
.h9{height:46.654998pt;}
.ha{height:47.674317pt;}
.he{height:47.679998pt;}
.h5{height:47.732957pt;}
.h4{height:48.553917pt;}
.h8{height:51.309997pt;}
.h6{height:52.991998pt;}
.h3{height:61.801917pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w2{width:178.239993pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:38.698614pt;}
.x1{left:54.714238pt;}
.x8{left:106.239996pt;}
.x9{left:113.098210pt;}
.x2{left:320.620482pt;}
.x4{left:416.941154pt;}
.xb{left:418.317640pt;}
.xc{left:424.054242pt;}
.x7{left:441.095607pt;}
.x6{left:549.711977pt;}
.x5{left:551.404393pt;}
.xa{left:649.003889pt;}
}




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