
    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_6f815a388ed1f48a61b93c6b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.908203;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_1ac8d1282960db4d43108902.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_cd13363b3e4e67a47e696c72.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.992188;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_02fc455edbec276ef407cb3d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8d57ce6339eaee8800c28f31.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.668945;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_de6892e303f336f0f772cacb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.926270;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_97885c172b50819705694b89.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0bc5c948b357710baacc0227.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v1{vertical-align:-9.000000px;}
.v3{vertical-align:-6.091560px;}
.v4{vertical-align:-2.862000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:29.880000px;}
.ls16{letter-spacing:-0.503280px;}
.ls1e{letter-spacing:-0.329400px;}
.ls34{letter-spacing:-0.300600px;}
.ls1f{letter-spacing:-0.263520px;}
.ls13{letter-spacing:-0.192240px;}
.ls14{letter-spacing:-0.167760px;}
.ls15{letter-spacing:-0.162000px;}
.ls18{letter-spacing:-0.131760px;}
.ls33{letter-spacing:-0.120240px;}
.ls17{letter-spacing:-0.065880px;}
.ls12{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.021960px;}
.lsc{letter-spacing:0.045360px;}
.ls32{letter-spacing:0.060120px;}
.ls5{letter-spacing:0.065880px;}
.ls2f{letter-spacing:0.078156px;}
.ls1a{letter-spacing:0.079056px;}
.ls1{letter-spacing:0.081360px;}
.ls0{letter-spacing:0.083880px;}
.ls2{letter-spacing:0.108000px;}
.ls30{letter-spacing:0.120240px;}
.ls19{letter-spacing:0.131760px;}
.ls8{letter-spacing:0.144936px;}
.lsb{letter-spacing:0.164700px;}
.ls3{letter-spacing:0.167760px;}
.lsa{letter-spacing:0.197640px;}
.lsf{letter-spacing:0.329400px;}
.ls2a{letter-spacing:0.341280px;}
.lse{letter-spacing:0.379800px;}
.ls2e{letter-spacing:0.395280px;}
.ls26{letter-spacing:0.843264px;}
.ls1c{letter-spacing:0.988200px;}
.ls7{letter-spacing:1.152900px;}
.ls27{letter-spacing:1.515240px;}
.ls31{letter-spacing:1.623240px;}
.ls2c{letter-spacing:2.081808px;}
.ls11{letter-spacing:2.529792px;}
.ls1d{letter-spacing:2.569320px;}
.ls1b{letter-spacing:4.743360px;}
.ls22{letter-spacing:5.797440px;}
.ls21{letter-spacing:5.817204px;}
.ls20{letter-spacing:6.159780px;}
.ls6{letter-spacing:6.864696px;}
.ls4{letter-spacing:7.062336px;}
.ls28{letter-spacing:9.025560px;}
.ls23{letter-spacing:9.855648px;}
.ls29{letter-spacing:14.230080px;}
.ls9{letter-spacing:15.936372px;}
.ls25{letter-spacing:16.272360px;}
.ls24{letter-spacing:18.597924px;}
.ls35{letter-spacing:23.453280px;}
.ls10{letter-spacing:59.423760px;}
.ls2b{letter-spacing:106.593840px;}
.ls2d{letter-spacing:846.000000px;}
.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;}
}
.wsf{word-spacing:-65.880000px;}
.wsc{word-spacing:-47.551680px;}
.wse{word-spacing:-47.287440px;}
.ws0{word-spacing:-26.529120px;}
.ws3{word-spacing:-23.486400px;}
.ws5{word-spacing:-23.402520px;}
.ws2{word-spacing:-23.150880px;}
.ws6{word-spacing:-22.815360px;}
.ws2f{word-spacing:-18.512280px;}
.ws10{word-spacing:-18.446400px;}
.ws7{word-spacing:-18.380520px;}
.wsb{word-spacing:-18.314640px;}
.ws8{word-spacing:-18.248760px;}
.ws9{word-spacing:-18.182880px;}
.ws30{word-spacing:-18.051120px;}
.ws2e{word-spacing:-17.985240px;}
.ws1{word-spacing:-17.514000px;}
.ws49{word-spacing:-16.412760px;}
.ws4{word-spacing:-14.850000px;}
.wsd{word-spacing:-14.493600px;}
.wsa{word-spacing:-11.709360px;}
.ws4a{word-spacing:-10.808640px;}
.ws1f{word-spacing:-5.072760px;}
.ws16{word-spacing:-4.697280px;}
.ws26{word-spacing:-4.677480px;}
.ws1e{word-spacing:-4.348080px;}
.ws34{word-spacing:-4.018680px;}
.ws50{word-spacing:-3.623400px;}
.ws2a{word-spacing:-2.898720px;}
.ws1b{word-spacing:-1.778760px;}
.ws2b{word-spacing:-1.449360px;}
.ws21{word-spacing:-1.054080px;}
.ws20{word-spacing:-0.724680px;}
.ws18{word-spacing:-0.419400px;}
.ws3a{word-spacing:-0.395280px;}
.ws47{word-spacing:-0.197640px;}
.ws4f{word-spacing:-0.180360px;}
.ws15{word-spacing:-0.167760px;}
.ws12{word-spacing:-0.096120px;}
.ws17{word-spacing:-0.083880px;}
.ws1d{word-spacing:-0.065880px;}
.ws11{word-spacing:0.000000px;}
.ws32{word-spacing:0.065880px;}
.ws4c{word-spacing:0.120240px;}
.ws51{word-spacing:0.131760px;}
.ws14{word-spacing:0.167760px;}
.ws13{word-spacing:0.251640px;}
.ws1c{word-spacing:0.329400px;}
.ws33{word-spacing:0.395280px;}
.ws40{word-spacing:0.724680px;}
.ws45{word-spacing:1.054080px;}
.ws38{word-spacing:1.449360px;}
.ws4e{word-spacing:1.623240px;}
.ws46{word-spacing:1.778760px;}
.ws48{word-spacing:2.174040px;}
.ws2c{word-spacing:2.503440px;}
.ws36{word-spacing:2.898720px;}
.ws28{word-spacing:3.623400px;}
.ws27{word-spacing:4.282200px;}
.ws35{word-spacing:4.677480px;}
.ws39{word-spacing:5.402160px;}
.ws23{word-spacing:5.731560px;}
.ws22{word-spacing:6.126840px;}
.ws2d{word-spacing:6.456240px;}
.ws19{word-spacing:6.851520px;}
.ws4d{word-spacing:7.695360px;}
.ws4b{word-spacing:7.875720px;}
.ws42{word-spacing:9.025560px;}
.ws25{word-spacing:10.079640px;}
.ws37{word-spacing:11.133720px;}
.ws3b{word-spacing:11.529000px;}
.ws43{word-spacing:14.032440px;}
.ws24{word-spacing:15.811200px;}
.ws3d{word-spacing:16.206480px;}
.ws3c{word-spacing:18.380520px;}
.ws29{word-spacing:21.213360px;}
.ws41{word-spacing:24.441480px;}
.ws1a{word-spacing:29.184840px;}
.ws31{word-spacing:36.695160px;}
.ws44{word-spacing:106.527960px;}
.ws3e{word-spacing:147.966480px;}
.ws3f{word-spacing:149.415840px;}
._2{margin-left:-18.369720px;}
._1{margin-left:-10.089504px;}
._3{margin-left:-7.729776px;}
._f{margin-left:-6.333120px;}
._4{margin-left:-5.217696px;}
._5{margin-left:-3.972564px;}
._c{margin-left:-2.639736px;}
._0{margin-left:-1.018872px;}
._6{width:1.166076px;}
._9{width:2.371680px;}
._8{width:4.348080px;}
._7{width:6.032376px;}
._b{width:7.049160px;}
._11{width:8.098164px;}
._10{width:13.768920px;}
._a{width:20.333160px;}
._d{width:59.357880px;}
._e{width:1626.972480px;}
.fc2{color:rgb(238,0,0);}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs4{font-size:54.000000px;}
.fs7{font-size:60.120000px;}
.fs2{font-size:63.000000px;}
.fs5{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:83.880000px;}
.fs1{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:3.510000px;}
.y20{bottom:3.690000px;}
.y2{bottom:3.870000px;}
.y1{bottom:24.570000px;}
.ya9{bottom:88.552710px;}
.y6b{bottom:91.944540px;}
.y36{bottom:104.760090px;}
.ya8{bottom:107.542620px;}
.y6a{bottom:110.934450px;}
.y35{bottom:123.750000px;}
.ya7{bottom:126.532530px;}
.y69{bottom:129.924360px;}
.y34{bottom:143.010000px;}
.ya6{bottom:145.522440px;}
.y68{bottom:148.831920px;}
.y33{bottom:163.322280px;}
.ya5{bottom:164.430000px;}
.y9a{bottom:167.760000px;}
.y67{bottom:167.821830px;}
.y32{bottom:182.312190px;}
.ya4{bottom:183.055500px;}
.y99{bottom:186.742620px;}
.y66{bottom:186.811740px;}
.ya3{bottom:200.335500px;}
.y31{bottom:201.302100px;}
.y98{bottom:205.732530px;}
.y65{bottom:205.801650px;}
.ya2{bottom:217.620000px;}
.y30{bottom:220.292010px;}
.y97{bottom:224.640090px;}
.y64{bottom:224.791560px;}
.ya1{bottom:235.530000px;}
.y2f{bottom:239.281920px;}
.y96{bottom:243.630000px;}
.y63{bottom:243.699120px;}
.y9f{bottom:252.360000px;}
.y2e{bottom:258.271830px;}
.y62{bottom:262.689030px;}
.y95{bottom:264.060000px;}
.y2d{bottom:277.179390px;}
.y61{bottom:281.678940px;}
.y94{bottom:284.400360px;}
.y2c{bottom:296.169300px;}
.y60{bottom:300.668850px;}
.y93{bottom:303.390270px;}
.y2b{bottom:316.328580px;}
.y5f{bottom:319.658760px;}
.y92{bottom:322.380180px;}
.y2a{bottom:336.405510px;}
.y5e{bottom:338.648670px;}
.y91{bottom:341.370090px;}
.y29{bottom:356.482440px;}
.y5d{bottom:358.725600px;}
.y90{bottom:360.360000px;}
.y28{bottom:375.390000px;}
.y5c{bottom:377.715510px;}
.y8f{bottom:380.790000px;}
.ya0{bottom:380.880000px;}
.y27{bottom:394.380000px;}
.y5b{bottom:396.623070px;}
.y8e{bottom:401.130090px;}
.y26{bottom:413.370270px;}
.y5a{bottom:415.612980px;}
.y8d{bottom:420.120000px;}
.y25{bottom:432.360180px;}
.y59{bottom:434.602890px;}
.y8c{bottom:439.020000px;}
.y24{bottom:451.350090px;}
.y58{bottom:453.592800px;}
.y8b{bottom:457.953660px;}
.y23{bottom:470.340000px;}
.y57{bottom:472.582710px;}
.y8a{bottom:478.030590px;}
.y22{bottom:486.540000px;}
.y56{bottom:491.490270px;}
.y89{bottom:497.020500px;}
.y21{bottom:506.610000px;}
.y55{bottom:510.480180px;}
.y88{bottom:516.010410px;}
.y9d{bottom:522.360000px;}
.y1f{bottom:526.680000px;}
.y54{bottom:529.470090px;}
.y87{bottom:535.000320px;}
.y1d{bottom:546.840000px;}
.y53{bottom:548.460000px;}
.y86{bottom:553.990230px;}
.y52{bottom:567.394650px;}
.y1c{bottom:570.045510px;}
.y85{bottom:572.897790px;}
.y51{bottom:587.471580px;}
.y1b{bottom:588.953070px;}
.y84{bottom:591.887700px;}
.y50{bottom:606.461490px;}
.y1a{bottom:607.942980px;}
.y83{bottom:611.964630px;}
.y4f{bottom:625.369050px;}
.y19{bottom:626.932890px;}
.y82{bottom:630.954540px;}
.y4e{bottom:644.358960px;}
.y18{bottom:645.922800px;}
.y81{bottom:649.944450px;}
.y9e{bottom:650.880000px;}
.y4d{bottom:663.348870px;}
.y17{bottom:664.912710px;}
.y80{bottom:668.934360px;}
.y4c{bottom:683.425800px;}
.y16{bottom:683.902620px;}
.y7f{bottom:687.924270px;}
.y4b{bottom:702.415710px;}
.y15{bottom:702.810180px;}
.y7e{bottom:706.914180px;}
.y4a{bottom:721.405620px;}
.y14{bottom:721.800090px;}
.y7d{bottom:725.821740px;}
.y49{bottom:740.395530px;}
.y13{bottom:740.782890px;}
.y7c{bottom:744.811650px;}
.y12{bottom:759.772800px;}
.y48{bottom:760.472460px;}
.y7b{bottom:763.801560px;}
.yb6{bottom:764.888580px;}
.y11{bottom:778.762710px;}
.y47{bottom:779.462370px;}
.y7a{bottom:782.791470px;}
.yb5{bottom:783.878490px;}
.y10{bottom:797.670270px;}
.y46{bottom:798.452280px;}
.y79{bottom:801.781380px;}
.yb4{bottom:802.868400px;}
.y9b{bottom:813.870000px;}
.yf{bottom:816.660180px;}
.y45{bottom:817.359840px;}
.y78{bottom:820.688940px;}
.yb3{bottom:821.858310px;}
.ye{bottom:835.650090px;}
.y44{bottom:836.349750px;}
.y77{bottom:839.678850px;}
.yb2{bottom:840.848220px;}
.yd{bottom:854.640000px;}
.y43{bottom:855.339660px;}
.y76{bottom:858.668760px;}
.yb1{bottom:859.755780px;}
.yc{bottom:873.622530px;}
.y42{bottom:874.329570px;}
.y75{bottom:877.658670px;}
.yb0{bottom:878.745690px;}
.yb{bottom:892.612440px;}
.y41{bottom:893.319480px;}
.y74{bottom:896.648580px;}
.yaf{bottom:897.735600px;}
.ya{bottom:911.520000px;}
.y40{bottom:912.227040px;}
.y73{bottom:915.556140px;}
.yae{bottom:916.725510px;}
.y3f{bottom:931.216950px;}
.y9{bottom:931.399650px;}
.y9c{bottom:931.680000px;}
.y72{bottom:934.546050px;}
.yad{bottom:935.715420px;}
.y3e{bottom:951.293880px;}
.y71{bottom:953.535960px;}
.yac{bottom:954.622980px;}
.y8{bottom:955.620000px;}
.y3d{bottom:970.283790px;}
.y70{bottom:972.525870px;}
.yab{bottom:973.612890px;}
.y7{bottom:979.734150px;}
.y3c{bottom:990.443070px;}
.y6f{bottom:991.515780px;}
.yaa{bottom:992.602800px;}
.y6{bottom:1003.849650px;}
.y3b{bottom:1010.520000px;}
.y6e{bottom:1011.592710px;}
.y5{bottom:1028.070000px;}
.y3a{bottom:1029.420000px;}
.y6d{bottom:1030.582620px;}
.y39{bottom:1048.403160px;}
.y6c{bottom:1049.572530px;}
.y4{bottom:1052.911620px;}
.y38{bottom:1068.480090px;}
.y3{bottom:1080.450000px;}
.y37{bottom:1087.470000px;}
.h7{height:18.900000px;}
.ha{height:19.350000px;}
.h9{height:19.351500px;}
.he{height:46.998105px;}
.hf{height:47.016105px;}
.h8{height:47.962441px;}
.hc{height:47.988281px;}
.h1{height:49.992188px;}
.h5{height:51.500918px;}
.h6{height:51.529358px;}
.hb{height:51.726278px;}
.h4{height:65.572207px;}
.h2{height:69.977988px;}
.h3{height:72.093867px;}
.hd{height:270.000000px;}
.h0{height:1188.000000px;}
.w1{width:186.030000px;}
.w2{width:186.118500px;}
.w3{width:186.120000px;}
.w4{width:702.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xe{left:7.740000px;}
.xd{left:47.610000px;}
.xb{left:53.100000px;}
.x7{left:59.490000px;}
.x10{left:62.640000px;}
.xf{left:64.530000px;}
.x9{left:77.400000px;}
.x2{left:85.050000px;}
.x11{left:112.044330px;}
.x16{left:113.856030px;}
.x12{left:127.894140px;}
.x6{left:139.037940px;}
.x5{left:178.740000px;}
.x8{left:272.520000px;}
.x3{left:292.590000px;}
.x4{left:321.652890px;}
.x1{left:454.500000px;}
.xa{left:459.360000px;}
.x15{left:576.000000px;}
.xc{left:646.110000px;}
.x13{left:661.140000px;}
.x14{left:809.460000px;}
@media print{
.v1{vertical-align:-8.000000pt;}
.v3{vertical-align:-5.414720pt;}
.v4{vertical-align:-2.544000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.560000pt;}
.ls16{letter-spacing:-0.447360pt;}
.ls1e{letter-spacing:-0.292800pt;}
.ls34{letter-spacing:-0.267200pt;}
.ls1f{letter-spacing:-0.234240pt;}
.ls13{letter-spacing:-0.170880pt;}
.ls14{letter-spacing:-0.149120pt;}
.ls15{letter-spacing:-0.144000pt;}
.ls18{letter-spacing:-0.117120pt;}
.ls33{letter-spacing:-0.106880pt;}
.ls17{letter-spacing:-0.058560pt;}
.ls12{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.019520pt;}
.lsc{letter-spacing:0.040320pt;}
.ls32{letter-spacing:0.053440pt;}
.ls5{letter-spacing:0.058560pt;}
.ls2f{letter-spacing:0.069472pt;}
.ls1a{letter-spacing:0.070272pt;}
.ls1{letter-spacing:0.072320pt;}
.ls0{letter-spacing:0.074560pt;}
.ls2{letter-spacing:0.096000pt;}
.ls30{letter-spacing:0.106880pt;}
.ls19{letter-spacing:0.117120pt;}
.ls8{letter-spacing:0.128832pt;}
.lsb{letter-spacing:0.146400pt;}
.ls3{letter-spacing:0.149120pt;}
.lsa{letter-spacing:0.175680pt;}
.lsf{letter-spacing:0.292800pt;}
.ls2a{letter-spacing:0.303360pt;}
.lse{letter-spacing:0.337600pt;}
.ls2e{letter-spacing:0.351360pt;}
.ls26{letter-spacing:0.749568pt;}
.ls1c{letter-spacing:0.878400pt;}
.ls7{letter-spacing:1.024800pt;}
.ls27{letter-spacing:1.346880pt;}
.ls31{letter-spacing:1.442880pt;}
.ls2c{letter-spacing:1.850496pt;}
.ls11{letter-spacing:2.248704pt;}
.ls1d{letter-spacing:2.283840pt;}
.ls1b{letter-spacing:4.216320pt;}
.ls22{letter-spacing:5.153280pt;}
.ls21{letter-spacing:5.170848pt;}
.ls20{letter-spacing:5.475360pt;}
.ls6{letter-spacing:6.101952pt;}
.ls4{letter-spacing:6.277632pt;}
.ls28{letter-spacing:8.022720pt;}
.ls23{letter-spacing:8.760576pt;}
.ls29{letter-spacing:12.648960pt;}
.ls9{letter-spacing:14.165664pt;}
.ls25{letter-spacing:14.464320pt;}
.ls24{letter-spacing:16.531488pt;}
.ls35{letter-spacing:20.847360pt;}
.ls10{letter-spacing:52.821120pt;}
.ls2b{letter-spacing:94.750080pt;}
.ls2d{letter-spacing:752.000000pt;}
.wsf{word-spacing:-58.560000pt;}
.wsc{word-spacing:-42.268160pt;}
.wse{word-spacing:-42.033280pt;}
.ws0{word-spacing:-23.581440pt;}
.ws3{word-spacing:-20.876800pt;}
.ws5{word-spacing:-20.802240pt;}
.ws2{word-spacing:-20.578560pt;}
.ws6{word-spacing:-20.280320pt;}
.ws2f{word-spacing:-16.455360pt;}
.ws10{word-spacing:-16.396800pt;}
.ws7{word-spacing:-16.338240pt;}
.wsb{word-spacing:-16.279680pt;}
.ws8{word-spacing:-16.221120pt;}
.ws9{word-spacing:-16.162560pt;}
.ws30{word-spacing:-16.045440pt;}
.ws2e{word-spacing:-15.986880pt;}
.ws1{word-spacing:-15.568000pt;}
.ws49{word-spacing:-14.589120pt;}
.ws4{word-spacing:-13.200000pt;}
.wsd{word-spacing:-12.883200pt;}
.wsa{word-spacing:-10.408320pt;}
.ws4a{word-spacing:-9.607680pt;}
.ws1f{word-spacing:-4.509120pt;}
.ws16{word-spacing:-4.175360pt;}
.ws26{word-spacing:-4.157760pt;}
.ws1e{word-spacing:-3.864960pt;}
.ws34{word-spacing:-3.572160pt;}
.ws50{word-spacing:-3.220800pt;}
.ws2a{word-spacing:-2.576640pt;}
.ws1b{word-spacing:-1.581120pt;}
.ws2b{word-spacing:-1.288320pt;}
.ws21{word-spacing:-0.936960pt;}
.ws20{word-spacing:-0.644160pt;}
.ws18{word-spacing:-0.372800pt;}
.ws3a{word-spacing:-0.351360pt;}
.ws47{word-spacing:-0.175680pt;}
.ws4f{word-spacing:-0.160320pt;}
.ws15{word-spacing:-0.149120pt;}
.ws12{word-spacing:-0.085440pt;}
.ws17{word-spacing:-0.074560pt;}
.ws1d{word-spacing:-0.058560pt;}
.ws11{word-spacing:0.000000pt;}
.ws32{word-spacing:0.058560pt;}
.ws4c{word-spacing:0.106880pt;}
.ws51{word-spacing:0.117120pt;}
.ws14{word-spacing:0.149120pt;}
.ws13{word-spacing:0.223680pt;}
.ws1c{word-spacing:0.292800pt;}
.ws33{word-spacing:0.351360pt;}
.ws40{word-spacing:0.644160pt;}
.ws45{word-spacing:0.936960pt;}
.ws38{word-spacing:1.288320pt;}
.ws4e{word-spacing:1.442880pt;}
.ws46{word-spacing:1.581120pt;}
.ws48{word-spacing:1.932480pt;}
.ws2c{word-spacing:2.225280pt;}
.ws36{word-spacing:2.576640pt;}
.ws28{word-spacing:3.220800pt;}
.ws27{word-spacing:3.806400pt;}
.ws35{word-spacing:4.157760pt;}
.ws39{word-spacing:4.801920pt;}
.ws23{word-spacing:5.094720pt;}
.ws22{word-spacing:5.446080pt;}
.ws2d{word-spacing:5.738880pt;}
.ws19{word-spacing:6.090240pt;}
.ws4d{word-spacing:6.840320pt;}
.ws4b{word-spacing:7.000640pt;}
.ws42{word-spacing:8.022720pt;}
.ws25{word-spacing:8.959680pt;}
.ws37{word-spacing:9.896640pt;}
.ws3b{word-spacing:10.248000pt;}
.ws43{word-spacing:12.473280pt;}
.ws24{word-spacing:14.054400pt;}
.ws3d{word-spacing:14.405760pt;}
.ws3c{word-spacing:16.338240pt;}
.ws29{word-spacing:18.856320pt;}
.ws41{word-spacing:21.725760pt;}
.ws1a{word-spacing:25.942080pt;}
.ws31{word-spacing:32.617920pt;}
.ws44{word-spacing:94.691520pt;}
.ws3e{word-spacing:131.525760pt;}
.ws3f{word-spacing:132.814080pt;}
._2{margin-left:-16.328640pt;}
._1{margin-left:-8.968448pt;}
._3{margin-left:-6.870912pt;}
._f{margin-left:-5.629440pt;}
._4{margin-left:-4.637952pt;}
._5{margin-left:-3.531168pt;}
._c{margin-left:-2.346432pt;}
._0{margin-left:-0.905664pt;}
._6{width:1.036512pt;}
._9{width:2.108160pt;}
._8{width:3.864960pt;}
._7{width:5.362112pt;}
._b{width:6.265920pt;}
._11{width:7.198368pt;}
._10{width:12.239040pt;}
._a{width:18.073920pt;}
._d{width:52.762560pt;}
._e{width:1446.197760pt;}
.fs8{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs4{font-size:48.000000pt;}
.fs7{font-size:53.440000pt;}
.fs2{font-size:56.000000pt;}
.fs5{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.560000pt;}
.fs1{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:3.120000pt;}
.y20{bottom:3.280000pt;}
.y2{bottom:3.440000pt;}
.y1{bottom:21.840000pt;}
.ya9{bottom:78.713520pt;}
.y6b{bottom:81.728480pt;}
.y36{bottom:93.120080pt;}
.ya8{bottom:95.593440pt;}
.y6a{bottom:98.608400pt;}
.y35{bottom:110.000000pt;}
.ya7{bottom:112.473360pt;}
.y69{bottom:115.488320pt;}
.y34{bottom:127.120000pt;}
.ya6{bottom:129.353280pt;}
.y68{bottom:132.295040pt;}
.y33{bottom:145.175360pt;}
.ya5{bottom:146.160000pt;}
.y9a{bottom:149.120000pt;}
.y67{bottom:149.174960pt;}
.y32{bottom:162.055280pt;}
.ya4{bottom:162.716000pt;}
.y99{bottom:165.993440pt;}
.y66{bottom:166.054880pt;}
.ya3{bottom:178.076000pt;}
.y31{bottom:178.935200pt;}
.y98{bottom:182.873360pt;}
.y65{bottom:182.934800pt;}
.ya2{bottom:193.440000pt;}
.y30{bottom:195.815120pt;}
.y97{bottom:199.680080pt;}
.y64{bottom:199.814720pt;}
.ya1{bottom:209.360000pt;}
.y2f{bottom:212.695040pt;}
.y96{bottom:216.560000pt;}
.y63{bottom:216.621440pt;}
.y9f{bottom:224.320000pt;}
.y2e{bottom:229.574960pt;}
.y62{bottom:233.501360pt;}
.y95{bottom:234.720000pt;}
.y2d{bottom:246.381680pt;}
.y61{bottom:250.381280pt;}
.y94{bottom:252.800320pt;}
.y2c{bottom:263.261600pt;}
.y60{bottom:267.261200pt;}
.y93{bottom:269.680240pt;}
.y2b{bottom:281.180960pt;}
.y5f{bottom:284.141120pt;}
.y92{bottom:286.560160pt;}
.y2a{bottom:299.027120pt;}
.y5e{bottom:301.021040pt;}
.y91{bottom:303.440080pt;}
.y29{bottom:316.873280pt;}
.y5d{bottom:318.867200pt;}
.y90{bottom:320.320000pt;}
.y28{bottom:333.680000pt;}
.y5c{bottom:335.747120pt;}
.y8f{bottom:338.480000pt;}
.ya0{bottom:338.560000pt;}
.y27{bottom:350.560000pt;}
.y5b{bottom:352.553840pt;}
.y8e{bottom:356.560080pt;}
.y26{bottom:367.440240pt;}
.y5a{bottom:369.433760pt;}
.y8d{bottom:373.440000pt;}
.y25{bottom:384.320160pt;}
.y59{bottom:386.313680pt;}
.y8c{bottom:390.240000pt;}
.y24{bottom:401.200080pt;}
.y58{bottom:403.193600pt;}
.y8b{bottom:407.069920pt;}
.y23{bottom:418.080000pt;}
.y57{bottom:420.073520pt;}
.y8a{bottom:424.916080pt;}
.y22{bottom:432.480000pt;}
.y56{bottom:436.880240pt;}
.y89{bottom:441.796000pt;}
.y21{bottom:450.320000pt;}
.y55{bottom:453.760160pt;}
.y88{bottom:458.675920pt;}
.y9d{bottom:464.320000pt;}
.y1f{bottom:468.160000pt;}
.y54{bottom:470.640080pt;}
.y87{bottom:475.555840pt;}
.y1d{bottom:486.080000pt;}
.y53{bottom:487.520000pt;}
.y86{bottom:492.435760pt;}
.y52{bottom:504.350800pt;}
.y1c{bottom:506.707120pt;}
.y85{bottom:509.242480pt;}
.y51{bottom:522.196960pt;}
.y1b{bottom:523.513840pt;}
.y84{bottom:526.122400pt;}
.y50{bottom:539.076880pt;}
.y1a{bottom:540.393760pt;}
.y83{bottom:543.968560pt;}
.y4f{bottom:555.883600pt;}
.y19{bottom:557.273680pt;}
.y82{bottom:560.848480pt;}
.y4e{bottom:572.763520pt;}
.y18{bottom:574.153600pt;}
.y81{bottom:577.728400pt;}
.y9e{bottom:578.560000pt;}
.y4d{bottom:589.643440pt;}
.y17{bottom:591.033520pt;}
.y80{bottom:594.608320pt;}
.y4c{bottom:607.489600pt;}
.y16{bottom:607.913440pt;}
.y7f{bottom:611.488240pt;}
.y4b{bottom:624.369520pt;}
.y15{bottom:624.720160pt;}
.y7e{bottom:628.368160pt;}
.y4a{bottom:641.249440pt;}
.y14{bottom:641.600080pt;}
.y7d{bottom:645.174880pt;}
.y49{bottom:658.129360pt;}
.y13{bottom:658.473680pt;}
.y7c{bottom:662.054800pt;}
.y12{bottom:675.353600pt;}
.y48{bottom:675.975520pt;}
.y7b{bottom:678.934720pt;}
.yb6{bottom:679.900960pt;}
.y11{bottom:692.233520pt;}
.y47{bottom:692.855440pt;}
.y7a{bottom:695.814640pt;}
.yb5{bottom:696.780880pt;}
.y10{bottom:709.040240pt;}
.y46{bottom:709.735360pt;}
.y79{bottom:712.694560pt;}
.yb4{bottom:713.660800pt;}
.y9b{bottom:723.440000pt;}
.yf{bottom:725.920160pt;}
.y45{bottom:726.542080pt;}
.y78{bottom:729.501280pt;}
.yb3{bottom:730.540720pt;}
.ye{bottom:742.800080pt;}
.y44{bottom:743.422000pt;}
.y77{bottom:746.381200pt;}
.yb2{bottom:747.420640pt;}
.yd{bottom:759.680000pt;}
.y43{bottom:760.301920pt;}
.y76{bottom:763.261120pt;}
.yb1{bottom:764.227360pt;}
.yc{bottom:776.553360pt;}
.y42{bottom:777.181840pt;}
.y75{bottom:780.141040pt;}
.yb0{bottom:781.107280pt;}
.yb{bottom:793.433280pt;}
.y41{bottom:794.061760pt;}
.y74{bottom:797.020960pt;}
.yaf{bottom:797.987200pt;}
.ya{bottom:810.240000pt;}
.y40{bottom:810.868480pt;}
.y73{bottom:813.827680pt;}
.yae{bottom:814.867120pt;}
.y3f{bottom:827.748400pt;}
.y9{bottom:827.910800pt;}
.y9c{bottom:828.160000pt;}
.y72{bottom:830.707600pt;}
.yad{bottom:831.747040pt;}
.y3e{bottom:845.594560pt;}
.y71{bottom:847.587520pt;}
.yac{bottom:848.553760pt;}
.y8{bottom:849.440000pt;}
.y3d{bottom:862.474480pt;}
.y70{bottom:864.467440pt;}
.yab{bottom:865.433680pt;}
.y7{bottom:870.874800pt;}
.y3c{bottom:880.393840pt;}
.y6f{bottom:881.347360pt;}
.yaa{bottom:882.313600pt;}
.y6{bottom:892.310800pt;}
.y3b{bottom:898.240000pt;}
.y6e{bottom:899.193520pt;}
.y5{bottom:913.840000pt;}
.y3a{bottom:915.040000pt;}
.y6d{bottom:916.073440pt;}
.y39{bottom:931.913920pt;}
.y6c{bottom:932.953360pt;}
.y4{bottom:935.921440pt;}
.y38{bottom:949.760080pt;}
.y3{bottom:960.400000pt;}
.y37{bottom:966.640000pt;}
.h7{height:16.800000pt;}
.ha{height:17.200000pt;}
.h9{height:17.201333pt;}
.he{height:41.776094pt;}
.hf{height:41.792094pt;}
.h8{height:42.633281pt;}
.hc{height:42.656250pt;}
.h1{height:44.437500pt;}
.h5{height:45.778594pt;}
.h6{height:45.803874pt;}
.hb{height:45.978914pt;}
.h4{height:58.286406pt;}
.h2{height:62.202656pt;}
.h3{height:64.083438pt;}
.hd{height:240.000000pt;}
.h0{height:1056.000000pt;}
.w1{width:165.360000pt;}
.w2{width:165.438667pt;}
.w3{width:165.440000pt;}
.w4{width:624.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xe{left:6.880000pt;}
.xd{left:42.320000pt;}
.xb{left:47.200000pt;}
.x7{left:52.880000pt;}
.x10{left:55.680000pt;}
.xf{left:57.360000pt;}
.x9{left:68.800000pt;}
.x2{left:75.600000pt;}
.x11{left:99.594960pt;}
.x16{left:101.205360pt;}
.x12{left:113.683680pt;}
.x6{left:123.589280pt;}
.x5{left:158.880000pt;}
.x8{left:242.240000pt;}
.x3{left:260.080000pt;}
.x4{left:285.913680pt;}
.x1{left:404.000000pt;}
.xa{left:408.320000pt;}
.x15{left:512.000000pt;}
.xc{left:574.320000pt;}
.x13{left:587.680000pt;}
.x14{left:719.520000pt;}
}




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