
    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_4102d7dbe74c7bfb95385d13.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e72027ac80c953195ee22c87.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d02ddefcba54776edeeb7778.woff')format("woff");}.ff3{font-family:ff3;line-height:0.971191;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_0c84bb6b2cd7a682ce828c10.woff')format("woff");}.ff4{font-family:ff4;line-height:0.971191;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;}
.m1{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-1.440001px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.072288px;}
.ls0{letter-spacing:0.275436px;}
.ls4{letter-spacing:195.097236px;}
.ls2{letter-spacing:830.975945px;}
.ls3{letter-spacing:925.350020px;}
.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;}
}
.ws2{word-spacing:-21.035537px;}
.ws3{word-spacing:-20.437936px;}
.ws0{word-spacing:-18.414735px;}
.ws5{word-spacing:-17.686382px;}
.ws4{word-spacing:-17.614094px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-1.256227px;}
._2{width:1.012141px;}
._1{width:49.619470px;}
._5{width:195.706985px;}
._4{width:780.336830px;}
._3{width:846.117317px;}
._6{width:899.933246px;}
.fc1{color:rgb(17,85,204);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240039px;}
.fs1{font-size:59.760048px;}
.fs2{font-size:63.360051px;}
.fs0{font-size:66.240053px;}
.y0{bottom:0.000000px;}
.y44{bottom:3.059448px;}
.y3f{bottom:3.059491px;}
.y3a{bottom:3.059533px;}
.y35{bottom:3.059575px;}
.y2b{bottom:3.059660px;}
.y26{bottom:3.059703px;}
.y21{bottom:3.059745px;}
.y58{bottom:3.060719px;}
.y53{bottom:3.060761px;}
.y4e{bottom:3.060804px;}
.y49{bottom:3.239406px;}
.y30{bottom:3.239618px;}
.y16{bottom:3.239875px;}
.ya2{bottom:3.599698px;}
.y9c{bottom:3.599774px;}
.y2{bottom:57.721546px;}
.yc2{bottom:83.820967px;}
.yc1{bottom:114.600992px;}
.yc0{bottom:114.960992px;}
.y81{bottom:123.240999px;}
.ybf{bottom:136.021009px;}
.y11{bottom:150.961621px;}
.y5c{bottom:152.401622px;}
.y7f{bottom:157.081626px;}
.y10{bottom:172.921638px;}
.ybe{bottom:173.101638px;}
.y5b{bottom:174.181639px;}
.y80{bottom:182.101646px;}
.y7e{bottom:182.281646px;}
.ybd{bottom:193.981655px;}
.yf{bottom:194.701656px;}
.y5a{bottom:196.141657px;}
.ye{bottom:216.481673px;}
.y57{bottom:220.620960px;}
.y7c{bottom:223.501679px;}
.y56{bottom:223.681679px;}
.ybc{bottom:231.061685px;}
.yd{bottom:234.841688px;}
.y59{bottom:241.501693px;}
.y55{bottom:241.861693px;}
.y7d{bottom:248.521699px;}
.y7b{bottom:248.701699px;}
.ybb{bottom:252.121702px;}
.y52{bottom:273.540960px;}
.y51{bottom:276.601721px;}
.yba{bottom:289.201731px;}
.y79{bottom:289.921732px;}
.y54{bottom:294.421736px;}
.y50{bottom:294.781736px;}
.yb9{bottom:310.081748px;}
.y7a{bottom:314.941752px;}
.y78{bottom:315.121752px;}
.y4d{bottom:326.460960px;}
.y4c{bottom:329.521764px;}
.yb8{bottom:347.161778px;}
.y4f{bottom:347.521778px;}
.y4b{bottom:347.881778px;}
.y76{bottom:356.341785px;}
.yb7{bottom:368.221795px;}
.y48{bottom:379.382400px;}
.y77{bottom:381.361805px;}
.y75{bottom:381.541805px;}
.y47{bottom:382.621806px;}
.y4a{bottom:400.441820px;}
.y46{bottom:400.801821px;}
.yb6{bottom:405.301824px;}
.yb4{bottom:406.201825px;}
.y73{bottom:422.761838px;}
.yb5{bottom:426.721841px;}
.yb3{bottom:427.081842px;}
.y43{bottom:432.482400px;}
.y42{bottom:435.541848px;}
.y72{bottom:447.961858px;}
.y45{bottom:453.361863px;}
.y41{bottom:453.721863px;}
.yb2{bottom:464.161871px;}
.y71{bottom:473.161879px;}
.yb1{bottom:485.221888px;}
.y3e{bottom:485.402400px;}
.y3d{bottom:488.461891px;}
.y74{bottom:498.001898px;}
.y70{bottom:498.181899px;}
.y40{bottom:506.281905px;}
.y3c{bottom:506.641905px;}
.yb0{bottom:522.301918px;}
.yac{bottom:524.821920px;}
.y39{bottom:538.322400px;}
.y6e{bottom:539.581932px;}
.y38{bottom:541.381933px;}
.yaf{bottom:543.721935px;}
.yab{bottom:545.701937px;}
.y3b{bottom:559.381948px;}
.y37{bottom:559.741948px;}
.y6d{bottom:564.601952px;}
.yae{bottom:565.501952px;}
.yaa{bottom:566.761953px;}
.yad{bottom:587.281970px;}
.ya9{bottom:587.641970px;}
.y6c{bottom:589.801972px;}
.y34{bottom:591.242400px;}
.y33{bottom:594.301975px;}
.y36{bottom:612.301990px;}
.y32{bottom:612.661990px;}
.y6f{bottom:614.821992px;}
.y6b{bottom:615.001992px;}
.ya8{bottom:624.722000px;}
.ya5{bottom:626.522001px;}
.y2f{bottom:644.162400px;}
.ya7{bottom:646.322017px;}
.y2e{bottom:647.402018px;}
.y69{bottom:656.222025px;}
.y31{bottom:665.222032px;}
.y2d{bottom:665.582032px;}
.ya6{bottom:668.102034px;}
.ya4{bottom:668.462035px;}
.y6a{bottom:681.062045px;}
.y68{bottom:681.242045px;}
.ya3{bottom:689.342051px;}
.y2a{bottom:697.262400px;}
.y29{bottom:700.322060px;}
.y2c{bottom:718.142075px;}
.y28{bottom:718.502075px;}
.y67{bottom:722.642078px;}
.y9f{bottom:726.422081px;}
.ya1{bottom:744.242400px;}
.y9e{bottom:747.482098px;}
.ya0{bottom:747.842098px;}
.y25{bottom:750.182400px;}
.y24{bottom:753.242103px;}
.y66{bottom:760.442108px;}
.y27{bottom:771.062117px;}
.y23{bottom:771.422117px;}
.y63{bottom:778.982123px;}
.y65{bottom:782.222126px;}
.y9d{bottom:784.562128px;}
.y20{bottom:803.102400px;}
.y64{bottom:804.002143px;}
.y62{bottom:804.182143px;}
.y1f{bottom:806.162145px;}
.y99{bottom:821.642157px;}
.y22{bottom:824.162159px;}
.y1e{bottom:824.522160px;}
.y9b{bottom:839.282400px;}
.y98{bottom:842.522174px;}
.y9a{bottom:842.882174px;}
.y60{bottom:845.402176px;}
.y1d{bottom:859.982188px;}
.y61{bottom:870.422196px;}
.y5f{bottom:870.602196px;}
.y8e{bottom:873.662199px;}
.y97{bottom:879.602204px;}
.y1c{bottom:895.082216px;}
.y8d{bottom:895.442216px;}
.y96{bottom:900.662221px;}
.y5e{bottom:912.722230px;}
.y1b{bottom:913.982231px;}
.y19{bottom:915.062232px;}
.y8c{bottom:917.402234px;}
.y1a{bottom:933.062246px;}
.y18{bottom:933.422247px;}
.y5d{bottom:934.502248px;}
.y8b{bottom:939.182251px;}
.yc{bottom:943.142255px;}
.y95{bottom:945.122256px;}
.yb{bottom:964.922272px;}
.y15{bottom:964.922400px;}
.y14{bottom:968.162275px;}
.y89{bottom:973.202279px;}
.y94{bottom:974.102279px;}
.y17{bottom:985.982289px;}
.y13{bottom:986.342289px;}
.ya{bottom:986.702289px;}
.y93{bottom:991.562293px;}
.y8a{bottom:998.042298px;}
.y88{bottom:998.222299px;}
.y9{bottom:1008.662307px;}
.y92{bottom:1012.262310px;}
.y12{bottom:1021.442317px;}
.y8{bottom:1030.442324px;}
.yc8{bottom:1030.802325px;}
.y91{bottom:1033.142327px;}
.y86{bottom:1039.442332px;}
.yc7{bottom:1051.682341px;}
.y7{bottom:1052.222342px;}
.y90{bottom:1054.022343px;}
.y87{bottom:1064.462352px;}
.y85{bottom:1064.642352px;}
.yc6{bottom:1072.382358px;}
.y6{bottom:1074.002359px;}
.y8f{bottom:1074.722360px;}
.yc5{bottom:1093.262375px;}
.y5{bottom:1095.962377px;}
.y83{bottom:1105.862385px;}
.yc4{bottom:1114.142391px;}
.y4{bottom:1117.742394px;}
.y84{bottom:1130.882405px;}
.y82{bottom:1131.062405px;}
.yc3{bottom:1134.842408px;}
.y3{bottom:1139.522412px;}
.y1{bottom:1169.762436px;}
.h4{height:18.000000px;}
.h3{height:18.180000px;}
.h7{height:18.360000px;}
.h6{height:35.143622px;}
.h2{height:45.695427px;}
.h5{height:46.158787px;}
.h1{height:48.256914px;}
.h0{height:1263.000000px;}
.w1{width:9.180000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:108.000134px;}
.x4{left:115.560099px;}
.x3{left:135.000152px;}
.x13{left:148.500119px;}
.x14{left:165.780133px;}
.x2b{left:171.180137px;}
.x23{left:178.920143px;}
.x21{left:185.220148px;}
.xa{left:203.400163px;}
.x22{left:213.120170px;}
.x1f{left:223.740179px;}
.x5{left:230.760185px;}
.x9{left:254.340203px;}
.x15{left:265.320212px;}
.x18{left:269.820216px;}
.x12{left:272.880218px;}
.xb{left:277.740000px;}
.x16{left:285.660229px;}
.x17{left:290.340232px;}
.x11{left:295.380236px;}
.x6{left:299.340000px;}
.x8{left:300.420240px;}
.x1c{left:304.380244px;}
.xc{left:309.420000px;}
.xd{left:316.080253px;}
.x19{left:328.140263px;}
.x1b{left:334.440268px;}
.x25{left:340.920273px;}
.x1a{left:343.440275px;}
.x1e{left:362.880290px;}
.x1d{left:366.840293px;}
.xf{left:368.280000px;}
.xe{left:371.880000px;}
.x20{left:383.940307px;}
.x24{left:456.480365px;}
.x7{left:466.560373px;}
.x10{left:490.139766px;}
.x26{left:496.440397px;}
.x2d{left:505.980405px;}
.x29{left:518.940415px;}
.x2c{left:529.200423px;}
.x27{left:530.640425px;}
.x32{left:555.840445px;}
.x2a{left:566.460000px;}
.x31{left:568.800455px;}
.x2f{left:576.900462px;}
.x30{left:586.440469px;}
.x33{left:590.392972px;}
.x2e{left:627.120502px;}
.x34{left:628.920503px;}
.x28{left:656.640000px;}
.x1{left:810.000648px;}
@media print{
.v1{vertical-align:-1.280001pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.064256pt;}
.ls0{letter-spacing:0.244832pt;}
.ls4{letter-spacing:173.419765pt;}
.ls2{letter-spacing:738.645284pt;}
.ls3{letter-spacing:822.533351pt;}
.ws2{word-spacing:-18.698255pt;}
.ws3{word-spacing:-18.167055pt;}
.ws0{word-spacing:-16.368653pt;}
.ws5{word-spacing:-15.721229pt;}
.ws4{word-spacing:-15.656973pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-1.116646pt;}
._2{width:0.899681pt;}
._1{width:44.106195pt;}
._5{width:173.961765pt;}
._4{width:693.632738pt;}
._3{width:752.104282pt;}
._6{width:799.940663pt;}
.fs3{font-size:42.880034pt;}
.fs1{font-size:53.120042pt;}
.fs2{font-size:56.320045pt;}
.fs0{font-size:58.880047pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:2.719510pt;}
.y3f{bottom:2.719547pt;}
.y3a{bottom:2.719585pt;}
.y35{bottom:2.719623pt;}
.y2b{bottom:2.719698pt;}
.y26{bottom:2.719736pt;}
.y21{bottom:2.719773pt;}
.y58{bottom:2.720639pt;}
.y53{bottom:2.720677pt;}
.y4e{bottom:2.720714pt;}
.y49{bottom:2.879472pt;}
.y30{bottom:2.879660pt;}
.y16{bottom:2.879888pt;}
.ya2{bottom:3.199732pt;}
.y9c{bottom:3.199799pt;}
.y2{bottom:51.308041pt;}
.yc2{bottom:74.507526pt;}
.yc1{bottom:101.867548pt;}
.yc0{bottom:102.187548pt;}
.y81{bottom:109.547554pt;}
.ybf{bottom:120.907563pt;}
.y11{bottom:134.188107pt;}
.y5c{bottom:135.468108pt;}
.y7f{bottom:139.628112pt;}
.y10{bottom:153.708123pt;}
.ybe{bottom:153.868123pt;}
.y5b{bottom:154.828124pt;}
.y80{bottom:161.868129pt;}
.y7e{bottom:162.028130pt;}
.ybd{bottom:172.428138pt;}
.yf{bottom:173.068138pt;}
.y5a{bottom:174.348139pt;}
.ye{bottom:192.428154pt;}
.y57{bottom:196.107520pt;}
.y7c{bottom:198.668159pt;}
.y56{bottom:198.828159pt;}
.ybc{bottom:205.388164pt;}
.yd{bottom:208.748167pt;}
.y59{bottom:214.668172pt;}
.y55{bottom:214.988172pt;}
.y7d{bottom:220.908177pt;}
.y7b{bottom:221.068177pt;}
.ybb{bottom:224.108179pt;}
.y52{bottom:243.147520pt;}
.y51{bottom:245.868197pt;}
.yba{bottom:257.068206pt;}
.y79{bottom:257.708206pt;}
.y54{bottom:261.708209pt;}
.y50{bottom:262.028210pt;}
.yb9{bottom:275.628221pt;}
.y7a{bottom:279.948224pt;}
.y78{bottom:280.108224pt;}
.y4d{bottom:290.187520pt;}
.y4c{bottom:292.908234pt;}
.yb8{bottom:308.588247pt;}
.y4f{bottom:308.908247pt;}
.y4b{bottom:309.228247pt;}
.y76{bottom:316.748253pt;}
.yb7{bottom:327.308262pt;}
.y48{bottom:337.228800pt;}
.y77{bottom:338.988271pt;}
.y75{bottom:339.148271pt;}
.y47{bottom:340.108272pt;}
.y4a{bottom:355.948285pt;}
.y46{bottom:356.268285pt;}
.yb6{bottom:360.268288pt;}
.yb4{bottom:361.068289pt;}
.y73{bottom:375.788301pt;}
.yb5{bottom:379.308303pt;}
.yb3{bottom:379.628304pt;}
.y43{bottom:384.428800pt;}
.y42{bottom:387.148310pt;}
.y72{bottom:398.188319pt;}
.y45{bottom:402.988322pt;}
.y41{bottom:403.308323pt;}
.yb2{bottom:412.588330pt;}
.y71{bottom:420.588336pt;}
.yb1{bottom:431.308345pt;}
.y3e{bottom:431.468800pt;}
.y3d{bottom:434.188347pt;}
.y74{bottom:442.668354pt;}
.y70{bottom:442.828354pt;}
.y40{bottom:450.028360pt;}
.y3c{bottom:450.348360pt;}
.yb0{bottom:464.268371pt;}
.yac{bottom:466.508373pt;}
.y39{bottom:478.508800pt;}
.y6e{bottom:479.628384pt;}
.y38{bottom:481.228385pt;}
.yaf{bottom:483.308387pt;}
.yab{bottom:485.068388pt;}
.y3b{bottom:497.228398pt;}
.y37{bottom:497.548398pt;}
.y6d{bottom:501.868401pt;}
.yae{bottom:502.668402pt;}
.yaa{bottom:503.788403pt;}
.yad{bottom:522.028418pt;}
.ya9{bottom:522.348418pt;}
.y6c{bottom:524.268419pt;}
.y34{bottom:525.548800pt;}
.y33{bottom:528.268423pt;}
.y36{bottom:544.268435pt;}
.y32{bottom:544.588436pt;}
.y6f{bottom:546.508437pt;}
.y6b{bottom:546.668437pt;}
.ya8{bottom:555.308444pt;}
.ya5{bottom:556.908446pt;}
.y2f{bottom:572.588800pt;}
.ya7{bottom:574.508460pt;}
.y2e{bottom:575.468460pt;}
.y69{bottom:583.308467pt;}
.y31{bottom:591.308473pt;}
.y2d{bottom:591.628473pt;}
.ya6{bottom:593.868475pt;}
.ya4{bottom:594.188475pt;}
.y6a{bottom:605.388484pt;}
.y68{bottom:605.548484pt;}
.ya3{bottom:612.748490pt;}
.y2a{bottom:619.788800pt;}
.y29{bottom:622.508498pt;}
.y2c{bottom:638.348511pt;}
.y28{bottom:638.668511pt;}
.y67{bottom:642.348514pt;}
.y9f{bottom:645.708517pt;}
.ya1{bottom:661.548800pt;}
.y9e{bottom:664.428532pt;}
.ya0{bottom:664.748532pt;}
.y25{bottom:666.828800pt;}
.y24{bottom:669.548536pt;}
.y66{bottom:675.948541pt;}
.y27{bottom:685.388548pt;}
.y23{bottom:685.708549pt;}
.y63{bottom:692.428554pt;}
.y65{bottom:695.308556pt;}
.y9d{bottom:697.388558pt;}
.y20{bottom:713.868800pt;}
.y64{bottom:714.668572pt;}
.y62{bottom:714.828572pt;}
.y1f{bottom:716.588573pt;}
.y99{bottom:730.348584pt;}
.y22{bottom:732.588586pt;}
.y1e{bottom:732.908586pt;}
.y9b{bottom:746.028800pt;}
.y98{bottom:748.908599pt;}
.y9a{bottom:749.228599pt;}
.y60{bottom:751.468601pt;}
.y1d{bottom:764.428612pt;}
.y61{bottom:773.708619pt;}
.y5f{bottom:773.868619pt;}
.y8e{bottom:776.588621pt;}
.y97{bottom:781.868625pt;}
.y1c{bottom:795.628637pt;}
.y8d{bottom:795.948637pt;}
.y96{bottom:800.588640pt;}
.y5e{bottom:811.308649pt;}
.y1b{bottom:812.428650pt;}
.y19{bottom:813.388651pt;}
.y8c{bottom:815.468652pt;}
.y1a{bottom:829.388664pt;}
.y18{bottom:829.708664pt;}
.y5d{bottom:830.668665pt;}
.y8b{bottom:834.828668pt;}
.yc{bottom:838.348671pt;}
.y95{bottom:840.108672pt;}
.yb{bottom:857.708686pt;}
.y15{bottom:857.708800pt;}
.y14{bottom:860.588688pt;}
.y89{bottom:865.068692pt;}
.y94{bottom:865.868693pt;}
.y17{bottom:876.428701pt;}
.y13{bottom:876.748701pt;}
.ya{bottom:877.068702pt;}
.y93{bottom:881.388705pt;}
.y8a{bottom:887.148710pt;}
.y88{bottom:887.308710pt;}
.y9{bottom:896.588717pt;}
.y92{bottom:899.788720pt;}
.y12{bottom:907.948726pt;}
.y8{bottom:915.948733pt;}
.yc8{bottom:916.268733pt;}
.y91{bottom:918.348735pt;}
.y86{bottom:923.948739pt;}
.yc7{bottom:934.828748pt;}
.y7{bottom:935.308748pt;}
.y90{bottom:936.908750pt;}
.y87{bottom:946.188757pt;}
.y85{bottom:946.348757pt;}
.yc6{bottom:953.228763pt;}
.y6{bottom:954.668764pt;}
.y8f{bottom:955.308764pt;}
.yc5{bottom:971.788777pt;}
.y5{bottom:974.188779pt;}
.y83{bottom:982.988786pt;}
.yc4{bottom:990.348792pt;}
.y4{bottom:993.548795pt;}
.y84{bottom:1005.228804pt;}
.y82{bottom:1005.388804pt;}
.yc3{bottom:1008.748807pt;}
.y3{bottom:1012.908810pt;}
.y1{bottom:1039.788832pt;}
.h4{height:16.000000pt;}
.h3{height:16.160000pt;}
.h7{height:16.320000pt;}
.h6{height:31.238775pt;}
.h2{height:40.618157pt;}
.h5{height:41.030033pt;}
.h1{height:42.895034pt;}
.h0{height:1122.666667pt;}
.w1{width:8.160000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:96.000119pt;}
.x4{left:102.720088pt;}
.x3{left:120.000135pt;}
.x13{left:132.000106pt;}
.x14{left:147.360118pt;}
.x2b{left:152.160122pt;}
.x23{left:159.040127pt;}
.x21{left:164.640132pt;}
.xa{left:180.800145pt;}
.x22{left:189.440152pt;}
.x1f{left:198.880159pt;}
.x5{left:205.120164pt;}
.x9{left:226.080181pt;}
.x15{left:235.840189pt;}
.x18{left:239.840192pt;}
.x12{left:242.560194pt;}
.xb{left:246.880000pt;}
.x16{left:253.920203pt;}
.x17{left:258.080206pt;}
.x11{left:262.560210pt;}
.x6{left:266.080000pt;}
.x8{left:267.040214pt;}
.x1c{left:270.560216pt;}
.xc{left:275.040000pt;}
.xd{left:280.960225pt;}
.x19{left:291.680233pt;}
.x1b{left:297.280238pt;}
.x25{left:303.040242pt;}
.x1a{left:305.280244pt;}
.x1e{left:322.560258pt;}
.x1d{left:326.080261pt;}
.xf{left:327.360000pt;}
.xe{left:330.560000pt;}
.x20{left:341.280273pt;}
.x24{left:405.760325pt;}
.x7{left:414.720332pt;}
.x10{left:435.679792pt;}
.x26{left:441.280353pt;}
.x2d{left:449.760360pt;}
.x29{left:461.280369pt;}
.x2c{left:470.400376pt;}
.x27{left:471.680377pt;}
.x32{left:494.080395pt;}
.x2a{left:503.520000pt;}
.x31{left:505.600404pt;}
.x2f{left:512.800410pt;}
.x30{left:521.280417pt;}
.x33{left:524.793753pt;}
.x2e{left:557.440446pt;}
.x34{left:559.040447pt;}
.x28{left:583.680000pt;}
.x1{left:720.000576pt;}
}




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