
    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_8657369f550b650ffc39c534.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6e31c0da7592cc6d330b401c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_65b25b0d6229500434fa2894.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_147345fb35e7a0beefd20e7d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.031738;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.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.000001px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.000001px;}
.v1{vertical-align:36.000001px;}
.v4{vertical-align:71.999984px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000962px;}
.ls1{letter-spacing:0.001007px;}
.ls2{letter-spacing:0.001097px;}
.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;}
}
.ws3{word-spacing:-33.240000px;}
.ws0{word-spacing:-13.296001px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:567.480016px;}
._7{margin-left:-3818.255522px;}
._6{margin-left:-11.436449px;}
._5{margin-left:-8.673756px;}
._1{margin-left:-6.660000px;}
._2{margin-left:-5.346752px;}
._0{margin-left:-3.240000px;}
._4{margin-left:-1.711107px;}
._3{width:1.089900px;}
._9{width:2.736911px;}
._8{width:785.751526px;}
.fc6{color:rgb(0,151,167);}
.fc5{color:rgb(24,128,56);}
.fc3{color:rgb(255,0,0);}
.fc4{color:rgb(67,67,67);}
.fc2{color:rgb(102,102,102);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:44.368201px;}
.fs3{font-size:48.000004px;}
.fsa{font-size:54.627603px;}
.fs8{font-size:59.024999px;}
.fsd{font-size:60.000000px;}
.fs2{font-size:64.000007px;}
.fs13{font-size:66.000004px;}
.fs10{font-size:66.681002px;}
.fs4{font-size:72.000002px;}
.fs15{font-size:79.225194px;}
.fs7{font-size:82.675794px;}
.fs11{font-size:84.000000px;}
.fsc{font-size:92.343603px;}
.fs9{font-size:95.315997px;}
.fs1{font-size:96.000006px;}
.fs5{font-size:108.000003px;}
.fsf{font-size:120.000001px;}
.fs14{font-size:132.000007px;}
.fsb{font-size:144.000005px;}
.fs6{font-size:151.200005px;}
.fs0{font-size:180.000006px;}
.fs12{font-size:216.000007px;}
.y0{bottom:0.000000px;}
.yf{bottom:26.020186px;}
.y56{bottom:32.757135px;}
.y41{bottom:38.358511px;}
.yd{bottom:57.208100px;}
.y1c{bottom:70.530452px;}
.y7a{bottom:85.598027px;}
.y18{bottom:98.655430px;}
.y1b{bottom:98.655452px;}
.y79{bottom:103.598028px;}
.y8{bottom:111.885352px;}
.y78{bottom:121.598028px;}
.y17{bottom:126.780431px;}
.y1a{bottom:126.780453px;}
.y53{bottom:129.909130px;}
.y50{bottom:129.909985px;}
.y3a{bottom:133.283977px;}
.y7{bottom:133.485348px;}
.y77{bottom:139.598029px;}
.y63{bottom:141.592789px;}
.y55{bottom:141.721631px;}
.y52{bottom:153.534131px;}
.y4f{bottom:153.534986px;}
.y19{bottom:154.905457px;}
.yb{bottom:155.098287px;}
.y6{bottom:157.245353px;}
.y76{bottom:157.598029px;}
.y37{bottom:161.652970px;}
.y66{bottom:163.977320px;}
.y54{bottom:165.346631px;}
.y30{bottom:167.409436px;}
.y75{bottom:175.598030px;}
.y51{bottom:177.159132px;}
.y4e{bottom:177.159987px;}
.y68{bottom:185.342308px;}
.y62{bottom:186.491304px;}
.y5d{bottom:187.714832px;}
.y74{bottom:193.598031px;}
.y65{bottom:196.377327px;}
.y16{bottom:200.491225px;}
.y39{bottom:201.091037px;}
.ye{bottom:201.905044px;}
.yc{bottom:203.255166px;}
.y73{bottom:211.598031px;}
.y3e{bottom:211.791250px;}
.y4a{bottom:220.460608px;}
.y4d{bottom:220.460957px;}
.y47{bottom:220.461801px;}
.y2f{bottom:221.526843px;}
.y5{bottom:223.305816px;}
.y64{bottom:228.777333px;}
.y72{bottom:229.598032px;}
.y67{bottom:230.219740px;}
.y36{bottom:231.901978px;}
.y2d{bottom:233.787408px;}
.y2b{bottom:236.465538px;}
.y22{bottom:239.459107px;}
.y4{bottom:239.595817px;}
.y10{bottom:242.573886px;}
.y49{bottom:244.085609px;}
.y4c{bottom:244.085958px;}
.y46{bottom:244.086801px;}
.y71{bottom:247.598032px;}
.y3d{bottom:251.391251px;}
.y15{bottom:259.238549px;}
.y70{bottom:265.598033px;}
.y38{bottom:267.229834px;}
.y48{bottom:267.710610px;}
.y4b{bottom:267.710958px;}
.y45{bottom:267.711802px;}
.y6f{bottom:283.598033px;}
.y24{bottom:285.634835px;}
.y5c{bottom:290.527422px;}
.y3c{bottom:290.991252px;}
.y14{bottom:291.638555px;}
.y3{bottom:293.697620px;}
.y61{bottom:301.397926px;}
.y3b{bottom:301.756400px;}
.y35{bottom:304.776015px;}
.y27{bottom:312.980072px;}
.y21{bottom:315.552910px;}
.y5b{bottom:322.927427px;}
.y44{bottom:331.040548px;}
.y26{bottom:332.984376px;}
.y60{bottom:333.797931px;}
.y2{bottom:347.697622px;}
.y20{bottom:348.657870px;}
.y13{bottom:348.925318px;}
.y25{bottom:352.988677px;}
.y34{bottom:354.429559px;}
.y2e{bottom:356.611762px;}
.y40{bottom:367.034885px;}
.y23{bottom:373.125593px;}
.y1d{bottom:373.127055px;}
.y6e{bottom:374.722897px;}
.y33{bottom:379.179560px;}
.y6b{bottom:380.017913px;}
.y5f{bottom:382.641034px;}
.y2a{bottom:386.490586px;}
.y3f{bottom:391.784886px;}
.y12{bottom:392.125324px;}
.y5a{bottom:398.959835px;}
.y43{bottom:399.349602px;}
.y1{bottom:401.697620px;}
.y32{bottom:403.929563px;}
.y1f{bottom:406.873395px;}
.y6d{bottom:407.122905px;}
.y29{bottom:411.240589px;}
.y58{bottom:413.965749px;}
.y6a{bottom:416.017910px;}
.y5e{bottom:418.641035px;}
.y59{bottom:434.959836px;}
.y11{bottom:435.325326px;}
.y42{bottom:435.349603px;}
.y1e{bottom:439.273401px;}
.y6c{bottom:439.522910px;}
.y28{bottom:439.880192px;}
.y57{bottom:449.965750px;}
.y2c{bottom:450.867392px;}
.y69{bottom:451.058102px;}
.y31{bottom:467.272751px;}
.ya{bottom:471.164643px;}
.y9{bottom:527.658851px;}
.h11{height:32.301264px;}
.h3{height:34.968753px;}
.hc{height:39.770389px;}
.ha{height:42.971813px;}
.h1e{height:43.681641px;}
.h10{height:43.710938px;}
.h17{height:48.049807px;}
.h14{height:48.545593px;}
.h13{height:48.578152px;}
.h6{height:52.417970px;}
.h5{height:52.453127px;}
.h1a{height:57.716791px;}
.h9{height:60.190238px;}
.h15{height:61.195312px;}
.he{height:67.228668px;}
.hf{height:67.273758px;}
.h18{height:67.388672px;}
.hb{height:69.392652px;}
.h4{height:78.626956px;}
.h8{height:78.679690px;}
.h2{height:82.625006px;}
.h1b{height:86.642581px;}
.h1c{height:87.363282px;}
.h12{height:87.421876px;}
.h19{height:96.164068px;}
.hd{height:104.906253px;}
.h7{height:110.077738px;}
.h1{height:131.044926px;}
.h16{height:157.359380px;}
.h1d{height:159.363266px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x28{left:46.266733px;}
.x7{left:48.098146px;}
.x3b{left:55.762798px;}
.x1c{left:74.027070px;}
.x58{left:91.547249px;}
.x53{left:94.487396px;}
.x4d{left:96.738191px;}
.x5b{left:99.307088px;}
.x26{left:102.151668px;}
.x52{left:112.509370px;}
.x1b{left:114.165359px;}
.x12{left:130.966537px;}
.x1{left:139.950826px;}
.x9{left:141.162369px;}
.x2d{left:154.823385px;}
.x4{left:156.333808px;}
.x51{left:158.137801px;}
.x3c{left:164.379920px;}
.x4c{left:165.516744px;}
.x59{left:168.025526px;}
.x27{left:189.013351px;}
.x54{left:190.529882px;}
.x5{left:204.698234px;}
.x8{left:208.489754px;}
.x5a{left:216.554609px;}
.x20{left:224.267722px;}
.x1a{left:230.976232px;}
.x43{left:232.472606px;}
.x50{left:240.487208px;}
.x4b{left:242.920816px;}
.x1e{left:244.308878px;}
.x3{left:246.100733px;}
.x1d{left:250.251049px;}
.x42{left:255.576048px;}
.xc{left:276.460636px;}
.x1f{left:308.149626px;}
.x2{left:314.919089px;}
.x15{left:325.350725px;}
.x2c{left:341.865528px;}
.x16{left:343.331201px;}
.x31{left:346.381909px;}
.x3e{left:348.334174px;}
.x11{left:350.306899px;}
.x13{left:361.709652px;}
.x14{left:367.472329px;}
.xb{left:385.483422px;}
.x2b{left:390.320547px;}
.x32{left:392.176183px;}
.x33{left:396.623038px;}
.x2e{left:399.423185px;}
.x30{left:401.749523px;}
.x2f{left:405.259527px;}
.x25{left:418.944996px;}
.x6{left:421.426768px;}
.x24{left:423.013525px;}
.x3d{left:435.995530px;}
.x4f{left:439.188022px;}
.x57{left:442.380479px;}
.x45{left:463.550674px;}
.x47{left:471.237897px;}
.x44{left:473.059950px;}
.x46{left:524.049924px;}
.x23{left:563.580727px;}
.x55{left:566.607281px;}
.xa{left:575.081937px;}
.x17{left:580.888813px;}
.x19{left:583.880845px;}
.x2a{left:593.288378px;}
.x18{left:594.772888px;}
.xe{left:608.373919px;}
.x4e{left:611.235245px;}
.x56{left:617.016406px;}
.x37{left:622.322840px;}
.x34{left:623.565684px;}
.x21{left:630.981470px;}
.x36{left:646.029707px;}
.x35{left:655.545582px;}
.x4a{left:690.209898px;}
.x48{left:700.106014px;}
.x40{left:713.313340px;}
.x49{left:714.419938px;}
.xd{left:716.212215px;}
.x41{left:730.365675px;}
.x3f{left:733.675780px;}
.x22{left:781.801450px;}
.x29{left:785.229384px;}
.xf{left:836.940357px;}
.x38{left:847.730390px;}
.x10{left:858.533922px;}
.x3a{left:866.035669px;}
.x39{left:870.109322px;}
@media print{
.v2{vertical-align:-24.000001pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.000001pt;}
.v1{vertical-align:32.000001pt;}
.v4{vertical-align:63.999986pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000855pt;}
.ls1{letter-spacing:0.000895pt;}
.ls2{letter-spacing:0.000975pt;}
.ws3{word-spacing:-29.546667pt;}
.ws0{word-spacing:-11.818668pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:504.426681pt;}
._7{margin-left:-3394.004909pt;}
._6{margin-left:-10.165732pt;}
._5{margin-left:-7.710005pt;}
._1{margin-left:-5.920000pt;}
._2{margin-left:-4.752668pt;}
._0{margin-left:-2.880000pt;}
._4{margin-left:-1.520984pt;}
._3{width:0.968800pt;}
._9{width:2.432810pt;}
._8{width:698.445801pt;}
.fse{font-size:39.438401pt;}
.fs3{font-size:42.666670pt;}
.fsa{font-size:48.557870pt;}
.fs8{font-size:52.466666pt;}
.fsd{font-size:53.333334pt;}
.fs2{font-size:56.888895pt;}
.fs13{font-size:58.666670pt;}
.fs10{font-size:59.272002pt;}
.fs4{font-size:64.000002pt;}
.fs15{font-size:70.422394pt;}
.fs7{font-size:73.489594pt;}
.fs11{font-size:74.666666pt;}
.fsc{font-size:82.083203pt;}
.fs9{font-size:84.725331pt;}
.fs1{font-size:85.333339pt;}
.fs5{font-size:96.000003pt;}
.fsf{font-size:106.666667pt;}
.fs14{font-size:117.333340pt;}
.fsb{font-size:128.000004pt;}
.fs6{font-size:134.400004pt;}
.fs0{font-size:160.000005pt;}
.fs12{font-size:192.000006pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:23.129054pt;}
.y56{bottom:29.117454pt;}
.y41{bottom:34.096454pt;}
.yd{bottom:50.851644pt;}
.y1c{bottom:62.693735pt;}
.y7a{bottom:76.087135pt;}
.y18{bottom:87.693716pt;}
.y1b{bottom:87.693736pt;}
.y79{bottom:92.087136pt;}
.y8{bottom:99.453646pt;}
.y78{bottom:108.087136pt;}
.y17{bottom:112.693716pt;}
.y1a{bottom:112.693736pt;}
.y53{bottom:115.474782pt;}
.y50{bottom:115.475542pt;}
.y3a{bottom:118.474647pt;}
.y7{bottom:118.653643pt;}
.y77{bottom:124.087137pt;}
.y63{bottom:125.860257pt;}
.y55{bottom:125.974783pt;}
.y52{bottom:136.474783pt;}
.y4f{bottom:136.475543pt;}
.y19{bottom:137.693739pt;}
.yb{bottom:137.865144pt;}
.y6{bottom:139.773647pt;}
.y76{bottom:140.087137pt;}
.y37{bottom:143.691529pt;}
.y66{bottom:145.757617pt;}
.y54{bottom:146.974783pt;}
.y30{bottom:148.808387pt;}
.y75{bottom:156.087138pt;}
.y51{bottom:157.474784pt;}
.y4e{bottom:157.475544pt;}
.y68{bottom:164.748718pt;}
.y62{bottom:165.770048pt;}
.y5d{bottom:166.857628pt;}
.y74{bottom:172.087138pt;}
.y65{bottom:174.557624pt;}
.y16{bottom:178.214422pt;}
.y39{bottom:178.747588pt;}
.ye{bottom:179.471150pt;}
.yc{bottom:180.671259pt;}
.y73{bottom:188.087139pt;}
.y3e{bottom:188.258889pt;}
.y4a{bottom:195.964985pt;}
.y4d{bottom:195.965295pt;}
.y47{bottom:195.966045pt;}
.y2f{bottom:196.912749pt;}
.y5{bottom:198.494059pt;}
.y64{bottom:203.357629pt;}
.y72{bottom:204.087139pt;}
.y67{bottom:204.639769pt;}
.y36{bottom:206.135091pt;}
.y2d{bottom:207.811029pt;}
.y2b{bottom:210.191589pt;}
.y22{bottom:212.852540pt;}
.y4{bottom:212.974060pt;}
.y10{bottom:215.621232pt;}
.y49{bottom:216.964986pt;}
.y4c{bottom:216.965296pt;}
.y46{bottom:216.966046pt;}
.y71{bottom:220.087140pt;}
.y3d{bottom:223.458890pt;}
.y15{bottom:230.434266pt;}
.y70{bottom:236.087140pt;}
.y38{bottom:237.537630pt;}
.y48{bottom:237.964986pt;}
.y4b{bottom:237.965296pt;}
.y45{bottom:237.966046pt;}
.y6f{bottom:252.087141pt;}
.y24{bottom:253.897631pt;}
.y5c{bottom:258.246597pt;}
.y3c{bottom:258.658891pt;}
.y14{bottom:259.234271pt;}
.y3{bottom:261.064551pt;}
.y61{bottom:267.909267pt;}
.y3b{bottom:268.227911pt;}
.y35{bottom:270.912013pt;}
.y27{bottom:278.204509pt;}
.y21{bottom:280.491476pt;}
.y5b{bottom:287.046602pt;}
.y44{bottom:294.258265pt;}
.y26{bottom:295.986112pt;}
.y60{bottom:296.709272pt;}
.y2{bottom:309.064553pt;}
.y20{bottom:309.918107pt;}
.y13{bottom:310.155839pt;}
.y25{bottom:313.767713pt;}
.y34{bottom:315.048497pt;}
.y2e{bottom:316.988233pt;}
.y40{bottom:326.253231pt;}
.y23{bottom:331.667193pt;}
.y1d{bottom:331.668493pt;}
.y6e{bottom:333.087019pt;}
.y33{bottom:337.048498pt;}
.y6b{bottom:337.793701pt;}
.y5f{bottom:340.125364pt;}
.y2a{bottom:343.547188pt;}
.y3f{bottom:348.253232pt;}
.y12{bottom:348.555844pt;}
.y5a{bottom:354.630964pt;}
.y43{bottom:354.977424pt;}
.y1{bottom:357.064551pt;}
.y32{bottom:359.048500pt;}
.y1f{bottom:361.665240pt;}
.y6d{bottom:361.887026pt;}
.y29{bottom:365.547190pt;}
.y58{bottom:367.969554pt;}
.y6a{bottom:369.793698pt;}
.y5e{bottom:372.125365pt;}
.y59{bottom:386.630965pt;}
.y11{bottom:386.955845pt;}
.y42{bottom:386.977425pt;}
.y1e{bottom:390.465245pt;}
.y6c{bottom:390.687031pt;}
.y28{bottom:391.004615pt;}
.y57{bottom:399.969556pt;}
.y2c{bottom:400.771016pt;}
.y69{bottom:400.940536pt;}
.y31{bottom:415.353556pt;}
.ya{bottom:418.813016pt;}
.y9{bottom:469.030090pt;}
.h11{height:28.712235pt;}
.h3{height:31.083336pt;}
.hc{height:35.351457pt;}
.ha{height:38.197167pt;}
.h1e{height:38.828125pt;}
.h10{height:38.854167pt;}
.h17{height:42.710940pt;}
.h14{height:43.151638pt;}
.h13{height:43.180580pt;}
.h6{height:46.593751pt;}
.h5{height:46.625001pt;}
.h1a{height:51.303815pt;}
.h9{height:53.502434pt;}
.h15{height:54.395833pt;}
.he{height:59.758816pt;}
.hf{height:59.798896pt;}
.h18{height:59.901041pt;}
.hb{height:61.682357pt;}
.h4{height:69.890627pt;}
.h8{height:69.937502pt;}
.h2{height:73.444450pt;}
.h1b{height:77.015627pt;}
.h1c{height:77.656251pt;}
.h12{height:77.708334pt;}
.h19{height:85.479171pt;}
.hd{height:93.250003pt;}
.h7{height:97.846878pt;}
.h1{height:116.484379pt;}
.h16{height:139.875004pt;}
.h1d{height:141.656237pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x28{left:41.125985pt;}
.x7{left:42.753907pt;}
.x3b{left:49.566932pt;}
.x1c{left:65.801840pt;}
.x58{left:81.375333pt;}
.x53{left:83.988797pt;}
.x4d{left:85.989503pt;}
.x5b{left:88.272967pt;}
.x26{left:90.801483pt;}
.x52{left:100.008329pt;}
.x1b{left:101.480319pt;}
.x12{left:116.414700pt;}
.x1{left:124.400734pt;}
.x9{left:125.477661pt;}
.x2d{left:137.620786pt;}
.x4{left:138.963384pt;}
.x51{left:140.566934pt;}
.x3c{left:146.115485pt;}
.x4c{left:147.125995pt;}
.x59{left:149.356023pt;}
.x27{left:168.011867pt;}
.x54{left:169.359895pt;}
.x5{left:181.953986pt;}
.x8{left:185.324226pt;}
.x5a{left:192.492986pt;}
.x20{left:199.349086pt;}
.x1a{left:205.312207pt;}
.x43{left:206.642317pt;}
.x50{left:213.766407pt;}
.x4b{left:215.929614pt;}
.x1e{left:217.163447pt;}
.x3{left:218.756207pt;}
.x1d{left:222.445377pt;}
.x42{left:227.178709pt;}
.xc{left:245.742788pt;}
.x1f{left:273.910779pt;}
.x2{left:279.928079pt;}
.x15{left:289.200644pt;}
.x2c{left:303.880470pt;}
.x16{left:305.183290pt;}
.x31{left:307.895030pt;}
.x3e{left:309.630377pt;}
.x11{left:311.383910pt;}
.x13{left:321.519690pt;}
.x14{left:326.642070pt;}
.xb{left:342.651931pt;}
.x2b{left:346.951597pt;}
.x32{left:348.601051pt;}
.x33{left:352.553811pt;}
.x2e{left:355.042831pt;}
.x30{left:357.110687pt;}
.x2f{left:360.230691pt;}
.x25{left:372.395552pt;}
.x6{left:374.601572pt;}
.x24{left:376.012022pt;}
.x3d{left:387.551582pt;}
.x4f{left:390.389352pt;}
.x57{left:393.227093pt;}
.x45{left:412.045043pt;}
.x47{left:418.878130pt;}
.x44{left:420.497733pt;}
.x46{left:465.822155pt;}
.x23{left:500.960646pt;}
.x55{left:503.650916pt;}
.xa{left:511.183944pt;}
.x17{left:516.345612pt;}
.x19{left:519.005196pt;}
.x2a{left:527.367447pt;}
.x18{left:528.687012pt;}
.xe{left:540.776817pt;}
.x4e{left:543.320217pt;}
.x56{left:548.459028pt;}
.x37{left:553.175858pt;}
.x34{left:554.280608pt;}
.x21{left:560.872418pt;}
.x36{left:574.248628pt;}
.x35{left:582.707184pt;}
.x4a{left:613.519910pt;}
.x48{left:622.316457pt;}
.x40{left:634.056302pt;}
.x49{left:635.039945pt;}
.xd{left:636.633080pt;}
.x41{left:649.213934pt;}
.x3f{left:652.156249pt;}
.x22{left:694.934622pt;}
.x29{left:697.981674pt;}
.xf{left:743.946984pt;}
.x38{left:753.538124pt;}
.x10{left:763.141264pt;}
.x3a{left:769.809484pt;}
.x39{left:773.430509pt;}
}




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