
    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_2e022ce1c105676115cd7060.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.220000;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_f8d5837f0245e3a34a5cdd19.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202000;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_4c0de21b31c6db726877b0a9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.204000;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_445303095eadf6af1c0522e3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.999000;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_8e969e2d3d67ab886f0de267.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202000;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_87f7d87e223335878f06fd93.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.015000;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_e9cbef19d4860c6bd261551c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.204000;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_e2b52f91494f122fe8ab86a8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.048000;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.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-1.200000px;}
.ls4{letter-spacing:-0.600000px;}
.ls8{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.300000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.300000px;}
.ls2{letter-spacing:0.600000px;}
.ls0{letter-spacing:1.440000px;}
.ls7{letter-spacing:3.600000px;}
.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:-16.020000px;}
.ws4{word-spacing:-14.580000px;}
.ws6{word-spacing:-3.600000px;}
.ws0{word-spacing:-1.008000px;}
.ws3{word-spacing:-0.600000px;}
.ws1{word-spacing:0.000000px;}
.ws7{word-spacing:0.540000px;}
.ws5{word-spacing:0.600000px;}
._8{margin-left:-1721.668800px;}
._5{margin-left:-1718.428800px;}
._9{margin-left:-1716.688800px;}
._7{margin-left:-1522.956000px;}
._0{margin-left:-34.704000px;}
._3{margin-left:-31.680000px;}
._6{margin-left:-26.304000px;}
._1{margin-left:-1.440000px;}
._2{width:1.404000px;}
._4{width:65.220000px;}
.fc4{color:transparent;}
.fc3{color:rgb(13,163,245);}
.fc2{color:rgb(134,209,250);}
.fc1{color:rgb(27,28,30);}
.fc5{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.fs3{font-size:120.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y37{bottom:34.644750px;}
.yb2{bottom:172.042650px;}
.yb1{bottom:199.446600px;}
.y36{bottom:210.529650px;}
.yb0{bottom:218.346600px;}
.y95{bottom:218.976450px;}
.y35{bottom:231.529650px;}
.yaf{bottom:237.246600px;}
.y70{bottom:245.596200px;}
.y94{bottom:248.976450px;}
.y34{bottom:252.529650px;}
.yae{bottom:256.146600px;}
.y6f{bottom:266.596200px;}
.y33{bottom:273.529650px;}
.y93{bottom:278.976450px;}
.yad{bottom:279.298500px;}
.y6e{bottom:287.596200px;}
.y32{bottom:294.529650px;}
.y6d{bottom:308.596200px;}
.y92{bottom:308.976450px;}
.y31{bottom:319.781700px;}
.y6c{bottom:329.596200px;}
.y91{bottom:338.976450px;}
.y30{bottom:340.781700px;}
.y6b{bottom:350.596200px;}
.y83{bottom:361.108050px;}
.y2f{bottom:361.781700px;}
.y6a{bottom:371.596200px;}
.y82{bottom:382.108050px;}
.y2e{bottom:382.781700px;}
.y69{bottom:392.596200px;}
.y78{bottom:403.108050px;}
.y2d{bottom:408.033750px;}
.y68{bottom:422.100150px;}
.y77{bottom:424.108050px;}
.y2c{bottom:429.033750px;}
.y67{bottom:443.100150px;}
.y76{bottom:445.108050px;}
.y2b{bottom:450.033750px;}
.y66{bottom:464.100150px;}
.y75{bottom:466.108050px;}
.y2a{bottom:471.033750px;}
.y65{bottom:485.100150px;}
.y74{bottom:487.108050px;}
.y1b{bottom:495.443550px;}
.y29{bottom:496.285650px;}
.y5{bottom:499.301850px;}
.yab{bottom:504.702450px;}
.y64{bottom:506.100150px;}
.y73{bottom:508.108050px;}
.y1a{bottom:516.443550px;}
.y59{bottom:516.612000px;}
.y28{bottom:517.285650px;}
.yaa{bottom:525.702450px;}
.y63{bottom:527.100150px;}
.y81{bottom:529.108050px;}
.y19{bottom:537.443550px;}
.y58{bottom:537.612000px;}
.y27{bottom:538.285650px;}
.y62{bottom:548.100150px;}
.y80{bottom:550.108050px;}
.y4{bottom:553.613700px;}
.ya9{bottom:555.206400px;}
.y18{bottom:558.443550px;}
.y57{bottom:558.612000px;}
.y26{bottom:559.285650px;}
.y4a{bottom:563.461800px;}
.y61{bottom:569.100150px;}
.y7f{bottom:571.108050px;}
.ya8{bottom:576.206400px;}
.y17{bottom:579.443550px;}
.y56{bottom:579.612000px;}
.y25{bottom:584.537550px;}
.y60{bottom:590.100150px;}
.y7e{bottom:592.108050px;}
.y49{bottom:596.461800px;}
.y3{bottom:596.813700px;}
.ya7{bottom:597.206400px;}
.y16{bottom:600.443550px;}
.y55{bottom:600.612000px;}
.y24{bottom:605.537550px;}
.y5f{bottom:611.100150px;}
.y7d{bottom:613.108050px;}
.y15{bottom:621.443550px;}
.y54{bottom:621.612000px;}
.y23{bottom:626.537550px;}
.ya6{bottom:626.710350px;}
.y48{bottom:629.461800px;}
.y5e{bottom:632.100150px;}
.y7c{bottom:634.108050px;}
.y2{bottom:640.013700px;}
.y14{bottom:642.443550px;}
.y53{bottom:642.612000px;}
.y22{bottom:647.537550px;}
.ya5{bottom:647.710350px;}
.y7b{bottom:655.108050px;}
.y5d{bottom:661.604100px;}
.y47{bottom:662.461800px;}
.y13{bottom:663.443550px;}
.y52{bottom:663.612000px;}
.ya4{bottom:668.710350px;}
.y21{bottom:672.789600px;}
.y7a{bottom:676.108050px;}
.y1{bottom:683.213700px;}
.y12{bottom:684.443550px;}
.y51{bottom:684.612000px;}
.y5c{bottom:685.604100px;}
.ya3{bottom:689.710350px;}
.y20{bottom:693.789600px;}
.y46{bottom:695.461800px;}
.y11{bottom:705.443550px;}
.y50{bottom:705.612000px;}
.ya2{bottom:710.710350px;}
.y1f{bottom:714.789600px;}
.y10{bottom:726.443550px;}
.y4f{bottom:726.612000px;}
.yb3{bottom:727.086600px;}
.y45{bottom:728.461800px;}
.y1e{bottom:735.789600px;}
.ya1{bottom:740.214150px;}
.yf{bottom:747.443550px;}
.y4e{bottom:747.612000px;}
.y1d{bottom:756.789600px;}
.ya0{bottom:761.214150px;}
.ye{bottom:768.443550px;}
.y4d{bottom:768.612000px;}
.y1c{bottom:786.293550px;}
.yd{bottom:789.443550px;}
.y4c{bottom:789.612000px;}
.y9f{bottom:790.718100px;}
.y4b{bottom:810.612000px;}
.y9e{bottom:811.718100px;}
.y90{bottom:813.612000px;}
.y44{bottom:831.612000px;}
.y9d{bottom:832.718100px;}
.y8f{bottom:834.612000px;}
.y79{bottom:840.115950px;}
.y43{bottom:852.612000px;}
.y9c{bottom:853.718100px;}
.y8e{bottom:855.612000px;}
.y72{bottom:861.115950px;}
.y42{bottom:873.612000px;}
.y9b{bottom:874.718100px;}
.y8d{bottom:876.612000px;}
.y71{bottom:882.115950px;}
.y5b{bottom:894.612000px;}
.y9a{bottom:895.718100px;}
.yc{bottom:902.988600px;}
.y41{bottom:903.115950px;}
.y8c{bottom:906.115950px;}
.y5a{bottom:915.612000px;}
.y99{bottom:916.718100px;}
.yb{bottom:923.988600px;}
.y40{bottom:924.115950px;}
.y8b{bottom:927.115950px;}
.y98{bottom:937.718100px;}
.y3f{bottom:945.115950px;}
.y8a{bottom:948.115950px;}
.y97{bottom:958.718100px;}
.y3e{bottom:966.115950px;}
.y89{bottom:969.115950px;}
.ya{bottom:970.500300px;}
.y96{bottom:979.718100px;}
.y3d{bottom:987.115950px;}
.y88{bottom:990.115950px;}
.y3c{bottom:1008.115950px;}
.y9{bottom:1009.500300px;}
.y87{bottom:1011.115950px;}
.yac{bottom:1027.038150px;}
.y3b{bottom:1029.115950px;}
.y86{bottom:1032.115950px;}
.y8{bottom:1048.500300px;}
.y3a{bottom:1050.115950px;}
.y85{bottom:1053.115950px;}
.y84{bottom:1074.115950px;}
.y39{bottom:1079.619900px;}
.y7{bottom:1095.868800px;}
.y38{bottom:1103.619900px;}
.y6{bottom:1122.868800px;}
.h7{height:44.400000px;}
.he{height:50.436000px;}
.hd{height:51.138000px;}
.h8{height:56.040000px;}
.ha{height:56.448000px;}
.hb{height:56.820000px;}
.h9{height:68.184000px;}
.h5{height:78.456000px;}
.h4{height:79.548000px;}
.hc{height:88.800000px;}
.h3{height:89.664000px;}
.h6{height:112.080000px;}
.h2{height:136.368000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:46.771650px;}
.x2{left:64.303350px;}
.xa{left:66.413400px;}
.x8{left:71.987400px;}
.x3{left:106.299150px;}
.x5{left:114.803100px;}
.x4{left:116.259150px;}
.xb{left:127.559100px;}
.xc{left:196.452900px;}
.x9{left:461.338650px;}
.x6{left:488.976450px;}
.x7{left:515.976450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-1.066667pt;}
.ls4{letter-spacing:-0.533333pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.266667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.266667pt;}
.ls2{letter-spacing:0.533333pt;}
.ls0{letter-spacing:1.280000pt;}
.ls7{letter-spacing:3.200000pt;}
.ws2{word-spacing:-14.240000pt;}
.ws4{word-spacing:-12.960000pt;}
.ws6{word-spacing:-3.200000pt;}
.ws0{word-spacing:-0.896000pt;}
.ws3{word-spacing:-0.533333pt;}
.ws1{word-spacing:0.000000pt;}
.ws7{word-spacing:0.480000pt;}
.ws5{word-spacing:0.533333pt;}
._8{margin-left:-1530.372267pt;}
._5{margin-left:-1527.492267pt;}
._9{margin-left:-1525.945600pt;}
._7{margin-left:-1353.738667pt;}
._0{margin-left:-30.848000pt;}
._3{margin-left:-28.160000pt;}
._6{margin-left:-23.381333pt;}
._1{margin-left:-1.280000pt;}
._2{width:1.248000pt;}
._4{width:57.973333pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.fs3{font-size:106.666667pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:30.795333pt;}
.yb2{bottom:152.926800pt;}
.yb1{bottom:177.285867pt;}
.y36{bottom:187.137467pt;}
.yb0{bottom:194.085867pt;}
.y95{bottom:194.645733pt;}
.y35{bottom:205.804133pt;}
.yaf{bottom:210.885867pt;}
.y70{bottom:218.307733pt;}
.y94{bottom:221.312400pt;}
.y34{bottom:224.470800pt;}
.yae{bottom:227.685867pt;}
.y6f{bottom:236.974400pt;}
.y33{bottom:243.137467pt;}
.y93{bottom:247.979067pt;}
.yad{bottom:248.265333pt;}
.y6e{bottom:255.641067pt;}
.y32{bottom:261.804133pt;}
.y6d{bottom:274.307733pt;}
.y92{bottom:274.645733pt;}
.y31{bottom:284.250400pt;}
.y6c{bottom:292.974400pt;}
.y91{bottom:301.312400pt;}
.y30{bottom:302.917067pt;}
.y6b{bottom:311.641067pt;}
.y83{bottom:320.984933pt;}
.y2f{bottom:321.583733pt;}
.y6a{bottom:330.307733pt;}
.y82{bottom:339.651600pt;}
.y2e{bottom:340.250400pt;}
.y69{bottom:348.974400pt;}
.y78{bottom:358.318267pt;}
.y2d{bottom:362.696667pt;}
.y68{bottom:375.200133pt;}
.y77{bottom:376.984933pt;}
.y2c{bottom:381.363333pt;}
.y67{bottom:393.866800pt;}
.y76{bottom:395.651600pt;}
.y2b{bottom:400.030000pt;}
.y66{bottom:412.533467pt;}
.y75{bottom:414.318267pt;}
.y2a{bottom:418.696667pt;}
.y65{bottom:431.200133pt;}
.y74{bottom:432.984933pt;}
.y1b{bottom:440.394267pt;}
.y29{bottom:441.142800pt;}
.y5{bottom:443.823867pt;}
.yab{bottom:448.624400pt;}
.y64{bottom:449.866800pt;}
.y73{bottom:451.651600pt;}
.y1a{bottom:459.060933pt;}
.y59{bottom:459.210667pt;}
.y28{bottom:459.809467pt;}
.yaa{bottom:467.291067pt;}
.y63{bottom:468.533467pt;}
.y81{bottom:470.318267pt;}
.y19{bottom:477.727600pt;}
.y58{bottom:477.877333pt;}
.y27{bottom:478.476133pt;}
.y62{bottom:487.200133pt;}
.y80{bottom:488.984933pt;}
.y4{bottom:492.101067pt;}
.ya9{bottom:493.516800pt;}
.y18{bottom:496.394267pt;}
.y57{bottom:496.544000pt;}
.y26{bottom:497.142800pt;}
.y4a{bottom:500.854933pt;}
.y61{bottom:505.866800pt;}
.y7f{bottom:507.651600pt;}
.ya8{bottom:512.183467pt;}
.y17{bottom:515.060933pt;}
.y56{bottom:515.210667pt;}
.y25{bottom:519.588933pt;}
.y60{bottom:524.533467pt;}
.y7e{bottom:526.318267pt;}
.y49{bottom:530.188267pt;}
.y3{bottom:530.501067pt;}
.ya7{bottom:530.850133pt;}
.y16{bottom:533.727600pt;}
.y55{bottom:533.877333pt;}
.y24{bottom:538.255600pt;}
.y5f{bottom:543.200133pt;}
.y7d{bottom:544.984933pt;}
.y15{bottom:552.394267pt;}
.y54{bottom:552.544000pt;}
.y23{bottom:556.922267pt;}
.ya6{bottom:557.075867pt;}
.y48{bottom:559.521600pt;}
.y5e{bottom:561.866800pt;}
.y7c{bottom:563.651600pt;}
.y2{bottom:568.901067pt;}
.y14{bottom:571.060933pt;}
.y53{bottom:571.210667pt;}
.y22{bottom:575.588933pt;}
.ya5{bottom:575.742533pt;}
.y7b{bottom:582.318267pt;}
.y5d{bottom:588.092533pt;}
.y47{bottom:588.854933pt;}
.y13{bottom:589.727600pt;}
.y52{bottom:589.877333pt;}
.ya4{bottom:594.409200pt;}
.y21{bottom:598.035200pt;}
.y7a{bottom:600.984933pt;}
.y1{bottom:607.301067pt;}
.y12{bottom:608.394267pt;}
.y51{bottom:608.544000pt;}
.y5c{bottom:609.425867pt;}
.ya3{bottom:613.075867pt;}
.y20{bottom:616.701867pt;}
.y46{bottom:618.188267pt;}
.y11{bottom:627.060933pt;}
.y50{bottom:627.210667pt;}
.ya2{bottom:631.742533pt;}
.y1f{bottom:635.368533pt;}
.y10{bottom:645.727600pt;}
.y4f{bottom:645.877333pt;}
.yb3{bottom:646.299200pt;}
.y45{bottom:647.521600pt;}
.y1e{bottom:654.035200pt;}
.ya1{bottom:657.968133pt;}
.yf{bottom:664.394267pt;}
.y4e{bottom:664.544000pt;}
.y1d{bottom:672.701867pt;}
.ya0{bottom:676.634800pt;}
.ye{bottom:683.060933pt;}
.y4d{bottom:683.210667pt;}
.y1c{bottom:698.927600pt;}
.yd{bottom:701.727600pt;}
.y4c{bottom:701.877333pt;}
.y9f{bottom:702.860533pt;}
.y4b{bottom:720.544000pt;}
.y9e{bottom:721.527200pt;}
.y90{bottom:723.210667pt;}
.y44{bottom:739.210667pt;}
.y9d{bottom:740.193867pt;}
.y8f{bottom:741.877333pt;}
.y79{bottom:746.769733pt;}
.y43{bottom:757.877333pt;}
.y9c{bottom:758.860533pt;}
.y8e{bottom:760.544000pt;}
.y72{bottom:765.436400pt;}
.y42{bottom:776.544000pt;}
.y9b{bottom:777.527200pt;}
.y8d{bottom:779.210667pt;}
.y71{bottom:784.103067pt;}
.y5b{bottom:795.210667pt;}
.y9a{bottom:796.193867pt;}
.yc{bottom:802.656533pt;}
.y41{bottom:802.769733pt;}
.y8c{bottom:805.436400pt;}
.y5a{bottom:813.877333pt;}
.y99{bottom:814.860533pt;}
.yb{bottom:821.323200pt;}
.y40{bottom:821.436400pt;}
.y8b{bottom:824.103067pt;}
.y98{bottom:833.527200pt;}
.y3f{bottom:840.103067pt;}
.y8a{bottom:842.769733pt;}
.y97{bottom:852.193867pt;}
.y3e{bottom:858.769733pt;}
.y89{bottom:861.436400pt;}
.ya{bottom:862.666933pt;}
.y96{bottom:870.860533pt;}
.y3d{bottom:877.436400pt;}
.y88{bottom:880.103067pt;}
.y3c{bottom:896.103067pt;}
.y9{bottom:897.333600pt;}
.y87{bottom:898.769733pt;}
.yac{bottom:912.922800pt;}
.y3b{bottom:914.769733pt;}
.y86{bottom:917.436400pt;}
.y8{bottom:932.000267pt;}
.y3a{bottom:933.436400pt;}
.y85{bottom:936.103067pt;}
.y84{bottom:954.769733pt;}
.y39{bottom:959.662133pt;}
.y7{bottom:974.105600pt;}
.y38{bottom:980.995467pt;}
.y6{bottom:998.105600pt;}
.h7{height:39.466667pt;}
.he{height:44.832000pt;}
.hd{height:45.456000pt;}
.h8{height:49.813333pt;}
.ha{height:50.176000pt;}
.hb{height:50.506667pt;}
.h9{height:60.608000pt;}
.h5{height:69.738667pt;}
.h4{height:70.709333pt;}
.hc{height:78.933333pt;}
.h3{height:79.701333pt;}
.h6{height:99.626667pt;}
.h2{height:121.216000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:41.574800pt;}
.x2{left:57.158533pt;}
.xa{left:59.034133pt;}
.x8{left:63.988800pt;}
.x3{left:94.488133pt;}
.x5{left:102.047200pt;}
.x4{left:103.341467pt;}
.xb{left:113.385867pt;}
.xc{left:174.624800pt;}
.x9{left:410.078800pt;}
.x6{left:434.645733pt;}
.x7{left:458.645733pt;}
}




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