
    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_8458cfff15f44d532dcd5de4.woff')format("woff");}.ff1{font-family:ff1;line-height:0.823730;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_a3558b96cb55ac4fa7383404.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_5878993251e487063bea89c9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_0b71f673b5837db56fcaee33.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a3c535b967ef8a33eae2735e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_0adfddac2c69fd50751711c5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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;}
.v1{vertical-align:12.240418px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.094301px;}
.ls0{letter-spacing:22.317750px;}
.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:-79.204500px;}
.ws3{word-spacing:-23.855201px;}
.ws0{word-spacing:-23.761125px;}
.ws4{word-spacing:-23.760900px;}
.ws5{word-spacing:-15.840563px;}
.ws2{word-spacing:0.000000px;}
._5{margin-left:-10.693046px;}
._1e{margin-left:-9.409316px;}
._4{margin-left:-8.173922px;}
._3{margin-left:-6.591305px;}
._1{margin-left:-4.942409px;}
._6{margin-left:-3.235094px;}
._2{margin-left:-1.237860px;}
._0{width:1.048595px;}
._15{width:2.069844px;}
._17{width:3.231482px;}
._1a{width:4.452570px;}
._d{width:5.954094px;}
._e{width:7.037064px;}
._14{width:8.414599px;}
._10{width:10.187946px;}
._f{width:11.405340px;}
._16{width:13.202025px;}
._7{width:14.256580px;}
._8{width:16.111183px;}
._19{width:17.464163px;}
._30{width:18.470123px;}
._1f{width:19.472753px;}
._1b{width:21.067750px;}
._1c{width:22.181064px;}
._20{width:24.914042px;}
._b{width:26.315921px;}
._c{width:27.569541px;}
._9{width:28.645011px;}
._a{width:29.836163px;}
._28{width:30.859679px;}
._25{width:32.536695px;}
._26{width:33.796983px;}
._21{width:35.261918px;}
._22{width:36.907215px;}
._2a{width:38.352546px;}
._29{width:39.794310px;}
._3b{width:41.413591px;}
._3a{width:42.530327px;}
._38{width:47.236669px;}
._39{width:48.438574px;}
._2b{width:52.076628px;}
._12{width:53.125011px;}
._11{width:54.178798px;}
._18{width:77.030094px;}
._2f{width:79.957105px;}
._2e{width:81.448717px;}
._23{width:243.134010px;}
._36{width:250.685349px;}
._31{width:256.649562px;}
._37{width:260.714031px;}
._2c{width:278.850569px;}
._35{width:280.253043px;}
._2d{width:297.677541px;}
._32{width:299.385335px;}
._33{width:307.738139px;}
._34{width:352.065700px;}
._3c{width:545.856809px;}
._3e{width:816.516841px;}
._1d{width:870.135542px;}
._3d{width:1270.509128px;}
._27{width:1695.568988px;}
._24{width:1697.728898px;}
._13{width:1727.248889px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:63.362250px;}
.fs1{font-size:63.364500px;}
.fs4{font-size:71.282700px;}
.fs0{font-size:71.284500px;}
.fs3{font-size:79.204500px;}
.fs6{font-size:95.043600px;}
.fs2{font-size:95.044500px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.980000px;}
.y18{bottom:37.980011px;}
.y2{bottom:41.040000px;}
.y39{bottom:41.040115px;}
.y38{bottom:99.540115px;}
.y9a{bottom:100.080093px;}
.y7e{bottom:102.240005px;}
.y58{bottom:121.320099px;}
.y70{bottom:121.860077px;}
.y37{bottom:127.980079px;}
.y99{bottom:128.520058px;}
.y67{bottom:129.240074px;}
.y7d{bottom:130.860077px;}
.y71{bottom:149.940033px;}
.y6f{bottom:150.300041px;}
.y98{bottom:154.620072px;}
.y36{bottom:155.880066px;}
.y7c{bottom:158.580093px;}
.y69{bottom:178.560036px;}
.y6e{bottom:178.920043px;}
.y97{bottom:180.900055px;}
.y35{bottom:183.600083px;}
.y66{bottom:184.680039px;}
.y7b{bottom:186.300041px;}
.y57{bottom:207.000068px;}
.y6d{bottom:207.360077px;}
.y34{bottom:211.320099px;}
.y65{bottom:212.580093px;}
.y7a{bottom:214.020058px;}
.y56{bottom:235.620072px;}
.y6c{bottom:235.980079px;}
.y33{bottom:239.040047px;}
.y64{bottom:240.300041px;}
.y79{bottom:241.740074px;}
.y96{bottom:259.380066px;}
.y55{bottom:264.060036px;}
.y16{bottom:264.420000px;}
.y6b{bottom:264.420043px;}
.y32{bottom:266.760064px;}
.y63{bottom:268.020058px;}
.y78{bottom:269.640060px;}
.y95{bottom:285.480079px;}
.y54{bottom:292.680039px;}
.y15{bottom:293.040000px;}
.y6a{bottom:293.040047px;}
.y31{bottom:294.480079px;}
.y62{bottom:295.740074px;}
.y77{bottom:297.360077px;}
.y53{bottom:321.120072px;}
.y7f{bottom:321.480079px;}
.y30{bottom:322.380066px;}
.y76{bottom:325.080093px;}
.y94{bottom:337.680039px;}
.y68{bottom:349.740074px;}
.y2f{bottom:350.100083px;}
.y14{bottom:350.100150px;}
.y75{bottom:352.800041px;}
.y93{bottom:363.960091px;}
.y52{bottom:378.180039px;}
.y5d{bottom:378.540047px;}
.y13{bottom:378.540150px;}
.y61{bottom:378.900055px;}
.y74{bottom:380.520058px;}
.y92{bottom:390.060036px;}
.y51{bottom:406.800041px;}
.y2e{bottom:407.160049px;}
.y12{bottom:407.160150px;}
.y73{bottom:408.240074px;}
.y91{bottom:416.160049px;}
.y50{bottom:435.240074px;}
.y2d{bottom:435.600083px;}
.y11{bottom:435.600150px;}
.y72{bottom:435.960091px;}
.y4f{bottom:463.860077px;}
.y2c{bottom:464.220085px;}
.y90{bottom:468.540047px;}
.y4e{bottom:492.300041px;}
.y10{bottom:492.660000px;}
.y2b{bottom:492.660049px;}
.y8f{bottom:494.640060px;}
.y4d{bottom:520.920043px;}
.yf{bottom:521.280000px;}
.y2a{bottom:521.280052px;}
.y8e{bottom:547.020058px;}
.y4c{bottom:549.360077px;}
.y29{bottom:549.720085px;}
.y8d{bottom:573.120072px;}
.y4b{bottom:577.980079px;}
.ye{bottom:578.340000px;}
.y28{bottom:578.340088px;}
.y4a{bottom:606.420043px;}
.yd{bottom:606.780000px;}
.y27{bottom:606.780052px;}
.y8c{bottom:625.500068px;}
.y49{bottom:635.040047px;}
.yc{bottom:635.400000px;}
.y26{bottom:635.400055px;}
.y8b{bottom:651.600083px;}
.y48{bottom:663.480079px;}
.y8a{bottom:677.700096px;}
.y47{bottom:692.100083px;}
.y25{bottom:692.460056px;}
.y60{bottom:720.540081px;}
.yb{bottom:720.900000px;}
.y5c{bottom:720.900055px;}
.y46{bottom:749.160049px;}
.ya{bottom:749.520000px;}
.y5b{bottom:749.520058px;}
.y89{bottom:756.180073px;}
.y5f{bottom:777.600083px;}
.y5a{bottom:777.960056px;}
.y88{bottom:782.460056px;}
.y45{bottom:806.220051px;}
.y9{bottom:806.580000px;}
.y59{bottom:806.580059px;}
.y44{bottom:834.660049px;}
.y8{bottom:835.020000px;}
.y24{bottom:835.020058px;}
.y87{bottom:860.760064px;}
.y43{bottom:863.280052px;}
.y7{bottom:863.640000px;}
.y23{bottom:863.640060px;}
.y42{bottom:891.720051px;}
.y6{bottom:892.080000px;}
.y22{bottom:892.080059px;}
.y86{bottom:913.140060px;}
.y41{bottom:920.340054px;}
.y21{bottom:920.700061px;}
.y85{bottom:939.240074px;}
.y40{bottom:948.780053px;}
.y5{bottom:949.140000px;}
.y20{bottom:949.140060px;}
.y3f{bottom:977.400072px;}
.y4{bottom:977.760000px;}
.y1f{bottom:977.760064px;}
.y84{bottom:991.620072px;}
.y3e{bottom:1005.840070px;}
.y1e{bottom:1006.200061px;}
.y83{bottom:1017.720068px;}
.y3d{bottom:1034.460074px;}
.y1d{bottom:1034.820065px;}
.y17{bottom:1039.860000px;}
.y82{bottom:1043.820065px;}
.y3c{bottom:1062.900072px;}
.y1c{bottom:1063.260064px;}
.y5e{bottom:1091.520058px;}
.y1b{bottom:1091.880066px;}
.y81{bottom:1096.200061px;}
.y3b{bottom:1119.960065px;}
.y1a{bottom:1120.320065px;}
.y80{bottom:1122.300067px;}
.y3a{bottom:1148.580068px;}
.y3{bottom:1148.940000px;}
.y19{bottom:1148.940067px;}
.h6{height:55.303923px;}
.hd{height:55.596662px;}
.h3{height:55.598636px;}
.hc{height:57.534328px;}
.h2{height:57.535781px;}
.h8{height:64.414315px;}
.h9{height:65.992187px;}
.h7{height:67.837080px;}
.ha{height:83.395190px;}
.h5{height:83.395980px;}
.hb{height:84.416166px;}
.h4{height:84.416966px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:89.820000px;}
.x3{left:120.780000px;}
.xf{left:140.939999px;}
.x13{left:174.240006px;}
.x5{left:196.740000px;}
.x1a{left:210.419992px;}
.x7{left:214.560000px;}
.x4{left:218.880000px;}
.x12{left:224.639992px;}
.x8{left:251.640000px;}
.xe{left:255.960000px;}
.xa{left:286.920000px;}
.xb{left:292.500000px;}
.x9{left:302.580000px;}
.x6{left:320.220000px;}
.x1c{left:324.720017px;}
.xd{left:343.440000px;}
.xc{left:369.000000px;}
.x18{left:383.939999px;}
.x1d{left:386.459988px;}
.x11{left:389.160015px;}
.x10{left:410.939999px;}
.x14{left:504.180005px;}
.x16{left:529.379998px;}
.x1{left:532.800000px;}
.x17{left:635.940033px;}
.x15{left:656.100014px;}
.x1b{left:710.279983px;}
.x19{left:774.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880372pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.083823pt;}
.ls0{letter-spacing:19.838000pt;}
.ws1{word-spacing:-70.404000pt;}
.ws3{word-spacing:-21.204623pt;}
.ws0{word-spacing:-21.121000pt;}
.ws4{word-spacing:-21.120800pt;}
.ws5{word-spacing:-14.080500pt;}
.ws2{word-spacing:0.000000pt;}
._5{margin-left:-9.504929pt;}
._1e{margin-left:-8.363837pt;}
._4{margin-left:-7.265708pt;}
._3{margin-left:-5.858938pt;}
._1{margin-left:-4.393252pt;}
._6{margin-left:-2.875639pt;}
._2{margin-left:-1.100320pt;}
._0{width:0.932084pt;}
._15{width:1.839861pt;}
._17{width:2.872429pt;}
._1a{width:3.957840pt;}
._d{width:5.292528pt;}
._e{width:6.255168pt;}
._14{width:7.479643pt;}
._10{width:9.055952pt;}
._f{width:10.138080pt;}
._16{width:11.735133pt;}
._7{width:12.672516pt;}
._8{width:14.321052pt;}
._19{width:15.523700pt;}
._30{width:16.417887pt;}
._1f{width:17.309114pt;}
._1b{width:18.726889pt;}
._1c{width:19.716501pt;}
._20{width:22.145815pt;}
._b{width:23.391930pt;}
._c{width:24.506259pt;}
._9{width:25.462232pt;}
._a{width:26.521033pt;}
._28{width:27.430826pt;}
._25{width:28.921506pt;}
._26{width:30.041762pt;}
._21{width:31.343927pt;}
._22{width:32.806414pt;}
._2a{width:34.091152pt;}
._29{width:35.372720pt;}
._3b{width:36.812081pt;}
._3a{width:37.804735pt;}
._38{width:41.988150pt;}
._39{width:43.056510pt;}
._2b{width:46.290336pt;}
._12{width:47.222232pt;}
._11{width:48.158931pt;}
._18{width:68.471194pt;}
._2f{width:71.072983pt;}
._2e{width:72.398859pt;}
._23{width:216.119120pt;}
._36{width:222.831422pt;}
._31{width:228.132944pt;}
._37{width:231.745805pt;}
._2c{width:247.867172pt;}
._35{width:249.113816pt;}
._2d{width:264.602259pt;}
._32{width:266.120298pt;}
._33{width:273.545012pt;}
._34{width:312.947289pt;}
._3c{width:485.206053pt;}
._3e{width:725.792748pt;}
._1d{width:773.453815pt;}
._3d{width:1129.341447pt;}
._27{width:1507.172434pt;}
._24{width:1509.092354pt;}
._13{width:1535.332346pt;}
.fs5{font-size:56.322000pt;}
.fs1{font-size:56.324000pt;}
.fs4{font-size:63.362400pt;}
.fs0{font-size:63.364000pt;}
.fs3{font-size:70.404000pt;}
.fs6{font-size:84.483200pt;}
.fs2{font-size:84.484000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.760000pt;}
.y18{bottom:33.760010pt;}
.y2{bottom:36.480000pt;}
.y39{bottom:36.480103pt;}
.y38{bottom:88.480103pt;}
.y9a{bottom:88.960083pt;}
.y7e{bottom:90.880005pt;}
.y58{bottom:107.840088pt;}
.y70{bottom:108.320069pt;}
.y37{bottom:113.760071pt;}
.y99{bottom:114.240052pt;}
.y67{bottom:114.880066pt;}
.y7d{bottom:116.320069pt;}
.y71{bottom:133.280030pt;}
.y6f{bottom:133.600037pt;}
.y98{bottom:137.440064pt;}
.y36{bottom:138.560059pt;}
.y7c{bottom:140.960083pt;}
.y69{bottom:158.720032pt;}
.y6e{bottom:159.040039pt;}
.y97{bottom:160.800049pt;}
.y35{bottom:163.200074pt;}
.y66{bottom:164.160035pt;}
.y7b{bottom:165.600037pt;}
.y57{bottom:184.000061pt;}
.y6d{bottom:184.320069pt;}
.y34{bottom:187.840088pt;}
.y65{bottom:188.960083pt;}
.y7a{bottom:190.240052pt;}
.y56{bottom:209.440064pt;}
.y6c{bottom:209.760071pt;}
.y33{bottom:212.480042pt;}
.y64{bottom:213.600037pt;}
.y79{bottom:214.880066pt;}
.y96{bottom:230.560059pt;}
.y55{bottom:234.720032pt;}
.y16{bottom:235.040000pt;}
.y6b{bottom:235.040039pt;}
.y32{bottom:237.120057pt;}
.y63{bottom:238.240052pt;}
.y78{bottom:239.680054pt;}
.y95{bottom:253.760071pt;}
.y54{bottom:260.160035pt;}
.y15{bottom:260.480000pt;}
.y6a{bottom:260.480042pt;}
.y31{bottom:261.760071pt;}
.y62{bottom:262.880066pt;}
.y77{bottom:264.320069pt;}
.y53{bottom:285.440064pt;}
.y7f{bottom:285.760071pt;}
.y30{bottom:286.560059pt;}
.y76{bottom:288.960083pt;}
.y94{bottom:300.160035pt;}
.y68{bottom:310.880066pt;}
.y2f{bottom:311.200074pt;}
.y14{bottom:311.200133pt;}
.y75{bottom:313.600037pt;}
.y93{bottom:323.520081pt;}
.y52{bottom:336.160035pt;}
.y5d{bottom:336.480042pt;}
.y13{bottom:336.480133pt;}
.y61{bottom:336.800049pt;}
.y74{bottom:338.240052pt;}
.y92{bottom:346.720032pt;}
.y51{bottom:361.600037pt;}
.y2e{bottom:361.920044pt;}
.y12{bottom:361.920133pt;}
.y73{bottom:362.880066pt;}
.y91{bottom:369.920044pt;}
.y50{bottom:386.880066pt;}
.y2d{bottom:387.200074pt;}
.y11{bottom:387.200133pt;}
.y72{bottom:387.520081pt;}
.y4f{bottom:412.320069pt;}
.y2c{bottom:412.640076pt;}
.y90{bottom:416.480042pt;}
.y4e{bottom:437.600037pt;}
.y10{bottom:437.920000pt;}
.y2b{bottom:437.920044pt;}
.y8f{bottom:439.680054pt;}
.y4d{bottom:463.040039pt;}
.yf{bottom:463.360000pt;}
.y2a{bottom:463.360047pt;}
.y8e{bottom:486.240052pt;}
.y4c{bottom:488.320069pt;}
.y29{bottom:488.640076pt;}
.y8d{bottom:509.440064pt;}
.y4b{bottom:513.760071pt;}
.ye{bottom:514.080000pt;}
.y28{bottom:514.080079pt;}
.y4a{bottom:539.040039pt;}
.yd{bottom:539.360000pt;}
.y27{bottom:539.360047pt;}
.y8c{bottom:556.000061pt;}
.y49{bottom:564.480042pt;}
.yc{bottom:564.800000pt;}
.y26{bottom:564.800049pt;}
.y8b{bottom:579.200074pt;}
.y48{bottom:589.760071pt;}
.y8a{bottom:602.400086pt;}
.y47{bottom:615.200074pt;}
.y25{bottom:615.520050pt;}
.y60{bottom:640.480072pt;}
.yb{bottom:640.800000pt;}
.y5c{bottom:640.800049pt;}
.y46{bottom:665.920044pt;}
.ya{bottom:666.240000pt;}
.y5b{bottom:666.240052pt;}
.y89{bottom:672.160065pt;}
.y5f{bottom:691.200074pt;}
.y5a{bottom:691.520050pt;}
.y88{bottom:695.520050pt;}
.y45{bottom:716.640046pt;}
.y9{bottom:716.960000pt;}
.y59{bottom:716.960053pt;}
.y44{bottom:741.920044pt;}
.y8{bottom:742.240000pt;}
.y24{bottom:742.240052pt;}
.y87{bottom:765.120057pt;}
.y43{bottom:767.360047pt;}
.y7{bottom:767.680000pt;}
.y23{bottom:767.680054pt;}
.y42{bottom:792.640046pt;}
.y6{bottom:792.960000pt;}
.y22{bottom:792.960053pt;}
.y86{bottom:811.680054pt;}
.y41{bottom:818.080048pt;}
.y21{bottom:818.400055pt;}
.y85{bottom:834.880066pt;}
.y40{bottom:843.360047pt;}
.y5{bottom:843.680000pt;}
.y20{bottom:843.680054pt;}
.y3f{bottom:868.800064pt;}
.y4{bottom:869.120000pt;}
.y1f{bottom:869.120057pt;}
.y84{bottom:881.440064pt;}
.y3e{bottom:894.080063pt;}
.y1e{bottom:894.400055pt;}
.y83{bottom:904.640061pt;}
.y3d{bottom:919.520066pt;}
.y1d{bottom:919.840058pt;}
.y17{bottom:924.320000pt;}
.y82{bottom:927.840058pt;}
.y3c{bottom:944.800064pt;}
.y1c{bottom:945.120057pt;}
.y5e{bottom:970.240052pt;}
.y1b{bottom:970.560059pt;}
.y81{bottom:974.400055pt;}
.y3b{bottom:995.520058pt;}
.y1a{bottom:995.840058pt;}
.y80{bottom:997.600060pt;}
.y3a{bottom:1020.960061pt;}
.y3{bottom:1021.280000pt;}
.y19{bottom:1021.280060pt;}
.h6{height:49.159043pt;}
.hd{height:49.419255pt;}
.h3{height:49.421010pt;}
.hc{height:51.141625pt;}
.h2{height:51.142916pt;}
.h8{height:57.257169pt;}
.h9{height:58.659722pt;}
.h7{height:60.299627pt;}
.ha{height:74.129058pt;}
.h5{height:74.129760pt;}
.hb{height:75.036592pt;}
.h4{height:75.037303pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:79.840000pt;}
.x3{left:107.360000pt;}
.xf{left:125.279999pt;}
.x13{left:154.880005pt;}
.x5{left:174.880000pt;}
.x1a{left:187.039993pt;}
.x7{left:190.720000pt;}
.x4{left:194.560000pt;}
.x12{left:199.679993pt;}
.x8{left:223.680000pt;}
.xe{left:227.520000pt;}
.xa{left:255.040000pt;}
.xb{left:260.000000pt;}
.x9{left:268.960000pt;}
.x6{left:284.640000pt;}
.x1c{left:288.640015pt;}
.xd{left:305.280000pt;}
.xc{left:328.000000pt;}
.x18{left:341.279999pt;}
.x1d{left:343.519989pt;}
.x11{left:345.920013pt;}
.x10{left:365.279999pt;}
.x14{left:448.160004pt;}
.x16{left:470.559998pt;}
.x1{left:473.600000pt;}
.x17{left:565.280029pt;}
.x15{left:583.200012pt;}
.x1b{left:631.359985pt;}
.x19{left:688.000000pt;}
}




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