
    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_048f45fed1661b8b055fb5a4.woff')format("woff");}.ff1{font-family:ff1;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e2776da96aac2276791851c9.woff')format("woff");}.ff2{font-family:ff2;line-height:1.076191;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_40b2fcdbe6705f97140e0db9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_28cefa08107f4b6895620418.woff')format("woff");}.ff4{font-family:ff4;line-height:0.863281;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_2a17b1ba40f660942b49e524.woff')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_cd44673b83847cdc5de1c7e1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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);}
.v3{vertical-align:-82.792979px;}
.v2{vertical-align:-24.169922px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.321681px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:198.000000px;}
.ls2{letter-spacing:384.526845px;}
.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;}
}
.ws4{word-spacing:-132.000003px;}
.ws5{word-spacing:-108.000000px;}
.ws3{word-spacing:-72.000000px;}
.ws7{word-spacing:-36.000000px;}
.ws6{word-spacing:-18.000000px;}
.ws0{word-spacing:-10.800000px;}
.ws1{word-spacing:-8.138672px;}
.ws2{word-spacing:0.000000px;}
._f{margin-left:-9.105456px;}
._1{margin-left:-6.785169px;}
._b{margin-left:-5.027367px;}
._0{margin-left:-3.332104px;}
._2{margin-left:-1.624322px;}
._4{width:4.499966px;}
._3{width:9.000002px;}
._5{width:13.500002px;}
._a{width:22.500002px;}
._c{width:27.000000px;}
._d{width:30.601429px;}
._7{width:31.949286px;}
._6{width:35.999999px;}
._9{width:53.999999px;}
._8{width:58.500001px;}
._e{width:198.000000px;}
.fc2{color:rgb(17,85,204);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs3{font-size:43.200002px;}
.fs5{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:83.999997px;}
.fs7{font-size:108.000000px;}
.fs6{font-size:132.000003px;}
.y0{bottom:0.000000px;}
.y2{bottom:4.124988px;}
.y62{bottom:15.422059px;}
.y2e{bottom:15.422242px;}
.yc1{bottom:15.422608px;}
.yef{bottom:37.157959px;}
.y61{bottom:37.158326px;}
.y2d{bottom:37.158418px;}
.y2b{bottom:70.444613px;}
.y2a{bottom:109.684936px;}
.y120{bottom:114.235838px;}
.y5f{bottom:115.271123px;}
.ybf{bottom:116.478517px;}
.y93{bottom:116.909908px;}
.yee{bottom:118.979002px;}
.y12c{bottom:125.706293px;}
.y29{bottom:133.481323px;}
.y11f{bottom:134.934083px;}
.y5e{bottom:137.608148px;}
.y92{bottom:137.608150px;}
.ybe{bottom:138.815182px;}
.yed{bottom:139.677247px;}
.y12b{bottom:146.404537px;}
.y11e{bottom:157.271483px;}
.y91{bottom:158.306393px;}
.y5d{bottom:159.944827px;}
.yec{bottom:160.375492px;}
.ybd{bottom:161.151863px;}
.y12a{bottom:167.102783px;}
.y90{bottom:179.004646px;}
.y11d{bottom:179.608148px;}
.yeb{bottom:181.073737px;}
.y5c{bottom:182.281867px;}
.ybc{bottom:183.488887px;}
.y129{bottom:187.801028px;}
.y8f{bottom:199.702888px;}
.y28{bottom:201.233093px;}
.yea{bottom:201.771967px;}
.y11c{bottom:201.944827px;}
.y5b{bottom:202.980100px;}
.ybb{bottom:205.825928px;}
.y128{bottom:208.499272px;}
.y8e{bottom:220.401130px;}
.y5a{bottom:223.678162px;}
.ye9{bottom:224.109367px;}
.y11b{bottom:224.281492px;}
.y127{bottom:229.197502px;}
.y145{bottom:231.045413px;}
.y8d{bottom:241.099373px;}
.y27{bottom:241.569952px;}
.y59{bottom:244.376403px;}
.ye8{bottom:246.446048px;}
.y11a{bottom:246.618157px;}
.yba{bottom:248.860837px;}
.y126{bottom:249.895747px;}
.y8c{bottom:261.797613px;}
.y26{bottom:262.268193px;}
.y144{bottom:262.956293px;}
.y58{bottom:265.074646px;}
.ye7{bottom:268.782712px;}
.y119{bottom:268.955573px;}
.y125{bottom:270.593993px;}
.yb9{bottom:272.803707px;}
.y8b{bottom:282.495856px;}
.y25{bottom:282.966436px;}
.y143{bottom:283.654537px;}
.y57{bottom:285.772888px;}
.ye6{bottom:291.119753px;}
.y118{bottom:291.292238px;}
.y8a{bottom:303.194098px;}
.y24{bottom:303.664678px;}
.y142{bottom:304.352785px;}
.y56{bottom:306.471130px;}
.yb8{bottom:309.144292px;}
.y117{bottom:311.990483px;}
.ye5{bottom:313.456793px;}
.y89{bottom:323.892340px;}
.y23{bottom:324.362920px;}
.y141{bottom:325.051028px;}
.y55{bottom:327.169372px;}
.yb7{bottom:331.481317px;}
.y116{bottom:332.688727px;}
.ye4{bottom:335.793457px;}
.y88{bottom:344.590583px;}
.y22{bottom:345.061163px;}
.y54{bottom:347.867617px;}
.y115{bottom:353.386957px;}
.yb6{bottom:353.818358px;}
.y140{bottom:357.748531px;}
.ye3{bottom:358.130122px;}
.y87{bottom:365.288812px;}
.y21{bottom:365.759393px;}
.y53{bottom:368.565858px;}
.y114{bottom:374.085202px;}
.yb5{bottom:376.155023px;}
.y13f{bottom:378.446773px;}
.ye2{bottom:380.467163px;}
.y86{bottom:385.987053px;}
.y20{bottom:386.457634px;}
.y52{bottom:389.264101px;}
.y113{bottom:394.783448px;}
.yb4{bottom:398.491702px;}
.y13e{bottom:399.145015px;}
.ye1{bottom:402.804202px;}
.y85{bottom:406.685296px;}
.y1f{bottom:407.155877px;}
.y51{bottom:409.962343px;}
.y112{bottom:415.481693px;}
.y13d{bottom:419.843257px;}
.yb3{bottom:420.828742px;}
.ye0{bottom:425.140868px;}
.y84{bottom:427.383538px;}
.y1e{bottom:427.854128px;}
.y50{bottom:430.660585px;}
.y111{bottom:436.179938px;}
.yb2{bottom:443.165768px;}
.ydf{bottom:447.477533px;}
.y83{bottom:448.081780px;}
.y1d{bottom:448.552365px;}
.y4f{bottom:451.358827px;}
.y13c{bottom:452.541502px;}
.y110{bottom:456.878167px;}
.yb1{bottom:465.502448px;}
.y82{bottom:468.780022px;}
.y1c{bottom:469.250603px;}
.yde{bottom:469.814573px;}
.y4e{bottom:472.057068px;}
.y13b{bottom:473.239748px;}
.y10f{bottom:477.576413px;}
.yb0{bottom:487.839473px;}
.y1b{bottom:489.948802px;}
.y81{bottom:491.116702px;}
.ydd{bottom:492.151612px;}
.y4d{bottom:492.755311px;}
.y13a{bottom:493.937995px;}
.y124{bottom:498.274653px;}
.y10e{bottom:498.274657px;}
.yaf{bottom:510.176512px;}
.y1a{bottom:510.647047px;}
.y4c{bottom:513.453553px;}
.y80{bottom:513.453743px;}
.ydc{bottom:514.488277px;}
.y139{bottom:514.636238px;}
.y123{bottom:518.972896px;}
.y10d{bottom:518.972902px;}
.y19{bottom:531.345288px;}
.yae{bottom:532.513178px;}
.y4b{bottom:534.151795px;}
.y7f{bottom:534.151973px;}
.ydb{bottom:536.824958px;}
.y138{bottom:536.973637px;}
.y122{bottom:539.671138px;}
.y10c{bottom:539.671148px;}
.y18{bottom:552.043531px;}
.y4a{bottom:554.850038px;}
.y7e{bottom:554.850218px;}
.yda{bottom:559.161983px;}
.y137{bottom:559.310303px;}
.y10b{bottom:560.369378px;}
.y121{bottom:560.369380px;}
.y17{bottom:572.741773px;}
.y49{bottom:575.548284px;}
.y7d{bottom:575.548463px;}
.yad{bottom:577.186882px;}
.y10a{bottom:581.067622px;}
.yd9{bottom:581.499022px;}
.y136{bottom:581.647703px;}
.y16{bottom:593.440015px;}
.y48{bottom:596.246527px;}
.y7c{bottom:596.246708px;}
.yac{bottom:599.523922px;}
.y109{bottom:601.765868px;}
.yd8{bottom:603.835687px;}
.y135{bottom:603.984372px;}
.y15{bottom:614.138258px;}
.y47{bottom:616.944768px;}
.y7b{bottom:616.944952px;}
.yab{bottom:621.860603px;}
.y108{bottom:622.464112px;}
.yd7{bottom:626.172359px;}
.y134{bottom:626.321775px;}
.y14{bottom:634.836498px;}
.y46{bottom:637.643011px;}
.y7a{bottom:637.643182px;}
.y107{bottom:643.162358px;}
.yaa{bottom:644.197628px;}
.yd6{bottom:648.509392px;}
.y133{bottom:648.657709px;}
.y13{bottom:655.534741px;}
.y45{bottom:658.341253px;}
.y79{bottom:658.341428px;}
.y106{bottom:663.860603px;}
.ya9{bottom:666.534307px;}
.yd5{bottom:670.846443px;}
.y132{bottom:670.995116px;}
.y12{bottom:676.232983px;}
.y44{bottom:679.039495px;}
.y78{bottom:679.039672px;}
.y105{bottom:684.558833px;}
.ya8{bottom:687.232537px;}
.yd4{bottom:693.183104px;}
.y131{bottom:693.331055px;}
.y11{bottom:696.931225px;}
.y43{bottom:699.737737px;}
.y77{bottom:699.737917px;}
.y104{bottom:705.257077px;}
.ya7{bottom:709.569577px;}
.yd3{bottom:715.519777px;}
.y130{bottom:715.668457px;}
.y10{bottom:717.629468px;}
.y42{bottom:720.435968px;}
.y76{bottom:720.436163px;}
.y103{bottom:725.955322px;}
.ya6{bottom:731.906242px;}
.yd2{bottom:737.856809px;}
.y12f{bottom:738.005122px;}
.yf{bottom:738.327712px;}
.y41{bottom:741.134212px;}
.y75{bottom:741.134392px;}
.y102{bottom:746.653568px;}
.ya5{bottom:754.243283px;}
.y12e{bottom:758.703368px;}
.ye{bottom:759.025953px;}
.yd1{bottom:760.193855px;}
.y74{bottom:761.832638px;}
.y40{bottom:763.471072px;}
.y101{bottom:767.351813px;}
.ya4{bottom:776.579963px;}
.y12d{bottom:779.401608px;}
.yd{bottom:779.724196px;}
.yd0{bottom:782.530520px;}
.y73{bottom:782.530882px;}
.y3f{bottom:785.807917px;}
.y100{bottom:788.050043px;}
.ya3{bottom:798.916988px;}
.yc{bottom:800.422438px;}
.ycf{bottom:804.867192px;}
.y72{bottom:804.867548px;}
.y3e{bottom:808.144769px;}
.yff{bottom:808.748288px;}
.yb{bottom:821.120680px;}
.ya2{bottom:821.253668px;}
.yce{bottom:827.204226px;}
.y71{bottom:827.204588px;}
.yfe{bottom:829.446532px;}
.y3d{bottom:830.481622px;}
.ya{bottom:841.818922px;}
.ya1{bottom:843.590693px;}
.y70{bottom:849.541253px;}
.ycd{bottom:849.541267px;}
.yfd{bottom:850.144778px;}
.y3c{bottom:852.818481px;}
.y9{bottom:864.155782px;}
.ya0{bottom:864.288937px;}
.yfc{bottom:870.843023px;}
.ycc{bottom:871.877932px;}
.y6f{bottom:871.878293px;}
.y3b{bottom:875.155333px;}
.y9f{bottom:884.987185px;}
.y8{bottom:886.492628px;}
.yfb{bottom:891.541252px;}
.ycb{bottom:894.214604px;}
.y6e{bottom:894.214973px;}
.y3a{bottom:897.492187px;}
.y9e{bottom:905.685428px;}
.y7{bottom:908.829487px;}
.yfa{bottom:912.239497px;}
.yca{bottom:916.551637px;}
.y6d{bottom:916.551997px;}
.y39{bottom:919.829039px;}
.y9d{bottom:926.383667px;}
.y6{bottom:931.166332px;}
.yf9{bottom:932.937743px;}
.yc9{bottom:938.888668px;}
.y6c{bottom:938.888677px;}
.y38{bottom:942.165892px;}
.y9c{bottom:947.081909px;}
.yf8{bottom:953.635988px;}
.yc8{bottom:961.225336px;}
.y6b{bottom:961.225703px;}
.y37{bottom:964.502747px;}
.y5{bottom:966.425193px;}
.y9b{bottom:967.780151px;}
.yf7{bottom:974.334233px;}
.yc7{bottom:983.562000px;}
.y6a{bottom:983.562383px;}
.y36{bottom:986.839599px;}
.y9a{bottom:988.478394px;}
.y4{bottom:992.484879px;}
.yf6{bottom:995.032470px;}
.yc6{bottom:1005.899051px;}
.y69{bottom:1005.899414px;}
.y35{bottom:1009.176453px;}
.y99{bottom:1009.176636px;}
.yf5{bottom:1015.730714px;}
.y3{bottom:1018.544540px;}
.y68{bottom:1028.236085px;}
.y98{bottom:1031.513299px;}
.y34{bottom:1031.513305px;}
.yf4{bottom:1036.428956px;}
.y1{bottom:1038.150009px;}
.yc5{bottom:1050.572748px;}
.y67{bottom:1050.573120px;}
.y33{bottom:1053.850159px;}
.y97{bottom:1053.850342px;}
.yf3{bottom:1057.127197px;}
.yc4{bottom:1072.909425px;}
.y66{bottom:1072.909789px;}
.y32{bottom:1076.187011px;}
.y96{bottom:1076.187014px;}
.yf2{bottom:1077.825439px;}
.yc3{bottom:1095.246463px;}
.y65{bottom:1095.246826px;}
.yf1{bottom:1098.523682px;}
.y31{bottom:1098.523864px;}
.y95{bottom:1098.524048px;}
.y64{bottom:1117.583496px;}
.yf0{bottom:1119.221924px;}
.y30{bottom:1119.222106px;}
.y94{bottom:1119.222289px;}
.yc2{bottom:1139.920165px;}
.y2f{bottom:1139.920349px;}
.y63{bottom:1139.920531px;}
.yc0{bottom:1156.724853px;}
.y2c{bottom:1156.725036px;}
.y60{bottom:1156.725219px;}
.h7{height:29.619139px;}
.h2{height:43.989259px;}
.h8{height:53.789061px;}
.h4{height:63.949219px;}
.h6{height:64.546875px;}
.h5{height:65.691214px;}
.h3{height:74.607419px;}
.hd{height:96.820313px;}
.h9{height:105.899970px;}
.hb{height:106.274781px;}
.ha{height:106.274964px;}
.he{height:106.275147px;}
.hc{height:118.335940px;}
.h1{height:224.849991px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x5{left:127.575005px;}
.x3{left:131.699633px;}
.x2{left:147.020771px;}
.x9{left:181.575005px;}
.xf{left:235.575005px;}
.xe{left:250.711092px;}
.x11{left:258.260896px;}
.xd{left:303.427889px;}
.x10{left:319.503087px;}
.x12{left:326.991368px;}
.x15{left:338.759915px;}
.x6{left:340.328772px;}
.x16{left:346.503087px;}
.x17{left:349.829746px;}
.x4{left:353.751626px;}
.x13{left:354.980131px;}
.x14{left:358.983556px;}
.xa{left:372.246248px;}
.xb{left:374.711585px;}
.x7{left:415.457678px;}
.x8{left:446.456716px;}
.xc{left:473.456716px;}
.x18{left:615.206716px;}
.x1{left:636.019216px;}
@media print{
.v3{vertical-align:-73.593759pt;}
.v2{vertical-align:-21.484375pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.285938pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:176.000000pt;}
.ls2{letter-spacing:341.801640pt;}
.ws4{word-spacing:-117.333336pt;}
.ws5{word-spacing:-96.000000pt;}
.ws3{word-spacing:-64.000000pt;}
.ws7{word-spacing:-32.000000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws0{word-spacing:-9.600000pt;}
.ws1{word-spacing:-7.234375pt;}
.ws2{word-spacing:0.000000pt;}
._f{margin-left:-8.093738pt;}
._1{margin-left:-6.031261pt;}
._b{margin-left:-4.468771pt;}
._0{margin-left:-2.961871pt;}
._2{margin-left:-1.443842pt;}
._4{width:3.999970pt;}
._3{width:8.000002pt;}
._5{width:12.000002pt;}
._a{width:20.000002pt;}
._c{width:24.000000pt;}
._d{width:27.201270pt;}
._7{width:28.399365pt;}
._6{width:31.999999pt;}
._9{width:48.000000pt;}
._8{width:52.000001pt;}
._e{width:176.000000pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:38.400002pt;}
.fs5{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.666664pt;}
.fs7{font-size:96.000000pt;}
.fs6{font-size:117.333336pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.666656pt;}
.y62{bottom:13.708497pt;}
.y2e{bottom:13.708659pt;}
.yc1{bottom:13.708985pt;}
.yef{bottom:33.029297pt;}
.y61{bottom:33.029623pt;}
.y2d{bottom:33.029705pt;}
.y2b{bottom:62.617434pt;}
.y2a{bottom:97.497721pt;}
.y120{bottom:101.542967pt;}
.y5f{bottom:102.463220pt;}
.ybf{bottom:103.536460pt;}
.y93{bottom:103.919918pt;}
.yee{bottom:105.759113pt;}
.y12c{bottom:111.738927pt;}
.y29{bottom:118.650065pt;}
.y11f{bottom:119.941407pt;}
.y5e{bottom:122.318353pt;}
.y92{bottom:122.318356pt;}
.ybe{bottom:123.391273pt;}
.yed{bottom:124.157553pt;}
.y12b{bottom:130.137367pt;}
.y11e{bottom:139.796873pt;}
.y91{bottom:140.716793pt;}
.y5d{bottom:142.173180pt;}
.yec{bottom:142.555993pt;}
.ybd{bottom:143.246100pt;}
.y12a{bottom:148.535807pt;}
.y90{bottom:159.115241pt;}
.y11d{bottom:159.651687pt;}
.yeb{bottom:160.954433pt;}
.y5c{bottom:162.028327pt;}
.ybc{bottom:163.101233pt;}
.y129{bottom:166.934247pt;}
.y8f{bottom:177.513678pt;}
.y28{bottom:178.873860pt;}
.yea{bottom:179.352860pt;}
.y11c{bottom:179.506513pt;}
.y5b{bottom:180.426755pt;}
.ybb{bottom:182.956380pt;}
.y128{bottom:185.332687pt;}
.y8e{bottom:195.912116pt;}
.y5a{bottom:198.825032pt;}
.ye9{bottom:199.208327pt;}
.y11b{bottom:199.361327pt;}
.y127{bottom:203.731113pt;}
.y145{bottom:205.373700pt;}
.y8d{bottom:214.310553pt;}
.y27{bottom:214.728847pt;}
.y59{bottom:217.223469pt;}
.ye8{bottom:219.063153pt;}
.y11a{bottom:219.216140pt;}
.yba{bottom:221.209633pt;}
.y126{bottom:222.129553pt;}
.y8c{bottom:232.708990pt;}
.y26{bottom:233.127283pt;}
.y144{bottom:233.738927pt;}
.y58{bottom:235.621907pt;}
.ye7{bottom:238.917967pt;}
.y119{bottom:239.071620pt;}
.y125{bottom:240.527993pt;}
.yb9{bottom:242.492184pt;}
.y8b{bottom:251.107428pt;}
.y25{bottom:251.525721pt;}
.y143{bottom:252.137367pt;}
.y57{bottom:254.020344pt;}
.ye6{bottom:258.773113pt;}
.y118{bottom:258.926433pt;}
.y8a{bottom:269.505865pt;}
.y24{bottom:269.924158pt;}
.y142{bottom:270.535809pt;}
.y56{bottom:272.418782pt;}
.yb8{bottom:274.794927pt;}
.y117{bottom:277.324873pt;}
.ye5{bottom:278.628260pt;}
.y89{bottom:287.904303pt;}
.y23{bottom:288.322596pt;}
.y141{bottom:288.934247pt;}
.y55{bottom:290.817220pt;}
.yb7{bottom:294.650060pt;}
.y116{bottom:295.723313pt;}
.ye4{bottom:298.483073pt;}
.y88{bottom:306.302740pt;}
.y22{bottom:306.721033pt;}
.y54{bottom:309.215659pt;}
.y115{bottom:314.121740pt;}
.yb6{bottom:314.505207pt;}
.y140{bottom:317.998694pt;}
.ye3{bottom:318.337887pt;}
.y87{bottom:324.701166pt;}
.y21{bottom:325.119460pt;}
.y53{bottom:327.614096pt;}
.y114{bottom:332.520180pt;}
.yb5{bottom:334.360020pt;}
.y13f{bottom:336.397131pt;}
.ye2{bottom:338.193033pt;}
.y86{bottom:343.099603pt;}
.y20{bottom:343.517897pt;}
.y52{bottom:346.012534pt;}
.y113{bottom:350.918620pt;}
.yb4{bottom:354.214847pt;}
.y13e{bottom:354.795569pt;}
.ye1{bottom:358.048180pt;}
.y85{bottom:361.498041pt;}
.y1f{bottom:361.916335pt;}
.y51{bottom:364.410971pt;}
.y112{bottom:369.317060pt;}
.y13d{bottom:373.194007pt;}
.yb3{bottom:374.069993pt;}
.ye0{bottom:377.902993pt;}
.y84{bottom:379.896478pt;}
.y1e{bottom:380.314780pt;}
.y50{bottom:382.809409pt;}
.y111{bottom:387.715500pt;}
.yb2{bottom:393.925127pt;}
.ydf{bottom:397.757807pt;}
.y83{bottom:398.294916pt;}
.y1d{bottom:398.713213pt;}
.y4f{bottom:401.207847pt;}
.y13c{bottom:402.259113pt;}
.y110{bottom:406.113927pt;}
.yb1{bottom:413.779953pt;}
.y82{bottom:416.693353pt;}
.y1c{bottom:417.111647pt;}
.yde{bottom:417.612953pt;}
.y4e{bottom:419.606283pt;}
.y13b{bottom:420.657553pt;}
.y10f{bottom:424.512367pt;}
.yb0{bottom:433.635087pt;}
.y1b{bottom:435.510047pt;}
.y81{bottom:436.548180pt;}
.ydd{bottom:437.468100pt;}
.y4d{bottom:438.004721pt;}
.y13a{bottom:439.055996pt;}
.y124{bottom:442.910803pt;}
.y10e{bottom:442.910807pt;}
.yaf{bottom:453.490233pt;}
.y1a{bottom:453.908486pt;}
.y4c{bottom:456.403158pt;}
.y80{bottom:456.403327pt;}
.ydc{bottom:457.322913pt;}
.y139{bottom:457.454433pt;}
.y123{bottom:461.309241pt;}
.y10d{bottom:461.309247pt;}
.y19{bottom:472.306923pt;}
.yae{bottom:473.345047pt;}
.y4b{bottom:474.801596pt;}
.y7f{bottom:474.801753pt;}
.ydb{bottom:477.177740pt;}
.y138{bottom:477.309900pt;}
.y122{bottom:479.707678pt;}
.y10c{bottom:479.707687pt;}
.y18{bottom:490.705361pt;}
.y4a{bottom:493.200033pt;}
.y7e{bottom:493.200193pt;}
.yda{bottom:497.032873pt;}
.y137{bottom:497.164713pt;}
.y10b{bottom:498.106113pt;}
.y121{bottom:498.106116pt;}
.y17{bottom:509.103798pt;}
.y49{bottom:511.598474pt;}
.y7d{bottom:511.598633pt;}
.yad{bottom:513.055007pt;}
.y10a{bottom:516.504553pt;}
.yd9{bottom:516.888020pt;}
.y136{bottom:517.020180pt;}
.y16{bottom:527.502236pt;}
.y48{bottom:529.996913pt;}
.y7c{bottom:529.997073pt;}
.yac{bottom:532.910153pt;}
.y109{bottom:534.902993pt;}
.yd8{bottom:536.742833pt;}
.y135{bottom:536.874997pt;}
.y15{bottom:545.900673pt;}
.y47{bottom:548.395349pt;}
.y7b{bottom:548.395513pt;}
.yab{bottom:552.764980pt;}
.y108{bottom:553.301433pt;}
.yd7{bottom:556.597653pt;}
.y134{bottom:556.730466pt;}
.y14{bottom:564.299109pt;}
.y46{bottom:566.793788pt;}
.y7a{bottom:566.793940pt;}
.y107{bottom:571.699873pt;}
.yaa{bottom:572.620113pt;}
.yd6{bottom:576.452793pt;}
.y133{bottom:576.584630pt;}
.y13{bottom:582.697548pt;}
.y45{bottom:585.192224pt;}
.y79{bottom:585.192380pt;}
.y106{bottom:590.098313pt;}
.ya9{bottom:592.474940pt;}
.yd5{bottom:596.307949pt;}
.y132{bottom:596.440103pt;}
.y12{bottom:601.095984pt;}
.y44{bottom:603.590662pt;}
.y78{bottom:603.590820pt;}
.y105{bottom:608.496740pt;}
.ya8{bottom:610.873367pt;}
.yd4{bottom:616.162759pt;}
.y131{bottom:616.294271pt;}
.y11{bottom:619.494423pt;}
.y43{bottom:621.989100pt;}
.y77{bottom:621.989260pt;}
.y104{bottom:626.895180pt;}
.ya7{bottom:630.728513pt;}
.yd3{bottom:636.017579pt;}
.y130{bottom:636.149740pt;}
.y10{bottom:637.892860pt;}
.y42{bottom:640.387527pt;}
.y76{bottom:640.387700pt;}
.y103{bottom:645.293620pt;}
.ya6{bottom:650.583327pt;}
.yd2{bottom:655.872719pt;}
.y12f{bottom:656.004553pt;}
.yf{bottom:656.291299pt;}
.y41{bottom:658.785967pt;}
.y75{bottom:658.786127pt;}
.y102{bottom:663.692060pt;}
.ya5{bottom:670.438473pt;}
.y12e{bottom:674.402993pt;}
.ye{bottom:674.689736pt;}
.yd1{bottom:675.727871pt;}
.y74{bottom:677.184567pt;}
.y40{bottom:678.640953pt;}
.y101{bottom:682.090500pt;}
.ya4{bottom:690.293300pt;}
.y12d{bottom:692.801429pt;}
.yd{bottom:693.088174pt;}
.yd0{bottom:695.582684pt;}
.y73{bottom:695.583007pt;}
.y3f{bottom:698.495926pt;}
.y100{bottom:700.488927pt;}
.ya3{bottom:710.148433pt;}
.yc{bottom:711.486611pt;}
.ycf{bottom:715.437504pt;}
.y72{bottom:715.437820pt;}
.y3e{bottom:718.350906pt;}
.yff{bottom:718.887367pt;}
.yb{bottom:729.885049pt;}
.ya2{bottom:730.003260pt;}
.yce{bottom:735.292645pt;}
.y71{bottom:735.292967pt;}
.yfe{bottom:737.285807pt;}
.y3d{bottom:738.205887pt;}
.ya{bottom:748.283487pt;}
.ya1{bottom:749.858393pt;}
.y70{bottom:755.147780pt;}
.ycd{bottom:755.147793pt;}
.yfd{bottom:755.684247pt;}
.y3c{bottom:758.060872pt;}
.y9{bottom:768.138473pt;}
.ya0{bottom:768.256833pt;}
.yfc{bottom:774.082687pt;}
.ycc{bottom:775.002606pt;}
.y6f{bottom:775.002927pt;}
.y3b{bottom:777.915852pt;}
.y9f{bottom:786.655276pt;}
.y8{bottom:787.993447pt;}
.yfb{bottom:792.481113pt;}
.ycb{bottom:794.857426pt;}
.y6e{bottom:794.857753pt;}
.y3a{bottom:797.770833pt;}
.y9e{bottom:805.053713pt;}
.y7{bottom:807.848433pt;}
.yfa{bottom:810.879553pt;}
.yca{bottom:814.712567pt;}
.y6d{bottom:814.712887pt;}
.y39{bottom:817.625813pt;}
.y9d{bottom:823.452148pt;}
.y6{bottom:827.703407pt;}
.yf9{bottom:829.277993pt;}
.yc9{bottom:834.567704pt;}
.y6c{bottom:834.567713pt;}
.y38{bottom:837.480793pt;}
.y9c{bottom:841.850586pt;}
.yf8{bottom:847.676433pt;}
.yc8{bottom:854.422520pt;}
.y6b{bottom:854.422847pt;}
.y37{bottom:857.335775pt;}
.y5{bottom:859.044616pt;}
.y9b{bottom:860.249023pt;}
.yf7{bottom:866.074873pt;}
.yc7{bottom:874.277333pt;}
.y6a{bottom:874.277673pt;}
.y36{bottom:877.190755pt;}
.y9a{bottom:878.647461pt;}
.y4{bottom:882.208781pt;}
.yf6{bottom:884.473307pt;}
.yc6{bottom:894.132489pt;}
.y69{bottom:894.132812pt;}
.y35{bottom:897.045736pt;}
.y99{bottom:897.045899pt;}
.yf5{bottom:902.871745pt;}
.y3{bottom:905.372924pt;}
.y68{bottom:913.987631pt;}
.y98{bottom:916.900711pt;}
.y34{bottom:916.900716pt;}
.yf4{bottom:921.270183pt;}
.y1{bottom:922.800008pt;}
.yc5{bottom:933.842442pt;}
.y67{bottom:933.842773pt;}
.y33{bottom:936.755697pt;}
.y97{bottom:936.755859pt;}
.yf3{bottom:939.668620pt;}
.yc4{bottom:953.697266pt;}
.y66{bottom:953.697591pt;}
.y32{bottom:956.610677pt;}
.y96{bottom:956.610679pt;}
.yf2{bottom:958.067057pt;}
.yc3{bottom:973.552411pt;}
.y65{bottom:973.552735pt;}
.yf1{bottom:976.465495pt;}
.y31{bottom:976.465657pt;}
.y95{bottom:976.465820pt;}
.y64{bottom:993.407552pt;}
.yf0{bottom:994.863932pt;}
.y30{bottom:994.864095pt;}
.y94{bottom:994.864257pt;}
.yc2{bottom:1013.262369pt;}
.y2f{bottom:1013.262532pt;}
.y63{bottom:1013.262695pt;}
.yc0{bottom:1028.199869pt;}
.y2c{bottom:1028.200032pt;}
.y60{bottom:1028.200195pt;}
.h7{height:26.328124pt;}
.h2{height:39.101563pt;}
.h8{height:47.812499pt;}
.h4{height:56.843750pt;}
.h6{height:57.375000pt;}
.h5{height:58.392190pt;}
.h3{height:66.317706pt;}
.hd{height:86.062500pt;}
.h9{height:94.133307pt;}
.hb{height:94.466472pt;}
.ha{height:94.466635pt;}
.he{height:94.466797pt;}
.hc{height:105.187502pt;}
.h1{height:199.866659pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x5{left:113.400004pt;}
.x3{left:117.066340pt;}
.x2{left:130.685130pt;}
.x9{left:161.400004pt;}
.xf{left:209.400004pt;}
.xe{left:222.854304pt;}
.x11{left:229.565241pt;}
.xd{left:269.713679pt;}
.x10{left:284.002744pt;}
.x12{left:290.658994pt;}
.x15{left:301.119924pt;}
.x6{left:302.514464pt;}
.x16{left:308.002744pt;}
.x17{left:310.959774pt;}
.x4{left:314.445890pt;}
.x13{left:315.537894pt;}
.x14{left:319.096494pt;}
.xa{left:330.885554pt;}
.xb{left:333.076964pt;}
.x7{left:369.295714pt;}
.x8{left:396.850414pt;}
.xc{left:420.850414pt;}
.x18{left:546.850414pt;}
.x1{left:565.350414pt;}
}




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