
    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_b1f1bd8c79488889bf4bbf47.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.863770;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_90ba6a3d3aeec8caeab78cfe.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_00a1fc2d41ee9048fef8617f.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_d08c5d4e1c6f9e81ef503391.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.239258;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_9e5c9de13e7369991526e2de.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_05039aecaab401ed179cf8b3.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_aa9c3bea39cbf6d79e35fea6.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ea0e072b18fe894a259c13ac.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.281250;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;}
.m4{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249822,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249833,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.028800px;}
.ls2{letter-spacing:1.037760px;}
.ls4{letter-spacing:55.377578px;}
.ls0{letter-spacing:64.384774px;}
.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:-18.983992px;}
.ws3{word-spacing:-16.679993px;}
.ws1{word-spacing:-14.999994px;}
.ws2{word-spacing:0.000000px;}
._3{margin-left:-4.324780px;}
._5{margin-left:-3.126182px;}
._1{margin-left:-1.498547px;}
._0{width:1.055443px;}
._2{width:2.064091px;}
._4{width:3.280806px;}
._a{width:4.498099px;}
._11{width:7.283600px;}
._14{width:8.326798px;}
._19{width:9.504888px;}
._13{width:10.689295px;}
._7{width:13.103679px;}
._16{width:14.316641px;}
._8{width:15.679194px;}
._9{width:19.304276px;}
._1a{width:23.002653px;}
._17{width:24.758704px;}
._18{width:26.010439px;}
._c{width:27.391207px;}
._d{width:28.434355px;}
._b{width:30.365365px;}
._12{width:31.636000px;}
._e{width:34.379395px;}
._15{width:40.310996px;}
._10{width:42.403289px;}
._f{width:43.746986px;}
._1e{width:61.345216px;}
._6{width:63.806374px;}
._1f{width:64.833589px;}
._20{width:66.984862px;}
._21{width:68.042574px;}
._1c{width:99.448718px;}
._1b{width:101.226180px;}
._1d{width:103.809347px;}
.fc3{color:rgb(0,85,166);}
.fc2{color:rgb(79,98,40);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:53.999978px;}
.fs4{font-size:59.999976px;}
.fs1{font-size:65.999974px;}
.fs5{font-size:71.999971px;}
.fs0{font-size:83.999966px;}
.fs3{font-size:95.999962px;}
.y0{bottom:0.000000px;}
.y6{bottom:58.499977px;}
.y5{bottom:78.749969px;}
.y4d{bottom:110.250556px;}
.y73{bottom:117.749953px;}
.y33{bottom:124.499950px;}
.y4c{bottom:127.500249px;}
.y29{bottom:139.499944px;}
.y2a{bottom:139.500694px;}
.y88{bottom:142.500243px;}
.y4b{bottom:144.749942px;}
.y32{bottom:158.999936px;}
.y28{bottom:159.749936px;}
.y4a{bottom:162.000385px;}
.y72{bottom:162.749935px;}
.y31{bottom:179.249928px;}
.y49{bottom:180.000378px;}
.y27{bottom:197.249921px;}
.y30{bottom:198.749921px;}
.y71{bottom:201.000670px;}
.y48{bottom:201.750069px;}
.y70{bottom:218.251113px;}
.y47{bottom:218.999762px;}
.y6f{bottom:235.500806px;}
.y2f{bottom:238.500505px;}
.y26{bottom:239.249904px;}
.y46{bottom:240.750204px;}
.y6e{bottom:252.750499px;}
.y25{bottom:256.500347px;}
.y45{bottom:257.999897px;}
.y6d{bottom:270.000942px;}
.y24{bottom:273.750040px;}
.y2e{bottom:282.750187px;}
.y6c{bottom:287.250635px;}
.y9d{bottom:288.749885px;}
.y44{bottom:296.999881px;}
.y6b{bottom:309.000326px;}
.y23{bottom:311.250025px;}
.y6a{bottom:326.250769px;}
.y2d{bottom:326.999869px;}
.y9c{bottom:327.749869px;}
.y22{bottom:329.250018px;}
.y43{bottom:341.249864px;}
.y69{bottom:344.250762px;}
.y21{bottom:348.000311px;}
.y68{bottom:364.500754px;}
.y2c{bottom:365.249854px;}
.y20{bottom:366.750603px;}
.y67{bottom:381.750447px;}
.y42{bottom:386.249846px;}
.y1f{bottom:388.500295px;}
.y97{bottom:399.000140px;}
.y66{bottom:399.750440px;}
.y1e{bottom:405.749988px;}
.y96{bottom:416.250583px;}
.y65{bottom:420.750432px;}
.y1d{bottom:423.000431px;}
.y41{bottom:431.250127px;}
.y95{bottom:433.500277px;}
.y64{bottom:437.250425px;}
.y1c{bottom:444.750122px;}
.y40{bottom:447.750121px;}
.y94{bottom:450.749970px;}
.y63{bottom:454.500868px;}
.y1b{bottom:461.999815px;}
.y3f{bottom:465.750114px;}
.y93{bottom:468.000413px;}
.y87{bottom:474.750410px;}
.y62{bottom:476.250559px;}
.y1a{bottom:479.250258px;}
.y92{bottom:485.250106px;}
.y86{bottom:492.000103px;}
.y61{bottom:493.500253px;}
.y19{bottom:497.999801px;}
.y3e{bottom:503.250099px;}
.y85{bottom:508.500097px;}
.y60{bottom:510.750696px;}
.y18{bottom:516.750093px;}
.y3d{bottom:520.499792px;}
.y91{bottom:521.250091px;}
.y5f{bottom:528.000389px;}
.y17{bottom:533.999786px;}
.y3c{bottom:537.750235px;}
.y84{bottom:548.249781px;}
.y5e{bottom:550.500380px;}
.y3b{bottom:554.999928px;}
.y83{bottom:566.249774px;}
.y5d{bottom:567.000373px;}
.y3a{bottom:572.249621px;}
.y16{bottom:572.999771px;}
.y82{bottom:582.749767px;}
.y5c{bottom:584.250066px;}
.y39{bottom:589.500064px;}
.y5b{bottom:601.499759px;}
.y38{bottom:606.749757px;}
.y15{bottom:611.249755px;}
.y81{bottom:626.999749px;}
.y14{bottom:629.249748px;}
.y5a{bottom:640.500044px;}
.y37{bottom:644.999742px;}
.y59{bottom:657.749737px;}
.y13{bottom:666.749733px;}
.y80{bottom:671.999731px;}
.y36{bottom:689.249274px;}
.y58{bottom:695.999722px;}
.y9b{bottom:704.999268px;}
.y7f{bottom:709.499716px;}
.y12{bottom:710.999716px;}
.y9a{bottom:722.249711px;}
.y35{bottom:733.499707px;}
.y57{bottom:734.999706px;}
.y99{bottom:738.749705px;}
.y7e{bottom:742.499703px;}
.y11{bottom:753.749998px;}
.y34{bottom:771.749691px;}
.y7d{bottom:776.249690px;}
.y98{bottom:778.499689px;}
.y10{bottom:793.499683px;}
.y7c{bottom:809.249676px;}
.yf{bottom:815.999524px;}
.ye{bottom:836.249516px;}
.y7b{bottom:842.249663px;}
.yd{bottom:853.499209px;}
.yc{bottom:873.749201px;}
.y7a{bottom:886.499645px;}
.yb{bottom:913.499635px;}
.y79{bottom:921.749631px;}
.y90{bottom:953.999918px;}
.y78{bottom:955.499618px;}
.ya{bottom:960.000216px;}
.y56{bottom:963.000665px;}
.y8f{bottom:970.499912px;}
.y55{bottom:980.250358px;}
.y8e{bottom:987.750355px;}
.y77{bottom:988.499605px;}
.y54{bottom:997.500051px;}
.y8d{bottom:1005.000048px;}
.y9{bottom:1008.000197px;}
.y53{bottom:1017.000043px;}
.y76{bottom:1021.499591px;}
.y52{bottom:1035.000036px;}
.y8c{bottom:1044.749732px;}
.y51{bottom:1052.249729px;}
.y8{bottom:1056.749877px;}
.y8b{bottom:1062.000175px;}
.y75{bottom:1065.749574px;}
.y50{bottom:1073.999420px;}
.y8a{bottom:1079.249868px;}
.y4f{bottom:1095.749862px;}
.y89{bottom:1096.499561px;}
.y7{bottom:1105.499558px;}
.y74{bottom:1107.749557px;}
.y2b{bottom:1109.999556px;}
.y4e{bottom:1112.999555px;}
.y4{bottom:1132.499547px;}
.y3{bottom:1151.999539px;}
.y2{bottom:1169.249532px;}
.y1{bottom:1190.249524px;}
.h3{height:38.759750px;}
.h2{height:47.373028px;}
.h7{height:49.359355px;}
.h6{height:51.679667px;}
.h1{height:57.585914px;}
.h5{height:62.578100px;}
.h4{height:68.906222px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x5{left:127.499649px;}
.x7{left:154.499621px;}
.x8{left:181.499293px;}
.xa{left:208.499715px;}
.xb{left:235.499687px;}
.x9{left:244.499902px;}
.x4{left:428.999828px;}
.x6{left:441.750397px;}
.x1{left:521.999791px;}
.xc{left:647.999741px;}
.x2{left:662.999735px;}
.xd{left:667.498895px;}
.x3{left:765.000036px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.025600pt;}
.ls2{letter-spacing:0.922453pt;}
.ls4{letter-spacing:49.224514pt;}
.ls0{letter-spacing:57.230910pt;}
.ws0{word-spacing:-16.874660pt;}
.ws3{word-spacing:-14.826661pt;}
.ws1{word-spacing:-13.333328pt;}
.ws2{word-spacing:0.000000pt;}
._3{margin-left:-3.844249pt;}
._5{margin-left:-2.778828pt;}
._1{margin-left:-1.332042pt;}
._0{width:0.938171pt;}
._2{width:1.834747pt;}
._4{width:2.916272pt;}
._a{width:3.998310pt;}
._11{width:6.474311pt;}
._14{width:7.401598pt;}
._19{width:8.448790pt;}
._13{width:9.501595pt;}
._7{width:11.647714pt;}
._16{width:12.725903pt;}
._8{width:13.937061pt;}
._9{width:17.159357pt;}
._1a{width:20.446803pt;}
._17{width:22.007737pt;}
._18{width:23.120391pt;}
._c{width:24.347740pt;}
._d{width:25.274982pt;}
._b{width:26.991435pt;}
._12{width:28.120889pt;}
._e{width:30.559462pt;}
._15{width:35.831997pt;}
._10{width:37.691812pt;}
._f{width:38.886210pt;}
._1e{width:54.529081pt;}
._6{width:56.716777pt;}
._1f{width:57.629857pt;}
._20{width:59.542100pt;}
._21{width:60.482288pt;}
._1c{width:88.398861pt;}
._1b{width:89.978827pt;}
._1d{width:92.274975pt;}
.fs2{font-size:47.999981pt;}
.fs4{font-size:53.333312pt;}
.fs1{font-size:58.666643pt;}
.fs5{font-size:63.999974pt;}
.fs0{font-size:74.666637pt;}
.fs3{font-size:85.333299pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:51.999979pt;}
.y5{bottom:69.999972pt;}
.y4d{bottom:98.000494pt;}
.y73{bottom:104.666625pt;}
.y33{bottom:110.666622pt;}
.y4c{bottom:113.333555pt;}
.y29{bottom:123.999950pt;}
.y2a{bottom:124.000617pt;}
.y88{bottom:126.666883pt;}
.y4b{bottom:128.666615pt;}
.y32{bottom:141.333277pt;}
.y28{bottom:141.999943pt;}
.y4a{bottom:144.000342pt;}
.y72{bottom:144.666609pt;}
.y31{bottom:159.333270pt;}
.y49{bottom:160.000336pt;}
.y27{bottom:175.333263pt;}
.y30{bottom:176.666596pt;}
.y71{bottom:178.667262pt;}
.y48{bottom:179.333395pt;}
.y70{bottom:194.000989pt;}
.y47{bottom:194.666455pt;}
.y6f{bottom:209.334050pt;}
.y2f{bottom:212.000449pt;}
.y26{bottom:212.666582pt;}
.y46{bottom:214.000181pt;}
.y6e{bottom:224.667110pt;}
.y25{bottom:228.000309pt;}
.y45{bottom:229.333242pt;}
.y6d{bottom:240.000837pt;}
.y24{bottom:243.333369pt;}
.y2e{bottom:251.333499pt;}
.y6c{bottom:255.333898pt;}
.y9d{bottom:256.666564pt;}
.y44{bottom:263.999894pt;}
.y6b{bottom:274.666957pt;}
.y23{bottom:276.666689pt;}
.y6a{bottom:290.000684pt;}
.y2d{bottom:290.666550pt;}
.y9c{bottom:291.333217pt;}
.y22{bottom:292.666683pt;}
.y43{bottom:303.333212pt;}
.y69{bottom:306.000678pt;}
.y21{bottom:309.333610pt;}
.y68{bottom:324.000670pt;}
.y2c{bottom:324.666537pt;}
.y20{bottom:326.000536pt;}
.y67{bottom:339.333731pt;}
.y42{bottom:343.333196pt;}
.y1f{bottom:345.333595pt;}
.y97{bottom:354.666791pt;}
.y66{bottom:355.333725pt;}
.y1e{bottom:360.666656pt;}
.y96{bottom:370.000519pt;}
.y65{bottom:374.000384pt;}
.y1d{bottom:376.000383pt;}
.y41{bottom:383.333447pt;}
.y95{bottom:385.333579pt;}
.y64{bottom:388.667045pt;}
.y1c{bottom:395.333442pt;}
.y40{bottom:398.000107pt;}
.y94{bottom:400.666640pt;}
.y63{bottom:404.000772pt;}
.y1b{bottom:410.666502pt;}
.y3f{bottom:414.000101pt;}
.y93{bottom:416.000367pt;}
.y87{bottom:422.000365pt;}
.y62{bottom:423.333831pt;}
.y1a{bottom:426.000230pt;}
.y92{bottom:431.333427pt;}
.y86{bottom:437.333425pt;}
.y61{bottom:438.666891pt;}
.y19{bottom:442.666490pt;}
.y3e{bottom:447.333421pt;}
.y85{bottom:452.000086pt;}
.y60{bottom:454.000618pt;}
.y18{bottom:459.333416pt;}
.y3d{bottom:462.666482pt;}
.y91{bottom:463.333415pt;}
.y5f{bottom:469.333679pt;}
.y17{bottom:474.666477pt;}
.y3c{bottom:478.000209pt;}
.y84{bottom:487.333138pt;}
.y5e{bottom:489.333671pt;}
.y3b{bottom:493.333269pt;}
.y83{bottom:503.333132pt;}
.y5d{bottom:504.000332pt;}
.y3a{bottom:508.666330pt;}
.y16{bottom:509.333130pt;}
.y82{bottom:517.999793pt;}
.y5c{bottom:519.333392pt;}
.y39{bottom:524.000057pt;}
.y5b{bottom:534.666453pt;}
.y38{bottom:539.333118pt;}
.y15{bottom:543.333116pt;}
.y81{bottom:557.333110pt;}
.y14{bottom:559.333110pt;}
.y5a{bottom:569.333372pt;}
.y37{bottom:573.333104pt;}
.y59{bottom:584.666433pt;}
.y13{bottom:592.666430pt;}
.y80{bottom:597.333094pt;}
.y36{bottom:612.666022pt;}
.y58{bottom:618.666419pt;}
.y9b{bottom:626.666016pt;}
.y7f{bottom:630.666414pt;}
.y12{bottom:631.999747pt;}
.y9a{bottom:641.999743pt;}
.y35{bottom:651.999739pt;}
.y57{bottom:653.333072pt;}
.y99{bottom:656.666404pt;}
.y7e{bottom:659.999736pt;}
.y11{bottom:669.999999pt;}
.y34{bottom:685.999726pt;}
.y7d{bottom:689.999724pt;}
.y98{bottom:691.999723pt;}
.y10{bottom:705.333051pt;}
.y7c{bottom:719.333046pt;}
.yf{bottom:725.332910pt;}
.ye{bottom:743.332903pt;}
.y7b{bottom:748.666367pt;}
.yd{bottom:758.665963pt;}
.yc{bottom:776.665956pt;}
.y7a{bottom:787.999685pt;}
.yb{bottom:811.999675pt;}
.y79{bottom:819.333006pt;}
.y90{bottom:847.999927pt;}
.y78{bottom:849.332994pt;}
.ya{bottom:853.333525pt;}
.y56{bottom:856.000591pt;}
.y8f{bottom:862.666588pt;}
.y55{bottom:871.333651pt;}
.y8e{bottom:878.000315pt;}
.y77{bottom:878.666315pt;}
.y54{bottom:886.666712pt;}
.y8d{bottom:893.333376pt;}
.y9{bottom:896.000175pt;}
.y53{bottom:904.000038pt;}
.y76{bottom:907.999637pt;}
.y52{bottom:920.000032pt;}
.y8c{bottom:928.666429pt;}
.y51{bottom:935.333093pt;}
.y8{bottom:939.333224pt;}
.y8b{bottom:944.000156pt;}
.y75{bottom:947.332954pt;}
.y50{bottom:954.666151pt;}
.y8a{bottom:959.333216pt;}
.y4f{bottom:973.999877pt;}
.y89{bottom:974.666277pt;}
.y7{bottom:982.666274pt;}
.y74{bottom:984.666273pt;}
.y2b{bottom:986.666272pt;}
.y4e{bottom:989.332938pt;}
.y4{bottom:1006.666264pt;}
.y3{bottom:1023.999590pt;}
.y2{bottom:1039.332918pt;}
.y1{bottom:1057.999577pt;}
.h3{height:34.453111pt;}
.h2{height:42.109358pt;}
.h7{height:43.874982pt;}
.h6{height:45.937482pt;}
.h1{height:51.187480pt;}
.h5{height:55.624978pt;}
.h4{height:61.249976pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x5{left:113.333021pt;}
.x7{left:137.332996pt;}
.x8{left:161.332705pt;}
.xa{left:185.333080pt;}
.xb{left:209.333055pt;}
.x9{left:217.333246pt;}
.x4{left:381.333181pt;}
.x6{left:392.667019pt;}
.x1{left:463.999814pt;}
.xc{left:575.999770pt;}
.x2{left:589.333098pt;}
.xd{left:593.332351pt;}
.x3{left:680.000032pt;}
}




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