
    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_cea3a8c6d2edace0dc2d0ea7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.075000;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_e5bcc7c835182cc06520b841.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_789f67b8b2d6009011dff307.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.062000;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_bd9fe1754bba26e3ae8a54c6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.062000;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_0b5ccee5807f41701a7a216d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.079000;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_7f4db4e1864194a59421fb41.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.079000;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_e313adc9ffc29589524db6ee.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.061000;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:ff8;src:url('chunks/assets/font_14501331bcc22e9fec2059d1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.005000;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:ff9;src:url('chunks/assets/font_99cc7e4d7e6005cd0107c577.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.062000;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:ffa;src:url('chunks/assets/font_20d425d059356404fd22f6f9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.028000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.030949px;}
.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;}
}
.ws7{word-spacing:-46.313450px;}
.ws0{word-spacing:-42.698677px;}
.ws3{word-spacing:-18.006785px;}
.ws1{word-spacing:-16.498716px;}
.ws8{word-spacing:-15.001902px;}
.ws6{word-spacing:-10.504682px;}
.ws4{word-spacing:-6.996050px;}
.ws5{word-spacing:-5.901460px;}
.ws2{word-spacing:0.000000px;}
._12{margin-left:-1.004082px;}
._3{width:1.275903px;}
._2{width:3.190053px;}
._15{width:5.000341px;}
._18{width:6.880595px;}
._13{width:8.455633px;}
._1{width:9.807709px;}
._c{width:11.176866px;}
._4{width:12.748967px;}
._14{width:14.070440px;}
._5{width:15.347352px;}
._6{width:17.768086px;}
._10{width:19.491363px;}
._1d{width:20.825749px;}
._a{width:21.907971px;}
._8{width:23.541287px;}
._0{width:25.580707px;}
._7{width:26.639979px;}
._9{width:27.981965px;}
._b{width:29.649581px;}
._2c{width:34.084167px;}
._e{width:35.282704px;}
._17{width:36.501737px;}
._25{width:37.947055px;}
._11{width:39.188612px;}
._27{width:40.801434px;}
._1a{width:42.671378px;}
._1e{width:44.045976px;}
._20{width:45.243677px;}
._2e{width:47.565376px;}
._28{width:48.735790px;}
._23{width:50.346154px;}
._d{width:51.505472px;}
._2a{width:52.818644px;}
._16{width:54.760534px;}
._1c{width:56.885193px;}
._2b{width:58.629371px;}
._1f{width:62.130961px;}
._2d{width:70.175400px;}
._29{width:71.856455px;}
._26{width:73.611152px;}
._19{width:75.034808px;}
._1b{width:80.171380px;}
._22{width:92.187855px;}
._21{width:111.600041px;}
._f{width:113.894035px;}
._24{width:129.148265px;}
.fc3{color:rgb(1,52,44);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,76,62);}
.fs5{font-size:18.675507px;}
.fs4{font-size:27.984200px;}
.fs6{font-size:29.750527px;}
.fs7{font-size:42.018727px;}
.fs3{font-size:54.020354px;}
.fs8{font-size:60.007609px;}
.fs1{font-size:65.994864px;}
.fs2{font-size:72.027138px;}
.fs0{font-size:84.001650px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y72{bottom:3.779660px;}
.y6c{bottom:4.925012px;}
.y6e{bottom:5.066692px;}
.y70{bottom:5.070822px;}
.y78{bottom:5.908156px;}
.y7a{bottom:7.951205px;}
.y77{bottom:15.824999px;}
.y73{bottom:20.655020px;}
.y6f{bottom:21.735020px;}
.y76{bottom:25.741841px;}
.y75{bottom:35.658684px;}
.y6d{bottom:40.095019px;}
.y71{bottom:42.255019px;}
.y74{bottom:45.575526px;}
.y6b{bottom:57.375018px;}
.y68{bottom:96.859719px;}
.y67{bottom:119.368200px;}
.y79{bottom:127.215015px;}
.y66{bottom:141.876680px;}
.y20{bottom:156.568805px;}
.y36{bottom:160.083744px;}
.y65{bottom:164.385161px;}
.y1f{bottom:179.077286px;}
.y35{bottom:182.592225px;}
.y5a{bottom:186.257777px;}
.y64{bottom:186.893642px;}
.y8a{bottom:190.281637px;}
.y1e{bottom:201.585767px;}
.y34{bottom:205.100706px;}
.y89{bottom:208.288421px;}
.y59{bottom:208.766258px;}
.y63{bottom:209.402122px;}
.y1d{bottom:224.094247px;}
.y88{bottom:226.295206px;}
.y33{bottom:227.609186px;}
.y58{bottom:231.274739px;}
.y62{bottom:231.910603px;}
.y1c{bottom:246.602728px;}
.y32{bottom:250.117667px;}
.y57{bottom:253.783219px;}
.y61{bottom:254.419084px;}
.y86{bottom:268.546296px;}
.y1b{bottom:269.111209px;}
.y31{bottom:272.626148px;}
.y56{bottom:276.291700px;}
.y60{bottom:276.927564px;}
.y1a{bottom:291.619689px;}
.y30{bottom:295.134628px;}
.y55{bottom:298.800181px;}
.y5f{bottom:299.436045px;}
.y19{bottom:314.128170px;}
.y2f{bottom:317.643109px;}
.y54{bottom:321.308661px;}
.y5e{bottom:321.944526px;}
.y18{bottom:336.636651px;}
.y2e{bottom:340.151590px;}
.y8b{bottom:342.132509px;}
.y53{bottom:343.817142px;}
.y17{bottom:359.145131px;}
.y2d{bottom:362.660070px;}
.y52{bottom:366.325622px;}
.y5d{bottom:366.645084px;}
.y16{bottom:381.653612px;}
.y2c{bottom:385.168551px;}
.y87{bottom:389.274163px;}
.y2b{bottom:407.677032px;}
.y51{bottom:411.342584px;}
.y15{bottom:426.670573px;}
.y2a{bottom:430.185512px;}
.y50{bottom:433.851064px;}
.y14{bottom:449.179054px;}
.y29{bottom:452.693993px;}
.y4f{bottom:456.359545px;}
.y7b{bottom:457.553236px;}
.y13{bottom:471.687535px;}
.y28{bottom:475.202474px;}
.y4e{bottom:478.868026px;}
.y12{bottom:494.196015px;}
.y27{bottom:497.710954px;}
.y4d{bottom:501.376506px;}
.y11{bottom:516.704496px;}
.y26{bottom:520.219435px;}
.y4c{bottom:523.884987px;}
.y10{bottom:539.212976px;}
.y25{bottom:542.727916px;}
.y4b{bottom:546.393468px;}
.y24{bottom:565.236396px;}
.y4a{bottom:568.901948px;}
.yf{bottom:584.161245px;}
.y23{bottom:587.744877px;}
.ye{bottom:608.920574px;}
.y22{bottom:610.253358px;}
.y49{bottom:613.918910px;}
.y48{bottom:636.427390px;}
.y21{bottom:654.984837px;}
.y47{bottom:658.935871px;}
.y46{bottom:681.444352px;}
.y45{bottom:703.952832px;}
.y44{bottom:726.461313px;}
.y43{bottom:748.969794px;}
.y42{bottom:771.478274px;}
.y5c{bottom:793.986755px;}
.y41{bottom:816.495236px;}
.y40{bottom:839.003716px;}
.yd{bottom:858.467227px;}
.y3f{bottom:861.512197px;}
.yc{bottom:880.975708px;}
.y3e{bottom:884.020678px;}
.yb{bottom:903.484189px;}
.y3d{bottom:906.529158px;}
.ya{bottom:925.992669px;}
.y3c{bottom:929.037639px;}
.y84{bottom:936.607683px;}
.y9{bottom:948.501150px;}
.y3b{bottom:951.546120px;}
.y83{bottom:959.116163px;}
.y8{bottom:971.009631px;}
.y3a{bottom:974.054600px;}
.y82{bottom:981.624644px;}
.y7{bottom:993.518111px;}
.y5b{bottom:996.563081px;}
.y81{bottom:1004.133125px;}
.y6{bottom:1016.026592px;}
.y39{bottom:1019.071562px;}
.y80{bottom:1026.641605px;}
.y5{bottom:1038.535072px;}
.y38{bottom:1041.580042px;}
.y7f{bottom:1049.150086px;}
.y37{bottom:1064.088523px;}
.y7e{bottom:1071.658567px;}
.y4{bottom:1082.005380px;}
.y7d{bottom:1094.167047px;}
.y7c{bottom:1116.675528px;}
.y6a{bottom:1120.993946px;}
.y3{bottom:1136.265809px;}
.y69{bottom:1145.753275px;}
.y85{bottom:1162.667870px;}
.y2{bottom:1165.526834px;}
.ha{height:9.000000px;}
.h8{height:12.959999px;}
.hb{height:15.033783px;}
.he{height:19.439999px;}
.h9{height:22.751155px;}
.hd{height:24.187179px;}
.hf{height:34.161225px;}
.h6{height:43.972568px;}
.h11{height:48.786186px;}
.h10{height:48.846194px;}
.hc{height:53.639998px;}
.h4{height:53.719820px;}
.h7{height:54.643748px;}
.h5{height:59.638470px;}
.h3{height:69.553366px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w5{width:30.959999px;}
.w7{width:46.079998px;}
.w4{width:62.279997px;}
.w3{width:65.879997px;}
.w2{width:66.239997px;}
.w6{width:200.519992px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:41.243204px;}
.x3{left:43.552352px;}
.xe{left:45.943812px;}
.x5{left:47.986994px;}
.xf{left:56.664852px;}
.x1{left:60.138057px;}
.x4{left:71.600029px;}
.xa{left:119.519995px;}
.xb{left:127.079995px;}
.x2{left:367.431572px;}
.x6{left:469.237524px;}
.x7{left:497.003335px;}
.x9{left:618.479974px;}
.x8{left:620.279974px;}
.xc{left:737.926471px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.027511pt;}
.ws7{word-spacing:-41.167511pt;}
.ws0{word-spacing:-37.954380pt;}
.ws3{word-spacing:-16.006031pt;}
.ws1{word-spacing:-14.665525pt;}
.ws8{word-spacing:-13.335024pt;}
.ws6{word-spacing:-9.337495pt;}
.ws4{word-spacing:-6.218711pt;}
.ws5{word-spacing:-5.245742pt;}
.ws2{word-spacing:0.000000pt;}
._12{margin-left:-0.892517pt;}
._3{width:1.134136pt;}
._2{width:2.835603pt;}
._15{width:4.444748pt;}
._18{width:6.116084pt;}
._13{width:7.516118pt;}
._1{width:8.717964pt;}
._c{width:9.934992pt;}
._4{width:11.332415pt;}
._14{width:12.507057pt;}
._5{width:13.642091pt;}
._6{width:15.793854pt;}
._10{width:17.325656pt;}
._1d{width:18.511777pt;}
._a{width:19.473752pt;}
._8{width:20.925589pt;}
._0{width:22.738406pt;}
._7{width:23.679981pt;}
._9{width:24.872858pt;}
._b{width:26.355183pt;}
._2c{width:30.297037pt;}
._e{width:31.362403pt;}
._17{width:32.445989pt;}
._25{width:33.730715pt;}
._11{width:34.834322pt;}
._27{width:36.267941pt;}
._1a{width:37.930114pt;}
._1e{width:39.151979pt;}
._20{width:40.216601pt;}
._2e{width:42.280334pt;}
._28{width:43.320703pt;}
._23{width:44.752137pt;}
._d{width:45.782642pt;}
._2a{width:46.949906pt;}
._16{width:48.676030pt;}
._1c{width:50.564616pt;}
._2b{width:52.114996pt;}
._1f{width:55.227521pt;}
._2d{width:62.378133pt;}
._29{width:63.872404pt;}
._26{width:65.432135pt;}
._19{width:66.697607pt;}
._1b{width:71.263449pt;}
._22{width:81.944760pt;}
._21{width:99.200036pt;}
._f{width:101.239142pt;}
._24{width:114.798458pt;}
.fs5{font-size:16.600451pt;}
.fs4{font-size:24.874844pt;}
.fs6{font-size:26.444913pt;}
.fs7{font-size:37.349980pt;}
.fs3{font-size:48.018092pt;}
.fs8{font-size:53.340097pt;}
.fs1{font-size:58.662102pt;}
.fs2{font-size:64.024123pt;}
.fs0{font-size:74.668133pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y72{bottom:3.359697pt;}
.y6c{bottom:4.377788pt;}
.y6e{bottom:4.503726pt;}
.y70{bottom:4.507398pt;}
.y78{bottom:5.251695pt;}
.y7a{bottom:7.067738pt;}
.y77{bottom:14.066666pt;}
.y73{bottom:18.360018pt;}
.y6f{bottom:19.320018pt;}
.y76{bottom:22.881637pt;}
.y75{bottom:31.696608pt;}
.y6d{bottom:35.640017pt;}
.y71{bottom:37.560017pt;}
.y74{bottom:40.511579pt;}
.y6b{bottom:51.000016pt;}
.y68{bottom:86.097528pt;}
.y67{bottom:106.105066pt;}
.y79{bottom:113.080014pt;}
.y66{bottom:126.112605pt;}
.y20{bottom:139.172271pt;}
.y36{bottom:142.296662pt;}
.y65{bottom:146.120143pt;}
.y1f{bottom:159.179810pt;}
.y35{bottom:162.304200pt;}
.y5a{bottom:165.562469pt;}
.y64{bottom:166.127681pt;}
.y8a{bottom:169.139233pt;}
.y1e{bottom:179.187348pt;}
.y34{bottom:182.311738pt;}
.y89{bottom:185.145263pt;}
.y59{bottom:185.570007pt;}
.y63{bottom:186.135220pt;}
.y1d{bottom:199.194886pt;}
.y88{bottom:201.151294pt;}
.y33{bottom:202.319277pt;}
.y58{bottom:205.577545pt;}
.y62{bottom:206.142758pt;}
.y1c{bottom:219.202425pt;}
.y32{bottom:222.326815pt;}
.y57{bottom:225.585084pt;}
.y61{bottom:226.150296pt;}
.y86{bottom:238.707819pt;}
.y1b{bottom:239.209963pt;}
.y31{bottom:242.334353pt;}
.y56{bottom:245.592622pt;}
.y60{bottom:246.157835pt;}
.y1a{bottom:259.217502pt;}
.y30{bottom:262.341892pt;}
.y55{bottom:265.600160pt;}
.y5f{bottom:266.165373pt;}
.y19{bottom:279.225040pt;}
.y2f{bottom:282.349430pt;}
.y54{bottom:285.607699pt;}
.y5e{bottom:286.172912pt;}
.y18{bottom:299.232578pt;}
.y2e{bottom:302.356969pt;}
.y8b{bottom:304.117786pt;}
.y53{bottom:305.615237pt;}
.y17{bottom:319.240117pt;}
.y2d{bottom:322.364507pt;}
.y52{bottom:325.622776pt;}
.y5d{bottom:325.906741pt;}
.y16{bottom:339.247655pt;}
.y2c{bottom:342.372045pt;}
.y87{bottom:346.021478pt;}
.y2b{bottom:362.379584pt;}
.y51{bottom:365.637852pt;}
.y15{bottom:379.262732pt;}
.y2a{bottom:382.387122pt;}
.y50{bottom:385.645391pt;}
.y14{bottom:399.270270pt;}
.y29{bottom:402.394660pt;}
.y4f{bottom:405.652929pt;}
.y7b{bottom:406.713988pt;}
.y13{bottom:419.277808pt;}
.y28{bottom:422.402199pt;}
.y4e{bottom:425.660467pt;}
.y12{bottom:439.285347pt;}
.y27{bottom:442.409737pt;}
.y4d{bottom:445.668006pt;}
.y11{bottom:459.292885pt;}
.y26{bottom:462.417275pt;}
.y4c{bottom:465.675544pt;}
.y10{bottom:479.300424pt;}
.y25{bottom:482.424814pt;}
.y4b{bottom:485.683082pt;}
.y24{bottom:502.432352pt;}
.y4a{bottom:505.690621pt;}
.yf{bottom:519.254440pt;}
.y23{bottom:522.439891pt;}
.ye{bottom:541.262732pt;}
.y22{bottom:542.447429pt;}
.y49{bottom:545.705698pt;}
.y48{bottom:565.713236pt;}
.y21{bottom:582.208744pt;}
.y47{bottom:585.720774pt;}
.y46{bottom:605.728313pt;}
.y45{bottom:625.735851pt;}
.y44{bottom:645.743389pt;}
.y43{bottom:665.750928pt;}
.y42{bottom:685.758466pt;}
.y5c{bottom:705.766005pt;}
.y41{bottom:725.773543pt;}
.y40{bottom:745.781081pt;}
.yd{bottom:763.081980pt;}
.y3f{bottom:765.788620pt;}
.yc{bottom:783.089518pt;}
.y3e{bottom:785.796158pt;}
.yb{bottom:803.097056pt;}
.y3d{bottom:805.803696pt;}
.ya{bottom:823.104595pt;}
.y3c{bottom:825.811235pt;}
.y84{bottom:832.540162pt;}
.y9{bottom:843.112133pt;}
.y3b{bottom:845.818773pt;}
.y83{bottom:852.547701pt;}
.y8{bottom:863.119672pt;}
.y3a{bottom:865.826311pt;}
.y82{bottom:872.555239pt;}
.y7{bottom:883.127210pt;}
.y5b{bottom:885.833850pt;}
.y81{bottom:892.562778pt;}
.y6{bottom:903.134748pt;}
.y39{bottom:905.841388pt;}
.y80{bottom:912.570316pt;}
.y5{bottom:923.142287pt;}
.y38{bottom:925.848927pt;}
.y7f{bottom:932.577854pt;}
.y37{bottom:945.856465pt;}
.y7e{bottom:952.585393pt;}
.y4{bottom:961.782560pt;}
.y7d{bottom:972.592931pt;}
.y7c{bottom:992.600469pt;}
.y6a{bottom:996.439063pt;}
.y3{bottom:1010.014053pt;}
.y69{bottom:1018.447355pt;}
.y85{bottom:1033.482551pt;}
.y2{bottom:1036.023853pt;}
.ha{height:8.000000pt;}
.h8{height:11.520000pt;}
.hb{height:13.363363pt;}
.he{height:17.279999pt;}
.h9{height:20.223249pt;}
.hd{height:21.499714pt;}
.hf{height:30.365533pt;}
.h6{height:39.086727pt;}
.h11{height:43.365499pt;}
.h10{height:43.418839pt;}
.hc{height:47.679998pt;}
.h4{height:47.750951pt;}
.h7{height:48.572220pt;}
.h5{height:53.011974pt;}
.h3{height:61.825214pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w5{width:27.519999pt;}
.w7{width:40.959998pt;}
.w4{width:55.359998pt;}
.w3{width:58.559998pt;}
.w2{width:58.879998pt;}
.w6{width:178.239993pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:36.660626pt;}
.x3{left:38.713202pt;}
.xe{left:40.838944pt;}
.x5{left:42.655106pt;}
.xf{left:50.368758pt;}
.x1{left:53.456050pt;}
.x4{left:63.644470pt;}
.xa{left:106.239996pt;}
.xb{left:112.959995pt;}
.x2{left:326.605842pt;}
.x6{left:417.100021pt;}
.x7{left:441.780742pt;}
.x9{left:549.759977pt;}
.x8{left:551.359977pt;}
.xc{left:655.934641pt;}
}




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