
    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_b65fe4f7585bd58adbc20d36.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_ce1f7165b6310dac2d318c63.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_5435fe4e635e69a2cdcd9e3b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1377681ad4e463f82b69642c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_20401ecf0f6da27d9c6fd6d0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.929199;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_05db176bb5eb57e29f63e78b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_ddfffbaed2a8871bdd277bf3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.882324;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_5b3b7551080d77e1c4b0607b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.740234;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:-16.471800px;}
.v3{vertical-align:-2.758800px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.620000px;}
.v7{vertical-align:3.404400px;}
.v4{vertical-align:20.595600px;}
.v1{vertical-align:22.655400px;}
.v6{vertical-align:32.976000px;}
.ls61{letter-spacing:-3.552000px;}
.lsa2{letter-spacing:-2.736000px;}
.ls4c{letter-spacing:-2.220000px;}
.lsa0{letter-spacing:-1.632000px;}
.ls60{letter-spacing:-0.864000px;}
.ls70{letter-spacing:-0.756000px;}
.ls1f{letter-spacing:-0.480000px;}
.ls4d{letter-spacing:-0.420000px;}
.ls20{letter-spacing:-0.360000px;}
.lsa7{letter-spacing:-0.288000px;}
.ls3d{letter-spacing:-0.240000px;}
.ls1e{letter-spacing:-0.192000px;}
.ls74{letter-spacing:-0.180000px;}
.lsa3{letter-spacing:-0.144000px;}
.ls21{letter-spacing:-0.120000px;}
.lsa1{letter-spacing:-0.096000px;}
.ls1c{letter-spacing:-0.084000px;}
.ls3e{letter-spacing:-0.060000px;}
.ls3f{letter-spacing:-0.048000px;}
.ls1d{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004800px;}
.ls0{letter-spacing:0.006000px;}
.ls4f{letter-spacing:0.007800px;}
.ls6{letter-spacing:0.021600px;}
.ls6e{letter-spacing:0.031800px;}
.ls6d{letter-spacing:0.033600px;}
.ls5d{letter-spacing:0.041400px;}
.ls7{letter-spacing:0.048000px;}
.ls56{letter-spacing:0.058800px;}
.ls67{letter-spacing:0.060000px;}
.ls55{letter-spacing:0.087000px;}
.ls2a{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.144000px;}
.ls2f{letter-spacing:0.180000px;}
.ls73{letter-spacing:0.192000px;}
.ls8a{letter-spacing:0.216000px;}
.ls71{letter-spacing:0.240000px;}
.ls59{letter-spacing:0.247200px;}
.ls97{letter-spacing:0.288000px;}
.ls31{letter-spacing:0.300000px;}
.ls84{letter-spacing:0.349800px;}
.ls52{letter-spacing:0.360000px;}
.ls7a{letter-spacing:0.373200px;}
.ls7b{letter-spacing:0.379200px;}
.ls5{letter-spacing:0.384000px;}
.ls83{letter-spacing:0.399000px;}
.ls47{letter-spacing:0.420000px;}
.ls7d{letter-spacing:0.423600px;}
.ls7e{letter-spacing:0.429000px;}
.ls92{letter-spacing:0.432000px;}
.ls2d{letter-spacing:0.480000px;}
.ls58{letter-spacing:0.523800px;}
.ls9b{letter-spacing:0.528000px;}
.lsf{letter-spacing:0.540000px;}
.ls98{letter-spacing:0.576000px;}
.lsb{letter-spacing:0.600000px;}
.ls6b{letter-spacing:0.609600px;}
.ls6c{letter-spacing:0.613800px;}
.ls3b{letter-spacing:0.624000px;}
.ls23{letter-spacing:0.660000px;}
.ls96{letter-spacing:0.672000px;}
.ls8{letter-spacing:0.720000px;}
.ls54{letter-spacing:0.766200px;}
.ls3c{letter-spacing:0.768000px;}
.ls17{letter-spacing:0.780000px;}
.ls99{letter-spacing:0.816000px;}
.ls36{letter-spacing:0.840000px;}
.ls5b{letter-spacing:0.854400px;}
.ls93{letter-spacing:0.864000px;}
.ls2b{letter-spacing:0.900000px;}
.ls2{letter-spacing:0.912000px;}
.ls9{letter-spacing:0.960000px;}
.ls88{letter-spacing:0.972000px;}
.ls6a{letter-spacing:1.008000px;}
.ls34{letter-spacing:1.020000px;}
.ls94{letter-spacing:1.056000px;}
.ls35{letter-spacing:1.080000px;}
.ls9a{letter-spacing:1.104000px;}
.ls77{letter-spacing:1.140000px;}
.ls91{letter-spacing:1.152000px;}
.ls80{letter-spacing:1.162200px;}
.ls15{letter-spacing:1.200000px;}
.ls3{letter-spacing:1.248000px;}
.ls64{letter-spacing:1.260000px;}
.ls57{letter-spacing:1.268400px;}
.ls6f{letter-spacing:1.296000px;}
.ls53{letter-spacing:1.320000px;}
.ls62{letter-spacing:1.332000px;}
.ls9f{letter-spacing:1.344000px;}
.ls28{letter-spacing:1.380000px;}
.ls9d{letter-spacing:1.392000px;}
.ls5a{letter-spacing:1.440000px;}
.ls5e{letter-spacing:1.479000px;}
.lsc{letter-spacing:1.500000px;}
.ls7c{letter-spacing:1.510200px;}
.ls9e{letter-spacing:1.536000px;}
.ls24{letter-spacing:1.560000px;}
.lsa4{letter-spacing:1.584000px;}
.ls19{letter-spacing:1.620000px;}
.ls81{letter-spacing:1.666200px;}
.ls37{letter-spacing:1.680000px;}
.ls89{letter-spacing:1.728000px;}
.ls2c{letter-spacing:1.740000px;}
.ls40{letter-spacing:1.800000px;}
.ls11{letter-spacing:1.860000px;}
.lsd{letter-spacing:1.920000px;}
.ls39{letter-spacing:1.980000px;}
.ls13{letter-spacing:2.100000px;}
.ls9c{letter-spacing:2.112000px;}
.ls8b{letter-spacing:2.124000px;}
.ls66{letter-spacing:2.154600px;}
.ls22{letter-spacing:2.160000px;}
.ls5f{letter-spacing:2.202600px;}
.ls33{letter-spacing:2.220000px;}
.ls86{letter-spacing:2.280000px;}
.ls16{letter-spacing:2.340000px;}
.ls72{letter-spacing:2.400000px;}
.ls95{letter-spacing:2.448000px;}
.lsa{letter-spacing:2.460000px;}
.ls5c{letter-spacing:2.520000px;}
.ls4a{letter-spacing:2.580000px;}
.ls42{letter-spacing:2.640000px;}
.ls38{letter-spacing:2.700000px;}
.lse{letter-spacing:2.760000px;}
.ls25{letter-spacing:2.820000px;}
.ls2e{letter-spacing:2.880000px;}
.ls10{letter-spacing:2.940000px;}
.ls65{letter-spacing:3.000000px;}
.ls45{letter-spacing:3.120000px;}
.ls18{letter-spacing:3.180000px;}
.ls63{letter-spacing:3.240000px;}
.ls1a{letter-spacing:3.300000px;}
.ls3a{letter-spacing:3.360000px;}
.ls14{letter-spacing:3.420000px;}
.ls46{letter-spacing:3.480000px;}
.ls43{letter-spacing:3.540000px;}
.ls85{letter-spacing:3.540600px;}
.lsa6{letter-spacing:3.552000px;}
.ls8d{letter-spacing:3.600000px;}
.ls1b{letter-spacing:3.660000px;}
.ls12{letter-spacing:3.720000px;}
.ls90{letter-spacing:3.744000px;}
.ls8c{letter-spacing:3.780000px;}
.ls26{letter-spacing:3.900000px;}
.ls49{letter-spacing:3.960000px;}
.ls29{letter-spacing:4.020000px;}
.ls8e{letter-spacing:4.080000px;}
.ls32{letter-spacing:4.140000px;}
.ls48{letter-spacing:4.200000px;}
.ls27{letter-spacing:4.260000px;}
.ls4b{letter-spacing:4.380000px;}
.ls41{letter-spacing:4.440000px;}
.lsa5{letter-spacing:4.560000px;}
.ls8f{letter-spacing:4.620000px;}
.ls75{letter-spacing:4.680000px;}
.ls44{letter-spacing:4.740000px;}
.ls30{letter-spacing:4.980000px;}
.ls87{letter-spacing:5.040000px;}
.ls79{letter-spacing:5.160000px;}
.ls82{letter-spacing:5.280000px;}
.ls51{letter-spacing:5.580000px;}
.ls7f{letter-spacing:5.700000px;}
.ls76{letter-spacing:5.820000px;}
.ls78{letter-spacing:11.880000px;}
.ls50{letter-spacing:137.149800px;}
.ls4e{letter-spacing:148.620000px;}
.ls69{letter-spacing:409.276200px;}
.ls68{letter-spacing:420.745800px;}
.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;}
}
.ws1b{word-spacing:-60.000000px;}
.ws5d{word-spacing:-17.160000px;}
.ws1d{word-spacing:-16.680000px;}
.ws6c{word-spacing:-14.400000px;}
.ws2{word-spacing:-14.178000px;}
.ws7b{word-spacing:-13.728000px;}
.ws26{word-spacing:-13.344000px;}
.ws2a{word-spacing:-12.480000px;}
.ws62{word-spacing:-12.132000px;}
.ws60{word-spacing:-11.736000px;}
.ws6a{word-spacing:-11.712000px;}
.ws38{word-spacing:-11.340000px;}
.ws48{word-spacing:-11.304000px;}
.ws0{word-spacing:-11.008800px;}
.ws5f{word-spacing:-10.980000px;}
.ws37{word-spacing:-10.908000px;}
.ws5e{word-spacing:-10.728000px;}
.ws6b{word-spacing:-10.608000px;}
.ws61{word-spacing:-10.224000px;}
.ws1c{word-spacing:-10.008000px;}
.ws1{word-spacing:-8.006400px;}
.ws6f{word-spacing:-2.940000px;}
.ws73{word-spacing:-2.640000px;}
.ws63{word-spacing:-2.580000px;}
.ws19{word-spacing:-2.220000px;}
.ws4{word-spacing:-1.188000px;}
.ws70{word-spacing:-1.080000px;}
.ws72{word-spacing:-1.056000px;}
.ws79{word-spacing:-0.816000px;}
.ws7c{word-spacing:-0.720000px;}
.ws8{word-spacing:-0.384000px;}
.ws16{word-spacing:-0.180000px;}
.ws58{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws1a{word-spacing:0.060000px;}
.ws78{word-spacing:0.096000px;}
.ws21{word-spacing:0.120000px;}
.ws67{word-spacing:0.180000px;}
.ws75{word-spacing:0.192000px;}
.wsb{word-spacing:0.240000px;}
.ws7d{word-spacing:0.288000px;}
.ws18{word-spacing:0.300000px;}
.ws10{word-spacing:0.360000px;}
.ws23{word-spacing:0.420000px;}
.ws9{word-spacing:0.432000px;}
.wsc{word-spacing:0.480000px;}
.ws20{word-spacing:0.600000px;}
.ws6d{word-spacing:0.780000px;}
.ws64{word-spacing:0.840000px;}
.ws43{word-spacing:0.900000px;}
.ws44{word-spacing:0.960000px;}
.ws3a{word-spacing:1.020000px;}
.ws46{word-spacing:1.140000px;}
.ws77{word-spacing:1.248000px;}
.ws1f{word-spacing:1.320000px;}
.ws12{word-spacing:1.380000px;}
.ws25{word-spacing:1.440000px;}
.ws7a{word-spacing:1.536000px;}
.ws74{word-spacing:1.584000px;}
.ws69{word-spacing:1.620000px;}
.ws65{word-spacing:1.680000px;}
.ws3b{word-spacing:1.800000px;}
.ws45{word-spacing:2.040000px;}
.ws66{word-spacing:2.100000px;}
.ws76{word-spacing:2.208000px;}
.ws11{word-spacing:2.220000px;}
.ws17{word-spacing:2.280000px;}
.ws24{word-spacing:2.340000px;}
.ws41{word-spacing:2.400000px;}
.ws3f{word-spacing:2.640000px;}
.wsd{word-spacing:2.760000px;}
.ws6{word-spacing:2.928000px;}
.ws3c{word-spacing:2.940000px;}
.ws40{word-spacing:3.000000px;}
.wsf{word-spacing:3.120000px;}
.ws5c{word-spacing:3.180000px;}
.ws39{word-spacing:3.240000px;}
.ws5b{word-spacing:3.540000px;}
.ws71{word-spacing:3.600000px;}
.ws7{word-spacing:3.744000px;}
.ws3d{word-spacing:4.020000px;}
.ws22{word-spacing:4.080000px;}
.ws6e{word-spacing:4.140000px;}
.wsa{word-spacing:4.368000px;}
.ws47{word-spacing:4.380000px;}
.ws5{word-spacing:4.416000px;}
.ws68{word-spacing:4.500000px;}
.ws42{word-spacing:4.680000px;}
.ws14{word-spacing:4.920000px;}
.ws15{word-spacing:4.980000px;}
.ws3e{word-spacing:5.160000px;}
.ws13{word-spacing:5.460000px;}
.wse{word-spacing:5.520000px;}
.ws53{word-spacing:13.608000px;}
.ws56{word-spacing:29.946000px;}
.ws54{word-spacing:36.330000px;}
.ws28{word-spacing:43.968000px;}
.ws36{word-spacing:45.744000px;}
.ws33{word-spacing:96.048000px;}
.ws50{word-spacing:110.376000px;}
.ws51{word-spacing:116.604600px;}
.ws52{word-spacing:116.605200px;}
.ws59{word-spacing:116.880000px;}
.ws30{word-spacing:123.648000px;}
.ws29{word-spacing:129.840000px;}
.ws34{word-spacing:139.680000px;}
.ws4e{word-spacing:146.016000px;}
.ws4d{word-spacing:147.792000px;}
.ws31{word-spacing:148.560000px;}
.ws35{word-spacing:150.336000px;}
.ws2d{word-spacing:150.576000px;}
.ws27{word-spacing:151.104000px;}
.ws32{word-spacing:160.080000px;}
.ws2f{word-spacing:167.184000px;}
.ws2c{word-spacing:169.536000px;}
.ws5a{word-spacing:173.184000px;}
.ws2b{word-spacing:178.848000px;}
.ws4b{word-spacing:182.976000px;}
.ws2e{word-spacing:183.024000px;}
.ws57{word-spacing:183.036000px;}
.ws55{word-spacing:200.382000px;}
.ws4f{word-spacing:215.376000px;}
.ws4a{word-spacing:316.080000px;}
.ws4c{word-spacing:384.336000px;}
.ws49{word-spacing:404.976000px;}
.ws1e{word-spacing:1112.304000px;}
._a{margin-left:-2898.126000px;}
._19{margin-left:-2874.309000px;}
._7{margin-left:-13.344000px;}
._5f{margin-left:-11.880000px;}
._2b{margin-left:-7.740000px;}
._6{margin-left:-6.566400px;}
._1{margin-left:-4.792200px;}
._4{margin-left:-3.552000px;}
._2{margin-left:-2.442000px;}
._0{margin-left:-1.161600px;}
._3{width:1.150200px;}
._9{width:2.512200px;}
._5{width:4.752000px;}
._8{width:5.988000px;}
._60{width:8.160000px;}
._49{width:24.454200px;}
._47{width:26.113800px;}
._4a{width:34.495800px;}
._1d{width:37.056000px;}
._1c{width:40.792200px;}
._4b{width:42.378000px;}
._46{width:48.006000px;}
._48{width:51.558000px;}
._22{width:70.656000px;}
._28{width:74.256000px;}
._55{width:79.714200px;}
._1e{width:87.888000px;}
._45{width:97.776000px;}
._1b{width:141.552000px;}
._2a{width:148.368000px;}
._41{width:150.672000px;}
._25{width:155.040000px;}
._4f{width:156.072000px;}
._53{width:161.136000px;}
._21{width:168.384000px;}
._1f{width:182.832000px;}
._26{width:184.656000px;}
._4c{width:186.438000px;}
._4e{width:188.748000px;}
._1a{width:191.808000px;}
._4d{width:193.410000px;}
._56{width:196.560000px;}
._38{width:198.576000px;}
._37{width:199.872000px;}
._3b{width:201.648000px;}
._3a{width:206.160000px;}
._36{width:207.456000px;}
._39{width:214.608000px;}
._44{width:229.026000px;}
._43{width:230.160000px;}
._42{width:236.796000px;}
._24{width:242.496000px;}
._23{width:244.176000px;}
._20{width:255.792000px;}
._27{width:257.568000px;}
._b{width:266.592000px;}
._35{width:269.616000px;}
._c{width:275.568000px;}
._d{width:282.288000px;}
._57{width:285.936000px;}
._51{width:293.616000px;}
._10{width:329.904000px;}
._50{width:354.186000px;}
._f{width:356.544000px;}
._17{width:369.888000px;}
._3f{width:376.368000px;}
._3c{width:381.648000px;}
._3d{width:395.040000px;}
._54{width:397.680000px;}
._40{width:405.648000px;}
._3e{width:416.400000px;}
._2d{width:429.552000px;}
._5a{width:446.526000px;}
._2c{width:457.344000px;}
._e{width:464.832000px;}
._5d{width:468.480000px;}
._58{width:473.376000px;}
._5b{width:476.352000px;}
._5c{width:478.840200px;}
._59{width:479.904000px;}
._5e{width:494.544000px;}
._15{width:514.752000px;}
._34{width:522.288000px;}
._32{width:529.440000px;}
._2f{width:534.720000px;}
._30{width:548.112000px;}
._2e{width:550.752000px;}
._33{width:558.720000px;}
._31{width:569.472000px;}
._18{width:574.416000px;}
._11{width:578.736000px;}
._12{width:610.800000px;}
._16{width:626.784000px;}
._13{width:637.536000px;}
._14{width:701.568000px;}
._52{width:703.824000px;}
._29{width:1888.368000px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:25.200000px;}
.fs3{font-size:28.800000px;}
.fs7{font-size:36.000000px;}
.fs2{font-size:39.600000px;}
.fs8{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs5{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1ce{bottom:79.940700px;}
.y120{bottom:82.711650px;}
.y18d{bottom:82.796700px;}
.y17e{bottom:83.228850px;}
.y181{bottom:83.363850px;}
.y2b{bottom:83.493900px;}
.yd9{bottom:83.965350px;}
.y145{bottom:92.963550px;}
.y1cd{bottom:94.940700px;}
.y18c{bottom:97.796700px;}
.y17d{bottom:101.228850px;}
.y180{bottom:101.363850px;}
.y74{bottom:101.684850px;}
.y11f{bottom:108.211650px;}
.ybf{bottom:108.652500px;}
.y144{bottom:109.211550px;}
.yd8{bottom:109.477350px;}
.y1cc{bottom:109.940700px;}
.y18b{bottom:112.796700px;}
.y73{bottom:117.428850px;}
.y17c{bottom:119.228850px;}
.y17f{bottom:119.363850px;}
.y11e{bottom:124.459650px;}
.ybe{bottom:124.900500px;}
.y1cb{bottom:124.940700px;}
.y143{bottom:125.459550px;}
.yd7{bottom:125.737350px;}
.y18a{bottom:127.796700px;}
.y18{bottom:131.467050px;}
.y72{bottom:133.172850px;}
.y17b{bottom:137.228850px;}
.y5e{bottom:137.363850px;}
.y1ca{bottom:139.940700px;}
.y11d{bottom:140.707650px;}
.ybd{bottom:141.148500px;}
.y142{bottom:141.707550px;}
.yd6{bottom:142.237350px;}
.y189{bottom:142.796700px;}
.y17{bottom:146.467050px;}
.y71{bottom:148.916850px;}
.y1c9{bottom:154.940700px;}
.y17a{bottom:155.228850px;}
.y5d{bottom:155.363850px;}
.y11c{bottom:156.955650px;}
.ybc{bottom:157.396500px;}
.y188{bottom:157.796700px;}
.y141{bottom:157.955550px;}
.yd5{bottom:158.497350px;}
.y70{bottom:164.660850px;}
.y1c8{bottom:169.940700px;}
.y187{bottom:172.796700px;}
.y11b{bottom:173.203650px;}
.y179{bottom:173.228850px;}
.y5c{bottom:173.363850px;}
.ybb{bottom:173.644500px;}
.y140{bottom:174.203550px;}
.yd4{bottom:174.997350px;}
.y6f{bottom:180.404850px;}
.y1c7{bottom:184.940700px;}
.y186{bottom:187.796700px;}
.y11a{bottom:189.451650px;}
.yba{bottom:189.892500px;}
.y13f{bottom:190.451550px;}
.y178{bottom:191.228850px;}
.yd3{bottom:191.257350px;}
.y5b{bottom:191.363850px;}
.y6e{bottom:196.148850px;}
.y27{bottom:197.249550px;}
.y1c6{bottom:199.940700px;}
.y185{bottom:202.796700px;}
.y119{bottom:205.699650px;}
.yb9{bottom:206.140500px;}
.y13e{bottom:206.699550px;}
.yd2{bottom:207.757350px;}
.y177{bottom:209.228850px;}
.y5a{bottom:209.363850px;}
.y1c5{bottom:214.940700px;}
.y26{bottom:215.249550px;}
.y184{bottom:217.796700px;}
.y118{bottom:221.947650px;}
.yb8{bottom:222.388500px;}
.yd1{bottom:224.017350px;}
.y176{bottom:227.228850px;}
.y59{bottom:227.363850px;}
.y1c4{bottom:229.940700px;}
.y183{bottom:232.796700px;}
.y25{bottom:233.249550px;}
.y13d{bottom:238.211550px;}
.yb7{bottom:238.636500px;}
.yd0{bottom:240.517350px;}
.y1c3{bottom:244.940700px;}
.y175{bottom:245.228850px;}
.y58{bottom:245.363850px;}
.y182{bottom:247.796700px;}
.y24{bottom:251.249550px;}
.y117{bottom:253.459650px;}
.ycf{bottom:256.777350px;}
.y1c2{bottom:259.940700px;}
.y174{bottom:263.228850px;}
.y57{bottom:263.363850px;}
.y23{bottom:269.249550px;}
.yb6{bottom:270.148500px;}
.y13c{bottom:273.027600px;}
.yce{bottom:273.277350px;}
.y1c1{bottom:274.940700px;}
.y173{bottom:281.228850px;}
.y56{bottom:281.363850px;}
.y22{bottom:287.249550px;}
.y116{bottom:288.277050px;}
.ycd{bottom:289.537350px;}
.y1c0{bottom:289.940700px;}
.y13b{bottom:292.527600px;}
.y172{bottom:299.228850px;}
.y55{bottom:299.363850px;}
.y1bf{bottom:304.940700px;}
.yb5{bottom:304.965600px;}
.y21{bottom:305.249550px;}
.ycc{bottom:306.037350px;}
.y171{bottom:317.228850px;}
.y54{bottom:317.363850px;}
.y1be{bottom:319.940700px;}
.ycb{bottom:322.297350px;}
.y20{bottom:323.249550px;}
.y131{bottom:334.314450px;}
.y1bd{bottom:334.940700px;}
.y170{bottom:335.228850px;}
.y53{bottom:335.363850px;}
.yca{bottom:338.797350px;}
.y1f{bottom:341.249550px;}
.y14a{bottom:344.542200px;}
.y1bc{bottom:349.940700px;}
.y16f{bottom:353.228850px;}
.y52{bottom:353.363850px;}
.y90{bottom:353.663850px;}
.yc9{bottom:355.057350px;}
.y1e{bottom:359.249550px;}
.y130{bottom:359.599200px;}
.y149{bottom:360.790200px;}
.y1bb{bottom:364.940700px;}
.y16e{bottom:371.228850px;}
.y51{bottom:371.363850px;}
.yb4{bottom:371.505600px;}
.yc8{bottom:371.557350px;}
.y8f{bottom:371.663850px;}
.y12f{bottom:374.351700px;}
.y148{bottom:377.038200px;}
.y1d{bottom:377.249550px;}
.y1ba{bottom:379.940700px;}
.yc7{bottom:387.817350px;}
.y12e{bottom:389.104200px;}
.y16d{bottom:389.228850px;}
.y50{bottom:389.363850px;}
.yb3{bottom:389.505600px;}
.y8e{bottom:389.663850px;}
.y1b9{bottom:394.940700px;}
.y1c{bottom:395.249550px;}
.y12d{bottom:403.856700px;}
.yc6{bottom:404.317350px;}
.y16c{bottom:407.228850px;}
.y4f{bottom:407.363850px;}
.yb2{bottom:407.505600px;}
.y8d{bottom:407.663850px;}
.y147{bottom:408.550200px;}
.y1b8{bottom:409.940700px;}
.y1b{bottom:413.249550px;}
.y12c{bottom:418.609200px;}
.yc5{bottom:420.577350px;}
.y1b7{bottom:424.940700px;}
.y16b{bottom:425.228850px;}
.y4e{bottom:425.363850px;}
.yb1{bottom:425.505600px;}
.y8c{bottom:425.663850px;}
.y1a{bottom:431.249550px;}
.y12b{bottom:433.361700px;}
.yc4{bottom:437.077350px;}
.y1b6{bottom:439.940700px;}
.y16a{bottom:443.228850px;}
.y4d{bottom:443.363850px;}
.y146{bottom:443.367600px;}
.yb0{bottom:443.505600px;}
.y8b{bottom:443.663850px;}
.y12a{bottom:448.114200px;}
.y28{bottom:449.249550px;}
.yc3{bottom:453.337350px;}
.y1b5{bottom:454.940700px;}
.y169{bottom:461.228850px;}
.y4c{bottom:461.363850px;}
.yaf{bottom:461.505600px;}
.y8a{bottom:461.663850px;}
.y129{bottom:462.866700px;}
.y19{bottom:467.249550px;}
.yc2{bottom:469.837350px;}
.y1b4{bottom:469.940700px;}
.y128{bottom:477.619200px;}
.y168{bottom:479.228850px;}
.y4b{bottom:479.363850px;}
.yae{bottom:479.505600px;}
.y89{bottom:479.663850px;}
.y1b3{bottom:484.940700px;}
.y14c{bottom:490.798200px;}
.y127{bottom:492.371700px;}
.y167{bottom:497.228850px;}
.y4a{bottom:497.363850px;}
.yad{bottom:497.505600px;}
.y88{bottom:497.663850px;}
.y1b2{bottom:499.940700px;}
.yc1{bottom:501.349350px;}
.y14b{bottom:506.542200px;}
.y126{bottom:507.124200px;}
.y1b1{bottom:514.940700px;}
.y166{bottom:515.228850px;}
.y49{bottom:515.363850px;}
.yac{bottom:515.505600px;}
.y87{bottom:515.663850px;}
.y125{bottom:521.876700px;}
.y1b0{bottom:529.940700px;}
.y165{bottom:533.228850px;}
.y48{bottom:533.363850px;}
.yab{bottom:533.505600px;}
.y86{bottom:533.663850px;}
.yc0{bottom:536.166750px;}
.y16{bottom:542.047050px;}
.y124{bottom:543.005550px;}
.y1af{bottom:544.940700px;}
.y164{bottom:551.228850px;}
.y47{bottom:551.363850px;}
.yaa{bottom:551.505600px;}
.y85{bottom:551.663850px;}
.y122{bottom:556.760550px;}
.y15{bottom:557.047050px;}
.y1ae{bottom:559.940700px;}
.y163{bottom:569.228850px;}
.y46{bottom:569.363850px;}
.ya9{bottom:569.505600px;}
.y84{bottom:569.663850px;}
.y123{bottom:570.515550px;}
.y1ad{bottom:574.940700px;}
.y162{bottom:587.228850px;}
.y45{bottom:587.363850px;}
.ya8{bottom:587.505600px;}
.yf1{bottom:587.505750px;}
.y83{bottom:587.663850px;}
.y14{bottom:589.903050px;}
.y1ac{bottom:589.940700px;}
.y121{bottom:601.540800px;}
.y13{bottom:604.903050px;}
.y1ab{bottom:604.940700px;}
.y161{bottom:605.228850px;}
.y44{bottom:605.363850px;}
.ya7{bottom:605.505600px;}
.yf0{bottom:605.505750px;}
.y82{bottom:605.663850px;}
.y12{bottom:619.903050px;}
.y1aa{bottom:619.940700px;}
.y160{bottom:623.228850px;}
.y43{bottom:623.363850px;}
.yef{bottom:623.505750px;}
.ya6{bottom:623.528850px;}
.y81{bottom:623.663850px;}
.y11{bottom:634.903050px;}
.y1a9{bottom:634.940700px;}
.y15f{bottom:641.228850px;}
.y42{bottom:641.363850px;}
.yee{bottom:641.505750px;}
.y106{bottom:641.514000px;}
.ya5{bottom:641.528850px;}
.y80{bottom:641.663850px;}
.y115{bottom:647.008350px;}
.y10{bottom:649.903050px;}
.y1a8{bottom:649.940700px;}
.y15e{bottom:659.228850px;}
.y41{bottom:659.363850px;}
.yed{bottom:659.505750px;}
.y105{bottom:659.514000px;}
.ya4{bottom:659.528850px;}
.y114{bottom:663.534150px;}
.yf{bottom:664.911900px;}
.y1a7{bottom:664.940700px;}
.y15d{bottom:677.228850px;}
.y40{bottom:677.363850px;}
.yec{bottom:677.505750px;}
.ya3{bottom:677.528850px;}
.y7f{bottom:677.663850px;}
.ye{bottom:679.911900px;}
.y1a6{bottom:679.940700px;}
.y6d{bottom:681.284850px;}
.y113{bottom:689.046150px;}
.yd{bottom:694.911900px;}
.y1a5{bottom:694.940700px;}
.y15c{bottom:695.228850px;}
.y3f{bottom:695.363850px;}
.yeb{bottom:695.505750px;}
.y104{bottom:695.514000px;}
.ya2{bottom:695.528850px;}
.y112{bottom:705.294150px;}
.yc{bottom:709.911900px;}
.y1a4{bottom:709.940700px;}
.y15b{bottom:713.228850px;}
.y3e{bottom:713.363850px;}
.yea{bottom:713.505750px;}
.y7e{bottom:713.513850px;}
.ya1{bottom:713.528850px;}
.y111{bottom:721.542150px;}
.yb{bottom:724.911900px;}
.y1a3{bottom:724.940700px;}
.y15a{bottom:731.228850px;}
.y3d{bottom:731.363850px;}
.y103{bottom:731.364000px;}
.ye9{bottom:731.505750px;}
.y7d{bottom:731.513850px;}
.ya0{bottom:731.528850px;}
.y110{bottom:737.790150px;}
.ya{bottom:739.911900px;}
.y1a2{bottom:739.940700px;}
.y159{bottom:749.228850px;}
.y3c{bottom:749.363850px;}
.y102{bottom:749.364000px;}
.y6c{bottom:749.498850px;}
.ye8{bottom:749.505750px;}
.y7c{bottom:749.513850px;}
.y10f{bottom:754.038150px;}
.y9{bottom:754.911900px;}
.y1a1{bottom:754.940700px;}
.y158{bottom:767.228850px;}
.y3b{bottom:767.363850px;}
.y101{bottom:767.364000px;}
.y6b{bottom:767.498850px;}
.ye7{bottom:767.505750px;}
.y7b{bottom:767.513850px;}
.y9f{bottom:767.528850px;}
.y8{bottom:769.911900px;}
.y1a0{bottom:769.940700px;}
.y10e{bottom:770.286150px;}
.y19f{bottom:784.940700px;}
.y157{bottom:785.228850px;}
.y3a{bottom:785.363850px;}
.y100{bottom:785.364000px;}
.y6a{bottom:785.498850px;}
.ye6{bottom:785.505750px;}
.y7a{bottom:785.513850px;}
.y10d{bottom:786.534150px;}
.y19e{bottom:799.940700px;}
.y10c{bottom:802.782150px;}
.y156{bottom:803.228850px;}
.y39{bottom:803.363850px;}
.yff{bottom:803.364000px;}
.y9e{bottom:803.378850px;}
.y69{bottom:803.498850px;}
.ye5{bottom:803.505750px;}
.y79{bottom:803.513850px;}
.y19d{bottom:814.940700px;}
.y7{bottom:818.863500px;}
.y10b{bottom:819.030150px;}
.y155{bottom:821.228850px;}
.y38{bottom:821.363850px;}
.yfe{bottom:821.364000px;}
.y9d{bottom:821.378850px;}
.y68{bottom:821.498850px;}
.ye4{bottom:821.502600px;}
.y78{bottom:821.513850px;}
.y19c{bottom:829.940700px;}
.y154{bottom:839.228850px;}
.y37{bottom:839.363850px;}
.yfd{bottom:839.364000px;}
.y9c{bottom:839.378850px;}
.y67{bottom:839.498850px;}
.ye3{bottom:839.502600px;}
.y77{bottom:839.513850px;}
.y19b{bottom:844.940700px;}
.y10a{bottom:850.542150px;}
.y153{bottom:857.228850px;}
.y6{bottom:857.273850px;}
.y36{bottom:857.363850px;}
.yfc{bottom:857.364000px;}
.y9b{bottom:857.378850px;}
.y66{bottom:857.498850px;}
.ye2{bottom:857.502600px;}
.y19a{bottom:859.940700px;}
.y5{bottom:869.655900px;}
.y199{bottom:874.940700px;}
.y152{bottom:875.228850px;}
.y35{bottom:875.363850px;}
.yfb{bottom:875.364000px;}
.y139{bottom:875.367600px;}
.y9a{bottom:875.378850px;}
.y65{bottom:875.498850px;}
.ye1{bottom:875.502600px;}
.y76{bottom:875.513850px;}
.y109{bottom:885.354000px;}
.y1d9{bottom:889.938450px;}
.y198{bottom:889.940700px;}
.y4{bottom:890.273850px;}
.y151{bottom:893.228850px;}
.y34{bottom:893.363850px;}
.yfa{bottom:893.364000px;}
.y138{bottom:893.367600px;}
.y99{bottom:893.378850px;}
.y64{bottom:893.498850px;}
.ye0{bottom:893.502600px;}
.y1d8{bottom:904.938450px;}
.y197{bottom:904.940700px;}
.y3{bottom:905.541300px;}
.y150{bottom:911.228850px;}
.y33{bottom:911.363850px;}
.yf9{bottom:911.364000px;}
.y137{bottom:911.367600px;}
.y98{bottom:911.378850px;}
.y63{bottom:911.498850px;}
.ydf{bottom:911.502600px;}
.y1d7{bottom:919.938450px;}
.y196{bottom:919.940700px;}
.y14f{bottom:929.228850px;}
.y32{bottom:929.363850px;}
.yf8{bottom:929.364000px;}
.y136{bottom:929.367600px;}
.y97{bottom:929.378850px;}
.y62{bottom:929.498850px;}
.yde{bottom:929.502600px;}
.y2{bottom:932.930700px;}
.y1d6{bottom:934.938450px;}
.y195{bottom:934.940700px;}
.y14e{bottom:947.228850px;}
.y31{bottom:947.363850px;}
.yf7{bottom:947.364000px;}
.y135{bottom:947.367600px;}
.y96{bottom:947.378850px;}
.y61{bottom:947.498850px;}
.ydd{bottom:947.502600px;}
.y1d5{bottom:949.938450px;}
.y194{bottom:949.940700px;}
.y1{bottom:959.936700px;}
.y1d4{bottom:964.938450px;}
.y193{bottom:964.940700px;}
.y30{bottom:965.363850px;}
.yf6{bottom:965.364000px;}
.y134{bottom:965.367600px;}
.y95{bottom:965.378850px;}
.y60{bottom:965.498850px;}
.ydc{bottom:965.502600px;}
.y1d3{bottom:979.938450px;}
.y192{bottom:979.940700px;}
.y14d{bottom:983.228850px;}
.y2f{bottom:983.363850px;}
.yf5{bottom:983.364000px;}
.y133{bottom:983.367600px;}
.y94{bottom:983.378850px;}
.y1d2{bottom:994.938450px;}
.y191{bottom:994.940700px;}
.y2e{bottom:1001.363850px;}
.yf4{bottom:1001.364000px;}
.y132{bottom:1001.367600px;}
.y93{bottom:1001.378850px;}
.y5f{bottom:1001.498850px;}
.ydb{bottom:1001.502600px;}
.y1d1{bottom:1009.938450px;}
.y190{bottom:1009.940700px;}
.y2d{bottom:1019.363850px;}
.y108{bottom:1019.364000px;}
.y13a{bottom:1019.367600px;}
.yf3{bottom:1019.370750px;}
.y92{bottom:1019.378850px;}
.y1d0{bottom:1024.938450px;}
.y18f{bottom:1024.940700px;}
.y2c{bottom:1037.363850px;}
.y107{bottom:1037.364000px;}
.yda{bottom:1037.367600px;}
.yf2{bottom:1037.370750px;}
.y91{bottom:1037.378850px;}
.y1cf{bottom:1039.938450px;}
.y18e{bottom:1039.940700px;}
.y2a{bottom:1070.769450px;}
.y75{bottom:1086.066450px;}
.y29{bottom:1086.069450px;}
.h4{height:20.995312px;}
.hf{height:30.618164px;}
.h10{height:30.633164px;}
.h6{height:34.968750px;}
.h5{height:34.992188px;}
.hd{height:35.368987px;}
.ha{height:37.179199px;}
.h7{height:43.681641px;}
.h9{height:43.710938px;}
.h8{height:43.740234px;}
.he{height:43.752834px;}
.hb{height:46.839741px;}
.h3{height:51.523955px;}
.h2{height:61.154297px;}
.hc{height:67.968188px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:76.535400px;}
.x15{left:78.661350px;}
.x9{left:96.094500px;}
.x1{left:97.795350px;}
.x13{left:99.921150px;}
.x5{left:102.463200px;}
.x1c{left:106.295400px;}
.xc{left:110.555400px;}
.x2{left:125.427600px;}
.x1e{left:127.555350px;}
.x7{left:131.816400px;}
.x3{left:161.571600px;}
.x19{left:188.026500px;}
.x1b{left:194.285400px;}
.x18{left:199.681500px;}
.x17{left:211.105350px;}
.x6{left:212.876400px;}
.x16{left:214.732200px;}
.x1a{left:220.135350px;}
.x4{left:229.603200px;}
.xa{left:455.041500px;}
.xe{left:457.079850px;}
.x11{left:478.360350px;}
.x8{left:480.476400px;}
.x1d{left:486.827400px;}
.xf{left:491.099850px;}
.x1f{left:508.099350px;}
.x12{left:512.380350px;}
.xd{left:525.269850px;}
.x10{left:731.312100px;}
.x14{left:752.571900px;}
@media print{
.v2{vertical-align:-14.641600pt;}
.v3{vertical-align:-2.452267pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.440000pt;}
.v7{vertical-align:3.026133pt;}
.v4{vertical-align:18.307200pt;}
.v1{vertical-align:20.138133pt;}
.v6{vertical-align:29.312000pt;}
.ls61{letter-spacing:-3.157333pt;}
.lsa2{letter-spacing:-2.432000pt;}
.ls4c{letter-spacing:-1.973333pt;}
.lsa0{letter-spacing:-1.450667pt;}
.ls60{letter-spacing:-0.768000pt;}
.ls70{letter-spacing:-0.672000pt;}
.ls1f{letter-spacing:-0.426667pt;}
.ls4d{letter-spacing:-0.373333pt;}
.ls20{letter-spacing:-0.320000pt;}
.lsa7{letter-spacing:-0.256000pt;}
.ls3d{letter-spacing:-0.213333pt;}
.ls1e{letter-spacing:-0.170667pt;}
.ls74{letter-spacing:-0.160000pt;}
.lsa3{letter-spacing:-0.128000pt;}
.ls21{letter-spacing:-0.106667pt;}
.lsa1{letter-spacing:-0.085333pt;}
.ls1c{letter-spacing:-0.074667pt;}
.ls3e{letter-spacing:-0.053333pt;}
.ls3f{letter-spacing:-0.042667pt;}
.ls1d{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.004267pt;}
.ls0{letter-spacing:0.005333pt;}
.ls4f{letter-spacing:0.006933pt;}
.ls6{letter-spacing:0.019200pt;}
.ls6e{letter-spacing:0.028267pt;}
.ls6d{letter-spacing:0.029867pt;}
.ls5d{letter-spacing:0.036800pt;}
.ls7{letter-spacing:0.042667pt;}
.ls56{letter-spacing:0.052267pt;}
.ls67{letter-spacing:0.053333pt;}
.ls55{letter-spacing:0.077333pt;}
.ls2a{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.128000pt;}
.ls2f{letter-spacing:0.160000pt;}
.ls73{letter-spacing:0.170667pt;}
.ls8a{letter-spacing:0.192000pt;}
.ls71{letter-spacing:0.213333pt;}
.ls59{letter-spacing:0.219733pt;}
.ls97{letter-spacing:0.256000pt;}
.ls31{letter-spacing:0.266667pt;}
.ls84{letter-spacing:0.310933pt;}
.ls52{letter-spacing:0.320000pt;}
.ls7a{letter-spacing:0.331733pt;}
.ls7b{letter-spacing:0.337067pt;}
.ls5{letter-spacing:0.341333pt;}
.ls83{letter-spacing:0.354667pt;}
.ls47{letter-spacing:0.373333pt;}
.ls7d{letter-spacing:0.376533pt;}
.ls7e{letter-spacing:0.381333pt;}
.ls92{letter-spacing:0.384000pt;}
.ls2d{letter-spacing:0.426667pt;}
.ls58{letter-spacing:0.465600pt;}
.ls9b{letter-spacing:0.469333pt;}
.lsf{letter-spacing:0.480000pt;}
.ls98{letter-spacing:0.512000pt;}
.lsb{letter-spacing:0.533333pt;}
.ls6b{letter-spacing:0.541867pt;}
.ls6c{letter-spacing:0.545600pt;}
.ls3b{letter-spacing:0.554667pt;}
.ls23{letter-spacing:0.586667pt;}
.ls96{letter-spacing:0.597333pt;}
.ls8{letter-spacing:0.640000pt;}
.ls54{letter-spacing:0.681067pt;}
.ls3c{letter-spacing:0.682667pt;}
.ls17{letter-spacing:0.693333pt;}
.ls99{letter-spacing:0.725333pt;}
.ls36{letter-spacing:0.746667pt;}
.ls5b{letter-spacing:0.759467pt;}
.ls93{letter-spacing:0.768000pt;}
.ls2b{letter-spacing:0.800000pt;}
.ls2{letter-spacing:0.810667pt;}
.ls9{letter-spacing:0.853333pt;}
.ls88{letter-spacing:0.864000pt;}
.ls6a{letter-spacing:0.896000pt;}
.ls34{letter-spacing:0.906667pt;}
.ls94{letter-spacing:0.938667pt;}
.ls35{letter-spacing:0.960000pt;}
.ls9a{letter-spacing:0.981333pt;}
.ls77{letter-spacing:1.013333pt;}
.ls91{letter-spacing:1.024000pt;}
.ls80{letter-spacing:1.033067pt;}
.ls15{letter-spacing:1.066667pt;}
.ls3{letter-spacing:1.109333pt;}
.ls64{letter-spacing:1.120000pt;}
.ls57{letter-spacing:1.127467pt;}
.ls6f{letter-spacing:1.152000pt;}
.ls53{letter-spacing:1.173333pt;}
.ls62{letter-spacing:1.184000pt;}
.ls9f{letter-spacing:1.194667pt;}
.ls28{letter-spacing:1.226667pt;}
.ls9d{letter-spacing:1.237333pt;}
.ls5a{letter-spacing:1.280000pt;}
.ls5e{letter-spacing:1.314667pt;}
.lsc{letter-spacing:1.333333pt;}
.ls7c{letter-spacing:1.342400pt;}
.ls9e{letter-spacing:1.365333pt;}
.ls24{letter-spacing:1.386667pt;}
.lsa4{letter-spacing:1.408000pt;}
.ls19{letter-spacing:1.440000pt;}
.ls81{letter-spacing:1.481067pt;}
.ls37{letter-spacing:1.493333pt;}
.ls89{letter-spacing:1.536000pt;}
.ls2c{letter-spacing:1.546667pt;}
.ls40{letter-spacing:1.600000pt;}
.ls11{letter-spacing:1.653333pt;}
.lsd{letter-spacing:1.706667pt;}
.ls39{letter-spacing:1.760000pt;}
.ls13{letter-spacing:1.866667pt;}
.ls9c{letter-spacing:1.877333pt;}
.ls8b{letter-spacing:1.888000pt;}
.ls66{letter-spacing:1.915200pt;}
.ls22{letter-spacing:1.920000pt;}
.ls5f{letter-spacing:1.957867pt;}
.ls33{letter-spacing:1.973333pt;}
.ls86{letter-spacing:2.026667pt;}
.ls16{letter-spacing:2.080000pt;}
.ls72{letter-spacing:2.133333pt;}
.ls95{letter-spacing:2.176000pt;}
.lsa{letter-spacing:2.186667pt;}
.ls5c{letter-spacing:2.240000pt;}
.ls4a{letter-spacing:2.293333pt;}
.ls42{letter-spacing:2.346667pt;}
.ls38{letter-spacing:2.400000pt;}
.lse{letter-spacing:2.453333pt;}
.ls25{letter-spacing:2.506667pt;}
.ls2e{letter-spacing:2.560000pt;}
.ls10{letter-spacing:2.613333pt;}
.ls65{letter-spacing:2.666667pt;}
.ls45{letter-spacing:2.773333pt;}
.ls18{letter-spacing:2.826667pt;}
.ls63{letter-spacing:2.880000pt;}
.ls1a{letter-spacing:2.933333pt;}
.ls3a{letter-spacing:2.986667pt;}
.ls14{letter-spacing:3.040000pt;}
.ls46{letter-spacing:3.093333pt;}
.ls43{letter-spacing:3.146667pt;}
.ls85{letter-spacing:3.147200pt;}
.lsa6{letter-spacing:3.157333pt;}
.ls8d{letter-spacing:3.200000pt;}
.ls1b{letter-spacing:3.253333pt;}
.ls12{letter-spacing:3.306667pt;}
.ls90{letter-spacing:3.328000pt;}
.ls8c{letter-spacing:3.360000pt;}
.ls26{letter-spacing:3.466667pt;}
.ls49{letter-spacing:3.520000pt;}
.ls29{letter-spacing:3.573333pt;}
.ls8e{letter-spacing:3.626667pt;}
.ls32{letter-spacing:3.680000pt;}
.ls48{letter-spacing:3.733333pt;}
.ls27{letter-spacing:3.786667pt;}
.ls4b{letter-spacing:3.893333pt;}
.ls41{letter-spacing:3.946667pt;}
.lsa5{letter-spacing:4.053333pt;}
.ls8f{letter-spacing:4.106667pt;}
.ls75{letter-spacing:4.160000pt;}
.ls44{letter-spacing:4.213333pt;}
.ls30{letter-spacing:4.426667pt;}
.ls87{letter-spacing:4.480000pt;}
.ls79{letter-spacing:4.586667pt;}
.ls82{letter-spacing:4.693333pt;}
.ls51{letter-spacing:4.960000pt;}
.ls7f{letter-spacing:5.066667pt;}
.ls76{letter-spacing:5.173333pt;}
.ls78{letter-spacing:10.560000pt;}
.ls50{letter-spacing:121.910933pt;}
.ls4e{letter-spacing:132.106667pt;}
.ls69{letter-spacing:363.801067pt;}
.ls68{letter-spacing:373.996267pt;}
.ws1b{word-spacing:-53.333333pt;}
.ws5d{word-spacing:-15.253333pt;}
.ws1d{word-spacing:-14.826667pt;}
.ws6c{word-spacing:-12.800000pt;}
.ws2{word-spacing:-12.602667pt;}
.ws7b{word-spacing:-12.202667pt;}
.ws26{word-spacing:-11.861333pt;}
.ws2a{word-spacing:-11.093333pt;}
.ws62{word-spacing:-10.784000pt;}
.ws60{word-spacing:-10.432000pt;}
.ws6a{word-spacing:-10.410667pt;}
.ws38{word-spacing:-10.080000pt;}
.ws48{word-spacing:-10.048000pt;}
.ws0{word-spacing:-9.785600pt;}
.ws5f{word-spacing:-9.760000pt;}
.ws37{word-spacing:-9.696000pt;}
.ws5e{word-spacing:-9.536000pt;}
.ws6b{word-spacing:-9.429333pt;}
.ws61{word-spacing:-9.088000pt;}
.ws1c{word-spacing:-8.896000pt;}
.ws1{word-spacing:-7.116800pt;}
.ws6f{word-spacing:-2.613333pt;}
.ws73{word-spacing:-2.346667pt;}
.ws63{word-spacing:-2.293333pt;}
.ws19{word-spacing:-1.973333pt;}
.ws4{word-spacing:-1.056000pt;}
.ws70{word-spacing:-0.960000pt;}
.ws72{word-spacing:-0.938667pt;}
.ws79{word-spacing:-0.725333pt;}
.ws7c{word-spacing:-0.640000pt;}
.ws8{word-spacing:-0.341333pt;}
.ws16{word-spacing:-0.160000pt;}
.ws58{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.053333pt;}
.ws78{word-spacing:0.085333pt;}
.ws21{word-spacing:0.106667pt;}
.ws67{word-spacing:0.160000pt;}
.ws75{word-spacing:0.170667pt;}
.wsb{word-spacing:0.213333pt;}
.ws7d{word-spacing:0.256000pt;}
.ws18{word-spacing:0.266667pt;}
.ws10{word-spacing:0.320000pt;}
.ws23{word-spacing:0.373333pt;}
.ws9{word-spacing:0.384000pt;}
.wsc{word-spacing:0.426667pt;}
.ws20{word-spacing:0.533333pt;}
.ws6d{word-spacing:0.693333pt;}
.ws64{word-spacing:0.746667pt;}
.ws43{word-spacing:0.800000pt;}
.ws44{word-spacing:0.853333pt;}
.ws3a{word-spacing:0.906667pt;}
.ws46{word-spacing:1.013333pt;}
.ws77{word-spacing:1.109333pt;}
.ws1f{word-spacing:1.173333pt;}
.ws12{word-spacing:1.226667pt;}
.ws25{word-spacing:1.280000pt;}
.ws7a{word-spacing:1.365333pt;}
.ws74{word-spacing:1.408000pt;}
.ws69{word-spacing:1.440000pt;}
.ws65{word-spacing:1.493333pt;}
.ws3b{word-spacing:1.600000pt;}
.ws45{word-spacing:1.813333pt;}
.ws66{word-spacing:1.866667pt;}
.ws76{word-spacing:1.962667pt;}
.ws11{word-spacing:1.973333pt;}
.ws17{word-spacing:2.026667pt;}
.ws24{word-spacing:2.080000pt;}
.ws41{word-spacing:2.133333pt;}
.ws3f{word-spacing:2.346667pt;}
.wsd{word-spacing:2.453333pt;}
.ws6{word-spacing:2.602667pt;}
.ws3c{word-spacing:2.613333pt;}
.ws40{word-spacing:2.666667pt;}
.wsf{word-spacing:2.773333pt;}
.ws5c{word-spacing:2.826667pt;}
.ws39{word-spacing:2.880000pt;}
.ws5b{word-spacing:3.146667pt;}
.ws71{word-spacing:3.200000pt;}
.ws7{word-spacing:3.328000pt;}
.ws3d{word-spacing:3.573333pt;}
.ws22{word-spacing:3.626667pt;}
.ws6e{word-spacing:3.680000pt;}
.wsa{word-spacing:3.882667pt;}
.ws47{word-spacing:3.893333pt;}
.ws5{word-spacing:3.925333pt;}
.ws68{word-spacing:4.000000pt;}
.ws42{word-spacing:4.160000pt;}
.ws14{word-spacing:4.373333pt;}
.ws15{word-spacing:4.426667pt;}
.ws3e{word-spacing:4.586667pt;}
.ws13{word-spacing:4.853333pt;}
.wse{word-spacing:4.906667pt;}
.ws53{word-spacing:12.096000pt;}
.ws56{word-spacing:26.618667pt;}
.ws54{word-spacing:32.293333pt;}
.ws28{word-spacing:39.082667pt;}
.ws36{word-spacing:40.661333pt;}
.ws33{word-spacing:85.376000pt;}
.ws50{word-spacing:98.112000pt;}
.ws51{word-spacing:103.648533pt;}
.ws52{word-spacing:103.649067pt;}
.ws59{word-spacing:103.893333pt;}
.ws30{word-spacing:109.909333pt;}
.ws29{word-spacing:115.413333pt;}
.ws34{word-spacing:124.160000pt;}
.ws4e{word-spacing:129.792000pt;}
.ws4d{word-spacing:131.370667pt;}
.ws31{word-spacing:132.053333pt;}
.ws35{word-spacing:133.632000pt;}
.ws2d{word-spacing:133.845333pt;}
.ws27{word-spacing:134.314667pt;}
.ws32{word-spacing:142.293333pt;}
.ws2f{word-spacing:148.608000pt;}
.ws2c{word-spacing:150.698667pt;}
.ws5a{word-spacing:153.941333pt;}
.ws2b{word-spacing:158.976000pt;}
.ws4b{word-spacing:162.645333pt;}
.ws2e{word-spacing:162.688000pt;}
.ws57{word-spacing:162.698667pt;}
.ws55{word-spacing:178.117333pt;}
.ws4f{word-spacing:191.445333pt;}
.ws4a{word-spacing:280.960000pt;}
.ws4c{word-spacing:341.632000pt;}
.ws49{word-spacing:359.978667pt;}
.ws1e{word-spacing:988.714667pt;}
._a{margin-left:-2576.112000pt;}
._19{margin-left:-2554.941333pt;}
._7{margin-left:-11.861333pt;}
._5f{margin-left:-10.560000pt;}
._2b{margin-left:-6.880000pt;}
._6{margin-left:-5.836800pt;}
._1{margin-left:-4.259733pt;}
._4{margin-left:-3.157333pt;}
._2{margin-left:-2.170667pt;}
._0{margin-left:-1.032533pt;}
._3{width:1.022400pt;}
._9{width:2.233067pt;}
._5{width:4.224000pt;}
._8{width:5.322667pt;}
._60{width:7.253333pt;}
._49{width:21.737067pt;}
._47{width:23.212267pt;}
._4a{width:30.662933pt;}
._1d{width:32.938667pt;}
._1c{width:36.259733pt;}
._4b{width:37.669333pt;}
._46{width:42.672000pt;}
._48{width:45.829333pt;}
._22{width:62.805333pt;}
._28{width:66.005333pt;}
._55{width:70.857067pt;}
._1e{width:78.122667pt;}
._45{width:86.912000pt;}
._1b{width:125.824000pt;}
._2a{width:131.882667pt;}
._41{width:133.930667pt;}
._25{width:137.813333pt;}
._4f{width:138.730667pt;}
._53{width:143.232000pt;}
._21{width:149.674667pt;}
._1f{width:162.517333pt;}
._26{width:164.138667pt;}
._4c{width:165.722667pt;}
._4e{width:167.776000pt;}
._1a{width:170.496000pt;}
._4d{width:171.920000pt;}
._56{width:174.720000pt;}
._38{width:176.512000pt;}
._37{width:177.664000pt;}
._3b{width:179.242667pt;}
._3a{width:183.253333pt;}
._36{width:184.405333pt;}
._39{width:190.762667pt;}
._44{width:203.578667pt;}
._43{width:204.586667pt;}
._42{width:210.485333pt;}
._24{width:215.552000pt;}
._23{width:217.045333pt;}
._20{width:227.370667pt;}
._27{width:228.949333pt;}
._b{width:236.970667pt;}
._35{width:239.658667pt;}
._c{width:244.949333pt;}
._d{width:250.922667pt;}
._57{width:254.165333pt;}
._51{width:260.992000pt;}
._10{width:293.248000pt;}
._50{width:314.832000pt;}
._f{width:316.928000pt;}
._17{width:328.789333pt;}
._3f{width:334.549333pt;}
._3c{width:339.242667pt;}
._3d{width:351.146667pt;}
._54{width:353.493333pt;}
._40{width:360.576000pt;}
._3e{width:370.133333pt;}
._2d{width:381.824000pt;}
._5a{width:396.912000pt;}
._2c{width:406.528000pt;}
._e{width:413.184000pt;}
._5d{width:416.426667pt;}
._58{width:420.778667pt;}
._5b{width:423.424000pt;}
._5c{width:425.635733pt;}
._59{width:426.581333pt;}
._5e{width:439.594667pt;}
._15{width:457.557333pt;}
._34{width:464.256000pt;}
._32{width:470.613333pt;}
._2f{width:475.306667pt;}
._30{width:487.210667pt;}
._2e{width:489.557333pt;}
._33{width:496.640000pt;}
._31{width:506.197333pt;}
._18{width:510.592000pt;}
._11{width:514.432000pt;}
._12{width:542.933333pt;}
._16{width:557.141333pt;}
._13{width:566.698667pt;}
._14{width:623.616000pt;}
._52{width:625.621333pt;}
._29{width:1678.549333pt;}
.fs9{font-size:22.400000pt;}
.fs3{font-size:25.600000pt;}
.fs7{font-size:32.000000pt;}
.fs2{font-size:35.200000pt;}
.fs8{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs5{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1ce{bottom:71.058400pt;}
.y120{bottom:73.521467pt;}
.y18d{bottom:73.597067pt;}
.y17e{bottom:73.981200pt;}
.y181{bottom:74.101200pt;}
.y2b{bottom:74.216800pt;}
.yd9{bottom:74.635867pt;}
.y145{bottom:82.634267pt;}
.y1cd{bottom:84.391733pt;}
.y18c{bottom:86.930400pt;}
.y17d{bottom:89.981200pt;}
.y180{bottom:90.101200pt;}
.y74{bottom:90.386533pt;}
.y11f{bottom:96.188133pt;}
.ybf{bottom:96.580000pt;}
.y144{bottom:97.076933pt;}
.yd8{bottom:97.313200pt;}
.y1cc{bottom:97.725067pt;}
.y18b{bottom:100.263733pt;}
.y73{bottom:104.381200pt;}
.y17c{bottom:105.981200pt;}
.y17f{bottom:106.101200pt;}
.y11e{bottom:110.630800pt;}
.ybe{bottom:111.022667pt;}
.y1cb{bottom:111.058400pt;}
.y143{bottom:111.519600pt;}
.yd7{bottom:111.766533pt;}
.y18a{bottom:113.597067pt;}
.y18{bottom:116.859600pt;}
.y72{bottom:118.375867pt;}
.y17b{bottom:121.981200pt;}
.y5e{bottom:122.101200pt;}
.y1ca{bottom:124.391733pt;}
.y11d{bottom:125.073467pt;}
.ybd{bottom:125.465333pt;}
.y142{bottom:125.962267pt;}
.yd6{bottom:126.433200pt;}
.y189{bottom:126.930400pt;}
.y17{bottom:130.192933pt;}
.y71{bottom:132.370533pt;}
.y1c9{bottom:137.725067pt;}
.y17a{bottom:137.981200pt;}
.y5d{bottom:138.101200pt;}
.y11c{bottom:139.516133pt;}
.ybc{bottom:139.908000pt;}
.y188{bottom:140.263733pt;}
.y141{bottom:140.404933pt;}
.yd5{bottom:140.886533pt;}
.y70{bottom:146.365200pt;}
.y1c8{bottom:151.058400pt;}
.y187{bottom:153.597067pt;}
.y11b{bottom:153.958800pt;}
.y179{bottom:153.981200pt;}
.y5c{bottom:154.101200pt;}
.ybb{bottom:154.350667pt;}
.y140{bottom:154.847600pt;}
.yd4{bottom:155.553200pt;}
.y6f{bottom:160.359867pt;}
.y1c7{bottom:164.391733pt;}
.y186{bottom:166.930400pt;}
.y11a{bottom:168.401467pt;}
.yba{bottom:168.793333pt;}
.y13f{bottom:169.290267pt;}
.y178{bottom:169.981200pt;}
.yd3{bottom:170.006533pt;}
.y5b{bottom:170.101200pt;}
.y6e{bottom:174.354533pt;}
.y27{bottom:175.332933pt;}
.y1c6{bottom:177.725067pt;}
.y185{bottom:180.263733pt;}
.y119{bottom:182.844133pt;}
.yb9{bottom:183.236000pt;}
.y13e{bottom:183.732933pt;}
.yd2{bottom:184.673200pt;}
.y177{bottom:185.981200pt;}
.y5a{bottom:186.101200pt;}
.y1c5{bottom:191.058400pt;}
.y26{bottom:191.332933pt;}
.y184{bottom:193.597067pt;}
.y118{bottom:197.286800pt;}
.yb8{bottom:197.678667pt;}
.yd1{bottom:199.126533pt;}
.y176{bottom:201.981200pt;}
.y59{bottom:202.101200pt;}
.y1c4{bottom:204.391733pt;}
.y183{bottom:206.930400pt;}
.y25{bottom:207.332933pt;}
.y13d{bottom:211.743600pt;}
.yb7{bottom:212.121333pt;}
.yd0{bottom:213.793200pt;}
.y1c3{bottom:217.725067pt;}
.y175{bottom:217.981200pt;}
.y58{bottom:218.101200pt;}
.y182{bottom:220.263733pt;}
.y24{bottom:223.332933pt;}
.y117{bottom:225.297467pt;}
.ycf{bottom:228.246533pt;}
.y1c2{bottom:231.058400pt;}
.y174{bottom:233.981200pt;}
.y57{bottom:234.101200pt;}
.y23{bottom:239.332933pt;}
.yb6{bottom:240.132000pt;}
.y13c{bottom:242.691200pt;}
.yce{bottom:242.913200pt;}
.y1c1{bottom:244.391733pt;}
.y173{bottom:249.981200pt;}
.y56{bottom:250.101200pt;}
.y22{bottom:255.332933pt;}
.y116{bottom:256.246267pt;}
.ycd{bottom:257.366533pt;}
.y1c0{bottom:257.725067pt;}
.y13b{bottom:260.024533pt;}
.y172{bottom:265.981200pt;}
.y55{bottom:266.101200pt;}
.y1bf{bottom:271.058400pt;}
.yb5{bottom:271.080533pt;}
.y21{bottom:271.332933pt;}
.ycc{bottom:272.033200pt;}
.y171{bottom:281.981200pt;}
.y54{bottom:282.101200pt;}
.y1be{bottom:284.391733pt;}
.ycb{bottom:286.486533pt;}
.y20{bottom:287.332933pt;}
.y131{bottom:297.168400pt;}
.y1bd{bottom:297.725067pt;}
.y170{bottom:297.981200pt;}
.y53{bottom:298.101200pt;}
.yca{bottom:301.153200pt;}
.y1f{bottom:303.332933pt;}
.y14a{bottom:306.259733pt;}
.y1bc{bottom:311.058400pt;}
.y16f{bottom:313.981200pt;}
.y52{bottom:314.101200pt;}
.y90{bottom:314.367867pt;}
.yc9{bottom:315.606533pt;}
.y1e{bottom:319.332933pt;}
.y130{bottom:319.643733pt;}
.y149{bottom:320.702400pt;}
.y1bb{bottom:324.391733pt;}
.y16e{bottom:329.981200pt;}
.y51{bottom:330.101200pt;}
.yb4{bottom:330.227200pt;}
.yc8{bottom:330.273200pt;}
.y8f{bottom:330.367867pt;}
.y12f{bottom:332.757067pt;}
.y148{bottom:335.145067pt;}
.y1d{bottom:335.332933pt;}
.y1ba{bottom:337.725067pt;}
.yc7{bottom:344.726533pt;}
.y12e{bottom:345.870400pt;}
.y16d{bottom:345.981200pt;}
.y50{bottom:346.101200pt;}
.yb3{bottom:346.227200pt;}
.y8e{bottom:346.367867pt;}
.y1b9{bottom:351.058400pt;}
.y1c{bottom:351.332933pt;}
.y12d{bottom:358.983733pt;}
.yc6{bottom:359.393200pt;}
.y16c{bottom:361.981200pt;}
.y4f{bottom:362.101200pt;}
.yb2{bottom:362.227200pt;}
.y8d{bottom:362.367867pt;}
.y147{bottom:363.155733pt;}
.y1b8{bottom:364.391733pt;}
.y1b{bottom:367.332933pt;}
.y12c{bottom:372.097067pt;}
.yc5{bottom:373.846533pt;}
.y1b7{bottom:377.725067pt;}
.y16b{bottom:377.981200pt;}
.y4e{bottom:378.101200pt;}
.yb1{bottom:378.227200pt;}
.y8c{bottom:378.367867pt;}
.y1a{bottom:383.332933pt;}
.y12b{bottom:385.210400pt;}
.yc4{bottom:388.513200pt;}
.y1b6{bottom:391.058400pt;}
.y16a{bottom:393.981200pt;}
.y4d{bottom:394.101200pt;}
.y146{bottom:394.104533pt;}
.yb0{bottom:394.227200pt;}
.y8b{bottom:394.367867pt;}
.y12a{bottom:398.323733pt;}
.y28{bottom:399.332933pt;}
.yc3{bottom:402.966533pt;}
.y1b5{bottom:404.391733pt;}
.y169{bottom:409.981200pt;}
.y4c{bottom:410.101200pt;}
.yaf{bottom:410.227200pt;}
.y8a{bottom:410.367867pt;}
.y129{bottom:411.437067pt;}
.y19{bottom:415.332933pt;}
.yc2{bottom:417.633200pt;}
.y1b4{bottom:417.725067pt;}
.y128{bottom:424.550400pt;}
.y168{bottom:425.981200pt;}
.y4b{bottom:426.101200pt;}
.yae{bottom:426.227200pt;}
.y89{bottom:426.367867pt;}
.y1b3{bottom:431.058400pt;}
.y14c{bottom:436.265067pt;}
.y127{bottom:437.663733pt;}
.y167{bottom:441.981200pt;}
.y4a{bottom:442.101200pt;}
.yad{bottom:442.227200pt;}
.y88{bottom:442.367867pt;}
.y1b2{bottom:444.391733pt;}
.yc1{bottom:445.643867pt;}
.y14b{bottom:450.259733pt;}
.y126{bottom:450.777067pt;}
.y1b1{bottom:457.725067pt;}
.y166{bottom:457.981200pt;}
.y49{bottom:458.101200pt;}
.yac{bottom:458.227200pt;}
.y87{bottom:458.367867pt;}
.y125{bottom:463.890400pt;}
.y1b0{bottom:471.058400pt;}
.y165{bottom:473.981200pt;}
.y48{bottom:474.101200pt;}
.yab{bottom:474.227200pt;}
.y86{bottom:474.367867pt;}
.yc0{bottom:476.592667pt;}
.y16{bottom:481.819600pt;}
.y124{bottom:482.671600pt;}
.y1af{bottom:484.391733pt;}
.y164{bottom:489.981200pt;}
.y47{bottom:490.101200pt;}
.yaa{bottom:490.227200pt;}
.y85{bottom:490.367867pt;}
.y122{bottom:494.898267pt;}
.y15{bottom:495.152933pt;}
.y1ae{bottom:497.725067pt;}
.y163{bottom:505.981200pt;}
.y46{bottom:506.101200pt;}
.ya9{bottom:506.227200pt;}
.y84{bottom:506.367867pt;}
.y123{bottom:507.124933pt;}
.y1ad{bottom:511.058400pt;}
.y162{bottom:521.981200pt;}
.y45{bottom:522.101200pt;}
.ya8{bottom:522.227200pt;}
.yf1{bottom:522.227333pt;}
.y83{bottom:522.367867pt;}
.y14{bottom:524.358267pt;}
.y1ac{bottom:524.391733pt;}
.y121{bottom:534.702933pt;}
.y13{bottom:537.691600pt;}
.y1ab{bottom:537.725067pt;}
.y161{bottom:537.981200pt;}
.y44{bottom:538.101200pt;}
.ya7{bottom:538.227200pt;}
.yf0{bottom:538.227333pt;}
.y82{bottom:538.367867pt;}
.y12{bottom:551.024933pt;}
.y1aa{bottom:551.058400pt;}
.y160{bottom:553.981200pt;}
.y43{bottom:554.101200pt;}
.yef{bottom:554.227333pt;}
.ya6{bottom:554.247867pt;}
.y81{bottom:554.367867pt;}
.y11{bottom:564.358267pt;}
.y1a9{bottom:564.391733pt;}
.y15f{bottom:569.981200pt;}
.y42{bottom:570.101200pt;}
.yee{bottom:570.227333pt;}
.y106{bottom:570.234667pt;}
.ya5{bottom:570.247867pt;}
.y80{bottom:570.367867pt;}
.y115{bottom:575.118533pt;}
.y10{bottom:577.691600pt;}
.y1a8{bottom:577.725067pt;}
.y15e{bottom:585.981200pt;}
.y41{bottom:586.101200pt;}
.yed{bottom:586.227333pt;}
.y105{bottom:586.234667pt;}
.ya4{bottom:586.247867pt;}
.y114{bottom:589.808133pt;}
.yf{bottom:591.032800pt;}
.y1a7{bottom:591.058400pt;}
.y15d{bottom:601.981200pt;}
.y40{bottom:602.101200pt;}
.yec{bottom:602.227333pt;}
.ya3{bottom:602.247867pt;}
.y7f{bottom:602.367867pt;}
.ye{bottom:604.366133pt;}
.y1a6{bottom:604.391733pt;}
.y6d{bottom:605.586533pt;}
.y113{bottom:612.485467pt;}
.yd{bottom:617.699467pt;}
.y1a5{bottom:617.725067pt;}
.y15c{bottom:617.981200pt;}
.y3f{bottom:618.101200pt;}
.yeb{bottom:618.227333pt;}
.y104{bottom:618.234667pt;}
.ya2{bottom:618.247867pt;}
.y112{bottom:626.928133pt;}
.yc{bottom:631.032800pt;}
.y1a4{bottom:631.058400pt;}
.y15b{bottom:633.981200pt;}
.y3e{bottom:634.101200pt;}
.yea{bottom:634.227333pt;}
.y7e{bottom:634.234533pt;}
.ya1{bottom:634.247867pt;}
.y111{bottom:641.370800pt;}
.yb{bottom:644.366133pt;}
.y1a3{bottom:644.391733pt;}
.y15a{bottom:649.981200pt;}
.y3d{bottom:650.101200pt;}
.y103{bottom:650.101333pt;}
.ye9{bottom:650.227333pt;}
.y7d{bottom:650.234533pt;}
.ya0{bottom:650.247867pt;}
.y110{bottom:655.813467pt;}
.ya{bottom:657.699467pt;}
.y1a2{bottom:657.725067pt;}
.y159{bottom:665.981200pt;}
.y3c{bottom:666.101200pt;}
.y102{bottom:666.101333pt;}
.y6c{bottom:666.221200pt;}
.ye8{bottom:666.227333pt;}
.y7c{bottom:666.234533pt;}
.y10f{bottom:670.256133pt;}
.y9{bottom:671.032800pt;}
.y1a1{bottom:671.058400pt;}
.y158{bottom:681.981200pt;}
.y3b{bottom:682.101200pt;}
.y101{bottom:682.101333pt;}
.y6b{bottom:682.221200pt;}
.ye7{bottom:682.227333pt;}
.y7b{bottom:682.234533pt;}
.y9f{bottom:682.247867pt;}
.y8{bottom:684.366133pt;}
.y1a0{bottom:684.391733pt;}
.y10e{bottom:684.698800pt;}
.y19f{bottom:697.725067pt;}
.y157{bottom:697.981200pt;}
.y3a{bottom:698.101200pt;}
.y100{bottom:698.101333pt;}
.y6a{bottom:698.221200pt;}
.ye6{bottom:698.227333pt;}
.y7a{bottom:698.234533pt;}
.y10d{bottom:699.141467pt;}
.y19e{bottom:711.058400pt;}
.y10c{bottom:713.584133pt;}
.y156{bottom:713.981200pt;}
.y39{bottom:714.101200pt;}
.yff{bottom:714.101333pt;}
.y9e{bottom:714.114533pt;}
.y69{bottom:714.221200pt;}
.ye5{bottom:714.227333pt;}
.y79{bottom:714.234533pt;}
.y19d{bottom:724.391733pt;}
.y7{bottom:727.878667pt;}
.y10b{bottom:728.026800pt;}
.y155{bottom:729.981200pt;}
.y38{bottom:730.101200pt;}
.yfe{bottom:730.101333pt;}
.y9d{bottom:730.114533pt;}
.y68{bottom:730.221200pt;}
.ye4{bottom:730.224533pt;}
.y78{bottom:730.234533pt;}
.y19c{bottom:737.725067pt;}
.y154{bottom:745.981200pt;}
.y37{bottom:746.101200pt;}
.yfd{bottom:746.101333pt;}
.y9c{bottom:746.114533pt;}
.y67{bottom:746.221200pt;}
.ye3{bottom:746.224533pt;}
.y77{bottom:746.234533pt;}
.y19b{bottom:751.058400pt;}
.y10a{bottom:756.037467pt;}
.y153{bottom:761.981200pt;}
.y6{bottom:762.021200pt;}
.y36{bottom:762.101200pt;}
.yfc{bottom:762.101333pt;}
.y9b{bottom:762.114533pt;}
.y66{bottom:762.221200pt;}
.ye2{bottom:762.224533pt;}
.y19a{bottom:764.391733pt;}
.y5{bottom:773.027467pt;}
.y199{bottom:777.725067pt;}
.y152{bottom:777.981200pt;}
.y35{bottom:778.101200pt;}
.yfb{bottom:778.101333pt;}
.y139{bottom:778.104533pt;}
.y9a{bottom:778.114533pt;}
.y65{bottom:778.221200pt;}
.ye1{bottom:778.224533pt;}
.y76{bottom:778.234533pt;}
.y109{bottom:786.981333pt;}
.y1d9{bottom:791.056400pt;}
.y198{bottom:791.058400pt;}
.y4{bottom:791.354533pt;}
.y151{bottom:793.981200pt;}
.y34{bottom:794.101200pt;}
.yfa{bottom:794.101333pt;}
.y138{bottom:794.104533pt;}
.y99{bottom:794.114533pt;}
.y64{bottom:794.221200pt;}
.ye0{bottom:794.224533pt;}
.y1d8{bottom:804.389733pt;}
.y197{bottom:804.391733pt;}
.y3{bottom:804.925600pt;}
.y150{bottom:809.981200pt;}
.y33{bottom:810.101200pt;}
.yf9{bottom:810.101333pt;}
.y137{bottom:810.104533pt;}
.y98{bottom:810.114533pt;}
.y63{bottom:810.221200pt;}
.ydf{bottom:810.224533pt;}
.y1d7{bottom:817.723067pt;}
.y196{bottom:817.725067pt;}
.y14f{bottom:825.981200pt;}
.y32{bottom:826.101200pt;}
.yf8{bottom:826.101333pt;}
.y136{bottom:826.104533pt;}
.y97{bottom:826.114533pt;}
.y62{bottom:826.221200pt;}
.yde{bottom:826.224533pt;}
.y2{bottom:829.271733pt;}
.y1d6{bottom:831.056400pt;}
.y195{bottom:831.058400pt;}
.y14e{bottom:841.981200pt;}
.y31{bottom:842.101200pt;}
.yf7{bottom:842.101333pt;}
.y135{bottom:842.104533pt;}
.y96{bottom:842.114533pt;}
.y61{bottom:842.221200pt;}
.ydd{bottom:842.224533pt;}
.y1d5{bottom:844.389733pt;}
.y194{bottom:844.391733pt;}
.y1{bottom:853.277067pt;}
.y1d4{bottom:857.723067pt;}
.y193{bottom:857.725067pt;}
.y30{bottom:858.101200pt;}
.yf6{bottom:858.101333pt;}
.y134{bottom:858.104533pt;}
.y95{bottom:858.114533pt;}
.y60{bottom:858.221200pt;}
.ydc{bottom:858.224533pt;}
.y1d3{bottom:871.056400pt;}
.y192{bottom:871.058400pt;}
.y14d{bottom:873.981200pt;}
.y2f{bottom:874.101200pt;}
.yf5{bottom:874.101333pt;}
.y133{bottom:874.104533pt;}
.y94{bottom:874.114533pt;}
.y1d2{bottom:884.389733pt;}
.y191{bottom:884.391733pt;}
.y2e{bottom:890.101200pt;}
.yf4{bottom:890.101333pt;}
.y132{bottom:890.104533pt;}
.y93{bottom:890.114533pt;}
.y5f{bottom:890.221200pt;}
.ydb{bottom:890.224533pt;}
.y1d1{bottom:897.723067pt;}
.y190{bottom:897.725067pt;}
.y2d{bottom:906.101200pt;}
.y108{bottom:906.101333pt;}
.y13a{bottom:906.104533pt;}
.yf3{bottom:906.107333pt;}
.y92{bottom:906.114533pt;}
.y1d0{bottom:911.056400pt;}
.y18f{bottom:911.058400pt;}
.y2c{bottom:922.101200pt;}
.y107{bottom:922.101333pt;}
.yda{bottom:922.104533pt;}
.yf2{bottom:922.107333pt;}
.y91{bottom:922.114533pt;}
.y1cf{bottom:924.389733pt;}
.y18e{bottom:924.391733pt;}
.y2a{bottom:951.795067pt;}
.y75{bottom:965.392400pt;}
.y29{bottom:965.395067pt;}
.h4{height:18.662500pt;}
.hf{height:27.216146pt;}
.h10{height:27.229479pt;}
.h6{height:31.083333pt;}
.h5{height:31.104167pt;}
.hd{height:31.439100pt;}
.ha{height:33.048177pt;}
.h7{height:38.828125pt;}
.h9{height:38.854167pt;}
.h8{height:38.880208pt;}
.he{height:38.891408pt;}
.hb{height:41.635325pt;}
.h3{height:45.799071pt;}
.h2{height:54.359375pt;}
.hc{height:60.416167pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:68.031467pt;}
.x15{left:69.921200pt;}
.x9{left:85.417333pt;}
.x1{left:86.929200pt;}
.x13{left:88.818800pt;}
.x5{left:91.078400pt;}
.x1c{left:94.484800pt;}
.xc{left:98.271467pt;}
.x2{left:111.491200pt;}
.x1e{left:113.382533pt;}
.x7{left:117.170133pt;}
.x3{left:143.619200pt;}
.x19{left:167.134667pt;}
.x1b{left:172.698133pt;}
.x18{left:177.494667pt;}
.x17{left:187.649200pt;}
.x6{left:189.223467pt;}
.x16{left:190.873067pt;}
.x1a{left:195.675867pt;}
.x4{left:204.091733pt;}
.xa{left:404.481333pt;}
.xe{left:406.293200pt;}
.x11{left:425.209200pt;}
.x8{left:427.090133pt;}
.x1d{left:432.735467pt;}
.xf{left:436.533200pt;}
.x1f{left:451.643867pt;}
.x12{left:455.449200pt;}
.xd{left:466.906533pt;}
.x10{left:650.055200pt;}
.x14{left:668.952800pt;}
}




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