
    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_c2e2307e0ccd6561ea5c037e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.049805;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_40cbab6889035984a5792e86.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.937988;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_d1aabd604972c57f15b73a29.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767000;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_f4b8b1e45056eaecacbd1512.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_90acb6caa31c495494ea9ffb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_95a80c47463c97d100e5fbe2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.973000;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_95a80c47463c97d100e5fbe2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.973000;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_cacb43b113fec79787ebfb52.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_4ba27742440304c39de83760.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.093262;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_f1faeffc018876ea07f97f87.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_95a80c47463c97d100e5fbe2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.973000;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_cdf87ad35bb4e5d18fbbe585.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.900391;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);}
.v3{vertical-align:-8.503800px;}
.v4{vertical-align:-6.302400px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:8.320200px;}
.v5{vertical-align:19.842600px;}
.v1{vertical-align:23.975400px;}
.ls1{letter-spacing:-3.960000px;}
.ls7{letter-spacing:-2.664000px;}
.ls6{letter-spacing:-1.553112px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.720000px;}
.ls2{letter-spacing:3.294000px;}
.ls3{letter-spacing:24.970200px;}
.ls5{letter-spacing:126.000000px;}
.ls4{letter-spacing:128.671800px;}
.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;}
}
.wsb8{word-spacing:-18.720000px;}
.wsf{word-spacing:-18.000000px;}
.ws7a{word-spacing:-15.336000px;}
.ws21{word-spacing:-13.500000px;}
.ws33{word-spacing:-10.494000px;}
.ws98{word-spacing:-9.072000px;}
.ws79{word-spacing:-8.940888px;}
.wsa{word-spacing:-8.136000px;}
.ws9{word-spacing:-7.920000px;}
.ws99{word-spacing:-7.416000px;}
.ws2d{word-spacing:-7.344000px;}
.ws2c{word-spacing:-6.912000px;}
.wse{word-spacing:-6.048000px;}
.ws8e{word-spacing:-5.832000px;}
.ws8{word-spacing:-5.616000px;}
.ws6{word-spacing:-5.328000px;}
.ws51{word-spacing:-4.752000px;}
.ws4{word-spacing:-4.536000px;}
.wsbb{word-spacing:-4.104000px;}
.wsd{word-spacing:-4.032000px;}
.wsbe{word-spacing:-3.960000px;}
.wsb{word-spacing:-3.744000px;}
.wsc{word-spacing:-3.672000px;}
.ws54{word-spacing:-3.600000px;}
.ws7b{word-spacing:-3.528000px;}
.ws8d{word-spacing:-3.456000px;}
.ws1{word-spacing:-3.384000px;}
.ws5{word-spacing:-3.312000px;}
.ws3e{word-spacing:-3.240000px;}
.ws3{word-spacing:-3.024000px;}
.ws4a{word-spacing:-2.664000px;}
.ws2{word-spacing:-2.592000px;}
.ws77{word-spacing:-2.520000px;}
.ws96{word-spacing:-2.448000px;}
.wsb3{word-spacing:-2.376000px;}
.ws93{word-spacing:-2.304000px;}
.ws11{word-spacing:-2.232000px;}
.ws57{word-spacing:-2.160000px;}
.wsb4{word-spacing:-2.088000px;}
.ws69{word-spacing:-2.016000px;}
.ws68{word-spacing:-1.944000px;}
.ws1b{word-spacing:-1.872000px;}
.ws1a{word-spacing:-1.656000px;}
.ws41{word-spacing:-1.584000px;}
.ws67{word-spacing:-1.512000px;}
.ws2a{word-spacing:-1.368000px;}
.ws6a{word-spacing:-1.296000px;}
.ws4b{word-spacing:-1.224000px;}
.ws3d{word-spacing:-1.152000px;}
.ws34{word-spacing:-1.080000px;}
.ws44{word-spacing:-0.936000px;}
.ws17{word-spacing:-0.792000px;}
.ws23{word-spacing:-0.720000px;}
.ws50{word-spacing:-0.576000px;}
.ws5e{word-spacing:-0.504000px;}
.wsb7{word-spacing:-0.432000px;}
.wsbc{word-spacing:-0.360000px;}
.wsa9{word-spacing:-0.288000px;}
.ws35{word-spacing:-0.216000px;}
.ws89{word-spacing:-0.144000px;}
.ws92{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.wsaa{word-spacing:0.072000px;}
.ws4c{word-spacing:0.144000px;}
.ws18{word-spacing:0.216000px;}
.wsac{word-spacing:0.288000px;}
.ws36{word-spacing:0.360000px;}
.ws97{word-spacing:0.504000px;}
.ws75{word-spacing:0.576000px;}
.ws74{word-spacing:0.648000px;}
.wsb2{word-spacing:0.720000px;}
.ws3f{word-spacing:0.792000px;}
.ws56{word-spacing:0.864000px;}
.ws61{word-spacing:0.936000px;}
.ws4d{word-spacing:1.008000px;}
.ws22{word-spacing:1.080000px;}
.ws87{word-spacing:1.152000px;}
.ws5a{word-spacing:1.224000px;}
.ws60{word-spacing:1.296000px;}
.ws55{word-spacing:1.368000px;}
.ws72{word-spacing:1.440000px;}
.ws40{word-spacing:1.512000px;}
.ws70{word-spacing:1.584000px;}
.ws1d{word-spacing:1.656000px;}
.ws12{word-spacing:1.728000px;}
.ws8b{word-spacing:1.800000px;}
.ws14{word-spacing:1.872000px;}
.ws13{word-spacing:2.016000px;}
.ws2e{word-spacing:2.088000px;}
.ws6f{word-spacing:2.160000px;}
.wsa1{word-spacing:2.304000px;}
.ws6d{word-spacing:2.448000px;}
.ws6b{word-spacing:2.520000px;}
.ws30{word-spacing:2.592000px;}
.ws8c{word-spacing:2.664000px;}
.ws73{word-spacing:2.736000px;}
.ws49{word-spacing:2.808000px;}
.ws1c{word-spacing:2.880000px;}
.ws66{word-spacing:2.952000px;}
.ws20{word-spacing:3.024000px;}
.ws88{word-spacing:3.096000px;}
.ws2b{word-spacing:3.168000px;}
.ws4e{word-spacing:3.240000px;}
.ws10{word-spacing:3.312000px;}
.ws59{word-spacing:3.384000px;}
.ws27{word-spacing:3.456000px;}
.ws16{word-spacing:3.528000px;}
.ws8a{word-spacing:3.600000px;}
.ws3c{word-spacing:3.744000px;}
.ws53{word-spacing:3.816000px;}
.ws5f{word-spacing:3.888000px;}
.ws7{word-spacing:3.960000px;}
.wsae{word-spacing:4.032000px;}
.ws65{word-spacing:4.104000px;}
.ws24{word-spacing:4.176000px;}
.ws2f{word-spacing:4.248000px;}
.ws1e{word-spacing:4.320000px;}
.ws4f{word-spacing:4.392000px;}
.ws5b{word-spacing:4.608000px;}
.wsab{word-spacing:4.680000px;}
.wsa6{word-spacing:4.752000px;}
.ws1f{word-spacing:4.896000px;}
.ws6e{word-spacing:4.968000px;}
.ws45{word-spacing:5.040000px;}
.ws6c{word-spacing:5.112000px;}
.ws28{word-spacing:5.184000px;}
.wsa7{word-spacing:5.256000px;}
.ws64{word-spacing:5.400000px;}
.ws5c{word-spacing:5.544000px;}
.ws26{word-spacing:5.616000px;}
.wsb6{word-spacing:5.760000px;}
.ws76{word-spacing:5.832000px;}
.ws52{word-spacing:5.904000px;}
.ws15{word-spacing:5.976000px;}
.ws38{word-spacing:6.120000px;}
.wsb5{word-spacing:6.192000px;}
.ws19{word-spacing:6.264000px;}
.wsa4{word-spacing:6.480000px;}
.ws91{word-spacing:6.552000px;}
.ws78{word-spacing:6.768000px;}
.wsaf{word-spacing:6.912000px;}
.ws58{word-spacing:6.984000px;}
.ws3a{word-spacing:7.272000px;}
.wsad{word-spacing:7.416000px;}
.wsa3{word-spacing:7.560000px;}
.ws71{word-spacing:7.632000px;}
.ws31{word-spacing:7.776000px;}
.ws5d{word-spacing:7.848000px;}
.wsb9{word-spacing:7.992000px;}
.ws94{word-spacing:8.352000px;}
.wsb1{word-spacing:8.568000px;}
.ws25{word-spacing:8.784000px;}
.ws29{word-spacing:8.928000px;}
.ws3b{word-spacing:9.000000px;}
.ws63{word-spacing:9.072000px;}
.wsa8{word-spacing:9.144000px;}
.ws80{word-spacing:9.288000px;}
.ws81{word-spacing:9.360000px;}
.ws9d{word-spacing:9.432000px;}
.ws82{word-spacing:9.648000px;}
.ws9a{word-spacing:9.720000px;}
.ws9c{word-spacing:9.936000px;}
.wsa0{word-spacing:10.008000px;}
.wsb0{word-spacing:10.296000px;}
.ws37{word-spacing:10.440000px;}
.ws9e{word-spacing:10.512000px;}
.ws32{word-spacing:10.656000px;}
.ws9f{word-spacing:10.728000px;}
.wsba{word-spacing:10.800000px;}
.ws95{word-spacing:11.376000px;}
.ws7e{word-spacing:11.520000px;}
.ws7d{word-spacing:11.952000px;}
.wsbd{word-spacing:12.384000px;}
.wsa5{word-spacing:13.320000px;}
.ws8f{word-spacing:13.536000px;}
.ws7f{word-spacing:13.680000px;}
.ws46{word-spacing:15.480000px;}
.ws90{word-spacing:16.920000px;}
.ws9b{word-spacing:17.424000px;}
.ws39{word-spacing:17.640000px;}
.ws42{word-spacing:19.080000px;}
.ws7c{word-spacing:24.984000px;}
.ws47{word-spacing:25.992000px;}
.wsa2{word-spacing:28.800000px;}
.ws85{word-spacing:33.264000px;}
.ws48{word-spacing:33.984000px;}
.ws43{word-spacing:34.560000px;}
.ws83{word-spacing:34.848000px;}
.ws62{word-spacing:35.424000px;}
.ws86{word-spacing:43.488000px;}
.ws84{word-spacing:44.352000px;}
._7{margin-left:-2313.943200px;}
._27{margin-left:-1586.795400px;}
._28{margin-left:-11.325600px;}
._4{margin-left:-9.280800px;}
._6{margin-left:-8.006400px;}
._3{margin-left:-6.782400px;}
._23{margin-left:-5.522400px;}
._1{margin-left:-4.342800px;}
._2{margin-left:-3.200400px;}
._0{margin-left:-2.032800px;}
._5{margin-left:-1.008000px;}
._8{width:1.300200px;}
._9{width:2.436600px;}
._10{width:3.729600px;}
._13{width:5.047200px;}
._a{width:6.220800px;}
._14{width:7.452000px;}
._e{width:9.194400px;}
._1c{width:11.188800px;}
._1b{width:13.730400px;}
._29{width:15.184800px;}
._f{width:19.908000px;}
._15{width:21.117600px;}
._16{width:27.446400px;}
._11{width:29.944800px;}
._12{width:30.978000px;}
._17{width:37.764000px;}
._18{width:126.000000px;}
._1a{width:130.536000px;}
._c{width:162.000000px;}
._d{width:166.482000px;}
._22{width:289.896600px;}
._21{width:391.046400px;}
._20{width:414.029400px;}
._1f{width:739.491600px;}
._1e{width:818.236200px;}
._25{width:843.585600px;}
._24{width:932.708400px;}
._1d{width:939.372600px;}
._26{width:1188.933000px;}
._19{width:1361.227800px;}
._b{width:1512.981000px;}
.fc3{color:rgb(16,15,13);}
.fc2{color:rgb(123,121,121);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:41.976000px;}
.fs8{font-size:54.000000px;}
.fs9{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs5{font-size:96.000000px;}
.fsb{font-size:108.000000px;}
.fs2{font-size:180.000000px;}
.fsa{font-size:228.000000px;}
.fs3{font-size:288.000000px;}
.fs0{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:29.229450px;}
.y23{bottom:43.417800px;}
.y4{bottom:54.429450px;}
.y3{bottom:79.629450px;}
.y117{bottom:90.433800px;}
.yd4{bottom:93.543300px;}
.yf9{bottom:94.960650px;}
.y106{bottom:95.669400px;}
.y2{bottom:104.829450px;}
.y8c{bottom:106.299150px;}
.y5f{bottom:106.299300px;}
.yf8{bottom:111.160650px;}
.y105{bottom:111.869400px;}
.yd3{bottom:115.143300px;}
.y1a4{bottom:115.503750px;}
.y122{bottom:117.269400px;}
.y8b{bottom:122.499150px;}
.y5e{bottom:122.499300px;}
.y11a{bottom:127.299150px;}
.yf7{bottom:132.760650px;}
.y121{bottom:133.469400px;}
.y40{bottom:136.054950px;}
.yad{bottom:136.055100px;}
.yd2{bottom:136.743300px;}
.y1a3{bottom:137.103750px;}
.yb6{bottom:138.699150px;}
.y115{bottom:138.699300px;}
.y8a{bottom:144.099150px;}
.y5d{bottom:144.099300px;}
.y13b{bottom:146.845050px;}
.y119{bottom:148.899150px;}
.yf6{bottom:148.960650px;}
.y120{bottom:155.069400px;}
.yd1{bottom:158.343300px;}
.y1a2{bottom:158.703750px;}
.y89{bottom:160.299150px;}
.y118{bottom:165.099150px;}
.yf5{bottom:165.160650px;}
.y5c{bottom:165.699300px;}
.ycd{bottom:167.537250px;}
.yb5{bottom:167.554800px;}
.y3f{bottom:167.554950px;}
.yac{bottom:167.555100px;}
.y13a{bottom:167.845050px;}
.y11f{bottom:176.669400px;}
.yd0{bottom:179.943300px;}
.y1a1{bottom:180.303750px;}
.y88{bottom:181.899150px;}
.y5b{bottom:181.899300px;}
.y195{bottom:182.472300px;}
.y116{bottom:186.103050px;}
.y7a{bottom:187.355100px;}
.y139{bottom:188.845050px;}
.y11e{bottom:192.869400px;}
.y87{bottom:198.099150px;}
.y5a{bottom:198.099300px;}
.ycc{bottom:199.037250px;}
.yf4{bottom:199.037400px;}
.yb4{bottom:199.054800px;}
.y3e{bottom:199.054950px;}
.yab{bottom:199.055100px;}
.ycf{bottom:201.543300px;}
.y194{bottom:204.072300px;}
.y138{bottom:209.845050px;}
.y79{bottom:218.855100px;}
.y1a0{bottom:223.503750px;}
.y193{bottom:225.672300px;}
.y107{bottom:226.496700px;}
.ycb{bottom:230.537250px;}
.yf3{bottom:230.537400px;}
.yb3{bottom:230.554800px;}
.y3d{bottom:230.554950px;}
.yaa{bottom:230.555100px;}
.y137{bottom:230.845050px;}
.y192{bottom:247.272300px;}
.y78{bottom:250.355100px;}
.y136{bottom:251.845050px;}
.yf2{bottom:262.037400px;}
.y59{bottom:262.037550px;}
.yb2{bottom:262.054800px;}
.ya4{bottom:262.054950px;}
.ya9{bottom:262.055100px;}
.y135{bottom:272.845050px;}
.yce{bottom:274.481550px;}
.y191{bottom:290.472300px;}
.yf1{bottom:293.537400px;}
.y58{bottom:293.537550px;}
.y112{bottom:293.554800px;}
.y3c{bottom:293.554950px;}
.ya8{bottom:293.555100px;}
.y134{bottom:293.845050px;}
.y77{bottom:313.355100px;}
.y14f{bottom:314.554950px;}
.y133{bottom:314.845050px;}
.yf0{bottom:325.037400px;}
.y57{bottom:325.037550px;}
.y86{bottom:325.054800px;}
.y3b{bottom:325.054950px;}
.ya7{bottom:325.055100px;}
.y76{bottom:344.855100px;}
.yef{bottom:356.537400px;}
.y56{bottom:356.537550px;}
.y85{bottom:356.554800px;}
.y3a{bottom:356.554950px;}
.y104{bottom:356.555100px;}
.y132{bottom:356.845050px;}
.y75{bottom:376.355100px;}
.y131{bottom:377.845050px;}
.yee{bottom:388.037400px;}
.y55{bottom:388.037550px;}
.y84{bottom:388.054800px;}
.y39{bottom:388.054950px;}
.y103{bottom:388.055100px;}
.y21{bottom:396.140250px;}
.y130{bottom:398.845050px;}
.y100{bottom:405.629850px;}
.y74{bottom:407.855100px;}
.y14e{bottom:409.054950px;}
.yed{bottom:419.537400px;}
.y54{bottom:419.537550px;}
.yb1{bottom:419.554800px;}
.y38{bottom:419.554950px;}
.y102{bottom:419.555100px;}
.y20{bottom:421.340250px;}
.y14d{bottom:430.054950px;}
.y73{bottom:439.355100px;}
.y12f{bottom:440.845050px;}
.y1f{bottom:442.940250px;}
.yfe{bottom:451.037400px;}
.y53{bottom:451.037550px;}
.y83{bottom:451.054800px;}
.y37{bottom:451.054950px;}
.y1e{bottom:464.540250px;}
.y72{bottom:470.855100px;}
.y14c{bottom:472.054950px;}
.y190{bottom:473.732100px;}
.yca{bottom:482.537250px;}
.yec{bottom:482.537400px;}
.y11d{bottom:482.537550px;}
.y82{bottom:482.554800px;}
.y36{bottom:482.554950px;}
.yda{bottom:482.555100px;}
.ya0{bottom:482.845050px;}
.y1d{bottom:486.140250px;}
.y14b{bottom:493.054950px;}
.y12e{bottom:493.345050px;}
.y18f{bottom:495.332100px;}
.y71{bottom:502.355100px;}
.yc9{bottom:514.037250px;}
.yeb{bottom:514.037400px;}
.y52{bottom:514.037550px;}
.y81{bottom:514.054800px;}
.y35{bottom:514.054950px;}
.yd9{bottom:514.055100px;}
.y9f{bottom:514.345050px;}
.y18e{bottom:516.932100px;}
.y1c{bottom:529.340250px;}
.y14a{bottom:535.054950px;}
.y18d{bottom:538.532250px;}
.yc8{bottom:545.537250px;}
.yea{bottom:545.537400px;}
.y11c{bottom:545.537550px;}
.y80{bottom:545.554800px;}
.y34{bottom:545.554950px;}
.yd8{bottom:545.555100px;}
.y9e{bottom:545.845050px;}
.y1b{bottom:550.940250px;}
.y149{bottom:556.054950px;}
.y12d{bottom:556.345050px;}
.y70{bottom:565.355100px;}
.y1a{bottom:572.540250px;}
.yc7{bottom:577.037250px;}
.ye9{bottom:577.037400px;}
.y51{bottom:577.037550px;}
.yb0{bottom:577.054800px;}
.ya2{bottom:577.054950px;}
.y101{bottom:577.055100px;}
.y9d{bottom:577.345050px;}
.y18c{bottom:581.732100px;}
.y1a8{bottom:593.805900px;}
.y19{bottom:594.140250px;}
.y6f{bottom:596.855100px;}
.y148{bottom:598.054950px;}
.y12c{bottom:598.345050px;}
.yc6{bottom:608.537250px;}
.yfd{bottom:608.537400px;}
.y50{bottom:608.537550px;}
.y7f{bottom:608.554800px;}
.y33{bottom:608.554950px;}
.yd7{bottom:608.555100px;}
.y9c{bottom:608.845050px;}
.y18{bottom:615.740250px;}
.y6e{bottom:628.355100px;}
.yc5{bottom:640.037250px;}
.ye8{bottom:640.037400px;}
.y4f{bottom:640.037550px;}
.y7e{bottom:640.054800px;}
.y32{bottom:640.054950px;}
.yd6{bottom:640.055100px;}
.y9b{bottom:640.345050px;}
.y17{bottom:658.940250px;}
.y6d{bottom:659.855100px;}
.y12b{bottom:661.345050px;}
.yc4{bottom:671.537250px;}
.ye7{bottom:671.537400px;}
.y11b{bottom:671.537550px;}
.y7d{bottom:671.554800px;}
.y31{bottom:671.554950px;}
.yd5{bottom:671.555100px;}
.y1a6{bottom:672.351150px;}
.y1a7{bottom:677.376450px;}
.y16{bottom:680.540250px;}
.y147{bottom:682.054950px;}
.y15{bottom:702.140250px;}
.yc3{bottom:703.037250px;}
.yfc{bottom:703.037400px;}
.y4e{bottom:703.037550px;}
.y7c{bottom:703.054800px;}
.ya1{bottom:703.054950px;}
.y114{bottom:703.055100px;}
.y9a{bottom:703.345050px;}
.y6c{bottom:712.955100px;}
.y14{bottom:723.740250px;}
.y146{bottom:724.054950px;}
.y12a{bottom:724.345050px;}
.yc2{bottom:734.537250px;}
.ye6{bottom:734.537400px;}
.y4d{bottom:734.537550px;}
.y111{bottom:734.554800px;}
.y30{bottom:734.554950px;}
.y6b{bottom:734.555100px;}
.y99{bottom:734.845050px;}
.y1a5{bottom:735.549750px;}
.y13{bottom:745.340250px;}
.y18b{bottom:764.991900px;}
.yc1{bottom:766.037250px;}
.ye5{bottom:766.037400px;}
.y4c{bottom:766.037550px;}
.y2f{bottom:766.054950px;}
.y6a{bottom:766.055100px;}
.y98{bottom:766.345050px;}
.y12{bottom:766.940250px;}
.y159{bottom:767.925750px;}
.y164{bottom:778.555800px;}
.y178{bottom:780.681750px;}
.y16e{bottom:781.744650px;}
.y18a{bottom:786.592050px;}
.y145{bottom:787.054950px;}
.y129{bottom:787.345050px;}
.y11{bottom:788.540250px;}
.y158{bottom:789.525750px;}
.y19a{bottom:792.629700px;}
.ye4{bottom:797.537400px;}
.y110{bottom:797.554800px;}
.y2e{bottom:797.554950px;}
.y69{bottom:797.555100px;}
.y97{bottom:797.845050px;}
.y163{bottom:800.155650px;}
.y177{bottom:802.281750px;}
.y16d{bottom:803.344650px;}
.y144{bottom:808.054950px;}
.y189{bottom:808.191900px;}
.y10{bottom:810.140250px;}
.y157{bottom:811.125750px;}
.y199{bottom:814.229700px;}
.y162{bottom:821.755800px;}
.y176{bottom:823.881750px;}
.y16c{bottom:824.944650px;}
.yc0{bottom:829.037250px;}
.ye3{bottom:829.037400px;}
.y4b{bottom:829.037550px;}
.y10f{bottom:829.054800px;}
.y7b{bottom:829.054950px;}
.y68{bottom:829.055100px;}
.y128{bottom:829.345050px;}
.y188{bottom:829.791900px;}
.y156{bottom:832.725750px;}
.yf{bottom:835.340250px;}
.y198{bottom:835.829700px;}
.y161{bottom:843.355800px;}
.y175{bottom:845.481750px;}
.y16b{bottom:846.544800px;}
.y143{bottom:850.054950px;}
.ye{bottom:856.940250px;}
.y197{bottom:857.429700px;}
.ybf{bottom:860.537250px;}
.ye2{bottom:860.537400px;}
.y4a{bottom:860.537550px;}
.y10e{bottom:860.554800px;}
.y2d{bottom:860.554950px;}
.ya6{bottom:860.555100px;}
.y96{bottom:860.845050px;}
.y142{bottom:871.054950px;}
.y127{bottom:871.345050px;}
.y187{bottom:872.991900px;}
.y155{bottom:875.925900px;}
.yd{bottom:882.140250px;}
.yff{bottom:886.102200px;}
.y160{bottom:886.555800px;}
.y174{bottom:888.681750px;}
.y16a{bottom:889.744800px;}
.ybe{bottom:892.037250px;}
.ye1{bottom:892.037400px;}
.y49{bottom:892.037550px;}
.y10d{bottom:892.054800px;}
.y2c{bottom:892.054950px;}
.y67{bottom:892.055100px;}
.y95{bottom:892.345050px;}
.y196{bottom:900.629700px;}
.yc{bottom:903.740250px;}
.y154{bottom:919.125750px;}
.ybd{bottom:923.537250px;}
.ye0{bottom:923.537400px;}
.y48{bottom:923.537550px;}
.y10c{bottom:923.554800px;}
.y2b{bottom:923.554950px;}
.y66{bottom:923.555100px;}
.y94{bottom:923.845050px;}
.yb{bottom:928.940250px;}
.y15f{bottom:929.755800px;}
.y173{bottom:931.881750px;}
.y169{bottom:932.944800px;}
.y141{bottom:934.054950px;}
.y126{bottom:934.345050px;}
.y153{bottom:940.725900px;}
.ya{bottom:950.540250px;}
.y15e{bottom:951.355800px;}
.y172{bottom:953.481750px;}
.y168{bottom:954.544800px;}
.yfb{bottom:955.037400px;}
.y47{bottom:955.037550px;}
.y113{bottom:955.054800px;}
.ya3{bottom:955.054950px;}
.y65{bottom:955.055100px;}
.y93{bottom:955.345050px;}
.y181{bottom:957.393450px;}
.y17d{bottom:957.393600px;}
.y152{bottom:962.325750px;}
.y19f{bottom:968.023500px;}
.y9{bottom:972.140250px;}
.y15d{bottom:972.955650px;}
.y171{bottom:975.081750px;}
.y140{bottom:976.054950px;}
.y167{bottom:976.144800px;}
.y125{bottom:976.345050px;}
.y17c{bottom:978.993600px;}
.y151{bottom:983.925900px;}
.ybc{bottom:986.537250px;}
.ydf{bottom:986.537400px;}
.y46{bottom:986.537550px;}
.y10b{bottom:986.554800px;}
.y2a{bottom:986.554950px;}
.ya5{bottom:986.555100px;}
.y92{bottom:986.845050px;}
.y186{bottom:989.283300px;}
.y19e{bottom:989.623500px;}
.y15c{bottom:994.555800px;}
.y170{bottom:996.681750px;}
.y166{bottom:997.744800px;}
.y180{bottom:1000.593450px;}
.y17b{bottom:1000.593600px;}
.y185{bottom:1010.883300px;}
.y19d{bottom:1011.223500px;}
.ybb{bottom:1018.037250px;}
.yde{bottom:1018.037400px;}
.y45{bottom:1018.037550px;}
.y10a{bottom:1018.054800px;}
.y29{bottom:1018.054950px;}
.y64{bottom:1018.055100px;}
.y91{bottom:1018.345050px;}
.y17f{bottom:1022.193450px;}
.y17a{bottom:1022.193600px;}
.y150{bottom:1027.125750px;}
.y184{bottom:1032.483300px;}
.y19c{bottom:1032.823500px;}
.y15b{bottom:1037.755800px;}
.y13f{bottom:1039.054950px;}
.y124{bottom:1039.345050px;}
.y16f{bottom:1039.881750px;}
.y165{bottom:1040.944800px;}
.yba{bottom:1049.537250px;}
.yfa{bottom:1049.537400px;}
.y44{bottom:1049.537550px;}
.y109{bottom:1049.554800px;}
.y28{bottom:1049.554950px;}
.y63{bottom:1049.555100px;}
.y90{bottom:1049.845050px;}
.y183{bottom:1054.083300px;}
.y13e{bottom:1060.054950px;}
.y17e{bottom:1065.393450px;}
.y179{bottom:1065.393600px;}
.y22{bottom:1065.872100px;}
.y6{bottom:1072.750500px;}
.y19b{bottom:1076.023500px;}
.y7{bottom:1076.614350px;}
.y1{bottom:1077.376950px;}
.yb9{bottom:1081.037250px;}
.ydd{bottom:1081.037400px;}
.y43{bottom:1081.037550px;}
.y108{bottom:1081.054800px;}
.y27{bottom:1081.054950px;}
.y62{bottom:1081.055100px;}
.y8f{bottom:1081.345050px;}
.y15a{bottom:1094.915850px;}
.y182{bottom:1097.283300px;}
.y13d{bottom:1102.054950px;}
.y123{bottom:1102.345050px;}
.y8{bottom:1104.648900px;}
.yb8{bottom:1112.537250px;}
.ydc{bottom:1112.537400px;}
.y42{bottom:1112.537550px;}
.yaf{bottom:1112.554800px;}
.y26{bottom:1112.554950px;}
.y61{bottom:1112.555100px;}
.y8e{bottom:1112.845050px;}
.y13c{bottom:1123.054950px;}
.yb7{bottom:1144.037250px;}
.ydb{bottom:1144.037400px;}
.y41{bottom:1144.037550px;}
.yae{bottom:1144.054800px;}
.y25{bottom:1144.054950px;}
.y60{bottom:1144.055100px;}
.y8d{bottom:1144.345050px;}
.y24{bottom:1208.319600px;}
.h13{height:42.960000px;}
.ha{height:47.256000px;}
.hf{height:47.381836px;}
.h16{height:49.289062px;}
.hc{height:49.992188px;}
.h9{height:51.552000px;}
.h10{height:52.646484px;}
.h15{height:53.121445px;}
.h12{height:56.873381px;}
.hd{height:60.806880px;}
.he{height:60.807480px;}
.h3{height:61.154297px;}
.h14{height:62.802600px;}
.hb{height:63.175781px;}
.h7{height:63.949219px;}
.h11{height:71.679581px;}
.h19{height:82.836000px;}
.h18{height:83.953125px;}
.h8{height:85.265625px;}
.h5{height:138.060000px;}
.h4{height:139.921875px;}
.h17{height:177.234375px;}
.h6{height:223.875000px;}
.h2{height:335.812500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:21.525600px;}
.x2{left:34.015800px;}
.x5{left:48.897600px;}
.x18{left:93.543300px;}
.x15{left:96.732300px;}
.xa{left:106.299150px;}
.x24{left:107.362200px;}
.x19{left:117.637800px;}
.x17{left:125.610300px;}
.xd{left:148.818900px;}
.x16{left:149.881800px;}
.xe{left:173.962350px;}
.x6{left:217.913400px;}
.x14{left:279.212550px;}
.x1{left:289.133850px;}
.x21{left:292.542600px;}
.x23{left:293.605650px;}
.x29{left:297.637800px;}
.x13{left:321.384000px;}
.x27{left:322.883850px;}
.x1f{left:330.502650px;}
.x1d{left:335.002650px;}
.x2a{left:347.598450px;}
.xf{left:360.214050px;}
.x12{left:361.483950px;}
.x2c{left:364.287450px;}
.x2b{left:378.425250px;}
.x10{left:382.037250px;}
.x1c{left:386.440650px;}
.xb{left:390.716400px;}
.xc{left:396.613800px;}
.x1b{left:399.619800px;}
.x1a{left:405.890850px;}
.x9{left:410.957700px;}
.x1e{left:421.957200px;}
.x11{left:437.816700px;}
.x7{left:442.136700px;}
.x20{left:497.480250px;}
.x3{left:534.685050px;}
.x22{left:544.252050px;}
.x25{left:545.314950px;}
.x4{left:590.173200px;}
.x8{left:618.997950px;}
.x28{left:624.242100px;}
@media print{
.v3{vertical-align:-7.558933pt;}
.v4{vertical-align:-5.602133pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:7.395733pt;}
.v5{vertical-align:17.637867pt;}
.v1{vertical-align:21.311467pt;}
.ls1{letter-spacing:-3.520000pt;}
.ls7{letter-spacing:-2.368000pt;}
.ls6{letter-spacing:-1.380544pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls2{letter-spacing:2.928000pt;}
.ls3{letter-spacing:22.195733pt;}
.ls5{letter-spacing:112.000000pt;}
.ls4{letter-spacing:114.374933pt;}
.wsb8{word-spacing:-16.640000pt;}
.wsf{word-spacing:-16.000000pt;}
.ws7a{word-spacing:-13.632000pt;}
.ws21{word-spacing:-12.000000pt;}
.ws33{word-spacing:-9.328000pt;}
.ws98{word-spacing:-8.064000pt;}
.ws79{word-spacing:-7.947456pt;}
.wsa{word-spacing:-7.232000pt;}
.ws9{word-spacing:-7.040000pt;}
.ws99{word-spacing:-6.592000pt;}
.ws2d{word-spacing:-6.528000pt;}
.ws2c{word-spacing:-6.144000pt;}
.wse{word-spacing:-5.376000pt;}
.ws8e{word-spacing:-5.184000pt;}
.ws8{word-spacing:-4.992000pt;}
.ws6{word-spacing:-4.736000pt;}
.ws51{word-spacing:-4.224000pt;}
.ws4{word-spacing:-4.032000pt;}
.wsbb{word-spacing:-3.648000pt;}
.wsd{word-spacing:-3.584000pt;}
.wsbe{word-spacing:-3.520000pt;}
.wsb{word-spacing:-3.328000pt;}
.wsc{word-spacing:-3.264000pt;}
.ws54{word-spacing:-3.200000pt;}
.ws7b{word-spacing:-3.136000pt;}
.ws8d{word-spacing:-3.072000pt;}
.ws1{word-spacing:-3.008000pt;}
.ws5{word-spacing:-2.944000pt;}
.ws3e{word-spacing:-2.880000pt;}
.ws3{word-spacing:-2.688000pt;}
.ws4a{word-spacing:-2.368000pt;}
.ws2{word-spacing:-2.304000pt;}
.ws77{word-spacing:-2.240000pt;}
.ws96{word-spacing:-2.176000pt;}
.wsb3{word-spacing:-2.112000pt;}
.ws93{word-spacing:-2.048000pt;}
.ws11{word-spacing:-1.984000pt;}
.ws57{word-spacing:-1.920000pt;}
.wsb4{word-spacing:-1.856000pt;}
.ws69{word-spacing:-1.792000pt;}
.ws68{word-spacing:-1.728000pt;}
.ws1b{word-spacing:-1.664000pt;}
.ws1a{word-spacing:-1.472000pt;}
.ws41{word-spacing:-1.408000pt;}
.ws67{word-spacing:-1.344000pt;}
.ws2a{word-spacing:-1.216000pt;}
.ws6a{word-spacing:-1.152000pt;}
.ws4b{word-spacing:-1.088000pt;}
.ws3d{word-spacing:-1.024000pt;}
.ws34{word-spacing:-0.960000pt;}
.ws44{word-spacing:-0.832000pt;}
.ws17{word-spacing:-0.704000pt;}
.ws23{word-spacing:-0.640000pt;}
.ws50{word-spacing:-0.512000pt;}
.ws5e{word-spacing:-0.448000pt;}
.wsb7{word-spacing:-0.384000pt;}
.wsbc{word-spacing:-0.320000pt;}
.wsa9{word-spacing:-0.256000pt;}
.ws35{word-spacing:-0.192000pt;}
.ws89{word-spacing:-0.128000pt;}
.ws92{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.wsaa{word-spacing:0.064000pt;}
.ws4c{word-spacing:0.128000pt;}
.ws18{word-spacing:0.192000pt;}
.wsac{word-spacing:0.256000pt;}
.ws36{word-spacing:0.320000pt;}
.ws97{word-spacing:0.448000pt;}
.ws75{word-spacing:0.512000pt;}
.ws74{word-spacing:0.576000pt;}
.wsb2{word-spacing:0.640000pt;}
.ws3f{word-spacing:0.704000pt;}
.ws56{word-spacing:0.768000pt;}
.ws61{word-spacing:0.832000pt;}
.ws4d{word-spacing:0.896000pt;}
.ws22{word-spacing:0.960000pt;}
.ws87{word-spacing:1.024000pt;}
.ws5a{word-spacing:1.088000pt;}
.ws60{word-spacing:1.152000pt;}
.ws55{word-spacing:1.216000pt;}
.ws72{word-spacing:1.280000pt;}
.ws40{word-spacing:1.344000pt;}
.ws70{word-spacing:1.408000pt;}
.ws1d{word-spacing:1.472000pt;}
.ws12{word-spacing:1.536000pt;}
.ws8b{word-spacing:1.600000pt;}
.ws14{word-spacing:1.664000pt;}
.ws13{word-spacing:1.792000pt;}
.ws2e{word-spacing:1.856000pt;}
.ws6f{word-spacing:1.920000pt;}
.wsa1{word-spacing:2.048000pt;}
.ws6d{word-spacing:2.176000pt;}
.ws6b{word-spacing:2.240000pt;}
.ws30{word-spacing:2.304000pt;}
.ws8c{word-spacing:2.368000pt;}
.ws73{word-spacing:2.432000pt;}
.ws49{word-spacing:2.496000pt;}
.ws1c{word-spacing:2.560000pt;}
.ws66{word-spacing:2.624000pt;}
.ws20{word-spacing:2.688000pt;}
.ws88{word-spacing:2.752000pt;}
.ws2b{word-spacing:2.816000pt;}
.ws4e{word-spacing:2.880000pt;}
.ws10{word-spacing:2.944000pt;}
.ws59{word-spacing:3.008000pt;}
.ws27{word-spacing:3.072000pt;}
.ws16{word-spacing:3.136000pt;}
.ws8a{word-spacing:3.200000pt;}
.ws3c{word-spacing:3.328000pt;}
.ws53{word-spacing:3.392000pt;}
.ws5f{word-spacing:3.456000pt;}
.ws7{word-spacing:3.520000pt;}
.wsae{word-spacing:3.584000pt;}
.ws65{word-spacing:3.648000pt;}
.ws24{word-spacing:3.712000pt;}
.ws2f{word-spacing:3.776000pt;}
.ws1e{word-spacing:3.840000pt;}
.ws4f{word-spacing:3.904000pt;}
.ws5b{word-spacing:4.096000pt;}
.wsab{word-spacing:4.160000pt;}
.wsa6{word-spacing:4.224000pt;}
.ws1f{word-spacing:4.352000pt;}
.ws6e{word-spacing:4.416000pt;}
.ws45{word-spacing:4.480000pt;}
.ws6c{word-spacing:4.544000pt;}
.ws28{word-spacing:4.608000pt;}
.wsa7{word-spacing:4.672000pt;}
.ws64{word-spacing:4.800000pt;}
.ws5c{word-spacing:4.928000pt;}
.ws26{word-spacing:4.992000pt;}
.wsb6{word-spacing:5.120000pt;}
.ws76{word-spacing:5.184000pt;}
.ws52{word-spacing:5.248000pt;}
.ws15{word-spacing:5.312000pt;}
.ws38{word-spacing:5.440000pt;}
.wsb5{word-spacing:5.504000pt;}
.ws19{word-spacing:5.568000pt;}
.wsa4{word-spacing:5.760000pt;}
.ws91{word-spacing:5.824000pt;}
.ws78{word-spacing:6.016000pt;}
.wsaf{word-spacing:6.144000pt;}
.ws58{word-spacing:6.208000pt;}
.ws3a{word-spacing:6.464000pt;}
.wsad{word-spacing:6.592000pt;}
.wsa3{word-spacing:6.720000pt;}
.ws71{word-spacing:6.784000pt;}
.ws31{word-spacing:6.912000pt;}
.ws5d{word-spacing:6.976000pt;}
.wsb9{word-spacing:7.104000pt;}
.ws94{word-spacing:7.424000pt;}
.wsb1{word-spacing:7.616000pt;}
.ws25{word-spacing:7.808000pt;}
.ws29{word-spacing:7.936000pt;}
.ws3b{word-spacing:8.000000pt;}
.ws63{word-spacing:8.064000pt;}
.wsa8{word-spacing:8.128000pt;}
.ws80{word-spacing:8.256000pt;}
.ws81{word-spacing:8.320000pt;}
.ws9d{word-spacing:8.384000pt;}
.ws82{word-spacing:8.576000pt;}
.ws9a{word-spacing:8.640000pt;}
.ws9c{word-spacing:8.832000pt;}
.wsa0{word-spacing:8.896000pt;}
.wsb0{word-spacing:9.152000pt;}
.ws37{word-spacing:9.280000pt;}
.ws9e{word-spacing:9.344000pt;}
.ws32{word-spacing:9.472000pt;}
.ws9f{word-spacing:9.536000pt;}
.wsba{word-spacing:9.600000pt;}
.ws95{word-spacing:10.112000pt;}
.ws7e{word-spacing:10.240000pt;}
.ws7d{word-spacing:10.624000pt;}
.wsbd{word-spacing:11.008000pt;}
.wsa5{word-spacing:11.840000pt;}
.ws8f{word-spacing:12.032000pt;}
.ws7f{word-spacing:12.160000pt;}
.ws46{word-spacing:13.760000pt;}
.ws90{word-spacing:15.040000pt;}
.ws9b{word-spacing:15.488000pt;}
.ws39{word-spacing:15.680000pt;}
.ws42{word-spacing:16.960000pt;}
.ws7c{word-spacing:22.208000pt;}
.ws47{word-spacing:23.104000pt;}
.wsa2{word-spacing:25.600000pt;}
.ws85{word-spacing:29.568000pt;}
.ws48{word-spacing:30.208000pt;}
.ws43{word-spacing:30.720000pt;}
.ws83{word-spacing:30.976000pt;}
.ws62{word-spacing:31.488000pt;}
.ws86{word-spacing:38.656000pt;}
.ws84{word-spacing:39.424000pt;}
._7{margin-left:-2056.838400pt;}
._27{margin-left:-1410.484800pt;}
._28{margin-left:-10.067200pt;}
._4{margin-left:-8.249600pt;}
._6{margin-left:-7.116800pt;}
._3{margin-left:-6.028800pt;}
._23{margin-left:-4.908800pt;}
._1{margin-left:-3.860267pt;}
._2{margin-left:-2.844800pt;}
._0{margin-left:-1.806933pt;}
._5{margin-left:-0.896000pt;}
._8{width:1.155733pt;}
._9{width:2.165867pt;}
._10{width:3.315200pt;}
._13{width:4.486400pt;}
._a{width:5.529600pt;}
._14{width:6.624000pt;}
._e{width:8.172800pt;}
._1c{width:9.945600pt;}
._1b{width:12.204800pt;}
._29{width:13.497600pt;}
._f{width:17.696000pt;}
._15{width:18.771200pt;}
._16{width:24.396800pt;}
._11{width:26.617600pt;}
._12{width:27.536000pt;}
._17{width:33.568000pt;}
._18{width:112.000000pt;}
._1a{width:116.032000pt;}
._c{width:144.000000pt;}
._d{width:147.984000pt;}
._22{width:257.685867pt;}
._21{width:347.596800pt;}
._20{width:368.026133pt;}
._1f{width:657.325867pt;}
._1e{width:727.321067pt;}
._25{width:749.853867pt;}
._24{width:829.074133pt;}
._1d{width:834.997867pt;}
._26{width:1056.829333pt;}
._19{width:1209.980267pt;}
._b{width:1344.872000pt;}
.fs7{font-size:37.312000pt;}
.fs8{font-size:48.000000pt;}
.fs9{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs5{font-size:85.333333pt;}
.fsb{font-size:96.000000pt;}
.fs2{font-size:160.000000pt;}
.fsa{font-size:202.666667pt;}
.fs3{font-size:256.000000pt;}
.fs0{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:25.981733pt;}
.y23{bottom:38.593600pt;}
.y4{bottom:48.381733pt;}
.y3{bottom:70.781733pt;}
.y117{bottom:80.385600pt;}
.yd4{bottom:83.149600pt;}
.yf9{bottom:84.409467pt;}
.y106{bottom:85.039467pt;}
.y2{bottom:93.181733pt;}
.y8c{bottom:94.488133pt;}
.y5f{bottom:94.488267pt;}
.yf8{bottom:98.809467pt;}
.y105{bottom:99.439467pt;}
.yd3{bottom:102.349600pt;}
.y1a4{bottom:102.670000pt;}
.y122{bottom:104.239467pt;}
.y8b{bottom:108.888133pt;}
.y5e{bottom:108.888267pt;}
.y11a{bottom:113.154800pt;}
.yf7{bottom:118.009467pt;}
.y121{bottom:118.639467pt;}
.y40{bottom:120.937733pt;}
.yad{bottom:120.937867pt;}
.yd2{bottom:121.549600pt;}
.y1a3{bottom:121.870000pt;}
.yb6{bottom:123.288133pt;}
.y115{bottom:123.288267pt;}
.y8a{bottom:128.088133pt;}
.y5d{bottom:128.088267pt;}
.y13b{bottom:130.528933pt;}
.y119{bottom:132.354800pt;}
.yf6{bottom:132.409467pt;}
.y120{bottom:137.839467pt;}
.yd1{bottom:140.749600pt;}
.y1a2{bottom:141.070000pt;}
.y89{bottom:142.488133pt;}
.y118{bottom:146.754800pt;}
.yf5{bottom:146.809467pt;}
.y5c{bottom:147.288267pt;}
.ycd{bottom:148.922000pt;}
.yb5{bottom:148.937600pt;}
.y3f{bottom:148.937733pt;}
.yac{bottom:148.937867pt;}
.y13a{bottom:149.195600pt;}
.y11f{bottom:157.039467pt;}
.yd0{bottom:159.949600pt;}
.y1a1{bottom:160.270000pt;}
.y88{bottom:161.688133pt;}
.y5b{bottom:161.688267pt;}
.y195{bottom:162.197600pt;}
.y116{bottom:165.424933pt;}
.y7a{bottom:166.537867pt;}
.y139{bottom:167.862267pt;}
.y11e{bottom:171.439467pt;}
.y87{bottom:176.088133pt;}
.y5a{bottom:176.088267pt;}
.ycc{bottom:176.922000pt;}
.yf4{bottom:176.922133pt;}
.yb4{bottom:176.937600pt;}
.y3e{bottom:176.937733pt;}
.yab{bottom:176.937867pt;}
.ycf{bottom:179.149600pt;}
.y194{bottom:181.397600pt;}
.y138{bottom:186.528933pt;}
.y79{bottom:194.537867pt;}
.y1a0{bottom:198.670000pt;}
.y193{bottom:200.597600pt;}
.y107{bottom:201.330400pt;}
.ycb{bottom:204.922000pt;}
.yf3{bottom:204.922133pt;}
.yb3{bottom:204.937600pt;}
.y3d{bottom:204.937733pt;}
.yaa{bottom:204.937867pt;}
.y137{bottom:205.195600pt;}
.y192{bottom:219.797600pt;}
.y78{bottom:222.537867pt;}
.y136{bottom:223.862267pt;}
.yf2{bottom:232.922133pt;}
.y59{bottom:232.922267pt;}
.yb2{bottom:232.937600pt;}
.ya4{bottom:232.937733pt;}
.ya9{bottom:232.937867pt;}
.y135{bottom:242.528933pt;}
.yce{bottom:243.983600pt;}
.y191{bottom:258.197600pt;}
.yf1{bottom:260.922133pt;}
.y58{bottom:260.922267pt;}
.y112{bottom:260.937600pt;}
.y3c{bottom:260.937733pt;}
.ya8{bottom:260.937867pt;}
.y134{bottom:261.195600pt;}
.y77{bottom:278.537867pt;}
.y14f{bottom:279.604400pt;}
.y133{bottom:279.862267pt;}
.yf0{bottom:288.922133pt;}
.y57{bottom:288.922267pt;}
.y86{bottom:288.937600pt;}
.y3b{bottom:288.937733pt;}
.ya7{bottom:288.937867pt;}
.y76{bottom:306.537867pt;}
.yef{bottom:316.922133pt;}
.y56{bottom:316.922267pt;}
.y85{bottom:316.937600pt;}
.y3a{bottom:316.937733pt;}
.y104{bottom:316.937867pt;}
.y132{bottom:317.195600pt;}
.y75{bottom:334.537867pt;}
.y131{bottom:335.862267pt;}
.yee{bottom:344.922133pt;}
.y55{bottom:344.922267pt;}
.y84{bottom:344.937600pt;}
.y39{bottom:344.937733pt;}
.y103{bottom:344.937867pt;}
.y21{bottom:352.124667pt;}
.y130{bottom:354.528933pt;}
.y100{bottom:360.559867pt;}
.y74{bottom:362.537867pt;}
.y14e{bottom:363.604400pt;}
.yed{bottom:372.922133pt;}
.y54{bottom:372.922267pt;}
.yb1{bottom:372.937600pt;}
.y38{bottom:372.937733pt;}
.y102{bottom:372.937867pt;}
.y20{bottom:374.524667pt;}
.y14d{bottom:382.271067pt;}
.y73{bottom:390.537867pt;}
.y12f{bottom:391.862267pt;}
.y1f{bottom:393.724667pt;}
.yfe{bottom:400.922133pt;}
.y53{bottom:400.922267pt;}
.y83{bottom:400.937600pt;}
.y37{bottom:400.937733pt;}
.y1e{bottom:412.924667pt;}
.y72{bottom:418.537867pt;}
.y14c{bottom:419.604400pt;}
.y190{bottom:421.095200pt;}
.yca{bottom:428.922000pt;}
.yec{bottom:428.922133pt;}
.y11d{bottom:428.922267pt;}
.y82{bottom:428.937600pt;}
.y36{bottom:428.937733pt;}
.yda{bottom:428.937867pt;}
.ya0{bottom:429.195600pt;}
.y1d{bottom:432.124667pt;}
.y14b{bottom:438.271067pt;}
.y12e{bottom:438.528933pt;}
.y18f{bottom:440.295200pt;}
.y71{bottom:446.537867pt;}
.yc9{bottom:456.922000pt;}
.yeb{bottom:456.922133pt;}
.y52{bottom:456.922267pt;}
.y81{bottom:456.937600pt;}
.y35{bottom:456.937733pt;}
.yd9{bottom:456.937867pt;}
.y9f{bottom:457.195600pt;}
.y18e{bottom:459.495200pt;}
.y1c{bottom:470.524667pt;}
.y14a{bottom:475.604400pt;}
.y18d{bottom:478.695333pt;}
.yc8{bottom:484.922000pt;}
.yea{bottom:484.922133pt;}
.y11c{bottom:484.922267pt;}
.y80{bottom:484.937600pt;}
.y34{bottom:484.937733pt;}
.yd8{bottom:484.937867pt;}
.y9e{bottom:485.195600pt;}
.y1b{bottom:489.724667pt;}
.y149{bottom:494.271067pt;}
.y12d{bottom:494.528933pt;}
.y70{bottom:502.537867pt;}
.y1a{bottom:508.924667pt;}
.yc7{bottom:512.922000pt;}
.ye9{bottom:512.922133pt;}
.y51{bottom:512.922267pt;}
.yb0{bottom:512.937600pt;}
.ya2{bottom:512.937733pt;}
.y101{bottom:512.937867pt;}
.y9d{bottom:513.195600pt;}
.y18c{bottom:517.095200pt;}
.y1a8{bottom:527.827467pt;}
.y19{bottom:528.124667pt;}
.y6f{bottom:530.537867pt;}
.y148{bottom:531.604400pt;}
.y12c{bottom:531.862267pt;}
.yc6{bottom:540.922000pt;}
.yfd{bottom:540.922133pt;}
.y50{bottom:540.922267pt;}
.y7f{bottom:540.937600pt;}
.y33{bottom:540.937733pt;}
.yd7{bottom:540.937867pt;}
.y9c{bottom:541.195600pt;}
.y18{bottom:547.324667pt;}
.y6e{bottom:558.537867pt;}
.yc5{bottom:568.922000pt;}
.ye8{bottom:568.922133pt;}
.y4f{bottom:568.922267pt;}
.y7e{bottom:568.937600pt;}
.y32{bottom:568.937733pt;}
.yd6{bottom:568.937867pt;}
.y9b{bottom:569.195600pt;}
.y17{bottom:585.724667pt;}
.y6d{bottom:586.537867pt;}
.y12b{bottom:587.862267pt;}
.yc4{bottom:596.922000pt;}
.ye7{bottom:596.922133pt;}
.y11b{bottom:596.922267pt;}
.y7d{bottom:596.937600pt;}
.y31{bottom:596.937733pt;}
.yd5{bottom:596.937867pt;}
.y1a6{bottom:597.645467pt;}
.y1a7{bottom:602.112400pt;}
.y16{bottom:604.924667pt;}
.y147{bottom:606.271067pt;}
.y15{bottom:624.124667pt;}
.yc3{bottom:624.922000pt;}
.yfc{bottom:624.922133pt;}
.y4e{bottom:624.922267pt;}
.y7c{bottom:624.937600pt;}
.ya1{bottom:624.937733pt;}
.y114{bottom:624.937867pt;}
.y9a{bottom:625.195600pt;}
.y6c{bottom:633.737867pt;}
.y14{bottom:643.324667pt;}
.y146{bottom:643.604400pt;}
.y12a{bottom:643.862267pt;}
.yc2{bottom:652.922000pt;}
.ye6{bottom:652.922133pt;}
.y4d{bottom:652.922267pt;}
.y111{bottom:652.937600pt;}
.y30{bottom:652.937733pt;}
.y6b{bottom:652.937867pt;}
.y99{bottom:653.195600pt;}
.y1a5{bottom:653.822000pt;}
.y13{bottom:662.524667pt;}
.y18b{bottom:679.992800pt;}
.yc1{bottom:680.922000pt;}
.ye5{bottom:680.922133pt;}
.y4c{bottom:680.922267pt;}
.y2f{bottom:680.937733pt;}
.y6a{bottom:680.937867pt;}
.y98{bottom:681.195600pt;}
.y12{bottom:681.724667pt;}
.y159{bottom:682.600667pt;}
.y164{bottom:692.049600pt;}
.y178{bottom:693.939333pt;}
.y16e{bottom:694.884133pt;}
.y18a{bottom:699.192933pt;}
.y145{bottom:699.604400pt;}
.y129{bottom:699.862267pt;}
.y11{bottom:700.924667pt;}
.y158{bottom:701.800667pt;}
.y19a{bottom:704.559733pt;}
.ye4{bottom:708.922133pt;}
.y110{bottom:708.937600pt;}
.y2e{bottom:708.937733pt;}
.y69{bottom:708.937867pt;}
.y97{bottom:709.195600pt;}
.y163{bottom:711.249467pt;}
.y177{bottom:713.139333pt;}
.y16d{bottom:714.084133pt;}
.y144{bottom:718.271067pt;}
.y189{bottom:718.392800pt;}
.y10{bottom:720.124667pt;}
.y157{bottom:721.000667pt;}
.y199{bottom:723.759733pt;}
.y162{bottom:730.449600pt;}
.y176{bottom:732.339333pt;}
.y16c{bottom:733.284133pt;}
.yc0{bottom:736.922000pt;}
.ye3{bottom:736.922133pt;}
.y4b{bottom:736.922267pt;}
.y10f{bottom:736.937600pt;}
.y7b{bottom:736.937733pt;}
.y68{bottom:736.937867pt;}
.y128{bottom:737.195600pt;}
.y188{bottom:737.592800pt;}
.y156{bottom:740.200667pt;}
.yf{bottom:742.524667pt;}
.y198{bottom:742.959733pt;}
.y161{bottom:749.649600pt;}
.y175{bottom:751.539333pt;}
.y16b{bottom:752.484267pt;}
.y143{bottom:755.604400pt;}
.ye{bottom:761.724667pt;}
.y197{bottom:762.159733pt;}
.ybf{bottom:764.922000pt;}
.ye2{bottom:764.922133pt;}
.y4a{bottom:764.922267pt;}
.y10e{bottom:764.937600pt;}
.y2d{bottom:764.937733pt;}
.ya6{bottom:764.937867pt;}
.y96{bottom:765.195600pt;}
.y142{bottom:774.271067pt;}
.y127{bottom:774.528933pt;}
.y187{bottom:775.992800pt;}
.y155{bottom:778.600800pt;}
.yd{bottom:784.124667pt;}
.yff{bottom:787.646400pt;}
.y160{bottom:788.049600pt;}
.y174{bottom:789.939333pt;}
.y16a{bottom:790.884267pt;}
.ybe{bottom:792.922000pt;}
.ye1{bottom:792.922133pt;}
.y49{bottom:792.922267pt;}
.y10d{bottom:792.937600pt;}
.y2c{bottom:792.937733pt;}
.y67{bottom:792.937867pt;}
.y95{bottom:793.195600pt;}
.y196{bottom:800.559733pt;}
.yc{bottom:803.324667pt;}
.y154{bottom:817.000667pt;}
.ybd{bottom:820.922000pt;}
.ye0{bottom:820.922133pt;}
.y48{bottom:820.922267pt;}
.y10c{bottom:820.937600pt;}
.y2b{bottom:820.937733pt;}
.y66{bottom:820.937867pt;}
.y94{bottom:821.195600pt;}
.yb{bottom:825.724667pt;}
.y15f{bottom:826.449600pt;}
.y173{bottom:828.339333pt;}
.y169{bottom:829.284267pt;}
.y141{bottom:830.271067pt;}
.y126{bottom:830.528933pt;}
.y153{bottom:836.200800pt;}
.ya{bottom:844.924667pt;}
.y15e{bottom:845.649600pt;}
.y172{bottom:847.539333pt;}
.y168{bottom:848.484267pt;}
.yfb{bottom:848.922133pt;}
.y47{bottom:848.922267pt;}
.y113{bottom:848.937600pt;}
.ya3{bottom:848.937733pt;}
.y65{bottom:848.937867pt;}
.y93{bottom:849.195600pt;}
.y181{bottom:851.016400pt;}
.y17d{bottom:851.016533pt;}
.y152{bottom:855.400667pt;}
.y19f{bottom:860.465333pt;}
.y9{bottom:864.124667pt;}
.y15d{bottom:864.849467pt;}
.y171{bottom:866.739333pt;}
.y140{bottom:867.604400pt;}
.y167{bottom:867.684267pt;}
.y125{bottom:867.862267pt;}
.y17c{bottom:870.216533pt;}
.y151{bottom:874.600800pt;}
.ybc{bottom:876.922000pt;}
.ydf{bottom:876.922133pt;}
.y46{bottom:876.922267pt;}
.y10b{bottom:876.937600pt;}
.y2a{bottom:876.937733pt;}
.ya5{bottom:876.937867pt;}
.y92{bottom:877.195600pt;}
.y186{bottom:879.362933pt;}
.y19e{bottom:879.665333pt;}
.y15c{bottom:884.049600pt;}
.y170{bottom:885.939333pt;}
.y166{bottom:886.884267pt;}
.y180{bottom:889.416400pt;}
.y17b{bottom:889.416533pt;}
.y185{bottom:898.562933pt;}
.y19d{bottom:898.865333pt;}
.ybb{bottom:904.922000pt;}
.yde{bottom:904.922133pt;}
.y45{bottom:904.922267pt;}
.y10a{bottom:904.937600pt;}
.y29{bottom:904.937733pt;}
.y64{bottom:904.937867pt;}
.y91{bottom:905.195600pt;}
.y17f{bottom:908.616400pt;}
.y17a{bottom:908.616533pt;}
.y150{bottom:913.000667pt;}
.y184{bottom:917.762933pt;}
.y19c{bottom:918.065333pt;}
.y15b{bottom:922.449600pt;}
.y13f{bottom:923.604400pt;}
.y124{bottom:923.862267pt;}
.y16f{bottom:924.339333pt;}
.y165{bottom:925.284267pt;}
.yba{bottom:932.922000pt;}
.yfa{bottom:932.922133pt;}
.y44{bottom:932.922267pt;}
.y109{bottom:932.937600pt;}
.y28{bottom:932.937733pt;}
.y63{bottom:932.937867pt;}
.y90{bottom:933.195600pt;}
.y183{bottom:936.962933pt;}
.y13e{bottom:942.271067pt;}
.y17e{bottom:947.016400pt;}
.y179{bottom:947.016533pt;}
.y22{bottom:947.441867pt;}
.y6{bottom:953.556000pt;}
.y19b{bottom:956.465333pt;}
.y7{bottom:956.990533pt;}
.y1{bottom:957.668400pt;}
.yb9{bottom:960.922000pt;}
.ydd{bottom:960.922133pt;}
.y43{bottom:960.922267pt;}
.y108{bottom:960.937600pt;}
.y27{bottom:960.937733pt;}
.y62{bottom:960.937867pt;}
.y8f{bottom:961.195600pt;}
.y15a{bottom:973.258533pt;}
.y182{bottom:975.362933pt;}
.y13d{bottom:979.604400pt;}
.y123{bottom:979.862267pt;}
.y8{bottom:981.910133pt;}
.yb8{bottom:988.922000pt;}
.ydc{bottom:988.922133pt;}
.y42{bottom:988.922267pt;}
.yaf{bottom:988.937600pt;}
.y26{bottom:988.937733pt;}
.y61{bottom:988.937867pt;}
.y8e{bottom:989.195600pt;}
.y13c{bottom:998.271067pt;}
.yb7{bottom:1016.922000pt;}
.ydb{bottom:1016.922133pt;}
.y41{bottom:1016.922267pt;}
.yae{bottom:1016.937600pt;}
.y25{bottom:1016.937733pt;}
.y60{bottom:1016.937867pt;}
.y8d{bottom:1017.195600pt;}
.y24{bottom:1074.061867pt;}
.h13{height:38.186667pt;}
.ha{height:42.005333pt;}
.hf{height:42.117188pt;}
.h16{height:43.812500pt;}
.hc{height:44.437500pt;}
.h9{height:45.824000pt;}
.h10{height:46.796875pt;}
.h15{height:47.219063pt;}
.h12{height:50.554117pt;}
.hd{height:54.050560pt;}
.he{height:54.051094pt;}
.h3{height:54.359375pt;}
.h14{height:55.824533pt;}
.hb{height:56.156250pt;}
.h7{height:56.843750pt;}
.h11{height:63.715183pt;}
.h19{height:73.632000pt;}
.h18{height:74.625000pt;}
.h8{height:75.791667pt;}
.h5{height:122.720000pt;}
.h4{height:124.375000pt;}
.h17{height:157.541667pt;}
.h6{height:199.000000pt;}
.h2{height:298.500000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:19.133867pt;}
.x2{left:30.236267pt;}
.x5{left:43.464533pt;}
.x18{left:83.149600pt;}
.x15{left:85.984267pt;}
.xa{left:94.488133pt;}
.x24{left:95.433067pt;}
.x19{left:104.566933pt;}
.x17{left:111.653600pt;}
.xd{left:132.283467pt;}
.x16{left:133.228267pt;}
.xe{left:154.633200pt;}
.x6{left:193.700800pt;}
.x14{left:248.188933pt;}
.x1{left:257.007867pt;}
.x21{left:260.037867pt;}
.x23{left:260.982800pt;}
.x29{left:264.566933pt;}
.x13{left:285.674667pt;}
.x27{left:287.007867pt;}
.x1f{left:293.780133pt;}
.x1d{left:297.780133pt;}
.x2a{left:308.976400pt;}
.xf{left:320.190267pt;}
.x12{left:321.319067pt;}
.x2c{left:323.811067pt;}
.x2b{left:336.378000pt;}
.x10{left:339.588667pt;}
.x1c{left:343.502800pt;}
.xb{left:347.303467pt;}
.xc{left:352.545600pt;}
.x1b{left:355.217600pt;}
.x1a{left:360.791867pt;}
.x9{left:365.295733pt;}
.x1e{left:375.073067pt;}
.x11{left:389.170400pt;}
.x7{left:393.010400pt;}
.x20{left:442.204667pt;}
.x3{left:475.275600pt;}
.x22{left:483.779600pt;}
.x25{left:484.724400pt;}
.x4{left:524.598400pt;}
.x8{left:550.220400pt;}
.x28{left:554.881867pt;}
}




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