
    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_ea2094fd4c21c172fc10144e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_68537fb8240512360d695b38.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_58cc6a7259225fcc3bacc1ba.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.133789;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_c3e35cdeea9d882b1a2915ae.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.148926;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_dbb8195e712dd2506ccbd95b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_29799d16ad4fedf078e5f5fd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_cec8bfa817afdb3c9754fcfe.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_7252088578549bf0494c20a4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893066;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_1e86440aebf8b158120d6d9a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.148926;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:ffa;src:url('chunks/assets/font_4d2653cfc46166a3af22bf08.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.222168;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:ffb;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284668;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:ffc;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_457cb8109812fd78f171f083.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.435059;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:-96.480000px;}
.v16{vertical-align:-21.600000px;}
.vb{vertical-align:-20.160000px;}
.v12{vertical-align:-17.280000px;}
.v15{vertical-align:-15.120000px;}
.vd{vertical-align:-13.680000px;}
.v10{vertical-align:-11.520000px;}
.v19{vertical-align:-9.360000px;}
.v8{vertical-align:-7.920000px;}
.v9{vertical-align:-6.480000px;}
.v6{vertical-align:-5.040000px;}
.v14{vertical-align:-3.600000px;}
.v5{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.160000px;}
.v13{vertical-align:3.600000px;}
.v7{vertical-align:5.040000px;}
.v3{vertical-align:6.480000px;}
.v2{vertical-align:7.920000px;}
.v18{vertical-align:9.360000px;}
.va{vertical-align:10.800000px;}
.ve{vertical-align:13.680000px;}
.vf{vertical-align:15.120000px;}
.v11{vertical-align:17.280000px;}
.vc{vertical-align:20.160000px;}
.v17{vertical-align:21.600000px;}
.ls46{letter-spacing:-21.780000px;}
.ls1f{letter-spacing:-4.500000px;}
.ls37{letter-spacing:-0.900000px;}
.ls21{letter-spacing:-0.690000px;}
.ls44{letter-spacing:-0.684000px;}
.ls8{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.180000px;}
.ls6{letter-spacing:-0.018720px;}
.ls5{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.012960px;}
.ls4{letter-spacing:0.028080px;}
.ls28{letter-spacing:0.090000px;}
.lsf{letter-spacing:0.208080px;}
.ls40{letter-spacing:0.326880px;}
.ls1e{letter-spacing:0.329760px;}
.ls45{letter-spacing:0.330000px;}
.ls20{letter-spacing:0.341400px;}
.ls0{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.378600px;}
.ls26{letter-spacing:0.416880px;}
.ls32{letter-spacing:0.494640px;}
.ls2e{letter-spacing:0.566640px;}
.ls33{letter-spacing:0.574560px;}
.ls10{letter-spacing:0.720000px;}
.ls3c{letter-spacing:0.884880px;}
.ls38{letter-spacing:1.046880px;}
.ls16{letter-spacing:1.049760px;}
.ls1a{letter-spacing:1.211760px;}
.ls18{letter-spacing:1.440000px;}
.ls14{letter-spacing:1.903680px;}
.ls1b{letter-spacing:2.160000px;}
.ls1c{letter-spacing:3.749040px;}
.ls31{letter-spacing:4.228560px;}
.ls2f{letter-spacing:4.249440px;}
.ls29{letter-spacing:4.882320px;}
.ls15{letter-spacing:4.886640px;}
.ls27{letter-spacing:5.365440px;}
.ls2b{letter-spacing:5.369760px;}
.ls3b{letter-spacing:5.451120px;}
.ls3a{letter-spacing:5.614560px;}
.ls2a{letter-spacing:5.689440px;}
.ls30{letter-spacing:5.924880px;}
.ls3f{letter-spacing:6.492960px;}
.ls34{letter-spacing:6.805440px;}
.ls39{letter-spacing:7.042320px;}
.ls35{letter-spacing:7.046640px;}
.ls23{letter-spacing:7.129440px;}
.ls17{letter-spacing:7.525440px;}
.ls22{letter-spacing:7.529760px;}
.ls12{letter-spacing:7.766640px;}
.ls1d{letter-spacing:7.849440px;}
.ls13{letter-spacing:7.912800px;}
.ls2{letter-spacing:9.180000px;}
.ls11{letter-spacing:9.823680px;}
.ls3d{letter-spacing:10.244880px;}
.ls3e{letter-spacing:10.405440px;}
.lsb{letter-spacing:12.060000px;}
.lsd{letter-spacing:14.021280px;}
.ls1{letter-spacing:16.380000px;}
.ls3{letter-spacing:19.980000px;}
.ls19{letter-spacing:25.054560px;}
.ls25{letter-spacing:32.220000px;}
.lse{letter-spacing:33.660000px;}
.lsc{letter-spacing:118.421280px;}
.ls42{letter-spacing:130.140000px;}
.lsa{letter-spacing:187.716000px;}
.ls2d{letter-spacing:191.520000px;}
.ls36{letter-spacing:299.316000px;}
.ls43{letter-spacing:301.680000px;}
.ls41{letter-spacing:391.476000px;}
.ls2c{letter-spacing:2158.860000px;}
.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:-21.438600px;}
.ws4{word-spacing:-21.420000px;}
.ws7{word-spacing:-21.088080px;}
.ws0{word-spacing:-21.060000px;}
.ws1{word-spacing:-21.041280px;}
.ws3{word-spacing:-20.700000px;}
.ws8{word-spacing:-20.376000px;}
.ws9{word-spacing:-0.414240px;}
.ws5{word-spacing:-0.084240px;}
.ws6{word-spacing:0.000000px;}
._5e{margin-left:-2693.790240px;}
._6c{margin-left:-2544.949200px;}
._65{margin-left:-2245.110240px;}
._66{margin-left:-2242.518960px;}
._74{margin-left:-2124.150240px;}
._75{margin-left:-2120.631120px;}
._30{margin-left:-1462.340880px;}
._43{margin-left:-1403.124000px;}
._3f{margin-left:-1384.860000px;}
._51{margin-left:-1093.243920px;}
._6b{margin-left:-1015.050240px;}
._44{margin-left:-953.488080px;}
._57{margin-left:-922.243440px;}
._5a{margin-left:-810.277920px;}
._46{margin-left:-682.488000px;}
._22{margin-left:-656.533200px;}
._26{margin-left:-640.948800px;}
._24{margin-left:-625.954080px;}
._23{margin-left:-623.604240px;}
._28{margin-left:-588.769680px;}
._4d{margin-left:-573.960000px;}
._25{margin-left:-553.685040px;}
._5c{margin-left:-544.053840px;}
._52{margin-left:-515.603520px;}
._56{margin-left:-508.914000px;}
._6e{margin-left:-481.294800px;}
._59{margin-left:-438.910560px;}
._78{margin-left:-437.574000px;}
._77{margin-left:-430.716000px;}
._2b{margin-left:-422.315280px;}
._5b{margin-left:-412.709520px;}
._2a{margin-left:-402.120000px;}
._72{margin-left:-399.383280px;}
._49{margin-left:-375.840000px;}
._27{margin-left:-344.994720px;}
._58{margin-left:-281.131920px;}
._47{margin-left:-280.045680px;}
._2c{margin-left:-275.075520px;}
._70{margin-left:-270.180720px;}
._60{margin-left:-262.440000px;}
._6f{margin-left:-247.860000px;}
._71{margin-left:-243.540000px;}
._69{margin-left:-242.297280px;}
._36{margin-left:-234.131280px;}
._3d{margin-left:-223.588560px;}
._68{margin-left:-220.476000px;}
._6a{margin-left:-216.120960px;}
._50{margin-left:-209.880000px;}
._45{margin-left:-206.841120px;}
._3c{margin-left:-189.478800px;}
._4c{margin-left:-187.380000px;}
._34{margin-left:-185.865360px;}
._3a{margin-left:-177.188640px;}
._35{margin-left:-160.837200px;}
._62{margin-left:-129.796560px;}
._64{margin-left:-127.226640px;}
._63{margin-left:-109.620480px;}
._39{margin-left:-99.687840px;}
._37{margin-left:-88.053840px;}
._61{margin-left:-83.442960px;}
._67{margin-left:-63.000000px;}
._48{margin-left:-59.516640px;}
._79{margin-left:-49.651920px;}
._29{margin-left:-41.940000px;}
._76{margin-left:-40.500000px;}
._1d{margin-left:-22.663440px;}
._1a{margin-left:-21.090720px;}
._41{margin-left:-14.565600px;}
._42{margin-left:-13.423680px;}
._2e{margin-left:-10.882080px;}
._2f{margin-left:-8.602320px;}
._2d{margin-left:-7.200000px;}
._40{margin-left:-6.073440px;}
._5{margin-left:-4.726560px;}
._6{margin-left:-3.262320px;}
._0{margin-left:-1.656960px;}
._1{width:1.022640px;}
._2{width:2.622480px;}
._11{width:3.821040px;}
._3e{width:5.168160px;}
._14{width:6.304080px;}
._15{width:7.626240px;}
._20{width:9.182880px;}
._10{width:10.333680px;}
._5d{width:11.334480px;}
._13{width:12.605280px;}
._12{width:13.899600px;}
._b{width:15.837120px;}
._c{width:17.157120px;}
._17{width:18.502320px;}
._16{width:19.680480px;}
._33{width:22.576320px;}
._31{width:24.261120px;}
._32{width:25.496880px;}
._1f{width:30.061920px;}
._1e{width:31.393680px;}
._21{width:33.384240px;}
._e{width:34.538400px;}
._d{width:35.554800px;}
._a{width:36.724800px;}
._9{width:37.739520px;}
._4{width:43.446720px;}
._3{width:44.701920px;}
._7{width:45.995040px;}
._8{width:47.338800px;}
._f{width:53.576640px;}
._54{width:55.991760px;}
._53{width:57.473520px;}
._3b{width:70.174080px;}
._4e{width:91.690560px;}
._19{width:113.600160px;}
._18{width:114.791280px;}
._4b{width:141.660000px;}
._38{width:159.137280px;}
._1b{width:187.716000px;}
._5f{width:218.774640px;}
._1c{width:226.153200px;}
._6d{width:793.700160px;}
._73{width:948.960000px;}
._55{width:1604.847600px;}
._4a{width:1728.840000px;}
._4f{width:2163.367440px;}
._7a{width:2665.140000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y52{bottom:4.500000px;}
.y44{bottom:8.100000px;}
.y46{bottom:8.640000px;}
.y43{bottom:8.820000px;}
.y5c{bottom:14.760000px;}
.y5a{bottom:15.300000px;}
.y78{bottom:16.560000px;}
.y7a{bottom:17.640000px;}
.y74{bottom:17.820000px;}
.y76{bottom:18.540000px;}
.y56{bottom:28.620000px;}
.y54{bottom:28.800000px;}
.y3{bottom:38.376000px;}
.y2{bottom:62.676000px;}
.y9c{bottom:105.696000px;}
.y72{bottom:108.756000px;}
.y50{bottom:111.456000px;}
.y9b{bottom:129.816000px;}
.y4f{bottom:135.576000px;}
.y9a{bottom:153.930000px;}
.y71{bottom:156.990000px;}
.y4e{bottom:159.870000px;}
.y70{bottom:177.330000px;}
.y99{bottom:178.050000px;}
.y4d{bottom:183.990000px;}
.y98{bottom:202.170000px;}
.y4c{bottom:206.130000px;}
.y4b{bottom:208.110000px;}
.y97{bottom:226.470000px;}
.y6f{bottom:230.970000px;}
.y4a{bottom:232.230000px;}
.y29{bottom:237.630000px;}
.y96{bottom:250.590000px;}
.y49{bottom:256.350000px;}
.y28{bottom:261.750000px;}
.y95{bottom:274.755000px;}
.y6e{bottom:279.255000px;}
.y48{bottom:280.515000px;}
.y27{bottom:285.915000px;}
.y94{bottom:298.875000px;}
.y6d{bottom:299.595000px;}
.y47{bottom:301.035000px;}
.y26{bottom:310.215000px;}
.y93{bottom:322.995000px;}
.y6c{bottom:329.115000px;}
.y45{bottom:329.475000px;}
.y25{bottom:334.335000px;}
.y92{bottom:347.115000px;}
.y6b{bottom:353.235000px;}
.y24{bottom:358.455000px;}
.y91{bottom:371.415000px;}
.y6a{bottom:377.355000px;}
.y23{bottom:382.575000px;}
.y42{bottom:386.895000px;}
.y90{bottom:395.535000px;}
.y69{bottom:401.475000px;}
.y22{bottom:406.695000px;}
.y8f{bottom:419.655000px;}
.y41{bottom:420.555000px;}
.y68{bottom:425.595000px;}
.y8e{bottom:443.775000px;}
.y40{bottom:444.675000px;}
.y21{bottom:448.815000px;}
.y67{bottom:449.715000px;}
.y8d{bottom:467.895000px;}
.y3f{bottom:468.795000px;}
.y20{bottom:473.115000px;}
.y66{bottom:474.015000px;}
.y8c{bottom:492.015000px;}
.y3e{bottom:492.915000px;}
.y75{bottom:495.795000px;}
.y1f{bottom:497.235000px;}
.y65{bottom:498.135000px;}
.y8b{bottom:516.315000px;}
.y3d{bottom:517.035000px;}
.y1e{bottom:521.355000px;}
.y64{bottom:522.255000px;}
.y73{bottom:534.675000px;}
.y8a{bottom:540.435000px;}
.y3c{bottom:541.335000px;}
.y1d{bottom:545.475000px;}
.y63{bottom:546.375000px;}
.y89{bottom:564.585000px;}
.y3b{bottom:565.485000px;}
.y1c{bottom:569.625000px;}
.y88{bottom:588.705000px;}
.y3a{bottom:589.605000px;}
.y1b{bottom:593.745000px;}
.y62{bottom:594.645000px;}
.y87{bottom:612.825000px;}
.y39{bottom:613.725000px;}
.y1a{bottom:618.045000px;}
.y61{bottom:618.765000px;}
.y86{bottom:636.945000px;}
.y38{bottom:637.845000px;}
.y19{bottom:642.165000px;}
.y60{bottom:643.065000px;}
.y85{bottom:661.065000px;}
.y37{bottom:661.965000px;}
.y18{bottom:666.285000px;}
.y5f{bottom:667.185000px;}
.y84{bottom:685.365000px;}
.y36{bottom:686.265000px;}
.y17{bottom:690.405000px;}
.y5e{bottom:691.305000px;}
.y35{bottom:710.385000px;}
.y16{bottom:714.525000px;}
.y5d{bottom:715.425000px;}
.y34{bottom:734.505000px;}
.y5b{bottom:735.765000px;}
.y15{bottom:738.645000px;}
.y14{bottom:762.765000px;}
.y59{bottom:770.865000px;}
.y83{bottom:781.845000px;}
.y33{bottom:782.745000px;}
.y13{bottom:787.065000px;}
.y82{bottom:805.965000px;}
.y32{bottom:806.865000px;}
.y57{bottom:809.205000px;}
.y12{bottom:811.185000px;}
.y31{bottom:830.985000px;}
.y11{bottom:835.305000px;}
.y30{bottom:855.330000px;}
.y55{bottom:858.390000px;}
.y10{bottom:859.470000px;}
.y81{bottom:878.550000px;}
.y2f{bottom:879.450000px;}
.yf{bottom:883.590000px;}
.y2e{bottom:903.570000px;}
.y53{bottom:907.350000px;}
.ye{bottom:907.710000px;}
.y2d{bottom:927.690000px;}
.yd{bottom:932.010000px;}
.y80{bottom:950.910000px;}
.y2c{bottom:951.810000px;}
.yc{bottom:956.130000px;}
.y51{bottom:956.490000px;}
.y7f{bottom:975.030000px;}
.y2b{bottom:975.930000px;}
.y58{bottom:978.090000px;}
.yb{bottom:980.250000px;}
.y2a{bottom:995.550000px;}
.y7e{bottom:999.330000px;}
.ya{bottom:1004.370000px;}
.y7d{bottom:1023.450000px;}
.y9{bottom:1028.490000px;}
.y7c{bottom:1047.570000px;}
.y8{bottom:1052.610000px;}
.y7b{bottom:1071.690000px;}
.y7{bottom:1076.730000px;}
.y79{bottom:1092.030000px;}
.y6{bottom:1101.030000px;}
.y5{bottom:1125.180000px;}
.y77{bottom:1130.040000px;}
.y4{bottom:1149.300000px;}
.y1{bottom:1190.160000px;}
.hf{height:24.120000px;}
.ha{height:27.720000px;}
.hb{height:28.260000px;}
.h8{height:28.440000px;}
.h15{height:34.380000px;}
.h14{height:34.920000px;}
.h1a{height:37.296000px;}
.h17{height:37.476000px;}
.h18{height:38.160000px;}
.h11{height:48.240000px;}
.h10{height:48.420000px;}
.h12{height:48.456000px;}
.h5{height:58.490859px;}
.h9{height:78.604805px;}
.h4{height:82.635820px;}
.h2{height:82.676953px;}
.h3{height:84.898125px;}
.h6{height:85.103789px;}
.h16{height:87.695156px;}
.h7{height:87.859687px;}
.h19{height:88.684805px;}
.h1b{height:93.004805px;}
.hd{height:93.724805px;}
.he{height:95.884805px;}
.h13{height:96.604805px;}
.hc{height:97.324805px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:103.140000px;}
.w5{width:105.336000px;}
.wd{width:136.836000px;}
.w8{width:159.300000px;}
.wb{width:169.410000px;}
.w9{width:180.030000px;}
.we{width:198.750000px;}
.wa{width:211.350000px;}
.w4{width:230.295000px;}
.wc{width:264.630000px;}
.w3{width:273.270000px;}
.w7{width:288.435000px;}
.wf{width:316.470000px;}
.w10{width:317.775000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x25{left:2.700000px;}
.x20{left:7.740000px;}
.x26{left:9.360000px;}
.x22{left:12.240000px;}
.x23{left:14.940000px;}
.x27{left:18.000000px;}
.x24{left:30.420000px;}
.x35{left:37.260000px;}
.x33{left:45.180000px;}
.x2b{left:52.920000px;}
.x39{left:54.540000px;}
.x37{left:69.705000px;}
.xc{left:74.699987px;}
.x15{left:77.250000px;}
.x1{left:85.319987px;}
.x2d{left:92.340000px;}
.x17{left:94.710000px;}
.x3b{left:106.560000px;}
.x6{left:111.095987px;}
.x11{left:112.355987px;}
.x18{left:116.145000px;}
.x16{left:119.745000px;}
.x19{left:123.705000px;}
.xb{left:128.735987px;}
.x3{left:135.755987px;}
.xe{left:139.355987px;}
.x5{left:146.735987px;}
.x1a{left:164.550000px;}
.x10{left:166.349987px;}
.x3d{left:184.890000px;}
.xf{left:193.349987px;}
.x3a{left:198.945000px;}
.x13{left:202.710000px;}
.x12{left:219.449987px;}
.x2a{left:221.430000px;}
.x2f{left:223.409987px;}
.x8{left:225.749987px;}
.x32{left:237.090000px;}
.x31{left:249.510000px;}
.x36{left:278.310000px;}
.x7{left:279.929987px;}
.x1b{left:291.629987px;}
.x1c{left:293.249987px;}
.x29{left:302.474987px;}
.x9{left:306.434987px;}
.x34{left:407.235000px;}
.x1d{left:412.049987px;}
.x38{left:415.875000px;}
.x2{left:430.814987px;}
.x4{left:446.474987px;}
.xa{left:473.474987px;}
.x14{left:476.715000px;}
.x3c{left:483.375000px;}
.x2c{left:510.585000px;}
.x30{left:544.604987px;}
.x1e{left:579.449987px;}
.x1f{left:597.705000px;}
.x28{left:642.524987px;}
.x2e{left:669.884987px;}
.x21{left:703.770000px;}
.x3e{left:742.829987px;}
.xd{left:758.129987px;}
.x3f{left:763.889987px;}
@media print{
.v1{vertical-align:-85.760000pt;}
.v16{vertical-align:-19.200000pt;}
.vb{vertical-align:-17.920000pt;}
.v12{vertical-align:-15.360000pt;}
.v15{vertical-align:-13.440000pt;}
.vd{vertical-align:-12.160000pt;}
.v10{vertical-align:-10.240000pt;}
.v19{vertical-align:-8.320000pt;}
.v8{vertical-align:-7.040000pt;}
.v9{vertical-align:-5.760000pt;}
.v6{vertical-align:-4.480000pt;}
.v14{vertical-align:-3.200000pt;}
.v5{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.920000pt;}
.v13{vertical-align:3.200000pt;}
.v7{vertical-align:4.480000pt;}
.v3{vertical-align:5.760000pt;}
.v2{vertical-align:7.040000pt;}
.v18{vertical-align:8.320000pt;}
.va{vertical-align:9.600000pt;}
.ve{vertical-align:12.160000pt;}
.vf{vertical-align:13.440000pt;}
.v11{vertical-align:15.360000pt;}
.vc{vertical-align:17.920000pt;}
.v17{vertical-align:19.200000pt;}
.ls46{letter-spacing:-19.360000pt;}
.ls1f{letter-spacing:-4.000000pt;}
.ls37{letter-spacing:-0.800000pt;}
.ls21{letter-spacing:-0.613333pt;}
.ls44{letter-spacing:-0.608000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:-0.016640pt;}
.ls5{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.011520pt;}
.ls4{letter-spacing:0.024960pt;}
.ls28{letter-spacing:0.080000pt;}
.lsf{letter-spacing:0.184960pt;}
.ls40{letter-spacing:0.290560pt;}
.ls1e{letter-spacing:0.293120pt;}
.ls45{letter-spacing:0.293333pt;}
.ls20{letter-spacing:0.303467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.336533pt;}
.ls26{letter-spacing:0.370560pt;}
.ls32{letter-spacing:0.439680pt;}
.ls2e{letter-spacing:0.503680pt;}
.ls33{letter-spacing:0.510720pt;}
.ls10{letter-spacing:0.640000pt;}
.ls3c{letter-spacing:0.786560pt;}
.ls38{letter-spacing:0.930560pt;}
.ls16{letter-spacing:0.933120pt;}
.ls1a{letter-spacing:1.077120pt;}
.ls18{letter-spacing:1.280000pt;}
.ls14{letter-spacing:1.692160pt;}
.ls1b{letter-spacing:1.920000pt;}
.ls1c{letter-spacing:3.332480pt;}
.ls31{letter-spacing:3.758720pt;}
.ls2f{letter-spacing:3.777280pt;}
.ls29{letter-spacing:4.339840pt;}
.ls15{letter-spacing:4.343680pt;}
.ls27{letter-spacing:4.769280pt;}
.ls2b{letter-spacing:4.773120pt;}
.ls3b{letter-spacing:4.845440pt;}
.ls3a{letter-spacing:4.990720pt;}
.ls2a{letter-spacing:5.057280pt;}
.ls30{letter-spacing:5.266560pt;}
.ls3f{letter-spacing:5.771520pt;}
.ls34{letter-spacing:6.049280pt;}
.ls39{letter-spacing:6.259840pt;}
.ls35{letter-spacing:6.263680pt;}
.ls23{letter-spacing:6.337280pt;}
.ls17{letter-spacing:6.689280pt;}
.ls22{letter-spacing:6.693120pt;}
.ls12{letter-spacing:6.903680pt;}
.ls1d{letter-spacing:6.977280pt;}
.ls13{letter-spacing:7.033600pt;}
.ls2{letter-spacing:8.160000pt;}
.ls11{letter-spacing:8.732160pt;}
.ls3d{letter-spacing:9.106560pt;}
.ls3e{letter-spacing:9.249280pt;}
.lsb{letter-spacing:10.720000pt;}
.lsd{letter-spacing:12.463360pt;}
.ls1{letter-spacing:14.560000pt;}
.ls3{letter-spacing:17.760000pt;}
.ls19{letter-spacing:22.270720pt;}
.ls25{letter-spacing:28.640000pt;}
.lse{letter-spacing:29.920000pt;}
.lsc{letter-spacing:105.263360pt;}
.ls42{letter-spacing:115.680000pt;}
.lsa{letter-spacing:166.858667pt;}
.ls2d{letter-spacing:170.240000pt;}
.ls36{letter-spacing:266.058667pt;}
.ls43{letter-spacing:268.160000pt;}
.ls41{letter-spacing:347.978667pt;}
.ls2c{letter-spacing:1918.986667pt;}
.ws2{word-spacing:-19.056533pt;}
.ws4{word-spacing:-19.040000pt;}
.ws7{word-spacing:-18.744960pt;}
.ws0{word-spacing:-18.720000pt;}
.ws1{word-spacing:-18.703360pt;}
.ws3{word-spacing:-18.400000pt;}
.ws8{word-spacing:-18.112000pt;}
.ws9{word-spacing:-0.368213pt;}
.ws5{word-spacing:-0.074880pt;}
.ws6{word-spacing:0.000000pt;}
._5e{margin-left:-2394.480213pt;}
._6c{margin-left:-2262.177067pt;}
._65{margin-left:-1995.653547pt;}
._66{margin-left:-1993.350187pt;}
._74{margin-left:-1888.133547pt;}
._75{margin-left:-1885.005440pt;}
._30{margin-left:-1299.858560pt;}
._43{margin-left:-1247.221333pt;}
._3f{margin-left:-1230.986667pt;}
._51{margin-left:-971.772373pt;}
._6b{margin-left:-902.266880pt;}
._44{margin-left:-847.544960pt;}
._57{margin-left:-819.771947pt;}
._5a{margin-left:-720.247040pt;}
._46{margin-left:-606.656000pt;}
._22{margin-left:-583.585067pt;}
._26{margin-left:-569.732267pt;}
._24{margin-left:-556.403627pt;}
._23{margin-left:-554.314880pt;}
._28{margin-left:-523.350827pt;}
._4d{margin-left:-510.186667pt;}
._25{margin-left:-492.164480pt;}
._5c{margin-left:-483.603413pt;}
._52{margin-left:-458.314240pt;}
._56{margin-left:-452.368000pt;}
._6e{margin-left:-427.817600pt;}
._59{margin-left:-390.142720pt;}
._78{margin-left:-388.954667pt;}
._77{margin-left:-382.858667pt;}
._2b{margin-left:-375.391360pt;}
._5b{margin-left:-366.852907pt;}
._2a{margin-left:-357.440000pt;}
._72{margin-left:-355.007360pt;}
._49{margin-left:-334.080000pt;}
._27{margin-left:-306.661973pt;}
._58{margin-left:-249.895040pt;}
._47{margin-left:-248.929493pt;}
._2c{margin-left:-244.511573pt;}
._70{margin-left:-240.160640pt;}
._60{margin-left:-233.280000pt;}
._6f{margin-left:-220.320000pt;}
._71{margin-left:-216.480000pt;}
._69{margin-left:-215.375360pt;}
._36{margin-left:-208.116693pt;}
._3d{margin-left:-198.745387pt;}
._68{margin-left:-195.978667pt;}
._6a{margin-left:-192.107520pt;}
._50{margin-left:-186.560000pt;}
._45{margin-left:-183.858773pt;}
._3c{margin-left:-168.425600pt;}
._4c{margin-left:-166.560000pt;}
._34{margin-left:-165.213653pt;}
._3a{margin-left:-157.501013pt;}
._35{margin-left:-142.966400pt;}
._62{margin-left:-115.374720pt;}
._64{margin-left:-113.090347pt;}
._63{margin-left:-97.440427pt;}
._39{margin-left:-88.611413pt;}
._37{margin-left:-78.270080pt;}
._61{margin-left:-74.171520pt;}
._67{margin-left:-56.000000pt;}
._48{margin-left:-52.903680pt;}
._79{margin-left:-44.135040pt;}
._29{margin-left:-37.280000pt;}
._76{margin-left:-36.000000pt;}
._1d{margin-left:-20.145280pt;}
._1a{margin-left:-18.747307pt;}
._41{margin-left:-12.947200pt;}
._42{margin-left:-11.932160pt;}
._2e{margin-left:-9.672960pt;}
._2f{margin-left:-7.646507pt;}
._2d{margin-left:-6.400000pt;}
._40{margin-left:-5.398613pt;}
._5{margin-left:-4.201387pt;}
._6{margin-left:-2.899840pt;}
._0{margin-left:-1.472853pt;}
._1{width:0.909013pt;}
._2{width:2.331093pt;}
._11{width:3.396480pt;}
._3e{width:4.593920pt;}
._14{width:5.603627pt;}
._15{width:6.778880pt;}
._20{width:8.162560pt;}
._10{width:9.185493pt;}
._5d{width:10.075093pt;}
._13{width:11.204693pt;}
._12{width:12.355200pt;}
._b{width:14.077440pt;}
._c{width:15.250773pt;}
._17{width:16.446507pt;}
._16{width:17.493760pt;}
._33{width:20.067840pt;}
._31{width:21.565440pt;}
._32{width:22.663893pt;}
._1f{width:26.721707pt;}
._1e{width:27.905493pt;}
._21{width:29.674880pt;}
._e{width:30.700800pt;}
._d{width:31.604267pt;}
._a{width:32.644267pt;}
._9{width:33.546240pt;}
._4{width:38.619307pt;}
._3{width:39.735040pt;}
._7{width:40.884480pt;}
._8{width:42.078933pt;}
._f{width:47.623680pt;}
._54{width:49.770453pt;}
._53{width:51.087573pt;}
._3b{width:62.376960pt;}
._4e{width:81.502720pt;}
._19{width:100.977920pt;}
._18{width:102.036693pt;}
._4b{width:125.920000pt;}
._38{width:141.455360pt;}
._1b{width:166.858667pt;}
._5f{width:194.466347pt;}
._1c{width:201.025067pt;}
._6d{width:705.511253pt;}
._73{width:843.520000pt;}
._55{width:1426.531200pt;}
._4a{width:1536.746667pt;}
._4f{width:1922.993280pt;}
._7a{width:2369.013333pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y52{bottom:4.000000pt;}
.y44{bottom:7.200000pt;}
.y46{bottom:7.680000pt;}
.y43{bottom:7.840000pt;}
.y5c{bottom:13.120000pt;}
.y5a{bottom:13.600000pt;}
.y78{bottom:14.720000pt;}
.y7a{bottom:15.680000pt;}
.y74{bottom:15.840000pt;}
.y76{bottom:16.480000pt;}
.y56{bottom:25.440000pt;}
.y54{bottom:25.600000pt;}
.y3{bottom:34.112000pt;}
.y2{bottom:55.712000pt;}
.y9c{bottom:93.952000pt;}
.y72{bottom:96.672000pt;}
.y50{bottom:99.072000pt;}
.y9b{bottom:115.392000pt;}
.y4f{bottom:120.512000pt;}
.y9a{bottom:136.826667pt;}
.y71{bottom:139.546667pt;}
.y4e{bottom:142.106667pt;}
.y70{bottom:157.626667pt;}
.y99{bottom:158.266667pt;}
.y4d{bottom:163.546667pt;}
.y98{bottom:179.706667pt;}
.y4c{bottom:183.226667pt;}
.y4b{bottom:184.986667pt;}
.y97{bottom:201.306667pt;}
.y6f{bottom:205.306667pt;}
.y4a{bottom:206.426667pt;}
.y29{bottom:211.226667pt;}
.y96{bottom:222.746667pt;}
.y49{bottom:227.866667pt;}
.y28{bottom:232.666667pt;}
.y95{bottom:244.226667pt;}
.y6e{bottom:248.226667pt;}
.y48{bottom:249.346667pt;}
.y27{bottom:254.146667pt;}
.y94{bottom:265.666667pt;}
.y6d{bottom:266.306667pt;}
.y47{bottom:267.586667pt;}
.y26{bottom:275.746667pt;}
.y93{bottom:287.106667pt;}
.y6c{bottom:292.546667pt;}
.y45{bottom:292.866667pt;}
.y25{bottom:297.186667pt;}
.y92{bottom:308.546667pt;}
.y6b{bottom:313.986667pt;}
.y24{bottom:318.626667pt;}
.y91{bottom:330.146667pt;}
.y6a{bottom:335.426667pt;}
.y23{bottom:340.066667pt;}
.y42{bottom:343.906667pt;}
.y90{bottom:351.586667pt;}
.y69{bottom:356.866667pt;}
.y22{bottom:361.506667pt;}
.y8f{bottom:373.026667pt;}
.y41{bottom:373.826667pt;}
.y68{bottom:378.306667pt;}
.y8e{bottom:394.466667pt;}
.y40{bottom:395.266667pt;}
.y21{bottom:398.946667pt;}
.y67{bottom:399.746667pt;}
.y8d{bottom:415.906667pt;}
.y3f{bottom:416.706667pt;}
.y20{bottom:420.546667pt;}
.y66{bottom:421.346667pt;}
.y8c{bottom:437.346667pt;}
.y3e{bottom:438.146667pt;}
.y75{bottom:440.706667pt;}
.y1f{bottom:441.986667pt;}
.y65{bottom:442.786667pt;}
.y8b{bottom:458.946667pt;}
.y3d{bottom:459.586667pt;}
.y1e{bottom:463.426667pt;}
.y64{bottom:464.226667pt;}
.y73{bottom:475.266667pt;}
.y8a{bottom:480.386667pt;}
.y3c{bottom:481.186667pt;}
.y1d{bottom:484.866667pt;}
.y63{bottom:485.666667pt;}
.y89{bottom:501.853333pt;}
.y3b{bottom:502.653333pt;}
.y1c{bottom:506.333333pt;}
.y88{bottom:523.293333pt;}
.y3a{bottom:524.093333pt;}
.y1b{bottom:527.773333pt;}
.y62{bottom:528.573333pt;}
.y87{bottom:544.733333pt;}
.y39{bottom:545.533333pt;}
.y1a{bottom:549.373333pt;}
.y61{bottom:550.013333pt;}
.y86{bottom:566.173333pt;}
.y38{bottom:566.973333pt;}
.y19{bottom:570.813333pt;}
.y60{bottom:571.613333pt;}
.y85{bottom:587.613333pt;}
.y37{bottom:588.413333pt;}
.y18{bottom:592.253333pt;}
.y5f{bottom:593.053333pt;}
.y84{bottom:609.213333pt;}
.y36{bottom:610.013333pt;}
.y17{bottom:613.693333pt;}
.y5e{bottom:614.493333pt;}
.y35{bottom:631.453333pt;}
.y16{bottom:635.133333pt;}
.y5d{bottom:635.933333pt;}
.y34{bottom:652.893333pt;}
.y5b{bottom:654.013333pt;}
.y15{bottom:656.573333pt;}
.y14{bottom:678.013333pt;}
.y59{bottom:685.213333pt;}
.y83{bottom:694.973333pt;}
.y33{bottom:695.773333pt;}
.y13{bottom:699.613333pt;}
.y82{bottom:716.413333pt;}
.y32{bottom:717.213333pt;}
.y57{bottom:719.293333pt;}
.y12{bottom:721.053333pt;}
.y31{bottom:738.653333pt;}
.y11{bottom:742.493333pt;}
.y30{bottom:760.293333pt;}
.y55{bottom:763.013333pt;}
.y10{bottom:763.973333pt;}
.y81{bottom:780.933333pt;}
.y2f{bottom:781.733333pt;}
.yf{bottom:785.413333pt;}
.y2e{bottom:803.173333pt;}
.y53{bottom:806.533333pt;}
.ye{bottom:806.853333pt;}
.y2d{bottom:824.613333pt;}
.yd{bottom:828.453333pt;}
.y80{bottom:845.253333pt;}
.y2c{bottom:846.053333pt;}
.yc{bottom:849.893333pt;}
.y51{bottom:850.213333pt;}
.y7f{bottom:866.693333pt;}
.y2b{bottom:867.493333pt;}
.y58{bottom:869.413333pt;}
.yb{bottom:871.333333pt;}
.y2a{bottom:884.933333pt;}
.y7e{bottom:888.293333pt;}
.ya{bottom:892.773333pt;}
.y7d{bottom:909.733333pt;}
.y9{bottom:914.213333pt;}
.y7c{bottom:931.173333pt;}
.y8{bottom:935.653333pt;}
.y7b{bottom:952.613333pt;}
.y7{bottom:957.093333pt;}
.y79{bottom:970.693333pt;}
.y6{bottom:978.693333pt;}
.y5{bottom:1000.160000pt;}
.y77{bottom:1004.480000pt;}
.y4{bottom:1021.600000pt;}
.y1{bottom:1057.920000pt;}
.hf{height:21.440000pt;}
.ha{height:24.640000pt;}
.hb{height:25.120000pt;}
.h8{height:25.280000pt;}
.h15{height:30.560000pt;}
.h14{height:31.040000pt;}
.h1a{height:33.152000pt;}
.h17{height:33.312000pt;}
.h18{height:33.920000pt;}
.h11{height:42.880000pt;}
.h10{height:43.040000pt;}
.h12{height:43.072000pt;}
.h5{height:51.991875pt;}
.h9{height:69.870937pt;}
.h4{height:73.454062pt;}
.h2{height:73.490625pt;}
.h3{height:75.465000pt;}
.h6{height:75.647813pt;}
.h16{height:77.951250pt;}
.h7{height:78.097500pt;}
.h19{height:78.830937pt;}
.h1b{height:82.670937pt;}
.hd{height:83.310937pt;}
.he{height:85.230937pt;}
.h13{height:85.870937pt;}
.hc{height:86.510937pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:91.680000pt;}
.w5{width:93.632000pt;}
.wd{width:121.632000pt;}
.w8{width:141.600000pt;}
.wb{width:150.586667pt;}
.w9{width:160.026667pt;}
.we{width:176.666667pt;}
.wa{width:187.866667pt;}
.w4{width:204.706667pt;}
.wc{width:235.226667pt;}
.w3{width:242.906667pt;}
.w7{width:256.386667pt;}
.wf{width:281.306667pt;}
.w10{width:282.466667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x25{left:2.400000pt;}
.x20{left:6.880000pt;}
.x26{left:8.320000pt;}
.x22{left:10.880000pt;}
.x23{left:13.280000pt;}
.x27{left:16.000000pt;}
.x24{left:27.040000pt;}
.x35{left:33.120000pt;}
.x33{left:40.160000pt;}
.x2b{left:47.040000pt;}
.x39{left:48.480000pt;}
.x37{left:61.960000pt;}
.xc{left:66.399988pt;}
.x15{left:68.666667pt;}
.x1{left:75.839988pt;}
.x2d{left:82.080000pt;}
.x17{left:84.186667pt;}
.x3b{left:94.720000pt;}
.x6{left:98.751988pt;}
.x11{left:99.871988pt;}
.x18{left:103.240000pt;}
.x16{left:106.440000pt;}
.x19{left:109.960000pt;}
.xb{left:114.431988pt;}
.x3{left:120.671988pt;}
.xe{left:123.871988pt;}
.x5{left:130.431988pt;}
.x1a{left:146.266667pt;}
.x10{left:147.866655pt;}
.x3d{left:164.346667pt;}
.xf{left:171.866655pt;}
.x3a{left:176.840000pt;}
.x13{left:180.186667pt;}
.x12{left:195.066655pt;}
.x2a{left:196.826667pt;}
.x2f{left:198.586655pt;}
.x8{left:200.666655pt;}
.x32{left:210.746667pt;}
.x31{left:221.786667pt;}
.x36{left:247.386667pt;}
.x7{left:248.826655pt;}
.x1b{left:259.226655pt;}
.x1c{left:260.666655pt;}
.x29{left:268.866655pt;}
.x9{left:272.386655pt;}
.x34{left:361.986667pt;}
.x1d{left:366.266655pt;}
.x38{left:369.666667pt;}
.x2{left:382.946655pt;}
.x4{left:396.866655pt;}
.xa{left:420.866655pt;}
.x14{left:423.746667pt;}
.x3c{left:429.666667pt;}
.x2c{left:453.853333pt;}
.x30{left:484.093322pt;}
.x1e{left:515.066655pt;}
.x1f{left:531.293333pt;}
.x28{left:571.133322pt;}
.x2e{left:595.453322pt;}
.x21{left:625.573333pt;}
.x3e{left:660.293322pt;}
.xd{left:673.893322pt;}
.x3f{left:679.013322pt;}
}




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