
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff4;src:url('chunks/assets/font_cfae5df8ef5d792648f71227.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.050000;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_1cfe73ee35aeebcf448dc727.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.963667;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_51a44987972af9066d71fa41.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.973633;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_4b0bc4fa8bf1bf56a9689702.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.759766;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;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.m1{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,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(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;}
.ls1{letter-spacing:0.063151px;}
.ls2{letter-spacing:1.727151px;}
.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;}
}
.ws1{word-spacing:-18.747558px;}
.ws3{word-spacing:-18.187803px;}
.ws4{word-spacing:-16.872803px;}
.ws2{word-spacing:-0.057857px;}
.ws0{word-spacing:0.000000px;}
._9{margin-left:-2015.586436px;}
._5{margin-left:-1853.255713px;}
._8{margin-left:-1544.951845px;}
._6{margin-left:-149.727931px;}
._a{margin-left:-18.187803px;}
._4{margin-left:-10.265852px;}
._7{margin-left:-5.097216px;}
._1{margin-left:-3.968362px;}
._0{margin-left:-2.380444px;}
._2{margin-left:-1.071309px;}
._3{width:1.071058px;}
._b{width:2.171135px;}
._c{width:33.073063px;}
.fc6{color:rgb(0,157,216);}
.fc5{color:transparent;}
.fc3{color:rgb(55,61,63);}
.fc1{color:rgb(0,49,128);}
.fc7{color:rgb(34,34,34);}
.fc4{color:rgb(238,238,238);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:57.857133px;}
.fsa{font-size:66.122438px;}
.fs7{font-size:69.009420px;}
.fs0{font-size:74.387743px;}
.fs5{font-size:76.677130px;}
.fs2{font-size:79.346930px;}
.fs1{font-size:82.653047px;}
.fs9{font-size:99.142330px;}
.fs8{font-size:111.581614px;}
.fs4{font-size:123.979571px;}
.fs3{font-size:148.775485px;}
.y0{bottom:0.000000px;}
.y2b{bottom:4.282512px;}
.y12{bottom:4.286203px;}
.y55{bottom:4.361613px;}
.y10{bottom:6.198933px;}
.y53{bottom:6.198969px;}
.ye8{bottom:8.265109px;}
.yd7{bottom:8.265304px;}
.yaa{bottom:8.265328px;}
.y8c{bottom:15.497373px;}
.y14{bottom:15.497399px;}
.y45{bottom:15.497594px;}
.yc1{bottom:26.862196px;}
.ye7{bottom:36.160513px;}
.ya9{bottom:36.160731px;}
.y10a{bottom:37.194485px;}
.y8b{bottom:43.392776px;}
.y77{bottom:45.459326px;}
.yc0{bottom:54.757600px;}
.y13{bottom:55.790759px;}
.y44{bottom:61.989933px;}
.ye6{bottom:64.055916px;}
.y8d{bottom:64.410473px;}
.y1{bottom:64.410831px;}
.y15{bottom:64.410853px;}
.y46{bottom:64.411193px;}
.y10b{bottom:64.411877px;}
.yd6{bottom:66.122437px;}
.ye9{bottom:69.575645px;}
.y8a{bottom:71.288180px;}
.y76{bottom:73.354729px;}
.y56{bottom:74.742221px;}
.yc2{bottom:80.941672px;}
.ybf{bottom:82.653003px;}
.yab{bottom:84.041020px;}
.y9c{bottom:86.107528px;}
.y43{bottom:89.885336px;}
.ye5{bottom:91.951320px;}
.y109{bottom:97.117944px;}
.y89{bottom:99.183583px;}
.y75{bottom:101.250133px;}
.ybe{bottom:110.548407px;}
.ye4{bottom:119.846723px;}
.y12b{bottom:125.012361px;}
.y108{bottom:125.013348px;}
.y74{bottom:129.145536px;}
.y42{bottom:136.377676px;}
.ybd{bottom:138.443810px;}
.y88{bottom:145.675923px;}
.ye3{bottom:147.742127px;}
.y12a{bottom:152.907765px;}
.y107{bottom:152.908751px;}
.y73{bottom:157.040940px;}
.y41{bottom:164.273079px;}
.ybc{bottom:166.339214px;}
.y87{bottom:173.571326px;}
.ye2{bottom:175.637530px;}
.y13d{bottom:175.992216px;}
.y129{bottom:180.803168px;}
.y106{bottom:180.804155px;}
.y72{bottom:184.936343px;}
.y40{bottom:192.168483px;}
.ybb{bottom:194.234617px;}
.y86{bottom:201.466730px;}
.ye1{bottom:203.532934px;}
.y13c{bottom:206.632735px;}
.y2c{bottom:206.986995px;}
.y128{bottom:208.698572px;}
.y105{bottom:208.699558px;}
.y71{bottom:212.831747px;}
.y3f{bottom:220.063886px;}
.y85{bottom:229.362133px;}
.y13b{bottom:234.528138px;}
.y127{bottom:236.593975px;}
.y104{bottom:236.594962px;}
.y146{bottom:239.694350px;}
.y9b{bottom:241.760652px;}
.y3e{bottom:247.959290px;}
.y84{bottom:257.257537px;}
.y70{bottom:259.324086px;}
.ye0{bottom:260.356904px;}
.y13a{bottom:262.423542px;}
.y103{bottom:264.490365px;}
.y9a{bottom:269.656055px;}
.y3d{bottom:275.854693px;}
.y145{bottom:281.020874px;}
.y6f{bottom:287.219490px;}
.y139{bottom:290.318945px;}
.y11{bottom:290.520011px;}
.y126{bottom:293.417945px;}
.y99{bottom:297.551459px;}
.y3c{bottom:303.750097px;}
.yf{bottom:306.171057px;}
.y102{bottom:310.982705px;}
.ye{bottom:312.015203px;}
.y6e{bottom:315.114893px;}
.y83{bottom:318.214159px;}
.y138{bottom:318.214349px;}
.y98{bottom:325.446862px;}
.y3b{bottom:331.645500px;}
.ydf{bottom:334.744647px;}
.y101{bottom:338.878108px;}
.yd{bottom:339.910607px;}
.y6d{bottom:343.010297px;}
.y125{bottom:353.341405px;}
.y97{bottom:353.342266px;}
.yde{bottom:357.474235px;}
.y100{bottom:366.773512px;}
.yc{bottom:367.806010px;}
.y6c{bottom:370.905700px;}
.y137{bottom:374.005156px;}
.y124{bottom:381.236808px;}
.y96{bottom:381.237669px;}
.y82{bottom:391.568739px;}
.y3a{bottom:392.602123px;}
.y2a{bottom:393.840006px;}
.yff{bottom:394.668915px;}
.yb{bottom:395.701414px;}
.y54{bottom:399.960006px;}
.y136{bottom:401.900559px;}
.y123{bottom:409.132212px;}
.y95{bottom:409.133073px;}
.y29{bottom:409.487345px;}
.y144{bottom:410.166260px;}
.y28{bottom:415.331469px;}
.y52{bottom:415.686437px;}
.y81{bottom:419.464142px;}
.y51{bottom:421.530391px;}
.yfe{bottom:422.564319px;}
.ya{bottom:423.596817px;}
.y135{bottom:429.795963px;}
.y6b{bottom:431.862323px;}
.y94{bottom:437.028476px;}
.y143{bottom:438.061664px;}
.y27{bottom:443.226872px;}
.y80{bottom:447.359546px;}
.y50{bottom:449.425794px;}
.yfd{bottom:450.459722px;}
.y9{bottom:451.492221px;}
.y122{bottom:455.624551px;}
.y134{bottom:457.691366px;}
.y93{bottom:464.923880px;}
.y39{bottom:465.956702px;}
.y142{bottom:465.957067px;}
.y26{bottom:471.122276px;}
.y7f{bottom:475.254949px;}
.y4f{bottom:477.321198px;}
.y121{bottom:483.519954px;}
.y133{bottom:485.586770px;}
.y78{bottom:485.941655px;}
.y92{bottom:492.819283px;}
.y38{bottom:493.852106px;}
.y141{bottom:493.852471px;}
.y25{bottom:499.017679px;}
.y4e{bottom:505.216601px;}
.y6a{bottom:505.216902px;}
.yfc{bottom:506.250529px;}
.y120{bottom:511.415358px;}
.y8{bottom:512.448843px;}
.y91{bottom:520.714687px;}
.y7e{bottom:521.747288px;}
.y37{bottom:521.747509px;}
.y140{bottom:521.747874px;}
.y24{bottom:526.913083px;}
.y4d{bottom:533.112005px;}
.y69{bottom:533.112306px;}
.ya8{bottom:537.244831px;}
.y11f{bottom:539.310761px;}
.y132{bottom:540.344414px;}
.y90{bottom:548.610090px;}
.y7d{bottom:549.642692px;}
.y36{bottom:549.642913px;}
.y13f{bottom:549.643278px;}
.y23{bottom:554.808486px;}
.y4c{bottom:561.007408px;}
.y68{bottom:561.007709px;}
.ya7{bottom:565.140235px;}
.yfb{bottom:566.173989px;}
.y131{bottom:568.239817px;}
.y7c{bottom:577.538095px;}
.y35{bottom:577.538316px;}
.y22{bottom:582.703890px;}
.y11e{bottom:585.803101px;}
.yd5{bottom:587.869799px;}
.y4b{bottom:588.902812px;}
.y67{bottom:588.903113px;}
.ya6{bottom:593.035638px;}
.yfa{bottom:594.069392px;}
.y130{bottom:596.135221px;}
.y7b{bottom:605.433499px;}
.y34{bottom:605.433720px;}
.y11d{bottom:613.698504px;}
.yd4{bottom:615.765203px;}
.y4a{bottom:616.798216px;}
.y66{bottom:616.798516px;}
.ya5{bottom:620.931042px;}
.y8f{bottom:621.964670px;}
.yf9{bottom:621.964796px;}
.y12f{bottom:624.030624px;}
.y21{bottom:629.196229px;}
.y7a{bottom:633.328902px;}
.y33{bottom:633.329123px;}
.y11c{bottom:641.593908px;}
.yd3{bottom:643.660606px;}
.y49{bottom:644.693619px;}
.y7{bottom:644.693719px;}
.y65{bottom:644.693920px;}
.y8e{bottom:644.694258px;}
.ya4{bottom:648.826445px;}
.yf8{bottom:649.860199px;}
.y12e{bottom:651.926028px;}
.y20{bottom:657.091633px;}
.y32{bottom:661.224527px;}
.y11b{bottom:669.489311px;}
.yd2{bottom:671.556010px;}
.y48{bottom:672.589023px;}
.y64{bottom:672.589323px;}
.y13e{bottom:672.589686px;}
.yf7{bottom:677.755603px;}
.y12d{bottom:679.821431px;}
.y1f{bottom:684.987036px;}
.y79{bottom:694.285525px;}
.ya3{bottom:695.318785px;}
.yba{bottom:696.351881px;}
.y11a{bottom:697.384715px;}
.yd1{bottom:699.451413px;}
.y63{bottom:700.484727px;}
.y6{bottom:704.617179px;}
.yf6{bottom:705.651006px;}
.y1e{bottom:712.882440px;}
.y31{bottom:717.015334px;}
.ya2{bottom:723.214188px;}
.yb9{bottom:724.247284px;}
.y119{bottom:725.280118px;}
.yd0{bottom:727.346817px;}
.yf5{bottom:733.546410px;}
.y1d{bottom:740.777843px;}
.y12c{bottom:740.778054px;}
.y47{bottom:744.910439px;}
.y62{bottom:746.977066px;}
.ya1{bottom:751.109592px;}
.yb8{bottom:752.142688px;}
.y118{bottom:753.175522px;}
.ycf{bottom:755.242220px;}
.yf4{bottom:761.441813px;}
.y30{bottom:771.772978px;}
.y61{bottom:774.872469px;}
.ya0{bottom:779.004995px;}
.yb7{bottom:780.038091px;}
.yce{bottom:783.137624px;}
.y1c{bottom:787.270182px;}
.y117{bottom:799.667861px;}
.y2f{bottom:799.668381px;}
.y60{bottom:802.767873px;}
.y9f{bottom:806.900399px;}
.yb6{bottom:807.933495px;}
.yf3{bottom:807.934152px;}
.ycd{bottom:811.033027px;}
.y1b{bottom:815.165586px;}
.y5{bottom:818.265119px;}
.y116{bottom:827.563264px;}
.y2e{bottom:827.563785px;}
.y5f{bottom:830.663276px;}
.y9e{bottom:834.795802px;}
.yb5{bottom:835.828898px;}
.yf2{bottom:835.829556px;}
.ycc{bottom:838.928431px;}
.y1a{bottom:843.060989px;}
.y115{bottom:855.458668px;}
.y5e{bottom:858.558680px;}
.y9d{bottom:862.691206px;}
.yf1{bottom:863.724959px;}
.ycb{bottom:866.823834px;}
.y19{bottom:870.956393px;}
.yb4{bottom:882.321237px;}
.y114{bottom:883.354071px;}
.y5d{bottom:886.454083px;}
.y2d{bottom:888.520407px;}
.yf0{bottom:891.620363px;}
.y18{bottom:898.851796px;}
.y4{bottom:904.017656px;}
.yb3{bottom:910.216641px;}
.y113{bottom:911.249475px;}
.yca{bottom:913.316174px;}
.y5c{bottom:914.349487px;}
.yef{bottom:919.515766px;}
.y17{bottom:926.747200px;}
.yb2{bottom:938.112044px;}
.y112{bottom:939.144878px;}
.yc9{bottom:941.211577px;}
.y5b{bottom:942.244890px;}
.yee{bottom:947.411170px;}
.y16{bottom:954.642603px;}
.yb1{bottom:966.007448px;}
.y111{bottom:967.040282px;}
.y3{bottom:968.073767px;}
.yc8{bottom:969.106981px;}
.y5a{bottom:970.140294px;}
.yed{bottom:975.306573px;}
.ydd{bottom:985.637395px;}
.yb0{bottom:993.902851px;}
.y110{bottom:994.935685px;}
.y2{bottom:995.969171px;}
.yc7{bottom:997.002384px;}
.y59{bottom:998.035697px;}
.yec{bottom:1003.201977px;}
.ydc{bottom:1013.532799px;}
.yaf{bottom:1021.798255px;}
.yc6{bottom:1024.897788px;}
.y58{bottom:1025.931101px;}
.y10f{bottom:1041.428025px;}
.ydb{bottom:1041.428202px;}
.yae{bottom:1049.693658px;}
.yc5{bottom:1052.793191px;}
.y57{bottom:1053.826504px;}
.yeb{bottom:1060.025947px;}
.y10e{bottom:1069.323428px;}
.yda{bottom:1069.323606px;}
.yad{bottom:1077.589062px;}
.yc4{bottom:1080.688595px;}
.y10d{bottom:1097.218832px;}
.yd9{bottom:1097.219009px;}
.yac{bottom:1105.484465px;}
.yc3{bottom:1108.583998px;}
.yea{bottom:1119.949406px;}
.y10c{bottom:1125.114235px;}
.yd8{bottom:1125.114413px;}
.hf{height:17.713632px;}
.hc{height:17.717324px;}
.h13{height:17.792734px;}
.ha{height:23.762723px;}
.hd{height:43.392850px;}
.he{height:54.964277px;}
.h12{height:56.449706px;}
.hb{height:56.553572px;}
.h8{height:60.849174px;}
.h9{height:62.721892px;}
.h1f{height:62.816316px;}
.h5{height:64.905788px;}
.h3{height:70.668356px;}
.h1b{height:73.365324px;}
.h4{height:78.520395px;}
.h1a{height:82.570394px;}
.h7{height:91.744883px;}
.h6{height:110.093859px;}
.h15{height:723.213942px;}
.h10{height:1002.168426px;}
.h1e{height:1033.163381px;}
.h17{height:1123.048069px;}
.h18{height:1125.114577px;}
.h19{height:1128.213925px;}
.h14{height:1134.413377px;}
.h1c{height:1139.579953px;}
.h1d{height:1144.743720px;}
.h11{height:1144.744404px;}
.h2{height:1144.744656px;}
.h16{height:1144.745124px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:45.719998px;}
.w3{width:630.229474px;}
.w2{width:809.999894px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.xe{left:4.126781px;}
.x7{left:16.530609px;}
.xf{left:39.260198px;}
.x5{left:41.326524px;}
.x1{left:53.724483px;}
.x2{left:64.879414px;}
.x11{left:85.268242px;}
.xc{left:134.311206px;}
.x4{left:168.260296px;}
.x12{left:195.477691px;}
.x1f{left:203.258701px;}
.x1e{left:295.839794px;}
.x19{left:322.524465px;}
.x13{left:381.640766px;}
.x1d{left:404.999932px;}
.x14{left:427.810242px;}
.x1a{left:438.868310px;}
.x8{left:459.386289px;}
.x15{left:467.554734px;}
.x1b{left:478.612803px;}
.x6{left:490.252036px;}
.x9{left:511.335020px;}
.x10{left:526.574176px;}
.x16{left:528.592067px;}
.x3{left:539.537139px;}
.xa{left:551.079513px;}
.xb{left:587.240221px;}
.x17{left:592.018601px;}
.x1c{left:598.605015px;}
.x18{left:630.955935px;}
.xd{left:776.879968px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.056134pt;}
.ls2{letter-spacing:1.535245pt;}
.ws1{word-spacing:-16.664496pt;}
.ws3{word-spacing:-16.166936pt;}
.ws4{word-spacing:-14.998047pt;}
.ws2{word-spacing:-0.051429pt;}
.ws0{word-spacing:0.000000pt;}
._9{margin-left:-1791.632388pt;}
._5{margin-left:-1647.338412pt;}
._8{margin-left:-1373.290529pt;}
._6{margin-left:-133.091494pt;}
._a{margin-left:-16.166936pt;}
._4{margin-left:-9.125202pt;}
._7{margin-left:-4.530859pt;}
._1{margin-left:-3.527433pt;}
._0{margin-left:-2.115950pt;}
._2{margin-left:-0.952274pt;}
._3{width:0.952051pt;}
._b{width:1.929898pt;}
._c{width:29.398278pt;}
.fs6{font-size:51.428563pt;}
.fsa{font-size:58.775500pt;}
.fs7{font-size:61.341707pt;}
.fs0{font-size:66.122438pt;}
.fs5{font-size:68.157449pt;}
.fs2{font-size:70.530604pt;}
.fs1{font-size:73.469375pt;}
.fs9{font-size:88.126516pt;}
.fs8{font-size:99.183657pt;}
.fs4{font-size:110.204063pt;}
.fs3{font-size:132.244876pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:3.806677pt;}
.y12{bottom:3.809958pt;}
.y55{bottom:3.876990pt;}
.y10{bottom:5.510163pt;}
.y53{bottom:5.510195pt;}
.ye8{bottom:7.346764pt;}
.yd7{bottom:7.346937pt;}
.yaa{bottom:7.346958pt;}
.y8c{bottom:13.775443pt;}
.y14{bottom:13.775465pt;}
.y45{bottom:13.775639pt;}
.yc1{bottom:23.877508pt;}
.ye7{bottom:32.142678pt;}
.ya9{bottom:32.142872pt;}
.y10a{bottom:33.061764pt;}
.y8b{bottom:38.571357pt;}
.y77{bottom:40.408290pt;}
.yc0{bottom:48.673422pt;}
.y13{bottom:49.591786pt;}
.y44{bottom:55.102163pt;}
.ye6{bottom:56.938592pt;}
.y8d{bottom:57.253754pt;}
.y1{bottom:57.254072pt;}
.y15{bottom:57.254092pt;}
.y46{bottom:57.254394pt;}
.y10b{bottom:57.255002pt;}
.yd6{bottom:58.775500pt;}
.ye9{bottom:61.845018pt;}
.y8a{bottom:63.367271pt;}
.y76{bottom:65.204204pt;}
.y56{bottom:66.437529pt;}
.yc2{bottom:71.948153pt;}
.ybf{bottom:73.469336pt;}
.yab{bottom:74.703129pt;}
.y9c{bottom:76.540025pt;}
.y43{bottom:79.898077pt;}
.ye5{bottom:81.734507pt;}
.y109{bottom:86.327062pt;}
.y89{bottom:88.163185pt;}
.y75{bottom:90.000118pt;}
.ybe{bottom:98.265250pt;}
.ye4{bottom:106.530421pt;}
.y12b{bottom:111.122099pt;}
.y108{bottom:111.122976pt;}
.y74{bottom:114.796032pt;}
.y42{bottom:121.224601pt;}
.ybd{bottom:123.061165pt;}
.y88{bottom:129.489709pt;}
.ye3{bottom:131.326335pt;}
.y12a{bottom:135.918013pt;}
.y107{bottom:135.918890pt;}
.y73{bottom:139.591947pt;}
.y41{bottom:146.020515pt;}
.ybc{bottom:147.857079pt;}
.y87{bottom:154.285623pt;}
.ye2{bottom:156.122249pt;}
.y13d{bottom:156.437526pt;}
.y129{bottom:160.713927pt;}
.y106{bottom:160.714804pt;}
.y72{bottom:164.387861pt;}
.y40{bottom:170.816429pt;}
.ybb{bottom:172.652993pt;}
.y86{bottom:179.081537pt;}
.ye1{bottom:180.918164pt;}
.y13c{bottom:183.673542pt;}
.y2c{bottom:183.988440pt;}
.y128{bottom:185.509842pt;}
.y105{bottom:185.510719pt;}
.y71{bottom:189.183775pt;}
.y3f{bottom:195.612343pt;}
.y85{bottom:203.877452pt;}
.y13b{bottom:208.469456pt;}
.y127{bottom:210.305756pt;}
.y104{bottom:210.306633pt;}
.y146{bottom:213.061644pt;}
.y9b{bottom:214.898357pt;}
.y3e{bottom:220.408258pt;}
.y84{bottom:228.673366pt;}
.y70{bottom:230.510299pt;}
.ye0{bottom:231.428359pt;}
.y13a{bottom:233.265371pt;}
.y103{bottom:235.102547pt;}
.y9a{bottom:239.694271pt;}
.y3d{bottom:245.204172pt;}
.y145{bottom:249.796332pt;}
.y6f{bottom:255.306213pt;}
.y139{bottom:258.061285pt;}
.y11{bottom:258.240009pt;}
.y126{bottom:260.815951pt;}
.y99{bottom:264.490185pt;}
.y3c{bottom:270.000086pt;}
.yf{bottom:272.152051pt;}
.y102{bottom:276.429071pt;}
.ye{bottom:277.346847pt;}
.y6e{bottom:280.102127pt;}
.y83{bottom:282.857030pt;}
.y138{bottom:282.857199pt;}
.y98{bottom:289.286100pt;}
.y3b{bottom:294.796000pt;}
.ydf{bottom:297.550797pt;}
.y101{bottom:301.224985pt;}
.yd{bottom:302.142762pt;}
.y6d{bottom:304.898041pt;}
.y125{bottom:314.081249pt;}
.y97{bottom:314.082014pt;}
.yde{bottom:317.754875pt;}
.y100{bottom:326.020899pt;}
.yc{bottom:326.938676pt;}
.y6c{bottom:329.693956pt;}
.y137{bottom:332.449027pt;}
.y124{bottom:338.877163pt;}
.y96{bottom:338.877928pt;}
.y82{bottom:348.061101pt;}
.y3a{bottom:348.979665pt;}
.y2a{bottom:350.080006pt;}
.yff{bottom:350.816813pt;}
.yb{bottom:351.734590pt;}
.y54{bottom:355.520005pt;}
.y136{bottom:357.244942pt;}
.y123{bottom:363.673077pt;}
.y95{bottom:363.673842pt;}
.y29{bottom:363.988751pt;}
.y144{bottom:364.592231pt;}
.y28{bottom:369.183528pt;}
.y52{bottom:369.499055pt;}
.y81{bottom:372.857015pt;}
.y51{bottom:374.693681pt;}
.yfe{bottom:375.612728pt;}
.ya{bottom:376.530504pt;}
.y135{bottom:382.040856pt;}
.y6b{bottom:383.877620pt;}
.y94{bottom:388.469757pt;}
.y143{bottom:389.388146pt;}
.y27{bottom:393.979442pt;}
.y80{bottom:397.652930pt;}
.y50{bottom:399.489595pt;}
.yfd{bottom:400.408642pt;}
.y9{bottom:401.326419pt;}
.y122{bottom:404.999601pt;}
.y134{bottom:406.836770pt;}
.y93{bottom:413.265671pt;}
.y39{bottom:414.183735pt;}
.y142{bottom:414.184060pt;}
.y26{bottom:418.775356pt;}
.y7f{bottom:422.448844pt;}
.y4f{bottom:424.285509pt;}
.y121{bottom:429.795515pt;}
.y133{bottom:431.632684pt;}
.y78{bottom:431.948138pt;}
.y92{bottom:438.061585pt;}
.y38{bottom:438.979650pt;}
.y141{bottom:438.979974pt;}
.y25{bottom:443.571271pt;}
.y4e{bottom:449.081424pt;}
.y6a{bottom:449.081691pt;}
.yfc{bottom:450.000470pt;}
.y120{bottom:454.591429pt;}
.y8{bottom:455.510083pt;}
.y91{bottom:462.857499pt;}
.y7e{bottom:463.775367pt;}
.y37{bottom:463.775564pt;}
.y140{bottom:463.775888pt;}
.y24{bottom:468.367185pt;}
.y4d{bottom:473.877338pt;}
.y69{bottom:473.877605pt;}
.ya8{bottom:477.550961pt;}
.y11f{bottom:479.387344pt;}
.y132{bottom:480.306146pt;}
.y90{bottom:487.653413pt;}
.y7d{bottom:488.571282pt;}
.y36{bottom:488.571478pt;}
.y13f{bottom:488.571802pt;}
.y23{bottom:493.163099pt;}
.y4c{bottom:498.673252pt;}
.y68{bottom:498.673519pt;}
.ya7{bottom:502.346875pt;}
.yfb{bottom:503.265768pt;}
.y131{bottom:505.102060pt;}
.y7c{bottom:513.367196pt;}
.y35{bottom:513.367392pt;}
.y22{bottom:517.959013pt;}
.y11e{bottom:520.713867pt;}
.yd5{bottom:522.550933pt;}
.y4b{bottom:523.469166pt;}
.y67{bottom:523.469433pt;}
.ya6{bottom:527.142790pt;}
.yfa{bottom:528.061682pt;}
.y130{bottom:529.897974pt;}
.y7b{bottom:538.163110pt;}
.y34{bottom:538.163307pt;}
.y11d{bottom:545.509781pt;}
.yd4{bottom:547.346847pt;}
.y4a{bottom:548.265080pt;}
.y66{bottom:548.265348pt;}
.ya5{bottom:551.938704pt;}
.y8f{bottom:552.857484pt;}
.yf9{bottom:552.857596pt;}
.y12f{bottom:554.693888pt;}
.y21{bottom:559.285537pt;}
.y7a{bottom:562.959024pt;}
.y33{bottom:562.959221pt;}
.y11c{bottom:570.305696pt;}
.yd3{bottom:572.142761pt;}
.y49{bottom:573.060995pt;}
.y7{bottom:573.061084pt;}
.y65{bottom:573.061262pt;}
.y8e{bottom:573.061562pt;}
.ya4{bottom:576.734618pt;}
.yf8{bottom:577.653510pt;}
.y12e{bottom:579.489803pt;}
.y20{bottom:584.081451pt;}
.y32{bottom:587.755135pt;}
.y11b{bottom:595.101610pt;}
.yd2{bottom:596.938675pt;}
.y48{bottom:597.856909pt;}
.y64{bottom:597.857176pt;}
.y13e{bottom:597.857498pt;}
.yf7{bottom:602.449425pt;}
.y12d{bottom:604.285717pt;}
.y1f{bottom:608.877365pt;}
.y79{bottom:617.142689pt;}
.ya3{bottom:618.061142pt;}
.yba{bottom:618.979449pt;}
.y11a{bottom:619.897524pt;}
.yd1{bottom:621.734590pt;}
.y63{bottom:622.653090pt;}
.y6{bottom:626.326381pt;}
.yf6{bottom:627.245339pt;}
.y1e{bottom:633.673280pt;}
.y31{bottom:637.346963pt;}
.ya2{bottom:642.857056pt;}
.yb9{bottom:643.775364pt;}
.y119{bottom:644.693438pt;}
.yd0{bottom:646.530504pt;}
.yf5{bottom:652.041253pt;}
.y1d{bottom:658.469194pt;}
.y12c{bottom:658.469381pt;}
.y47{bottom:662.142612pt;}
.y62{bottom:663.979614pt;}
.ya1{bottom:667.652970pt;}
.yb8{bottom:668.571278pt;}
.y118{bottom:669.489353pt;}
.ycf{bottom:671.326418pt;}
.yf4{bottom:676.837167pt;}
.y30{bottom:686.020425pt;}
.y61{bottom:688.775528pt;}
.ya0{bottom:692.448884pt;}
.yb7{bottom:693.367192pt;}
.yce{bottom:696.122332pt;}
.y1c{bottom:699.795718pt;}
.y117{bottom:710.815876pt;}
.y2f{bottom:710.816339pt;}
.y60{bottom:713.571443pt;}
.y9f{bottom:717.244799pt;}
.yb6{bottom:718.163106pt;}
.yf3{bottom:718.163691pt;}
.ycd{bottom:720.918247pt;}
.y1b{bottom:724.591632pt;}
.y5{bottom:727.346772pt;}
.y116{bottom:735.611791pt;}
.y2e{bottom:735.612253pt;}
.y5f{bottom:738.367357pt;}
.y9e{bottom:742.040713pt;}
.yb5{bottom:742.959020pt;}
.yf2{bottom:742.959605pt;}
.ycc{bottom:745.714161pt;}
.y1a{bottom:749.387546pt;}
.y115{bottom:760.407705pt;}
.y5e{bottom:763.163271pt;}
.y9d{bottom:766.836627pt;}
.yf1{bottom:767.755519pt;}
.ycb{bottom:770.510075pt;}
.y19{bottom:774.183460pt;}
.yb4{bottom:784.285544pt;}
.y114{bottom:785.203619pt;}
.y5d{bottom:787.959185pt;}
.y2d{bottom:789.795918pt;}
.yf0{bottom:792.551434pt;}
.y18{bottom:798.979375pt;}
.y4{bottom:803.571249pt;}
.yb3{bottom:809.081458pt;}
.y113{bottom:809.999533pt;}
.yca{bottom:811.836599pt;}
.y5c{bottom:812.755100pt;}
.yef{bottom:817.347348pt;}
.y17{bottom:823.775289pt;}
.yb2{bottom:833.877373pt;}
.y112{bottom:834.795448pt;}
.yc9{bottom:836.632513pt;}
.y5b{bottom:837.551014pt;}
.yee{bottom:842.143262pt;}
.y16{bottom:848.571203pt;}
.yb1{bottom:858.673287pt;}
.y111{bottom:859.591362pt;}
.y3{bottom:860.510015pt;}
.yc8{bottom:861.428427pt;}
.y5a{bottom:862.346928pt;}
.yed{bottom:866.939176pt;}
.ydd{bottom:876.122129pt;}
.yb0{bottom:883.469201pt;}
.y110{bottom:884.387276pt;}
.y2{bottom:885.305930pt;}
.yc7{bottom:886.224341pt;}
.y59{bottom:887.142842pt;}
.yec{bottom:891.735091pt;}
.ydc{bottom:900.918043pt;}
.yaf{bottom:908.265115pt;}
.yc6{bottom:911.020256pt;}
.y58{bottom:911.938756pt;}
.y10f{bottom:925.713800pt;}
.ydb{bottom:925.713958pt;}
.yae{bottom:933.061030pt;}
.yc5{bottom:935.816170pt;}
.y57{bottom:936.734671pt;}
.yeb{bottom:942.245286pt;}
.y10e{bottom:950.509714pt;}
.yda{bottom:950.509872pt;}
.yad{bottom:957.856944pt;}
.yc4{bottom:960.612084pt;}
.y10d{bottom:975.305628pt;}
.yd9{bottom:975.305786pt;}
.yac{bottom:982.652858pt;}
.yc3{bottom:985.407998pt;}
.yea{bottom:995.510583pt;}
.y10c{bottom:1000.101542pt;}
.yd8{bottom:1000.101700pt;}
.hf{height:15.745451pt;}
.hc{height:15.748732pt;}
.h13{height:15.815764pt;}
.ha{height:21.122421pt;}
.hd{height:38.571422pt;}
.he{height:48.857135pt;}
.h12{height:50.177516pt;}
.hb{height:50.269842pt;}
.h8{height:54.088154pt;}
.h9{height:55.752793pt;}
.h1f{height:55.836725pt;}
.h5{height:57.694034pt;}
.h3{height:62.816316pt;}
.h1b{height:65.213622pt;}
.h4{height:69.795907pt;}
.h1a{height:73.395906pt;}
.h7{height:81.551007pt;}
.h6{height:97.861208pt;}
.h15{height:642.856837pt;}
.h10{height:890.816379pt;}
.h1e{height:918.367450pt;}
.h17{height:998.264950pt;}
.h18{height:1000.101846pt;}
.h19{height:1002.856822pt;}
.h14{height:1008.367446pt;}
.h1c{height:1012.959958pt;}
.h1d{height:1017.549974pt;}
.h11{height:1017.550582pt;}
.h2{height:1017.550806pt;}
.h16{height:1017.551222pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:40.639998pt;}
.w3{width:560.203977pt;}
.w2{width:719.999906pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.xe{left:3.668250pt;}
.x7{left:14.693875pt;}
.xf{left:34.897953pt;}
.x5{left:36.734688pt;}
.x1{left:47.755096pt;}
.x2{left:57.670590pt;}
.x11{left:75.793992pt;}
.xc{left:119.387739pt;}
.x4{left:149.564707pt;}
.x12{left:173.757948pt;}
.x1f{left:180.674400pt;}
.x1e{left:262.968706pt;}
.x19{left:286.688413pt;}
.x13{left:339.236236pt;}
.x1d{left:359.999940pt;}
.x14{left:380.275770pt;}
.x1a{left:390.105165pt;}
.x8{left:408.343368pt;}
.x15{left:415.604208pt;}
.x1b{left:425.433602pt;}
.x6{left:435.779588pt;}
.x9{left:454.520018pt;}
.x10{left:468.065934pt;}
.x16{left:469.859615pt;}
.x3{left:479.588568pt;}
.xa{left:489.848456pt;}
.xb{left:521.991308pt;}
.x17{left:526.238756pt;}
.x1c{left:532.093347pt;}
.x18{left:560.849720pt;}
.xd{left:690.559971pt;}
}




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