
    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_f10bd6834fc20bb49d86a7cb.woff')format("woff");}.ff1{font-family:ff1;line-height:0.902344;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_2bbefce6f61ebfa2672eb85c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_c098b83b4af5342a08cf7b5f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.899414;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_fd168f6668cfa3a5eae3408c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_832f9353206e7f0ecc60c7aa.woff')format("woff");}.ff5{font-family:ff5;line-height:0.682617;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_455db1548e7a216f818309c3.woff')format("woff");}.ff6{font-family:ff6;line-height:0.866211;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_4883c77d09bd6c38d53fd199.woff')format("woff");}.ff7{font-family:ff7;line-height:0.833984;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_b0fc64895e7ad9b4327de4ff.woff')format("woff");}.ff8{font-family:ff8;line-height:0.995117;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3f52819555e50348a034e870.woff')format("woff");}.ff9{font-family:ff9;line-height:1.041504;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.000000px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.019200px;}
.ls14{letter-spacing:0.458400px;}
.lsd{letter-spacing:1.062600px;}
.ls4{letter-spacing:1.252800px;}
.lsb{letter-spacing:1.282200px;}
.ls10{letter-spacing:2.842200px;}
.lsa{letter-spacing:2.959200px;}
.ls3{letter-spacing:3.705600px;}
.lse{letter-spacing:4.104600px;}
.ls15{letter-spacing:4.141800px;}
.ls8{letter-spacing:4.196667px;}
.ls6{letter-spacing:4.200000px;}
.ls9{letter-spacing:4.210667px;}
.lsc{letter-spacing:4.677000px;}
.ls12{letter-spacing:4.711800px;}
.ls16{letter-spacing:4.890600px;}
.ls7{letter-spacing:5.400000px;}
.lsf{letter-spacing:6.454800px;}
.ls1{letter-spacing:8.400000px;}
.ls13{letter-spacing:8.827800px;}
.ls11{letter-spacing:9.389400px;}
.ls0{letter-spacing:10.800000px;}
.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;}
}
.ws2{word-spacing:-20.232000px;}
.ws4{word-spacing:-18.546000px;}
.ws3{word-spacing:-17.784000px;}
.ws6{word-spacing:-16.860000px;}
.ws1{word-spacing:-14.162400px;}
.ws7{word-spacing:-0.060000px;}
.ws0{word-spacing:-0.054000px;}
.ws5{word-spacing:0.000000px;}
._17{margin-left:-14.280000px;}
._14{margin-left:-12.666667px;}
._6{margin-left:-10.908000px;}
._8{margin-left:-9.504000px;}
._a{margin-left:-8.106000px;}
._3{margin-left:-6.480000px;}
._e{margin-left:-4.374000px;}
._9{margin-left:-2.772000px;}
._1{margin-left:-1.134000px;}
._4{width:1.350000px;}
._c{width:2.808000px;}
._d{width:3.852000px;}
._12{width:5.256000px;}
._b{width:6.408000px;}
._15{width:7.551600px;}
._11{width:8.717400px;}
._10{width:9.797400px;}
._7{width:10.962000px;}
._f{width:12.582000px;}
._16{width:14.400000px;}
._18{width:18.522000px;}
._0{width:68.706000px;}
._2{width:369.208200px;}
._5{width:738.306000px;}
._13{width:2431.293600px;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(42,62,146);}
.fc0{color:rgb(73,19,22);}
.fs6{font-size:36.000000px;}
.fs7{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs1{font-size:54.000000px;}
.fsa{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:9.000000px;}
.yf{bottom:31.500000px;}
.y5f{bottom:89.581050px;}
.y2{bottom:89.581200px;}
.y2f{bottom:89.581350px;}
.y5e{bottom:110.881050px;}
.y1{bottom:110.881200px;}
.y2e{bottom:110.881350px;}
.y2c{bottom:164.715750px;}
.y5d{bottom:164.805000px;}
.y2b{bottom:187.215750px;}
.y5c{bottom:187.305000px;}
.y2a{bottom:209.715750px;}
.y5b{bottom:209.805000px;}
.y29{bottom:232.215750px;}
.y5a{bottom:232.305000px;}
.y28{bottom:254.715750px;}
.y59{bottom:254.805000px;}
.y27{bottom:277.215750px;}
.y58{bottom:277.305000px;}
.y26{bottom:299.715750px;}
.y57{bottom:299.805000px;}
.y25{bottom:322.215750px;}
.y56{bottom:322.305000px;}
.y24{bottom:344.715750px;}
.y55{bottom:344.805000px;}
.y23{bottom:367.215750px;}
.y54{bottom:367.305000px;}
.y22{bottom:389.715750px;}
.y53{bottom:389.805000px;}
.y21{bottom:412.215750px;}
.y52{bottom:412.305000px;}
.y20{bottom:434.715750px;}
.y51{bottom:434.805000px;}
.y1f{bottom:457.215750px;}
.y50{bottom:457.305000px;}
.y1e{bottom:479.715750px;}
.y4f{bottom:479.805000px;}
.y1d{bottom:502.215750px;}
.y4e{bottom:502.305000px;}
.y7a{bottom:519.196950px;}
.y1c{bottom:524.715750px;}
.y4d{bottom:524.805000px;}
.y79{bottom:541.696950px;}
.y1b{bottom:547.215750px;}
.y4c{bottom:547.305000px;}
.y78{bottom:564.196950px;}
.y1a{bottom:569.715750px;}
.y4b{bottom:569.805000px;}
.y77{bottom:586.696950px;}
.y19{bottom:592.215750px;}
.y4a{bottom:592.305000px;}
.y18{bottom:614.715750px;}
.y49{bottom:614.805000px;}
.y17{bottom:637.215750px;}
.y48{bottom:637.305000px;}
.y16{bottom:659.715750px;}
.y47{bottom:659.805000px;}
.y76{bottom:665.204850px;}
.y14{bottom:673.215750px;}
.y15{bottom:682.215750px;}
.y46{bottom:682.305000px;}
.y12{bottom:695.715750px;}
.y13{bottom:704.715750px;}
.y75{bottom:704.804850px;}
.y45{bottom:704.805000px;}
.y10{bottom:718.215750px;}
.y11{bottom:727.215750px;}
.y74{bottom:727.304850px;}
.y44{bottom:727.305000px;}
.ye{bottom:749.715750px;}
.y73{bottom:749.804850px;}
.y43{bottom:749.805000px;}
.yd{bottom:772.215600px;}
.y72{bottom:772.304850px;}
.y42{bottom:772.305000px;}
.yc{bottom:794.715600px;}
.y71{bottom:794.804850px;}
.y41{bottom:794.805000px;}
.yb{bottom:817.215600px;}
.y70{bottom:817.304850px;}
.y40{bottom:817.305000px;}
.ya{bottom:839.715600px;}
.y6f{bottom:839.804850px;}
.y3f{bottom:839.805000px;}
.y9{bottom:862.215600px;}
.y6e{bottom:862.304850px;}
.y3e{bottom:862.305000px;}
.y8{bottom:884.715600px;}
.y6d{bottom:884.804850px;}
.y3d{bottom:884.805000px;}
.y7{bottom:907.215600px;}
.y6c{bottom:907.304850px;}
.y3c{bottom:907.305000px;}
.y6{bottom:929.715600px;}
.y6b{bottom:929.804850px;}
.y3b{bottom:929.805000px;}
.y6a{bottom:952.304850px;}
.y3a{bottom:952.305000px;}
.y69{bottom:974.804850px;}
.y39{bottom:974.805000px;}
.y68{bottom:997.304850px;}
.y38{bottom:997.305000px;}
.y67{bottom:1019.804850px;}
.y37{bottom:1019.805000px;}
.y66{bottom:1042.304850px;}
.y36{bottom:1042.305000px;}
.y65{bottom:1064.804850px;}
.y35{bottom:1064.805000px;}
.y5{bottom:1068.719550px;}
.y64{bottom:1087.304850px;}
.y34{bottom:1087.305000px;}
.y63{bottom:1109.804850px;}
.y33{bottom:1109.805000px;}
.y4{bottom:1116.419550px;}
.y62{bottom:1132.304850px;}
.y32{bottom:1132.305000px;}
.y3{bottom:1148.819550px;}
.y61{bottom:1154.804850px;}
.y31{bottom:1154.805000px;}
.y60{bottom:1207.823550px;}
.y30{bottom:1207.823700px;}
.h9{height:28.511719px;}
.h2{height:43.989258px;}
.h3{height:45.852539px;}
.h8{height:47.988281px;}
.hb{height:48.399902px;}
.ha{height:50.947266px;}
.h6{height:61.136719px;}
.h5{height:71.326172px;}
.h4{height:91.705078px;}
.h7{height:1262.835000px;}
.h0{height:1325.835000px;}
.h1{height:1326.000000px;}
.w2{width:892.914000px;}
.w0{width:955.914000px;}
.w1{width:956.250000px;}
.x0{left:0.000000px;}
.x3{left:31.500000px;}
.x9{left:46.500000px;}
.x1{left:137.799150px;}
.x2{left:159.059100px;}
.x4{left:275.633550px;}
.x6{left:307.542450px;}
.x8{left:339.631200px;}
.xa{left:388.454550px;}
.x5{left:440.637450px;}
.x7{left:457.125300px;}
.xc{left:593.676600px;}
.xd{left:634.677450px;}
.xe{left:685.867950px;}
.xb{left:715.024200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.666667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.017067pt;}
.ls14{letter-spacing:0.407467pt;}
.lsd{letter-spacing:0.944533pt;}
.ls4{letter-spacing:1.113600pt;}
.lsb{letter-spacing:1.139733pt;}
.ls10{letter-spacing:2.526400pt;}
.lsa{letter-spacing:2.630400pt;}
.ls3{letter-spacing:3.293867pt;}
.lse{letter-spacing:3.648533pt;}
.ls15{letter-spacing:3.681600pt;}
.ls8{letter-spacing:3.730370pt;}
.ls6{letter-spacing:3.733333pt;}
.ls9{letter-spacing:3.742815pt;}
.lsc{letter-spacing:4.157333pt;}
.ls12{letter-spacing:4.188267pt;}
.ls16{letter-spacing:4.347200pt;}
.ls7{letter-spacing:4.800000pt;}
.lsf{letter-spacing:5.737600pt;}
.ls1{letter-spacing:7.466667pt;}
.ls13{letter-spacing:7.846933pt;}
.ls11{letter-spacing:8.346133pt;}
.ls0{letter-spacing:9.600000pt;}
.ws2{word-spacing:-17.984000pt;}
.ws4{word-spacing:-16.485333pt;}
.ws3{word-spacing:-15.808000pt;}
.ws6{word-spacing:-14.986667pt;}
.ws1{word-spacing:-12.588800pt;}
.ws7{word-spacing:-0.053333pt;}
.ws0{word-spacing:-0.048000pt;}
.ws5{word-spacing:0.000000pt;}
._17{margin-left:-12.693333pt;}
._14{margin-left:-11.259259pt;}
._6{margin-left:-9.696000pt;}
._8{margin-left:-8.448000pt;}
._a{margin-left:-7.205333pt;}
._3{margin-left:-5.760000pt;}
._e{margin-left:-3.888000pt;}
._9{margin-left:-2.464000pt;}
._1{margin-left:-1.008000pt;}
._4{width:1.200000pt;}
._c{width:2.496000pt;}
._d{width:3.424000pt;}
._12{width:4.672000pt;}
._b{width:5.696000pt;}
._15{width:6.712533pt;}
._11{width:7.748800pt;}
._10{width:8.708800pt;}
._7{width:9.744000pt;}
._f{width:11.184000pt;}
._16{width:12.800000pt;}
._18{width:16.464000pt;}
._0{width:61.072000pt;}
._2{width:328.185067pt;}
._5{width:656.272000pt;}
._13{width:2161.149867pt;}
.fs6{font-size:32.000000pt;}
.fs7{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs1{font-size:48.000000pt;}
.fsa{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:8.000000pt;}
.yf{bottom:28.000000pt;}
.y5f{bottom:79.627600pt;}
.y2{bottom:79.627733pt;}
.y2f{bottom:79.627867pt;}
.y5e{bottom:98.560933pt;}
.y1{bottom:98.561067pt;}
.y2e{bottom:98.561200pt;}
.y2c{bottom:146.414000pt;}
.y5d{bottom:146.493333pt;}
.y2b{bottom:166.414000pt;}
.y5c{bottom:166.493333pt;}
.y2a{bottom:186.414000pt;}
.y5b{bottom:186.493333pt;}
.y29{bottom:206.414000pt;}
.y5a{bottom:206.493333pt;}
.y28{bottom:226.414000pt;}
.y59{bottom:226.493333pt;}
.y27{bottom:246.414000pt;}
.y58{bottom:246.493333pt;}
.y26{bottom:266.414000pt;}
.y57{bottom:266.493333pt;}
.y25{bottom:286.414000pt;}
.y56{bottom:286.493333pt;}
.y24{bottom:306.414000pt;}
.y55{bottom:306.493333pt;}
.y23{bottom:326.414000pt;}
.y54{bottom:326.493333pt;}
.y22{bottom:346.414000pt;}
.y53{bottom:346.493333pt;}
.y21{bottom:366.414000pt;}
.y52{bottom:366.493333pt;}
.y20{bottom:386.414000pt;}
.y51{bottom:386.493333pt;}
.y1f{bottom:406.414000pt;}
.y50{bottom:406.493333pt;}
.y1e{bottom:426.414000pt;}
.y4f{bottom:426.493333pt;}
.y1d{bottom:446.414000pt;}
.y4e{bottom:446.493333pt;}
.y7a{bottom:461.508400pt;}
.y1c{bottom:466.414000pt;}
.y4d{bottom:466.493333pt;}
.y79{bottom:481.508400pt;}
.y1b{bottom:486.414000pt;}
.y4c{bottom:486.493333pt;}
.y78{bottom:501.508400pt;}
.y1a{bottom:506.414000pt;}
.y4b{bottom:506.493333pt;}
.y77{bottom:521.508400pt;}
.y19{bottom:526.414000pt;}
.y4a{bottom:526.493333pt;}
.y18{bottom:546.414000pt;}
.y49{bottom:546.493333pt;}
.y17{bottom:566.414000pt;}
.y48{bottom:566.493333pt;}
.y16{bottom:586.414000pt;}
.y47{bottom:586.493333pt;}
.y76{bottom:591.293200pt;}
.y14{bottom:598.414000pt;}
.y15{bottom:606.414000pt;}
.y46{bottom:606.493333pt;}
.y12{bottom:618.414000pt;}
.y13{bottom:626.414000pt;}
.y75{bottom:626.493200pt;}
.y45{bottom:626.493333pt;}
.y10{bottom:638.414000pt;}
.y11{bottom:646.414000pt;}
.y74{bottom:646.493200pt;}
.y44{bottom:646.493333pt;}
.ye{bottom:666.414000pt;}
.y73{bottom:666.493200pt;}
.y43{bottom:666.493333pt;}
.yd{bottom:686.413867pt;}
.y72{bottom:686.493200pt;}
.y42{bottom:686.493333pt;}
.yc{bottom:706.413867pt;}
.y71{bottom:706.493200pt;}
.y41{bottom:706.493333pt;}
.yb{bottom:726.413867pt;}
.y70{bottom:726.493200pt;}
.y40{bottom:726.493333pt;}
.ya{bottom:746.413867pt;}
.y6f{bottom:746.493200pt;}
.y3f{bottom:746.493333pt;}
.y9{bottom:766.413867pt;}
.y6e{bottom:766.493200pt;}
.y3e{bottom:766.493333pt;}
.y8{bottom:786.413867pt;}
.y6d{bottom:786.493200pt;}
.y3d{bottom:786.493333pt;}
.y7{bottom:806.413867pt;}
.y6c{bottom:806.493200pt;}
.y3c{bottom:806.493333pt;}
.y6{bottom:826.413867pt;}
.y6b{bottom:826.493200pt;}
.y3b{bottom:826.493333pt;}
.y6a{bottom:846.493200pt;}
.y3a{bottom:846.493333pt;}
.y69{bottom:866.493200pt;}
.y39{bottom:866.493333pt;}
.y68{bottom:886.493200pt;}
.y38{bottom:886.493333pt;}
.y67{bottom:906.493200pt;}
.y37{bottom:906.493333pt;}
.y66{bottom:926.493200pt;}
.y36{bottom:926.493333pt;}
.y65{bottom:946.493200pt;}
.y35{bottom:946.493333pt;}
.y5{bottom:949.972933pt;}
.y64{bottom:966.493200pt;}
.y34{bottom:966.493333pt;}
.y63{bottom:986.493200pt;}
.y33{bottom:986.493333pt;}
.y4{bottom:992.372933pt;}
.y62{bottom:1006.493200pt;}
.y32{bottom:1006.493333pt;}
.y3{bottom:1021.172933pt;}
.y61{bottom:1026.493200pt;}
.y31{bottom:1026.493333pt;}
.y60{bottom:1073.620933pt;}
.y30{bottom:1073.621067pt;}
.h9{height:25.343750pt;}
.h2{height:39.101562pt;}
.h3{height:40.757812pt;}
.h8{height:42.656250pt;}
.hb{height:43.022135pt;}
.ha{height:45.286458pt;}
.h6{height:54.343750pt;}
.h5{height:63.401042pt;}
.h4{height:81.515625pt;}
.h7{height:1122.520000pt;}
.h0{height:1178.520000pt;}
.h1{height:1178.666667pt;}
.w2{width:793.701333pt;}
.w0{width:849.701333pt;}
.w1{width:850.000000pt;}
.x0{left:0.000000pt;}
.x3{left:28.000000pt;}
.x9{left:41.333333pt;}
.x1{left:122.488133pt;}
.x2{left:141.385867pt;}
.x4{left:245.007600pt;}
.x6{left:273.371067pt;}
.x8{left:301.894400pt;}
.xa{left:345.292933pt;}
.x5{left:391.677733pt;}
.x7{left:406.333600pt;}
.xc{left:527.712533pt;}
.xd{left:564.157733pt;}
.xe{left:609.660400pt;}
.xb{left:635.577067pt;}
}




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