
    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_94bcf47cef796d96ee3535fe.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.926758;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_41848eff69e614ba9b6259a6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.940918;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_d440c25fabe95e882be082bf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.710000;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_20ee43f0509cc892c41d89cd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.793945;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_454b8077e8b91c46420fbfa8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_aef903b448cc0aed996b4f6c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_dd005c7a0e35f012242582bd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.913086;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:110.044804px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:18.205979px;}
.ls0{letter-spacing:119.990145px;}
.ls1{letter-spacing:173.990146px;}
.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;}
}
.ws0{word-spacing:-53.184003px;}
.ws1{word-spacing:-46.536000px;}
.ws2{word-spacing:0.000000px;}
._2d{margin-left:-50.726933px;}
._3{margin-left:-20.736001px;}
._12{margin-left:-19.298701px;}
._0{margin-left:-18.240001px;}
._46{margin-left:-12.960000px;}
._5{margin-left:-10.152000px;}
._2{margin-left:-8.856000px;}
._1{margin-left:-6.840000px;}
._6{margin-left:-4.968000px;}
._4{margin-left:-3.888000px;}
._a{margin-left:-2.880900px;}
._7{margin-left:-1.080000px;}
._8{width:1.239151px;}
._9{width:2.956348px;}
._3b{width:5.376000px;}
._1b{width:7.647663px;}
._17{width:9.051080px;}
._16{width:10.054974px;}
._45{width:13.343998px;}
._1a{width:14.496001px;}
._19{width:15.792001px;}
._25{width:17.472001px;}
._41{width:20.352901px;}
._1c{width:22.848001px;}
._11{width:25.152902px;}
._2b{width:28.464002px;}
._2a{width:29.904002px;}
._34{width:33.024002px;}
._32{width:34.063711px;}
._c{width:35.328902px;}
._2c{width:46.080003px;}
._3a{width:47.232003px;}
._22{width:52.128003px;}
._39{width:57.600004px;}
._30{width:60.840004px;}
._31{width:62.208004px;}
._38{width:74.856904px;}
._b{width:76.032005px;}
._29{width:82.944005px;}
._1e{width:84.480005px;}
._1f{width:86.148350px;}
._d{width:88.128006px;}
._15{width:100.145226px;}
._f{width:103.200007px;}
._e{width:104.496006px;}
._10{width:117.888007px;}
._14{width:139.008009px;}
._40{width:153.792010px;}
._21{width:171.046211px;}
._20{width:172.224911px;}
._37{width:174.336911px;}
._35{width:185.856012px;}
._44{width:187.968012px;}
._13{width:189.696012px;}
._2f{width:230.976015px;}
._18{width:234.240015px;}
._2e{width:237.513033px;}
._27{width:239.078997px;}
._26{width:240.360015px;}
._1d{width:293.760019px;}
._42{width:310.464020px;}
._3c{width:329.856021px;}
._3d{width:331.402456px;}
._23{width:403.968026px;}
._24{width:404.988247px;}
._36{width:431.808027px;}
._33{width:512.832032px;}
._3e{width:552.960035px;}
._43{width:602.643415px;}
._3f{width:992.832063px;}
._28{width:7766.758568px;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc4{color:transparent;}
.fc1{color:rgb(117,112,112);}
.fc0{color:rgb(126,139,218);}
.fs6{font-size:108.000003px;}
.fs4{font-size:144.000005px;}
.fs5{font-size:167.999999px;}
.fs3{font-size:192.000012px;}
.fs2{font-size:204.000001px;}
.fs1{font-size:216.000007px;}
.fs0{font-size:456.000027px;}
.y0{bottom:0.000000px;}
.y4b{bottom:50.370585px;}
.y4a{bottom:93.570591px;}
.y49{bottom:136.770593px;}
.y4e{bottom:193.792356px;}
.y4d{bottom:244.192357px;}
.y4c{bottom:294.592352px;}
.y5b{bottom:350.028311px;}
.y5a{bottom:400.428306px;}
.y48{bottom:484.679441px;}
.y47{bottom:542.279443px;}
.y46{bottom:599.879332px;}
.y45{bottom:657.479334px;}
.y44{bottom:715.079224px;}
.y43{bottom:772.679226px;}
.y42{bottom:830.279115px;}
.y41{bottom:887.879117px;}
.y40{bottom:945.479006px;}
.y3f{bottom:1003.079008px;}
.y3e{bottom:1060.678897px;}
.y3d{bottom:1118.278899px;}
.y3c{bottom:1175.878788px;}
.y3b{bottom:1233.478790px;}
.y3a{bottom:1291.078680px;}
.y39{bottom:1348.678569px;}
.y38{bottom:1406.278571px;}
.y37{bottom:1463.878606px;}
.y36{bottom:1521.478619px;}
.y35{bottom:1579.078644px;}
.y59{bottom:1617.809857px;}
.y34{bottom:1636.678657px;}
.y33{bottom:1694.278693px;}
.y32{bottom:1751.878694px;}
.y31{bottom:1809.478696px;}
.y30{bottom:1867.078698px;}
.y2f{bottom:1924.678767px;}
.y2e{bottom:1982.278780px;}
.y2d{bottom:2039.878794px;}
.y2c{bottom:2097.478818px;}
.y2b{bottom:2155.078820px;}
.y4f{bottom:2184.155909px;}
.y2a{bottom:2212.678844px;}
.y56{bottom:2238.285172px;}
.y29{bottom:2270.278857px;}
.y28{bottom:2327.878837px;}
.y50{bottom:2330.807470px;}
.y27{bottom:2385.478832px;}
.y26{bottom:2415.567628px;}
.y25{bottom:2473.167630px;}
.y24{bottom:2530.767632px;}
.y51{bottom:2568.288786px;}
.y23{bottom:2588.367701px;}
.y22{bottom:2645.967714px;}
.y58{bottom:2658.026860px;}
.y21{bottom:2703.567727px;}
.y57{bottom:2708.426854px;}
.y20{bottom:2761.167752px;}
.y1f{bottom:2818.767753px;}
.y1e{bottom:2876.367778px;}
.y1d{bottom:2933.967791px;}
.y1c{bottom:2991.567770px;}
.y1b{bottom:3049.167765px;}
.y1a{bottom:3106.767763px;}
.y18{bottom:3147.012985px;}
.y19{bottom:3192.065873px;}
.y17{bottom:3204.612998px;}
.y16{bottom:3262.213023px;}
.y15{bottom:3319.813036px;}
.y14{bottom:3377.413071px;}
.y13{bottom:3435.013073px;}
.y12{bottom:3492.613075px;}
.y11{bottom:3550.213077px;}
.y10{bottom:3607.813146px;}
.yf{bottom:3665.413159px;}
.ye{bottom:3723.013172px;}
.yd{bottom:3780.613197px;}
.yc{bottom:3838.213199px;}
.yb{bottom:3895.813223px;}
.ya{bottom:3953.413236px;}
.y9{bottom:4011.013215px;}
.y8{bottom:4068.613210px;}
.y7{bottom:4126.213208px;}
.y5c{bottom:4186.553260px;}
.y6{bottom:4200.775263px;}
.y5{bottom:4358.152890px;}
.y4{bottom:4434.952908px;}
.y3{bottom:4544.152895px;}
.y55{bottom:4650.306625px;}
.y2{bottom:4682.077548px;}
.y54{bottom:4715.106615px;}
.y53{bottom:4779.906629px;}
.y1{bottom:4818.877552px;}
.y52{bottom:4844.706622px;}
.h8{height:71.982424px;}
.h6{height:105.257816px;}
.h7{height:122.800781px;}
.h4{height:140.343759px;}
.h3{height:142.800000px;}
.h9{height:157.253911px;}
.h2{height:157.886724px;}
.h5{height:250.388562px;}
.h1{height:333.316426px;}
.h0{height:5053.500000px;}
.w0{width:3628.500000px;}
.x0{left:0.000000px;}
.x5{left:68.398802px;}
.xf{left:85.039844px;}
.x4{left:101.520476px;}
.x9{left:108.789337px;}
.x3{left:110.090906px;}
.x2{left:114.048667px;}
.x1{left:120.857955px;}
.x6{left:143.036341px;}
.xa{left:146.454980px;}
.xb{left:1322.002842px;}
.x15{left:1332.390080px;}
.x13{left:1391.767211px;}
.x10{left:1512.540323px;}
.x12{left:1673.006150px;}
.x11{left:1768.483182px;}
.x14{left:1914.387069px;}
.x8{left:2795.077803px;}
.x7{left:2883.215342px;}
.xe{left:3215.385092px;}
.xd{left:3221.845056px;}
.xc{left:3241.264491px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:97.817603pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:16.183092pt;}
.ls0{letter-spacing:106.657906pt;}
.ls1{letter-spacing:154.657908pt;}
.ws0{word-spacing:-47.274670pt;}
.ws1{word-spacing:-41.365333pt;}
.ws2{word-spacing:0.000000pt;}
._2d{margin-left:-45.090607pt;}
._3{margin-left:-18.432001pt;}
._12{margin-left:-17.154401pt;}
._0{margin-left:-16.213334pt;}
._46{margin-left:-11.520000pt;}
._5{margin-left:-9.024000pt;}
._2{margin-left:-7.872000pt;}
._1{margin-left:-6.080000pt;}
._6{margin-left:-4.416000pt;}
._4{margin-left:-3.456000pt;}
._a{margin-left:-2.560800pt;}
._7{margin-left:-0.960000pt;}
._8{width:1.101468pt;}
._9{width:2.627865pt;}
._3b{width:4.778667pt;}
._1b{width:6.797922pt;}
._17{width:8.045404pt;}
._16{width:8.937755pt;}
._45{width:11.861331pt;}
._1a{width:12.885334pt;}
._19{width:14.037334pt;}
._25{width:15.530668pt;}
._41{width:18.091468pt;}
._1c{width:20.309335pt;}
._11{width:22.358135pt;}
._2b{width:25.301335pt;}
._2a{width:26.581335pt;}
._34{width:29.354669pt;}
._32{width:30.278854pt;}
._c{width:31.403469pt;}
._2c{width:40.960003pt;}
._3a{width:41.984003pt;}
._22{width:46.336003pt;}
._39{width:51.200003pt;}
._30{width:54.080003pt;}
._31{width:55.296003pt;}
._38{width:66.539471pt;}
._b{width:67.584004pt;}
._29{width:73.728005pt;}
._1e{width:75.093338pt;}
._1f{width:76.576311pt;}
._d{width:78.336005pt;}
._15{width:89.017979pt;}
._f{width:91.733339pt;}
._e{width:92.885339pt;}
._10{width:104.789340pt;}
._14{width:123.562674pt;}
._40{width:136.704009pt;}
._21{width:152.041076pt;}
._20{width:153.088810pt;}
._37{width:154.966143pt;}
._35{width:165.205344pt;}
._44{width:167.082677pt;}
._13{width:168.618677pt;}
._2f{width:205.312013pt;}
._18{width:208.213347pt;}
._2e{width:211.122696pt;}
._27{width:212.514664pt;}
._26{width:213.653347pt;}
._1d{width:261.120017pt;}
._42{width:275.968017pt;}
._3c{width:293.205352pt;}
._3d{width:294.579961pt;}
._23{width:359.082689pt;}
._24{width:359.989552pt;}
._36{width:383.829358pt;}
._33{width:455.850695pt;}
._3e{width:491.520031pt;}
._43{width:535.683035pt;}
._3f{width:882.517389pt;}
._28{width:6903.785394pt;}
.fs6{font-size:96.000003pt;}
.fs4{font-size:128.000004pt;}
.fs5{font-size:149.333333pt;}
.fs3{font-size:170.666677pt;}
.fs2{font-size:181.333334pt;}
.fs1{font-size:192.000006pt;}
.fs0{font-size:405.333357pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:44.773854pt;}
.y4a{bottom:83.173859pt;}
.y49{bottom:121.573860pt;}
.y4e{bottom:172.259872pt;}
.y4d{bottom:217.059873pt;}
.y4c{bottom:261.859869pt;}
.y5b{bottom:311.136276pt;}
.y5a{bottom:355.936272pt;}
.y48{bottom:430.826170pt;}
.y47{bottom:482.026172pt;}
.y46{bottom:533.226073pt;}
.y45{bottom:584.426075pt;}
.y44{bottom:635.625977pt;}
.y43{bottom:686.825978pt;}
.y42{bottom:738.025880pt;}
.y41{bottom:789.225882pt;}
.y40{bottom:840.425783pt;}
.y3f{bottom:891.625785pt;}
.y3e{bottom:942.825686pt;}
.y3d{bottom:994.025688pt;}
.y3c{bottom:1045.225590pt;}
.y3b{bottom:1096.425591pt;}
.y3a{bottom:1147.625493pt;}
.y39{bottom:1198.825395pt;}
.y38{bottom:1250.025396pt;}
.y37{bottom:1301.225428pt;}
.y36{bottom:1352.425440pt;}
.y35{bottom:1403.625461pt;}
.y59{bottom:1438.053206pt;}
.y34{bottom:1454.825473pt;}
.y33{bottom:1506.025504pt;}
.y32{bottom:1557.225506pt;}
.y31{bottom:1608.425508pt;}
.y30{bottom:1659.625509pt;}
.y2f{bottom:1710.825571pt;}
.y2e{bottom:1762.025583pt;}
.y2d{bottom:1813.225594pt;}
.y2c{bottom:1864.425616pt;}
.y2b{bottom:1915.625618pt;}
.y4f{bottom:1941.471919pt;}
.y2a{bottom:1966.825639pt;}
.y56{bottom:1989.586820pt;}
.y29{bottom:2018.025651pt;}
.y28{bottom:2069.225632pt;}
.y50{bottom:2071.828863pt;}
.y27{bottom:2120.425628pt;}
.y26{bottom:2147.171225pt;}
.y25{bottom:2198.371227pt;}
.y24{bottom:2249.571228pt;}
.y51{bottom:2282.923365pt;}
.y23{bottom:2300.771290pt;}
.y22{bottom:2351.971302pt;}
.y58{bottom:2362.690542pt;}
.y21{bottom:2403.171313pt;}
.y57{bottom:2407.490537pt;}
.y20{bottom:2454.371335pt;}
.y1f{bottom:2505.571336pt;}
.y1e{bottom:2556.771358pt;}
.y1d{bottom:2607.971370pt;}
.y1c{bottom:2659.171351pt;}
.y1b{bottom:2710.371347pt;}
.y1a{bottom:2761.571345pt;}
.y18{bottom:2797.344876pt;}
.y19{bottom:2837.391887pt;}
.y17{bottom:2848.544887pt;}
.y16{bottom:2899.744909pt;}
.y15{bottom:2950.944921pt;}
.y14{bottom:3002.144952pt;}
.y13{bottom:3053.344954pt;}
.y12{bottom:3104.544956pt;}
.y11{bottom:3155.744957pt;}
.y10{bottom:3206.945019pt;}
.yf{bottom:3258.145031pt;}
.ye{bottom:3309.345042pt;}
.yd{bottom:3360.545064pt;}
.yc{bottom:3411.745065pt;}
.yb{bottom:3462.945087pt;}
.ya{bottom:3514.145099pt;}
.y9{bottom:3565.345080pt;}
.y8{bottom:3616.545076pt;}
.y7{bottom:3667.745074pt;}
.y5c{bottom:3721.380675pt;}
.y6{bottom:3734.022456pt;}
.y5{bottom:3873.913680pt;}
.y4{bottom:3942.180362pt;}
.y3{bottom:4039.247018pt;}
.y55{bottom:4133.605889pt;}
.y2{bottom:4161.846709pt;}
.y54{bottom:4191.205880pt;}
.y53{bottom:4248.805892pt;}
.y1{bottom:4283.446713pt;}
.y52{bottom:4306.405886pt;}
.h8{height:63.984377pt;}
.h6{height:93.562503pt;}
.h7{height:109.156250pt;}
.h4{height:124.750008pt;}
.h3{height:126.933334pt;}
.h9{height:139.781254pt;}
.h2{height:140.343754pt;}
.h5{height:222.567611pt;}
.h1{height:296.281267pt;}
.h0{height:4492.000000pt;}
.w0{width:3225.333333pt;}
.x0{left:0.000000pt;}
.x5{left:60.798935pt;}
.xf{left:75.590972pt;}
.x4{left:90.240423pt;}
.x9{left:96.701633pt;}
.x3{left:97.858583pt;}
.x2{left:101.376593pt;}
.x1{left:107.429293pt;}
.x6{left:127.143414pt;}
.xa{left:130.182204pt;}
.xb{left:1175.113638pt;}
.x15{left:1184.346738pt;}
.x13{left:1237.126410pt;}
.x10{left:1344.480287pt;}
.x12{left:1487.116578pt;}
.x11{left:1571.985050pt;}
.x14{left:1701.677394pt;}
.x8{left:2484.513603pt;}
.x7{left:2562.858082pt;}
.xe{left:2858.120081pt;}
.xd{left:2863.862272pt;}
.xc{left:2881.123992pt;}
}




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