
    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_9b7fa7fa74cc53cb1619d0ef.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.115234;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_362ec82a0011d5cde6c1f265.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_aa567325ec12be08a9d5aad8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_f1c0916a973be6ed02582f5a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_1a78c02d1d9318a63a263c90.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.753906;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;}
.ls1{letter-spacing:0.749999px;}
.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:-33.000001px;}
.ws0{word-spacing:-18.336914px;}
.ws2{word-spacing:0.000000px;}
._17{margin-left:-18.503702px;}
._27{margin-left:-9.491761px;}
._24{margin-left:-8.476572px;}
._4{margin-left:-7.344087px;}
._6{margin-left:-6.188854px;}
._0{margin-left:-5.041768px;}
._9{margin-left:-3.946457px;}
._a{margin-left:-2.477830px;}
._5{margin-left:-1.008343px;}
._3{width:3.681056px;}
._2{width:4.954382px;}
._1{width:8.973952px;}
._b{width:13.348912px;}
._15{width:14.459431px;}
._11{width:17.283234px;}
._10{width:21.525422px;}
._d{width:23.047178px;}
._c{width:26.786332px;}
._2b{width:27.801085px;}
._8{width:31.283982px;}
._2e{width:32.359172px;}
._7{width:35.882696px;}
._36{width:36.897330px;}
._14{width:40.408765px;}
._26{width:44.210371px;}
._25{width:45.531606px;}
._1e{width:49.202965px;}
._1c{width:53.590917px;}
._1d{width:54.760859px;}
._20{width:58.226458px;}
._21{width:59.229392px;}
._23{width:62.614476px;}
._22{width:67.314988px;}
._2d{width:71.726444px;}
._2c{width:76.197797px;}
._34{width:98.921812px;}
._33{width:103.450492px;}
._13{width:107.755102px;}
._12{width:112.309795px;}
._28{width:116.861933px;}
._1b{width:121.137768px;}
._1a{width:125.885397px;}
._3a{width:134.392903px;}
._39{width:139.447881px;}
._f{width:153.428162px;}
._e{width:157.625086px;}
._16{width:161.728967px;}
._35{width:166.416638px;}
._19{width:189.174341px;}
._18{width:193.315057px;}
._1f{width:197.718619px;}
._3b{width:202.309838px;}
._30{width:233.722161px;}
._2f{width:238.322842px;}
._38{width:243.211010px;}
._37{width:247.390590px;}
._2a{width:521.916601px;}
._29{width:526.249918px;}
._32{width:558.054753px;}
._31{width:562.296781px;}
.fc1{color:rgb(17,85,204);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.000002px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y126{bottom:122.747309px;}
.y9c{bottom:124.694096px;}
.y56{bottom:125.667479px;}
.y125{bottom:141.720708px;}
.yed{bottom:142.694090px;}
.y7a{bottom:143.667474px;}
.y9b{bottom:143.667485px;}
.y55{bottom:144.640871px;}
.yc4{bottom:158.747309px;}
.y124{bottom:160.694096px;}
.yec{bottom:161.667479px;}
.y79{bottom:162.640863px;}
.y9a{bottom:162.640874px;}
.y54{bottom:163.614260px;}
.yc3{bottom:177.720704px;}
.y10a{bottom:178.694099px;}
.y123{bottom:179.667485px;}
.y78{bottom:181.614251px;}
.y2a{bottom:182.020754px;}
.y53{bottom:182.587649px;}
.yc2{bottom:196.694099px;}
.y109{bottom:197.667476px;}
.yeb{bottom:198.640874px;}
.y99{bottom:199.614254px;}
.y77{bottom:200.587640px;}
.y29{bottom:200.994146px;}
.yc1{bottom:215.667479px;}
.y108{bottom:216.640864px;}
.yea{bottom:217.614254px;}
.y98{bottom:218.587646px;}
.y52{bottom:219.561029px;}
.y28{bottom:219.967535px;}
.y107{bottom:235.614253px;}
.ye9{bottom:236.587649px;}
.y97{bottom:237.561035px;}
.y51{bottom:238.534425px;}
.y27{bottom:238.940924px;}
.yc0{bottom:252.640874px;}
.y106{bottom:254.587642px;}
.y122{bottom:254.587646px;}
.ye8{bottom:255.561029px;}
.y76{bottom:256.534424px;}
.y50{bottom:257.507814px;}
.ybf{bottom:271.614262px;}
.y105{bottom:273.561030px;}
.y121{bottom:273.561034px;}
.y75{bottom:275.507812px;}
.y26{bottom:275.914304px;}
.y4f{bottom:276.481203px;}
.ybe{bottom:290.587650px;}
.y104{bottom:292.534419px;}
.ye7{bottom:292.534424px;}
.y96{bottom:293.507819px;}
.y74{bottom:294.481200px;}
.y25{bottom:294.887690px;}
.y4e{bottom:295.454591px;}
.ybd{bottom:309.561039px;}
.y103{bottom:311.507808px;}
.y120{bottom:311.507812px;}
.ye6{bottom:311.507816px;}
.y95{bottom:312.481205px;}
.y73{bottom:313.454589px;}
.y24{bottom:313.861079px;}
.y4d{bottom:314.427980px;}
.ybc{bottom:328.534428px;}
.y102{bottom:330.481196px;}
.y11f{bottom:330.481200px;}
.ye5{bottom:330.481205px;}
.y94{bottom:331.454594px;}
.y72{bottom:332.427978px;}
.y4c{bottom:333.401369px;}
.ybb{bottom:347.507816px;}
.y101{bottom:349.454585px;}
.y11e{bottom:349.454589px;}
.ye4{bottom:349.454594px;}
.y23{bottom:350.834474px;}
.y71{bottom:351.401366px;}
.yba{bottom:366.481205px;}
.y93{bottom:368.427974px;}
.y11d{bottom:368.427978px;}
.y22{bottom:369.807866px;}
.y4b{bottom:370.374749px;}
.y70{bottom:370.374755px;}
.yb9{bottom:385.454594px;}
.ye3{bottom:386.427974px;}
.y92{bottom:387.401366px;}
.y21{bottom:388.781255px;}
.y4a{bottom:389.348144px;}
.ye2{bottom:405.401360px;}
.y100{bottom:405.401369px;}
.y91{bottom:406.374755px;}
.y20{bottom:407.754644px;}
.yb8{bottom:422.427974px;}
.ye1{bottom:424.374749px;}
.yff{bottom:424.374750px;}
.y90{bottom:425.348144px;}
.y49{bottom:426.321539px;}
.yb7{bottom:441.401370px;}
.yfe{bottom:443.348139px;}
.y1f{bottom:444.728024px;}
.y6f{bottom:445.294916px;}
.y48{bottom:445.294925px;}
.yb6{bottom:460.374759px;}
.ye0{bottom:461.348144px;}
.yfd{bottom:462.321528px;}
.y8f{bottom:462.321539px;}
.y1e{bottom:463.701423px;}
.y6e{bottom:464.268305px;}
.y47{bottom:464.268314px;}
.yb5{bottom:479.348148px;}
.ydf{bottom:480.321536px;}
.y8e{bottom:481.294916px;}
.y11c{bottom:481.294923px;}
.y1d{bottom:482.674811px;}
.y6d{bottom:483.241694px;}
.yb4{bottom:498.321536px;}
.yde{bottom:499.294925px;}
.y8d{bottom:500.268305px;}
.y11b{bottom:500.268311px;}
.y46{bottom:501.241694px;}
.y1c{bottom:501.648200px;}
.yb3{bottom:517.294925px;}
.ydd{bottom:518.268314px;}
.y8c{bottom:519.241694px;}
.y11a{bottom:519.241700px;}
.y6c{bottom:520.215089px;}
.y45{bottom:520.215095px;}
.y1b{bottom:520.621589px;}
.yb2{bottom:536.268314px;}
.y119{bottom:538.215089px;}
.y6b{bottom:539.188479px;}
.y44{bottom:539.188484px;}
.ydc{bottom:555.241694px;}
.y8b{bottom:556.215089px;}
.y1a{bottom:557.594969px;}
.y6a{bottom:558.161868px;}
.yb1{bottom:573.241694px;}
.ydb{bottom:574.215086px;}
.y8a{bottom:575.188473px;}
.yfc{bottom:575.188481px;}
.y118{bottom:575.188484px;}
.y43{bottom:576.161864px;}
.y19{bottom:576.568361px;}
.y69{bottom:577.135256px;}
.yb0{bottom:592.215086px;}
.yda{bottom:593.188475px;}
.y89{bottom:594.161861px;}
.y117{bottom:594.161864px;}
.yfb{bottom:594.161870px;}
.y42{bottom:595.135250px;}
.y18{bottom:595.541750px;}
.y68{bottom:596.108645px;}
.yaf{bottom:611.188474px;}
.yd9{bottom:612.161864px;}
.y88{bottom:613.135250px;}
.yfa{bottom:613.135259px;}
.y41{bottom:614.108639px;}
.y17{bottom:614.515139px;}
.y67{bottom:615.082034px;}
.yae{bottom:630.161863px;}
.y87{bottom:632.108639px;}
.yad{bottom:649.135252px;}
.yd8{bottom:649.135259px;}
.yf9{bottom:650.108639px;}
.y40{bottom:651.082034px;}
.y16{bottom:651.488519px;}
.y66{bottom:652.055414px;}
.yd7{bottom:668.108636px;}
.yac{bottom:668.108640px;}
.y86{bottom:669.082034px;}
.yf8{bottom:669.082038px;}
.y3f{bottom:670.055420px;}
.y15{bottom:670.461909px;}
.y65{bottom:671.028806px;}
.yd6{bottom:687.082025px;}
.yab{bottom:687.082029px;}
.y116{bottom:688.055413px;}
.y85{bottom:688.055426px;}
.y3e{bottom:689.028809px;}
.y14{bottom:689.435298px;}
.y64{bottom:690.002195px;}
.yd5{bottom:706.055414px;}
.yaa{bottom:706.055418px;}
.y115{bottom:707.028802px;}
.y84{bottom:707.028815px;}
.y13{bottom:708.408686px;}
.y63{bottom:708.975584px;}
.ya9{bottom:725.028806px;}
.y114{bottom:726.002190px;}
.y3d{bottom:726.002204px;}
.y12{bottom:727.382075px;}
.yd4{bottom:743.028809px;}
.ya8{bottom:744.002195px;}
.y113{bottom:744.975579px;}
.y3c{bottom:744.975581px;}
.y62{bottom:745.948979px;}
.y11{bottom:746.355464px;}
.yd3{bottom:762.002204px;}
.y83{bottom:762.975584px;}
.y112{bottom:763.948968px;}
.y3b{bottom:763.948970px;}
.y61{bottom:764.922356px;}
.yd2{bottom:780.975584px;}
.yf7{bottom:781.948978px;}
.y82{bottom:781.948980px;}
.y111{bottom:782.922356px;}
.y3a{bottom:782.922359px;}
.y10{bottom:783.328859px;}
.y60{bottom:783.895745px;}
.ya7{bottom:799.948979px;}
.y12d{bottom:800.922356px;}
.yf6{bottom:800.922367px;}
.y81{bottom:800.922369px;}
.y110{bottom:801.895745px;}
.yf{bottom:802.302251px;}
.y5f{bottom:802.869134px;}
.yd1{bottom:818.922359px;}
.ya6{bottom:818.922371px;}
.y12c{bottom:819.895745px;}
.y39{bottom:819.895754px;}
.yf5{bottom:819.895755px;}
.y80{bottom:819.895758px;}
.y10f{bottom:820.869134px;}
.ye{bottom:821.275640px;}
.yd0{bottom:837.895754px;}
.ya5{bottom:837.895759px;}
.y12b{bottom:838.869134px;}
.yf4{bottom:838.869144px;}
.y38{bottom:838.869146px;}
.y5e{bottom:839.842529px;}
.yd{bottom:840.249029px;}
.ya4{bottom:856.869148px;}
.y10e{bottom:857.842529px;}
.yf3{bottom:857.842533px;}
.y37{bottom:857.842535px;}
.y5d{bottom:858.815921px;}
.ycf{bottom:874.869134px;}
.y12a{bottom:875.842529px;}
.ya3{bottom:875.842537px;}
.y10d{bottom:876.815915px;}
.yf2{bottom:876.815921px;}
.y36{bottom:876.815924px;}
.yc{bottom:877.222409px;}
.y5c{bottom:877.789310px;}
.yce{bottom:893.842535px;}
.y129{bottom:894.815924px;}
.ya2{bottom:894.815925px;}
.y10c{bottom:895.789304px;}
.yf1{bottom:895.789310px;}
.yb{bottom:896.195802px;}
.y5b{bottom:896.762699px;}
.ycd{bottom:912.815924px;}
.y35{bottom:913.789304px;}
.ya1{bottom:913.789314px;}
.yf0{bottom:914.762699px;}
.ya{bottom:915.169190px;}
.y7f{bottom:932.762690px;}
.y34{bottom:932.762696px;}
.y10b{bottom:932.762699px;}
.ya0{bottom:932.762703px;}
.y5a{bottom:933.736079px;}
.y9{bottom:934.142578px;}
.ycc{bottom:949.789304px;}
.y7e{bottom:951.736079px;}
.y33{bottom:951.736085px;}
.y9f{bottom:951.736091px;}
.y59{bottom:952.709480px;}
.y8{bottom:953.115968px;}
.ycb{bottom:968.762696px;}
.y128{bottom:969.736079px;}
.yef{bottom:970.709472px;}
.y32{bottom:970.709474px;}
.y9e{bottom:970.709480px;}
.y58{bottom:971.682869px;}
.y7{bottom:972.089356px;}
.yca{bottom:987.736084px;}
.y127{bottom:988.709472px;}
.y7d{bottom:988.709474px;}
.yee{bottom:989.682862px;}
.y9d{bottom:989.682869px;}
.y6{bottom:991.062744px;}
.yc9{bottom:1006.709473px;}
.y31{bottom:1007.682861px;}
.y57{bottom:1008.656250px;}
.y5{bottom:1010.036134px;}
.yc8{bottom:1025.682862px;}
.y30{bottom:1026.656250px;}
.y4{bottom:1029.009522px;}
.yc7{bottom:1044.656250px;}
.y7c{bottom:1045.629638px;}
.y2f{bottom:1045.629640px;}
.yc6{bottom:1063.629639px;}
.y2e{bottom:1064.603028px;}
.y3{bottom:1070.440430px;}
.yc5{bottom:1082.603028px;}
.y7b{bottom:1083.576416px;}
.y2{bottom:1095.278320px;}
.y2d{bottom:1101.576416px;}
.y1{bottom:1120.116211px;}
.y2c{bottom:1120.549805px;}
.y2b{bottom:1139.523194px;}
.h3{height:48.049806px;}
.h2{height:59.167970px;}
.h1{height:65.144531px;}
.h0{height:1263.000000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x4{left:108.000000px;}
.x1{left:118.905911px;}
.x2{left:133.350735px;}
.x5{left:162.000000px;}
.x3{left:323.906404px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.666666pt;}
.ws1{word-spacing:-29.333334pt;}
.ws0{word-spacing:-16.299479pt;}
.ws2{word-spacing:0.000000pt;}
._17{margin-left:-16.447735pt;}
._27{margin-left:-8.437121pt;}
._24{margin-left:-7.534731pt;}
._4{margin-left:-6.528077pt;}
._6{margin-left:-5.501204pt;}
._0{margin-left:-4.481571pt;}
._9{margin-left:-3.507961pt;}
._a{margin-left:-2.202515pt;}
._5{margin-left:-0.896305pt;}
._3{width:3.272050pt;}
._2{width:4.403896pt;}
._1{width:7.976846pt;}
._b{width:11.865700pt;}
._15{width:12.852828pt;}
._11{width:15.362875pt;}
._10{width:19.133708pt;}
._d{width:20.486380pt;}
._c{width:23.810073pt;}
._2b{width:24.712076pt;}
._8{width:27.807984pt;}
._2e{width:28.763708pt;}
._7{width:31.895730pt;}
._36{width:32.797627pt;}
._14{width:35.918902pt;}
._26{width:39.298108pt;}
._25{width:40.472539pt;}
._1e{width:43.735969pt;}
._1c{width:47.636371pt;}
._1d{width:48.676319pt;}
._20{width:51.756851pt;}
._21{width:52.648349pt;}
._23{width:55.657312pt;}
._22{width:59.835545pt;}
._2d{width:63.756839pt;}
._2c{width:67.731375pt;}
._34{width:87.930500pt;}
._33{width:91.955993pt;}
._13{width:95.782313pt;}
._12{width:99.830929pt;}
._28{width:103.877274pt;}
._1b{width:107.678016pt;}
._1a{width:111.898131pt;}
._3a{width:119.460358pt;}
._39{width:123.953672pt;}
._f{width:136.380589pt;}
._e{width:140.111187pt;}
._16{width:143.759082pt;}
._35{width:147.925901pt;}
._19{width:168.154970pt;}
._18{width:171.835606pt;}
._1f{width:175.749884pt;}
._3b{width:179.830968pt;}
._30{width:207.753032pt;}
._2f{width:211.842526pt;}
._38{width:216.187565pt;}
._37{width:219.902747pt;}
._2a{width:463.925868pt;}
._29{width:467.777705pt;}
._32{width:496.048670pt;}
._31{width:499.819361pt;}
.fs1{font-size:58.666668pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y126{bottom:109.108719pt;}
.y9c{bottom:110.839196pt;}
.y56{bottom:111.704425pt;}
.y125{bottom:125.973962pt;}
.yed{bottom:126.839191pt;}
.y7a{bottom:127.704422pt;}
.y9b{bottom:127.704431pt;}
.y55{bottom:128.569663pt;}
.yc4{bottom:141.108719pt;}
.y124{bottom:142.839196pt;}
.yec{bottom:143.704425pt;}
.y79{bottom:144.569656pt;}
.y9a{bottom:144.569665pt;}
.y54{bottom:145.434898pt;}
.yc3{bottom:157.973959pt;}
.y10a{bottom:158.839199pt;}
.y123{bottom:159.704431pt;}
.y78{bottom:161.434890pt;}
.y2a{bottom:161.796225pt;}
.y53{bottom:162.300132pt;}
.yc2{bottom:174.839199pt;}
.y109{bottom:175.704423pt;}
.yeb{bottom:176.569665pt;}
.y99{bottom:177.434892pt;}
.y77{bottom:178.300125pt;}
.y29{bottom:178.661463pt;}
.yc1{bottom:191.704425pt;}
.y108{bottom:192.569657pt;}
.yea{bottom:193.434892pt;}
.y98{bottom:194.300130pt;}
.y52{bottom:195.165359pt;}
.y28{bottom:195.526698pt;}
.y107{bottom:209.434892pt;}
.ye9{bottom:210.300132pt;}
.y97{bottom:211.165365pt;}
.y51{bottom:212.030600pt;}
.y27{bottom:212.391932pt;}
.yc0{bottom:224.569665pt;}
.y106{bottom:226.300126pt;}
.y122{bottom:226.300130pt;}
.ye8{bottom:227.165359pt;}
.y76{bottom:228.030599pt;}
.y50{bottom:228.895835pt;}
.ybf{bottom:241.434899pt;}
.y105{bottom:243.165360pt;}
.y121{bottom:243.165364pt;}
.y75{bottom:244.895833pt;}
.y26{bottom:245.257159pt;}
.y4f{bottom:245.761069pt;}
.ybe{bottom:258.300133pt;}
.y104{bottom:260.030595pt;}
.ye7{bottom:260.030599pt;}
.y96{bottom:260.895839pt;}
.y74{bottom:261.761067pt;}
.y25{bottom:262.122391pt;}
.y4e{bottom:262.626303pt;}
.ybd{bottom:275.165368pt;}
.y103{bottom:276.895829pt;}
.y120{bottom:276.895833pt;}
.ye6{bottom:276.895836pt;}
.y95{bottom:277.761071pt;}
.y73{bottom:278.626302pt;}
.y24{bottom:278.987625pt;}
.y4d{bottom:279.491538pt;}
.ybc{bottom:292.030602pt;}
.y102{bottom:293.761063pt;}
.y11f{bottom:293.761067pt;}
.ye5{bottom:293.761071pt;}
.y94{bottom:294.626305pt;}
.y72{bottom:295.491536pt;}
.y4c{bottom:296.356772pt;}
.ybb{bottom:308.895836pt;}
.y101{bottom:310.626298pt;}
.y11e{bottom:310.626302pt;}
.ye4{bottom:310.626305pt;}
.y23{bottom:311.852865pt;}
.y71{bottom:312.356770pt;}
.yba{bottom:325.761071pt;}
.y93{bottom:327.491532pt;}
.y11d{bottom:327.491536pt;}
.y22{bottom:328.718103pt;}
.y4b{bottom:329.221999pt;}
.y70{bottom:329.222005pt;}
.yb9{bottom:342.626305pt;}
.ye3{bottom:343.491532pt;}
.y92{bottom:344.356770pt;}
.y21{bottom:345.583338pt;}
.y4a{bottom:346.087239pt;}
.ye2{bottom:360.356765pt;}
.y100{bottom:360.356772pt;}
.y91{bottom:361.222005pt;}
.y20{bottom:362.448572pt;}
.yb8{bottom:375.491532pt;}
.ye1{bottom:377.221999pt;}
.yff{bottom:377.222000pt;}
.y90{bottom:378.087239pt;}
.y49{bottom:378.952479pt;}
.yb7{bottom:392.356773pt;}
.yfe{bottom:394.087235pt;}
.y1f{bottom:395.313799pt;}
.y6f{bottom:395.817703pt;}
.y48{bottom:395.817711pt;}
.yb6{bottom:409.222008pt;}
.ye0{bottom:410.087239pt;}
.yfd{bottom:410.952469pt;}
.y8f{bottom:410.952479pt;}
.y1e{bottom:412.179042pt;}
.y6e{bottom:412.682938pt;}
.y47{bottom:412.682945pt;}
.yb5{bottom:426.087242pt;}
.ydf{bottom:426.952476pt;}
.y8e{bottom:427.817703pt;}
.y11c{bottom:427.817709pt;}
.y1d{bottom:429.044276pt;}
.y6d{bottom:429.548172pt;}
.yb4{bottom:442.952476pt;}
.yde{bottom:443.817711pt;}
.y8d{bottom:444.682938pt;}
.y11b{bottom:444.682943pt;}
.y46{bottom:445.548172pt;}
.y1c{bottom:445.909511pt;}
.yb3{bottom:459.817711pt;}
.ydd{bottom:460.682945pt;}
.y8c{bottom:461.548172pt;}
.y11a{bottom:461.548178pt;}
.y6c{bottom:462.413412pt;}
.y45{bottom:462.413418pt;}
.y1b{bottom:462.774745pt;}
.yb2{bottom:476.682945pt;}
.y119{bottom:478.413412pt;}
.y6b{bottom:479.278648pt;}
.y44{bottom:479.278652pt;}
.ydc{bottom:493.548172pt;}
.y8b{bottom:494.413412pt;}
.y1a{bottom:495.639972pt;}
.y6a{bottom:496.143882pt;}
.yb1{bottom:509.548172pt;}
.ydb{bottom:510.413410pt;}
.y8a{bottom:511.278642pt;}
.yfc{bottom:511.278650pt;}
.y118{bottom:511.278652pt;}
.y43{bottom:512.143879pt;}
.y19{bottom:512.505210pt;}
.y69{bottom:513.009116pt;}
.yb0{bottom:526.413410pt;}
.yda{bottom:527.278645pt;}
.y89{bottom:528.143876pt;}
.y117{bottom:528.143879pt;}
.yfb{bottom:528.143885pt;}
.y42{bottom:529.009111pt;}
.y18{bottom:529.370445pt;}
.y68{bottom:529.874351pt;}
.yaf{bottom:543.278644pt;}
.yd9{bottom:544.143879pt;}
.y88{bottom:545.009111pt;}
.yfa{bottom:545.009119pt;}
.y41{bottom:545.874345pt;}
.y17{bottom:546.235679pt;}
.y67{bottom:546.739585pt;}
.yae{bottom:560.143879pt;}
.y87{bottom:561.874345pt;}
.yad{bottom:577.009113pt;}
.yd8{bottom:577.009119pt;}
.yf9{bottom:577.874345pt;}
.y40{bottom:578.739585pt;}
.y16{bottom:579.100905pt;}
.y66{bottom:579.604812pt;}
.yd7{bottom:593.874343pt;}
.yac{bottom:593.874347pt;}
.y86{bottom:594.739585pt;}
.yf8{bottom:594.739589pt;}
.y3f{bottom:595.604818pt;}
.y15{bottom:595.966142pt;}
.y65{bottom:596.470050pt;}
.yd6{bottom:610.739578pt;}
.yab{bottom:610.739582pt;}
.y116{bottom:611.604812pt;}
.y85{bottom:611.604823pt;}
.y3e{bottom:612.470052pt;}
.y14{bottom:612.831376pt;}
.y64{bottom:613.335285pt;}
.yd5{bottom:627.604812pt;}
.yaa{bottom:627.604816pt;}
.y115{bottom:628.470046pt;}
.y84{bottom:628.470058pt;}
.y13{bottom:629.696610pt;}
.y63{bottom:630.200519pt;}
.ya9{bottom:644.470050pt;}
.y114{bottom:645.335280pt;}
.y3d{bottom:645.335292pt;}
.y12{bottom:646.561845pt;}
.yd4{bottom:660.470052pt;}
.ya8{bottom:661.335285pt;}
.y113{bottom:662.200515pt;}
.y3c{bottom:662.200516pt;}
.y62{bottom:663.065759pt;}
.y11{bottom:663.427079pt;}
.yd3{bottom:677.335292pt;}
.y83{bottom:678.200519pt;}
.y112{bottom:679.065749pt;}
.y3b{bottom:679.065751pt;}
.y61{bottom:679.930983pt;}
.yd2{bottom:694.200519pt;}
.yf7{bottom:695.065759pt;}
.y82{bottom:695.065760pt;}
.y111{bottom:695.930983pt;}
.y3a{bottom:695.930985pt;}
.y10{bottom:696.292319pt;}
.y60{bottom:696.796218pt;}
.ya7{bottom:711.065759pt;}
.y12d{bottom:711.930983pt;}
.yf6{bottom:711.930993pt;}
.y81{bottom:711.930995pt;}
.y110{bottom:712.796218pt;}
.yf{bottom:713.157556pt;}
.y5f{bottom:713.661452pt;}
.yd1{bottom:727.930985pt;}
.ya6{bottom:727.930996pt;}
.y12c{bottom:728.796218pt;}
.y39{bottom:728.796225pt;}
.yf5{bottom:728.796227pt;}
.y80{bottom:728.796229pt;}
.y10f{bottom:729.661452pt;}
.ye{bottom:730.022791pt;}
.yd0{bottom:744.796225pt;}
.ya5{bottom:744.796230pt;}
.y12b{bottom:745.661452pt;}
.yf4{bottom:745.661462pt;}
.y38{bottom:745.661463pt;}
.y5e{bottom:746.526692pt;}
.yd{bottom:746.888025pt;}
.ya4{bottom:761.661465pt;}
.y10e{bottom:762.526692pt;}
.yf3{bottom:762.526696pt;}
.y37{bottom:762.526698pt;}
.y5d{bottom:763.391930pt;}
.ycf{bottom:777.661452pt;}
.y12a{bottom:778.526692pt;}
.ya3{bottom:778.526699pt;}
.y10d{bottom:779.391925pt;}
.yf2{bottom:779.391930pt;}
.y36{bottom:779.391932pt;}
.yc{bottom:779.753252pt;}
.y5c{bottom:780.257165pt;}
.yce{bottom:794.526698pt;}
.y129{bottom:795.391932pt;}
.ya2{bottom:795.391933pt;}
.y10c{bottom:796.257159pt;}
.yf1{bottom:796.257165pt;}
.yb{bottom:796.618491pt;}
.y5b{bottom:797.122399pt;}
.ycd{bottom:811.391932pt;}
.y35{bottom:812.257159pt;}
.ya1{bottom:812.257168pt;}
.yf0{bottom:813.122399pt;}
.ya{bottom:813.483725pt;}
.y7f{bottom:829.122391pt;}
.y34{bottom:829.122396pt;}
.y10b{bottom:829.122399pt;}
.ya0{bottom:829.122402pt;}
.y5a{bottom:829.987625pt;}
.y9{bottom:830.348959pt;}
.ycc{bottom:844.257159pt;}
.y7e{bottom:845.987625pt;}
.y33{bottom:845.987631pt;}
.y9f{bottom:845.987636pt;}
.y59{bottom:846.852871pt;}
.y8{bottom:847.214194pt;}
.ycb{bottom:861.122396pt;}
.y128{bottom:861.987625pt;}
.yef{bottom:862.852864pt;}
.y32{bottom:862.852865pt;}
.y9e{bottom:862.852871pt;}
.y58{bottom:863.718105pt;}
.y7{bottom:864.079428pt;}
.yca{bottom:877.987630pt;}
.y127{bottom:878.852864pt;}
.y7d{bottom:878.852865pt;}
.yee{bottom:879.718099pt;}
.y9d{bottom:879.718105pt;}
.y6{bottom:880.944662pt;}
.yc9{bottom:894.852865pt;}
.y31{bottom:895.718099pt;}
.y57{bottom:896.583333pt;}
.y5{bottom:897.809897pt;}
.yc8{bottom:911.718099pt;}
.y30{bottom:912.583334pt;}
.y4{bottom:914.675131pt;}
.yc7{bottom:928.583333pt;}
.y7c{bottom:929.448567pt;}
.y2f{bottom:929.448569pt;}
.yc6{bottom:945.448568pt;}
.y2e{bottom:946.313803pt;}
.y3{bottom:951.502604pt;}
.yc5{bottom:962.313802pt;}
.y7b{bottom:963.179036pt;}
.y2{bottom:973.580729pt;}
.y2d{bottom:979.179036pt;}
.y1{bottom:995.658854pt;}
.y2c{bottom:996.044271pt;}
.y2b{bottom:1012.909505pt;}
.h3{height:42.710938pt;}
.h2{height:52.593751pt;}
.h1{height:57.906250pt;}
.h0{height:1122.666667pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x4{left:96.000000pt;}
.x1{left:105.694143pt;}
.x2{left:118.533987pt;}
.x5{left:144.000000pt;}
.x3{left:287.916803pt;}
}




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