
    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_8b7ead2604438759d82dfbc5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.922852;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_5c0c625b7c23c5411900e0e4.woff')format("woff");}.ff2{font-family:ff2;line-height:0.899414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8b0b7c0fa8d0dcf51f9f108c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.082031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_689603a171b836640617e067.woff')format("woff");}.ff4{font-family:ff4;line-height:0.828000;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_fec4011d59811c92cbf7474e.woff')format("woff");}.ff5{font-family:ff5;line-height:1.024414;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_e2f26240c46f068b15d94d50.woff')format("woff");}.ff6{font-family:ff6;line-height:0.899414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_fb32d9a5cf53c00d22921bdb.woff')format("woff");}.ff7{font-family:ff7;line-height:0.899414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_66de7bd8b4e88b0e478b7907.woff')format("woff");}.ff8{font-family:ff8;line-height:1.090332;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_f1a2089920ca1c18f8804bba.woff')format("woff");}.ff9{font-family:ff9;line-height:1.017000;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_ddf3522074441ba361448ca7.woff')format("woff");}.ffa{font-family:ffa;line-height:0.892000;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_176a38fd1868387ec53e4063.woff')format("woff");}.ffb{font-family:ffb;line-height:0.683594;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:-23.976000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.976000px;}
.ls4a{letter-spacing:-5.616000px;}
.ls43{letter-spacing:-5.112000px;}
.ls28{letter-spacing:-4.608000px;}
.ls3f{letter-spacing:-3.600000px;}
.ls21{letter-spacing:-3.528000px;}
.ls37{letter-spacing:-3.456000px;}
.ls3a{letter-spacing:-3.384000px;}
.ls29{letter-spacing:-3.024000px;}
.ls35{letter-spacing:-2.880000px;}
.ls3e{letter-spacing:-2.736000px;}
.ls41{letter-spacing:-2.664000px;}
.ls13{letter-spacing:-2.520000px;}
.ls3b{letter-spacing:-2.448000px;}
.ls2a{letter-spacing:-2.376000px;}
.ls38{letter-spacing:-2.232000px;}
.ls16{letter-spacing:-2.160000px;}
.ls39{letter-spacing:-2.088000px;}
.ls1a{letter-spacing:-2.016000px;}
.ls2{letter-spacing:-1.920000px;}
.ls10{letter-spacing:-1.872000px;}
.ls34{letter-spacing:-1.800000px;}
.lse{letter-spacing:-1.728000px;}
.lsd{letter-spacing:-1.656000px;}
.ls36{letter-spacing:-1.584000px;}
.ls1d{letter-spacing:-1.512000px;}
.ls3{letter-spacing:-1.440000px;}
.ls17{letter-spacing:-1.368000px;}
.ls46{letter-spacing:-1.344000px;}
.ls19{letter-spacing:-1.296000px;}
.ls4e{letter-spacing:-1.248000px;}
.ls18{letter-spacing:-1.224000px;}
.ls42{letter-spacing:-1.152000px;}
.ls5{letter-spacing:-1.080000px;}
.ls1c{letter-spacing:-1.008000px;}
.ls12{letter-spacing:-0.936000px;}
.ls2d{letter-spacing:-0.864000px;}
.ls55{letter-spacing:-0.840000px;}
.ls6{letter-spacing:-0.792000px;}
.ls2c{letter-spacing:-0.720000px;}
.ls4d{letter-spacing:-0.672000px;}
.lsf{letter-spacing:-0.648000px;}
.ls47{letter-spacing:-0.624000px;}
.ls20{letter-spacing:-0.576000px;}
.ls4b{letter-spacing:-0.480000px;}
.ls11{letter-spacing:-0.432000px;}
.ls9{letter-spacing:-0.360000px;}
.ls50{letter-spacing:-0.336000px;}
.ls23{letter-spacing:-0.288000px;}
.ls48{letter-spacing:-0.240000px;}
.ls14{letter-spacing:-0.216000px;}
.ls54{letter-spacing:-0.180000px;}
.ls45{letter-spacing:-0.144000px;}
.ls22{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.054000px;}
.lsa{letter-spacing:0.072000px;}
.ls4f{letter-spacing:0.096000px;}
.ls26{letter-spacing:0.144000px;}
.ls49{letter-spacing:0.192000px;}
.ls1e{letter-spacing:0.252000px;}
.ls32{letter-spacing:0.288000px;}
.ls31{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.648000px;}
.ls1f{letter-spacing:0.720000px;}
.ls33{letter-spacing:0.864000px;}
.ls15{letter-spacing:1.008000px;}
.ls3c{letter-spacing:1.080000px;}
.ls52{letter-spacing:1.104000px;}
.ls51{letter-spacing:1.152000px;}
.ls8{letter-spacing:1.260000px;}
.ls2f{letter-spacing:1.368000px;}
.ls4c{letter-spacing:1.392000px;}
.ls40{letter-spacing:1.584000px;}
.ls25{letter-spacing:1.728000px;}
.ls53{letter-spacing:2.304000px;}
.ls7{letter-spacing:2.376000px;}
.ls2e{letter-spacing:3.240000px;}
.ls2b{letter-spacing:4.176000px;}
.ls44{letter-spacing:4.848000px;}
.ls1b{letter-spacing:6.000000px;}
.ls30{letter-spacing:6.300000px;}
.ls3d{letter-spacing:6.480000px;}
.ls24{letter-spacing:6.624000px;}
.ls27{letter-spacing:9.360000px;}
.ls4{letter-spacing:10.560000px;}
.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;}
}
.ws5f{word-spacing:-23.340000px;}
.ws4d{word-spacing:-23.160000px;}
.ws0{word-spacing:-18.546000px;}
.ws2{word-spacing:-18.120000px;}
.ws24{word-spacing:-18.036000px;}
.ws26{word-spacing:-17.928000px;}
.ws28{word-spacing:-17.208000px;}
.ws23{word-spacing:-17.136000px;}
.ws3d{word-spacing:-17.064000px;}
.ws25{word-spacing:-16.992000px;}
.wsf{word-spacing:-16.848000px;}
.ws3c{word-spacing:-16.776000px;}
.ws10{word-spacing:-16.704000px;}
.ws12{word-spacing:-16.488000px;}
.ws14{word-spacing:-16.416000px;}
.ws27{word-spacing:-16.344000px;}
.ws56{word-spacing:-16.272000px;}
.wse{word-spacing:-16.128000px;}
.wsd{word-spacing:-16.056000px;}
.ws4e{word-spacing:-15.984000px;}
.ws13{word-spacing:-15.768000px;}
.ws57{word-spacing:-15.696000px;}
.ws11{word-spacing:-15.624000px;}
.ws1{word-spacing:-15.228000px;}
.ws61{word-spacing:-15.120000px;}
.ws60{word-spacing:-15.048000px;}
.ws4f{word-spacing:-14.904000px;}
.ws83{word-spacing:-14.640000px;}
.ws84{word-spacing:-14.592000px;}
.ws5c{word-spacing:-14.400000px;}
.ws76{word-spacing:-13.776000px;}
.ws82{word-spacing:-13.680000px;}
.ws73{word-spacing:-13.632000px;}
.ws77{word-spacing:-12.480000px;}
.ws72{word-spacing:-12.432000px;}
.ws7f{word-spacing:-12.240000px;}
.ws81{word-spacing:-12.048000px;}
.ws55{word-spacing:-11.795256px;}
.ws80{word-spacing:-11.712000px;}
.ws74{word-spacing:-11.616000px;}
.ws38{word-spacing:-9.360000px;}
.ws75{word-spacing:-7.872000px;}
.ws2f{word-spacing:-6.624000px;}
.ws20{word-spacing:-6.000000px;}
.ws45{word-spacing:-4.176000px;}
.ws4a{word-spacing:-3.960000px;}
.ws40{word-spacing:-3.024000px;}
.ws4b{word-spacing:-2.952000px;}
.ws2a{word-spacing:-2.448000px;}
.ws8{word-spacing:-2.376000px;}
.ws88{word-spacing:-2.304000px;}
.ws30{word-spacing:-1.728000px;}
.ws66{word-spacing:-1.584000px;}
.ws7e{word-spacing:-1.392000px;}
.ws39{word-spacing:-1.320000px;}
.ws8b{word-spacing:-1.260000px;}
.ws1c{word-spacing:-1.224000px;}
.ws49{word-spacing:-1.080000px;}
.ws1b{word-spacing:-1.008000px;}
.ws6d{word-spacing:-0.936000px;}
.ws51{word-spacing:-0.864000px;}
.ws29{word-spacing:-0.720000px;}
.wsb{word-spacing:-0.648000px;}
.ws7d{word-spacing:-0.624000px;}
.ws15{word-spacing:-0.432000px;}
.ws50{word-spacing:-0.360000px;}
.ws31{word-spacing:-0.288000px;}
.ws7b{word-spacing:-0.192000px;}
.ws47{word-spacing:-0.144000px;}
.ws86{word-spacing:-0.096000px;}
.wsa{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
.ws78{word-spacing:0.144000px;}
.ws89{word-spacing:0.180000px;}
.ws17{word-spacing:0.216000px;}
.ws4c{word-spacing:0.288000px;}
.ws87{word-spacing:0.336000px;}
.ws9{word-spacing:0.360000px;}
.ws18{word-spacing:0.432000px;}
.ws7c{word-spacing:0.480000px;}
.ws32{word-spacing:0.504000px;}
.ws7a{word-spacing:0.624000px;}
.ws1a{word-spacing:0.648000px;}
.ws85{word-spacing:0.672000px;}
.ws48{word-spacing:0.720000px;}
.ws7{word-spacing:0.792000px;}
.ws8a{word-spacing:0.840000px;}
.ws2c{word-spacing:0.864000px;}
.ws3b{word-spacing:1.008000px;}
.ws6{word-spacing:1.080000px;}
.ws6f{word-spacing:1.152000px;}
.ws1e{word-spacing:1.224000px;}
.ws6e{word-spacing:1.296000px;}
.ws79{word-spacing:1.344000px;}
.ws1d{word-spacing:1.368000px;}
.ws5{word-spacing:1.440000px;}
.ws6a{word-spacing:1.512000px;}
.ws34{word-spacing:1.584000px;}
.ws16{word-spacing:1.656000px;}
.ws35{word-spacing:1.728000px;}
.ws54{word-spacing:1.800000px;}
.ws4{word-spacing:1.920000px;}
.ws5a{word-spacing:2.016000px;}
.ws33{word-spacing:2.088000px;}
.ws1f{word-spacing:2.160000px;}
.ws43{word-spacing:2.376000px;}
.ws5e{word-spacing:2.448000px;}
.ws19{word-spacing:2.520000px;}
.ws69{word-spacing:2.664000px;}
.ws46{word-spacing:2.736000px;}
.ws53{word-spacing:2.880000px;}
.ws71{word-spacing:2.952000px;}
.ws41{word-spacing:3.024000px;}
.ws58{word-spacing:3.456000px;}
.ws2b{word-spacing:3.528000px;}
.ws64{word-spacing:3.600000px;}
.ws52{word-spacing:3.960000px;}
.ws44{word-spacing:4.032000px;}
.ws5d{word-spacing:4.248000px;}
.ws3e{word-spacing:4.608000px;}
.ws6b{word-spacing:4.680000px;}
.ws63{word-spacing:4.824000px;}
.ws70{word-spacing:5.112000px;}
.ws68{word-spacing:5.256000px;}
.ws67{word-spacing:5.472000px;}
.ws6c{word-spacing:5.544000px;}
.ws42{word-spacing:5.976000px;}
.ws2e{word-spacing:6.192000px;}
.ws2d{word-spacing:6.480000px;}
.ws3a{word-spacing:6.768000px;}
.ws62{word-spacing:7.560000px;}
.ws36{word-spacing:7.632000px;}
.ws37{word-spacing:8.640000px;}
.ws65{word-spacing:9.288000px;}
.ws59{word-spacing:9.576000px;}
.ws22{word-spacing:9.864000px;}
.ws3f{word-spacing:11.952000px;}
.ws5b{word-spacing:12.168000px;}
.ws21{word-spacing:14.040000px;}
.wsc{word-spacing:667.524000px;}
._14{margin-left:-867.331800px;}
._1c{margin-left:-865.107600px;}
._1b{margin-left:-862.784400px;}
._1a{margin-left:-861.583200px;}
._0{margin-left:-860.401800px;}
._10{margin-left:-721.481400px;}
._11{margin-left:-20.150400px;}
._16{margin-left:-12.408600px;}
._15{margin-left:-9.957000px;}
._4{margin-left:-8.916000px;}
._a{margin-left:-7.317000px;}
._1{margin-left:-5.367600px;}
._9{margin-left:-4.226400px;}
._7{margin-left:-3.153600px;}
._3{margin-left:-1.857600px;}
._2{width:1.188000px;}
._8{width:2.244000px;}
._6{width:3.276000px;}
._5{width:4.896000px;}
._b{width:6.864000px;}
._f{width:7.917600px;}
._e{width:9.712800px;}
._17{width:11.056800px;}
._18{width:12.566400px;}
._12{width:13.932000px;}
._13{width:15.442800px;}
._19{width:16.554000px;}
._c{width:21.384000px;}
._d{width:22.406400px;}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:41.976000px;}
.fs7{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:55.524900px;}
.y1{bottom:72.000000px;}
.y42{bottom:117.000000px;}
.y7c{bottom:117.750000px;}
.y8a{bottom:120.000000px;}
.y20{bottom:123.000000px;}
.y7a{bottom:123.524400px;}
.y4e{bottom:124.500000px;}
.yda{bottom:129.000000px;}
.ya4{bottom:133.875000px;}
.y41{bottom:139.500000px;}
.y55{bottom:139.529250px;}
.y89{bottom:142.500000px;}
.yd9{bottom:144.000000px;}
.y1f{bottom:145.500000px;}
.y79{bottom:146.024400px;}
.y4d{bottom:147.000000px;}
.ya3{bottom:156.375000px;}
.yd8{bottom:159.000000px;}
.y40{bottom:162.000000px;}
.y54{bottom:162.029250px;}
.y88{bottom:165.000000px;}
.y1e{bottom:168.000000px;}
.y78{bottom:168.524400px;}
.y4c{bottom:169.500000px;}
.yd7{bottom:174.000000px;}
.ya2{bottom:178.875000px;}
.y3f{bottom:184.500000px;}
.y53{bottom:184.529250px;}
.y87{bottom:187.500000px;}
.yd6{bottom:189.000000px;}
.y1d{bottom:190.500000px;}
.y77{bottom:191.024400px;}
.y4b{bottom:192.000000px;}
.ya1{bottom:201.375000px;}
.yd5{bottom:204.000000px;}
.y3e{bottom:207.000000px;}
.y52{bottom:207.029250px;}
.y86{bottom:210.000000px;}
.y1c{bottom:213.000000px;}
.y76{bottom:213.524400px;}
.y4a{bottom:214.500000px;}
.yd4{bottom:219.000000px;}
.ya0{bottom:223.875000px;}
.y3d{bottom:229.500000px;}
.y85{bottom:232.500000px;}
.yd3{bottom:234.000000px;}
.y1b{bottom:235.500000px;}
.y75{bottom:236.024400px;}
.y49{bottom:237.000000px;}
.y9f{bottom:246.375000px;}
.yd2{bottom:249.000000px;}
.y3c{bottom:252.000000px;}
.y84{bottom:255.000000px;}
.y1a{bottom:258.000000px;}
.y74{bottom:258.524400px;}
.y48{bottom:259.500000px;}
.yd1{bottom:264.000000px;}
.y9e{bottom:268.875000px;}
.yf5{bottom:270.750000px;}
.y3b{bottom:274.500000px;}
.yd0{bottom:279.000000px;}
.y19{bottom:280.500000px;}
.y73{bottom:281.024400px;}
.y47{bottom:282.000000px;}
.yf4{bottom:289.500000px;}
.y9d{bottom:291.375000px;}
.ycf{bottom:294.000000px;}
.y50{bottom:297.000000px;}
.y83{bottom:300.000000px;}
.y18{bottom:303.000000px;}
.y72{bottom:303.524400px;}
.y46{bottom:304.500000px;}
.yf3{bottom:308.250000px;}
.yce{bottom:309.000000px;}
.y9c{bottom:313.875000px;}
.y4f{bottom:319.500000px;}
.ycd{bottom:324.000000px;}
.y17{bottom:325.500000px;}
.y71{bottom:326.024400px;}
.y45{bottom:327.000000px;}
.y9b{bottom:336.375000px;}
.yf2{bottom:338.250000px;}
.ycc{bottom:339.000000px;}
.y3a{bottom:342.000000px;}
.y16{bottom:348.000000px;}
.y70{bottom:348.524400px;}
.y44{bottom:349.500000px;}
.ycb{bottom:354.000000px;}
.y9a{bottom:358.875000px;}
.y39{bottom:364.500000px;}
.yca{bottom:369.000000px;}
.y15{bottom:370.500000px;}
.y6f{bottom:371.024400px;}
.yf1{bottom:379.500000px;}
.y99{bottom:381.375000px;}
.yc9{bottom:384.000000px;}
.y38{bottom:387.000000px;}
.y14{bottom:393.000000px;}
.y6e{bottom:393.524400px;}
.y43{bottom:394.500000px;}
.yc8{bottom:399.000000px;}
.y98{bottom:403.875000px;}
.y37{bottom:409.500000px;}
.yc7{bottom:414.000000px;}
.y13{bottom:415.500000px;}
.y6d{bottom:416.024400px;}
.yf0{bottom:424.500000px;}
.y97{bottom:426.375000px;}
.yc6{bottom:429.000000px;}
.y36{bottom:432.000000px;}
.y12{bottom:438.000000px;}
.y6c{bottom:438.524400px;}
.yef{bottom:439.500000px;}
.yc5{bottom:444.000000px;}
.y96{bottom:448.875000px;}
.y35{bottom:454.500000px;}
.yc4{bottom:459.000000px;}
.y11{bottom:460.500000px;}
.y6b{bottom:461.024400px;}
.yee{bottom:469.500000px;}
.y95{bottom:471.375000px;}
.yc3{bottom:474.000000px;}
.y34{bottom:477.000000px;}
.y10{bottom:483.000000px;}
.y6a{bottom:483.524400px;}
.yed{bottom:484.500000px;}
.yc2{bottom:489.000000px;}
.y94{bottom:493.875000px;}
.y33{bottom:499.500000px;}
.yc1{bottom:504.000000px;}
.yf{bottom:505.500000px;}
.y69{bottom:506.024400px;}
.yec{bottom:514.500000px;}
.yc0{bottom:519.000000px;}
.y82{bottom:520.500000px;}
.y32{bottom:522.000000px;}
.y93{bottom:522.375000px;}
.ye{bottom:528.000000px;}
.y68{bottom:528.524400px;}
.yeb{bottom:529.500000px;}
.ybf{bottom:534.000000px;}
.y81{bottom:543.000000px;}
.y31{bottom:544.500000px;}
.ybe{bottom:549.000000px;}
.yd{bottom:550.500000px;}
.y67{bottom:551.024400px;}
.yea{bottom:559.500000px;}
.y92{bottom:561.375000px;}
.ybd{bottom:564.000000px;}
.y80{bottom:565.500000px;}
.y30{bottom:567.000000px;}
.y66{bottom:573.524400px;}
.ye9{bottom:574.500000px;}
.yc{bottom:579.000000px;}
.y91{bottom:583.875000px;}
.y7f{bottom:588.000000px;}
.y2f{bottom:589.500000px;}
.ybc{bottom:594.000000px;}
.y65{bottom:596.024400px;}
.ye8{bottom:604.500000px;}
.y90{bottom:606.375000px;}
.ybb{bottom:609.000000px;}
.y7d{bottom:610.395000px;}
.y2e{bottom:612.000000px;}
.yb{bottom:618.000000px;}
.y64{bottom:618.524400px;}
.ye7{bottom:619.500000px;}
.yba{bottom:624.000000px;}
.y8f{bottom:628.875000px;}
.y7e{bottom:633.000000px;}
.y2d{bottom:634.500000px;}
.ya{bottom:637.500000px;}
.yb9{bottom:639.000000px;}
.y63{bottom:641.024400px;}
.ye6{bottom:649.500000px;}
.y8e{bottom:651.375000px;}
.yb8{bottom:654.000000px;}
.y2c{bottom:657.000000px;}
.y9{bottom:660.000000px;}
.y62{bottom:663.524400px;}
.ye5{bottom:664.500000px;}
.yb7{bottom:669.000000px;}
.y8d{bottom:673.875000px;}
.y2b{bottom:679.500000px;}
.yb6{bottom:684.000000px;}
.y61{bottom:686.024400px;}
.y8{bottom:690.000000px;}
.ye4{bottom:694.500000px;}
.y8c{bottom:696.375000px;}
.yb5{bottom:699.000000px;}
.y2a{bottom:702.000000px;}
.y7b{bottom:704.250000px;}
.y60{bottom:708.524400px;}
.ye3{bottom:709.500000px;}
.yb4{bottom:714.000000px;}
.y8b{bottom:718.875000px;}
.y29{bottom:724.500000px;}
.yb3{bottom:729.000000px;}
.y5f{bottom:731.024400px;}
.y51{bottom:731.250000px;}
.ye2{bottom:739.500000px;}
.yb2{bottom:744.000000px;}
.y28{bottom:747.000000px;}
.y5e{bottom:753.524400px;}
.ye1{bottom:754.500000px;}
.y7{bottom:757.500000px;}
.yb1{bottom:759.000000px;}
.ya5{bottom:763.875000px;}
.y27{bottom:769.500000px;}
.yb0{bottom:774.000000px;}
.y5d{bottom:776.024400px;}
.y6{bottom:781.500000px;}
.ye0{bottom:784.500000px;}
.yaf{bottom:789.000000px;}
.y26{bottom:792.000000px;}
.y5c{bottom:798.524400px;}
.ydf{bottom:799.500000px;}
.yae{bottom:804.000000px;}
.y5{bottom:814.500000px;}
.yad{bottom:819.000000px;}
.y5b{bottom:821.024400px;}
.yde{bottom:829.500000px;}
.yac{bottom:834.000000px;}
.y25{bottom:837.000000px;}
.y5a{bottom:843.524400px;}
.y4{bottom:844.500000px;}
.yab{bottom:849.000000px;}
.y24{bottom:859.500000px;}
.yaa{bottom:864.000000px;}
.y59{bottom:866.024400px;}
.y3{bottom:874.500000px;}
.ya9{bottom:879.000000px;}
.y23{bottom:882.000000px;}
.y58{bottom:888.524400px;}
.ydd{bottom:889.500000px;}
.ya8{bottom:894.000000px;}
.y22{bottom:904.500000px;}
.ya7{bottom:909.000000px;}
.y57{bottom:917.024400px;}
.ydc{bottom:919.500000px;}
.y2{bottom:927.000000px;}
.ya6{bottom:931.500000px;}
.ydb{bottom:934.500000px;}
.y56{bottom:939.524400px;}
.h10{height:33.117188px;}
.hb{height:35.991211px;}
.h2{height:37.256836px;}
.h11{height:37.593750px;}
.he{height:38.544000px;}
.hf{height:40.757812px;}
.h12{height:41.396484px;}
.h1{height:45.536133px;}
.ha{height:45.852539px;}
.hc{height:48.180000px;}
.hd{height:49.675781px;}
.h8{height:50.947266px;}
.h6{height:54.120000px;}
.h7{height:56.390625px;}
.h9{height:61.136719px;}
.h5{height:66.234375px;}
.h3{height:82.792969px;}
.h4{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x7{left:67.500000px;}
.xd{left:82.500000px;}
.x8{left:90.036000px;}
.xb{left:111.000000px;}
.x2{left:112.500000px;}
.x3{left:114.164850px;}
.x5{left:120.768750px;}
.xc{left:127.500000px;}
.xa{left:135.000000px;}
.xe{left:136.500000px;}
.x4{left:144.000000px;}
.x6{left:263.250000px;}
.x1{left:627.657600px;}
.x9{left:629.390100px;}
@media print{
.v1{vertical-align:-21.312000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.312000pt;}
.ls4a{letter-spacing:-4.992000pt;}
.ls43{letter-spacing:-4.544000pt;}
.ls28{letter-spacing:-4.096000pt;}
.ls3f{letter-spacing:-3.200000pt;}
.ls21{letter-spacing:-3.136000pt;}
.ls37{letter-spacing:-3.072000pt;}
.ls3a{letter-spacing:-3.008000pt;}
.ls29{letter-spacing:-2.688000pt;}
.ls35{letter-spacing:-2.560000pt;}
.ls3e{letter-spacing:-2.432000pt;}
.ls41{letter-spacing:-2.368000pt;}
.ls13{letter-spacing:-2.240000pt;}
.ls3b{letter-spacing:-2.176000pt;}
.ls2a{letter-spacing:-2.112000pt;}
.ls38{letter-spacing:-1.984000pt;}
.ls16{letter-spacing:-1.920000pt;}
.ls39{letter-spacing:-1.856000pt;}
.ls1a{letter-spacing:-1.792000pt;}
.ls2{letter-spacing:-1.706667pt;}
.ls10{letter-spacing:-1.664000pt;}
.ls34{letter-spacing:-1.600000pt;}
.lse{letter-spacing:-1.536000pt;}
.lsd{letter-spacing:-1.472000pt;}
.ls36{letter-spacing:-1.408000pt;}
.ls1d{letter-spacing:-1.344000pt;}
.ls3{letter-spacing:-1.280000pt;}
.ls17{letter-spacing:-1.216000pt;}
.ls46{letter-spacing:-1.194667pt;}
.ls19{letter-spacing:-1.152000pt;}
.ls4e{letter-spacing:-1.109333pt;}
.ls18{letter-spacing:-1.088000pt;}
.ls42{letter-spacing:-1.024000pt;}
.ls5{letter-spacing:-0.960000pt;}
.ls1c{letter-spacing:-0.896000pt;}
.ls12{letter-spacing:-0.832000pt;}
.ls2d{letter-spacing:-0.768000pt;}
.ls55{letter-spacing:-0.746667pt;}
.ls6{letter-spacing:-0.704000pt;}
.ls2c{letter-spacing:-0.640000pt;}
.ls4d{letter-spacing:-0.597333pt;}
.lsf{letter-spacing:-0.576000pt;}
.ls47{letter-spacing:-0.554667pt;}
.ls20{letter-spacing:-0.512000pt;}
.ls4b{letter-spacing:-0.426667pt;}
.ls11{letter-spacing:-0.384000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls50{letter-spacing:-0.298667pt;}
.ls23{letter-spacing:-0.256000pt;}
.ls48{letter-spacing:-0.213333pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls54{letter-spacing:-0.160000pt;}
.ls45{letter-spacing:-0.128000pt;}
.ls22{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.048000pt;}
.lsa{letter-spacing:0.064000pt;}
.ls4f{letter-spacing:0.085333pt;}
.ls26{letter-spacing:0.128000pt;}
.ls49{letter-spacing:0.170667pt;}
.ls1e{letter-spacing:0.224000pt;}
.ls32{letter-spacing:0.256000pt;}
.ls31{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.576000pt;}
.ls1f{letter-spacing:0.640000pt;}
.ls33{letter-spacing:0.768000pt;}
.ls15{letter-spacing:0.896000pt;}
.ls3c{letter-spacing:0.960000pt;}
.ls52{letter-spacing:0.981333pt;}
.ls51{letter-spacing:1.024000pt;}
.ls8{letter-spacing:1.120000pt;}
.ls2f{letter-spacing:1.216000pt;}
.ls4c{letter-spacing:1.237333pt;}
.ls40{letter-spacing:1.408000pt;}
.ls25{letter-spacing:1.536000pt;}
.ls53{letter-spacing:2.048000pt;}
.ls7{letter-spacing:2.112000pt;}
.ls2e{letter-spacing:2.880000pt;}
.ls2b{letter-spacing:3.712000pt;}
.ls44{letter-spacing:4.309333pt;}
.ls1b{letter-spacing:5.333333pt;}
.ls30{letter-spacing:5.600000pt;}
.ls3d{letter-spacing:5.760000pt;}
.ls24{letter-spacing:5.888000pt;}
.ls27{letter-spacing:8.320000pt;}
.ls4{letter-spacing:9.386667pt;}
.ws5f{word-spacing:-20.746667pt;}
.ws4d{word-spacing:-20.586667pt;}
.ws0{word-spacing:-16.485333pt;}
.ws2{word-spacing:-16.106667pt;}
.ws24{word-spacing:-16.032000pt;}
.ws26{word-spacing:-15.936000pt;}
.ws28{word-spacing:-15.296000pt;}
.ws23{word-spacing:-15.232000pt;}
.ws3d{word-spacing:-15.168000pt;}
.ws25{word-spacing:-15.104000pt;}
.wsf{word-spacing:-14.976000pt;}
.ws3c{word-spacing:-14.912000pt;}
.ws10{word-spacing:-14.848000pt;}
.ws12{word-spacing:-14.656000pt;}
.ws14{word-spacing:-14.592000pt;}
.ws27{word-spacing:-14.528000pt;}
.ws56{word-spacing:-14.464000pt;}
.wse{word-spacing:-14.336000pt;}
.wsd{word-spacing:-14.272000pt;}
.ws4e{word-spacing:-14.208000pt;}
.ws13{word-spacing:-14.016000pt;}
.ws57{word-spacing:-13.952000pt;}
.ws11{word-spacing:-13.888000pt;}
.ws1{word-spacing:-13.536000pt;}
.ws61{word-spacing:-13.440000pt;}
.ws60{word-spacing:-13.376000pt;}
.ws4f{word-spacing:-13.248000pt;}
.ws83{word-spacing:-13.013333pt;}
.ws84{word-spacing:-12.970667pt;}
.ws5c{word-spacing:-12.800000pt;}
.ws76{word-spacing:-12.245333pt;}
.ws82{word-spacing:-12.160000pt;}
.ws73{word-spacing:-12.117333pt;}
.ws77{word-spacing:-11.093333pt;}
.ws72{word-spacing:-11.050667pt;}
.ws7f{word-spacing:-10.880000pt;}
.ws81{word-spacing:-10.709333pt;}
.ws55{word-spacing:-10.484672pt;}
.ws80{word-spacing:-10.410667pt;}
.ws74{word-spacing:-10.325333pt;}
.ws38{word-spacing:-8.320000pt;}
.ws75{word-spacing:-6.997333pt;}
.ws2f{word-spacing:-5.888000pt;}
.ws20{word-spacing:-5.333333pt;}
.ws45{word-spacing:-3.712000pt;}
.ws4a{word-spacing:-3.520000pt;}
.ws40{word-spacing:-2.688000pt;}
.ws4b{word-spacing:-2.624000pt;}
.ws2a{word-spacing:-2.176000pt;}
.ws8{word-spacing:-2.112000pt;}
.ws88{word-spacing:-2.048000pt;}
.ws30{word-spacing:-1.536000pt;}
.ws66{word-spacing:-1.408000pt;}
.ws7e{word-spacing:-1.237333pt;}
.ws39{word-spacing:-1.173333pt;}
.ws8b{word-spacing:-1.120000pt;}
.ws1c{word-spacing:-1.088000pt;}
.ws49{word-spacing:-0.960000pt;}
.ws1b{word-spacing:-0.896000pt;}
.ws6d{word-spacing:-0.832000pt;}
.ws51{word-spacing:-0.768000pt;}
.ws29{word-spacing:-0.640000pt;}
.wsb{word-spacing:-0.576000pt;}
.ws7d{word-spacing:-0.554667pt;}
.ws15{word-spacing:-0.384000pt;}
.ws50{word-spacing:-0.320000pt;}
.ws31{word-spacing:-0.256000pt;}
.ws7b{word-spacing:-0.170667pt;}
.ws47{word-spacing:-0.128000pt;}
.ws86{word-spacing:-0.085333pt;}
.wsa{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
.ws78{word-spacing:0.128000pt;}
.ws89{word-spacing:0.160000pt;}
.ws17{word-spacing:0.192000pt;}
.ws4c{word-spacing:0.256000pt;}
.ws87{word-spacing:0.298667pt;}
.ws9{word-spacing:0.320000pt;}
.ws18{word-spacing:0.384000pt;}
.ws7c{word-spacing:0.426667pt;}
.ws32{word-spacing:0.448000pt;}
.ws7a{word-spacing:0.554667pt;}
.ws1a{word-spacing:0.576000pt;}
.ws85{word-spacing:0.597333pt;}
.ws48{word-spacing:0.640000pt;}
.ws7{word-spacing:0.704000pt;}
.ws8a{word-spacing:0.746667pt;}
.ws2c{word-spacing:0.768000pt;}
.ws3b{word-spacing:0.896000pt;}
.ws6{word-spacing:0.960000pt;}
.ws6f{word-spacing:1.024000pt;}
.ws1e{word-spacing:1.088000pt;}
.ws6e{word-spacing:1.152000pt;}
.ws79{word-spacing:1.194667pt;}
.ws1d{word-spacing:1.216000pt;}
.ws5{word-spacing:1.280000pt;}
.ws6a{word-spacing:1.344000pt;}
.ws34{word-spacing:1.408000pt;}
.ws16{word-spacing:1.472000pt;}
.ws35{word-spacing:1.536000pt;}
.ws54{word-spacing:1.600000pt;}
.ws4{word-spacing:1.706667pt;}
.ws5a{word-spacing:1.792000pt;}
.ws33{word-spacing:1.856000pt;}
.ws1f{word-spacing:1.920000pt;}
.ws43{word-spacing:2.112000pt;}
.ws5e{word-spacing:2.176000pt;}
.ws19{word-spacing:2.240000pt;}
.ws69{word-spacing:2.368000pt;}
.ws46{word-spacing:2.432000pt;}
.ws53{word-spacing:2.560000pt;}
.ws71{word-spacing:2.624000pt;}
.ws41{word-spacing:2.688000pt;}
.ws58{word-spacing:3.072000pt;}
.ws2b{word-spacing:3.136000pt;}
.ws64{word-spacing:3.200000pt;}
.ws52{word-spacing:3.520000pt;}
.ws44{word-spacing:3.584000pt;}
.ws5d{word-spacing:3.776000pt;}
.ws3e{word-spacing:4.096000pt;}
.ws6b{word-spacing:4.160000pt;}
.ws63{word-spacing:4.288000pt;}
.ws70{word-spacing:4.544000pt;}
.ws68{word-spacing:4.672000pt;}
.ws67{word-spacing:4.864000pt;}
.ws6c{word-spacing:4.928000pt;}
.ws42{word-spacing:5.312000pt;}
.ws2e{word-spacing:5.504000pt;}
.ws2d{word-spacing:5.760000pt;}
.ws3a{word-spacing:6.016000pt;}
.ws62{word-spacing:6.720000pt;}
.ws36{word-spacing:6.784000pt;}
.ws37{word-spacing:7.680000pt;}
.ws65{word-spacing:8.256000pt;}
.ws59{word-spacing:8.512000pt;}
.ws22{word-spacing:8.768000pt;}
.ws3f{word-spacing:10.624000pt;}
.ws5b{word-spacing:10.816000pt;}
.ws21{word-spacing:12.480000pt;}
.wsc{word-spacing:593.354667pt;}
._14{margin-left:-770.961600pt;}
._1c{margin-left:-768.984533pt;}
._1b{margin-left:-766.919467pt;}
._1a{margin-left:-765.851733pt;}
._0{margin-left:-764.801600pt;}
._10{margin-left:-641.316800pt;}
._11{margin-left:-17.911467pt;}
._16{margin-left:-11.029867pt;}
._15{margin-left:-8.850667pt;}
._4{margin-left:-7.925333pt;}
._a{margin-left:-6.504000pt;}
._1{margin-left:-4.771200pt;}
._9{margin-left:-3.756800pt;}
._7{margin-left:-2.803200pt;}
._3{margin-left:-1.651200pt;}
._2{width:1.056000pt;}
._8{width:1.994667pt;}
._6{width:2.912000pt;}
._5{width:4.352000pt;}
._b{width:6.101333pt;}
._f{width:7.037867pt;}
._e{width:8.633600pt;}
._17{width:9.828267pt;}
._18{width:11.170133pt;}
._12{width:12.384000pt;}
._13{width:13.726933pt;}
._19{width:14.714667pt;}
._c{width:19.008000pt;}
._d{width:19.916800pt;}
.fs6{font-size:37.312000pt;}
.fs7{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:49.355467pt;}
.y1{bottom:64.000000pt;}
.y42{bottom:104.000000pt;}
.y7c{bottom:104.666667pt;}
.y8a{bottom:106.666667pt;}
.y20{bottom:109.333333pt;}
.y7a{bottom:109.799467pt;}
.y4e{bottom:110.666667pt;}
.yda{bottom:114.666667pt;}
.ya4{bottom:119.000000pt;}
.y41{bottom:124.000000pt;}
.y55{bottom:124.026000pt;}
.y89{bottom:126.666667pt;}
.yd9{bottom:128.000000pt;}
.y1f{bottom:129.333333pt;}
.y79{bottom:129.799467pt;}
.y4d{bottom:130.666667pt;}
.ya3{bottom:139.000000pt;}
.yd8{bottom:141.333333pt;}
.y40{bottom:144.000000pt;}
.y54{bottom:144.026000pt;}
.y88{bottom:146.666667pt;}
.y1e{bottom:149.333333pt;}
.y78{bottom:149.799467pt;}
.y4c{bottom:150.666667pt;}
.yd7{bottom:154.666667pt;}
.ya2{bottom:159.000000pt;}
.y3f{bottom:164.000000pt;}
.y53{bottom:164.026000pt;}
.y87{bottom:166.666667pt;}
.yd6{bottom:168.000000pt;}
.y1d{bottom:169.333333pt;}
.y77{bottom:169.799467pt;}
.y4b{bottom:170.666667pt;}
.ya1{bottom:179.000000pt;}
.yd5{bottom:181.333333pt;}
.y3e{bottom:184.000000pt;}
.y52{bottom:184.026000pt;}
.y86{bottom:186.666667pt;}
.y1c{bottom:189.333333pt;}
.y76{bottom:189.799467pt;}
.y4a{bottom:190.666667pt;}
.yd4{bottom:194.666667pt;}
.ya0{bottom:199.000000pt;}
.y3d{bottom:204.000000pt;}
.y85{bottom:206.666667pt;}
.yd3{bottom:208.000000pt;}
.y1b{bottom:209.333333pt;}
.y75{bottom:209.799467pt;}
.y49{bottom:210.666667pt;}
.y9f{bottom:219.000000pt;}
.yd2{bottom:221.333333pt;}
.y3c{bottom:224.000000pt;}
.y84{bottom:226.666667pt;}
.y1a{bottom:229.333333pt;}
.y74{bottom:229.799467pt;}
.y48{bottom:230.666667pt;}
.yd1{bottom:234.666667pt;}
.y9e{bottom:239.000000pt;}
.yf5{bottom:240.666667pt;}
.y3b{bottom:244.000000pt;}
.yd0{bottom:248.000000pt;}
.y19{bottom:249.333333pt;}
.y73{bottom:249.799467pt;}
.y47{bottom:250.666667pt;}
.yf4{bottom:257.333333pt;}
.y9d{bottom:259.000000pt;}
.ycf{bottom:261.333333pt;}
.y50{bottom:264.000000pt;}
.y83{bottom:266.666667pt;}
.y18{bottom:269.333333pt;}
.y72{bottom:269.799467pt;}
.y46{bottom:270.666667pt;}
.yf3{bottom:274.000000pt;}
.yce{bottom:274.666667pt;}
.y9c{bottom:279.000000pt;}
.y4f{bottom:284.000000pt;}
.ycd{bottom:288.000000pt;}
.y17{bottom:289.333333pt;}
.y71{bottom:289.799467pt;}
.y45{bottom:290.666667pt;}
.y9b{bottom:299.000000pt;}
.yf2{bottom:300.666667pt;}
.ycc{bottom:301.333333pt;}
.y3a{bottom:304.000000pt;}
.y16{bottom:309.333333pt;}
.y70{bottom:309.799467pt;}
.y44{bottom:310.666667pt;}
.ycb{bottom:314.666667pt;}
.y9a{bottom:319.000000pt;}
.y39{bottom:324.000000pt;}
.yca{bottom:328.000000pt;}
.y15{bottom:329.333333pt;}
.y6f{bottom:329.799467pt;}
.yf1{bottom:337.333333pt;}
.y99{bottom:339.000000pt;}
.yc9{bottom:341.333333pt;}
.y38{bottom:344.000000pt;}
.y14{bottom:349.333333pt;}
.y6e{bottom:349.799467pt;}
.y43{bottom:350.666667pt;}
.yc8{bottom:354.666667pt;}
.y98{bottom:359.000000pt;}
.y37{bottom:364.000000pt;}
.yc7{bottom:368.000000pt;}
.y13{bottom:369.333333pt;}
.y6d{bottom:369.799467pt;}
.yf0{bottom:377.333333pt;}
.y97{bottom:379.000000pt;}
.yc6{bottom:381.333333pt;}
.y36{bottom:384.000000pt;}
.y12{bottom:389.333333pt;}
.y6c{bottom:389.799467pt;}
.yef{bottom:390.666667pt;}
.yc5{bottom:394.666667pt;}
.y96{bottom:399.000000pt;}
.y35{bottom:404.000000pt;}
.yc4{bottom:408.000000pt;}
.y11{bottom:409.333333pt;}
.y6b{bottom:409.799467pt;}
.yee{bottom:417.333333pt;}
.y95{bottom:419.000000pt;}
.yc3{bottom:421.333333pt;}
.y34{bottom:424.000000pt;}
.y10{bottom:429.333333pt;}
.y6a{bottom:429.799467pt;}
.yed{bottom:430.666667pt;}
.yc2{bottom:434.666667pt;}
.y94{bottom:439.000000pt;}
.y33{bottom:444.000000pt;}
.yc1{bottom:448.000000pt;}
.yf{bottom:449.333333pt;}
.y69{bottom:449.799467pt;}
.yec{bottom:457.333333pt;}
.yc0{bottom:461.333333pt;}
.y82{bottom:462.666667pt;}
.y32{bottom:464.000000pt;}
.y93{bottom:464.333333pt;}
.ye{bottom:469.333333pt;}
.y68{bottom:469.799467pt;}
.yeb{bottom:470.666667pt;}
.ybf{bottom:474.666667pt;}
.y81{bottom:482.666667pt;}
.y31{bottom:484.000000pt;}
.ybe{bottom:488.000000pt;}
.yd{bottom:489.333333pt;}
.y67{bottom:489.799467pt;}
.yea{bottom:497.333333pt;}
.y92{bottom:499.000000pt;}
.ybd{bottom:501.333333pt;}
.y80{bottom:502.666667pt;}
.y30{bottom:504.000000pt;}
.y66{bottom:509.799467pt;}
.ye9{bottom:510.666667pt;}
.yc{bottom:514.666667pt;}
.y91{bottom:519.000000pt;}
.y7f{bottom:522.666667pt;}
.y2f{bottom:524.000000pt;}
.ybc{bottom:528.000000pt;}
.y65{bottom:529.799467pt;}
.ye8{bottom:537.333333pt;}
.y90{bottom:539.000000pt;}
.ybb{bottom:541.333333pt;}
.y7d{bottom:542.573333pt;}
.y2e{bottom:544.000000pt;}
.yb{bottom:549.333333pt;}
.y64{bottom:549.799467pt;}
.ye7{bottom:550.666667pt;}
.yba{bottom:554.666667pt;}
.y8f{bottom:559.000000pt;}
.y7e{bottom:562.666667pt;}
.y2d{bottom:564.000000pt;}
.ya{bottom:566.666667pt;}
.yb9{bottom:568.000000pt;}
.y63{bottom:569.799467pt;}
.ye6{bottom:577.333333pt;}
.y8e{bottom:579.000000pt;}
.yb8{bottom:581.333333pt;}
.y2c{bottom:584.000000pt;}
.y9{bottom:586.666667pt;}
.y62{bottom:589.799467pt;}
.ye5{bottom:590.666667pt;}
.yb7{bottom:594.666667pt;}
.y8d{bottom:599.000000pt;}
.y2b{bottom:604.000000pt;}
.yb6{bottom:608.000000pt;}
.y61{bottom:609.799467pt;}
.y8{bottom:613.333333pt;}
.ye4{bottom:617.333333pt;}
.y8c{bottom:619.000000pt;}
.yb5{bottom:621.333333pt;}
.y2a{bottom:624.000000pt;}
.y7b{bottom:626.000000pt;}
.y60{bottom:629.799467pt;}
.ye3{bottom:630.666667pt;}
.yb4{bottom:634.666667pt;}
.y8b{bottom:639.000000pt;}
.y29{bottom:644.000000pt;}
.yb3{bottom:648.000000pt;}
.y5f{bottom:649.799467pt;}
.y51{bottom:650.000000pt;}
.ye2{bottom:657.333333pt;}
.yb2{bottom:661.333333pt;}
.y28{bottom:664.000000pt;}
.y5e{bottom:669.799467pt;}
.ye1{bottom:670.666667pt;}
.y7{bottom:673.333333pt;}
.yb1{bottom:674.666667pt;}
.ya5{bottom:679.000000pt;}
.y27{bottom:684.000000pt;}
.yb0{bottom:688.000000pt;}
.y5d{bottom:689.799467pt;}
.y6{bottom:694.666667pt;}
.ye0{bottom:697.333333pt;}
.yaf{bottom:701.333333pt;}
.y26{bottom:704.000000pt;}
.y5c{bottom:709.799467pt;}
.ydf{bottom:710.666667pt;}
.yae{bottom:714.666667pt;}
.y5{bottom:724.000000pt;}
.yad{bottom:728.000000pt;}
.y5b{bottom:729.799467pt;}
.yde{bottom:737.333333pt;}
.yac{bottom:741.333333pt;}
.y25{bottom:744.000000pt;}
.y5a{bottom:749.799467pt;}
.y4{bottom:750.666667pt;}
.yab{bottom:754.666667pt;}
.y24{bottom:764.000000pt;}
.yaa{bottom:768.000000pt;}
.y59{bottom:769.799467pt;}
.y3{bottom:777.333333pt;}
.ya9{bottom:781.333333pt;}
.y23{bottom:784.000000pt;}
.y58{bottom:789.799467pt;}
.ydd{bottom:790.666667pt;}
.ya8{bottom:794.666667pt;}
.y22{bottom:804.000000pt;}
.ya7{bottom:808.000000pt;}
.y57{bottom:815.132800pt;}
.ydc{bottom:817.333333pt;}
.y2{bottom:824.000000pt;}
.ya6{bottom:828.000000pt;}
.ydb{bottom:830.666667pt;}
.y56{bottom:835.132800pt;}
.h10{height:29.437500pt;}
.hb{height:31.992188pt;}
.h2{height:33.117188pt;}
.h11{height:33.416667pt;}
.he{height:34.261333pt;}
.hf{height:36.229167pt;}
.h12{height:36.796875pt;}
.h1{height:40.476562pt;}
.ha{height:40.757812pt;}
.hc{height:42.826667pt;}
.hd{height:44.156250pt;}
.h8{height:45.286458pt;}
.h6{height:48.106667pt;}
.h7{height:50.125000pt;}
.h9{height:54.343750pt;}
.h5{height:58.875000pt;}
.h3{height:73.593750pt;}
.h4{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x7{left:60.000000pt;}
.xd{left:73.333333pt;}
.x8{left:80.032000pt;}
.xb{left:98.666667pt;}
.x2{left:100.000000pt;}
.x3{left:101.479867pt;}
.x5{left:107.350000pt;}
.xc{left:113.333333pt;}
.xa{left:120.000000pt;}
.xe{left:121.333333pt;}
.x4{left:128.000000pt;}
.x6{left:234.000000pt;}
.x1{left:557.917867pt;}
.x9{left:559.457867pt;}
}




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