
    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_546fb59462ce167893f63a10.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.142118;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_79cda2a41eee9211ad08f93f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895000;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_46ce5430ac55719788807848.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.056000;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_bd28fd02b56df80f20b704ff.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.056000;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_79cda2a41eee9211ad08f93f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.895000;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_a9c1d30be4862a10922885b8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.054000;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_50463bb626646a2edde41cc4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.904000;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_6ed4f9721b2dc906e783cdde.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.043000;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_2f4a078467c517665e8613e5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.132000;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_a9c1d30be4862a10922885b8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.054000;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_3d2ed403463fddb3cd56cd44.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.126000;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_546fb59462ce167893f63a10.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.142118;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ff4d3ac19b26d7c23e74d81e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.117000;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:ffe;src:url('chunks/assets/font_a9c1d30be4862a10922885b8.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.054000;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:fff;src:url('chunks/assets/font_8d1b18d85c8de05882fe39e2.woff2')format("woff");}.fff{font-family:fff;line-height:1.113770;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:ff10;src:url('chunks/assets/font_8d608753ef1d972aa793f5de.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.716000;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:ff11;src:url('chunks/assets/font_8b8ead9908cea65805bfb66d.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.056000;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:ff12;src:url('chunks/assets/font_546fb59462ce167893f63a10.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.142118;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:ff13;src:url('chunks/assets/font_2248b4d06024fc4ca1cfe95b.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.056000;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:ff14;src:url('chunks/assets/font_a9c1d30be4862a10922885b8.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.054000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.976000px;}
.ls11{letter-spacing:-2.160000px;}
.lsc{letter-spacing:-1.440000px;}
.ls4{letter-spacing:-1.152000px;}
.ls6{letter-spacing:-0.864000px;}
.ls5{letter-spacing:-0.432000px;}
.lsf{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.209880px;}
.ls3{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.240000px;}
.lsd{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.457800px;}
.ls1{letter-spacing:1.008000px;}
.ls2{letter-spacing:2.788800px;}
.lsb{letter-spacing:2.994600px;}
.ls8{letter-spacing:8.763000px;}
.ls9{letter-spacing:11.202000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
}
.ws46{word-spacing:-71.928000px;}
.wsad{word-spacing:-18.432000px;}
.ws28{word-spacing:-18.000000px;}
.wscc{word-spacing:-17.640000px;}
.ws64{word-spacing:-17.568000px;}
.ws11b{word-spacing:-16.992000px;}
.wsac{word-spacing:-16.560000px;}
.ws119{word-spacing:-16.200000px;}
.ws10b{word-spacing:-15.840000px;}
.ws79{word-spacing:-15.000000px;}
.ws11a{word-spacing:-14.982000px;}
.ws45{word-spacing:-14.400000px;}
.ws11d{word-spacing:-14.058000px;}
.ws2{word-spacing:-12.780000px;}
.ws10e{word-spacing:-12.600000px;}
.wsbc{word-spacing:-12.240000px;}
.ws2a{word-spacing:-12.000000px;}
.ws47{word-spacing:-10.848000px;}
.ws1{word-spacing:-10.800000px;}
.ws29{word-spacing:-10.494000px;}
.wscb{word-spacing:-10.284120px;}
.ws2b{word-spacing:-9.600000px;}
.ws3{word-spacing:-8.946000px;}
.wsfb{word-spacing:-6.000000px;}
.wsff{word-spacing:-5.832000px;}
.ws118{word-spacing:-5.112000px;}
.wse6{word-spacing:-4.968000px;}
.ws117{word-spacing:-4.032000px;}
.ws104{word-spacing:-3.960000px;}
.wsfe{word-spacing:-3.816000px;}
.wse9{word-spacing:-3.672000px;}
.ws107{word-spacing:-3.600000px;}
.wsce{word-spacing:-3.528000px;}
.ws71{word-spacing:-3.456000px;}
.wsd6{word-spacing:-3.408000px;}
.wsbe{word-spacing:-3.384000px;}
.wse5{word-spacing:-3.240000px;}
.wsb3{word-spacing:-3.168000px;}
.ws31{word-spacing:-3.096000px;}
.wsb2{word-spacing:-3.024000px;}
.wsea{word-spacing:-2.952000px;}
.wse3{word-spacing:-2.880000px;}
.ws9a{word-spacing:-2.808000px;}
.ws7b{word-spacing:-2.760000px;}
.ws65{word-spacing:-2.664000px;}
.wsc3{word-spacing:-2.592000px;}
.ws2d{word-spacing:-2.520000px;}
.wsdc{word-spacing:-2.448000px;}
.ws90{word-spacing:-2.376000px;}
.ws76{word-spacing:-2.304000px;}
.wsc9{word-spacing:-2.256000px;}
.wsbd{word-spacing:-2.232000px;}
.wse8{word-spacing:-2.160000px;}
.wsd0{word-spacing:-2.088000px;}
.wsd4{word-spacing:-2.064000px;}
.wsa9{word-spacing:-2.016000px;}
.wsbf{word-spacing:-1.944000px;}
.wsf4{word-spacing:-1.872000px;}
.ws97{word-spacing:-1.800000px;}
.ws12{word-spacing:-1.740000px;}
.ws48{word-spacing:-1.728000px;}
.ws9b{word-spacing:-1.656000px;}
.ws44{word-spacing:-1.632000px;}
.wsb{word-spacing:-1.620000px;}
.wsd9{word-spacing:-1.584000px;}
.ws24{word-spacing:-1.536000px;}
.wsc2{word-spacing:-1.512000px;}
.ws5d{word-spacing:-1.440000px;}
.ws8c{word-spacing:-1.368000px;}
.ws8f{word-spacing:-1.296000px;}
.wsdb{word-spacing:-1.224000px;}
.wsa7{word-spacing:-1.200000px;}
.wsf3{word-spacing:-1.152000px;}
.ws87{word-spacing:-1.104000px;}
.ws101{word-spacing:-1.080000px;}
.wsc8{word-spacing:-1.056000px;}
.ws3e{word-spacing:-1.008000px;}
.ws5f{word-spacing:-0.960000px;}
.ws8e{word-spacing:-0.936000px;}
.wsa4{word-spacing:-0.912000px;}
.ws86{word-spacing:-0.864000px;}
.ws19{word-spacing:-0.840000px;}
.ws75{word-spacing:-0.816000px;}
.ws2e{word-spacing:-0.792000px;}
.wsed{word-spacing:-0.768000px;}
.wsd7{word-spacing:-0.720000px;}
.wsd5{word-spacing:-0.672000px;}
.ws66{word-spacing:-0.648000px;}
.ws42{word-spacing:-0.576000px;}
.ws40{word-spacing:-0.528000px;}
.ws2c{word-spacing:-0.504000px;}
.ws61{word-spacing:-0.432000px;}
.wsa3{word-spacing:-0.384000px;}
.wsa0{word-spacing:-0.360000px;}
.ws11e{word-spacing:-0.330000px;}
.ws92{word-spacing:-0.288000px;}
.ws11c{word-spacing:-0.264000px;}
.wsc7{word-spacing:-0.240000px;}
.ws50{word-spacing:-0.216000px;}
.wsa5{word-spacing:-0.192000px;}
.ws4f{word-spacing:-0.144000px;}
.wsc4{word-spacing:-0.096000px;}
.ws32{word-spacing:-0.072000px;}
.ws11f{word-spacing:-0.066000px;}
.ws27{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.ws63{word-spacing:0.048000px;}
.ws33{word-spacing:0.072000px;}
.ws23{word-spacing:0.096000px;}
.ws51{word-spacing:0.144000px;}
.ws30{word-spacing:0.216000px;}
.ws96{word-spacing:0.288000px;}
.ws1a{word-spacing:0.300000px;}
.ws7e{word-spacing:0.360000px;}
.ws13{word-spacing:0.420000px;}
.wsb1{word-spacing:0.432000px;}
.ws9{word-spacing:0.480000px;}
.ws69{word-spacing:0.504000px;}
.ws83{word-spacing:0.528000px;}
.ws11{word-spacing:0.540000px;}
.ws9e{word-spacing:0.576000px;}
.wsa1{word-spacing:0.648000px;}
.ws82{word-spacing:0.720000px;}
.wsa6{word-spacing:0.768000px;}
.ws1e{word-spacing:0.780000px;}
.ws55{word-spacing:0.792000px;}
.ws95{word-spacing:0.816000px;}
.ws1f{word-spacing:0.840000px;}
.ws3f{word-spacing:0.864000px;}
.wse7{word-spacing:0.936000px;}
.wsee{word-spacing:0.960000px;}
.ws3d{word-spacing:1.008000px;}
.ws62{word-spacing:1.056000px;}
.wsc{word-spacing:1.080000px;}
.ws14{word-spacing:1.140000px;}
.wsb4{word-spacing:1.152000px;}
.ws78{word-spacing:1.200000px;}
.ws67{word-spacing:1.224000px;}
.ws54{word-spacing:1.296000px;}
.wsec{word-spacing:1.344000px;}
.ws36{word-spacing:1.368000px;}
.ws25{word-spacing:1.392000px;}
.ws4a{word-spacing:1.440000px;}
.ws26{word-spacing:1.488000px;}
.ws8{word-spacing:1.500000px;}
.ws89{word-spacing:1.512000px;}
.ws7c{word-spacing:1.560000px;}
.ws49{word-spacing:1.584000px;}
.ws3c{word-spacing:1.656000px;}
.wsa8{word-spacing:1.728000px;}
.ws91{word-spacing:1.800000px;}
.ws77{word-spacing:1.872000px;}
.ws16{word-spacing:1.920000px;}
.ws10d{word-spacing:1.944000px;}
.wsa{word-spacing:1.980000px;}
.ws60{word-spacing:2.016000px;}
.ws7a{word-spacing:2.088000px;}
.wsf0{word-spacing:2.112000px;}
.ws18{word-spacing:2.160000px;}
.ws53{word-spacing:2.232000px;}
.wsa2{word-spacing:2.304000px;}
.ws17{word-spacing:2.340000px;}
.wsbb{word-spacing:2.376000px;}
.ws4c{word-spacing:2.448000px;}
.wsc5{word-spacing:2.496000px;}
.wscf{word-spacing:2.520000px;}
.ws20{word-spacing:2.580000px;}
.wsda{word-spacing:2.592000px;}
.ws8b{word-spacing:2.664000px;}
.ws22{word-spacing:2.688000px;}
.ws21{word-spacing:2.700000px;}
.ws37{word-spacing:2.736000px;}
.ws56{word-spacing:2.808000px;}
.ws9f{word-spacing:2.880000px;}
.ws5c{word-spacing:2.952000px;}
.wsb6{word-spacing:3.024000px;}
.wsd2{word-spacing:3.072000px;}
.wsf9{word-spacing:3.096000px;}
.wsca{word-spacing:3.120000px;}
.ws6f{word-spacing:3.168000px;}
.wsde{word-spacing:3.312000px;}
.wsc6{word-spacing:3.360000px;}
.wsdf{word-spacing:3.384000px;}
.ws8a{word-spacing:3.456000px;}
.wseb{word-spacing:3.528000px;}
.wsab{word-spacing:3.552000px;}
.ws41{word-spacing:3.600000px;}
.wsf1{word-spacing:3.672000px;}
.ws59{word-spacing:3.744000px;}
.ws4e{word-spacing:3.816000px;}
.ws35{word-spacing:3.888000px;}
.ws5e{word-spacing:3.936000px;}
.ws99{word-spacing:3.960000px;}
.ws52{word-spacing:4.032000px;}
.ws9d{word-spacing:4.176000px;}
.ws4d{word-spacing:4.248000px;}
.ws7d{word-spacing:4.260000px;}
.ws2f{word-spacing:4.320000px;}
.ws73{word-spacing:4.368000px;}
.wsb7{word-spacing:4.392000px;}
.ws6a{word-spacing:4.464000px;}
.ws5a{word-spacing:4.536000px;}
.wsef{word-spacing:4.560000px;}
.ws74{word-spacing:4.608000px;}
.ws43{word-spacing:4.656000px;}
.ws81{word-spacing:4.680000px;}
.ws10a{word-spacing:4.824000px;}
.ws84{word-spacing:4.896000px;}
.wsba{word-spacing:5.040000px;}
.wse1{word-spacing:5.112000px;}
.wsd3{word-spacing:5.184000px;}
.ws103{word-spacing:5.256000px;}
.ws6d{word-spacing:5.328000px;}
.ws1d{word-spacing:5.340000px;}
.ws88{word-spacing:5.400000px;}
.ws6e{word-spacing:5.472000px;}
.ws108{word-spacing:5.544000px;}
.ws8d{word-spacing:5.616000px;}
.wsc0{word-spacing:5.688000px;}
.ws94{word-spacing:5.712000px;}
.ws10f{word-spacing:5.760000px;}
.wsf7{word-spacing:5.976000px;}
.ws3a{word-spacing:6.048000px;}
.wsaa{word-spacing:6.096000px;}
.wsfd{word-spacing:6.120000px;}
.wsfa{word-spacing:6.192000px;}
.ws110{word-spacing:6.264000px;}
.ws6c{word-spacing:6.336000px;}
.wsf5{word-spacing:6.408000px;}
.ws57{word-spacing:6.480000px;}
.wse2{word-spacing:6.552000px;}
.wscd{word-spacing:6.624000px;}
.wsfc{word-spacing:6.672000px;}
.wse{word-spacing:6.840000px;}
.ws85{word-spacing:6.912000px;}
.ws9c{word-spacing:7.056000px;}
.ws72{word-spacing:7.104000px;}
.ws109{word-spacing:7.128000px;}
.wsae{word-spacing:7.200000px;}
.wsb5{word-spacing:7.272000px;}
.wsf8{word-spacing:7.344000px;}
.ws93{word-spacing:7.416000px;}
.ws116{word-spacing:7.488000px;}
.ws98{word-spacing:7.560000px;}
.wsb8{word-spacing:7.704000px;}
.wsf6{word-spacing:7.776000px;}
.wse0{word-spacing:7.848000px;}
.ws38{word-spacing:7.920000px;}
.ws1c{word-spacing:7.980000px;}
.ws100{word-spacing:7.992000px;}
.ws6b{word-spacing:8.064000px;}
.ws39{word-spacing:8.352000px;}
.ws6{word-spacing:8.400000px;}
.wsd1{word-spacing:8.424000px;}
.wsc1{word-spacing:8.568000px;}
.ws5b{word-spacing:8.640000px;}
.ws4b{word-spacing:8.712000px;}
.ws1b{word-spacing:8.760000px;}
.wsaf{word-spacing:8.784000px;}
.ws58{word-spacing:8.856000px;}
.ws34{word-spacing:8.928000px;}
.ws105{word-spacing:9.072000px;}
.wsf2{word-spacing:9.144000px;}
.ws70{word-spacing:9.216000px;}
.wsd{word-spacing:9.480000px;}
.ws106{word-spacing:9.864000px;}
.ws112{word-spacing:9.936000px;}
.ws80{word-spacing:10.008000px;}
.ws3b{word-spacing:10.152000px;}
.ws115{word-spacing:10.296000px;}
.ws7f{word-spacing:10.440000px;}
.wsdd{word-spacing:10.584000px;}
.wsb9{word-spacing:10.872000px;}
.wsb0{word-spacing:11.232000px;}
.ws68{word-spacing:11.448000px;}
.ws5{word-spacing:11.880000px;}
.ws10c{word-spacing:12.168000px;}
.ws4{word-spacing:13.260000px;}
.ws114{word-spacing:14.400000px;}
.ws111{word-spacing:14.544000px;}
.ws15{word-spacing:15.000000px;}
.wsd8{word-spacing:16.848000px;}
.wsf{word-spacing:18.420000px;}
.ws10{word-spacing:19.740000px;}
.ws113{word-spacing:21.528000px;}
.ws7{word-spacing:23.700000px;}
.wse4{word-spacing:24.096000px;}
.ws102{word-spacing:25.536000px;}
._1{margin-left:-1577.436000px;}
._19{margin-left:-25.729800px;}
._1b{margin-left:-16.882200px;}
._1f{margin-left:-13.692000px;}
._1e{margin-left:-10.920000px;}
._6{margin-left:-9.372600px;}
._a{margin-left:-8.079000px;}
._12{margin-left:-6.811200px;}
._16{margin-left:-5.760000px;}
._3{margin-left:-4.752000px;}
._7{margin-left:-3.433800px;}
._2{margin-left:-2.415000px;}
._0{margin-left:-1.008000px;}
._4{width:1.334400px;}
._b{width:2.788200px;}
._15{width:4.165800px;}
._1a{width:5.320200px;}
._c{width:6.506400px;}
._1c{width:8.017800px;}
._14{width:10.333800px;}
._1d{width:20.352000px;}
._13{width:21.792000px;}
._18{width:24.144000px;}
._17{width:25.488000px;}
._11{width:28.080000px;}
._e{width:39.936000px;}
._9{width:43.296000px;}
._f{width:44.400000px;}
._d{width:45.648000px;}
._10{width:47.040000px;}
._8{width:48.672000px;}
._5{width:51.456000px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:transparent;}
.fsa{font-size:41.976000px;}
.fs9{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fsb{font-size:50.400000px;}
.fs5{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fsc{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs6{font-size:96.000000px;}
.fs2{font-size:108.000000px;}
.fs4{font-size:138.000000px;}
.fs1{font-size:150.000000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:63.779550px;}
.y8a{bottom:106.299150px;}
.y64{bottom:106.299300px;}
.y3e{bottom:106.443450px;}
.y89{bottom:120.699150px;}
.y63{bottom:120.699300px;}
.y3d{bottom:120.843450px;}
.y11b{bottom:124.203750px;}
.yfa{bottom:125.224200px;}
.y88{bottom:135.099150px;}
.y62{bottom:135.099300px;}
.yf7{bottom:135.099450px;}
.y3c{bottom:135.243450px;}
.y116{bottom:138.320250px;}
.ya9{bottom:139.351200px;}
.yf6{bottom:139.351500px;}
.y11a{bottom:145.803750px;}
.ydb{bottom:146.143800px;}
.yf9{bottom:146.824200px;}
.y87{bottom:149.499150px;}
.y3b{bottom:149.643450px;}
.ya8{bottom:153.751200px;}
.y61{bottom:153.751350px;}
.yf5{bottom:153.751500px;}
.y115{bottom:159.920250px;}
.y86{bottom:163.899150px;}
.y3a{bottom:164.043450px;}
.y119{bottom:167.403750px;}
.yda{bottom:167.743800px;}
.yba{bottom:168.151200px;}
.y60{bottom:168.151350px;}
.yf4{bottom:168.151500px;}
.yef{bottom:168.424200px;}
.ya7{bottom:172.403100px;}
.yd5{bottom:178.299150px;}
.y39{bottom:178.443450px;}
.y13a{bottom:181.298100px;}
.y114{bottom:181.520250px;}
.y85{bottom:182.551200px;}
.yf3{bottom:182.551500px;}
.ya6{bottom:186.803100px;}
.y5f{bottom:186.803550px;}
.y118{bottom:189.003750px;}
.yd9{bottom:189.343800px;}
.yee{bottom:190.024200px;}
.yd4{bottom:192.699150px;}
.y38{bottom:192.843450px;}
.y84{bottom:196.951200px;}
.y139{bottom:201.098100px;}
.y5e{bottom:201.203550px;}
.y13b{bottom:202.898100px;}
.y113{bottom:203.120250px;}
.ya5{bottom:205.455150px;}
.yd3{bottom:207.099150px;}
.y117{bottom:210.603750px;}
.yd8{bottom:210.943800px;}
.y83{bottom:211.351200px;}
.yed{bottom:211.624200px;}
.y157{bottom:214.739700px;}
.y5d{bottom:215.603550px;}
.ya4{bottom:219.855150px;}
.yd2{bottom:221.499150px;}
.y138{bottom:222.698100px;}
.y112{bottom:224.720250px;}
.y82{bottom:225.751200px;}
.y5c{bottom:230.003400px;}
.yf2{bottom:230.003550px;}
.yca{bottom:232.203750px;}
.yd7{bottom:232.543800px;}
.yec{bottom:233.224200px;}
.ya3{bottom:234.255150px;}
.y156{bottom:234.539700px;}
.yd1{bottom:235.899150px;}
.y158{bottom:236.778150px;}
.yf1{bottom:244.403550px;}
.ya2{bottom:248.655150px;}
.yd0{bottom:250.299150px;}
.yc9{bottom:253.803750px;}
.yd6{bottom:254.143800px;}
.ye9{bottom:254.551200px;}
.yeb{bottom:254.824200px;}
.y137{bottom:258.173700px;}
.yf0{bottom:258.803550px;}
.y154{bottom:264.863400px;}
.y111{bottom:267.580050px;}
.ycf{bottom:268.951200px;}
.yc8{bottom:275.403750px;}
.y81{bottom:275.743800px;}
.yfb{bottom:276.084000px;}
.ye5{bottom:276.424200px;}
.y136{bottom:277.973700px;}
.yb9{bottom:279.684000px;}
.yce{bottom:283.351200px;}
.y5b{bottom:285.799050px;}
.y153{bottom:286.463400px;}
.ye8{bottom:287.603100px;}
.y155{bottom:287.801700px;}
.yc7{bottom:297.003750px;}
.y80{bottom:297.343800px;}
.ycd{bottom:297.751200px;}
.ya1{bottom:298.024200px;}
.yb8{bottom:301.284000px;}
.ye7{bottom:302.003100px;}
.y5a{bottom:307.399050px;}
.ycc{bottom:312.151200px;}
.y134{bottom:315.561150px;}
.y151{bottom:315.886950px;}
.ye6{bottom:316.403100px;}
.yc6{bottom:318.603750px;}
.y7f{bottom:318.943800px;}
.ya0{bottom:319.624200px;}
.yb7{bottom:322.884000px;}
.y35{bottom:324.917400px;}
.ycb{bottom:326.551200px;}
.y59{bottom:328.999050px;}
.y110{bottom:331.699800px;}
.y133{bottom:337.161150px;}
.y150{bottom:337.486950px;}
.y152{bottom:338.825400px;}
.y135{bottom:338.961150px;}
.yc5{bottom:340.203750px;}
.y7e{bottom:340.543800px;}
.y9f{bottom:341.224200px;}
.y34{bottom:342.917400px;}
.y37{bottom:343.909500px;}
.yb6{bottom:344.484000px;}
.y17{bottom:347.241000px;}
.y58{bottom:350.599050px;}
.y10f{bottom:353.299800px;}
.y132{bottom:358.761150px;}
.y33{bottom:360.917400px;}
.y16{bottom:361.641000px;}
.yc4{bottom:361.803750px;}
.y36{bottom:361.909500px;}
.y7d{bottom:362.143800px;}
.y9e{bottom:362.824200px;}
.y16d{bottom:363.382350px;}
.yb5{bottom:366.084000px;}
.y14e{bottom:367.810500px;}
.y57{bottom:372.199050px;}
.y10e{bottom:374.899800px;}
.y15{bottom:376.041000px;}
.yc3{bottom:383.403750px;}
.y7c{bottom:383.743800px;}
.y9d{bottom:384.424200px;}
.y14d{bottom:387.610500px;}
.yb4{bottom:387.684000px;}
.y14f{bottom:389.849100px;}
.y14{bottom:390.441000px;}
.y1c{bottom:392.309400px;}
.y56{bottom:393.799050px;}
.y131{bottom:395.696550px;}
.y10d{bottom:396.499800px;}
.y32{bottom:400.177200px;}
.y13{bottom:404.841000px;}
.yc2{bottom:405.003750px;}
.y7b{bottom:405.343800px;}
.y9c{bottom:406.024200px;}
.yb3{bottom:409.284000px;}
.y55{bottom:415.399050px;}
.y130{bottom:415.496550px;}
.y10c{bottom:418.099800px;}
.y31{bottom:418.177200px;}
.y14b{bottom:418.834200px;}
.y178{bottom:419.950800px;}
.y12{bottom:423.493050px;}
.yc1{bottom:426.603750px;}
.y7a{bottom:426.943800px;}
.y9b{bottom:427.624200px;}
.yb2{bottom:430.884000px;}
.y5{bottom:434.832150px;}
.y12f{bottom:435.296550px;}
.y30{bottom:436.177200px;}
.y54{bottom:436.999050px;}
.y14a{bottom:438.634200px;}
.y10b{bottom:439.699800px;}
.y14c{bottom:440.872650px;}
.y177{bottom:442.202850px;}
.yc0{bottom:448.203750px;}
.y79{bottom:448.543800px;}
.y9a{bottom:449.224200px;}
.yb1{bottom:452.484000px;}
.y2f{bottom:454.177200px;}
.y16b{bottom:457.029000px;}
.y53{bottom:458.599050px;}
.y11{bottom:459.152850px;}
.y176{bottom:460.202850px;}
.y10a{bottom:461.299800px;}
.y12d{bottom:466.180050px;}
.ybf{bottom:469.803750px;}
.y78{bottom:470.143800px;}
.yf8{bottom:470.484000px;}
.y99{bottom:470.824200px;}
.y149{bottom:472.096200px;}
.y2e{bottom:472.177200px;}
.y10{bottom:473.552850px;}
.yb0{bottom:474.084000px;}
.y16c{bottom:477.729000px;}
.y175{bottom:478.202850px;}
.y16a{bottom:478.629000px;}
.y52{bottom:480.199050px;}
.y109{bottom:482.899800px;}
.y12c{bottom:485.979900px;}
.y12e{bottom:487.779900px;}
.y2d{bottom:490.177200px;}
.ybe{bottom:491.403750px;}
.y77{bottom:491.743800px;}
.y148{bottom:491.896200px;}
.yea{bottom:492.084000px;}
.ye4{bottom:492.424200px;}
.y4{bottom:493.735950px;}
.y174{bottom:496.202850px;}
.y169{bottom:498.429000px;}
.y51{bottom:501.799050px;}
.y108{bottom:504.499800px;}
.y12b{bottom:507.580050px;}
.y2c{bottom:508.177200px;}
.yf{bottom:509.212650px;}
.ybd{bottom:513.003750px;}
.y76{bottom:513.343800px;}
.y98{bottom:513.684000px;}
.ye3{bottom:514.024200px;}
.y173{bottom:514.202850px;}
.yaf{bottom:516.943800px;}
.y50{bottom:523.399050px;}
.ye{bottom:523.612650px;}
.y107{bottom:526.099800px;}
.y2b{bottom:526.177200px;}
.y147{bottom:527.031750px;}
.y167{bottom:530.042400px;}
.y3{bottom:530.388000px;}
.y172{bottom:532.202850px;}
.ybc{bottom:534.603750px;}
.y75{bottom:534.943800px;}
.ye2{bottom:535.624200px;}
.y129{bottom:538.578750px;}
.y2a{bottom:544.177200px;}
.y4f{bottom:544.999050px;}
.y106{bottom:547.699800px;}
.y146{bottom:548.631750px;}
.y171{bottom:550.202850px;}
.y168{bottom:550.886400px;}
.y166{bottom:551.642400px;}
.yae{bottom:552.943800px;}
.y1b{bottom:554.592900px;}
.ybb{bottom:556.203750px;}
.y74{bottom:556.543800px;}
.ye1{bottom:557.224200px;}
.y128{bottom:558.378600px;}
.yd{bottom:559.272600px;}
.y12a{bottom:559.278600px;}
.y29{bottom:562.177200px;}
.y2{bottom:566.388000px;}
.y4e{bottom:566.599050px;}
.y170{bottom:568.202850px;}
.y145{bottom:568.431750px;}
.y105{bottom:569.299800px;}
.yad{bottom:570.943800px;}
.y165{bottom:571.442400px;}
.y97{bottom:577.803750px;}
.y73{bottom:578.143950px;}
.ye0{bottom:578.824200px;}
.y127{bottom:579.978750px;}
.y28{bottom:580.177200px;}
.y16f{bottom:586.202850px;}
.y4d{bottom:588.199050px;}
.yac{bottom:588.943800px;}
.y104{bottom:590.899800px;}
.y164{bottom:591.242400px;}
.yc{bottom:594.932400px;}
.y1a{bottom:595.992900px;}
.y27{bottom:598.177200px;}
.y96{bottom:599.403750px;}
.y144{bottom:599.655300px;}
.y72{bottom:599.743800px;}
.ydf{bottom:600.424200px;}
.yab{bottom:606.943800px;}
.y4c{bottom:609.799050px;}
.y125{bottom:610.862100px;}
.y103{bottom:612.499800px;}
.y26{bottom:616.177200px;}
.y143{bottom:619.455300px;}
.y95{bottom:621.003750px;}
.y71{bottom:621.343800px;}
.yde{bottom:622.024200px;}
.y162{bottom:622.125750px;}
.yaa{bottom:624.943800px;}
.y16e{bottom:629.373600px;}
.yb{bottom:630.592200px;}
.y124{bottom:630.662100px;}
.y1{bottom:631.387350px;}
.y4b{bottom:631.399050px;}
.y126{bottom:632.462100px;}
.y102{bottom:634.099800px;}
.y25{bottom:634.177200px;}
.y19{bottom:640.992900px;}
.y94{bottom:642.603750px;}
.y70{bottom:642.943800px;}
.ydd{bottom:643.624200px;}
.y161{bottom:643.725750px;}
.ya{bottom:644.992200px;}
.y163{bottom:645.064200px;}
.y142{bottom:652.138800px;}
.y24{bottom:652.177200px;}
.y123{bottom:652.262100px;}
.y4a{bottom:652.999050px;}
.y101{bottom:655.699800px;}
.y93{bottom:664.203750px;}
.y6f{bottom:664.543800px;}
.y141{bottom:671.938800px;}
.y15f{bottom:673.149450px;}
.y49{bottom:674.599050px;}
.y100{bottom:677.299800px;}
.y9{bottom:680.652000px;}
.y121{bottom:680.690850px;}
.y92{bottom:685.803750px;}
.y6e{bottom:686.143800px;}
.ydc{bottom:686.484000px;}
.y140{bottom:691.738800px;}
.y15e{bottom:694.749450px;}
.y8{bottom:695.052000px;}
.y160{bottom:696.087900px;}
.y48{bottom:696.199050px;}
.yff{bottom:698.899800px;}
.y120{bottom:700.490850px;}
.y122{bottom:703.285800px;}
.y91{bottom:707.403750px;}
.y23{bottom:707.407950px;}
.y6d{bottom:707.743800px;}
.y47{bottom:717.799050px;}
.yfe{bottom:720.499800px;}
.y13f{bottom:724.422300px;}
.y15c{bottom:724.902900px;}
.y90{bottom:729.003750px;}
.y6c{bottom:729.343800px;}
.y22{bottom:729.660000px;}
.y7{bottom:730.711950px;}
.y11f{bottom:734.284650px;}
.yfd{bottom:742.099800px;}
.y13e{bottom:744.222300px;}
.y6{bottom:745.111950px;}
.y15d{bottom:745.602900px;}
.y15b{bottom:746.502900px;}
.y8f{bottom:750.603750px;}
.y6b{bottom:750.943800px;}
.y21{bottom:753.385950px;}
.y46{bottom:760.658850px;}
.yfc{bottom:763.699800px;}
.y13d{bottom:764.022300px;}
.y15a{bottom:766.303050px;}
.y8e{bottom:772.203750px;}
.y6a{bottom:772.543800px;}
.y11d{bottom:781.378200px;}
.y8d{bottom:793.803750px;}
.y69{bottom:794.143950px;}
.y13c{bottom:795.021000px;}
.y20{bottom:796.245750px;}
.y159{bottom:801.335100px;}
.y11c{bottom:807.230100px;}
.y11e{bottom:808.343100px;}
.y8c{bottom:815.403750px;}
.y68{bottom:815.743800px;}
.y45{bottom:824.778600px;}
.y1f{bottom:825.045750px;}
.y8b{bottom:837.003600px;}
.y44{bottom:842.778600px;}
.y1e{bottom:853.845750px;}
.y18{bottom:856.071750px;}
.y67{bottom:858.603750px;}
.y43{bottom:860.778600px;}
.y41{bottom:944.449500px;}
.y42{bottom:948.188850px;}
.y66{bottom:948.189000px;}
.y40{bottom:957.049500px;}
.y65{bottom:962.589000px;}
.y3f{bottom:969.649500px;}
.h10{height:29.442000px;}
.h11{height:35.826000px;}
.h12{height:40.944000px;}
.h6{height:41.136000px;}
.hf{height:41.424000px;}
.h18{height:41.909647px;}
.h9{height:46.278000px;}
.hc{height:50.400000px;}
.h13{height:50.460000px;}
.hd{height:50.760000px;}
.h1b{height:51.180000px;}
.he{height:51.420000px;}
.h17{height:51.780000px;}
.h19{height:56.562000px;}
.h7{height:58.884000px;}
.h1a{height:60.912000px;}
.hb{height:61.704000px;}
.h15{height:62.136000px;}
.h14{height:62.864471px;}
.h16{height:63.281250px;}
.h5{height:71.988000px;}
.h2{height:73.341882px;}
.ha{height:81.888000px;}
.h4{height:92.556000px;}
.h3{height:105.150000px;}
.h8{height:118.266000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w5{width:616.500000px;}
.w4{width:616.536000px;}
.w3{width:701.250000px;}
.w2{width:701.575500px;}
.w0{width:710.079000px;}
.w1{width:710.250000px;}
.x0{left:0.000000px;}
.x1{left:50.811000px;}
.x20{left:54.000000px;}
.x16{left:63.122850px;}
.xf{left:65.335200px;}
.x9{left:66.901050px;}
.x2{left:68.031450px;}
.x1d{left:74.031450px;}
.x15{left:80.130750px;}
.x13{left:83.291550px;}
.x3{left:85.039350px;}
.x11{left:88.432800px;}
.xa{left:89.858250px;}
.x18{left:91.039350px;}
.x1e{left:95.291250px;}
.x12{left:101.719950px;}
.x7{left:106.299150px;}
.xe{left:107.344950px;}
.x8{left:109.861800px;}
.x17{left:111.296400px;}
.x1a{left:112.299150px;}
.x14{left:126.106350px;}
.xd{left:127.400700px;}
.x10{left:128.430300px;}
.xb{left:263.828850px;}
.x5{left:366.762150px;}
.x6{left:368.320950px;}
.xc{left:390.414900px;}
.x21{left:456.264900px;}
.x1f{left:582.094050px;}
.x1c{left:599.101950px;}
.x1b{left:607.747800px;}
.x4{left:612.321900px;}
.x19{left:616.393500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.312000pt;}
.ls11{letter-spacing:-1.920000pt;}
.lsc{letter-spacing:-1.280000pt;}
.ls4{letter-spacing:-1.024000pt;}
.ls6{letter-spacing:-0.768000pt;}
.ls5{letter-spacing:-0.384000pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.186560pt;}
.ls3{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.213333pt;}
.lsd{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.406933pt;}
.ls1{letter-spacing:0.896000pt;}
.ls2{letter-spacing:2.478933pt;}
.lsb{letter-spacing:2.661867pt;}
.ls8{letter-spacing:7.789333pt;}
.ls9{letter-spacing:9.957333pt;}
.ws46{word-spacing:-63.936000pt;}
.wsad{word-spacing:-16.384000pt;}
.ws28{word-spacing:-16.000000pt;}
.wscc{word-spacing:-15.680000pt;}
.ws64{word-spacing:-15.616000pt;}
.ws11b{word-spacing:-15.104000pt;}
.wsac{word-spacing:-14.720000pt;}
.ws119{word-spacing:-14.400000pt;}
.ws10b{word-spacing:-14.080000pt;}
.ws79{word-spacing:-13.333333pt;}
.ws11a{word-spacing:-13.317333pt;}
.ws45{word-spacing:-12.800000pt;}
.ws11d{word-spacing:-12.496000pt;}
.ws2{word-spacing:-11.360000pt;}
.ws10e{word-spacing:-11.200000pt;}
.wsbc{word-spacing:-10.880000pt;}
.ws2a{word-spacing:-10.666667pt;}
.ws47{word-spacing:-9.642667pt;}
.ws1{word-spacing:-9.600000pt;}
.ws29{word-spacing:-9.328000pt;}
.wscb{word-spacing:-9.141440pt;}
.ws2b{word-spacing:-8.533333pt;}
.ws3{word-spacing:-7.952000pt;}
.wsfb{word-spacing:-5.333333pt;}
.wsff{word-spacing:-5.184000pt;}
.ws118{word-spacing:-4.544000pt;}
.wse6{word-spacing:-4.416000pt;}
.ws117{word-spacing:-3.584000pt;}
.ws104{word-spacing:-3.520000pt;}
.wsfe{word-spacing:-3.392000pt;}
.wse9{word-spacing:-3.264000pt;}
.ws107{word-spacing:-3.200000pt;}
.wsce{word-spacing:-3.136000pt;}
.ws71{word-spacing:-3.072000pt;}
.wsd6{word-spacing:-3.029333pt;}
.wsbe{word-spacing:-3.008000pt;}
.wse5{word-spacing:-2.880000pt;}
.wsb3{word-spacing:-2.816000pt;}
.ws31{word-spacing:-2.752000pt;}
.wsb2{word-spacing:-2.688000pt;}
.wsea{word-spacing:-2.624000pt;}
.wse3{word-spacing:-2.560000pt;}
.ws9a{word-spacing:-2.496000pt;}
.ws7b{word-spacing:-2.453333pt;}
.ws65{word-spacing:-2.368000pt;}
.wsc3{word-spacing:-2.304000pt;}
.ws2d{word-spacing:-2.240000pt;}
.wsdc{word-spacing:-2.176000pt;}
.ws90{word-spacing:-2.112000pt;}
.ws76{word-spacing:-2.048000pt;}
.wsc9{word-spacing:-2.005333pt;}
.wsbd{word-spacing:-1.984000pt;}
.wse8{word-spacing:-1.920000pt;}
.wsd0{word-spacing:-1.856000pt;}
.wsd4{word-spacing:-1.834667pt;}
.wsa9{word-spacing:-1.792000pt;}
.wsbf{word-spacing:-1.728000pt;}
.wsf4{word-spacing:-1.664000pt;}
.ws97{word-spacing:-1.600000pt;}
.ws12{word-spacing:-1.546667pt;}
.ws48{word-spacing:-1.536000pt;}
.ws9b{word-spacing:-1.472000pt;}
.ws44{word-spacing:-1.450667pt;}
.wsb{word-spacing:-1.440000pt;}
.wsd9{word-spacing:-1.408000pt;}
.ws24{word-spacing:-1.365333pt;}
.wsc2{word-spacing:-1.344000pt;}
.ws5d{word-spacing:-1.280000pt;}
.ws8c{word-spacing:-1.216000pt;}
.ws8f{word-spacing:-1.152000pt;}
.wsdb{word-spacing:-1.088000pt;}
.wsa7{word-spacing:-1.066667pt;}
.wsf3{word-spacing:-1.024000pt;}
.ws87{word-spacing:-0.981333pt;}
.ws101{word-spacing:-0.960000pt;}
.wsc8{word-spacing:-0.938667pt;}
.ws3e{word-spacing:-0.896000pt;}
.ws5f{word-spacing:-0.853333pt;}
.ws8e{word-spacing:-0.832000pt;}
.wsa4{word-spacing:-0.810667pt;}
.ws86{word-spacing:-0.768000pt;}
.ws19{word-spacing:-0.746667pt;}
.ws75{word-spacing:-0.725333pt;}
.ws2e{word-spacing:-0.704000pt;}
.wsed{word-spacing:-0.682667pt;}
.wsd7{word-spacing:-0.640000pt;}
.wsd5{word-spacing:-0.597333pt;}
.ws66{word-spacing:-0.576000pt;}
.ws42{word-spacing:-0.512000pt;}
.ws40{word-spacing:-0.469333pt;}
.ws2c{word-spacing:-0.448000pt;}
.ws61{word-spacing:-0.384000pt;}
.wsa3{word-spacing:-0.341333pt;}
.wsa0{word-spacing:-0.320000pt;}
.ws11e{word-spacing:-0.293333pt;}
.ws92{word-spacing:-0.256000pt;}
.ws11c{word-spacing:-0.234667pt;}
.wsc7{word-spacing:-0.213333pt;}
.ws50{word-spacing:-0.192000pt;}
.wsa5{word-spacing:-0.170667pt;}
.ws4f{word-spacing:-0.128000pt;}
.wsc4{word-spacing:-0.085333pt;}
.ws32{word-spacing:-0.064000pt;}
.ws11f{word-spacing:-0.058667pt;}
.ws27{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.ws63{word-spacing:0.042667pt;}
.ws33{word-spacing:0.064000pt;}
.ws23{word-spacing:0.085333pt;}
.ws51{word-spacing:0.128000pt;}
.ws30{word-spacing:0.192000pt;}
.ws96{word-spacing:0.256000pt;}
.ws1a{word-spacing:0.266667pt;}
.ws7e{word-spacing:0.320000pt;}
.ws13{word-spacing:0.373333pt;}
.wsb1{word-spacing:0.384000pt;}
.ws9{word-spacing:0.426667pt;}
.ws69{word-spacing:0.448000pt;}
.ws83{word-spacing:0.469333pt;}
.ws11{word-spacing:0.480000pt;}
.ws9e{word-spacing:0.512000pt;}
.wsa1{word-spacing:0.576000pt;}
.ws82{word-spacing:0.640000pt;}
.wsa6{word-spacing:0.682667pt;}
.ws1e{word-spacing:0.693333pt;}
.ws55{word-spacing:0.704000pt;}
.ws95{word-spacing:0.725333pt;}
.ws1f{word-spacing:0.746667pt;}
.ws3f{word-spacing:0.768000pt;}
.wse7{word-spacing:0.832000pt;}
.wsee{word-spacing:0.853333pt;}
.ws3d{word-spacing:0.896000pt;}
.ws62{word-spacing:0.938667pt;}
.wsc{word-spacing:0.960000pt;}
.ws14{word-spacing:1.013333pt;}
.wsb4{word-spacing:1.024000pt;}
.ws78{word-spacing:1.066667pt;}
.ws67{word-spacing:1.088000pt;}
.ws54{word-spacing:1.152000pt;}
.wsec{word-spacing:1.194667pt;}
.ws36{word-spacing:1.216000pt;}
.ws25{word-spacing:1.237333pt;}
.ws4a{word-spacing:1.280000pt;}
.ws26{word-spacing:1.322667pt;}
.ws8{word-spacing:1.333333pt;}
.ws89{word-spacing:1.344000pt;}
.ws7c{word-spacing:1.386667pt;}
.ws49{word-spacing:1.408000pt;}
.ws3c{word-spacing:1.472000pt;}
.wsa8{word-spacing:1.536000pt;}
.ws91{word-spacing:1.600000pt;}
.ws77{word-spacing:1.664000pt;}
.ws16{word-spacing:1.706667pt;}
.ws10d{word-spacing:1.728000pt;}
.wsa{word-spacing:1.760000pt;}
.ws60{word-spacing:1.792000pt;}
.ws7a{word-spacing:1.856000pt;}
.wsf0{word-spacing:1.877333pt;}
.ws18{word-spacing:1.920000pt;}
.ws53{word-spacing:1.984000pt;}
.wsa2{word-spacing:2.048000pt;}
.ws17{word-spacing:2.080000pt;}
.wsbb{word-spacing:2.112000pt;}
.ws4c{word-spacing:2.176000pt;}
.wsc5{word-spacing:2.218667pt;}
.wscf{word-spacing:2.240000pt;}
.ws20{word-spacing:2.293333pt;}
.wsda{word-spacing:2.304000pt;}
.ws8b{word-spacing:2.368000pt;}
.ws22{word-spacing:2.389333pt;}
.ws21{word-spacing:2.400000pt;}
.ws37{word-spacing:2.432000pt;}
.ws56{word-spacing:2.496000pt;}
.ws9f{word-spacing:2.560000pt;}
.ws5c{word-spacing:2.624000pt;}
.wsb6{word-spacing:2.688000pt;}
.wsd2{word-spacing:2.730667pt;}
.wsf9{word-spacing:2.752000pt;}
.wsca{word-spacing:2.773333pt;}
.ws6f{word-spacing:2.816000pt;}
.wsde{word-spacing:2.944000pt;}
.wsc6{word-spacing:2.986667pt;}
.wsdf{word-spacing:3.008000pt;}
.ws8a{word-spacing:3.072000pt;}
.wseb{word-spacing:3.136000pt;}
.wsab{word-spacing:3.157333pt;}
.ws41{word-spacing:3.200000pt;}
.wsf1{word-spacing:3.264000pt;}
.ws59{word-spacing:3.328000pt;}
.ws4e{word-spacing:3.392000pt;}
.ws35{word-spacing:3.456000pt;}
.ws5e{word-spacing:3.498667pt;}
.ws99{word-spacing:3.520000pt;}
.ws52{word-spacing:3.584000pt;}
.ws9d{word-spacing:3.712000pt;}
.ws4d{word-spacing:3.776000pt;}
.ws7d{word-spacing:3.786667pt;}
.ws2f{word-spacing:3.840000pt;}
.ws73{word-spacing:3.882667pt;}
.wsb7{word-spacing:3.904000pt;}
.ws6a{word-spacing:3.968000pt;}
.ws5a{word-spacing:4.032000pt;}
.wsef{word-spacing:4.053333pt;}
.ws74{word-spacing:4.096000pt;}
.ws43{word-spacing:4.138667pt;}
.ws81{word-spacing:4.160000pt;}
.ws10a{word-spacing:4.288000pt;}
.ws84{word-spacing:4.352000pt;}
.wsba{word-spacing:4.480000pt;}
.wse1{word-spacing:4.544000pt;}
.wsd3{word-spacing:4.608000pt;}
.ws103{word-spacing:4.672000pt;}
.ws6d{word-spacing:4.736000pt;}
.ws1d{word-spacing:4.746667pt;}
.ws88{word-spacing:4.800000pt;}
.ws6e{word-spacing:4.864000pt;}
.ws108{word-spacing:4.928000pt;}
.ws8d{word-spacing:4.992000pt;}
.wsc0{word-spacing:5.056000pt;}
.ws94{word-spacing:5.077333pt;}
.ws10f{word-spacing:5.120000pt;}
.wsf7{word-spacing:5.312000pt;}
.ws3a{word-spacing:5.376000pt;}
.wsaa{word-spacing:5.418667pt;}
.wsfd{word-spacing:5.440000pt;}
.wsfa{word-spacing:5.504000pt;}
.ws110{word-spacing:5.568000pt;}
.ws6c{word-spacing:5.632000pt;}
.wsf5{word-spacing:5.696000pt;}
.ws57{word-spacing:5.760000pt;}
.wse2{word-spacing:5.824000pt;}
.wscd{word-spacing:5.888000pt;}
.wsfc{word-spacing:5.930667pt;}
.wse{word-spacing:6.080000pt;}
.ws85{word-spacing:6.144000pt;}
.ws9c{word-spacing:6.272000pt;}
.ws72{word-spacing:6.314667pt;}
.ws109{word-spacing:6.336000pt;}
.wsae{word-spacing:6.400000pt;}
.wsb5{word-spacing:6.464000pt;}
.wsf8{word-spacing:6.528000pt;}
.ws93{word-spacing:6.592000pt;}
.ws116{word-spacing:6.656000pt;}
.ws98{word-spacing:6.720000pt;}
.wsb8{word-spacing:6.848000pt;}
.wsf6{word-spacing:6.912000pt;}
.wse0{word-spacing:6.976000pt;}
.ws38{word-spacing:7.040000pt;}
.ws1c{word-spacing:7.093333pt;}
.ws100{word-spacing:7.104000pt;}
.ws6b{word-spacing:7.168000pt;}
.ws39{word-spacing:7.424000pt;}
.ws6{word-spacing:7.466667pt;}
.wsd1{word-spacing:7.488000pt;}
.wsc1{word-spacing:7.616000pt;}
.ws5b{word-spacing:7.680000pt;}
.ws4b{word-spacing:7.744000pt;}
.ws1b{word-spacing:7.786667pt;}
.wsaf{word-spacing:7.808000pt;}
.ws58{word-spacing:7.872000pt;}
.ws34{word-spacing:7.936000pt;}
.ws105{word-spacing:8.064000pt;}
.wsf2{word-spacing:8.128000pt;}
.ws70{word-spacing:8.192000pt;}
.wsd{word-spacing:8.426667pt;}
.ws106{word-spacing:8.768000pt;}
.ws112{word-spacing:8.832000pt;}
.ws80{word-spacing:8.896000pt;}
.ws3b{word-spacing:9.024000pt;}
.ws115{word-spacing:9.152000pt;}
.ws7f{word-spacing:9.280000pt;}
.wsdd{word-spacing:9.408000pt;}
.wsb9{word-spacing:9.664000pt;}
.wsb0{word-spacing:9.984000pt;}
.ws68{word-spacing:10.176000pt;}
.ws5{word-spacing:10.560000pt;}
.ws10c{word-spacing:10.816000pt;}
.ws4{word-spacing:11.786667pt;}
.ws114{word-spacing:12.800000pt;}
.ws111{word-spacing:12.928000pt;}
.ws15{word-spacing:13.333333pt;}
.wsd8{word-spacing:14.976000pt;}
.wsf{word-spacing:16.373333pt;}
.ws10{word-spacing:17.546667pt;}
.ws113{word-spacing:19.136000pt;}
.ws7{word-spacing:21.066667pt;}
.wse4{word-spacing:21.418667pt;}
.ws102{word-spacing:22.698667pt;}
._1{margin-left:-1402.165333pt;}
._19{margin-left:-22.870933pt;}
._1b{margin-left:-15.006400pt;}
._1f{margin-left:-12.170667pt;}
._1e{margin-left:-9.706667pt;}
._6{margin-left:-8.331200pt;}
._a{margin-left:-7.181333pt;}
._12{margin-left:-6.054400pt;}
._16{margin-left:-5.120000pt;}
._3{margin-left:-4.224000pt;}
._7{margin-left:-3.052267pt;}
._2{margin-left:-2.146667pt;}
._0{margin-left:-0.896000pt;}
._4{width:1.186133pt;}
._b{width:2.478400pt;}
._15{width:3.702933pt;}
._1a{width:4.729067pt;}
._c{width:5.783467pt;}
._1c{width:7.126933pt;}
._14{width:9.185600pt;}
._1d{width:18.090667pt;}
._13{width:19.370667pt;}
._18{width:21.461333pt;}
._17{width:22.656000pt;}
._11{width:24.960000pt;}
._e{width:35.498667pt;}
._9{width:38.485333pt;}
._f{width:39.466667pt;}
._d{width:40.576000pt;}
._10{width:41.813333pt;}
._8{width:43.264000pt;}
._5{width:45.738667pt;}
.fsa{font-size:37.312000pt;}
.fs9{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fsb{font-size:44.800000pt;}
.fs5{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fsc{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs6{font-size:85.333333pt;}
.fs2{font-size:96.000000pt;}
.fs4{font-size:122.666667pt;}
.fs1{font-size:133.333333pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:56.692933pt;}
.y8a{bottom:94.488133pt;}
.y64{bottom:94.488267pt;}
.y3e{bottom:94.616400pt;}
.y89{bottom:107.288133pt;}
.y63{bottom:107.288267pt;}
.y3d{bottom:107.416400pt;}
.y11b{bottom:110.403333pt;}
.yfa{bottom:111.310400pt;}
.y88{bottom:120.088133pt;}
.y62{bottom:120.088267pt;}
.yf7{bottom:120.088400pt;}
.y3c{bottom:120.216400pt;}
.y116{bottom:122.951333pt;}
.ya9{bottom:123.867733pt;}
.yf6{bottom:123.868000pt;}
.y11a{bottom:129.603333pt;}
.ydb{bottom:129.905600pt;}
.yf9{bottom:130.510400pt;}
.y87{bottom:132.888133pt;}
.y3b{bottom:133.016400pt;}
.ya8{bottom:136.667733pt;}
.y61{bottom:136.667867pt;}
.yf5{bottom:136.668000pt;}
.y115{bottom:142.151333pt;}
.y86{bottom:145.688133pt;}
.y3a{bottom:145.816400pt;}
.y119{bottom:148.803333pt;}
.yda{bottom:149.105600pt;}
.yba{bottom:149.467733pt;}
.y60{bottom:149.467867pt;}
.yf4{bottom:149.468000pt;}
.yef{bottom:149.710400pt;}
.ya7{bottom:153.247200pt;}
.yd5{bottom:158.488133pt;}
.y39{bottom:158.616400pt;}
.y13a{bottom:161.153867pt;}
.y114{bottom:161.351333pt;}
.y85{bottom:162.267733pt;}
.yf3{bottom:162.268000pt;}
.ya6{bottom:166.047200pt;}
.y5f{bottom:166.047600pt;}
.y118{bottom:168.003333pt;}
.yd9{bottom:168.305600pt;}
.yee{bottom:168.910400pt;}
.yd4{bottom:171.288133pt;}
.y38{bottom:171.416400pt;}
.y84{bottom:175.067733pt;}
.y139{bottom:178.753867pt;}
.y5e{bottom:178.847600pt;}
.y13b{bottom:180.353867pt;}
.y113{bottom:180.551333pt;}
.ya5{bottom:182.626800pt;}
.yd3{bottom:184.088133pt;}
.y117{bottom:187.203333pt;}
.yd8{bottom:187.505600pt;}
.y83{bottom:187.867733pt;}
.yed{bottom:188.110400pt;}
.y157{bottom:190.879733pt;}
.y5d{bottom:191.647600pt;}
.ya4{bottom:195.426800pt;}
.yd2{bottom:196.888133pt;}
.y138{bottom:197.953867pt;}
.y112{bottom:199.751333pt;}
.y82{bottom:200.667733pt;}
.y5c{bottom:204.447467pt;}
.yf2{bottom:204.447600pt;}
.yca{bottom:206.403333pt;}
.yd7{bottom:206.705600pt;}
.yec{bottom:207.310400pt;}
.ya3{bottom:208.226800pt;}
.y156{bottom:208.479733pt;}
.yd1{bottom:209.688133pt;}
.y158{bottom:210.469467pt;}
.yf1{bottom:217.247600pt;}
.ya2{bottom:221.026800pt;}
.yd0{bottom:222.488133pt;}
.yc9{bottom:225.603333pt;}
.yd6{bottom:225.905600pt;}
.ye9{bottom:226.267733pt;}
.yeb{bottom:226.510400pt;}
.y137{bottom:229.487733pt;}
.yf0{bottom:230.047600pt;}
.y154{bottom:235.434133pt;}
.y111{bottom:237.848933pt;}
.ycf{bottom:239.067733pt;}
.yc8{bottom:244.803333pt;}
.y81{bottom:245.105600pt;}
.yfb{bottom:245.408000pt;}
.ye5{bottom:245.710400pt;}
.y136{bottom:247.087733pt;}
.yb9{bottom:248.608000pt;}
.yce{bottom:251.867733pt;}
.y5b{bottom:254.043600pt;}
.y153{bottom:254.634133pt;}
.ye8{bottom:255.647200pt;}
.y155{bottom:255.823733pt;}
.yc7{bottom:264.003333pt;}
.y80{bottom:264.305600pt;}
.ycd{bottom:264.667733pt;}
.ya1{bottom:264.910400pt;}
.yb8{bottom:267.808000pt;}
.ye7{bottom:268.447200pt;}
.y5a{bottom:273.243600pt;}
.ycc{bottom:277.467733pt;}
.y134{bottom:280.498800pt;}
.y151{bottom:280.788400pt;}
.ye6{bottom:281.247200pt;}
.yc6{bottom:283.203333pt;}
.y7f{bottom:283.505600pt;}
.ya0{bottom:284.110400pt;}
.yb7{bottom:287.008000pt;}
.y35{bottom:288.815467pt;}
.ycb{bottom:290.267733pt;}
.y59{bottom:292.443600pt;}
.y110{bottom:294.844267pt;}
.y133{bottom:299.698800pt;}
.y150{bottom:299.988400pt;}
.y152{bottom:301.178133pt;}
.y135{bottom:301.298800pt;}
.yc5{bottom:302.403333pt;}
.y7e{bottom:302.705600pt;}
.y9f{bottom:303.310400pt;}
.y34{bottom:304.815467pt;}
.y37{bottom:305.697333pt;}
.yb6{bottom:306.208000pt;}
.y17{bottom:308.658667pt;}
.y58{bottom:311.643600pt;}
.y10f{bottom:314.044267pt;}
.y132{bottom:318.898800pt;}
.y33{bottom:320.815467pt;}
.y16{bottom:321.458667pt;}
.yc4{bottom:321.603333pt;}
.y36{bottom:321.697333pt;}
.y7d{bottom:321.905600pt;}
.y9e{bottom:322.510400pt;}
.y16d{bottom:323.006533pt;}
.yb5{bottom:325.408000pt;}
.y14e{bottom:326.942667pt;}
.y57{bottom:330.843600pt;}
.y10e{bottom:333.244267pt;}
.y15{bottom:334.258667pt;}
.yc3{bottom:340.803333pt;}
.y7c{bottom:341.105600pt;}
.y9d{bottom:341.710400pt;}
.y14d{bottom:344.542667pt;}
.yb4{bottom:344.608000pt;}
.y14f{bottom:346.532533pt;}
.y14{bottom:347.058667pt;}
.y1c{bottom:348.719467pt;}
.y56{bottom:350.043600pt;}
.y131{bottom:351.730267pt;}
.y10d{bottom:352.444267pt;}
.y32{bottom:355.713067pt;}
.y13{bottom:359.858667pt;}
.yc2{bottom:360.003333pt;}
.y7b{bottom:360.305600pt;}
.y9c{bottom:360.910400pt;}
.yb3{bottom:363.808000pt;}
.y55{bottom:369.243600pt;}
.y130{bottom:369.330267pt;}
.y10c{bottom:371.644267pt;}
.y31{bottom:371.713067pt;}
.y14b{bottom:372.297067pt;}
.y178{bottom:373.289600pt;}
.y12{bottom:376.438267pt;}
.yc1{bottom:379.203333pt;}
.y7a{bottom:379.505600pt;}
.y9b{bottom:380.110400pt;}
.yb2{bottom:383.008000pt;}
.y5{bottom:386.517467pt;}
.y12f{bottom:386.930267pt;}
.y30{bottom:387.713067pt;}
.y54{bottom:388.443600pt;}
.y14a{bottom:389.897067pt;}
.y10b{bottom:390.844267pt;}
.y14c{bottom:391.886800pt;}
.y177{bottom:393.069200pt;}
.yc0{bottom:398.403333pt;}
.y79{bottom:398.705600pt;}
.y9a{bottom:399.310400pt;}
.yb1{bottom:402.208000pt;}
.y2f{bottom:403.713067pt;}
.y16b{bottom:406.248000pt;}
.y53{bottom:407.643600pt;}
.y11{bottom:408.135867pt;}
.y176{bottom:409.069200pt;}
.y10a{bottom:410.044267pt;}
.y12d{bottom:414.382267pt;}
.ybf{bottom:417.603333pt;}
.y78{bottom:417.905600pt;}
.yf8{bottom:418.208000pt;}
.y99{bottom:418.510400pt;}
.y149{bottom:419.641067pt;}
.y2e{bottom:419.713067pt;}
.y10{bottom:420.935867pt;}
.yb0{bottom:421.408000pt;}
.y16c{bottom:424.648000pt;}
.y175{bottom:425.069200pt;}
.y16a{bottom:425.448000pt;}
.y52{bottom:426.843600pt;}
.y109{bottom:429.244267pt;}
.y12c{bottom:431.982133pt;}
.y12e{bottom:433.582133pt;}
.y2d{bottom:435.713067pt;}
.ybe{bottom:436.803333pt;}
.y77{bottom:437.105600pt;}
.y148{bottom:437.241067pt;}
.yea{bottom:437.408000pt;}
.ye4{bottom:437.710400pt;}
.y4{bottom:438.876400pt;}
.y174{bottom:441.069200pt;}
.y169{bottom:443.048000pt;}
.y51{bottom:446.043600pt;}
.y108{bottom:448.444267pt;}
.y12b{bottom:451.182267pt;}
.y2c{bottom:451.713067pt;}
.yf{bottom:452.633467pt;}
.ybd{bottom:456.003333pt;}
.y76{bottom:456.305600pt;}
.y98{bottom:456.608000pt;}
.ye3{bottom:456.910400pt;}
.y173{bottom:457.069200pt;}
.yaf{bottom:459.505600pt;}
.y50{bottom:465.243600pt;}
.ye{bottom:465.433467pt;}
.y107{bottom:467.644267pt;}
.y2b{bottom:467.713067pt;}
.y147{bottom:468.472667pt;}
.y167{bottom:471.148800pt;}
.y3{bottom:471.456000pt;}
.y172{bottom:473.069200pt;}
.ybc{bottom:475.203333pt;}
.y75{bottom:475.505600pt;}
.ye2{bottom:476.110400pt;}
.y129{bottom:478.736667pt;}
.y2a{bottom:483.713067pt;}
.y4f{bottom:484.443600pt;}
.y106{bottom:486.844267pt;}
.y146{bottom:487.672667pt;}
.y171{bottom:489.069200pt;}
.y168{bottom:489.676800pt;}
.y166{bottom:490.348800pt;}
.yae{bottom:491.505600pt;}
.y1b{bottom:492.971467pt;}
.ybb{bottom:494.403333pt;}
.y74{bottom:494.705600pt;}
.ye1{bottom:495.310400pt;}
.y128{bottom:496.336533pt;}
.yd{bottom:497.131200pt;}
.y12a{bottom:497.136533pt;}
.y29{bottom:499.713067pt;}
.y2{bottom:503.456000pt;}
.y4e{bottom:503.643600pt;}
.y170{bottom:505.069200pt;}
.y145{bottom:505.272667pt;}
.y105{bottom:506.044267pt;}
.yad{bottom:507.505600pt;}
.y165{bottom:507.948800pt;}
.y97{bottom:513.603333pt;}
.y73{bottom:513.905733pt;}
.ye0{bottom:514.510400pt;}
.y127{bottom:515.536667pt;}
.y28{bottom:515.713067pt;}
.y16f{bottom:521.069200pt;}
.y4d{bottom:522.843600pt;}
.yac{bottom:523.505600pt;}
.y104{bottom:525.244267pt;}
.y164{bottom:525.548800pt;}
.yc{bottom:528.828800pt;}
.y1a{bottom:529.771467pt;}
.y27{bottom:531.713067pt;}
.y96{bottom:532.803333pt;}
.y144{bottom:533.026933pt;}
.y72{bottom:533.105600pt;}
.ydf{bottom:533.710400pt;}
.yab{bottom:539.505600pt;}
.y4c{bottom:542.043600pt;}
.y125{bottom:542.988533pt;}
.y103{bottom:544.444267pt;}
.y26{bottom:547.713067pt;}
.y143{bottom:550.626933pt;}
.y95{bottom:552.003333pt;}
.y71{bottom:552.305600pt;}
.yde{bottom:552.910400pt;}
.y162{bottom:553.000667pt;}
.yaa{bottom:555.505600pt;}
.y16e{bottom:559.443200pt;}
.yb{bottom:560.526400pt;}
.y124{bottom:560.588533pt;}
.y1{bottom:561.233200pt;}
.y4b{bottom:561.243600pt;}
.y126{bottom:562.188533pt;}
.y102{bottom:563.644267pt;}
.y25{bottom:563.713067pt;}
.y19{bottom:569.771467pt;}
.y94{bottom:571.203333pt;}
.y70{bottom:571.505600pt;}
.ydd{bottom:572.110400pt;}
.y161{bottom:572.200667pt;}
.ya{bottom:573.326400pt;}
.y163{bottom:573.390400pt;}
.y142{bottom:579.678933pt;}
.y24{bottom:579.713067pt;}
.y123{bottom:579.788533pt;}
.y4a{bottom:580.443600pt;}
.y101{bottom:582.844267pt;}
.y93{bottom:590.403333pt;}
.y6f{bottom:590.705600pt;}
.y141{bottom:597.278933pt;}
.y15f{bottom:598.355067pt;}
.y49{bottom:599.643600pt;}
.y100{bottom:602.044267pt;}
.y9{bottom:605.024000pt;}
.y121{bottom:605.058533pt;}
.y92{bottom:609.603333pt;}
.y6e{bottom:609.905600pt;}
.ydc{bottom:610.208000pt;}
.y140{bottom:614.878933pt;}
.y15e{bottom:617.555067pt;}
.y8{bottom:617.824000pt;}
.y160{bottom:618.744800pt;}
.y48{bottom:618.843600pt;}
.yff{bottom:621.244267pt;}
.y120{bottom:622.658533pt;}
.y122{bottom:625.142933pt;}
.y91{bottom:628.803333pt;}
.y23{bottom:628.807067pt;}
.y6d{bottom:629.105600pt;}
.y47{bottom:638.043600pt;}
.yfe{bottom:640.444267pt;}
.y13f{bottom:643.930933pt;}
.y15c{bottom:644.358133pt;}
.y90{bottom:648.003333pt;}
.y6c{bottom:648.305600pt;}
.y22{bottom:648.586667pt;}
.y7{bottom:649.521733pt;}
.y11f{bottom:652.697467pt;}
.yfd{bottom:659.644267pt;}
.y13e{bottom:661.530933pt;}
.y6{bottom:662.321733pt;}
.y15d{bottom:662.758133pt;}
.y15b{bottom:663.558133pt;}
.y8f{bottom:667.203333pt;}
.y6b{bottom:667.505600pt;}
.y21{bottom:669.676400pt;}
.y46{bottom:676.141200pt;}
.yfc{bottom:678.844267pt;}
.y13d{bottom:679.130933pt;}
.y15a{bottom:681.158267pt;}
.y8e{bottom:686.403333pt;}
.y6a{bottom:686.705600pt;}
.y11d{bottom:694.558400pt;}
.y8d{bottom:705.603333pt;}
.y69{bottom:705.905733pt;}
.y13c{bottom:706.685333pt;}
.y20{bottom:707.774000pt;}
.y159{bottom:712.297867pt;}
.y11c{bottom:717.537867pt;}
.y11e{bottom:718.527200pt;}
.y8c{bottom:724.803333pt;}
.y68{bottom:725.105600pt;}
.y45{bottom:733.136533pt;}
.y1f{bottom:733.374000pt;}
.y8b{bottom:744.003200pt;}
.y44{bottom:749.136533pt;}
.y1e{bottom:758.974000pt;}
.y18{bottom:760.952667pt;}
.y67{bottom:763.203333pt;}
.y43{bottom:765.136533pt;}
.y41{bottom:839.510667pt;}
.y42{bottom:842.834533pt;}
.y66{bottom:842.834667pt;}
.y40{bottom:850.710667pt;}
.y65{bottom:855.634667pt;}
.y3f{bottom:861.910667pt;}
.h10{height:26.170667pt;}
.h11{height:31.845333pt;}
.h12{height:36.394667pt;}
.h6{height:36.565333pt;}
.hf{height:36.821333pt;}
.h18{height:37.253020pt;}
.h9{height:41.136000pt;}
.hc{height:44.800000pt;}
.h13{height:44.853333pt;}
.hd{height:45.120000pt;}
.h1b{height:45.493333pt;}
.he{height:45.706667pt;}
.h17{height:46.026667pt;}
.h19{height:50.277333pt;}
.h7{height:52.341333pt;}
.h1a{height:54.144000pt;}
.hb{height:54.848000pt;}
.h15{height:55.232000pt;}
.h14{height:55.879529pt;}
.h16{height:56.250000pt;}
.h5{height:63.989333pt;}
.h2{height:65.192784pt;}
.ha{height:72.789333pt;}
.h4{height:82.272000pt;}
.h3{height:93.466667pt;}
.h8{height:105.125333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w5{width:548.000000pt;}
.w4{width:548.032000pt;}
.w3{width:623.333333pt;}
.w2{width:623.622667pt;}
.w0{width:631.181333pt;}
.w1{width:631.333333pt;}
.x0{left:0.000000pt;}
.x1{left:45.165333pt;}
.x20{left:48.000000pt;}
.x16{left:56.109200pt;}
.xf{left:58.075733pt;}
.x9{left:59.467600pt;}
.x2{left:60.472400pt;}
.x1d{left:65.805733pt;}
.x15{left:71.227333pt;}
.x13{left:74.036933pt;}
.x3{left:75.590533pt;}
.x11{left:78.606933pt;}
.xa{left:79.874000pt;}
.x18{left:80.923867pt;}
.x1e{left:84.703333pt;}
.x12{left:90.417733pt;}
.x7{left:94.488133pt;}
.xe{left:95.417733pt;}
.x8{left:97.654933pt;}
.x17{left:98.930133pt;}
.x1a{left:99.821467pt;}
.x14{left:112.094533pt;}
.xd{left:113.245067pt;}
.x10{left:114.160267pt;}
.xb{left:234.514533pt;}
.x5{left:326.010800pt;}
.x6{left:327.396400pt;}
.xc{left:347.035467pt;}
.x21{left:405.568800pt;}
.x1f{left:517.416933pt;}
.x1c{left:532.535067pt;}
.x1b{left:540.220267pt;}
.x4{left:544.286133pt;}
.x19{left:547.905333pt;}
}




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