
    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_45c07ef3bd93de222745372f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_295935cbd0b637a15552c84c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_17e0031a441ecc1e9d1ff7b2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.936035;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_2ee00a86a18323cc9b6417e9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.742676;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_3408222b6060425e887ca773.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.774902;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_923a51d7c69e22f7459e5c02.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.743164;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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.035512px;}
.ls0{letter-spacing:0.064403px;}
.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:-42.481665px;}
.ws1{word-spacing:-17.476156px;}
.ws2{word-spacing:-9.636368px;}
.ws0{word-spacing:-9.600856px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-1.167084px;}
._1{width:1.021883px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:42.481665px;}
.fs1{font-size:77.043155px;}
.y0{bottom:0.000000px;}
.y2d{bottom:2.339950px;}
.y13{bottom:2.339984px;}
.y11{bottom:2.339985px;}
.yc{bottom:2.340001px;}
.y8{bottom:2.340002px;}
.y15{bottom:2.340019px;}
.y18{bottom:2.519989px;}
.y2b{bottom:2.519990px;}
.y5{bottom:2.519997px;}
.y2{bottom:2.519998px;}
.ya{bottom:2.520006px;}
.y21{bottom:2.520022px;}
.yf{bottom:2.520024px;}
.y34{bottom:2.520057px;}
.y3e{bottom:2.700027px;}
.y3b{bottom:2.700028px;}
.y53{bottom:82.800110px;}
.y52{bottom:124.380066px;}
.y51{bottom:138.240074px;}
.y50{bottom:165.960091px;}
.y4f{bottom:179.820099px;}
.y4e{bottom:193.680039px;}
.y4d{bottom:207.540047px;}
.y4c{bottom:221.400055px;}
.y4b{bottom:249.120072px;}
.y4a{bottom:262.980079px;}
.y49{bottom:290.700096px;}
.y48{bottom:304.560036px;}
.y46{bottom:318.420043px;}
.y47{bottom:318.780052px;}
.y44{bottom:332.280052px;}
.y45{bottom:332.640060px;}
.y43{bottom:346.140060px;}
.y42{bottom:373.860077px;}
.y41{bottom:387.720085px;}
.y40{bottom:401.580093px;}
.y3f{bottom:415.440033px;}
.y3c{bottom:429.300041px;}
.y3d{bottom:429.660049px;}
.y39{bottom:443.160049px;}
.y3a{bottom:443.520058px;}
.y38{bottom:457.020058px;}
.y37{bottom:484.740074px;}
.y36{bottom:498.600083px;}
.y35{bottom:512.460091px;}
.y33{bottom:540.180039px;}
.y32{bottom:554.040047px;}
.y31{bottom:581.760064px;}
.y30{bottom:595.620072px;}
.y2f{bottom:623.340088px;}
.y2e{bottom:637.200096px;}
.y2a{bottom:664.920043px;}
.y2c{bottom:665.100083px;}
.y29{bottom:678.780052px;}
.y27{bottom:692.640060px;}
.y28{bottom:695.160049px;}
.y25{bottom:720.360077px;}
.y26{bottom:720.540081px;}
.y24{bottom:734.220051px;}
.y22{bottom:748.080059px;}
.y23{bottom:750.600083px;}
.y20{bottom:776.520058px;}
.y1f{bottom:776.700061px;}
.y1e{bottom:779.040081px;}
.y1c{bottom:791.100083px;}
.y1d{bottom:793.620072px;}
.y1b{bottom:804.960056px;}
.y1a{bottom:833.400055px;}
.y19{bottom:847.260064px;}
.y17{bottom:874.980079px;}
.y16{bottom:888.840054px;}
.y55{bottom:891.180073px;}
.y14{bottom:902.700061px;}
.y56{bottom:905.040081px;}
.y12{bottom:916.560070px;}
.y58{bottom:918.900055px;}
.y10{bottom:930.420078px;}
.ye{bottom:944.280053px;}
.yd{bottom:1002.240074px;}
.yb{bottom:1013.760064px;}
.y9{bottom:1041.480063px;}
.y57{bottom:1044.000068px;}
.y7{bottom:1055.340070px;}
.y54{bottom:1057.860060px;}
.y6{bottom:1083.420061px;}
.y59{bottom:1129.140069px;}
.y4{bottom:1140.660067px;}
.y3{bottom:1154.520066px;}
.y1{bottom:1168.380066px;}
.h14{height:12.060035px;}
.h15{height:12.060036px;}
.h10{height:12.239972px;}
.h12{height:12.240006px;}
.h16{height:12.419907px;}
.h8{height:12.419975px;}
.h5{height:12.419993px;}
.h2{height:12.420001px;}
.h6{height:12.420009px;}
.h9{height:12.420010px;}
.h13{height:12.420044px;}
.h11{height:12.420045px;}
.he{height:12.600013px;}
.hc{height:12.959988px;}
.hf{height:30.927814px;}
.hb{height:31.052272px;}
.ha{height:32.213880px;}
.hd{height:32.276109px;}
.h3{height:42.253492px;}
.h7{height:43.498072px;}
.h4{height:78.886472px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w3e{width:4.139992px;}
.w3d{width:4.140026px;}
.w31{width:5.399987px;}
.wc{width:5.400003px;}
.w1d{width:6.300007px;}
.w14{width:9.539979px;}
.w13{width:9.540012px;}
.w36{width:10.079990px;}
.w34{width:10.079991px;}
.w4b{width:10.800007px;}
.w18{width:12.599980px;}
.w17{width:12.600013px;}
.w16{width:12.959988px;}
.w6{width:12.960022px;}
.w3{width:13.680004px;}
.w22{width:16.560001px;}
.w9{width:17.460022px;}
.w3c{width:18.180005px;}
.w1e{width:18.359974px;}
.w1b{width:18.900020px;}
.w1c{width:18.900021px;}
.w48{width:21.599980px;}
.w47{width:21.600013px;}
.wf{width:23.039978px;}
.w10{width:23.039979px;}
.w11{width:23.040047px;}
.w8{width:23.220017px;}
.w29{width:24.299972px;}
.w27{width:24.300007px;}
.w28{width:24.300008px;}
.w2{width:24.479994px;}
.w4f{width:24.839985px;}
.w5{width:25.559967px;}
.we{width:25.560001px;}
.w51{width:25.919975px;}
.w35{width:25.920009px;}
.w30{width:25.920010px;}
.w38{width:26.460021px;}
.w40{width:27.719982px;}
.w41{width:28.620002px;}
.w4{width:30.780018px;}
.w1a{width:30.959988px;}
.w2c{width:35.639992px;}
.w20{width:35.819996px;}
.w4e{width:36.899985px;}
.w26{width:38.159980px;}
.w7{width:38.520024px;}
.w24{width:39.420010px;}
.w2b{width:39.779983px;}
.w3a{width:44.819997px;}
.wd{width:45.540012px;}
.w42{width:45.900021px;}
.w4a{width:46.079990px;}
.w39{width:46.079991px;}
.w37{width:46.439999px;}
.w43{width:46.800007px;}
.w45{width:47.160015px;}
.wa{width:50.580025px;}
.w50{width:59.040003px;}
.w44{width:59.760002px;}
.w3b{width:64.979993px;}
.w33{width:66.239988px;}
.w15{width:70.739988px;}
.w4c{width:81.719982px;}
.w12{width:83.340001px;}
.w21{width:85.679987px;}
.wb{width:94.319996px;}
.w2a{width:102.420009px;}
.w2d{width:102.599997px;}
.w46{width:103.859991px;}
.w4d{width:129.779983px;}
.w25{width:138.240005px;}
.w2e{width:151.200010px;}
.w2f{width:151.919992px;}
.w23{width:163.980010px;}
.w1f{width:187.379997px;}
.w3f{width:202.319996px;}
.w32{width:202.500000px;}
.w49{width:227.160015px;}
.w19{width:273.060001px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:79.379998px;}
.xa{left:90.719999px;}
.xb{left:158.759994px;}
.x2{left:159.840002px;}
.x2c{left:177.659998px;}
.x1{left:192.960005px;}
.x41{left:199.800007px;}
.x3c{left:225.719999px;}
.x28{left:243.900003px;}
.x40{left:247.860008px;}
.x29{left:253.800007px;}
.x19{left:258.840002px;}
.x31{left:263.340002px;}
.x37{left:264.599997px;}
.x26{left:266.759994px;}
.x27{left:277.199993px;}
.x8{left:283.500000px;}
.x2b{left:289.800007px;}
.x2a{left:291.420010px;}
.x42{left:292.680005px;}
.x23{left:293.939999px;}
.x1e{left:298.620002px;}
.x7{left:300.779983px;}
.x3{left:304.560001px;}
.x4{left:333.899987px;}
.x2d{left:366.300007px;}
.x1f{left:370.620002px;}
.x24{left:376.019989px;}
.x35{left:377.100014px;}
.x36{left:378.360008px;}
.x32{left:386.819996px;}
.x39{left:388.800007px;}
.x3a{left:395.100014px;}
.x33{left:396.899987px;}
.x38{left:405.000000px;}
.x3b{left:431.639992px;}
.x34{left:441.899987px;}
.x15{left:443.519989px;}
.x25{left:446.040012px;}
.x1a{left:448.920010px;}
.xc{left:491.399987px;}
.x3d{left:493.379998px;}
.x20{left:494.639992px;}
.x1b{left:497.879998px;}
.x16{left:499.319996px;}
.x2e{left:501.480011px;}
.xd{left:527.040012px;}
.x3e{left:529.019989px;}
.x21{left:530.279983px;}
.x1c{left:533.519989px;}
.x17{left:534.959988px;}
.x2f{left:537.120002px;}
.xe{left:562.680005px;}
.x3f{left:564.660015px;}
.x22{left:565.920010px;}
.x1d{left:569.160015px;}
.x18{left:570.600014px;}
.x30{left:572.759994px;}
.x45{left:594.720017px;}
.xf{left:598.320030px;}
.x10{left:631.620002px;}
.x44{left:661.320030px;}
.x11{left:664.919975px;}
.x5{left:686.700027px;}
.x6{left:689.039978px;}
.x12{left:698.220017px;}
.x43{left:727.919975px;}
.x13{left:731.519989px;}
.x14{left:764.820030px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.031566pt;}
.ls0{letter-spacing:0.057247pt;}
.ws3{word-spacing:-37.761480pt;}
.ws1{word-spacing:-15.534361pt;}
.ws2{word-spacing:-8.565661pt;}
.ws0{word-spacing:-8.534094pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-1.037408pt;}
._1{width:0.908341pt;}
.fs0{font-size:37.761480pt;}
.fs1{font-size:68.482804pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:2.079956pt;}
.y13{bottom:2.079986pt;}
.y11{bottom:2.079987pt;}
.yc{bottom:2.080001pt;}
.y8{bottom:2.080002pt;}
.y15{bottom:2.080017pt;}
.y18{bottom:2.239990pt;}
.y2b{bottom:2.239991pt;}
.y5{bottom:2.239997pt;}
.y2{bottom:2.239998pt;}
.ya{bottom:2.240005pt;}
.y21{bottom:2.240020pt;}
.yf{bottom:2.240021pt;}
.y34{bottom:2.240051pt;}
.y3e{bottom:2.400024pt;}
.y3b{bottom:2.400025pt;}
.y53{bottom:73.600098pt;}
.y52{bottom:110.560059pt;}
.y51{bottom:122.880066pt;}
.y50{bottom:147.520081pt;}
.y4f{bottom:159.840088pt;}
.y4e{bottom:172.160035pt;}
.y4d{bottom:184.480042pt;}
.y4c{bottom:196.800049pt;}
.y4b{bottom:221.440064pt;}
.y4a{bottom:233.760071pt;}
.y49{bottom:258.400086pt;}
.y48{bottom:270.720032pt;}
.y46{bottom:283.040039pt;}
.y47{bottom:283.360047pt;}
.y44{bottom:295.360047pt;}
.y45{bottom:295.680054pt;}
.y43{bottom:307.680054pt;}
.y42{bottom:332.320069pt;}
.y41{bottom:344.640076pt;}
.y40{bottom:356.960083pt;}
.y3f{bottom:369.280030pt;}
.y3c{bottom:381.600037pt;}
.y3d{bottom:381.920044pt;}
.y39{bottom:393.920044pt;}
.y3a{bottom:394.240052pt;}
.y38{bottom:406.240052pt;}
.y37{bottom:430.880066pt;}
.y36{bottom:443.200074pt;}
.y35{bottom:455.520081pt;}
.y33{bottom:480.160035pt;}
.y32{bottom:492.480042pt;}
.y31{bottom:517.120057pt;}
.y30{bottom:529.440064pt;}
.y2f{bottom:554.080079pt;}
.y2e{bottom:566.400086pt;}
.y2a{bottom:591.040039pt;}
.y2c{bottom:591.200074pt;}
.y29{bottom:603.360047pt;}
.y27{bottom:615.680054pt;}
.y28{bottom:617.920044pt;}
.y25{bottom:640.320069pt;}
.y26{bottom:640.480072pt;}
.y24{bottom:652.640046pt;}
.y22{bottom:664.960053pt;}
.y23{bottom:667.200074pt;}
.y20{bottom:690.240052pt;}
.y1f{bottom:690.400055pt;}
.y1e{bottom:692.480072pt;}
.y1c{bottom:703.200074pt;}
.y1d{bottom:705.440064pt;}
.y1b{bottom:715.520050pt;}
.y1a{bottom:740.800049pt;}
.y19{bottom:753.120057pt;}
.y17{bottom:777.760071pt;}
.y16{bottom:790.080048pt;}
.y55{bottom:792.160065pt;}
.y14{bottom:802.400055pt;}
.y56{bottom:804.480072pt;}
.y12{bottom:814.720063pt;}
.y58{bottom:816.800049pt;}
.y10{bottom:827.040070pt;}
.ye{bottom:839.360047pt;}
.yd{bottom:890.880066pt;}
.yb{bottom:901.120057pt;}
.y9{bottom:925.760056pt;}
.y57{bottom:928.000061pt;}
.y7{bottom:938.080063pt;}
.y54{bottom:940.320054pt;}
.y6{bottom:963.040055pt;}
.y59{bottom:1003.680062pt;}
.y4{bottom:1013.920060pt;}
.y3{bottom:1026.240059pt;}
.y1{bottom:1038.560059pt;}
.h14{height:10.720031pt;}
.h15{height:10.720032pt;}
.h10{height:10.879975pt;}
.h12{height:10.880005pt;}
.h16{height:11.039917pt;}
.h8{height:11.039978pt;}
.h5{height:11.039994pt;}
.h2{height:11.040001pt;}
.h6{height:11.040008pt;}
.h9{height:11.040009pt;}
.h13{height:11.040039pt;}
.h11{height:11.040040pt;}
.he{height:11.200012pt;}
.hc{height:11.519989pt;}
.hf{height:27.491390pt;}
.hb{height:27.602019pt;}
.ha{height:28.634560pt;}
.hd{height:28.689874pt;}
.h3{height:37.558660pt;}
.h7{height:38.664953pt;}
.h4{height:70.121309pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w3e{width:3.679993pt;}
.w3d{width:3.680023pt;}
.w31{width:4.799988pt;}
.wc{width:4.800003pt;}
.w1d{width:5.600006pt;}
.w14{width:8.479981pt;}
.w13{width:8.480011pt;}
.w36{width:8.959991pt;}
.w34{width:8.959992pt;}
.w4b{width:9.600006pt;}
.w18{width:11.199982pt;}
.w17{width:11.200012pt;}
.w16{width:11.519989pt;}
.w6{width:11.520020pt;}
.w3{width:12.160004pt;}
.w22{width:14.720001pt;}
.w9{width:15.520020pt;}
.w3c{width:16.160004pt;}
.w1e{width:16.319977pt;}
.w1b{width:16.800018pt;}
.w1c{width:16.800019pt;}
.w48{width:19.199982pt;}
.w47{width:19.200012pt;}
.wf{width:20.479980pt;}
.w10{width:20.479981pt;}
.w11{width:20.480042pt;}
.w8{width:20.640015pt;}
.w29{width:21.599975pt;}
.w27{width:21.600006pt;}
.w28{width:21.600007pt;}
.w2{width:21.759995pt;}
.w4f{width:22.079987pt;}
.w5{width:22.719971pt;}
.we{width:22.720001pt;}
.w51{width:23.039978pt;}
.w35{width:23.040008pt;}
.w30{width:23.040009pt;}
.w38{width:23.520019pt;}
.w40{width:24.639984pt;}
.w41{width:25.440002pt;}
.w4{width:27.360016pt;}
.w1a{width:27.519989pt;}
.w2c{width:31.679993pt;}
.w20{width:31.839996pt;}
.w4e{width:32.799987pt;}
.w26{width:33.919982pt;}
.w7{width:34.240021pt;}
.w24{width:35.040009pt;}
.w2b{width:35.359985pt;}
.w3a{width:39.839997pt;}
.wd{width:40.480011pt;}
.w42{width:40.800019pt;}
.w4a{width:40.959991pt;}
.w39{width:40.959992pt;}
.w37{width:41.279999pt;}
.w43{width:41.600006pt;}
.w45{width:41.920013pt;}
.wa{width:44.960022pt;}
.w50{width:52.480003pt;}
.w44{width:53.120002pt;}
.w3b{width:57.759994pt;}
.w33{width:58.879989pt;}
.w15{width:62.879989pt;}
.w4c{width:72.639984pt;}
.w12{width:74.080001pt;}
.w21{width:76.159988pt;}
.wb{width:83.839996pt;}
.w2a{width:91.040008pt;}
.w2d{width:91.199997pt;}
.w46{width:92.319992pt;}
.w4d{width:115.359985pt;}
.w25{width:122.880004pt;}
.w2e{width:134.400009pt;}
.w2f{width:135.039993pt;}
.w23{width:145.760009pt;}
.w1f{width:166.559997pt;}
.w3f{width:179.839996pt;}
.w32{width:180.000000pt;}
.w49{width:201.920013pt;}
.w19{width:242.720001pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:70.559998pt;}
.xa{left:80.639999pt;}
.xb{left:141.119995pt;}
.x2{left:142.080002pt;}
.x2c{left:157.919998pt;}
.x1{left:171.520004pt;}
.x41{left:177.600006pt;}
.x3c{left:200.639999pt;}
.x28{left:216.800003pt;}
.x40{left:220.320007pt;}
.x29{left:225.600006pt;}
.x19{left:230.080002pt;}
.x31{left:234.080002pt;}
.x37{left:235.199997pt;}
.x26{left:237.119995pt;}
.x27{left:246.399994pt;}
.x8{left:252.000000pt;}
.x2b{left:257.600006pt;}
.x2a{left:259.040009pt;}
.x42{left:260.160004pt;}
.x23{left:261.279999pt;}
.x1e{left:265.440002pt;}
.x7{left:267.359985pt;}
.x3{left:270.720001pt;}
.x4{left:296.799988pt;}
.x2d{left:325.600006pt;}
.x1f{left:329.440002pt;}
.x24{left:334.239990pt;}
.x35{left:335.200012pt;}
.x36{left:336.320007pt;}
.x32{left:343.839996pt;}
.x39{left:345.600006pt;}
.x3a{left:351.200012pt;}
.x33{left:352.799988pt;}
.x38{left:360.000000pt;}
.x3b{left:383.679993pt;}
.x34{left:392.799988pt;}
.x15{left:394.239990pt;}
.x25{left:396.480011pt;}
.x1a{left:399.040009pt;}
.xc{left:436.799988pt;}
.x3d{left:438.559998pt;}
.x20{left:439.679993pt;}
.x1b{left:442.559998pt;}
.x16{left:443.839996pt;}
.x2e{left:445.760010pt;}
.xd{left:468.480011pt;}
.x3e{left:470.239990pt;}
.x21{left:471.359985pt;}
.x1c{left:474.239990pt;}
.x17{left:475.519989pt;}
.x2f{left:477.440002pt;}
.xe{left:500.160004pt;}
.x3f{left:501.920013pt;}
.x22{left:503.040009pt;}
.x1d{left:505.920013pt;}
.x18{left:507.200012pt;}
.x30{left:509.119995pt;}
.x45{left:528.640015pt;}
.xf{left:531.840027pt;}
.x10{left:561.440002pt;}
.x44{left:587.840027pt;}
.x11{left:591.039978pt;}
.x5{left:610.400024pt;}
.x6{left:612.479980pt;}
.x12{left:620.640015pt;}
.x43{left:647.039978pt;}
.x13{left:650.239990pt;}
.x14{left:679.840027pt;}
}




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