
    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_f261eb239254aeedc6d3a70c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b15570b6681649091e41e1a5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a440a515b9f124deaac99260.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_dd242b579d315b80c739d802.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e12be3dd22ff3db5ad45bf00.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939453;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_9adce2c5aed3ac0b21616e31.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.939453;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_35d7a9ed039da8e1fda90bc5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d811ba681e7860f8282c8fcd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_118fe392ec453257e909fd4c.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d3798145a1bcf201981e0a12.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_0e360d912e6190ed30e93d5a.woff2')format("woff");}.ffb{font-family:ffb;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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_13346940f144c443c4d83987.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.887695;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.702000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.620000px;}
.v4{vertical-align:28.263000px;}
.v1{vertical-align:30.384000px;}
.v3{vertical-align:32.976000px;}
.ls75{letter-spacing:-2.640000px;}
.ls48{letter-spacing:-2.220000px;}
.ls2d{letter-spacing:-1.776000px;}
.ls11{letter-spacing:-0.780000px;}
.ls12{letter-spacing:-0.480000px;}
.ls14{letter-spacing:-0.420000px;}
.ls49{letter-spacing:-0.240000px;}
.ls27{letter-spacing:-0.180000px;}
.ls25{letter-spacing:-0.120000px;}
.ls5c{letter-spacing:-0.084000px;}
.ls26{letter-spacing:-0.060000px;}
.ls6c{letter-spacing:-0.048000px;}
.ls5b{letter-spacing:-0.042000px;}
.ls10{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.001008px;}
.ls0{letter-spacing:0.003000px;}
.ls1{letter-spacing:0.007008px;}
.ls6b{letter-spacing:0.048000px;}
.ls1a{letter-spacing:0.060000px;}
.ls3{letter-spacing:0.069600px;}
.ls4d{letter-spacing:0.096000px;}
.ls1c{letter-spacing:0.120000px;}
.ls69{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.180000px;}
.ls6d{letter-spacing:0.192000px;}
.ls1d{letter-spacing:0.240000px;}
.ls17{letter-spacing:0.300000px;}
.ls6a{letter-spacing:0.336000px;}
.ls4e{letter-spacing:0.360000px;}
.ls70{letter-spacing:0.384000px;}
.ls15{letter-spacing:0.420000px;}
.ls68{letter-spacing:0.432000px;}
.ls52{letter-spacing:0.434400px;}
.ls5{letter-spacing:0.480000px;}
.ls21{letter-spacing:0.540000px;}
.ls62{letter-spacing:0.576000px;}
.ls6{letter-spacing:0.600000px;}
.ls63{letter-spacing:0.624000px;}
.lsc{letter-spacing:0.660000px;}
.ls23{letter-spacing:0.720000px;}
.ls65{letter-spacing:0.768000px;}
.lsb{letter-spacing:0.780000px;}
.ls73{letter-spacing:0.816000px;}
.ls28{letter-spacing:0.840000px;}
.ls40{letter-spacing:0.900000px;}
.ls1b{letter-spacing:0.960000px;}
.lsa{letter-spacing:1.020000px;}
.ls9{letter-spacing:1.080000px;}
.ls55{letter-spacing:1.104000px;}
.ls29{letter-spacing:1.140000px;}
.ls22{letter-spacing:1.200000px;}
.ls42{letter-spacing:1.260000px;}
.ls2b{letter-spacing:1.320000px;}
.ls34{letter-spacing:1.380000px;}
.ls6e{letter-spacing:1.392000px;}
.ls36{letter-spacing:1.440000px;}
.ls4b{letter-spacing:1.500000px;}
.ls41{letter-spacing:1.560000px;}
.ls57{letter-spacing:1.620000px;}
.ls47{letter-spacing:1.680000px;}
.ls6f{letter-spacing:1.728000px;}
.lse{letter-spacing:1.740000px;}
.ls45{letter-spacing:1.800000px;}
.ls66{letter-spacing:1.824000px;}
.ls39{letter-spacing:1.860000px;}
.ls64{letter-spacing:1.872000px;}
.ls38{letter-spacing:1.920000px;}
.ls4a{letter-spacing:1.980000px;}
.ls72{letter-spacing:2.016000px;}
.ls35{letter-spacing:2.040000px;}
.ls24{letter-spacing:2.100000px;}
.ls20{letter-spacing:2.160000px;}
.ls1f{letter-spacing:2.220000px;}
.ls7{letter-spacing:2.280000px;}
.lsd{letter-spacing:2.340000px;}
.ls31{letter-spacing:2.400000px;}
.ls1e{letter-spacing:2.460000px;}
.ls30{letter-spacing:2.520000px;}
.ls2a{letter-spacing:2.580000px;}
.ls3d{letter-spacing:2.640000px;}
.ls51{letter-spacing:2.700000px;}
.ls8{letter-spacing:2.760000px;}
.ls37{letter-spacing:2.820000px;}
.ls58{letter-spacing:2.880000px;}
.ls13{letter-spacing:2.940000px;}
.ls3f{letter-spacing:3.000000px;}
.ls59{letter-spacing:3.180000px;}
.ls18{letter-spacing:3.240000px;}
.ls61{letter-spacing:3.264000px;}
.ls4{letter-spacing:3.300000px;}
.ls50{letter-spacing:3.600000px;}
.ls4c{letter-spacing:3.648000px;}
.ls2f{letter-spacing:3.660000px;}
.ls3a{letter-spacing:3.720000px;}
.ls74{letter-spacing:3.744000px;}
.ls5f{letter-spacing:3.840000px;}
.ls43{letter-spacing:3.900000px;}
.ls2c{letter-spacing:4.080000px;}
.ls46{letter-spacing:4.140000px;}
.ls56{letter-spacing:4.200000px;}
.ls19{letter-spacing:4.260000px;}
.ls71{letter-spacing:4.800000px;}
.ls3e{letter-spacing:4.860000px;}
.ls5e{letter-spacing:5.220000px;}
.ls32{letter-spacing:5.280000px;}
.ls5d{letter-spacing:5.460000px;}
.ls3b{letter-spacing:5.700000px;}
.ls53{letter-spacing:5.760000px;}
.ls67{letter-spacing:5.808000px;}
.lsf{letter-spacing:6.000000px;}
.ls3c{letter-spacing:6.240000px;}
.ls4f{letter-spacing:6.420000px;}
.ls33{letter-spacing:6.480000px;}
.ls2e{letter-spacing:6.720000px;}
.ls54{letter-spacing:6.900000px;}
.ls60{letter-spacing:7.500000px;}
.ls5a{letter-spacing:8.100000px;}
.ls44{letter-spacing:8.640000px;}
.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;}
}
.ws3f{word-spacing:-23.640000px;}
.ws3c{word-spacing:-21.240000px;}
.ws38{word-spacing:-20.280000px;}
.ws63{word-spacing:-18.240000px;}
.ws71{word-spacing:-18.180000px;}
.ws4{word-spacing:-17.760000px;}
.ws3a{word-spacing:-17.460000px;}
.ws9d{word-spacing:-17.280000px;}
.ws65{word-spacing:-16.920000px;}
.ws99{word-spacing:-16.800000px;}
.ws6f{word-spacing:-16.740000px;}
.ws2{word-spacing:-16.680000px;}
.ws62{word-spacing:-16.440000px;}
.ws61{word-spacing:-16.320000px;}
.ws3e{word-spacing:-16.200000px;}
.ws66{word-spacing:-16.080000px;}
.ws5{word-spacing:-16.020000px;}
.ws60{word-spacing:-15.960000px;}
.ws39{word-spacing:-15.780000px;}
.ws9c{word-spacing:-15.744000px;}
.ws64{word-spacing:-15.720000px;}
.ws7d{word-spacing:-15.480000px;}
.ws70{word-spacing:-15.360000px;}
.ws1c{word-spacing:-15.180000px;}
.ws1b{word-spacing:-14.880000px;}
.ws3{word-spacing:-14.520000px;}
.ws81{word-spacing:-13.824000px;}
.ws3b{word-spacing:-13.500000px;}
.ws97{word-spacing:-13.392000px;}
.ws1d{word-spacing:-13.344000px;}
.ws6c{word-spacing:-13.104000px;}
.ws80{word-spacing:-12.960000px;}
.ws3d{word-spacing:-12.780000px;}
.ws7f{word-spacing:-12.624000px;}
.ws98{word-spacing:-12.576000px;}
.ws9a{word-spacing:-12.144000px;}
.ws82{word-spacing:-12.048000px;}
.ws31{word-spacing:-12.000000px;}
.ws7e{word-spacing:-11.952000px;}
.ws1{word-spacing:-10.842000px;}
.ws0{word-spacing:-10.211496px;}
.ws9b{word-spacing:-9.360000px;}
.ws59{word-spacing:-8.640000px;}
.ws88{word-spacing:-7.500000px;}
.ws40{word-spacing:-6.720000px;}
.ws46{word-spacing:-6.480000px;}
.ws50{word-spacing:-6.240000px;}
.ws45{word-spacing:-5.280000px;}
.ws86{word-spacing:-5.220000px;}
.ws52{word-spacing:-4.860000px;}
.wsa1{word-spacing:-4.800000px;}
.ws8{word-spacing:-4.686000px;}
.ws26{word-spacing:-4.260000px;}
.ws76{word-spacing:-4.200000px;}
.ws4d{word-spacing:-4.140000px;}
.ws36{word-spacing:-4.080000px;}
.ws58{word-spacing:-3.900000px;}
.wsa4{word-spacing:-3.744000px;}
.ws4e{word-spacing:-3.720000px;}
.ws41{word-spacing:-3.660000px;}
.ws93{word-spacing:-3.648000px;}
.ws69{word-spacing:-3.600000px;}
.wsc{word-spacing:-3.300000px;}
.ws8c{word-spacing:-3.264000px;}
.ws25{word-spacing:-3.240000px;}
.ws79{word-spacing:-3.180000px;}
.ws54{word-spacing:-3.000000px;}
.ws10{word-spacing:-2.940000px;}
.ws7{word-spacing:-2.886000px;}
.ws78{word-spacing:-2.880000px;}
.ws49{word-spacing:-2.820000px;}
.ws11{word-spacing:-2.760000px;}
.ws89{word-spacing:-2.700000px;}
.ws51{word-spacing:-2.640000px;}
.ws34{word-spacing:-2.580000px;}
.ws42{word-spacing:-2.520000px;}
.ws29{word-spacing:-2.460000px;}
.ws43{word-spacing:-2.400000px;}
.ws17{word-spacing:-2.340000px;}
.wsf{word-spacing:-2.280000px;}
.ws23{word-spacing:-2.220000px;}
.ws2b{word-spacing:-2.160000px;}
.ws2e{word-spacing:-2.100000px;}
.ws48{word-spacing:-2.040000px;}
.wsa2{word-spacing:-2.016000px;}
.ws75{word-spacing:-1.980000px;}
.ws4b{word-spacing:-1.920000px;}
.ws8f{word-spacing:-1.872000px;}
.ws4c{word-spacing:-1.860000px;}
.ws91{word-spacing:-1.824000px;}
.ws5a{word-spacing:-1.800000px;}
.ws18{word-spacing:-1.740000px;}
.ws9f{word-spacing:-1.728000px;}
.ws4f{word-spacing:-1.680000px;}
.ws77{word-spacing:-1.620000px;}
.ws56{word-spacing:-1.560000px;}
.ws5b{word-spacing:-1.500000px;}
.ws47{word-spacing:-1.440000px;}
.ws9e{word-spacing:-1.392000px;}
.ws35{word-spacing:-1.380000px;}
.ws68{word-spacing:-1.320000px;}
.ws57{word-spacing:-1.260000px;}
.ws2c{word-spacing:-1.200000px;}
.ws83{word-spacing:-1.140000px;}
.ws6e{word-spacing:-1.104000px;}
.ws12{word-spacing:-1.080000px;}
.ws14{word-spacing:-1.020000px;}
.ws33{word-spacing:-0.960000px;}
.ws32{word-spacing:-0.900000px;}
.ws15{word-spacing:-0.840000px;}
.wsa3{word-spacing:-0.816000px;}
.ws1a{word-spacing:-0.780000px;}
.ws90{word-spacing:-0.768000px;}
.ws2d{word-spacing:-0.720000px;}
.ws16{word-spacing:-0.660000px;}
.ws8e{word-spacing:-0.624000px;}
.wse{word-spacing:-0.600000px;}
.ws8d{word-spacing:-0.576000px;}
.ws4a{word-spacing:-0.540000px;}
.wsd{word-spacing:-0.480000px;}
.ws92{word-spacing:-0.432000px;}
.ws1e{word-spacing:-0.420000px;}
.wsa0{word-spacing:-0.384000px;}
.ws67{word-spacing:-0.360000px;}
.ws8a{word-spacing:-0.336000px;}
.ws21{word-spacing:-0.300000px;}
.ws1f{word-spacing:-0.240000px;}
.ws95{word-spacing:-0.192000px;}
.ws20{word-spacing:-0.180000px;}
.ws94{word-spacing:-0.144000px;}
.ws28{word-spacing:-0.120000px;}
.ws5f{word-spacing:-0.096000px;}
.ws27{word-spacing:-0.060000px;}
.ws96{word-spacing:-0.048000px;}
.ws6{word-spacing:0.000000px;}
.ws7b{word-spacing:0.042000px;}
.ws8b{word-spacing:0.048000px;}
.ws24{word-spacing:0.060000px;}
.ws7c{word-spacing:0.084000px;}
.ws22{word-spacing:0.120000px;}
.ws2a{word-spacing:0.180000px;}
.ws53{word-spacing:0.240000px;}
.ws37{word-spacing:0.360000px;}
.ws13{word-spacing:0.420000px;}
.wsb{word-spacing:0.480000px;}
.ws84{word-spacing:0.540000px;}
.ws6b{word-spacing:1.080000px;}
.ws7a{word-spacing:1.500000px;}
.ws55{word-spacing:1.860000px;}
.ws2f{word-spacing:2.064000px;}
.ws85{word-spacing:2.160000px;}
.ws74{word-spacing:2.220000px;}
.ws5c{word-spacing:3.648000px;}
.ws5d{word-spacing:3.936000px;}
.ws6d{word-spacing:3.984000px;}
.ws5e{word-spacing:4.032000px;}
.ws6a{word-spacing:4.260000px;}
.ws44{word-spacing:4.920000px;}
.ws19{word-spacing:4.980000px;}
.ws87{word-spacing:5.520000px;}
.ws9{word-spacing:41.850000px;}
.wsa{word-spacing:49.146000px;}
.ws72{word-spacing:308.196000px;}
.ws73{word-spacing:326.718000px;}
.ws30{word-spacing:666.192000px;}
._d{margin-left:-2898.096000px;}
._3e{margin-left:-2874.288000px;}
._42{margin-left:-9.000000px;}
._e{margin-left:-6.840000px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-3.432000px;}
._0{margin-left:-2.310000px;}
._8{margin-left:-1.020000px;}
._a{width:1.080000px;}
._7{width:2.088000px;}
._4{width:3.432000px;}
._b{width:4.440000px;}
._5{width:5.460000px;}
._6{width:7.200000px;}
._3{width:8.220000px;}
._c{width:9.240000px;}
._40{width:10.512000px;}
._3f{width:11.700000px;}
._41{width:13.800000px;}
._9{width:21.000000px;}
._59{width:144.396000px;}
._48{width:151.536000px;}
._4a{width:159.852000px;}
._49{width:167.358000px;}
._47{width:177.198000px;}
._43{width:185.250000px;}
._4c{width:198.408000px;}
._44{width:204.204000px;}
._45{width:213.822000px;}
._54{width:218.274000px;}
._56{width:227.010000px;}
._4e{width:236.922000px;}
._4d{width:240.450000px;}
._52{width:249.690000px;}
._4f{width:253.890000px;}
._53{width:255.528000px;}
._58{width:264.390000px;}
._50{width:274.470000px;}
._57{width:288.792000px;}
._5b{width:290.010000px;}
._46{width:298.074000px;}
._65{width:337.218000px;}
._62{width:354.228000px;}
._55{width:366.912000px;}
._5e{width:368.718000px;}
._63{width:371.238000px;}
._5d{width:379.218000px;}
._5f{width:385.728000px;}
._4b{width:390.810000px;}
._51{width:399.798000px;}
._60{width:413.238000px;}
._5c{width:414.696000px;}
._5a{width:443.898000px;}
._10{width:491.568000px;}
._64{width:515.088000px;}
._12{width:554.880000px;}
._24{width:579.744000px;}
._37{width:584.544000px;}
._61{width:595.182000px;}
._1a{width:602.880000px;}
._21{width:624.864000px;}
._3a{width:672.288000px;}
._2e{width:673.728000px;}
._38{width:690.864000px;}
._35{width:696.864000px;}
._3c{width:708.864000px;}
._31{width:732.864000px;}
._36{width:837.558000px;}
._34{width:840.246000px;}
._3d{width:979.824000px;}
._25{width:995.184000px;}
._26{width:1025.856000px;}
._1d{width:1031.136000px;}
._1e{width:1048.464000px;}
._33{width:1065.168000px;}
._f{width:1069.968000px;}
._23{width:1073.808000px;}
._1f{width:1076.448000px;}
._22{width:1085.808000px;}
._20{width:1102.512000px;}
._3b{width:1114.464000px;}
._1b{width:1149.744000px;}
._2b{width:1153.680000px;}
._15{width:1155.120000px;}
._13{width:1163.088000px;}
._16{width:1164.480000px;}
._2a{width:1168.416000px;}
._2c{width:1172.448000px;}
._1c{width:1187.040000px;}
._19{width:1188.432000px;}
._11{width:1192.416000px;}
._39{width:1215.792000px;}
._14{width:1229.760000px;}
._28{width:1251.120000px;}
._27{width:1261.680000px;}
._29{width:1272.336000px;}
._18{width:1280.352000px;}
._17{width:1283.040000px;}
._2f{width:1303.728000px;}
._2d{width:1333.056000px;}
._30{width:1353.024000px;}
._32{width:1368.624000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.232000px;}
.fsb{font-size:34.980000px;}
.fs4{font-size:36.732000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y30{bottom:47.777250px;}
.y53{bottom:82.822500px;}
.yb1{bottom:82.839000px;}
.yb3{bottom:83.275800px;}
.yd6{bottom:83.365350px;}
.yb6{bottom:83.677650px;}
.yad{bottom:83.770350px;}
.y2d{bottom:88.026750px;}
.y9f{bottom:90.970350px;}
.yd4{bottom:90.994500px;}
.y84{bottom:91.823250px;}
.y102{bottom:92.121900px;}
.y52{bottom:98.566500px;}
.yb0{bottom:98.583000px;}
.yb5{bottom:99.421650px;}
.yac{bottom:101.770350px;}
.y2c{bottom:103.023000px;}
.y101{bottom:107.121900px;}
.y83{bottom:108.071250px;}
.y9e{bottom:108.970350px;}
.yb4{bottom:115.165650px;}
.yd3{bottom:118.504500px;}
.yab{bottom:119.770350px;}
.y100{bottom:122.121900px;}
.y82{bottom:124.319250px;}
.y9d{bottom:126.970350px;}
.yff{bottom:137.121900px;}
.yaa{bottom:137.770350px;}
.y81{bottom:140.567250px;}
.yd2{bottom:146.014500px;}
.yfe{bottom:152.121900px;}
.ya9{bottom:155.770350px;}
.y80{bottom:156.815250px;}
.y9c{bottom:161.811000px;}
.y29{bottom:165.691650px;}
.yfd{bottom:167.121900px;}
.y7f{bottom:173.063250px;}
.yd1{bottom:173.524500px;}
.ya8{bottom:173.770350px;}
.y9b{bottom:177.417000px;}
.yfc{bottom:182.121900px;}
.y28{bottom:183.691650px;}
.y7e{bottom:189.311250px;}
.ya7{bottom:191.770350px;}
.y9a{bottom:191.785350px;}
.yfb{bottom:197.121900px;}
.yd0{bottom:201.034500px;}
.y27{bottom:201.691650px;}
.y7d{bottom:205.559250px;}
.ycf{bottom:208.542000px;}
.y99{bottom:209.380350px;}
.ya6{bottom:209.770350px;}
.yfa{bottom:212.121900px;}
.y26{bottom:219.691650px;}
.y7c{bottom:221.807250px;}
.yf9{bottom:227.121900px;}
.y98{bottom:227.380350px;}
.ya5{bottom:227.770350px;}
.y25{bottom:237.691650px;}
.y7b{bottom:238.055250px;}
.yf8{bottom:242.121900px;}
.yce{bottom:243.549000px;}
.ycd{bottom:243.559500px;}
.y97{bottom:245.380350px;}
.ya4{bottom:245.770350px;}
.y7a{bottom:254.303250px;}
.y24{bottom:255.691650px;}
.yf7{bottom:257.121900px;}
.ycc{bottom:258.564000px;}
.ya3{bottom:263.770350px;}
.y79{bottom:270.551250px;}
.yf6{bottom:272.121900px;}
.y23{bottom:273.691650px;}
.y96{bottom:281.230350px;}
.ya2{bottom:281.770350px;}
.yca{bottom:286.074000px;}
.yc9{bottom:286.084500px;}
.y78{bottom:286.799250px;}
.yf5{bottom:287.121900px;}
.y22{bottom:291.691650px;}
.ya1{bottom:299.770350px;}
.ycb{bottom:301.078500px;}
.yc8{bottom:301.089000px;}
.yf4{bottom:302.121900px;}
.y77{bottom:303.047250px;}
.y21{bottom:309.691650px;}
.yf3{bottom:317.121900px;}
.ya0{bottom:317.770350px;}
.y76{bottom:319.295250px;}
.y20{bottom:327.691650px;}
.yc7{bottom:328.599000px;}
.yf2{bottom:332.121900px;}
.y75{bottom:335.543250px;}
.y95{bottom:335.770350px;}
.yaf{bottom:342.936750px;}
.y1f{bottom:345.691650px;}
.yf1{bottom:347.121900px;}
.y74{bottom:351.791250px;}
.y94{bottom:353.770350px;}
.yc5{bottom:356.109000px;}
.yae{bottom:358.680750px;}
.yf0{bottom:362.121900px;}
.yc4{bottom:363.616500px;}
.y2b{bottom:363.691650px;}
.y73{bottom:368.039250px;}
.yc6{bottom:371.113500px;}
.y93{bottom:371.770350px;}
.yef{bottom:377.121900px;}
.y1e{bottom:381.288900px;}
.y2a{bottom:381.691650px;}
.y72{bottom:384.287250px;}
.y92{bottom:389.770350px;}
.yee{bottom:392.121900px;}
.yc3{bottom:398.623500px;}
.yc2{bottom:398.634000px;}
.y71{bottom:400.535250px;}
.yed{bottom:407.121900px;}
.y91{bottom:407.770350px;}
.yc1{bottom:413.638500px;}
.y70{bottom:416.783250px;}
.yec{bottom:422.121900px;}
.y90{bottom:425.770350px;}
.y6f{bottom:433.031250px;}
.yeb{bottom:437.121900px;}
.y8f{bottom:443.770350px;}
.yc0{bottom:444.403500px;}
.y6e{bottom:449.279250px;}
.yea{bottom:452.121900px;}
.y1d{bottom:455.308500px;}
.y8e{bottom:461.770350px;}
.y6d{bottom:465.527250px;}
.ye9{bottom:467.121900px;}
.y12a{bottom:470.263500px;}
.y1c{bottom:473.314200px;}
.ybf{bottom:478.810350px;}
.y8d{bottom:479.770350px;}
.y6c{bottom:481.775250px;}
.ye8{bottom:482.121900px;}
.y129{bottom:485.263500px;}
.ye7{bottom:497.121900px;}
.y8c{bottom:497.770350px;}
.y6b{bottom:498.023250px;}
.ybe{bottom:498.310350px;}
.y128{bottom:500.263500px;}
.y1b{bottom:500.659200px;}
.ye6{bottom:512.121900px;}
.y6a{bottom:514.271250px;}
.y127{bottom:515.263500px;}
.yd5{bottom:515.365350px;}
.y8b{bottom:515.770350px;}
.y1a{bottom:518.659200px;}
.ye5{bottom:527.121900px;}
.y126{bottom:530.263500px;}
.y69{bottom:530.519250px;}
.y8a{bottom:533.770350px;}
.y19{bottom:536.659200px;}
.ye4{bottom:542.121900px;}
.y125{bottom:545.263500px;}
.y68{bottom:546.767250px;}
.ybd{bottom:551.635350px;}
.y89{bottom:551.770350px;}
.y18{bottom:554.659200px;}
.ye3{bottom:557.121900px;}
.y124{bottom:560.263500px;}
.y67{bottom:563.015250px;}
.ybc{bottom:569.635350px;}
.y88{bottom:569.770350px;}
.ye2{bottom:572.121900px;}
.y17{bottom:572.659200px;}
.y123{bottom:575.263500px;}
.y66{bottom:579.263250px;}
.ye1{bottom:587.121900px;}
.ybb{bottom:587.635350px;}
.y87{bottom:587.770350px;}
.y122{bottom:590.263500px;}
.y16{bottom:590.659200px;}
.y65{bottom:595.511250px;}
.ye0{bottom:602.121900px;}
.y121{bottom:605.263500px;}
.yba{bottom:605.635350px;}
.y86{bottom:605.770350px;}
.y15{bottom:608.659200px;}
.y64{bottom:611.759250px;}
.ydf{bottom:617.121900px;}
.y120{bottom:620.263500px;}
.yb9{bottom:623.635350px;}
.y85{bottom:623.770350px;}
.y14{bottom:626.659200px;}
.y63{bottom:628.007250px;}
.yde{bottom:632.121900px;}
.y11f{bottom:635.263500px;}
.y44{bottom:641.635350px;}
.y51{bottom:641.770350px;}
.y62{bottom:644.255250px;}
.y13{bottom:644.659200px;}
.ydd{bottom:647.121900px;}
.y11e{bottom:650.263500px;}
.y43{bottom:659.635350px;}
.y50{bottom:659.770350px;}
.y61{bottom:660.503250px;}
.ydc{bottom:662.121900px;}
.y11d{bottom:665.263500px;}
.y60{bottom:676.751250px;}
.y42{bottom:677.635350px;}
.y4f{bottom:677.770350px;}
.y11c{bottom:680.263500px;}
.y12{bottom:689.815500px;}
.y5f{bottom:692.999250px;}
.ydb{bottom:695.230350px;}
.y11b{bottom:695.263500px;}
.y41{bottom:695.635350px;}
.y4e{bottom:695.770350px;}
.y11{bottom:701.890500px;}
.y5e{bottom:709.247250px;}
.y11a{bottom:710.263500px;}
.yb8{bottom:713.230350px;}
.y40{bottom:713.635350px;}
.y4d{bottom:713.770350px;}
.y10{bottom:713.965500px;}
.y119{bottom:725.263500px;}
.y5d{bottom:725.495250px;}
.y3f{bottom:731.635350px;}
.y4c{bottom:731.770350px;}
.y118{bottom:740.263500px;}
.y5c{bottom:741.743250px;}
.y3e{bottom:749.635350px;}
.y4b{bottom:749.770350px;}
.yf{bottom:751.107000px;}
.y117{bottom:755.263500px;}
.y5b{bottom:757.991250px;}
.ye{bottom:759.181500px;}
.yda{bottom:767.365350px;}
.y3d{bottom:767.635350px;}
.y4a{bottom:767.770350px;}
.y116{bottom:770.263500px;}
.y5a{bottom:774.239250px;}
.yd{bottom:778.107000px;}
.y115{bottom:785.263500px;}
.y3c{bottom:785.635350px;}
.y49{bottom:785.770350px;}
.y59{bottom:790.487250px;}
.yc{bottom:790.522500px;}
.y114{bottom:800.263500px;}
.yb{bottom:802.938000px;}
.yd9{bottom:803.365350px;}
.y48{bottom:803.770350px;}
.y113{bottom:815.263500px;}
.ya{bottom:815.353500px;}
.y58{bottom:819.491250px;}
.y3b{bottom:821.230350px;}
.y47{bottom:821.770350px;}
.y57{bottom:827.747250px;}
.y9{bottom:827.769000px;}
.y112{bottom:830.263500px;}
.y46{bottom:839.770350px;}
.y8{bottom:840.184500px;}
.y111{bottom:845.263500px;}
.y45{bottom:857.770350px;}
.y7{bottom:859.110000px;}
.y110{bottom:860.263500px;}
.y56{bottom:868.390350px;}
.y10f{bottom:875.263500px;}
.y3a{bottom:875.770350px;}
.y6{bottom:887.832000px;}
.y55{bottom:887.890350px;}
.y10e{bottom:890.263500px;}
.yd8{bottom:893.365350px;}
.y39{bottom:893.770350px;}
.y10d{bottom:905.263500px;}
.y38{bottom:911.770350px;}
.y10c{bottom:920.263500px;}
.y37{bottom:929.770350px;}
.y5{bottom:934.005000px;}
.y10b{bottom:935.263500px;}
.yd7{bottom:947.365350px;}
.y36{bottom:947.770350px;}
.y12f{bottom:947.772600px;}
.y10a{bottom:950.263500px;}
.y109{bottom:965.263500px;}
.y35{bottom:965.770350px;}
.y12e{bottom:965.772600px;}
.y4{bottom:970.465500px;}
.y108{bottom:980.263500px;}
.y34{bottom:983.770350px;}
.y12d{bottom:983.772600px;}
.y107{bottom:995.263500px;}
.y33{bottom:1001.770350px;}
.y12c{bottom:1001.772600px;}
.y3{bottom:1006.926000px;}
.y106{bottom:1010.263500px;}
.y32{bottom:1019.770350px;}
.y105{bottom:1025.263500px;}
.y12b{bottom:1037.367600px;}
.y31{bottom:1037.770350px;}
.y104{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y103{bottom:1132.413900px;}
.y54{bottom:1132.418700px;}
.yb2{bottom:1132.421700px;}
.yb7{bottom:1132.429650px;}
.y2f{bottom:1136.092500px;}
.y2e{bottom:1150.492500px;}
.h6{height:19.123230px;}
.h8{height:28.393066px;}
.h14{height:29.182617px;}
.h2{height:30.577148px;}
.hd{height:32.761230px;}
.h7{height:32.805176px;}
.h10{height:33.351562px;}
.hf{height:34.945312px;}
.he{height:34.992188px;}
.h12{height:37.520508px;}
.hc{height:41.689453px;}
.ha{height:43.681641px;}
.hb{height:43.717434px;}
.h9{height:43.740234px;}
.h13{height:52.567951px;}
.h3{height:56.786133px;}
.h5{height:57.125900px;}
.h16{height:59.170617px;}
.h11{height:66.327563px;}
.h15{height:89.158617px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:76.535400px;}
.x24{left:78.639300px;}
.x1a{left:90.065400px;}
.xa{left:96.094500px;}
.x1{left:97.795200px;}
.x15{left:99.921300px;}
.x1e{left:102.611400px;}
.x4{left:106.299150px;}
.xe{left:110.540400px;}
.x17{left:114.789300px;}
.x1c{left:117.170400px;}
.x3{left:125.428500px;}
.x7{left:131.811000px;}
.xd{left:144.710400px;}
.x1b{left:181.070400px;}
.x1d{left:186.815400px;}
.x5{left:191.338650px;}
.x1f{left:197.921400px;}
.x19{left:211.085400px;}
.x6{left:212.876400px;}
.x2c{left:241.683300px;}
.x21{left:242.764800px;}
.x22{left:244.308300px;}
.x25{left:245.316300px;}
.x26{left:342.262800px;}
.x27{left:383.286300px;}
.x28{left:453.510300px;}
.xb{left:455.041500px;}
.xf{left:457.070400px;}
.x2d{left:465.280800px;}
.x13{left:478.345350px;}
.x8{left:480.486000px;}
.x10{left:491.090400px;}
.x29{left:493.830300px;}
.x31{left:503.858400px;}
.x14{left:512.365350px;}
.x9{left:514.491000px;}
.x2a{left:563.361300px;}
.x20{left:579.455400px;}
.x2e{left:594.231300px;}
.x30{left:596.992800px;}
.x16{left:659.121300px;}
.x12{left:663.492300px;}
.x2b{left:682.420800px;}
.x2{left:693.365400px;}
.x2f{left:702.486300px;}
.x23{left:722.110800px;}
.x11{left:728.391600px;}
.x18{left:749.651400px;}
@media print{
.v2{vertical-align:-19.290667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.440000pt;}
.v4{vertical-align:25.122667pt;}
.v1{vertical-align:27.008000pt;}
.v3{vertical-align:29.312000pt;}
.ls75{letter-spacing:-2.346667pt;}
.ls48{letter-spacing:-1.973333pt;}
.ls2d{letter-spacing:-1.578667pt;}
.ls11{letter-spacing:-0.693333pt;}
.ls12{letter-spacing:-0.426667pt;}
.ls14{letter-spacing:-0.373333pt;}
.ls49{letter-spacing:-0.213333pt;}
.ls27{letter-spacing:-0.160000pt;}
.ls25{letter-spacing:-0.106667pt;}
.ls5c{letter-spacing:-0.074667pt;}
.ls26{letter-spacing:-0.053333pt;}
.ls6c{letter-spacing:-0.042667pt;}
.ls5b{letter-spacing:-0.037333pt;}
.ls10{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000896pt;}
.ls0{letter-spacing:0.002667pt;}
.ls1{letter-spacing:0.006229pt;}
.ls6b{letter-spacing:0.042667pt;}
.ls1a{letter-spacing:0.053333pt;}
.ls3{letter-spacing:0.061867pt;}
.ls4d{letter-spacing:0.085333pt;}
.ls1c{letter-spacing:0.106667pt;}
.ls69{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.160000pt;}
.ls6d{letter-spacing:0.170667pt;}
.ls1d{letter-spacing:0.213333pt;}
.ls17{letter-spacing:0.266667pt;}
.ls6a{letter-spacing:0.298667pt;}
.ls4e{letter-spacing:0.320000pt;}
.ls70{letter-spacing:0.341333pt;}
.ls15{letter-spacing:0.373333pt;}
.ls68{letter-spacing:0.384000pt;}
.ls52{letter-spacing:0.386133pt;}
.ls5{letter-spacing:0.426667pt;}
.ls21{letter-spacing:0.480000pt;}
.ls62{letter-spacing:0.512000pt;}
.ls6{letter-spacing:0.533333pt;}
.ls63{letter-spacing:0.554667pt;}
.lsc{letter-spacing:0.586667pt;}
.ls23{letter-spacing:0.640000pt;}
.ls65{letter-spacing:0.682667pt;}
.lsb{letter-spacing:0.693333pt;}
.ls73{letter-spacing:0.725333pt;}
.ls28{letter-spacing:0.746667pt;}
.ls40{letter-spacing:0.800000pt;}
.ls1b{letter-spacing:0.853333pt;}
.lsa{letter-spacing:0.906667pt;}
.ls9{letter-spacing:0.960000pt;}
.ls55{letter-spacing:0.981333pt;}
.ls29{letter-spacing:1.013333pt;}
.ls22{letter-spacing:1.066667pt;}
.ls42{letter-spacing:1.120000pt;}
.ls2b{letter-spacing:1.173333pt;}
.ls34{letter-spacing:1.226667pt;}
.ls6e{letter-spacing:1.237333pt;}
.ls36{letter-spacing:1.280000pt;}
.ls4b{letter-spacing:1.333333pt;}
.ls41{letter-spacing:1.386667pt;}
.ls57{letter-spacing:1.440000pt;}
.ls47{letter-spacing:1.493333pt;}
.ls6f{letter-spacing:1.536000pt;}
.lse{letter-spacing:1.546667pt;}
.ls45{letter-spacing:1.600000pt;}
.ls66{letter-spacing:1.621333pt;}
.ls39{letter-spacing:1.653333pt;}
.ls64{letter-spacing:1.664000pt;}
.ls38{letter-spacing:1.706667pt;}
.ls4a{letter-spacing:1.760000pt;}
.ls72{letter-spacing:1.792000pt;}
.ls35{letter-spacing:1.813333pt;}
.ls24{letter-spacing:1.866667pt;}
.ls20{letter-spacing:1.920000pt;}
.ls1f{letter-spacing:1.973333pt;}
.ls7{letter-spacing:2.026667pt;}
.lsd{letter-spacing:2.080000pt;}
.ls31{letter-spacing:2.133333pt;}
.ls1e{letter-spacing:2.186667pt;}
.ls30{letter-spacing:2.240000pt;}
.ls2a{letter-spacing:2.293333pt;}
.ls3d{letter-spacing:2.346667pt;}
.ls51{letter-spacing:2.400000pt;}
.ls8{letter-spacing:2.453333pt;}
.ls37{letter-spacing:2.506667pt;}
.ls58{letter-spacing:2.560000pt;}
.ls13{letter-spacing:2.613333pt;}
.ls3f{letter-spacing:2.666667pt;}
.ls59{letter-spacing:2.826667pt;}
.ls18{letter-spacing:2.880000pt;}
.ls61{letter-spacing:2.901333pt;}
.ls4{letter-spacing:2.933333pt;}
.ls50{letter-spacing:3.200000pt;}
.ls4c{letter-spacing:3.242667pt;}
.ls2f{letter-spacing:3.253333pt;}
.ls3a{letter-spacing:3.306667pt;}
.ls74{letter-spacing:3.328000pt;}
.ls5f{letter-spacing:3.413333pt;}
.ls43{letter-spacing:3.466667pt;}
.ls2c{letter-spacing:3.626667pt;}
.ls46{letter-spacing:3.680000pt;}
.ls56{letter-spacing:3.733333pt;}
.ls19{letter-spacing:3.786667pt;}
.ls71{letter-spacing:4.266667pt;}
.ls3e{letter-spacing:4.320000pt;}
.ls5e{letter-spacing:4.640000pt;}
.ls32{letter-spacing:4.693333pt;}
.ls5d{letter-spacing:4.853333pt;}
.ls3b{letter-spacing:5.066667pt;}
.ls53{letter-spacing:5.120000pt;}
.ls67{letter-spacing:5.162667pt;}
.lsf{letter-spacing:5.333333pt;}
.ls3c{letter-spacing:5.546667pt;}
.ls4f{letter-spacing:5.706667pt;}
.ls33{letter-spacing:5.760000pt;}
.ls2e{letter-spacing:5.973333pt;}
.ls54{letter-spacing:6.133333pt;}
.ls60{letter-spacing:6.666667pt;}
.ls5a{letter-spacing:7.200000pt;}
.ls44{letter-spacing:7.680000pt;}
.ws3f{word-spacing:-21.013333pt;}
.ws3c{word-spacing:-18.880000pt;}
.ws38{word-spacing:-18.026667pt;}
.ws63{word-spacing:-16.213333pt;}
.ws71{word-spacing:-16.160000pt;}
.ws4{word-spacing:-15.786667pt;}
.ws3a{word-spacing:-15.520000pt;}
.ws9d{word-spacing:-15.360000pt;}
.ws65{word-spacing:-15.040000pt;}
.ws99{word-spacing:-14.933333pt;}
.ws6f{word-spacing:-14.880000pt;}
.ws2{word-spacing:-14.826667pt;}
.ws62{word-spacing:-14.613333pt;}
.ws61{word-spacing:-14.506667pt;}
.ws3e{word-spacing:-14.400000pt;}
.ws66{word-spacing:-14.293333pt;}
.ws5{word-spacing:-14.240000pt;}
.ws60{word-spacing:-14.186667pt;}
.ws39{word-spacing:-14.026667pt;}
.ws9c{word-spacing:-13.994667pt;}
.ws64{word-spacing:-13.973333pt;}
.ws7d{word-spacing:-13.760000pt;}
.ws70{word-spacing:-13.653333pt;}
.ws1c{word-spacing:-13.493333pt;}
.ws1b{word-spacing:-13.226667pt;}
.ws3{word-spacing:-12.906667pt;}
.ws81{word-spacing:-12.288000pt;}
.ws3b{word-spacing:-12.000000pt;}
.ws97{word-spacing:-11.904000pt;}
.ws1d{word-spacing:-11.861333pt;}
.ws6c{word-spacing:-11.648000pt;}
.ws80{word-spacing:-11.520000pt;}
.ws3d{word-spacing:-11.360000pt;}
.ws7f{word-spacing:-11.221333pt;}
.ws98{word-spacing:-11.178667pt;}
.ws9a{word-spacing:-10.794667pt;}
.ws82{word-spacing:-10.709333pt;}
.ws31{word-spacing:-10.666667pt;}
.ws7e{word-spacing:-10.624000pt;}
.ws1{word-spacing:-9.637333pt;}
.ws0{word-spacing:-9.076885pt;}
.ws9b{word-spacing:-8.320000pt;}
.ws59{word-spacing:-7.680000pt;}
.ws88{word-spacing:-6.666667pt;}
.ws40{word-spacing:-5.973333pt;}
.ws46{word-spacing:-5.760000pt;}
.ws50{word-spacing:-5.546667pt;}
.ws45{word-spacing:-4.693333pt;}
.ws86{word-spacing:-4.640000pt;}
.ws52{word-spacing:-4.320000pt;}
.wsa1{word-spacing:-4.266667pt;}
.ws8{word-spacing:-4.165333pt;}
.ws26{word-spacing:-3.786667pt;}
.ws76{word-spacing:-3.733333pt;}
.ws4d{word-spacing:-3.680000pt;}
.ws36{word-spacing:-3.626667pt;}
.ws58{word-spacing:-3.466667pt;}
.wsa4{word-spacing:-3.328000pt;}
.ws4e{word-spacing:-3.306667pt;}
.ws41{word-spacing:-3.253333pt;}
.ws93{word-spacing:-3.242667pt;}
.ws69{word-spacing:-3.200000pt;}
.wsc{word-spacing:-2.933333pt;}
.ws8c{word-spacing:-2.901333pt;}
.ws25{word-spacing:-2.880000pt;}
.ws79{word-spacing:-2.826667pt;}
.ws54{word-spacing:-2.666667pt;}
.ws10{word-spacing:-2.613333pt;}
.ws7{word-spacing:-2.565333pt;}
.ws78{word-spacing:-2.560000pt;}
.ws49{word-spacing:-2.506667pt;}
.ws11{word-spacing:-2.453333pt;}
.ws89{word-spacing:-2.400000pt;}
.ws51{word-spacing:-2.346667pt;}
.ws34{word-spacing:-2.293333pt;}
.ws42{word-spacing:-2.240000pt;}
.ws29{word-spacing:-2.186667pt;}
.ws43{word-spacing:-2.133333pt;}
.ws17{word-spacing:-2.080000pt;}
.wsf{word-spacing:-2.026667pt;}
.ws23{word-spacing:-1.973333pt;}
.ws2b{word-spacing:-1.920000pt;}
.ws2e{word-spacing:-1.866667pt;}
.ws48{word-spacing:-1.813333pt;}
.wsa2{word-spacing:-1.792000pt;}
.ws75{word-spacing:-1.760000pt;}
.ws4b{word-spacing:-1.706667pt;}
.ws8f{word-spacing:-1.664000pt;}
.ws4c{word-spacing:-1.653333pt;}
.ws91{word-spacing:-1.621333pt;}
.ws5a{word-spacing:-1.600000pt;}
.ws18{word-spacing:-1.546667pt;}
.ws9f{word-spacing:-1.536000pt;}
.ws4f{word-spacing:-1.493333pt;}
.ws77{word-spacing:-1.440000pt;}
.ws56{word-spacing:-1.386667pt;}
.ws5b{word-spacing:-1.333333pt;}
.ws47{word-spacing:-1.280000pt;}
.ws9e{word-spacing:-1.237333pt;}
.ws35{word-spacing:-1.226667pt;}
.ws68{word-spacing:-1.173333pt;}
.ws57{word-spacing:-1.120000pt;}
.ws2c{word-spacing:-1.066667pt;}
.ws83{word-spacing:-1.013333pt;}
.ws6e{word-spacing:-0.981333pt;}
.ws12{word-spacing:-0.960000pt;}
.ws14{word-spacing:-0.906667pt;}
.ws33{word-spacing:-0.853333pt;}
.ws32{word-spacing:-0.800000pt;}
.ws15{word-spacing:-0.746667pt;}
.wsa3{word-spacing:-0.725333pt;}
.ws1a{word-spacing:-0.693333pt;}
.ws90{word-spacing:-0.682667pt;}
.ws2d{word-spacing:-0.640000pt;}
.ws16{word-spacing:-0.586667pt;}
.ws8e{word-spacing:-0.554667pt;}
.wse{word-spacing:-0.533333pt;}
.ws8d{word-spacing:-0.512000pt;}
.ws4a{word-spacing:-0.480000pt;}
.wsd{word-spacing:-0.426667pt;}
.ws92{word-spacing:-0.384000pt;}
.ws1e{word-spacing:-0.373333pt;}
.wsa0{word-spacing:-0.341333pt;}
.ws67{word-spacing:-0.320000pt;}
.ws8a{word-spacing:-0.298667pt;}
.ws21{word-spacing:-0.266667pt;}
.ws1f{word-spacing:-0.213333pt;}
.ws95{word-spacing:-0.170667pt;}
.ws20{word-spacing:-0.160000pt;}
.ws94{word-spacing:-0.128000pt;}
.ws28{word-spacing:-0.106667pt;}
.ws5f{word-spacing:-0.085333pt;}
.ws27{word-spacing:-0.053333pt;}
.ws96{word-spacing:-0.042667pt;}
.ws6{word-spacing:0.000000pt;}
.ws7b{word-spacing:0.037333pt;}
.ws8b{word-spacing:0.042667pt;}
.ws24{word-spacing:0.053333pt;}
.ws7c{word-spacing:0.074667pt;}
.ws22{word-spacing:0.106667pt;}
.ws2a{word-spacing:0.160000pt;}
.ws53{word-spacing:0.213333pt;}
.ws37{word-spacing:0.320000pt;}
.ws13{word-spacing:0.373333pt;}
.wsb{word-spacing:0.426667pt;}
.ws84{word-spacing:0.480000pt;}
.ws6b{word-spacing:0.960000pt;}
.ws7a{word-spacing:1.333333pt;}
.ws55{word-spacing:1.653333pt;}
.ws2f{word-spacing:1.834667pt;}
.ws85{word-spacing:1.920000pt;}
.ws74{word-spacing:1.973333pt;}
.ws5c{word-spacing:3.242667pt;}
.ws5d{word-spacing:3.498667pt;}
.ws6d{word-spacing:3.541333pt;}
.ws5e{word-spacing:3.584000pt;}
.ws6a{word-spacing:3.786667pt;}
.ws44{word-spacing:4.373333pt;}
.ws19{word-spacing:4.426667pt;}
.ws87{word-spacing:4.906667pt;}
.ws9{word-spacing:37.200000pt;}
.wsa{word-spacing:43.685333pt;}
.ws72{word-spacing:273.952000pt;}
.ws73{word-spacing:290.416000pt;}
.ws30{word-spacing:592.170667pt;}
._d{margin-left:-2576.085333pt;}
._3e{margin-left:-2554.922667pt;}
._42{margin-left:-8.000000pt;}
._e{margin-left:-6.080000pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.050667pt;}
._0{margin-left:-2.053333pt;}
._8{margin-left:-0.906667pt;}
._a{width:0.960000pt;}
._7{width:1.856000pt;}
._4{width:3.050667pt;}
._b{width:3.946667pt;}
._5{width:4.853333pt;}
._6{width:6.400000pt;}
._3{width:7.306667pt;}
._c{width:8.213333pt;}
._40{width:9.344000pt;}
._3f{width:10.400000pt;}
._41{width:12.266667pt;}
._9{width:18.666667pt;}
._59{width:128.352000pt;}
._48{width:134.698667pt;}
._4a{width:142.090667pt;}
._49{width:148.762667pt;}
._47{width:157.509333pt;}
._43{width:164.666667pt;}
._4c{width:176.362667pt;}
._44{width:181.514667pt;}
._45{width:190.064000pt;}
._54{width:194.021333pt;}
._56{width:201.786667pt;}
._4e{width:210.597333pt;}
._4d{width:213.733333pt;}
._52{width:221.946667pt;}
._4f{width:225.680000pt;}
._53{width:227.136000pt;}
._58{width:235.013333pt;}
._50{width:243.973333pt;}
._57{width:256.704000pt;}
._5b{width:257.786667pt;}
._46{width:264.954667pt;}
._65{width:299.749333pt;}
._62{width:314.869333pt;}
._55{width:326.144000pt;}
._5e{width:327.749333pt;}
._63{width:329.989333pt;}
._5d{width:337.082667pt;}
._5f{width:342.869333pt;}
._4b{width:347.386667pt;}
._51{width:355.376000pt;}
._60{width:367.322667pt;}
._5c{width:368.618667pt;}
._5a{width:394.576000pt;}
._10{width:436.949333pt;}
._64{width:457.856000pt;}
._12{width:493.226667pt;}
._24{width:515.328000pt;}
._37{width:519.594667pt;}
._61{width:529.050667pt;}
._1a{width:535.893333pt;}
._21{width:555.434667pt;}
._3a{width:597.589333pt;}
._2e{width:598.869333pt;}
._38{width:614.101333pt;}
._35{width:619.434667pt;}
._3c{width:630.101333pt;}
._31{width:651.434667pt;}
._36{width:744.496000pt;}
._34{width:746.885333pt;}
._3d{width:870.954667pt;}
._25{width:884.608000pt;}
._26{width:911.872000pt;}
._1d{width:916.565333pt;}
._1e{width:931.968000pt;}
._33{width:946.816000pt;}
._f{width:951.082667pt;}
._23{width:954.496000pt;}
._1f{width:956.842667pt;}
._22{width:965.162667pt;}
._20{width:980.010667pt;}
._3b{width:990.634667pt;}
._1b{width:1021.994667pt;}
._2b{width:1025.493333pt;}
._15{width:1026.773333pt;}
._13{width:1033.856000pt;}
._16{width:1035.093333pt;}
._2a{width:1038.592000pt;}
._2c{width:1042.176000pt;}
._1c{width:1055.146667pt;}
._19{width:1056.384000pt;}
._11{width:1059.925333pt;}
._39{width:1080.704000pt;}
._14{width:1093.120000pt;}
._28{width:1112.106667pt;}
._27{width:1121.493333pt;}
._29{width:1130.965333pt;}
._18{width:1138.090667pt;}
._17{width:1140.480000pt;}
._2f{width:1158.869333pt;}
._2d{width:1184.938667pt;}
._30{width:1202.688000pt;}
._32{width:1216.554667pt;}
.fs5{font-size:23.317333pt;}
.fsb{font-size:31.093333pt;}
.fs4{font-size:32.650667pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y30{bottom:42.468667pt;}
.y53{bottom:73.620000pt;}
.yb1{bottom:73.634667pt;}
.yb3{bottom:74.022933pt;}
.yd6{bottom:74.102533pt;}
.yb6{bottom:74.380133pt;}
.yad{bottom:74.462533pt;}
.y2d{bottom:78.246000pt;}
.y9f{bottom:80.862533pt;}
.yd4{bottom:80.884000pt;}
.y84{bottom:81.620667pt;}
.y102{bottom:81.886133pt;}
.y52{bottom:87.614667pt;}
.yb0{bottom:87.629333pt;}
.yb5{bottom:88.374800pt;}
.yac{bottom:90.462533pt;}
.y2c{bottom:91.576000pt;}
.y101{bottom:95.219467pt;}
.y83{bottom:96.063333pt;}
.y9e{bottom:96.862533pt;}
.yb4{bottom:102.369467pt;}
.yd3{bottom:105.337333pt;}
.yab{bottom:106.462533pt;}
.y100{bottom:108.552800pt;}
.y82{bottom:110.506000pt;}
.y9d{bottom:112.862533pt;}
.yff{bottom:121.886133pt;}
.yaa{bottom:122.462533pt;}
.y81{bottom:124.948667pt;}
.yd2{bottom:129.790667pt;}
.yfe{bottom:135.219467pt;}
.ya9{bottom:138.462533pt;}
.y80{bottom:139.391333pt;}
.y9c{bottom:143.832000pt;}
.y29{bottom:147.281467pt;}
.yfd{bottom:148.552800pt;}
.y7f{bottom:153.834000pt;}
.yd1{bottom:154.244000pt;}
.ya8{bottom:154.462533pt;}
.y9b{bottom:157.704000pt;}
.yfc{bottom:161.886133pt;}
.y28{bottom:163.281467pt;}
.y7e{bottom:168.276667pt;}
.ya7{bottom:170.462533pt;}
.y9a{bottom:170.475867pt;}
.yfb{bottom:175.219467pt;}
.yd0{bottom:178.697333pt;}
.y27{bottom:179.281467pt;}
.y7d{bottom:182.719333pt;}
.ycf{bottom:185.370667pt;}
.y99{bottom:186.115867pt;}
.ya6{bottom:186.462533pt;}
.yfa{bottom:188.552800pt;}
.y26{bottom:195.281467pt;}
.y7c{bottom:197.162000pt;}
.yf9{bottom:201.886133pt;}
.y98{bottom:202.115867pt;}
.ya5{bottom:202.462533pt;}
.y25{bottom:211.281467pt;}
.y7b{bottom:211.604667pt;}
.yf8{bottom:215.219467pt;}
.yce{bottom:216.488000pt;}
.ycd{bottom:216.497333pt;}
.y97{bottom:218.115867pt;}
.ya4{bottom:218.462533pt;}
.y7a{bottom:226.047333pt;}
.y24{bottom:227.281467pt;}
.yf7{bottom:228.552800pt;}
.ycc{bottom:229.834667pt;}
.ya3{bottom:234.462533pt;}
.y79{bottom:240.490000pt;}
.yf6{bottom:241.886133pt;}
.y23{bottom:243.281467pt;}
.y96{bottom:249.982533pt;}
.ya2{bottom:250.462533pt;}
.yca{bottom:254.288000pt;}
.yc9{bottom:254.297333pt;}
.y78{bottom:254.932667pt;}
.yf5{bottom:255.219467pt;}
.y22{bottom:259.281467pt;}
.ya1{bottom:266.462533pt;}
.ycb{bottom:267.625333pt;}
.yc8{bottom:267.634667pt;}
.yf4{bottom:268.552800pt;}
.y77{bottom:269.375333pt;}
.y21{bottom:275.281467pt;}
.yf3{bottom:281.886133pt;}
.ya0{bottom:282.462533pt;}
.y76{bottom:283.818000pt;}
.y20{bottom:291.281467pt;}
.yc7{bottom:292.088000pt;}
.yf2{bottom:295.219467pt;}
.y75{bottom:298.260667pt;}
.y95{bottom:298.462533pt;}
.yaf{bottom:304.832667pt;}
.y1f{bottom:307.281467pt;}
.yf1{bottom:308.552800pt;}
.y74{bottom:312.703333pt;}
.y94{bottom:314.462533pt;}
.yc5{bottom:316.541333pt;}
.yae{bottom:318.827333pt;}
.yf0{bottom:321.886133pt;}
.yc4{bottom:323.214667pt;}
.y2b{bottom:323.281467pt;}
.y73{bottom:327.146000pt;}
.yc6{bottom:329.878667pt;}
.y93{bottom:330.462533pt;}
.yef{bottom:335.219467pt;}
.y1e{bottom:338.923467pt;}
.y2a{bottom:339.281467pt;}
.y72{bottom:341.588667pt;}
.y92{bottom:346.462533pt;}
.yee{bottom:348.552800pt;}
.yc3{bottom:354.332000pt;}
.yc2{bottom:354.341333pt;}
.y71{bottom:356.031333pt;}
.yed{bottom:361.886133pt;}
.y91{bottom:362.462533pt;}
.yc1{bottom:367.678667pt;}
.y70{bottom:370.474000pt;}
.yec{bottom:375.219467pt;}
.y90{bottom:378.462533pt;}
.y6f{bottom:384.916667pt;}
.yeb{bottom:388.552800pt;}
.y8f{bottom:394.462533pt;}
.yc0{bottom:395.025333pt;}
.y6e{bottom:399.359333pt;}
.yea{bottom:401.886133pt;}
.y1d{bottom:404.718667pt;}
.y8e{bottom:410.462533pt;}
.y6d{bottom:413.802000pt;}
.ye9{bottom:415.219467pt;}
.y12a{bottom:418.012000pt;}
.y1c{bottom:420.723733pt;}
.ybf{bottom:425.609200pt;}
.y8d{bottom:426.462533pt;}
.y6c{bottom:428.244667pt;}
.ye8{bottom:428.552800pt;}
.y129{bottom:431.345333pt;}
.ye7{bottom:441.886133pt;}
.y8c{bottom:442.462533pt;}
.y6b{bottom:442.687333pt;}
.ybe{bottom:442.942533pt;}
.y128{bottom:444.678667pt;}
.y1b{bottom:445.030400pt;}
.ye6{bottom:455.219467pt;}
.y6a{bottom:457.130000pt;}
.y127{bottom:458.012000pt;}
.yd5{bottom:458.102533pt;}
.y8b{bottom:458.462533pt;}
.y1a{bottom:461.030400pt;}
.ye5{bottom:468.552800pt;}
.y126{bottom:471.345333pt;}
.y69{bottom:471.572667pt;}
.y8a{bottom:474.462533pt;}
.y19{bottom:477.030400pt;}
.ye4{bottom:481.886133pt;}
.y125{bottom:484.678667pt;}
.y68{bottom:486.015333pt;}
.ybd{bottom:490.342533pt;}
.y89{bottom:490.462533pt;}
.y18{bottom:493.030400pt;}
.ye3{bottom:495.219467pt;}
.y124{bottom:498.012000pt;}
.y67{bottom:500.458000pt;}
.ybc{bottom:506.342533pt;}
.y88{bottom:506.462533pt;}
.ye2{bottom:508.552800pt;}
.y17{bottom:509.030400pt;}
.y123{bottom:511.345333pt;}
.y66{bottom:514.900667pt;}
.ye1{bottom:521.886133pt;}
.ybb{bottom:522.342533pt;}
.y87{bottom:522.462533pt;}
.y122{bottom:524.678667pt;}
.y16{bottom:525.030400pt;}
.y65{bottom:529.343333pt;}
.ye0{bottom:535.219467pt;}
.y121{bottom:538.012000pt;}
.yba{bottom:538.342533pt;}
.y86{bottom:538.462533pt;}
.y15{bottom:541.030400pt;}
.y64{bottom:543.786000pt;}
.ydf{bottom:548.552800pt;}
.y120{bottom:551.345333pt;}
.yb9{bottom:554.342533pt;}
.y85{bottom:554.462533pt;}
.y14{bottom:557.030400pt;}
.y63{bottom:558.228667pt;}
.yde{bottom:561.886133pt;}
.y11f{bottom:564.678667pt;}
.y44{bottom:570.342533pt;}
.y51{bottom:570.462533pt;}
.y62{bottom:572.671333pt;}
.y13{bottom:573.030400pt;}
.ydd{bottom:575.219467pt;}
.y11e{bottom:578.012000pt;}
.y43{bottom:586.342533pt;}
.y50{bottom:586.462533pt;}
.y61{bottom:587.114000pt;}
.ydc{bottom:588.552800pt;}
.y11d{bottom:591.345333pt;}
.y60{bottom:601.556667pt;}
.y42{bottom:602.342533pt;}
.y4f{bottom:602.462533pt;}
.y11c{bottom:604.678667pt;}
.y12{bottom:613.169333pt;}
.y5f{bottom:615.999333pt;}
.ydb{bottom:617.982533pt;}
.y11b{bottom:618.012000pt;}
.y41{bottom:618.342533pt;}
.y4e{bottom:618.462533pt;}
.y11{bottom:623.902667pt;}
.y5e{bottom:630.442000pt;}
.y11a{bottom:631.345333pt;}
.yb8{bottom:633.982533pt;}
.y40{bottom:634.342533pt;}
.y4d{bottom:634.462533pt;}
.y10{bottom:634.636000pt;}
.y119{bottom:644.678667pt;}
.y5d{bottom:644.884667pt;}
.y3f{bottom:650.342533pt;}
.y4c{bottom:650.462533pt;}
.y118{bottom:658.012000pt;}
.y5c{bottom:659.327333pt;}
.y3e{bottom:666.342533pt;}
.y4b{bottom:666.462533pt;}
.yf{bottom:667.650667pt;}
.y117{bottom:671.345333pt;}
.y5b{bottom:673.770000pt;}
.ye{bottom:674.828000pt;}
.yda{bottom:682.102533pt;}
.y3d{bottom:682.342533pt;}
.y4a{bottom:682.462533pt;}
.y116{bottom:684.678667pt;}
.y5a{bottom:688.212667pt;}
.yd{bottom:691.650667pt;}
.y115{bottom:698.012000pt;}
.y3c{bottom:698.342533pt;}
.y49{bottom:698.462533pt;}
.y59{bottom:702.655333pt;}
.yc{bottom:702.686667pt;}
.y114{bottom:711.345333pt;}
.yb{bottom:713.722667pt;}
.yd9{bottom:714.102533pt;}
.y48{bottom:714.462533pt;}
.y113{bottom:724.678667pt;}
.ya{bottom:724.758667pt;}
.y58{bottom:728.436667pt;}
.y3b{bottom:729.982533pt;}
.y47{bottom:730.462533pt;}
.y57{bottom:735.775333pt;}
.y9{bottom:735.794667pt;}
.y112{bottom:738.012000pt;}
.y46{bottom:746.462533pt;}
.y8{bottom:746.830667pt;}
.y111{bottom:751.345333pt;}
.y45{bottom:762.462533pt;}
.y7{bottom:763.653333pt;}
.y110{bottom:764.678667pt;}
.y56{bottom:771.902533pt;}
.y10f{bottom:778.012000pt;}
.y3a{bottom:778.462533pt;}
.y6{bottom:789.184000pt;}
.y55{bottom:789.235867pt;}
.y10e{bottom:791.345333pt;}
.yd8{bottom:794.102533pt;}
.y39{bottom:794.462533pt;}
.y10d{bottom:804.678667pt;}
.y38{bottom:810.462533pt;}
.y10c{bottom:818.012000pt;}
.y37{bottom:826.462533pt;}
.y5{bottom:830.226667pt;}
.y10b{bottom:831.345333pt;}
.yd7{bottom:842.102533pt;}
.y36{bottom:842.462533pt;}
.y12f{bottom:842.464533pt;}
.y10a{bottom:844.678667pt;}
.y109{bottom:858.012000pt;}
.y35{bottom:858.462533pt;}
.y12e{bottom:858.464533pt;}
.y4{bottom:862.636000pt;}
.y108{bottom:871.345333pt;}
.y34{bottom:874.462533pt;}
.y12d{bottom:874.464533pt;}
.y107{bottom:884.678667pt;}
.y33{bottom:890.462533pt;}
.y12c{bottom:890.464533pt;}
.y3{bottom:895.045333pt;}
.y106{bottom:898.012000pt;}
.y32{bottom:906.462533pt;}
.y105{bottom:911.345333pt;}
.y12b{bottom:922.104533pt;}
.y31{bottom:922.462533pt;}
.y104{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y103{bottom:1006.590133pt;}
.y54{bottom:1006.594400pt;}
.yb2{bottom:1006.597067pt;}
.yb7{bottom:1006.604133pt;}
.y2f{bottom:1009.860000pt;}
.y2e{bottom:1022.660000pt;}
.h6{height:16.998427pt;}
.h8{height:25.238281pt;}
.h14{height:25.940104pt;}
.h2{height:27.179688pt;}
.hd{height:29.121094pt;}
.h7{height:29.160156pt;}
.h10{height:29.645833pt;}
.hf{height:31.062500pt;}
.he{height:31.104167pt;}
.h12{height:33.351562pt;}
.hc{height:37.057292pt;}
.ha{height:38.828125pt;}
.hb{height:38.859942pt;}
.h9{height:38.880208pt;}
.h13{height:46.727068pt;}
.h3{height:50.476562pt;}
.h5{height:50.778578pt;}
.h16{height:52.596104pt;}
.h11{height:58.957833pt;}
.h15{height:79.252104pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:68.031467pt;}
.x24{left:69.901600pt;}
.x1a{left:80.058133pt;}
.xa{left:85.417333pt;}
.x1{left:86.929067pt;}
.x15{left:88.818933pt;}
.x1e{left:91.210133pt;}
.x4{left:94.488133pt;}
.xe{left:98.258133pt;}
.x17{left:102.034933pt;}
.x1c{left:104.151467pt;}
.x3{left:111.492000pt;}
.x7{left:117.165333pt;}
.xd{left:128.631467pt;}
.x1b{left:160.951467pt;}
.x1d{left:166.058133pt;}
.x5{left:170.078800pt;}
.x1f{left:175.930133pt;}
.x19{left:187.631467pt;}
.x6{left:189.223467pt;}
.x2c{left:214.829600pt;}
.x21{left:215.790933pt;}
.x22{left:217.162933pt;}
.x25{left:218.058933pt;}
.x26{left:304.233600pt;}
.x27{left:340.698933pt;}
.x28{left:403.120267pt;}
.xb{left:404.481333pt;}
.xf{left:406.284800pt;}
.x2d{left:413.582933pt;}
.x13{left:425.195867pt;}
.x8{left:427.098667pt;}
.x10{left:436.524800pt;}
.x29{left:438.960267pt;}
.x31{left:447.874133pt;}
.x14{left:455.435867pt;}
.x9{left:457.325333pt;}
.x2a{left:500.765600pt;}
.x20{left:515.071467pt;}
.x2e{left:528.205600pt;}
.x30{left:530.660267pt;}
.x16{left:585.885600pt;}
.x12{left:589.770933pt;}
.x2b{left:606.596267pt;}
.x2{left:616.324800pt;}
.x2f{left:624.432267pt;}
.x23{left:641.876267pt;}
.x11{left:647.459200pt;}
.x18{left:666.356800pt;}
}




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