
    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_911ece9b5a8dd2bac9b6161d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.991699;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_01be861391a7143520a2fa56.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.991699;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_6efa00a6c6fef42ff952ec58.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_c68d07d8b3f03090e9e43c1c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.725586;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_15c3170128697c7ffeb6e071.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_be3241e442555a07fe02a6a9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.080566;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_6995ccd0dd078bebd9058b2f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_5746374af46a72ac2946d15d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3e35a454d03cc6aeb0c8cf78.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.891113;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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:16.933247px;}
.ls2{letter-spacing:32.053252px;}
.ls3{letter-spacing:847.441593px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0{word-spacing:-16.558425px;}
.ws1{word-spacing:0.000000px;}
._3{margin-left:-10.788254px;}
._3f{margin-left:-2.444799px;}
._0{margin-left:-1.078704px;}
._2{width:1.025906px;}
._25{width:2.663657px;}
._19{width:4.404282px;}
._1a{width:5.434786px;}
._31{width:6.456269px;}
._1e{width:7.547796px;}
._2a{width:9.146977px;}
._22{width:10.431290px;}
._18{width:11.645489px;}
._13{width:13.083446px;}
._14{width:14.233393px;}
._9{width:15.237632px;}
._16{width:18.236000px;}
._17{width:19.263916px;}
._1b{width:20.484541px;}
._11{width:21.924648px;}
._7{width:23.597386px;}
._6{width:24.951735px;}
._5{width:26.935900px;}
._4{width:28.230968px;}
._1c{width:29.779741px;}
._2b{width:31.086442px;}
._b{width:33.871526px;}
._a{width:34.886273px;}
._15{width:35.931523px;}
._23{width:37.791518px;}
._29{width:39.685611px;}
._3d{width:40.983913px;}
._20{width:42.554971px;}
._1f{width:43.733724px;}
._e{width:45.625188px;}
._f{width:46.821870px;}
._10{width:48.143527px;}
._2e{width:49.943244px;}
._3c{width:51.473934px;}
._2c{width:52.727976px;}
._21{width:54.049286px;}
._37{width:55.233007px;}
._c{width:56.482599px;}
._30{width:57.706111px;}
._d{width:59.392483px;}
._24{width:60.405489px;}
._36{width:61.520042px;}
._28{width:62.593434px;}
._8{width:64.234011px;}
._32{width:65.583782px;}
._3b{width:66.983486px;}
._3e{width:69.422621px;}
._2f{width:70.947418px;}
._1d{width:73.586417px;}
._39{width:77.421556px;}
._38{width:78.993778px;}
._34{width:80.345876px;}
._33{width:82.298477px;}
._2d{width:84.378888px;}
._35{width:95.846451px;}
._26{width:100.938089px;}
._27{width:101.997828px;}
._3a{width:126.744136px;}
._12{width:897.117746px;}
._1{width:941.037723px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,102,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.235500px;}
.fs2{font-size:53.995050px;}
.fs0{font-size:59.754600px;}
.fs4{font-size:66.233700px;}
.fs3{font-size:84.232350px;}
.y0{bottom:0.000000px;}
.y6{bottom:55.980010px;}
.y5{bottom:71.100013px;}
.y4{bottom:85.860008px;}
.y2c{bottom:111.600013px;}
.y84{bottom:113.220016px;}
.y4c{bottom:114.480010px;}
.y5d{bottom:129.420043px;}
.y2b{bottom:129.600013px;}
.y83{bottom:131.220016px;}
.y4b{bottom:133.379997px;}
.y5c{bottom:147.420043px;}
.y2a{bottom:147.600013px;}
.y82{bottom:149.399986px;}
.y4a{bottom:152.460022px;}
.y5b{bottom:165.420043px;}
.y29{bottom:165.600013px;}
.y81{bottom:167.399986px;}
.y49{bottom:171.360008px;}
.y5a{bottom:183.420043px;}
.y28{bottom:183.600013px;}
.y80{bottom:185.399986px;}
.y48{bottom:190.259994px;}
.y59{bottom:201.420043px;}
.y27{bottom:201.600013px;}
.y7f{bottom:203.399986px;}
.y47{bottom:209.340018px;}
.y58{bottom:219.600013px;}
.y26{bottom:219.779983px;}
.y7e{bottom:221.399986px;}
.y46{bottom:228.240005px;}
.y85{bottom:235.980010px;}
.y57{bottom:237.600013px;}
.y7d{bottom:239.399986px;}
.y45{bottom:247.320030px;}
.y25{bottom:252.720016px;}
.y56{bottom:255.600013px;}
.y7c{bottom:257.399986px;}
.y44{bottom:266.220016px;}
.y24{bottom:267.300041px;}
.y55{bottom:273.600013px;}
.y7b{bottom:275.580024px;}
.y43{bottom:285.300041px;}
.y23{bottom:288.720016px;}
.y54{bottom:291.600013px;}
.y7a{bottom:293.580024px;}
.y42{bottom:304.200027px;}
.y22{bottom:306.720016px;}
.y53{bottom:309.600013px;}
.y79{bottom:311.580024px;}
.y41{bottom:323.100013px;}
.y21{bottom:324.900021px;}
.y52{bottom:327.600013px;}
.y78{bottom:329.580024px;}
.y40{bottom:342.180004px;}
.y20{bottom:342.900021px;}
.y51{bottom:345.780017px;}
.y77{bottom:347.580024px;}
.y1f{bottom:360.900021px;}
.y3f{bottom:361.080024px;}
.y50{bottom:363.780017px;}
.y76{bottom:365.580024px;}
.y1e{bottom:378.900021px;}
.y3e{bottom:380.160015px;}
.y4f{bottom:381.780017px;}
.y75{bottom:383.580024px;}
.y1d{bottom:396.900021px;}
.y3d{bottom:399.060000px;}
.y4e{bottom:399.780017px;}
.y74{bottom:401.580024px;}
.y1c{bottom:414.900021px;}
.y3c{bottom:417.960022px;}
.y73{bottom:419.759994px;}
.y1b{bottom:432.900021px;}
.y3b{bottom:437.040012px;}
.y72{bottom:437.759994px;}
.y1a{bottom:451.080024px;}
.y71{bottom:455.759994px;}
.y3a{bottom:455.939998px;}
.y19{bottom:469.080024px;}
.y70{bottom:473.759994px;}
.y39{bottom:475.020023px;}
.y18{bottom:487.080024px;}
.y6f{bottom:491.759994px;}
.y38{bottom:493.920009px;}
.y17{bottom:505.080024px;}
.y6e{bottom:509.759994px;}
.y37{bottom:512.819996px;}
.y16{bottom:523.080024px;}
.y6d{bottom:527.759994px;}
.y36{bottom:531.900021px;}
.y15{bottom:541.080024px;}
.y6c{bottom:545.939998px;}
.y35{bottom:547.200027px;}
.y4d{bottom:550.800006px;}
.y14{bottom:559.080024px;}
.y6b{bottom:563.939998px;}
.y34{bottom:569.879997px;}
.y13{bottom:577.259994px;}
.y6a{bottom:581.939998px;}
.y33{bottom:588.780017px;}
.y12{bottom:595.259994px;}
.y69{bottom:599.939998px;}
.y32{bottom:607.680004px;}
.y11{bottom:613.260012px;}
.y68{bottom:617.940015px;}
.y31{bottom:626.760012px;}
.y10{bottom:631.260012px;}
.y67{bottom:635.940015px;}
.y30{bottom:645.660015px;}
.yf{bottom:649.260012px;}
.y66{bottom:653.940015px;}
.y2f{bottom:664.740005px;}
.ye{bottom:667.260012px;}
.y65{bottom:672.120003px;}
.y2e{bottom:683.640008px;}
.yd{bottom:685.260012px;}
.y64{bottom:690.120003px;}
.y2d{bottom:702.540012px;}
.yc{bottom:703.260012px;}
.y63{bottom:708.120003px;}
.yb{bottom:721.620003px;}
.y62{bottom:726.120003px;}
.ya{bottom:740.520006px;}
.y61{bottom:744.120003px;}
.y9{bottom:759.600013px;}
.y60{bottom:762.120010px;}
.y8{bottom:778.500008px;}
.y5f{bottom:780.120010px;}
.y7{bottom:797.580007px;}
.y5e{bottom:798.300006px;}
.y3{bottom:815.940007px;}
.y2{bottom:833.400012px;}
.y1{bottom:848.340010px;}
.h3{height:37.895957px;}
.h4{height:40.651598px;}
.h9{height:45.988438px;}
.h7{height:46.441208px;}
.h2{height:46.945875px;}
.h8{height:48.219945px;}
.h6{height:57.275333px;}
.h5{height:70.988787px;}
.h0{height:892.980015px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w0{width:629.279985px;}
.x0{left:0.000000px;}
.x6{left:63.899999px;}
.x10{left:80.459997px;}
.xf{left:85.860000px;}
.x8{left:94.500000px;}
.xa{left:97.019998px;}
.x15{left:106.739997px;}
.x9{left:108.540003px;}
.x4{left:112.140000px;}
.x7{left:117.000000px;}
.xd{left:188.639992px;}
.x16{left:209.879998px;}
.x2{left:240.300007px;}
.x14{left:251.639992px;}
.x5{left:293.939999px;}
.x3{left:314.639992px;}
.x19{left:326.519989px;}
.x18{left:333.899987px;}
.x17{left:408.060001px;}
.x13{left:443.160015px;}
.xb{left:453.060001px;}
.x11{left:465.660015px;}
.x12{left:499.139992px;}
.xe{left:516.060001px;}
.xc{left:524.160015px;}
.x1{left:565.560001px;}
.x1a{left:571.319996px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:15.051775pt;}
.ls2{letter-spacing:28.491779pt;}
.ls3{letter-spacing:753.281416pt;}
.ws0{word-spacing:-14.718600pt;}
.ws1{word-spacing:0.000000pt;}
._3{margin-left:-9.589559pt;}
._3f{margin-left:-2.173155pt;}
._0{margin-left:-0.958848pt;}
._2{width:0.911916pt;}
._25{width:2.367695pt;}
._19{width:3.914918pt;}
._1a{width:4.830921pt;}
._31{width:5.738906pt;}
._1e{width:6.709152pt;}
._2a{width:8.130647pt;}
._22{width:9.272258pt;}
._18{width:10.351545pt;}
._13{width:11.629730pt;}
._14{width:12.651905pt;}
._9{width:13.544562pt;}
._16{width:16.209778pt;}
._17{width:17.123481pt;}
._1b{width:18.208481pt;}
._11{width:19.488576pt;}
._7{width:20.975454pt;}
._6{width:22.179320pt;}
._5{width:23.943023pt;}
._4{width:25.094194pt;}
._1c{width:26.470881pt;}
._2b{width:27.632393pt;}
._b{width:30.108024pt;}
._a{width:31.010020pt;}
._15{width:31.939132pt;}
._23{width:33.592461pt;}
._29{width:35.276099pt;}
._3d{width:36.430145pt;}
._20{width:37.826641pt;}
._1f{width:38.874422pt;}
._e{width:40.555722pt;}
._f{width:41.619440pt;}
._10{width:42.794246pt;}
._2e{width:44.393995pt;}
._3c{width:45.754608pt;}
._2c{width:46.869312pt;}
._21{width:48.043810pt;}
._37{width:49.096007pt;}
._c{width:50.206754pt;}
._30{width:51.294321pt;}
._d{width:52.793318pt;}
._24{width:53.693768pt;}
._36{width:54.684482pt;}
._28{width:55.638608pt;}
._8{width:57.096899pt;}
._32{width:58.296695pt;}
._3b{width:59.540877pt;}
._3e{width:61.708996pt;}
._2f{width:63.064371pt;}
._1d{width:65.410148pt;}
._39{width:68.819161pt;}
._38{width:70.216691pt;}
._34{width:71.418557pt;}
._33{width:73.154202pt;}
._2d{width:75.003456pt;}
._35{width:85.196845pt;}
._26{width:89.722746pt;}
._27{width:90.664736pt;}
._3a{width:112.661454pt;}
._12{width:797.437996pt;}
._1{width:836.477976pt;}
.fs1{font-size:42.876000pt;}
.fs2{font-size:47.995600pt;}
.fs0{font-size:53.115200pt;}
.fs4{font-size:58.874400pt;}
.fs3{font-size:74.873200pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:49.760009pt;}
.y5{bottom:63.200011pt;}
.y4{bottom:76.320007pt;}
.y2c{bottom:99.200011pt;}
.y84{bottom:100.640014pt;}
.y4c{bottom:101.760009pt;}
.y5d{bottom:115.040038pt;}
.y2b{bottom:115.200011pt;}
.y83{bottom:116.640014pt;}
.y4b{bottom:118.559997pt;}
.y5c{bottom:131.040038pt;}
.y2a{bottom:131.200011pt;}
.y82{bottom:132.799987pt;}
.y4a{bottom:135.520019pt;}
.y5b{bottom:147.040038pt;}
.y29{bottom:147.200011pt;}
.y81{bottom:148.799987pt;}
.y49{bottom:152.320007pt;}
.y5a{bottom:163.040038pt;}
.y28{bottom:163.200011pt;}
.y80{bottom:164.799987pt;}
.y48{bottom:169.119994pt;}
.y59{bottom:179.040038pt;}
.y27{bottom:179.200011pt;}
.y7f{bottom:180.799987pt;}
.y47{bottom:186.080016pt;}
.y58{bottom:195.200011pt;}
.y26{bottom:195.359985pt;}
.y7e{bottom:196.799987pt;}
.y46{bottom:202.880004pt;}
.y85{bottom:209.760009pt;}
.y57{bottom:211.200011pt;}
.y7d{bottom:212.799987pt;}
.y45{bottom:219.840026pt;}
.y25{bottom:224.640014pt;}
.y56{bottom:227.200011pt;}
.y7c{bottom:228.799987pt;}
.y44{bottom:236.640014pt;}
.y24{bottom:237.600036pt;}
.y55{bottom:243.200011pt;}
.y7b{bottom:244.960021pt;}
.y43{bottom:253.600036pt;}
.y23{bottom:256.640014pt;}
.y54{bottom:259.200011pt;}
.y7a{bottom:260.960021pt;}
.y42{bottom:270.400024pt;}
.y22{bottom:272.640014pt;}
.y53{bottom:275.200011pt;}
.y79{bottom:276.960021pt;}
.y41{bottom:287.200011pt;}
.y21{bottom:288.800018pt;}
.y52{bottom:291.200011pt;}
.y78{bottom:292.960021pt;}
.y40{bottom:304.160003pt;}
.y20{bottom:304.800018pt;}
.y51{bottom:307.360015pt;}
.y77{bottom:308.960021pt;}
.y1f{bottom:320.800018pt;}
.y3f{bottom:320.960021pt;}
.y50{bottom:323.360015pt;}
.y76{bottom:324.960021pt;}
.y1e{bottom:336.800018pt;}
.y3e{bottom:337.920013pt;}
.y4f{bottom:339.360015pt;}
.y75{bottom:340.960021pt;}
.y1d{bottom:352.800018pt;}
.y3d{bottom:354.720000pt;}
.y4e{bottom:355.360015pt;}
.y74{bottom:356.960021pt;}
.y1c{bottom:368.800018pt;}
.y3c{bottom:371.520019pt;}
.y73{bottom:373.119994pt;}
.y1b{bottom:384.800018pt;}
.y3b{bottom:388.480010pt;}
.y72{bottom:389.119994pt;}
.y1a{bottom:400.960021pt;}
.y71{bottom:405.119994pt;}
.y3a{bottom:405.279998pt;}
.y19{bottom:416.960021pt;}
.y70{bottom:421.119994pt;}
.y39{bottom:422.240020pt;}
.y18{bottom:432.960021pt;}
.y6f{bottom:437.119994pt;}
.y38{bottom:439.040008pt;}
.y17{bottom:448.960021pt;}
.y6e{bottom:453.119994pt;}
.y37{bottom:455.839996pt;}
.y16{bottom:464.960021pt;}
.y6d{bottom:469.119994pt;}
.y36{bottom:472.800018pt;}
.y15{bottom:480.960021pt;}
.y6c{bottom:485.279998pt;}
.y35{bottom:486.400024pt;}
.y4d{bottom:489.600005pt;}
.y14{bottom:496.960021pt;}
.y6b{bottom:501.279998pt;}
.y34{bottom:506.559997pt;}
.y13{bottom:513.119994pt;}
.y6a{bottom:517.279998pt;}
.y33{bottom:523.360015pt;}
.y12{bottom:529.119994pt;}
.y69{bottom:533.279998pt;}
.y32{bottom:540.160003pt;}
.y11{bottom:545.120010pt;}
.y68{bottom:549.280013pt;}
.y31{bottom:557.120010pt;}
.y10{bottom:561.120010pt;}
.y67{bottom:565.280013pt;}
.y30{bottom:573.920013pt;}
.yf{bottom:577.120010pt;}
.y66{bottom:581.280013pt;}
.y2f{bottom:590.880004pt;}
.ye{bottom:593.120010pt;}
.y65{bottom:597.440002pt;}
.y2e{bottom:607.680007pt;}
.yd{bottom:609.120010pt;}
.y64{bottom:613.440002pt;}
.y2d{bottom:624.480010pt;}
.yc{bottom:625.120010pt;}
.y63{bottom:629.440002pt;}
.yb{bottom:641.440002pt;}
.y62{bottom:645.440002pt;}
.ya{bottom:658.240005pt;}
.y61{bottom:661.440002pt;}
.y9{bottom:675.200011pt;}
.y60{bottom:677.440009pt;}
.y8{bottom:692.000007pt;}
.y5f{bottom:693.440009pt;}
.y7{bottom:708.960006pt;}
.y5e{bottom:709.600005pt;}
.y3{bottom:725.280006pt;}
.y2{bottom:740.800010pt;}
.y1{bottom:754.080009pt;}
.h3{height:33.685295pt;}
.h4{height:36.134754pt;}
.h9{height:40.878612pt;}
.h7{height:41.281073pt;}
.h2{height:41.729666pt;}
.h8{height:42.862173pt;}
.h6{height:50.911407pt;}
.h5{height:63.101144pt;}
.h0{height:793.760013pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w0{width:559.359987pt;}
.x0{left:0.000000pt;}
.x6{left:56.799999pt;}
.x10{left:71.519997pt;}
.xf{left:76.320000pt;}
.x8{left:84.000000pt;}
.xa{left:86.239998pt;}
.x15{left:94.879997pt;}
.x9{left:96.480003pt;}
.x4{left:99.680000pt;}
.x7{left:104.000000pt;}
.xd{left:167.679993pt;}
.x16{left:186.559998pt;}
.x2{left:213.600006pt;}
.x14{left:223.679993pt;}
.x5{left:261.279999pt;}
.x3{left:279.679993pt;}
.x19{left:290.239990pt;}
.x18{left:296.799988pt;}
.x17{left:362.720001pt;}
.x13{left:393.920013pt;}
.xb{left:402.720001pt;}
.x11{left:413.920013pt;}
.x12{left:443.679993pt;}
.xe{left:458.720001pt;}
.xc{left:465.920013pt;}
.x1{left:502.720001pt;}
.x1a{left:507.839996pt;}
}




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