
    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_ad385a525bdf8a79259f539e.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5f23194abe8d0817b61cc1a2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_93c46bf0cc202356886ef4ee.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_21f75665d4cf54186a1b154e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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.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.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v1{vertical-align:-84.959966px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.003693px;}
.ls0{letter-spacing:1343.603463px;}
.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:-17.999993px;}
.ws0{word-spacing:0.000000px;}
._40{margin-left:-17.084897px;}
._39{margin-left:-10.058076px;}
._1b{margin-left:-2.912390px;}
._0{margin-left:-1.239693px;}
._4{width:1.272177px;}
._9{width:3.149474px;}
._8{width:4.375665px;}
._7{width:5.452808px;}
._6{width:6.714142px;}
._d{width:8.120514px;}
._c{width:9.262794px;}
._3a{width:12.901724px;}
._b{width:14.535848px;}
._a{width:15.600068px;}
._f{width:19.695862px;}
._2d{width:23.419177px;}
._e{width:27.114988px;}
._3c{width:28.617935px;}
._31{width:33.010415px;}
._1d{width:34.450969px;}
._2{width:41.074832px;}
._10{width:43.415802px;}
._3b{width:44.673730px;}
._23{width:47.018014px;}
._33{width:50.072943px;}
._42{width:56.731432px;}
._5{width:59.985869px;}
._2e{width:62.020310px;}
._35{width:63.588200px;}
._14{width:67.515822px;}
._30{width:69.245823px;}
._29{width:71.293162px;}
._15{width:75.160907px;}
._1{width:76.572200px;}
._41{width:81.189187px;}
._1c{width:84.995677px;}
._27{width:89.815850px;}
._3f{width:93.033292px;}
._11{width:98.020226px;}
._36{width:99.535462px;}
._16{width:101.421468px;}
._24{width:103.694475px;}
._13{width:105.245811px;}
._2a{width:106.719652px;}
._38{width:109.621938px;}
._3d{width:124.393917px;}
._2f{width:127.008500px;}
._1f{width:137.499571px;}
._20{width:138.739472px;}
._37{width:140.195758px;}
._17{width:143.348210px;}
._19{width:148.702409px;}
._26{width:151.018541px;}
._12{width:152.296571px;}
._2c{width:155.731765px;}
._21{width:156.938791px;}
._34{width:158.555906px;}
._1a{width:165.369638px;}
._3e{width:169.796728px;}
._18{width:173.063416px;}
._32{width:182.354208px;}
._2b{width:184.425005px;}
._1e{width:186.601623px;}
._25{width:188.352927px;}
._22{width:194.755158px;}
._3{width:198.127361px;}
._28{width:365.265934px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.759976px;}
.fs1{font-size:71.999971px;}
.fs2{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.y2b{bottom:3.600037px;}
.y2a{bottom:53.940240px;}
.y29{bottom:57.539977px;}
.y7a{bottom:107.219957px;}
.y79{bottom:139.079944px;}
.y27{bottom:145.019942px;}
.y26{bottom:182.279927px;}
.y5c{bottom:185.339926px;}
.y78{bottom:188.939924px;}
.y25{bottom:205.679918px;}
.y5b{bottom:217.199913px;}
.y93{bottom:218.099913px;}
.y77{bottom:220.799912px;}
.y24{bottom:223.859910px;}
.y23{bottom:245.099902px;}
.y5a{bottom:249.059900px;}
.y92{bottom:249.959900px;}
.y76{bottom:252.659899px;}
.y22{bottom:276.959889px;}
.y59{bottom:280.919888px;}
.y91{bottom:281.819887px;}
.y75{bottom:302.519879px;}
.y21{bottom:308.819876px;}
.y58{bottom:312.779875px;}
.y90{bottom:313.679875px;}
.y74{bottom:334.379866px;}
.y8f{bottom:334.919866px;}
.y20{bottom:340.679864px;}
.y57{bottom:344.639862px;}
.y73{bottom:366.239854px;}
.y8e{bottom:366.779853px;}
.y1f{bottom:372.539851px;}
.y56{bottom:394.499842px;}
.y72{bottom:398.099841px;}
.y8d{bottom:398.639841px;}
.y1e{bottom:404.399838px;}
.y1d{bottom:425.639830px;}
.y71{bottom:429.959828px;}
.y8c{bottom:430.499828px;}
.y55{bottom:444.359822px;}
.y1c{bottom:446.879821px;}
.y70{bottom:461.819815px;}
.y8b{bottom:462.359815px;}
.y1b{bottom:468.119813px;}
.y54{bottom:476.219810px;}
.y40{bottom:485.219806px;}
.y1a{bottom:489.359804px;}
.y6f{bottom:493.679803px;}
.y53{bottom:508.079797px;}
.y19{bottom:510.599796px;}
.y8a{bottom:512.219795px;}
.y3f{bottom:516.539793px;}
.y18{bottom:531.839787px;}
.y3e{bottom:537.059785px;}
.y52{bottom:539.939784px;}
.y6e{bottom:543.539783px;}
.y17{bottom:553.079779px;}
.y89{bottom:561.719775px;}
.y3d{bottom:565.499774px;}
.y51{bottom:571.799771px;}
.y16{bottom:574.319770px;}
.y6d{bottom:575.399770px;}
.y88{bottom:593.579763px;}
.y15{bottom:595.559762px;}
.y3c{bottom:599.159760px;}
.y6c{bottom:607.259757px;}
.y14{bottom:616.799753px;}
.y50{bottom:621.659751px;}
.y87{bottom:625.439750px;}
.y3b{bottom:635.699746px;}
.y6b{bottom:639.119744px;}
.y86{bottom:657.659737px;}
.y13{bottom:659.279736px;}
.y3a{bottom:669.899732px;}
.y4f{bottom:671.519731px;}
.y12{bottom:680.519728px;}
.y6a{bottom:688.979724px;}
.y85{bottom:689.519724px;}
.y39{bottom:701.219720px;}
.y11{bottom:701.759719px;}
.y69{bottom:720.839712px;}
.y4e{bottom:721.379711px;}
.y10{bottom:722.999711px;}
.y38{bottom:732.539707px;}
.yf{bottom:744.959702px;}
.y68{bottom:752.699699px;}
.y4d{bottom:753.239699px;}
.y37{bottom:763.859694px;}
.ye{bottom:769.079692px;}
.y67{bottom:784.559686px;}
.y4c{bottom:785.099686px;}
.yd{bottom:790.319684px;}
.y36{bottom:795.179682px;}
.yc{bottom:811.559675px;}
.y66{bottom:816.419673px;}
.y4b{bottom:816.959673px;}
.y35{bottom:826.499669px;}
.y9b{bottom:829.919668px;}
.yb{bottom:832.799667px;}
.y84{bottom:834.959666px;}
.y65{bottom:848.279661px;}
.y4a{bottom:848.819660px;}
.ya{bottom:854.039658px;}
.y34{bottom:857.819657px;}
.y83{bottom:866.819653px;}
.y9a{bottom:870.779652px;}
.y9{bottom:875.279650px;}
.y64{bottom:880.139648px;}
.y49{bottom:880.679648px;}
.y33{bottom:889.139644px;}
.y8{bottom:896.519641px;}
.y82{bottom:898.679641px;}
.y99{bottom:902.639639px;}
.y63{bottom:911.999635px;}
.y48{bottom:912.539635px;}
.y32{bottom:920.459632px;}
.y81{bottom:930.539628px;}
.y7{bottom:930.899628px;}
.y62{bottom:943.859622px;}
.y47{bottom:944.039622px;}
.y98{bottom:952.859619px;}
.y31{bottom:954.119618px;}
.y6{bottom:968.159613px;}
.y61{bottom:975.719610px;}
.y46{bottom:975.899610px;}
.y80{bottom:980.399608px;}
.y30{bottom:990.659604px;}
.y97{bottom:1003.079599px;}
.y5{bottom:1005.419598px;}
.y60{bottom:1007.219597px;}
.y45{bottom:1007.759597px;}
.y7f{bottom:1012.259595px;}
.y2f{bottom:1027.199589px;}
.y4{bottom:1029.539588px;}
.y5f{bottom:1039.079584px;}
.y44{bottom:1039.619584px;}
.y7e{bottom:1044.119582px;}
.y96{bottom:1044.299582px;}
.y3{bottom:1050.779580px;}
.y2e{bottom:1063.739575px;}
.y5e{bottom:1070.939572px;}
.y43{bottom:1071.479571px;}
.y2{bottom:1071.659571px;}
.y7d{bottom:1075.979570px;}
.y95{bottom:1076.159570px;}
.y1{bottom:1085.699566px;}
.y2d{bottom:1100.279560px;}
.y5d{bottom:1104.959558px;}
.y42{bottom:1105.499558px;}
.y7c{bottom:1107.839557px;}
.y94{bottom:1108.379557px;}
.y2c{bottom:1136.819545px;}
.y7b{bottom:1139.339544px;}
.y41{bottom:1139.699544px;}
.y28{bottom:1194.959522px;}
.h5{height:16.920000px;}
.h1{height:58.651148px;}
.h4{height:60.226851px;}
.h7{height:70.628878px;}
.h8{height:70.664034px;}
.h2{height:72.562471px;}
.h6{height:82.635787px;}
.h3{height:84.898091px;}
.h0{height:1263.000000px;}
.w1{width:0.180000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:106.379141px;}
.x11{left:138.419330px;}
.xf{left:148.859749px;}
.x10{left:191.520268px;}
.x4{left:202.500373px;}
.x12{left:265.679894px;}
.x13{left:269.459892px;}
.x7{left:315.179874px;}
.x5{left:324.540304px;}
.x8{left:340.379559px;}
.x9{left:361.619857px;}
.xc{left:393.299910px;}
.x3{left:402.659839px;}
.xd{left:409.139836px;}
.x6{left:446.579821px;}
.x1{left:578.699769px;}
.xe{left:734.579186px;}
.xa{left:759.600372px;}
.xb{left:786.600000px;}
@media print{
.v1{vertical-align:-75.519970pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003283pt;}
.ls0{letter-spacing:1194.314189pt;}
.ws1{word-spacing:-15.999994pt;}
.ws0{word-spacing:0.000000pt;}
._40{margin-left:-15.186575pt;}
._39{margin-left:-8.940512pt;}
._1b{margin-left:-2.588791pt;}
._0{margin-left:-1.101949pt;}
._4{width:1.130824pt;}
._9{width:2.799533pt;}
._8{width:3.889480pt;}
._7{width:4.846940pt;}
._6{width:5.968126pt;}
._d{width:7.218235pt;}
._c{width:8.233595pt;}
._3a{width:11.468199pt;}
._b{width:12.920754pt;}
._a{width:13.866727pt;}
._f{width:17.507433pt;}
._2d{width:20.817047pt;}
._e{width:24.102212pt;}
._3c{width:25.438164pt;}
._31{width:29.342591pt;}
._1d{width:30.623084pt;}
._2{width:36.510961pt;}
._10{width:38.591824pt;}
._3b{width:39.709982pt;}
._23{width:41.793790pt;}
._33{width:44.509283pt;}
._42{width:50.427940pt;}
._5{width:53.320772pt;}
._2e{width:55.129165pt;}
._35{width:56.522845pt;}
._14{width:60.014064pt;}
._30{width:61.551843pt;}
._29{width:63.371699pt;}
._15{width:66.809695pt;}
._1{width:68.064178pt;}
._41{width:72.168166pt;}
._1c{width:75.551713pt;}
._27{width:79.836311pt;}
._3f{width:82.696260pt;}
._11{width:87.129089pt;}
._36{width:88.475966pt;}
._16{width:90.152416pt;}
._24{width:92.172867pt;}
._13{width:93.551832pt;}
._2a{width:94.861913pt;}
._38{width:97.441723pt;}
._3d{width:110.572371pt;}
._2f{width:112.896445pt;}
._1f{width:122.221841pt;}
._20{width:123.323975pt;}
._37{width:124.618452pt;}
._17{width:127.420631pt;}
._19{width:132.179919pt;}
._26{width:134.238703pt;}
._12{width:135.374730pt;}
._2c{width:138.428236pt;}
._21{width:139.501147pt;}
._34{width:140.938583pt;}
._1a{width:146.995234pt;}
._3e{width:150.930425pt;}
._18{width:153.834147pt;}
._32{width:162.092629pt;}
._2b{width:163.933338pt;}
._1e{width:165.868109pt;}
._25{width:167.424824pt;}
._22{width:173.115696pt;}
._3{width:176.113210pt;}
._28{width:324.680830pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:63.999974pt;}
.fs2{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:3.200033pt;}
.y2a{bottom:47.946880pt;}
.y29{bottom:51.146646pt;}
.y7a{bottom:95.306629pt;}
.y79{bottom:123.626617pt;}
.y27{bottom:128.906615pt;}
.y26{bottom:162.026602pt;}
.y5c{bottom:164.746601pt;}
.y78{bottom:167.946599pt;}
.y25{bottom:182.826594pt;}
.y5b{bottom:193.066589pt;}
.y93{bottom:193.866589pt;}
.y77{bottom:196.266588pt;}
.y24{bottom:198.986587pt;}
.y23{bottom:217.866580pt;}
.y5a{bottom:221.386578pt;}
.y92{bottom:222.186578pt;}
.y76{bottom:224.586577pt;}
.y22{bottom:246.186568pt;}
.y59{bottom:249.706567pt;}
.y91{bottom:250.506566pt;}
.y75{bottom:268.906559pt;}
.y21{bottom:274.506557pt;}
.y58{bottom:278.026555pt;}
.y90{bottom:278.826555pt;}
.y74{bottom:297.226548pt;}
.y8f{bottom:297.706548pt;}
.y20{bottom:302.826546pt;}
.y57{bottom:306.346544pt;}
.y73{bottom:325.546536pt;}
.y8e{bottom:326.026536pt;}
.y1f{bottom:331.146534pt;}
.y56{bottom:350.666526pt;}
.y72{bottom:353.866525pt;}
.y8d{bottom:354.346525pt;}
.y1e{bottom:359.466523pt;}
.y1d{bottom:378.346515pt;}
.y71{bottom:382.186514pt;}
.y8c{bottom:382.666514pt;}
.y55{bottom:394.986509pt;}
.y1c{bottom:397.226508pt;}
.y70{bottom:410.506502pt;}
.y8b{bottom:410.986502pt;}
.y1b{bottom:416.106500pt;}
.y54{bottom:423.306497pt;}
.y40{bottom:431.306494pt;}
.y1a{bottom:434.986493pt;}
.y6f{bottom:438.826491pt;}
.y53{bottom:451.626486pt;}
.y19{bottom:453.866485pt;}
.y8a{bottom:455.306485pt;}
.y3f{bottom:459.146483pt;}
.y18{bottom:472.746478pt;}
.y3e{bottom:477.386476pt;}
.y52{bottom:479.946475pt;}
.y6e{bottom:483.146473pt;}
.y17{bottom:491.626470pt;}
.y89{bottom:499.306467pt;}
.y3d{bottom:502.666466pt;}
.y51{bottom:508.266463pt;}
.y16{bottom:510.506462pt;}
.y6d{bottom:511.466462pt;}
.y88{bottom:527.626456pt;}
.y15{bottom:529.386455pt;}
.y3c{bottom:532.586454pt;}
.y6c{bottom:539.786451pt;}
.y14{bottom:548.266447pt;}
.y50{bottom:552.586446pt;}
.y87{bottom:555.946444pt;}
.y3b{bottom:565.066441pt;}
.y6b{bottom:568.106439pt;}
.y86{bottom:584.586433pt;}
.y13{bottom:586.026432pt;}
.y3a{bottom:595.466428pt;}
.y4f{bottom:596.906428pt;}
.y12{bottom:604.906425pt;}
.y6a{bottom:612.426422pt;}
.y85{bottom:612.906422pt;}
.y39{bottom:623.306417pt;}
.y11{bottom:623.786417pt;}
.y69{bottom:640.746410pt;}
.y4e{bottom:641.226410pt;}
.y10{bottom:642.666410pt;}
.y38{bottom:651.146406pt;}
.yf{bottom:662.186402pt;}
.y68{bottom:669.066399pt;}
.y4d{bottom:669.546399pt;}
.y37{bottom:678.986395pt;}
.ye{bottom:683.626393pt;}
.y67{bottom:697.386388pt;}
.y4c{bottom:697.866388pt;}
.yd{bottom:702.506386pt;}
.y36{bottom:706.826384pt;}
.yc{bottom:721.386378pt;}
.y66{bottom:725.706376pt;}
.y4b{bottom:726.186376pt;}
.y35{bottom:734.666373pt;}
.y9b{bottom:737.706372pt;}
.yb{bottom:740.266371pt;}
.y84{bottom:742.186370pt;}
.y65{bottom:754.026365pt;}
.y4a{bottom:754.506365pt;}
.ya{bottom:759.146363pt;}
.y34{bottom:762.506362pt;}
.y83{bottom:770.506358pt;}
.y9a{bottom:774.026357pt;}
.y9{bottom:778.026355pt;}
.y64{bottom:782.346354pt;}
.y49{bottom:782.826354pt;}
.y33{bottom:790.346351pt;}
.y8{bottom:796.906348pt;}
.y82{bottom:798.826347pt;}
.y99{bottom:802.346346pt;}
.y63{bottom:810.666342pt;}
.y48{bottom:811.146342pt;}
.y32{bottom:818.186339pt;}
.y81{bottom:827.146336pt;}
.y7{bottom:827.466336pt;}
.y62{bottom:838.986331pt;}
.y47{bottom:839.146331pt;}
.y98{bottom:846.986328pt;}
.y31{bottom:848.106327pt;}
.y6{bottom:860.586322pt;}
.y61{bottom:867.306320pt;}
.y46{bottom:867.466320pt;}
.y80{bottom:871.466318pt;}
.y30{bottom:880.586314pt;}
.y97{bottom:891.626310pt;}
.y5{bottom:893.706309pt;}
.y60{bottom:895.306309pt;}
.y45{bottom:895.786308pt;}
.y7f{bottom:899.786307pt;}
.y2f{bottom:913.066301pt;}
.y4{bottom:915.146301pt;}
.y5f{bottom:923.626297pt;}
.y44{bottom:924.106297pt;}
.y7e{bottom:928.106295pt;}
.y96{bottom:928.266295pt;}
.y3{bottom:934.026293pt;}
.y2e{bottom:945.546288pt;}
.y5e{bottom:951.946286pt;}
.y43{bottom:952.426286pt;}
.y2{bottom:952.586286pt;}
.y7d{bottom:956.426284pt;}
.y95{bottom:956.586284pt;}
.y1{bottom:965.066281pt;}
.y2d{bottom:978.026275pt;}
.y5d{bottom:982.186274pt;}
.y42{bottom:982.666274pt;}
.y7c{bottom:984.746273pt;}
.y94{bottom:985.226273pt;}
.y2c{bottom:1010.506262pt;}
.y7b{bottom:1012.746262pt;}
.y41{bottom:1013.066261pt;}
.y28{bottom:1062.186242pt;}
.h5{height:15.040000pt;}
.h1{height:52.134354pt;}
.h4{height:53.534979pt;}
.h7{height:62.781225pt;}
.h8{height:62.812475pt;}
.h2{height:64.499974pt;}
.h6{height:73.454033pt;}
.h3{height:75.464970pt;}
.h0{height:1122.666667pt;}
.w1{width:0.160000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:94.559236pt;}
.x11{left:123.039405pt;}
.xf{left:132.319777pt;}
.x10{left:170.240238pt;}
.x4{left:180.000331pt;}
.x12{left:236.159906pt;}
.x13{left:239.519904pt;}
.x7{left:280.159888pt;}
.x5{left:288.480271pt;}
.x8{left:302.559608pt;}
.x9{left:321.439873pt;}
.xc{left:349.599920pt;}
.x3{left:357.919857pt;}
.xd{left:363.679855pt;}
.x6{left:396.959841pt;}
.x1{left:514.399794pt;}
.xe{left:652.959277pt;}
.xa{left:675.200331pt;}
.xb{left:699.200000pt;}
}




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