
    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_e45c3e264d5de2a181eac196.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_366dc2f16214ababe246b109.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_2d42b675b3016f8aa0966334.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_25cd04820d811f5fa7d6c6d6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_9417f91a72960a4cb7c124ba.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_a9bc2356802858715efddcf3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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;}
.m3{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.311844px;}
.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:-53.442699px;}
.ws6{word-spacing:-23.418711px;}
.ws3{word-spacing:-20.015992px;}
.ws1{word-spacing:0.000000px;}
.ws5{word-spacing:28.408371px;}
.ws4{word-spacing:28.408529px;}
.ws7{word-spacing:36.042347px;}
.ws2{word-spacing:2296.105449px;}
._7{margin-left:-212.452294px;}
._16{margin-left:-211.404379px;}
._3{margin-left:-14.353329px;}
._2c{margin-left:-10.433147px;}
._4{margin-left:-9.314207px;}
._2{margin-left:-7.792024px;}
._1a{margin-left:-5.716455px;}
._2b{margin-left:-4.700260px;}
._1{margin-left:-3.624922px;}
._6{margin-left:-2.594983px;}
._0{margin-left:-1.071516px;}
._5{width:1.142189px;}
._1b{width:2.937193px;}
._1c{width:3.970245px;}
._19{width:5.228540px;}
._17{width:6.593661px;}
._18{width:7.600375px;}
._1f{width:8.625081px;}
._20{width:9.658495px;}
._28{width:11.295262px;}
._1d{width:12.361832px;}
._1e{width:13.506451px;}
._21{width:15.177060px;}
._23{width:16.602499px;}
._30{width:17.890448px;}
._2e{width:18.998416px;}
._2d{width:21.036473px;}
._29{width:22.181332px;}
._2a{width:24.650342px;}
._25{width:26.033513px;}
._24{width:28.156777px;}
._26{width:30.801896px;}
._27{width:32.217180px;}
._31{width:33.508289px;}
._2f{width:35.773092px;}
._22{width:48.015748px;}
._e{width:80.789809px;}
._d{width:103.240015px;}
._8{width:182.381147px;}
._c{width:318.092010px;}
._15{width:324.940562px;}
._b{width:546.261201px;}
._11{width:728.672158px;}
._9{width:900.350726px;}
._10{width:946.294146px;}
._14{width:994.681490px;}
._a{width:1290.598621px;}
._f{width:1536.890902px;}
._13{width:1759.883296px;}
._12{width:1783.859286px;}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:53.999978px;}
.fs5{font-size:59.759976px;}
.fs4{font-size:71.999971px;}
.fs6{font-size:84.239966px;}
.fs3{font-size:107.999957px;}
.fs1{font-size:120.239952px;}
.fs0{font-size:192.239923px;}
.y0{bottom:0.000000px;}
.y18{bottom:88.320265px;}
.y53{bottom:182.099927px;}
.y71{bottom:195.239922px;}
.y52{bottom:205.859918px;}
.y70{bottom:218.999912px;}
.y51{bottom:229.619908px;}
.y6f{bottom:242.759903px;}
.y50{bottom:253.379899px;}
.y6e{bottom:266.519893px;}
.y4f{bottom:286.139886px;}
.y6d{bottom:299.279880px;}
.y4e{bottom:309.899876px;}
.y37{bottom:312.059875px;}
.y6c{bottom:323.039871px;}
.y36{bottom:335.819866px;}
.y4d{bottom:342.659863px;}
.y6b{bottom:346.799861px;}
.y35{bottom:359.579856px;}
.y4c{bottom:366.419853px;}
.y6a{bottom:370.739852px;}
.y34{bottom:383.339847px;}
.y4b{bottom:399.179840px;}
.y69{bottom:403.499839px;}
.y4a{bottom:422.939831px;}
.y68{bottom:427.259829px;}
.y6{bottom:434.099826px;}
.y49{bottom:446.699821px;}
.y33{bottom:448.859820px;}
.y67{bottom:460.019816px;}
.y32{bottom:472.619811px;}
.y8b{bottom:478.739809px;}
.y48{bottom:479.459808px;}
.y66{bottom:483.779806px;}
.y17{bottom:485.759806px;}
.y31{bottom:496.379801px;}
.y8a{bottom:502.499799px;}
.y47{bottom:503.399799px;}
.y30{bottom:520.139792px;}
.y16{bottom:523.559791px;}
.y89{bottom:526.259789px;}
.y46{bottom:536.159786px;}
.y2f{bottom:543.899782px;}
.y88{bottom:559.199776px;}
.y45{bottom:559.919776px;}
.y15{bottom:561.539775px;}
.y65{bottom:564.059774px;}
.y2e{bottom:567.659773px;}
.y97{bottom:568.019773px;}
.y87{bottom:582.959767px;}
.y2d{bottom:591.599763px;}
.y96{bottom:591.779763px;}
.y64{bottom:596.999761px;}
.y14{bottom:599.519760px;}
.y86{bottom:606.719757px;}
.y2c{bottom:615.359754px;}
.y95{bottom:615.719754px;}
.y63{bottom:620.759752px;}
.y85{bottom:630.479748px;}
.y13{bottom:637.499745px;}
.y2b{bottom:639.119744px;}
.y94{bottom:648.479741px;}
.y5{bottom:651.539739px;}
.y62{bottom:653.519739px;}
.y44{bottom:658.199737px;}
.y2a{bottom:662.879735px;}
.y84{bottom:663.239735px;}
.y93{bottom:672.239731px;}
.y12{bottom:675.479730px;}
.y61{bottom:677.279729px;}
.y43{bottom:681.959727px;}
.y29{bottom:686.639725px;}
.y83{bottom:686.999725px;}
.y92{bottom:704.999718px;}
.y60{bottom:710.039716px;}
.y28{bottom:710.399716px;}
.y11{bottom:713.459715px;}
.y42{bottom:714.719714px;}
.y82{bottom:719.759712px;}
.y91{bottom:728.759708px;}
.y5f{bottom:733.799706px;}
.y27{bottom:734.159706px;}
.y41{bottom:738.479705px;}
.y10{bottom:751.259699px;}
.y26{bottom:757.919697px;}
.y90{bottom:761.519695px;}
.y40{bottom:762.239695px;}
.y5e{bottom:766.559693px;}
.y25{bottom:781.679687px;}
.y8f{bottom:785.279686px;}
.y3f{bottom:785.999686px;}
.yf{bottom:789.239684px;}
.y5d{bottom:790.319684px;}
.y24{bottom:805.439678px;}
.y5c{bottom:814.079674px;}
.y81{bottom:818.039673px;}
.y3e{bottom:818.759672px;}
.ye{bottom:827.219669px;}
.y23{bottom:829.199668px;}
.y5b{bottom:837.839665px;}
.y80{bottom:841.799663px;}
.y22{bottom:852.959659px;}
.yd{bottom:865.199654px;}
.y8e{bottom:865.559654px;}
.y78{bottom:867.899653px;}
.y5a{bottom:870.599652px;}
.y4{bottom:872.939651px;}
.y7f{bottom:874.559650px;}
.y21{bottom:876.899649px;}
.y77{bottom:891.659643px;}
.y59{bottom:894.359642px;}
.y7e{bottom:898.499641px;}
.y20{bottom:900.659640px;}
.yc{bottom:903.179639px;}
.y76{bottom:915.419634px;}
.y3d{bottom:917.219633px;}
.y7d{bottom:922.259631px;}
.y1f{bottom:924.419630px;}
.y58{bottom:927.299629px;}
.y3{bottom:928.199629px;}
.y3c{bottom:940.979624px;}
.yb{bottom:941.159624px;}
.y7c{bottom:946.019622px;}
.y1e{bottom:948.179621px;}
.y57{bottom:951.059620px;}
.y8d{bottom:955.019618px;}
.y1d{bottom:971.939611px;}
.y3b{bottom:973.739611px;}
.ya{bottom:976.979609px;}
.y7b{bottom:978.779608px;}
.y56{bottom:983.819606px;}
.y2{bottom:992.279603px;}
.y75{bottom:995.699602px;}
.y7a{bottom:1002.539599px;}
.y3a{bottom:1006.499597px;}
.y55{bottom:1007.579597px;}
.y8c{bottom:1011.539595px;}
.y74{bottom:1019.459592px;}
.y79{bottom:1035.299586px;}
.y9{bottom:1036.739585px;}
.y1c{bottom:1037.459585px;}
.y39{bottom:1039.259584px;}
.y1{bottom:1047.539581px;}
.y73{bottom:1052.219579px;}
.y1b{bottom:1061.219576px;}
.y72{bottom:1075.979570px;}
.y54{bottom:1078.139569px;}
.y1a{bottom:1084.979566px;}
.y38{bottom:1105.859558px;}
.y19{bottom:1108.739557px;}
.y8{bottom:1149.779540px;}
.y7{bottom:1165.259534px;}
.h3{height:56.320290px;}
.h6{height:62.327788px;}
.h7{height:64.546849px;}
.h5{height:75.093720px;}
.h8{height:87.859652px;}
.h4{height:112.640580px;}
.h2{height:125.406512px;}
.h1{height:200.500232px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x8{left:85.139122px;}
.xa{left:89.099964px;}
.x1{left:104.219958px;}
.xe{left:112.139916px;}
.x3{left:132.660255px;}
.xf{left:139.139944px;}
.xb{left:142.200096px;}
.x5{left:313.739875px;}
.x2{left:373.499543px;}
.xd{left:376.019850px;}
.x6{left:453.239784px;}
.x4{left:454.499895px;}
.x9{left:535.679786px;}
.x7{left:583.379767px;}
.xc{left:766.439693px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.277195pt;}
.ws0{word-spacing:-47.504621pt;}
.ws6{word-spacing:-20.816632pt;}
.ws3{word-spacing:-17.791993pt;}
.ws1{word-spacing:0.000000pt;}
.ws5{word-spacing:25.251886pt;}
.ws4{word-spacing:25.252026pt;}
.ws7{word-spacing:32.037642pt;}
.ws2{word-spacing:2040.982621pt;}
._7{margin-left:-188.846484pt;}
._16{margin-left:-187.915004pt;}
._3{margin-left:-12.758514pt;}
._2c{margin-left:-9.273908pt;}
._4{margin-left:-8.279295pt;}
._2{margin-left:-6.926244pt;}
._1a{margin-left:-5.081293pt;}
._2b{margin-left:-4.178009pt;}
._1{margin-left:-3.222153pt;}
._6{margin-left:-2.306652pt;}
._0{margin-left:-0.952459pt;}
._5{width:1.015279pt;}
._1b{width:2.610838pt;}
._1c{width:3.529107pt;}
._19{width:4.647591pt;}
._17{width:5.861032pt;}
._18{width:6.755889pt;}
._1f{width:7.666739pt;}
._20{width:8.585329pt;}
._28{width:10.040233pt;}
._1d{width:10.988295pt;}
._1e{width:12.005734pt;}
._21{width:13.490720pt;}
._23{width:14.757776pt;}
._30{width:15.902621pt;}
._2e{width:16.887481pt;}
._2d{width:18.699087pt;}
._29{width:19.716739pt;}
._2a{width:21.911415pt;}
._25{width:23.140900pt;}
._24{width:25.028246pt;}
._26{width:27.379463pt;}
._27{width:28.637494pt;}
._31{width:29.785146pt;}
._2f{width:31.798304pt;}
._22{width:42.680665pt;}
._e{width:71.813164pt;}
._d{width:91.768902pt;}
._8{width:162.116575pt;}
._c{width:282.748454pt;}
._15{width:288.836055pt;}
._b{width:485.565512pt;}
._11{width:647.708585pt;}
._9{width:800.311756pt;}
._10{width:841.150352pt;}
._14{width:884.161325pt;}
._a{width:1147.198774pt;}
._f{width:1366.125246pt;}
._13{width:1564.340708pt;}
._12{width:1585.652699pt;}
.fs2{font-size:47.999981pt;}
.fs5{font-size:53.119979pt;}
.fs4{font-size:63.999974pt;}
.fs6{font-size:74.879970pt;}
.fs3{font-size:95.999962pt;}
.fs1{font-size:106.879957pt;}
.fs0{font-size:170.879932pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:78.506902pt;}
.y53{bottom:161.866602pt;}
.y71{bottom:173.546597pt;}
.y52{bottom:182.986593pt;}
.y70{bottom:194.666589pt;}
.y51{bottom:204.106585pt;}
.y6f{bottom:215.786580pt;}
.y50{bottom:225.226577pt;}
.y6e{bottom:236.906572pt;}
.y4f{bottom:254.346565pt;}
.y6d{bottom:266.026560pt;}
.y4e{bottom:275.466556pt;}
.y37{bottom:277.386556pt;}
.y6c{bottom:287.146552pt;}
.y36{bottom:298.506547pt;}
.y4d{bottom:304.586545pt;}
.y6b{bottom:308.266543pt;}
.y35{bottom:319.626539pt;}
.y4c{bottom:325.706536pt;}
.y6a{bottom:329.546535pt;}
.y34{bottom:340.746530pt;}
.y4b{bottom:354.826525pt;}
.y69{bottom:358.666523pt;}
.y4a{bottom:375.946516pt;}
.y68{bottom:379.786515pt;}
.y6{bottom:385.866512pt;}
.y49{bottom:397.066508pt;}
.y33{bottom:398.986507pt;}
.y67{bottom:408.906503pt;}
.y32{bottom:420.106499pt;}
.y8b{bottom:425.546496pt;}
.y48{bottom:426.186496pt;}
.y66{bottom:430.026495pt;}
.y17{bottom:431.786494pt;}
.y31{bottom:441.226490pt;}
.y8a{bottom:446.666488pt;}
.y47{bottom:447.466488pt;}
.y30{bottom:462.346482pt;}
.y16{bottom:465.386481pt;}
.y89{bottom:467.786480pt;}
.y46{bottom:476.586476pt;}
.y2f{bottom:483.466473pt;}
.y88{bottom:497.066468pt;}
.y45{bottom:497.706468pt;}
.y15{bottom:499.146467pt;}
.y65{bottom:501.386466pt;}
.y2e{bottom:504.586465pt;}
.y97{bottom:504.906465pt;}
.y87{bottom:518.186459pt;}
.y2d{bottom:525.866456pt;}
.y96{bottom:526.026456pt;}
.y64{bottom:530.666454pt;}
.y14{bottom:532.906454pt;}
.y86{bottom:539.306451pt;}
.y2c{bottom:546.986448pt;}
.y95{bottom:547.306448pt;}
.y63{bottom:551.786446pt;}
.y85{bottom:560.426442pt;}
.y13{bottom:566.666440pt;}
.y2b{bottom:568.106439pt;}
.y94{bottom:576.426436pt;}
.y5{bottom:579.146435pt;}
.y62{bottom:580.906434pt;}
.y44{bottom:585.066433pt;}
.y2a{bottom:589.226431pt;}
.y84{bottom:589.546431pt;}
.y93{bottom:597.546428pt;}
.y12{bottom:600.426426pt;}
.y61{bottom:602.026426pt;}
.y43{bottom:606.186424pt;}
.y29{bottom:610.346423pt;}
.y83{bottom:610.666422pt;}
.y92{bottom:626.666416pt;}
.y60{bottom:631.146414pt;}
.y28{bottom:631.466414pt;}
.y11{bottom:634.186413pt;}
.y42{bottom:635.306413pt;}
.y82{bottom:639.786411pt;}
.y91{bottom:647.786408pt;}
.y5f{bottom:652.266406pt;}
.y27{bottom:652.586406pt;}
.y41{bottom:656.426404pt;}
.y10{bottom:667.786400pt;}
.y26{bottom:673.706397pt;}
.y90{bottom:676.906396pt;}
.y40{bottom:677.546396pt;}
.y5e{bottom:681.386394pt;}
.y25{bottom:694.826389pt;}
.y8f{bottom:698.026387pt;}
.y3f{bottom:698.666387pt;}
.yf{bottom:701.546386pt;}
.y5d{bottom:702.506386pt;}
.y24{bottom:715.946380pt;}
.y5c{bottom:723.626377pt;}
.y81{bottom:727.146376pt;}
.y3e{bottom:727.786376pt;}
.ye{bottom:735.306373pt;}
.y23{bottom:737.066372pt;}
.y5b{bottom:744.746369pt;}
.y80{bottom:748.266367pt;}
.y22{bottom:758.186363pt;}
.yd{bottom:769.066359pt;}
.y8e{bottom:769.386359pt;}
.y78{bottom:771.466358pt;}
.y5a{bottom:773.866357pt;}
.y4{bottom:775.946356pt;}
.y7f{bottom:777.386356pt;}
.y21{bottom:779.466355pt;}
.y77{bottom:792.586350pt;}
.y59{bottom:794.986349pt;}
.y7e{bottom:798.666347pt;}
.y20{bottom:800.586346pt;}
.yc{bottom:802.826346pt;}
.y76{bottom:813.706341pt;}
.y3d{bottom:815.306341pt;}
.y7d{bottom:819.786339pt;}
.y1f{bottom:821.706338pt;}
.y58{bottom:824.266337pt;}
.y3{bottom:825.066337pt;}
.y3c{bottom:836.426332pt;}
.yb{bottom:836.586332pt;}
.y7c{bottom:840.906330pt;}
.y1e{bottom:842.826330pt;}
.y57{bottom:845.386329pt;}
.y8d{bottom:848.906327pt;}
.y1d{bottom:863.946321pt;}
.y3b{bottom:865.546320pt;}
.ya{bottom:868.426319pt;}
.y7b{bottom:870.026319pt;}
.y56{bottom:874.506317pt;}
.y2{bottom:882.026314pt;}
.y75{bottom:885.066313pt;}
.y7a{bottom:891.146310pt;}
.y3a{bottom:894.666309pt;}
.y55{bottom:895.626308pt;}
.y8c{bottom:899.146307pt;}
.y74{bottom:906.186304pt;}
.y79{bottom:920.266299pt;}
.y9{bottom:921.546298pt;}
.y1c{bottom:922.186298pt;}
.y39{bottom:923.786297pt;}
.y1{bottom:931.146294pt;}
.y73{bottom:935.306293pt;}
.y1b{bottom:943.306289pt;}
.y72{bottom:956.426284pt;}
.y54{bottom:958.346283pt;}
.y1a{bottom:964.426281pt;}
.y38{bottom:982.986273pt;}
.y19{bottom:985.546272pt;}
.y8{bottom:1022.026258pt;}
.y7{bottom:1035.786252pt;}
.h3{height:50.062480pt;}
.h6{height:55.402478pt;}
.h7{height:57.374977pt;}
.h5{height:66.749973pt;}
.h8{height:78.097469pt;}
.h4{height:100.124960pt;}
.h2{height:111.472455pt;}
.h1{height:178.222429pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x8{left:75.679219pt;}
.xa{left:79.199968pt;}
.x1{left:92.639963pt;}
.xe{left:99.679925pt;}
.x3{left:117.920227pt;}
.xf{left:123.679951pt;}
.xb{left:126.400085pt;}
.x5{left:278.879888pt;}
.x2{left:331.999594pt;}
.xd{left:334.239866pt;}
.x6{left:402.879808pt;}
.x4{left:403.999907pt;}
.x9{left:476.159810pt;}
.x7{left:518.559793pt;}
.xc{left:681.279727pt;}
}




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