
    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_267ebce4eba317c1c57eb2a6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.825000;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_e0fa1cfda1516753bc8a44da.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.745000;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_cb507992a81db883a56ba140.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_94838bac516be89ff0f67dbb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.944336;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_b2d1a91834b62a97a28c7b95.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939941;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.129453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129453,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.239546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239546,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.239635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239635,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249911,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.294807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294807,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.294982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294982,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.295796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295796,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.354371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354371,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.371131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371131,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-299.969842px;}
.ws1{word-spacing:0.000000px;}
._58{margin-left:-1542.149229px;}
._61{margin-left:-1403.132632px;}
._5a{margin-left:-862.794266px;}
._9{margin-left:-325.067422px;}
._1b{margin-left:-270.878766px;}
._13{margin-left:-255.584449px;}
._25{margin-left:-254.196270px;}
._3{margin-left:-243.705172px;}
._6{margin-left:-241.192525px;}
._62{margin-left:-238.112818px;}
._64{margin-left:-236.486424px;}
._60{margin-left:-234.579416px;}
._0{margin-left:-232.909429px;}
._2{margin-left:-226.433423px;}
._5{margin-left:-225.349889px;}
._15{margin-left:-224.277154px;}
._5f{margin-left:-222.580622px;}
._12{margin-left:-221.382930px;}
._10{margin-left:-219.586640px;}
._8{margin-left:-215.270502px;}
._7{margin-left:-211.307143px;}
._5e{margin-left:-209.737498px;}
._c{margin-left:-206.271050px;}
._17{margin-left:-205.176716px;}
._2c{margin-left:-202.788100px;}
._63{margin-left:-197.577667px;}
._5d{margin-left:-196.427667px;}
._16{margin-left:-194.748151px;}
._11{margin-left:-192.231904px;}
._2f{margin-left:-189.868522px;}
._1c{margin-left:-188.681030px;}
._65{margin-left:-187.593404px;}
._f{margin-left:-185.752298px;}
._b{margin-left:-183.948808px;}
._1{margin-left:-180.349027px;}
._20{margin-left:-178.530147px;}
._d{margin-left:-175.312933px;}
._2a{margin-left:-173.546277px;}
._22{margin-left:-172.187160px;}
._21{margin-left:-170.107489px;}
._28{margin-left:-168.023117px;}
._2e{margin-left:-166.345286px;}
._14{margin-left:-162.350122px;}
._2b{margin-left:-160.358862px;}
._24{margin-left:-158.084107px;}
._2d{margin-left:-156.123923px;}
._1d{margin-left:-153.284589px;}
._30{margin-left:-151.943305px;}
._18{margin-left:-150.478044px;}
._27{margin-left:-147.382677px;}
._1e{margin-left:-146.021875px;}
._5c{margin-left:-140.388886px;}
._26{margin-left:-137.063657px;}
._1a{margin-left:-135.286399px;}
._19{margin-left:-125.690363px;}
._29{margin-left:-112.335455px;}
._4b{margin-left:-100.358927px;}
._44{margin-left:-96.530058px;}
._47{margin-left:-87.895159px;}
._49{margin-left:-86.727886px;}
._40{margin-left:-84.489867px;}
._43{margin-left:-80.819727px;}
._46{margin-left:-76.534850px;}
._4f{margin-left:-71.245716px;}
._50{margin-left:-69.759590px;}
._4{margin-left:-68.759416px;}
._45{margin-left:-65.694363px;}
._48{margin-left:-63.259284px;}
._a{margin-left:-61.919833px;}
._1f{margin-left:-57.872591px;}
._23{margin-left:-56.401858px;}
._4c{margin-left:-54.658444px;}
._51{margin-left:-53.356417px;}
._56{margin-left:-51.415112px;}
._4e{margin-left:-49.961771px;}
._57{margin-left:-48.919519px;}
._54{margin-left:-47.370304px;}
._52{margin-left:-45.650231px;}
._59{margin-left:-43.343976px;}
._4a{margin-left:-41.739997px;}
._4d{margin-left:-39.728511px;}
._53{margin-left:-38.316499px;}
._55{margin-left:-36.926615px;}
._32{margin-left:-35.865866px;}
._35{margin-left:-33.955243px;}
._37{margin-left:-32.954751px;}
._3b{margin-left:-31.180601px;}
._39{margin-left:-29.542925px;}
._3f{margin-left:-27.291818px;}
._3c{margin-left:-26.268037px;}
._33{margin-left:-24.289410px;}
._31{margin-left:-22.925145px;}
._34{margin-left:-21.423942px;}
._3d{margin-left:-20.379201px;}
._38{margin-left:-19.263662px;}
._41{margin-left:-18.172343px;}
._36{margin-left:-17.102916px;}
._3e{margin-left:-15.897016px;}
._42{margin-left:-13.567227px;}
._5b{margin-left:-12.405713px;}
._3a{margin-left:-8.665807px;}
._e{margin-left:-7.559540px;}
.fc0{color:transparent;}
.fs3{font-size:46.577837px;}
.fs5{font-size:72.009907px;}
.fs4{font-size:132.946862px;}
.fs2{font-size:240.033024px;}
.fs1{font-size:299.969842px;}
.fs0{font-size:359.978098px;}
.y0{bottom:0.000000px;}
.y4{bottom:20.670701px;}
.y3{bottom:92.693342px;}
.ya{bottom:164.346227px;}
.y9{bottom:178.319578px;}
.y8{bottom:192.292929px;}
.y7{bottom:206.266280px;}
.y6{bottom:220.239632px;}
.y5{bottom:234.212983px;}
.y3c{bottom:260.176404px;}
.y3b{bottom:281.779376px;}
.y3a{bottom:303.382348px;}
.y39{bottom:324.985320px;}
.y38{bottom:346.588293px;}
.y37{bottom:368.191265px;}
.y36{bottom:389.794237px;}
.y35{bottom:411.397209px;}
.y34{bottom:433.000181px;}
.y33{bottom:519.412070px;}
.y32{bottom:541.015042px;}
.y31{bottom:562.618014px;}
.y30{bottom:584.220986px;}
.y2f{bottom:605.823958px;}
.y2e{bottom:627.426931px;}
.y2d{bottom:649.029903px;}
.y2c{bottom:670.632875px;}
.y2b{bottom:692.235847px;}
.y2a{bottom:735.441791px;}
.y29{bottom:757.044764px;}
.y28{bottom:778.647736px;}
.y27{bottom:800.250708px;}
.y26{bottom:821.853680px;}
.y3e{bottom:824.666637px;}
.y25{bottom:843.456652px;}
.y24{bottom:865.059624px;}
.y23{bottom:912.537585px;}
.y22{bottom:934.140557px;}
.y21{bottom:955.743529px;}
.y20{bottom:977.346502px;}
.y1f{bottom:998.949474px;}
.y1e{bottom:1020.552446px;}
.y1d{bottom:1042.155418px;}
.y3d{bottom:1066.949970px;}
.y1b{bottom:1153.716987px;}
.y1a{bottom:1175.319959px;}
.y19{bottom:1196.922931px;}
.y18{bottom:1218.525903px;}
.y17{bottom:1240.128875px;}
.y16{bottom:1261.731848px;}
.y15{bottom:1283.334820px;}
.y14{bottom:1304.937792px;}
.y13{bottom:1326.540764px;}
.y12{bottom:1348.143736px;}
.y11{bottom:1369.746708px;}
.y1c{bottom:1372.920638px;}
.y10{bottom:1391.349681px;}
.yf{bottom:1412.952653px;}
.ye{bottom:1412.956433px;}
.yd{bottom:1456.316051px;}
.yc{bottom:1496.200110px;}
.yb{bottom:1536.084168px;}
.y2{bottom:1584.850063px;}
.y1{bottom:1692.843493px;}
.h6{height:34.933378px;}
.h8{height:54.007430px;}
.h7{height:100.359301px;}
.h3{height:154.439998px;}
.h5{height:169.943381px;}
.h9{height:212.378648px;}
.h4{height:242.675602px;}
.h2{height:291.222281px;}
.h1{height:1785.750000px;}
.h0{height:1785.960000px;}
.w0{width:1262.880000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x5{left:20.142936px;}
.x3{left:40.713012px;}
.xa{left:50.755147px;}
.x6{left:51.853853px;}
.x9{left:53.432453px;}
.x8{left:54.822309px;}
.x2{left:125.300751px;}
.x1{left:236.323103px;}
.x4{left:265.680601px;}
.x7{left:428.749189px;}
.x10{left:632.285482px;}
.xc{left:635.914564px;}
.xe{left:646.705169px;}
.x12{left:649.850877px;}
.x11{left:688.883388px;}
.xd{left:825.242083px;}
.xf{left:852.526059px;}
.xb{left:967.576002px;}
.x13{left:1096.535805px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-266.639859pt;}
.ws1{word-spacing:0.000000pt;}
._58{margin-left:-1370.799315pt;}
._61{margin-left:-1247.229007pt;}
._5a{margin-left:-766.928237pt;}
._9{margin-left:-288.948819pt;}
._1b{margin-left:-240.781126pt;}
._13{margin-left:-227.186177pt;}
._25{margin-left:-225.952240pt;}
._3{margin-left:-216.626820pt;}
._6{margin-left:-214.393356pt;}
._62{margin-left:-211.655839pt;}
._64{margin-left:-210.210155pt;}
._60{margin-left:-208.515036pt;}
._0{margin-left:-207.030603pt;}
._2{margin-left:-201.274154pt;}
._5{margin-left:-200.311012pt;}
._15{margin-left:-199.357470pt;}
._5f{margin-left:-197.849442pt;}
._12{margin-left:-196.784827pt;}
._10{margin-left:-195.188124pt;}
._8{margin-left:-191.351557pt;}
._7{margin-left:-187.828572pt;}
._5e{margin-left:-186.433332pt;}
._c{margin-left:-183.352044pt;}
._17{margin-left:-182.379303pt;}
._2c{margin-left:-180.256089pt;}
._63{margin-left:-175.624593pt;}
._5d{margin-left:-174.602371pt;}
._16{margin-left:-173.109467pt;}
._11{margin-left:-170.872803pt;}
._2f{margin-left:-168.772020pt;}
._1c{margin-left:-167.716471pt;}
._65{margin-left:-166.749693pt;}
._f{margin-left:-165.113154pt;}
._b{margin-left:-163.510051pt;}
._1{margin-left:-160.310246pt;}
._20{margin-left:-158.693464pt;}
._d{margin-left:-155.833718pt;}
._2a{margin-left:-154.263357pt;}
._22{margin-left:-153.055253pt;}
._21{margin-left:-151.206657pt;}
._28{margin-left:-149.353882pt;}
._2e{margin-left:-147.862476pt;}
._14{margin-left:-144.311220pt;}
._2b{margin-left:-142.541211pt;}
._24{margin-left:-140.519206pt;}
._2d{margin-left:-138.776820pt;}
._1d{margin-left:-136.252968pt;}
._30{margin-left:-135.060715pt;}
._18{margin-left:-133.758262pt;}
._27{margin-left:-131.006824pt;}
._1e{margin-left:-129.797222pt;}
._5c{margin-left:-124.790121pt;}
._26{margin-left:-121.834362pt;}
._1a{margin-left:-120.254576pt;}
._19{margin-left:-111.724767pt;}
._29{margin-left:-99.853738pt;}
._4b{margin-left:-89.207936pt;}
._44{margin-left:-85.804496pt;}
._47{margin-left:-78.129030pt;}
._49{margin-left:-77.091454pt;}
._40{margin-left:-75.102104pt;}
._43{margin-left:-71.839757pt;}
._46{margin-left:-68.030978pt;}
._4f{margin-left:-63.329525pt;}
._50{margin-left:-62.008525pt;}
._4{margin-left:-61.119481pt;}
._45{margin-left:-58.394989pt;}
._48{margin-left:-56.230475pt;}
._a{margin-left:-55.039851pt;}
._1f{margin-left:-51.442303pt;}
._23{margin-left:-50.134985pt;}
._4c{margin-left:-48.585283pt;}
._51{margin-left:-47.427926pt;}
._56{margin-left:-45.702321pt;}
._4e{margin-left:-44.410463pt;}
._57{margin-left:-43.484017pt;}
._54{margin-left:-42.106937pt;}
._52{margin-left:-40.577983pt;}
._59{margin-left:-38.527979pt;}
._4a{margin-left:-37.102219pt;}
._4d{margin-left:-35.314232pt;}
._53{margin-left:-34.059111pt;}
._55{margin-left:-32.823658pt;}
._32{margin-left:-31.880770pt;}
._35{margin-left:-30.182438pt;}
._37{margin-left:-29.293112pt;}
._3b{margin-left:-27.716090pt;}
._39{margin-left:-26.260377pt;}
._3f{margin-left:-24.259394pt;}
._3c{margin-left:-23.349366pt;}
._33{margin-left:-21.590587pt;}
._31{margin-left:-20.377907pt;}
._34{margin-left:-19.043504pt;}
._3d{margin-left:-18.114845pt;}
._38{margin-left:-17.123255pt;}
._41{margin-left:-16.153194pt;}
._36{margin-left:-15.202592pt;}
._3e{margin-left:-14.130681pt;}
._42{margin-left:-12.059758pt;}
._5b{margin-left:-11.027300pt;}
._3a{margin-left:-7.702939pt;}
._e{margin-left:-6.719591pt;}
.fs3{font-size:41.402522pt;}
.fs5{font-size:64.008806pt;}
.fs4{font-size:118.174989pt;}
.fs2{font-size:213.362688pt;}
.fs1{font-size:266.639859pt;}
.fs0{font-size:319.980531pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:18.373956pt;}
.y3{bottom:82.394082pt;}
.ya{bottom:146.085535pt;}
.y9{bottom:158.506292pt;}
.y8{bottom:170.927048pt;}
.y7{bottom:183.347805pt;}
.y6{bottom:195.768561pt;}
.y5{bottom:208.189318pt;}
.y3c{bottom:231.267915pt;}
.y3b{bottom:250.470557pt;}
.y3a{bottom:269.673198pt;}
.y39{bottom:288.875840pt;}
.y38{bottom:308.078482pt;}
.y37{bottom:327.281124pt;}
.y36{bottom:346.483766pt;}
.y35{bottom:365.686408pt;}
.y34{bottom:384.889050pt;}
.y33{bottom:461.699618pt;}
.y32{bottom:480.902260pt;}
.y31{bottom:500.104901pt;}
.y30{bottom:519.307543pt;}
.y2f{bottom:538.510185pt;}
.y2e{bottom:557.712827pt;}
.y2d{bottom:576.915469pt;}
.y2c{bottom:596.118111pt;}
.y2b{bottom:615.320753pt;}
.y2a{bottom:653.726037pt;}
.y29{bottom:672.928679pt;}
.y28{bottom:692.131321pt;}
.y27{bottom:711.333963pt;}
.y26{bottom:730.536605pt;}
.y3e{bottom:733.037010pt;}
.y25{bottom:749.739246pt;}
.y24{bottom:768.941888pt;}
.y23{bottom:811.144520pt;}
.y22{bottom:830.347162pt;}
.y21{bottom:849.549804pt;}
.y20{bottom:868.752446pt;}
.y1f{bottom:887.955088pt;}
.y1e{bottom:907.157730pt;}
.y1d{bottom:926.360372pt;}
.y3d{bottom:948.399974pt;}
.y1b{bottom:1025.526210pt;}
.y1a{bottom:1044.728852pt;}
.y19{bottom:1063.931494pt;}
.y18{bottom:1083.134136pt;}
.y17{bottom:1102.336778pt;}
.y16{bottom:1121.539420pt;}
.y15{bottom:1140.742062pt;}
.y14{bottom:1159.944704pt;}
.y13{bottom:1179.147346pt;}
.y12{bottom:1198.349988pt;}
.y11{bottom:1217.552630pt;}
.y1c{bottom:1220.373900pt;}
.y10{bottom:1236.755272pt;}
.yf{bottom:1255.957913pt;}
.ye{bottom:1255.961274pt;}
.yd{bottom:1294.503156pt;}
.yc{bottom:1329.955653pt;}
.yb{bottom:1365.408150pt;}
.y2{bottom:1408.755612pt;}
.y1{bottom:1504.749771pt;}
.h6{height:31.051891pt;}
.h8{height:48.006605pt;}
.h7{height:89.208268pt;}
.h3{height:137.279998pt;}
.h5{height:151.060783pt;}
.h9{height:188.781020pt;}
.h4{height:215.711646pt;}
.h2{height:258.864250pt;}
.h1{height:1587.333333pt;}
.h0{height:1587.520000pt;}
.w0{width:1122.560000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x5{left:17.904832pt;}
.x3{left:36.189344pt;}
.xa{left:45.115686pt;}
.x6{left:46.092314pt;}
.x9{left:47.495514pt;}
.x8{left:48.730941pt;}
.x2{left:111.378445pt;}
.x1{left:210.064981pt;}
.x4{left:236.160535pt;}
.x7{left:381.110390pt;}
.x10{left:562.031540pt;}
.xc{left:565.257390pt;}
.xe{left:574.849039pt;}
.x12{left:577.645224pt;}
.x11{left:612.340789pt;}
.xd{left:733.548518pt;}
.xf{left:757.800941pt;}
.xb{left:860.067558pt;}
.x13{left:974.698493pt;}
}




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