
    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_28bf539ab068ac82bd4c5cf8.woff2')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_a11570519c5c6661803a0213.woff2')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_126694dce7547dde4be85ed6.woff2')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_a65eb5ade99d38cc770406e2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_97aadea10bab0672a9abd858.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_61be0ed2c09d42fb933b54ab.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_686d124243aa9dfa8c7d8588.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v4{vertical-align:-25.920009px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.240418px;}
.v3{vertical-align:25.920041px;}
.v2{vertical-align:31.679901px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.094301px;}
.ls0{letter-spacing:0.719109px;}
.ls5{letter-spacing:0.719114px;}
.ls4{letter-spacing:1.439127px;}
.ls3{letter-spacing:11.519082px;}
.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.203150px;}
.ws3{word-spacing:-23.855201px;}
.ws0{word-spacing:-23.760900px;}
.ws7{word-spacing:-19.800788px;}
.ws6{word-spacing:-15.840563px;}
.ws4{word-spacing:-13.860563px;}
.ws5{word-spacing:-11.520450px;}
.ws2{word-spacing:0.000000px;}
._18{margin-left:-24.164340px;}
._5{margin-left:-12.545755px;}
._14{margin-left:-11.068306px;}
._17{margin-left:-9.590123px;}
._4{margin-left:-8.458880px;}
._7{margin-left:-6.653052px;}
._3{margin-left:-4.930015px;}
._b{margin-left:-3.176630px;}
._2{margin-left:-1.380824px;}
._0{width:1.064507px;}
._9{width:2.112957px;}
._d{width:3.247633px;}
._10{width:5.086689px;}
._12{width:6.318543px;}
._f{width:7.969183px;}
._e{width:9.299793px;}
._1e{width:10.313541px;}
._6{width:11.358905px;}
._8{width:12.374602px;}
._a{width:13.977535px;}
._c{width:15.016889px;}
._15{width:16.112484px;}
._11{width:17.159857px;}
._13{width:18.224547px;}
._1c{width:25.260089px;}
._23{width:28.798211px;}
._22{width:30.223865px;}
._25{width:31.649519px;}
._1b{width:39.919055px;}
._1a{width:45.336540px;}
._21{width:51.017170px;}
._1d{width:75.237664px;}
._24{width:90.291420px;}
._19{width:618.490553px;}
._27{width:778.896434px;}
._20{width:854.446737px;}
._16{width:1663.872901px;}
._26{width:1666.033085px;}
._1f{width:1668.193000px;}
._1{width:1695.553076px;}
.fc3{color:rgb(192,25,19);}
.fc1{color:rgb(41,40,34);}
.fc2{color:rgb(34,30,31);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:46.081800px;}
.fs4{font-size:55.442250px;}
.fs1{font-size:63.362250px;}
.fs0{font-size:71.282700px;}
.fs3{font-size:79.203150px;}
.fs2{font-size:95.043600px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.980011px;}
.y1f{bottom:41.040115px;}
.y62{bottom:106.380066px;}
.y46{bottom:121.320099px;}
.y1d{bottom:121.860077px;}
.y83{bottom:124.200096px;}
.y61{bottom:134.820099px;}
.y45{bottom:149.940033px;}
.y1c{bottom:150.300041px;}
.y82{bottom:152.640060px;}
.y60{bottom:163.080093px;}
.y44{bottom:178.560036px;}
.y28{bottom:178.920043px;}
.y81{bottom:181.260064px;}
.y5f{bottom:191.160049px;}
.y43{bottom:207.000068px;}
.y1b{bottom:207.360077px;}
.y80{bottom:209.700096px;}
.y5e{bottom:219.240074px;}
.y42{bottom:235.620072px;}
.y1a{bottom:235.980079px;}
.y7f{bottom:238.320099px;}
.y5d{bottom:247.500068px;}
.y41{bottom:264.060036px;}
.y19{bottom:264.420043px;}
.y7e{bottom:266.760064px;}
.y5c{bottom:275.580093px;}
.y40{bottom:292.680039px;}
.y18{bottom:293.040047px;}
.y88{bottom:295.380066px;}
.y5b{bottom:303.660049px;}
.y3f{bottom:321.120072px;}
.y17{bottom:321.480079px;}
.y7d{bottom:323.820099px;}
.y3e{bottom:349.740074px;}
.y27{bottom:350.100083px;}
.y7c{bottom:352.440033px;}
.y3d{bottom:378.180039px;}
.y16{bottom:378.540047px;}
.y7b{bottom:380.880066px;}
.y5a{bottom:388.080093px;}
.y3c{bottom:406.800041px;}
.y15{bottom:407.160049px;}
.y87{bottom:409.500068px;}
.y3b{bottom:435.240074px;}
.y14{bottom:435.600083px;}
.y7a{bottom:437.940033px;}
.y3a{bottom:463.860077px;}
.y13{bottom:464.220085px;}
.y79{bottom:466.560036px;}
.y39{bottom:492.300041px;}
.y12{bottom:492.660049px;}
.y78{bottom:495.000068px;}
.y59{bottom:500.580093px;}
.y38{bottom:520.920043px;}
.y26{bottom:521.280052px;}
.y77{bottom:523.620072px;}
.y58{bottom:528.840088px;}
.y37{bottom:549.360077px;}
.y25{bottom:549.720085px;}
.y76{bottom:552.060036px;}
.y57{bottom:556.920043px;}
.y36{bottom:577.980079px;}
.y24{bottom:578.340088px;}
.y75{bottom:580.680039px;}
.y56{bottom:585.000068px;}
.y35{bottom:606.420043px;}
.y23{bottom:606.780052px;}
.y74{bottom:609.120072px;}
.y55{bottom:613.260064px;}
.y34{bottom:635.040047px;}
.y11{bottom:635.400055px;}
.y73{bottom:637.740074px;}
.y54{bottom:641.340088px;}
.y4c{bottom:663.480079px;}
.y10{bottom:663.840088px;}
.y72{bottom:666.180039px;}
.y33{bottom:692.100083px;}
.yf{bottom:692.460056px;}
.y71{bottom:694.800076px;}
.y53{bottom:697.500068px;}
.y4b{bottom:720.540081px;}
.ye{bottom:720.900055px;}
.y70{bottom:723.240074px;}
.y4a{bottom:749.160049px;}
.y22{bottom:749.520058px;}
.y6f{bottom:751.860077px;}
.y52{bottom:753.840054px;}
.y32{bottom:777.600083px;}
.yd{bottom:777.960056px;}
.y6e{bottom:780.300076px;}
.y51{bottom:781.920078px;}
.y31{bottom:806.220051px;}
.yc{bottom:806.580059px;}
.y6d{bottom:808.920078px;}
.y30{bottom:834.660049px;}
.yb{bottom:835.020058px;}
.y6c{bottom:837.360077px;}
.y50{bottom:838.260064px;}
.y2f{bottom:863.280052px;}
.ya{bottom:863.640060px;}
.y6b{bottom:865.980079px;}
.y49{bottom:891.720051px;}
.y9{bottom:892.080059px;}
.y6a{bottom:894.420078px;}
.y4f{bottom:894.600083px;}
.y2e{bottom:920.340054px;}
.y8{bottom:920.700061px;}
.y4e{bottom:922.680073px;}
.y86{bottom:923.040081px;}
.y63{bottom:948.780053px;}
.y21{bottom:949.140060px;}
.y4d{bottom:950.760064px;}
.y69{bottom:951.480079px;}
.y2d{bottom:977.400072px;}
.y7{bottom:977.760064px;}
.y85{bottom:980.100065px;}
.y48{bottom:1005.840070px;}
.y6{bottom:1006.200061px;}
.y68{bottom:1008.540064px;}
.y2c{bottom:1034.460074px;}
.y5{bottom:1034.820065px;}
.y67{bottom:1037.160067px;}
.y2b{bottom:1062.900072px;}
.y4{bottom:1063.260064px;}
.y66{bottom:1065.600065px;}
.y47{bottom:1091.520058px;}
.y20{bottom:1091.880066px;}
.y84{bottom:1094.220068px;}
.y1e{bottom:1099.800058px;}
.y2a{bottom:1119.960065px;}
.y3{bottom:1120.320065px;}
.y65{bottom:1122.660067px;}
.y29{bottom:1148.580068px;}
.y2{bottom:1148.940067px;}
.y64{bottom:1151.280069px;}
.h5{height:55.302981px;}
.h7{height:55.596662px;}
.h6{height:57.534328px;}
.hb{height:63.346931px;}
.h8{height:64.414315px;}
.h9{height:65.992187px;}
.h2{height:67.837080px;}
.ha{height:69.496123px;}
.hc{height:70.346938px;}
.h4{height:83.395190px;}
.h3{height:84.416166px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:89.819996px;}
.x1{left:140.939999px;}
.x1e{left:145.259994px;}
.x2{left:150.479994px;}
.xd{left:156.240006px;}
.x14{left:174.240006px;}
.x1b{left:202.139992px;}
.x15{left:224.639992px;}
.x1a{left:252.719999px;}
.x1c{left:260.280001px;}
.x7{left:265.860008px;}
.x6{left:287.819996px;}
.x8{left:299.699993px;}
.xf{left:307.800007px;}
.x3{left:309.959988px;}
.x19{left:314.459988px;}
.x4{left:317.879998px;}
.x5{left:323.279983px;}
.xe{left:327.420010px;}
.xb{left:333.540012px;}
.x13{left:338.579990px;}
.xa{left:357.839985px;}
.x12{left:360.360008px;}
.x17{left:365.040012px;}
.xc{left:369.720017px;}
.x1d{left:381.240006px;}
.x1f{left:386.459988px;}
.x18{left:398.879998px;}
.x9{left:420.300007px;}
.x16{left:449.279983px;}
.x10{left:532.800007px;}
@media print{
.v4{vertical-align:-23.040008pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880372pt;}
.v3{vertical-align:23.040036pt;}
.v2{vertical-align:28.159912pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.083823pt;}
.ls0{letter-spacing:0.639208pt;}
.ls5{letter-spacing:0.639212pt;}
.ls4{letter-spacing:1.279224pt;}
.ls3{letter-spacing:10.239184pt;}
.ws1{word-spacing:-70.402800pt;}
.ws3{word-spacing:-21.204623pt;}
.ws0{word-spacing:-21.120800pt;}
.ws7{word-spacing:-17.600700pt;}
.ws6{word-spacing:-14.080500pt;}
.ws4{word-spacing:-12.320500pt;}
.ws5{word-spacing:-10.240400pt;}
.ws2{word-spacing:0.000000pt;}
._18{margin-left:-21.479413pt;}
._5{margin-left:-11.151782pt;}
._14{margin-left:-9.838494pt;}
._17{margin-left:-8.524554pt;}
._4{margin-left:-7.519005pt;}
._7{margin-left:-5.913824pt;}
._3{margin-left:-4.382236pt;}
._b{margin-left:-2.823672pt;}
._2{margin-left:-1.227399pt;}
._0{width:0.946228pt;}
._9{width:1.878184pt;}
._d{width:2.886785pt;}
._10{width:4.521501pt;}
._12{width:5.616483pt;}
._f{width:7.083718pt;}
._e{width:8.266483pt;}
._1e{width:9.167592pt;}
._6{width:10.096805pt;}
._8{width:10.999647pt;}
._a{width:12.424476pt;}
._c{width:13.348346pt;}
._15{width:14.322208pt;}
._11{width:15.253206pt;}
._13{width:16.199598pt;}
._1c{width:22.453413pt;}
._23{width:25.598410pt;}
._22{width:26.865658pt;}
._25{width:28.132906pt;}
._1b{width:35.483604pt;}
._1a{width:40.299146pt;}
._21{width:45.348595pt;}
._1d{width:66.877924pt;}
._24{width:80.259040pt;}
._19{width:549.769381pt;}
._27{width:692.352386pt;}
._20{width:759.508210pt;}
._16{width:1478.998134pt;}
._26{width:1480.918298pt;}
._1f{width:1482.838222pt;}
._1{width:1507.158290pt;}
.fs5{font-size:40.961600pt;}
.fs4{font-size:49.282000pt;}
.fs1{font-size:56.322000pt;}
.fs0{font-size:63.362400pt;}
.fs3{font-size:70.402800pt;}
.fs2{font-size:84.483200pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.760010pt;}
.y1f{bottom:36.480103pt;}
.y62{bottom:94.560059pt;}
.y46{bottom:107.840088pt;}
.y1d{bottom:108.320069pt;}
.y83{bottom:110.400086pt;}
.y61{bottom:119.840088pt;}
.y45{bottom:133.280030pt;}
.y1c{bottom:133.600037pt;}
.y82{bottom:135.680054pt;}
.y60{bottom:144.960083pt;}
.y44{bottom:158.720032pt;}
.y28{bottom:159.040039pt;}
.y81{bottom:161.120057pt;}
.y5f{bottom:169.920044pt;}
.y43{bottom:184.000061pt;}
.y1b{bottom:184.320069pt;}
.y80{bottom:186.400086pt;}
.y5e{bottom:194.880066pt;}
.y42{bottom:209.440064pt;}
.y1a{bottom:209.760071pt;}
.y7f{bottom:211.840088pt;}
.y5d{bottom:220.000061pt;}
.y41{bottom:234.720032pt;}
.y19{bottom:235.040039pt;}
.y7e{bottom:237.120057pt;}
.y5c{bottom:244.960083pt;}
.y40{bottom:260.160035pt;}
.y18{bottom:260.480042pt;}
.y88{bottom:262.560059pt;}
.y5b{bottom:269.920044pt;}
.y3f{bottom:285.440064pt;}
.y17{bottom:285.760071pt;}
.y7d{bottom:287.840088pt;}
.y3e{bottom:310.880066pt;}
.y27{bottom:311.200074pt;}
.y7c{bottom:313.280030pt;}
.y3d{bottom:336.160035pt;}
.y16{bottom:336.480042pt;}
.y7b{bottom:338.560059pt;}
.y5a{bottom:344.960083pt;}
.y3c{bottom:361.600037pt;}
.y15{bottom:361.920044pt;}
.y87{bottom:364.000061pt;}
.y3b{bottom:386.880066pt;}
.y14{bottom:387.200074pt;}
.y7a{bottom:389.280030pt;}
.y3a{bottom:412.320069pt;}
.y13{bottom:412.640076pt;}
.y79{bottom:414.720032pt;}
.y39{bottom:437.600037pt;}
.y12{bottom:437.920044pt;}
.y78{bottom:440.000061pt;}
.y59{bottom:444.960083pt;}
.y38{bottom:463.040039pt;}
.y26{bottom:463.360047pt;}
.y77{bottom:465.440064pt;}
.y58{bottom:470.080079pt;}
.y37{bottom:488.320069pt;}
.y25{bottom:488.640076pt;}
.y76{bottom:490.720032pt;}
.y57{bottom:495.040039pt;}
.y36{bottom:513.760071pt;}
.y24{bottom:514.080079pt;}
.y75{bottom:516.160035pt;}
.y56{bottom:520.000061pt;}
.y35{bottom:539.040039pt;}
.y23{bottom:539.360047pt;}
.y74{bottom:541.440064pt;}
.y55{bottom:545.120057pt;}
.y34{bottom:564.480042pt;}
.y11{bottom:564.800049pt;}
.y73{bottom:566.880066pt;}
.y54{bottom:570.080079pt;}
.y4c{bottom:589.760071pt;}
.y10{bottom:590.080079pt;}
.y72{bottom:592.160035pt;}
.y33{bottom:615.200074pt;}
.yf{bottom:615.520050pt;}
.y71{bottom:617.600068pt;}
.y53{bottom:620.000061pt;}
.y4b{bottom:640.480072pt;}
.ye{bottom:640.800049pt;}
.y70{bottom:642.880066pt;}
.y4a{bottom:665.920044pt;}
.y22{bottom:666.240052pt;}
.y6f{bottom:668.320069pt;}
.y52{bottom:670.080048pt;}
.y32{bottom:691.200074pt;}
.yd{bottom:691.520050pt;}
.y6e{bottom:693.600068pt;}
.y51{bottom:695.040070pt;}
.y31{bottom:716.640046pt;}
.yc{bottom:716.960053pt;}
.y6d{bottom:719.040070pt;}
.y30{bottom:741.920044pt;}
.yb{bottom:742.240052pt;}
.y6c{bottom:744.320069pt;}
.y50{bottom:745.120057pt;}
.y2f{bottom:767.360047pt;}
.ya{bottom:767.680054pt;}
.y6b{bottom:769.760071pt;}
.y49{bottom:792.640046pt;}
.y9{bottom:792.960053pt;}
.y6a{bottom:795.040070pt;}
.y4f{bottom:795.200074pt;}
.y2e{bottom:818.080048pt;}
.y8{bottom:818.400055pt;}
.y4e{bottom:820.160065pt;}
.y86{bottom:820.480072pt;}
.y63{bottom:843.360047pt;}
.y21{bottom:843.680054pt;}
.y4d{bottom:845.120057pt;}
.y69{bottom:845.760071pt;}
.y2d{bottom:868.800064pt;}
.y7{bottom:869.120057pt;}
.y85{bottom:871.200058pt;}
.y48{bottom:894.080063pt;}
.y6{bottom:894.400055pt;}
.y68{bottom:896.480057pt;}
.y2c{bottom:919.520066pt;}
.y5{bottom:919.840058pt;}
.y67{bottom:921.920060pt;}
.y2b{bottom:944.800064pt;}
.y4{bottom:945.120057pt;}
.y66{bottom:947.200058pt;}
.y47{bottom:970.240052pt;}
.y20{bottom:970.560059pt;}
.y84{bottom:972.640061pt;}
.y1e{bottom:977.600052pt;}
.y2a{bottom:995.520058pt;}
.y3{bottom:995.840058pt;}
.y65{bottom:997.920060pt;}
.y29{bottom:1020.960061pt;}
.y2{bottom:1021.280060pt;}
.y64{bottom:1023.360062pt;}
.h5{height:49.158205pt;}
.h7{height:49.419255pt;}
.h6{height:51.141625pt;}
.hb{height:56.308383pt;}
.h8{height:57.257169pt;}
.h9{height:58.659722pt;}
.h2{height:60.299627pt;}
.ha{height:61.774332pt;}
.hc{height:62.530612pt;}
.h4{height:74.129058pt;}
.h3{height:75.036592pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:79.839996pt;}
.x1{left:125.279999pt;}
.x1e{left:129.119995pt;}
.x2{left:133.759995pt;}
.xd{left:138.880005pt;}
.x14{left:154.880005pt;}
.x1b{left:179.679993pt;}
.x15{left:199.679993pt;}
.x1a{left:224.639999pt;}
.x1c{left:231.360001pt;}
.x7{left:236.320007pt;}
.x6{left:255.839996pt;}
.x8{left:266.399994pt;}
.xf{left:273.600006pt;}
.x3{left:275.519989pt;}
.x19{left:279.519989pt;}
.x4{left:282.559998pt;}
.x5{left:287.359985pt;}
.xe{left:291.040009pt;}
.xb{left:296.480011pt;}
.x13{left:300.959991pt;}
.xa{left:318.079987pt;}
.x12{left:320.320007pt;}
.x17{left:324.480011pt;}
.xc{left:328.640015pt;}
.x1d{left:338.880005pt;}
.x1f{left:343.519989pt;}
.x18{left:354.559998pt;}
.x9{left:373.600006pt;}
.x16{left:399.359985pt;}
.x10{left:473.600006pt;}
}




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