
    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_728ad8b4c514a74f7beb5ded.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_dcd169934f1be1dd09b620ac.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939453;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_19b6284b788e238ed9f5e106.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973145;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_45ca07f123960b07f8bb5195.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_ed9dc6da540b2150b33cd37b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.089000;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);}
.v2{vertical-align:-16.560000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:25.200000px;}
.ls16{letter-spacing:-0.324000px;}
.lsd{letter-spacing:-0.240480px;}
.ls12{letter-spacing:-0.239040px;}
.ls19{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.208800px;}
.ls11{letter-spacing:-0.179280px;}
.lsc{letter-spacing:-0.162000px;}
.ls13{letter-spacing:-0.149760px;}
.ls5{letter-spacing:-0.084240px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.120240px;}
.lsf{letter-spacing:0.179280px;}
.ls0{letter-spacing:0.185760px;}
.ls7{letter-spacing:0.216000px;}
.ls10{letter-spacing:0.298800px;}
.ls15{letter-spacing:0.299520px;}
.ls17{letter-spacing:0.324000px;}
.ls6{letter-spacing:0.336960px;}
.lse{letter-spacing:0.358560px;}
.lsb{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.417600px;}
.ls1{letter-spacing:15.264000px;}
.ls14{letter-spacing:38.787840px;}
.lsa{letter-spacing:94.656960px;}
.ls8{letter-spacing:95.135040px;}
.ls18{letter-spacing:96.768000px;}
.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;}
}
.ws10{word-spacing:-40.986000px;}
.ws11{word-spacing:-33.546960px;}
.ws12{word-spacing:-33.186240px;}
.ws27{word-spacing:-29.700000px;}
.ws0{word-spacing:-26.006400px;}
.ws1{word-spacing:-15.612480px;}
.ws15{word-spacing:-14.461920px;}
.ws13{word-spacing:-14.342400px;}
.ws14{word-spacing:-14.163120px;}
.ws16{word-spacing:-13.924080px;}
.ws6{word-spacing:-2.972160px;}
.ws17{word-spacing:-2.525040px;}
.wsc{word-spacing:-2.442960px;}
.ws4{word-spacing:-2.296800px;}
.ws19{word-spacing:-1.803600px;}
.wsa{word-spacing:-1.684800px;}
.ws1c{word-spacing:-1.620000px;}
.ws5{word-spacing:-1.486080px;}
.ws9{word-spacing:-1.095120px;}
.ws1a{word-spacing:-1.082160px;}
.wsd{word-spacing:-1.010880px;}
.ws1b{word-spacing:-0.900000px;}
.ws26{word-spacing:-0.898560px;}
.wsf{word-spacing:-0.810000px;}
.ws8{word-spacing:-0.743040px;}
.ws2{word-spacing:-0.417600px;}
.ws18{word-spacing:-0.360720px;}
.ws1d{word-spacing:-0.358560px;}
.wsb{word-spacing:-0.336960px;}
.ws21{word-spacing:-0.299520px;}
.ws3{word-spacing:-0.208800px;}
.ws28{word-spacing:-0.149760px;}
.ws24{word-spacing:-0.108000px;}
.wse{word-spacing:0.000000px;}
.ws22{word-spacing:0.149760px;}
.ws1e{word-spacing:0.179280px;}
.ws1f{word-spacing:0.299520px;}
.ws29{word-spacing:0.432000px;}
.ws23{word-spacing:0.540000px;}
.ws25{word-spacing:1.296000px;}
.ws7{word-spacing:1.393200px;}
.ws20{word-spacing:1.647360px;}
.ws2a{word-spacing:2.700000px;}
._2{margin-left:-2.700000px;}
._0{margin-left:-1.106640px;}
._1{width:1.252800px;}
._3{width:3.004560px;}
.fc2{color:rgb(0,151,167);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:56.160000px;}
.fsa{font-size:59.760000px;}
.fs2{font-size:84.240000px;}
.fs9{font-size:90.000000px;}
.fs1{font-size:92.880000px;}
.fsc{font-size:108.000000px;}
.fs7{font-size:120.240000px;}
.fs8{font-size:131.760000px;}
.fsb{font-size:149.760000px;}
.fs6{font-size:162.000000px;}
.fs0{font-size:208.800000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:28.228950px;}
.y1b{bottom:46.231650px;}
.y8{bottom:60.845730px;}
.yd{bottom:74.889600px;}
.y7{bottom:85.876890px;}
.y27{bottom:87.692250px;}
.yc{bottom:89.469600px;}
.y39{bottom:91.857000px;}
.y1a{bottom:106.124700px;}
.y6{bottom:111.070590px;}
.y2f{bottom:115.877970px;}
.yb{bottom:117.907980px;}
.y26{bottom:120.092250px;}
.y38{bottom:129.117000px;}
.y19{bottom:134.924850px;}
.y5{bottom:136.101750px;}
.ya{bottom:140.587980px;}
.y2e{bottom:148.282650px;}
.y25{bottom:152.492250px;}
.y4{bottom:161.295450px;}
.y9{bottom:163.269600px;}
.y18{bottom:163.724700px;}
.y37{bottom:181.317000px;}
.y24{bottom:184.892250px;}
.y17{bottom:192.524850px;}
.y2d{bottom:195.617970px;}
.y3f{bottom:196.075410px;}
.y36{bottom:218.577000px;}
.y16{bottom:221.324700px;}
.y2c{bottom:228.022650px;}
.y3e{bottom:233.860830px;}
.y22{bottom:235.508430px;}
.y35{bottom:255.837000px;}
.y3d{bottom:271.646250px;}
.y2b{bottom:275.357970px;}
.y21{bottom:276.901050px;}
.y15{bottom:280.004700px;}
.y14{bottom:301.604700px;}
.y2a{bottom:307.762650px;}
.y34{bottom:308.037000px;}
.y13{bottom:323.204700px;}
.y3c{bottom:324.566250px;}
.y20{bottom:333.241050px;}
.y33{bottom:345.297000px;}
.y12{bottom:346.607370px;}
.y29{bottom:355.277970px;}
.y11{bottom:375.404850px;}
.y3b{bottom:377.306250px;}
.y28{bottom:387.682650px;}
.y3{bottom:388.362300px;}
.y1f{bottom:389.588430px;}
.y32{bottom:397.677000px;}
.y3a{bottom:430.046250px;}
.y1e{bottom:430.981050px;}
.y10{bottom:433.007220px;}
.y31{bottom:434.937000px;}
.y23{bottom:435.022650px;}
.y2{bottom:451.002300px;}
.yf{bottom:461.804700px;}
.y1d{bottom:507.779700px;}
.y1{bottom:513.642300px;}
.ye{bottom:544.942050px;}
.y30{bottom:553.317150px;}
.h5{height:26.244141px;}
.ha{height:48.943440px;}
.hb{height:48.954240px;}
.h9{height:65.610352px;}
.h3{height:66.140859px;}
.h4{height:66.147339px;}
.h2{height:67.709883px;}
.hd{height:78.732422px;}
.h7{height:87.655430px;}
.h8{height:87.818555px;}
.hc{height:113.270625px;}
.h6{height:122.528320px;}
.h1{height:152.012109px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xa{left:46.572540px;}
.x9{left:61.158300px;}
.xc{left:74.658300px;}
.x1{left:82.008750px;}
.x1b{left:84.788400px;}
.xb{left:88.509480px;}
.x1a{left:95.088600px;}
.x2{left:112.232550px;}
.x17{left:116.720400px;}
.xd{left:124.338300px;}
.x22{left:129.928050px;}
.x1d{left:137.028600px;}
.x18{left:158.660400px;}
.x23{left:171.868050px;}
.x3{left:184.790550px;}
.x1e{left:194.865000px;}
.x19{left:203.868750px;}
.x15{left:370.728750px;}
.x1c{left:378.825000px;}
.x16{left:393.048750px;}
.x21{left:438.045000px;}
.xe{left:457.423950px;}
.xf{left:489.192900px;}
.x10{left:531.132900px;}
.x11{left:541.572900px;}
.x13{left:543.192900px;}
.x12{left:585.132900px;}
.x5{left:699.891000px;}
.x1f{left:703.018650px;}
.x14{left:725.128950px;}
.x4{left:735.882000px;}
.x20{left:743.518650px;}
.x8{left:770.990640px;}
.x7{left:775.309560px;}
.x6{left:784.852980px;}
@media print{
.v2{vertical-align:-14.720000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:22.400000pt;}
.ls16{letter-spacing:-0.288000pt;}
.lsd{letter-spacing:-0.213760pt;}
.ls12{letter-spacing:-0.212480pt;}
.ls19{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.185600pt;}
.ls11{letter-spacing:-0.159360pt;}
.lsc{letter-spacing:-0.144000pt;}
.ls13{letter-spacing:-0.133120pt;}
.ls5{letter-spacing:-0.074880pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.106880pt;}
.lsf{letter-spacing:0.159360pt;}
.ls0{letter-spacing:0.165120pt;}
.ls7{letter-spacing:0.192000pt;}
.ls10{letter-spacing:0.265600pt;}
.ls15{letter-spacing:0.266240pt;}
.ls17{letter-spacing:0.288000pt;}
.ls6{letter-spacing:0.299520pt;}
.lse{letter-spacing:0.318720pt;}
.lsb{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.371200pt;}
.ls1{letter-spacing:13.568000pt;}
.ls14{letter-spacing:34.478080pt;}
.lsa{letter-spacing:84.139520pt;}
.ls8{letter-spacing:84.564480pt;}
.ls18{letter-spacing:86.016000pt;}
.ws10{word-spacing:-36.432000pt;}
.ws11{word-spacing:-29.819520pt;}
.ws12{word-spacing:-29.498880pt;}
.ws27{word-spacing:-26.400000pt;}
.ws0{word-spacing:-23.116800pt;}
.ws1{word-spacing:-13.877760pt;}
.ws15{word-spacing:-12.855040pt;}
.ws13{word-spacing:-12.748800pt;}
.ws14{word-spacing:-12.589440pt;}
.ws16{word-spacing:-12.376960pt;}
.ws6{word-spacing:-2.641920pt;}
.ws17{word-spacing:-2.244480pt;}
.wsc{word-spacing:-2.171520pt;}
.ws4{word-spacing:-2.041600pt;}
.ws19{word-spacing:-1.603200pt;}
.wsa{word-spacing:-1.497600pt;}
.ws1c{word-spacing:-1.440000pt;}
.ws5{word-spacing:-1.320960pt;}
.ws9{word-spacing:-0.973440pt;}
.ws1a{word-spacing:-0.961920pt;}
.wsd{word-spacing:-0.898560pt;}
.ws1b{word-spacing:-0.800000pt;}
.ws26{word-spacing:-0.798720pt;}
.wsf{word-spacing:-0.720000pt;}
.ws8{word-spacing:-0.660480pt;}
.ws2{word-spacing:-0.371200pt;}
.ws18{word-spacing:-0.320640pt;}
.ws1d{word-spacing:-0.318720pt;}
.wsb{word-spacing:-0.299520pt;}
.ws21{word-spacing:-0.266240pt;}
.ws3{word-spacing:-0.185600pt;}
.ws28{word-spacing:-0.133120pt;}
.ws24{word-spacing:-0.096000pt;}
.wse{word-spacing:0.000000pt;}
.ws22{word-spacing:0.133120pt;}
.ws1e{word-spacing:0.159360pt;}
.ws1f{word-spacing:0.266240pt;}
.ws29{word-spacing:0.384000pt;}
.ws23{word-spacing:0.480000pt;}
.ws25{word-spacing:1.152000pt;}
.ws7{word-spacing:1.238400pt;}
.ws20{word-spacing:1.464320pt;}
.ws2a{word-spacing:2.400000pt;}
._2{margin-left:-2.400000pt;}
._0{margin-left:-0.983680pt;}
._1{width:1.113600pt;}
._3{width:2.670720pt;}
.fs4{font-size:32.000000pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:49.920000pt;}
.fsa{font-size:53.120000pt;}
.fs2{font-size:74.880000pt;}
.fs9{font-size:80.000000pt;}
.fs1{font-size:82.560000pt;}
.fsc{font-size:96.000000pt;}
.fs7{font-size:106.880000pt;}
.fs8{font-size:117.120000pt;}
.fsb{font-size:133.120000pt;}
.fs6{font-size:144.000000pt;}
.fs0{font-size:185.600000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:25.092400pt;}
.y1b{bottom:41.094800pt;}
.y8{bottom:54.085093pt;}
.yd{bottom:66.568533pt;}
.y7{bottom:76.335013pt;}
.y27{bottom:77.948667pt;}
.yc{bottom:79.528533pt;}
.y39{bottom:81.650667pt;}
.y1a{bottom:94.333067pt;}
.y6{bottom:98.729413pt;}
.y2f{bottom:103.002640pt;}
.yb{bottom:104.807093pt;}
.y26{bottom:106.748667pt;}
.y38{bottom:114.770667pt;}
.y19{bottom:119.933200pt;}
.y5{bottom:120.979333pt;}
.ya{bottom:124.967093pt;}
.y2e{bottom:131.806800pt;}
.y25{bottom:135.548667pt;}
.y4{bottom:143.373733pt;}
.y9{bottom:145.128533pt;}
.y18{bottom:145.533067pt;}
.y37{bottom:161.170667pt;}
.y24{bottom:164.348667pt;}
.y17{bottom:171.133200pt;}
.y2d{bottom:173.882640pt;}
.y3f{bottom:174.289253pt;}
.y36{bottom:194.290667pt;}
.y16{bottom:196.733067pt;}
.y2c{bottom:202.686800pt;}
.y3e{bottom:207.876293pt;}
.y22{bottom:209.340827pt;}
.y35{bottom:227.410667pt;}
.y3d{bottom:241.463333pt;}
.y2b{bottom:244.762640pt;}
.y21{bottom:246.134267pt;}
.y15{bottom:248.893067pt;}
.y14{bottom:268.093067pt;}
.y2a{bottom:273.566800pt;}
.y34{bottom:273.810667pt;}
.y13{bottom:287.293067pt;}
.y3c{bottom:288.503333pt;}
.y20{bottom:296.214267pt;}
.y33{bottom:306.930667pt;}
.y12{bottom:308.095440pt;}
.y29{bottom:315.802640pt;}
.y11{bottom:333.693200pt;}
.y3b{bottom:335.383333pt;}
.y28{bottom:344.606800pt;}
.y3{bottom:345.210933pt;}
.y1f{bottom:346.300827pt;}
.y32{bottom:353.490667pt;}
.y3a{bottom:382.263333pt;}
.y1e{bottom:383.094267pt;}
.y10{bottom:384.895307pt;}
.y31{bottom:386.610667pt;}
.y23{bottom:386.686800pt;}
.y2{bottom:400.890933pt;}
.yf{bottom:410.493067pt;}
.y1d{bottom:451.359733pt;}
.y1{bottom:456.570933pt;}
.ye{bottom:484.392933pt;}
.y30{bottom:491.837467pt;}
.h5{height:23.328125pt;}
.ha{height:43.505280pt;}
.hb{height:43.514880pt;}
.h9{height:58.320312pt;}
.h3{height:58.791875pt;}
.h4{height:58.797635pt;}
.h2{height:60.186562pt;}
.hd{height:69.984375pt;}
.h7{height:77.915937pt;}
.h8{height:78.060937pt;}
.hc{height:100.685000pt;}
.h6{height:108.914062pt;}
.h1{height:135.121875pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xa{left:41.397813pt;}
.x9{left:54.362933pt;}
.xc{left:66.362933pt;}
.x1{left:72.896667pt;}
.x1b{left:75.367467pt;}
.xb{left:78.675093pt;}
.x1a{left:84.523200pt;}
.x2{left:99.762267pt;}
.x17{left:103.751467pt;}
.xd{left:110.522933pt;}
.x22{left:115.491600pt;}
.x1d{left:121.803200pt;}
.x18{left:141.031467pt;}
.x23{left:152.771600pt;}
.x3{left:164.258267pt;}
.x1e{left:173.213333pt;}
.x19{left:181.216667pt;}
.x15{left:329.536667pt;}
.x1c{left:336.733333pt;}
.x16{left:349.376667pt;}
.x21{left:389.373333pt;}
.xe{left:406.599067pt;}
.xf{left:434.838133pt;}
.x10{left:472.118133pt;}
.x11{left:481.398133pt;}
.x13{left:482.838133pt;}
.x12{left:520.118133pt;}
.x5{left:622.125333pt;}
.x1f{left:624.905467pt;}
.x14{left:644.559067pt;}
.x4{left:654.117333pt;}
.x20{left:660.905467pt;}
.x8{left:685.325013pt;}
.x7{left:689.164053pt;}
.x6{left:697.647093pt;}
}




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