
    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_840f517ffe04733e721f08b1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.825000;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_437e71a9c150eea2544ed189.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_888e89a8649ec5dd285a50ea.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.223000;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_87914e828ee6709425ef894d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.136000;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_23fc8bf881115544d22d8633.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.239000;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_09b5cab2692072036716ddc8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104000;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_ab12b9c7fe3a446128b8d590.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.722656;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_8f4d0001db4e940d17c175cf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938000;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_79e4031f5053408ad6c04786.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.144000;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_84902af8b7b0318de1ce1e86.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.764000;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_2b55a71af6398dea0486506c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.710000;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:-20.400011px;}
.v3{vertical-align:-15.000000px;}
.v4{vertical-align:-3.600220px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls1f{letter-spacing:-1.886110px;}
.ls68{letter-spacing:-0.480000px;}
.ls8{letter-spacing:-0.420000px;}
.ls24{letter-spacing:-0.360000px;}
.ls88{letter-spacing:-0.357000px;}
.ls8d{letter-spacing:-0.306000px;}
.ls22{letter-spacing:-0.300000px;}
.ls8b{letter-spacing:-0.255000px;}
.ls9{letter-spacing:-0.240000px;}
.ls89{letter-spacing:-0.204000px;}
.ls31{letter-spacing:-0.180000px;}
.ls8e{letter-spacing:-0.153000px;}
.ls21{letter-spacing:-0.120000px;}
.ls8a{letter-spacing:-0.102000px;}
.ls32{letter-spacing:-0.060000px;}
.ls8c{letter-spacing:-0.051000px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000085px;}
.ls40{letter-spacing:0.030000px;}
.lsb{letter-spacing:0.048362px;}
.ls79{letter-spacing:0.051000px;}
.ls1b{letter-spacing:0.060000px;}
.ls3b{letter-spacing:0.082764px;}
.lsc{letter-spacing:0.084724px;}
.ls4c{letter-spacing:0.090000px;}
.ls3a{letter-spacing:0.090234px;}
.lsd{letter-spacing:0.096724px;}
.ls7c{letter-spacing:0.102000px;}
.ls17{letter-spacing:0.120000px;}
.ls91{letter-spacing:0.127500px;}
.ls7f{letter-spacing:0.153000px;}
.ls62{letter-spacing:0.168000px;}
.ls84{letter-spacing:0.178500px;}
.ls5{letter-spacing:0.178791px;}
.ls29{letter-spacing:0.180000px;}
.ls35{letter-spacing:0.197482px;}
.ls8f{letter-spacing:0.204000px;}
.ls52{letter-spacing:0.209976px;}
.ls4e{letter-spacing:0.210000px;}
.ls49{letter-spacing:0.210022px;}
.ls2{letter-spacing:0.240000px;}
.ls6{letter-spacing:0.255000px;}
.ls48{letter-spacing:0.257407px;}
.ls51{letter-spacing:0.259235px;}
.ls78{letter-spacing:0.264000px;}
.ls2f{letter-spacing:0.270000px;}
.ls3d{letter-spacing:0.276000px;}
.ls2d{letter-spacing:0.287965px;}
.ls7d{letter-spacing:0.288000px;}
.ls4d{letter-spacing:0.299967px;}
.ls18{letter-spacing:0.299983px;}
.ls3{letter-spacing:0.300000px;}
.ls12{letter-spacing:0.306000px;}
.ls64{letter-spacing:0.323987px;}
.ls69{letter-spacing:0.330000px;}
.ls76{letter-spacing:0.331500px;}
.ls53{letter-spacing:0.354000px;}
.ls7a{letter-spacing:0.357000px;}
.lsa{letter-spacing:0.360000px;}
.ls61{letter-spacing:0.369563px;}
.ls36{letter-spacing:0.372437px;}
.ls6a{letter-spacing:0.390000px;}
.ls83{letter-spacing:0.408000px;}
.ls1d{letter-spacing:0.420000px;}
.ls77{letter-spacing:0.433500px;}
.ls60{letter-spacing:0.450000px;}
.ls7b{letter-spacing:0.459000px;}
.ls25{letter-spacing:0.462524px;}
.lse{letter-spacing:0.480000px;}
.ls50{letter-spacing:0.508209px;}
.ls63{letter-spacing:0.510000px;}
.ls10{letter-spacing:0.516000px;}
.ls82{letter-spacing:0.535500px;}
.ls1c{letter-spacing:0.540000px;}
.ls90{letter-spacing:0.561000px;}
.ls67{letter-spacing:0.570000px;}
.ls15{letter-spacing:0.600000px;}
.ls85{letter-spacing:0.612000px;}
.ls13{letter-spacing:0.630000px;}
.ls87{letter-spacing:0.637500px;}
.ls4b{letter-spacing:0.652771px;}
.ls26{letter-spacing:0.659553px;}
.ls19{letter-spacing:0.660000px;}
.ls6c{letter-spacing:0.663000px;}
.ls47{letter-spacing:0.672000px;}
.ls1e{letter-spacing:0.690000px;}
.ls74{letter-spacing:0.714000px;}
.ls2a{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.738000px;}
.ls55{letter-spacing:0.750000px;}
.ls38{letter-spacing:0.755997px;}
.ls6e{letter-spacing:0.765000px;}
.ls4f{letter-spacing:0.771559px;}
.lsf{letter-spacing:0.780000px;}
.ls46{letter-spacing:0.793318px;}
.ls45{letter-spacing:0.810000px;}
.ls81{letter-spacing:0.816000px;}
.ls4{letter-spacing:0.840000px;}
.ls93{letter-spacing:0.867000px;}
.ls2e{letter-spacing:0.870000px;}
.ls23{letter-spacing:0.900000px;}
.ls80{letter-spacing:0.918000px;}
.ls4a{letter-spacing:0.928708px;}
.ls39{letter-spacing:0.930000px;}
.ls14{letter-spacing:0.960000px;}
.ls71{letter-spacing:0.969000px;}
.ls65{letter-spacing:0.990000px;}
.ls3c{letter-spacing:1.014000px;}
.ls54{letter-spacing:1.015166px;}
.ls1a{letter-spacing:1.020000px;}
.ls72{letter-spacing:1.045500px;}
.ls37{letter-spacing:1.060846px;}
.ls92{letter-spacing:1.071000px;}
.ls6d{letter-spacing:1.071600px;}
.ls33{letter-spacing:1.080000px;}
.ls86{letter-spacing:1.096500px;}
.ls73{letter-spacing:1.122000px;}
.ls2b{letter-spacing:1.140000px;}
.ls6f{letter-spacing:1.173000px;}
.ls28{letter-spacing:1.200000px;}
.ls7e{letter-spacing:1.224000px;}
.ls30{letter-spacing:1.260000px;}
.ls2c{letter-spacing:1.271956px;}
.ls9e{letter-spacing:1.275000px;}
.ls16{letter-spacing:1.278000px;}
.ls34{letter-spacing:1.320000px;}
.ls95{letter-spacing:1.326000px;}
.ls59{letter-spacing:1.350000px;}
.ls98{letter-spacing:1.377000px;}
.ls5f{letter-spacing:1.380000px;}
.ls75{letter-spacing:1.428000px;}
.ls42{letter-spacing:1.440000px;}
.ls9a{letter-spacing:1.479000px;}
.ls5a{letter-spacing:1.500000px;}
.ls9c{letter-spacing:1.514655px;}
.ls70{letter-spacing:1.530000px;}
.ls9d{letter-spacing:1.555500px;}
.ls66{letter-spacing:1.560000px;}
.ls9b{letter-spacing:1.581000px;}
.ls43{letter-spacing:1.620000px;}
.ls56{letter-spacing:1.680000px;}
.ls5c{letter-spacing:1.710000px;}
.ls94{letter-spacing:1.734000px;}
.ls44{letter-spacing:1.740000px;}
.ls99{letter-spacing:1.785000px;}
.ls41{letter-spacing:1.800000px;}
.ls57{letter-spacing:1.860000px;}
.ls96{letter-spacing:1.887000px;}
.ls3e{letter-spacing:1.920000px;}
.ls3f{letter-spacing:1.980000px;}
.ls5b{letter-spacing:2.010000px;}
.ls27{letter-spacing:2.040000px;}
.ls5e{letter-spacing:2.100000px;}
.ls58{letter-spacing:2.160000px;}
.ls97{letter-spacing:2.167500px;}
.ls5d{letter-spacing:2.220000px;}
.ls6b{letter-spacing:2.400000px;}
.ls0{letter-spacing:3.990000px;}
.ls20{letter-spacing:13.928198px;}
.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;}
}
.ws13{word-spacing:-27.372778px;}
.ws7c{word-spacing:-16.140000px;}
.ws5f{word-spacing:-15.300000px;}
.ws47{word-spacing:-15.000000px;}
.ws67{word-spacing:-14.940000px;}
.ws88{word-spacing:-14.832000px;}
.ws62{word-spacing:-14.544000px;}
.ws97{word-spacing:-13.005000px;}
.ws87{word-spacing:-12.852000px;}
.ws6f{word-spacing:-12.750000px;}
.ws60{word-spacing:-12.474000px;}
.ws2{word-spacing:-12.420000px;}
.ws12{word-spacing:-11.558470px;}
.ws14{word-spacing:-11.520000px;}
.ws63{word-spacing:-11.172000px;}
.ws86{word-spacing:-10.965000px;}
.ws76{word-spacing:-10.668000px;}
.ws29{word-spacing:-10.500000px;}
.ws1{word-spacing:-9.996000px;}
.ws3{word-spacing:-8.694000px;}
.ws54{word-spacing:-7.500000px;}
.ws7{word-spacing:-1.500000px;}
.ws6c{word-spacing:-1.440000px;}
.ws2f{word-spacing:-1.380000px;}
.ws56{word-spacing:-1.320000px;}
.ws9a{word-spacing:-1.275000px;}
.ws1e{word-spacing:-1.260000px;}
.ws96{word-spacing:-1.224000px;}
.ws41{word-spacing:-1.200000px;}
.ws8b{word-spacing:-1.173000px;}
.ws3b{word-spacing:-1.140000px;}
.wscd{word-spacing:-1.122000px;}
.ws6e{word-spacing:-1.080000px;}
.ws81{word-spacing:-1.071600px;}
.ws9c{word-spacing:-1.071000px;}
.ws57{word-spacing:-1.020000px;}
.ws99{word-spacing:-0.969000px;}
.ws3e{word-spacing:-0.960000px;}
.wsc7{word-spacing:-0.918000px;}
.wsf{word-spacing:-0.900000px;}
.ws19{word-spacing:-0.840000px;}
.wsbf{word-spacing:-0.816000px;}
.ws40{word-spacing:-0.780000px;}
.ws9d{word-spacing:-0.765000px;}
.wsa{word-spacing:-0.720000px;}
.ws9e{word-spacing:-0.714000px;}
.wsa3{word-spacing:-0.663000px;}
.ws31{word-spacing:-0.660000px;}
.ws11{word-spacing:-0.612000px;}
.ws15{word-spacing:-0.600000px;}
.ws5{word-spacing:-0.570000px;}
.wsb1{word-spacing:-0.561000px;}
.ws5c{word-spacing:-0.540000px;}
.wsb3{word-spacing:-0.510000px;}
.wse{word-spacing:-0.480000px;}
.wsad{word-spacing:-0.459000px;}
.ws1a{word-spacing:-0.420000px;}
.ws3c{word-spacing:-0.360000px;}
.wsa1{word-spacing:-0.357000px;}
.ws20{word-spacing:-0.300000px;}
.ws98{word-spacing:-0.264000px;}
.ws9f{word-spacing:-0.255000px;}
.ws6{word-spacing:-0.240000px;}
.wsbe{word-spacing:-0.204000px;}
.ws39{word-spacing:-0.180000px;}
.wsb8{word-spacing:-0.153000px;}
.ws1f{word-spacing:-0.120000px;}
.wsd0{word-spacing:-0.102000px;}
.ws4d{word-spacing:-0.060000px;}
.ws8a{word-spacing:-0.051000px;}
.ws16{word-spacing:-0.048362px;}
.ws0{word-spacing:-0.048000px;}
.ws4{word-spacing:0.000000px;}
.ws89{word-spacing:0.051000px;}
.ws35{word-spacing:0.060000px;}
.wsa9{word-spacing:0.102000px;}
.ws5d{word-spacing:0.120000px;}
.wsb7{word-spacing:0.153000px;}
.ws38{word-spacing:0.180000px;}
.wsc4{word-spacing:0.204000px;}
.ws7b{word-spacing:0.240000px;}
.wsbb{word-spacing:0.255000px;}
.ws48{word-spacing:0.300000px;}
.wsa0{word-spacing:0.306000px;}
.wsba{word-spacing:0.357000px;}
.ws37{word-spacing:0.360000px;}
.wsa7{word-spacing:0.408000px;}
.ws55{word-spacing:0.420000px;}
.wscf{word-spacing:0.459000px;}
.ws23{word-spacing:0.480000px;}
.ws26{word-spacing:0.540000px;}
.wsb4{word-spacing:0.561000px;}
.ws4a{word-spacing:0.600000px;}
.ws64{word-spacing:0.660000px;}
.wsb6{word-spacing:0.663000px;}
.ws52{word-spacing:0.720000px;}
.ws85{word-spacing:0.765000px;}
.ws34{word-spacing:0.780000px;}
.wsd5{word-spacing:0.816000px;}
.ws3f{word-spacing:0.840000px;}
.ws68{word-spacing:0.900000px;}
.ws2a{word-spacing:0.960000px;}
.ws94{word-spacing:0.969000px;}
.ws8{word-spacing:1.020000px;}
.ws53{word-spacing:1.080000px;}
.ws1d{word-spacing:1.140000px;}
.ws9b{word-spacing:1.173000px;}
.ws21{word-spacing:1.200000px;}
.wsd{word-spacing:1.260000px;}
.ws95{word-spacing:1.275000px;}
.ws4e{word-spacing:1.320000px;}
.ws84{word-spacing:1.326000px;}
.wsac{word-spacing:1.377000px;}
.ws4f{word-spacing:1.380000px;}
.wsc{word-spacing:1.440000px;}
.wsa8{word-spacing:1.479000px;}
.ws9{word-spacing:1.500000px;}
.ws93{word-spacing:1.530000px;}
.ws1b{word-spacing:1.560000px;}
.ws91{word-spacing:1.581000px;}
.ws6a{word-spacing:1.620000px;}
.wsb5{word-spacing:1.632000px;}
.ws30{word-spacing:1.680000px;}
.wsb2{word-spacing:1.683000px;}
.ws36{word-spacing:1.740000px;}
.wsae{word-spacing:1.785000px;}
.ws1c{word-spacing:1.800000px;}
.wsd2{word-spacing:1.836000px;}
.wsb{word-spacing:1.860000px;}
.ws8c{word-spacing:1.887000px;}
.ws18{word-spacing:1.920000px;}
.ws6b{word-spacing:1.980000px;}
.wsc0{word-spacing:1.989000px;}
.ws24{word-spacing:2.040000px;}
.wsa5{word-spacing:2.091000px;}
.ws3d{word-spacing:2.100000px;}
.ws2d{word-spacing:2.160000px;}
.wsb0{word-spacing:2.193000px;}
.ws69{word-spacing:2.220000px;}
.wsd3{word-spacing:2.244000px;}
.ws61{word-spacing:2.280000px;}
.wsbd{word-spacing:2.295000px;}
.ws2b{word-spacing:2.340000px;}
.wsc2{word-spacing:2.346000px;}
.ws46{word-spacing:2.400000px;}
.wscc{word-spacing:2.448000px;}
.ws28{word-spacing:2.460000px;}
.wsc5{word-spacing:2.499000px;}
.ws22{word-spacing:2.520000px;}
.ws44{word-spacing:2.580000px;}
.wsab{word-spacing:2.601000px;}
.ws42{word-spacing:2.640000px;}
.ws27{word-spacing:2.700000px;}
.wsa4{word-spacing:2.703000px;}
.ws43{word-spacing:2.760000px;}
.ws8e{word-spacing:2.805000px;}
.ws32{word-spacing:2.820000px;}
.wsc1{word-spacing:2.856000px;}
.ws2c{word-spacing:2.880000px;}
.ws25{word-spacing:2.940000px;}
.ws58{word-spacing:3.000000px;}
.ws6d{word-spacing:3.060000px;}
.ws50{word-spacing:3.120000px;}
.wsc8{word-spacing:3.162000px;}
.ws4b{word-spacing:3.180000px;}
.ws7f{word-spacing:3.240000px;}
.wsd4{word-spacing:3.264000px;}
.ws5e{word-spacing:3.300000px;}
.ws8f{word-spacing:3.315000px;}
.ws73{word-spacing:3.360000px;}
.wsbc{word-spacing:3.366000px;}
.wsb9{word-spacing:3.417000px;}
.ws3a{word-spacing:3.420000px;}
.wsc6{word-spacing:3.468000px;}
.wsc3{word-spacing:3.519000px;}
.ws49{word-spacing:3.540000px;}
.wsaf{word-spacing:3.570000px;}
.ws51{word-spacing:3.600000px;}
.ws33{word-spacing:3.720000px;}
.ws90{word-spacing:3.723000px;}
.ws7a{word-spacing:3.780000px;}
.wscb{word-spacing:3.876000px;}
.ws77{word-spacing:3.900000px;}
.wsc9{word-spacing:3.927000px;}
.ws45{word-spacing:3.960000px;}
.ws75{word-spacing:4.020000px;}
.wsce{word-spacing:4.029000px;}
.ws82{word-spacing:4.080000px;}
.ws65{word-spacing:4.140000px;}
.ws72{word-spacing:4.200000px;}
.ws59{word-spacing:4.260000px;}
.wsa2{word-spacing:4.284000px;}
.ws7e{word-spacing:4.320000px;}
.wsaa{word-spacing:4.335000px;}
.ws4c{word-spacing:4.440000px;}
.wsd1{word-spacing:4.539000px;}
.ws79{word-spacing:4.620000px;}
.ws74{word-spacing:4.680000px;}
.ws83{word-spacing:4.800000px;}
.ws92{word-spacing:5.304000px;}
.wsca{word-spacing:5.355000px;}
.ws80{word-spacing:5.460000px;}
.ws78{word-spacing:5.700000px;}
.wsa6{word-spacing:5.814000px;}
.ws8d{word-spacing:5.865000px;}
.ws7d{word-spacing:5.940000px;}
.ws66{word-spacing:6.360000px;}
.ws5b{word-spacing:7.320000px;}
.ws5a{word-spacing:7.440000px;}
.ws2e{word-spacing:7.860000px;}
.wsd6{word-spacing:13.515000px;}
.wsd7{word-spacing:17.595000px;}
.ws17{word-spacing:21.456000px;}
.ws10{word-spacing:72.267000px;}
.ws71{word-spacing:244.800000px;}
.ws70{word-spacing:333.641991px;}
._9{margin-left:-2959.961392px;}
._3a{margin-left:-20.145000px;}
._d{margin-left:-17.690426px;}
._5{margin-left:-16.575000px;}
._2f{margin-left:-14.798437px;}
._b{margin-left:-13.505243px;}
._10{margin-left:-12.474000px;}
._38{margin-left:-11.169000px;}
._11{margin-left:-9.000000px;}
._4{margin-left:-6.624000px;}
._1{margin-left:-4.622700px;}
._3{margin-left:-2.985600px;}
._0{margin-left:-1.632000px;}
._2{width:1.728000px;}
._e{width:3.120000px;}
._32{width:7.395000px;}
._12{width:9.126000px;}
._2e{width:10.277400px;}
._14{width:12.144000px;}
._16{width:13.816800px;}
._17{width:15.606000px;}
._6{width:18.360000px;}
._39{width:19.500926px;}
._f{width:20.526000px;}
._37{width:21.810600px;}
._33{width:23.349000px;}
._35{width:25.092000px;}
._36{width:26.316000px;}
._34{width:27.543000px;}
._19{width:28.884000px;}
._18{width:30.972000px;}
._13{width:33.000000px;}
._31{width:34.417933px;}
._15{width:36.000000px;}
._a{width:41.003995px;}
._7{width:54.621000px;}
._29{width:132.957000px;}
._1c{width:210.277186px;}
._26{width:233.376000px;}
._27{width:236.843986px;}
._25{width:254.285991px;}
._1d{width:272.692800px;}
._21{width:276.113986px;}
._2d{width:304.163986px;}
._23{width:324.202791px;}
._2b{width:339.659992px;}
._1e{width:361.997991px;}
._1f{width:379.389000px;}
._28{width:392.139000px;}
._1b{width:397.799986px;}
._24{width:404.889000px;}
._2a{width:414.119994px;}
._1a{width:426.462000px;}
._20{width:436.712986px;}
._2c{width:443.139000px;}
._22{width:497.250000px;}
._30{width:1999.123857px;}
._c{width:2023.348161px;}
._8{width:2369.663992px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(166,166,166);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:34.180800px;}
.fs6{font-size:35.699999px;}
.fs5{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:48.361799px;}
.fs1{font-size:51.000000px;}
.fsc{font-size:56.399998px;}
.fs2{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fsb{font-size:66.000000px;}
.fsa{font-size:72.000000px;}
.fs9{font-size:84.724199px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.829002px;}
.y1c{bottom:112.944300px;}
.yd3{bottom:113.929802px;}
.yb6{bottom:114.169796px;}
.y1aa{bottom:114.282294px;}
.ye8{bottom:114.564285px;}
.y86{bottom:114.735260px;}
.yd7{bottom:114.735294px;}
.ya6{bottom:114.735306px;}
.y150{bottom:114.870260px;}
.y163{bottom:114.874947px;}
.y26b{bottom:116.997307px;}
.y3b{bottom:118.750031px;}
.y51{bottom:121.000025px;}
.y172{bottom:125.991294px;}
.y1b{bottom:127.938300px;}
.y1a9{bottom:129.276294px;}
.y229{bottom:131.608823px;}
.y1eb{bottom:131.762571px;}
.y26a{bottom:131.991307px;}
.ye7{bottom:133.314285px;}
.y85{bottom:133.485260px;}
.yd6{bottom:133.485294px;}
.ya5{bottom:133.485306px;}
.y14f{bottom:133.620260px;}
.y107{bottom:133.624786px;}
.y162{bottom:133.624947px;}
.y3a{bottom:137.500031px;}
.y50{bottom:139.750025px;}
.y171{bottom:140.985294px;}
.y1a8{bottom:144.270294px;}
.y228{bottom:146.602823px;}
.y1ea{bottom:146.756571px;}
.y269{bottom:146.985307px;}
.y1a{bottom:148.032303px;}
.ye6{bottom:152.064285px;}
.y84{bottom:152.235260px;}
.yd5{bottom:152.235294px;}
.ya4{bottom:152.235306px;}
.y14e{bottom:152.370260px;}
.y106{bottom:152.374786px;}
.y161{bottom:152.374947px;}
.y39{bottom:156.250031px;}
.y4f{bottom:158.500025px;}
.y1a7{bottom:159.264294px;}
.y227{bottom:161.596823px;}
.y1e9{bottom:161.750571px;}
.y268{bottom:161.979307px;}
.ye5{bottom:170.814285px;}
.y83{bottom:170.985260px;}
.ya3{bottom:170.985306px;}
.y14d{bottom:171.120260px;}
.y105{bottom:171.124786px;}
.y160{bottom:171.124947px;}
.y19{bottom:173.032794px;}
.y1a6{bottom:174.258294px;}
.y38{bottom:175.000031px;}
.y226{bottom:176.590823px;}
.y1e8{bottom:176.744571px;}
.y267{bottom:176.973307px;}
.y4e{bottom:177.250025px;}
.y18{bottom:188.026794px;}
.y1a5{bottom:189.252294px;}
.ye4{bottom:189.564285px;}
.y82{bottom:189.735260px;}
.yd4{bottom:189.735294px;}
.ya2{bottom:189.735306px;}
.y14c{bottom:189.870260px;}
.y104{bottom:189.874786px;}
.y15f{bottom:189.874947px;}
.y225{bottom:191.584823px;}
.y1e7{bottom:191.738571px;}
.y266{bottom:191.967307px;}
.y37{bottom:193.750031px;}
.y4d{bottom:196.000025px;}
.y1a4{bottom:204.246294px;}
.y224{bottom:206.578823px;}
.y1e6{bottom:206.732571px;}
.y265{bottom:206.961307px;}
.ye3{bottom:208.314285px;}
.y81{bottom:208.485260px;}
.ya1{bottom:208.485306px;}
.y14b{bottom:208.620260px;}
.y103{bottom:208.624786px;}
.y15e{bottom:208.624947px;}
.y36{bottom:212.500031px;}
.y4c{bottom:214.750025px;}
.y1a3{bottom:219.240294px;}
.y223{bottom:221.572823px;}
.y1e5{bottom:221.726571px;}
.y264{bottom:221.955307px;}
.ye2{bottom:227.064285px;}
.y80{bottom:227.235260px;}
.ya0{bottom:227.235306px;}
.y14a{bottom:227.370260px;}
.y102{bottom:227.374786px;}
.y15d{bottom:227.374947px;}
.y35{bottom:231.250031px;}
.y4b{bottom:233.500025px;}
.y1a2{bottom:234.234294px;}
.y222{bottom:236.566823px;}
.y1e4{bottom:236.720571px;}
.y263{bottom:236.949307px;}
.ye1{bottom:245.814285px;}
.y7f{bottom:245.985260px;}
.y9f{bottom:245.985306px;}
.y149{bottom:246.120260px;}
.y101{bottom:246.124786px;}
.y15c{bottom:246.124947px;}
.y1a1{bottom:249.228294px;}
.y34{bottom:250.000031px;}
.y221{bottom:251.560823px;}
.y1e3{bottom:251.714571px;}
.y262{bottom:251.943307px;}
.y4a{bottom:252.250025px;}
.y1a0{bottom:264.222294px;}
.ye0{bottom:264.564285px;}
.y7e{bottom:264.735260px;}
.y9e{bottom:264.735306px;}
.y148{bottom:264.870260px;}
.y100{bottom:264.874786px;}
.y15b{bottom:264.874947px;}
.y220{bottom:266.554823px;}
.y1e2{bottom:266.708571px;}
.y261{bottom:266.937307px;}
.y33{bottom:268.750031px;}
.y49{bottom:271.000025px;}
.y19f{bottom:279.216294px;}
.y21f{bottom:281.548823px;}
.y1e1{bottom:281.702571px;}
.y260{bottom:281.931307px;}
.ydf{bottom:283.314285px;}
.y7d{bottom:283.485260px;}
.y9d{bottom:283.485306px;}
.y147{bottom:283.620260px;}
.yff{bottom:283.624786px;}
.y15a{bottom:283.624947px;}
.y32{bottom:287.500031px;}
.y48{bottom:289.750025px;}
.y19e{bottom:294.210294px;}
.y21e{bottom:296.542823px;}
.y1e0{bottom:296.696571px;}
.y25f{bottom:296.925307px;}
.yde{bottom:302.064285px;}
.y7c{bottom:302.235260px;}
.y9c{bottom:302.235306px;}
.y146{bottom:302.370260px;}
.yfe{bottom:302.374786px;}
.y159{bottom:302.374947px;}
.y31{bottom:306.250031px;}
.y47{bottom:308.500025px;}
.y19d{bottom:309.204294px;}
.y21d{bottom:311.536823px;}
.y1df{bottom:311.690571px;}
.y25e{bottom:311.919307px;}
.ydd{bottom:320.814285px;}
.y7b{bottom:320.985260px;}
.y9b{bottom:320.985306px;}
.y145{bottom:321.120260px;}
.yfd{bottom:321.124786px;}
.y158{bottom:321.124947px;}
.y19c{bottom:324.198294px;}
.y30{bottom:325.000031px;}
.y21c{bottom:326.530823px;}
.y1de{bottom:326.684571px;}
.y25d{bottom:326.913307px;}
.y46{bottom:327.250025px;}
.y19b{bottom:339.192294px;}
.ydc{bottom:339.564285px;}
.y7a{bottom:339.735260px;}
.y9a{bottom:339.735306px;}
.y144{bottom:339.870260px;}
.yfc{bottom:339.874786px;}
.y21b{bottom:341.524823px;}
.y1dd{bottom:341.678571px;}
.y25c{bottom:341.907307px;}
.y2f{bottom:343.750031px;}
.y45{bottom:346.000025px;}
.y19a{bottom:354.186294px;}
.y21a{bottom:356.518823px;}
.y1dc{bottom:356.672571px;}
.y25b{bottom:356.901307px;}
.ydb{bottom:358.314285px;}
.y79{bottom:358.485260px;}
.y99{bottom:358.485306px;}
.y143{bottom:358.620260px;}
.yfb{bottom:358.624786px;}
.y2e{bottom:362.500031px;}
.y44{bottom:364.750025px;}
.y199{bottom:369.180294px;}
.y219{bottom:371.512823px;}
.y1db{bottom:371.666571px;}
.y25a{bottom:371.895307px;}
.yda{bottom:377.064285px;}
.y78{bottom:377.235260px;}
.y98{bottom:377.235306px;}
.y142{bottom:377.370260px;}
.yfa{bottom:377.374786px;}
.y2d{bottom:381.250031px;}
.y43{bottom:383.500025px;}
.y198{bottom:384.174294px;}
.y218{bottom:386.506823px;}
.y1da{bottom:386.660571px;}
.y259{bottom:386.889307px;}
.yd9{bottom:395.814285px;}
.y77{bottom:395.985260px;}
.y97{bottom:395.985306px;}
.y141{bottom:396.120260px;}
.yf9{bottom:396.124786px;}
.y197{bottom:399.168294px;}
.y2c{bottom:400.000031px;}
.y217{bottom:401.500823px;}
.y1d9{bottom:401.654571px;}
.y258{bottom:401.883307px;}
.y42{bottom:402.250025px;}
.y196{bottom:414.162294px;}
.yd8{bottom:414.564285px;}
.y76{bottom:414.735260px;}
.y96{bottom:414.735306px;}
.y140{bottom:414.870260px;}
.yf8{bottom:414.874786px;}
.y170{bottom:415.635315px;}
.y216{bottom:416.494823px;}
.y1d8{bottom:416.648571px;}
.y257{bottom:416.877307px;}
.y2b{bottom:418.750031px;}
.y41{bottom:421.000025px;}
.y195{bottom:429.156294px;}
.y215{bottom:431.488823px;}
.y1d7{bottom:431.642571px;}
.y256{bottom:431.871307px;}
.y75{bottom:433.485260px;}
.y95{bottom:433.485306px;}
.y13f{bottom:433.620260px;}
.yf7{bottom:433.624786px;}
.y2a{bottom:437.500031px;}
.y40{bottom:439.750025px;}
.y194{bottom:444.150294px;}
.y214{bottom:446.482823px;}
.y1d6{bottom:446.636571px;}
.y255{bottom:446.865307px;}
.y74{bottom:452.235260px;}
.y94{bottom:452.235306px;}
.y13e{bottom:452.370260px;}
.yf6{bottom:452.374786px;}
.y29{bottom:456.250031px;}
.y3f{bottom:458.500025px;}
.y193{bottom:459.144294px;}
.y213{bottom:461.476823px;}
.y1d5{bottom:461.630571px;}
.y254{bottom:461.859307px;}
.y115{bottom:462.210434px;}
.y73{bottom:470.985260px;}
.y93{bottom:470.985306px;}
.y13d{bottom:471.120260px;}
.yf5{bottom:471.124786px;}
.y16f{bottom:471.885315px;}
.y192{bottom:474.138294px;}
.y28{bottom:475.000031px;}
.y212{bottom:476.470823px;}
.y1d4{bottom:476.624571px;}
.y253{bottom:476.853307px;}
.y3e{bottom:477.250025px;}
.y13a{bottom:487.993803px;}
.y191{bottom:489.132294px;}
.y72{bottom:489.735260px;}
.y92{bottom:489.735306px;}
.y13c{bottom:489.870260px;}
.yf4{bottom:489.874786px;}
.y211{bottom:491.464823px;}
.y1d3{bottom:491.618571px;}
.y252{bottom:491.847307px;}
.y3d{bottom:496.000025px;}
.y139{bottom:502.987803px;}
.y210{bottom:506.458823px;}
.y1d2{bottom:506.612571px;}
.y292{bottom:506.624598px;}
.y251{bottom:506.841307px;}
.y71{bottom:508.485260px;}
.y91{bottom:508.485306px;}
.y13b{bottom:508.620260px;}
.yf3{bottom:508.624786px;}
.y27{bottom:512.500031px;}
.y3c{bottom:514.750025px;}
.y138{bottom:517.981803px;}
.y20f{bottom:521.452823px;}
.y1d1{bottom:521.606571px;}
.y291{bottom:521.618598px;}
.y250{bottom:521.835307px;}
.y190{bottom:522.882294px;}
.y70{bottom:527.235260px;}
.y90{bottom:527.235306px;}
.y137{bottom:532.975803px;}
.y20e{bottom:536.446823px;}
.y1d0{bottom:536.600571px;}
.y24f{bottom:536.829307px;}
.y6f{bottom:545.985260px;}
.y8f{bottom:545.985306px;}
.yf2{bottom:546.124786px;}
.y16e{bottom:546.885315px;}
.y136{bottom:547.969803px;}
.y20d{bottom:551.440823px;}
.y1cf{bottom:551.594571px;}
.y290{bottom:551.708597px;}
.y24e{bottom:551.823307px;}
.y151{bottom:553.930800px;}
.y26{bottom:563.500031px;}
.yd2{bottom:563.544296px;}
.y6e{bottom:564.735260px;}
.y8e{bottom:564.735306px;}
.y20c{bottom:566.434823px;}
.y1ce{bottom:566.588571px;}
.y28f{bottom:566.702597px;}
.y24d{bottom:566.817307px;}
.y20b{bottom:581.428823px;}
.y1cd{bottom:581.582571px;}
.y28e{bottom:581.696597px;}
.y24c{bottom:581.811307px;}
.yd1{bottom:582.294296px;}
.y6d{bottom:583.485260px;}
.y8d{bottom:583.485306px;}
.y17{bottom:591.211395px;}
.y18f{bottom:592.540073px;}
.y20a{bottom:596.422823px;}
.y1cc{bottom:596.576571px;}
.y28d{bottom:596.690597px;}
.y24b{bottom:596.805307px;}
.yd0{bottom:601.044296px;}
.y11a{bottom:601.044342px;}
.y135{bottom:602.229321px;}
.y6c{bottom:602.235260px;}
.y8c{bottom:602.235306px;}
.y18e{bottom:607.534073px;}
.y16{bottom:609.961395px;}
.y209{bottom:611.416823px;}
.y1cb{bottom:611.570571px;}
.y28c{bottom:611.684597px;}
.y24a{bottom:611.799307px;}
.ycf{bottom:619.794296px;}
.y119{bottom:619.794342px;}
.y134{bottom:620.979321px;}
.y6b{bottom:620.985260px;}
.y8b{bottom:620.985306px;}
.yf1{bottom:621.129285px;}
.y18d{bottom:622.528073px;}
.y208{bottom:626.410823px;}
.y1ca{bottom:626.564571px;}
.y28b{bottom:626.678597px;}
.y249{bottom:626.793307px;}
.y15{bottom:628.711395px;}
.y23{bottom:631.565438px;}
.y18c{bottom:637.522073px;}
.yce{bottom:638.544296px;}
.y118{bottom:638.544342px;}
.y133{bottom:639.729321px;}
.y6a{bottom:639.735260px;}
.y8a{bottom:639.735306px;}
.yf0{bottom:639.879285px;}
.y207{bottom:641.404823px;}
.y1c9{bottom:641.558571px;}
.y28a{bottom:641.672597px;}
.y248{bottom:641.787307px;}
.y22{bottom:646.110249px;}
.y25{bottom:646.636047px;}
.y14{bottom:647.461395px;}
.y18b{bottom:652.516073px;}
.y206{bottom:656.398823px;}
.y1c8{bottom:656.552571px;}
.y289{bottom:656.666597px;}
.y247{bottom:656.781307px;}
.ycd{bottom:657.294296px;}
.y117{bottom:657.294342px;}
.y132{bottom:658.479321px;}
.y69{bottom:658.485260px;}
.y89{bottom:658.485306px;}
.yef{bottom:658.629285px;}
.y21{bottom:660.655060px;}
.y13{bottom:666.211395px;}
.y18a{bottom:667.510073px;}
.y205{bottom:671.392823px;}
.y1c7{bottom:671.546571px;}
.y288{bottom:671.660597px;}
.y246{bottom:671.775307px;}
.ycc{bottom:676.044296px;}
.y116{bottom:676.044342px;}
.y131{bottom:677.229321px;}
.y68{bottom:677.235260px;}
.y88{bottom:677.235306px;}
.yee{bottom:677.379285px;}
.y189{bottom:682.504073px;}
.y12{bottom:684.961395px;}
.y204{bottom:686.386823px;}
.y1c6{bottom:686.540571px;}
.y287{bottom:686.654597px;}
.y245{bottom:686.769307px;}
.ycb{bottom:694.794342px;}
.y130{bottom:695.979321px;}
.y67{bottom:695.985260px;}
.ya9{bottom:695.985306px;}
.yed{bottom:696.129285px;}
.y188{bottom:697.498073px;}
.y203{bottom:701.380823px;}
.y1c5{bottom:701.534571px;}
.y286{bottom:701.648597px;}
.y244{bottom:701.763307px;}
.y11{bottom:703.711395px;}
.y187{bottom:712.492073px;}
.yca{bottom:713.544342px;}
.y12f{bottom:714.729321px;}
.y66{bottom:714.735260px;}
.y87{bottom:714.735306px;}
.yec{bottom:714.879285px;}
.y202{bottom:716.374823px;}
.y1c4{bottom:716.528571px;}
.y285{bottom:716.642597px;}
.y243{bottom:716.757307px;}
.y10{bottom:722.461395px;}
.y186{bottom:727.486073px;}
.y201{bottom:731.368823px;}
.y1c3{bottom:731.522571px;}
.y284{bottom:731.636597px;}
.y242{bottom:731.751307px;}
.yc9{bottom:732.294342px;}
.y12e{bottom:733.479321px;}
.y65{bottom:733.485260px;}
.ya8{bottom:733.485306px;}
.yeb{bottom:733.629285px;}
.yf{bottom:741.211395px;}
.y185{bottom:742.480073px;}
.y200{bottom:746.362823px;}
.y1c2{bottom:746.516571px;}
.y283{bottom:746.630597px;}
.y241{bottom:746.745307px;}
.yc8{bottom:751.044342px;}
.y12d{bottom:752.229321px;}
.y64{bottom:752.235260px;}
.yb5{bottom:752.235306px;}
.yea{bottom:752.379285px;}
.y184{bottom:757.474073px;}
.ye{bottom:759.961395px;}
.y1ff{bottom:761.356823px;}
.y1c1{bottom:761.510571px;}
.y282{bottom:761.624597px;}
.y240{bottom:761.739307px;}
.yc7{bottom:769.794342px;}
.y12c{bottom:770.979321px;}
.y63{bottom:770.985260px;}
.y157{bottom:770.985306px;}
.ye9{bottom:771.129285px;}
.y1fe{bottom:776.350823px;}
.y1c0{bottom:776.504571px;}
.y281{bottom:776.618597px;}
.y23f{bottom:776.733307px;}
.yd{bottom:778.711395px;}
.y183{bottom:787.474823px;}
.yc6{bottom:788.544342px;}
.y12b{bottom:789.729321px;}
.y62{bottom:789.735260px;}
.y156{bottom:789.735306px;}
.y1fd{bottom:791.344823px;}
.y1bf{bottom:791.498571px;}
.y280{bottom:791.612597px;}
.y23e{bottom:791.727307px;}
.yc{bottom:797.461395px;}
.y1fc{bottom:806.338823px;}
.y1be{bottom:806.492571px;}
.y27f{bottom:806.606597px;}
.y23d{bottom:806.721307px;}
.yc5{bottom:807.294342px;}
.y12a{bottom:808.479321px;}
.y61{bottom:808.485260px;}
.y155{bottom:808.485306px;}
.yb{bottom:816.211395px;}
.y182{bottom:817.474823px;}
.y1fb{bottom:821.332823px;}
.y1bd{bottom:821.486571px;}
.y27e{bottom:821.600597px;}
.y23c{bottom:821.715307px;}
.yc4{bottom:826.044342px;}
.y129{bottom:827.229321px;}
.y60{bottom:827.235260px;}
.y154{bottom:827.235306px;}
.y16a{bottom:831.307764px;}
.y114{bottom:833.163768px;}
.ya{bottom:834.961395px;}
.y1fa{bottom:836.326823px;}
.y1bc{bottom:836.480571px;}
.y27d{bottom:836.594597px;}
.y23b{bottom:836.709307px;}
.yc3{bottom:844.794342px;}
.y128{bottom:845.979321px;}
.y5f{bottom:845.985260px;}
.y153{bottom:845.985306px;}
.y169{bottom:846.301764px;}
.y181{bottom:851.295323px;}
.y1f9{bottom:851.320823px;}
.y1bb{bottom:851.474571px;}
.y27c{bottom:851.588597px;}
.y23a{bottom:851.703307px;}
.y1f{bottom:860.954590px;}
.y113{bottom:861.239268px;}
.y168{bottom:861.295764px;}
.yc2{bottom:863.544342px;}
.y127{bottom:864.729321px;}
.y5e{bottom:864.735260px;}
.y152{bottom:864.735306px;}
.y180{bottom:866.289323px;}
.y1f8{bottom:866.314823px;}
.y1ba{bottom:866.468571px;}
.y27b{bottom:866.582597px;}
.y239{bottom:866.697307px;}
.y167{bottom:876.289764px;}
.y9{bottom:879.144153px;}
.y17f{bottom:881.283323px;}
.y1f7{bottom:881.308823px;}
.y1b9{bottom:881.462571px;}
.y27a{bottom:881.576597px;}
.y238{bottom:881.691307px;}
.yc1{bottom:882.294342px;}
.y126{bottom:883.479321px;}
.y5d{bottom:883.485260px;}
.yb4{bottom:883.485306px;}
.y16d{bottom:884.385315px;}
.y112{bottom:885.655518px;}
.y8{bottom:894.138153px;}
.y1f6{bottom:896.302823px;}
.y1b8{bottom:896.456571px;}
.y279{bottom:896.570597px;}
.y237{bottom:896.685307px;}
.yc0{bottom:901.044342px;}
.y125{bottom:902.229321px;}
.y5c{bottom:902.235260px;}
.yb3{bottom:902.235306px;}
.y111{bottom:907.264524px;}
.y17e{bottom:911.284073px;}
.y1f5{bottom:911.296823px;}
.y1b7{bottom:911.450571px;}
.y278{bottom:911.564597px;}
.y236{bottom:911.679307px;}
.ybf{bottom:919.794342px;}
.y124{bottom:920.979321px;}
.y5b{bottom:920.985260px;}
.yb2{bottom:920.985306px;}
.y16c{bottom:921.885315px;}
.y110{bottom:925.981524px;}
.y17d{bottom:926.278073px;}
.y1f4{bottom:926.290823px;}
.y1b6{bottom:926.444571px;}
.y277{bottom:926.558597px;}
.y235{bottom:926.673307px;}
.y7{bottom:936.738190px;}
.ybe{bottom:938.544342px;}
.y123{bottom:939.729321px;}
.y5a{bottom:939.735260px;}
.yb1{bottom:939.735306px;}
.y16b{bottom:940.635315px;}
.y17c{bottom:941.272073px;}
.y1f3{bottom:941.284823px;}
.y1b5{bottom:941.438571px;}
.y276{bottom:941.552597px;}
.y234{bottom:941.667307px;}
.y10f{bottom:944.698524px;}
.y17b{bottom:956.266073px;}
.y1f2{bottom:956.278823px;}
.y1b4{bottom:956.432571px;}
.y275{bottom:956.546597px;}
.y233{bottom:956.661307px;}
.ybd{bottom:957.294342px;}
.y122{bottom:958.479321px;}
.y59{bottom:958.485260px;}
.yb0{bottom:958.485306px;}
.y10e{bottom:963.415524px;}
.y17a{bottom:971.260073px;}
.y1f1{bottom:971.272823px;}
.y1b3{bottom:971.426571px;}
.y274{bottom:971.540597px;}
.y232{bottom:971.655307px;}
.ybc{bottom:976.044342px;}
.y121{bottom:977.229321px;}
.y58{bottom:977.235260px;}
.yaf{bottom:977.235306px;}
.y6{bottom:981.424622px;}
.y10d{bottom:982.132524px;}
.y20{bottom:983.697843px;}
.y179{bottom:986.254073px;}
.y1f0{bottom:986.266823px;}
.y1b2{bottom:986.420571px;}
.y273{bottom:986.534597px;}
.y231{bottom:986.649307px;}
.ybb{bottom:994.794342px;}
.y120{bottom:995.979321px;}
.y57{bottom:995.985260px;}
.yae{bottom:995.985306px;}
.y178{bottom:1001.248073px;}
.y1ef{bottom:1001.260823px;}
.y1b1{bottom:1001.414571px;}
.y272{bottom:1001.528597px;}
.y230{bottom:1001.643307px;}
.y5{bottom:1008.424622px;}
.y10c{bottom:1010.208024px;}
.yba{bottom:1013.544342px;}
.y11f{bottom:1014.729321px;}
.y56{bottom:1014.735260px;}
.yad{bottom:1014.735306px;}
.y177{bottom:1016.242073px;}
.y1ee{bottom:1016.254823px;}
.y1b0{bottom:1016.408571px;}
.y271{bottom:1016.522597px;}
.y22f{bottom:1016.637307px;}
.y10b{bottom:1025.202024px;}
.y176{bottom:1031.236073px;}
.y1ed{bottom:1031.248823px;}
.y1af{bottom:1031.402571px;}
.y270{bottom:1031.516597px;}
.y22e{bottom:1031.631307px;}
.yb9{bottom:1032.294342px;}
.y11e{bottom:1033.479321px;}
.y55{bottom:1033.485260px;}
.yac{bottom:1033.485306px;}
.y10a{bottom:1040.196024px;}
.y24{bottom:1040.857819px;}
.y166{bottom:1045.120844px;}
.y1ec{bottom:1046.242823px;}
.y1ae{bottom:1046.396571px;}
.y26f{bottom:1046.510597px;}
.y22d{bottom:1046.625307px;}
.yb8{bottom:1051.044342px;}
.y11d{bottom:1052.229321px;}
.y54{bottom:1052.235260px;}
.yab{bottom:1052.235306px;}
.y165{bottom:1060.114844px;}
.y175{bottom:1061.236823px;}
.y1ad{bottom:1061.390571px;}
.y26e{bottom:1061.504597px;}
.y22c{bottom:1061.619307px;}
.y109{bottom:1064.612274px;}
.y11c{bottom:1070.979321px;}
.y53{bottom:1070.985260px;}
.yaa{bottom:1070.985306px;}
.y164{bottom:1075.108844px;}
.y4{bottom:1076.132080px;}
.y174{bottom:1076.230823px;}
.y1ac{bottom:1076.384571px;}
.y26d{bottom:1076.498597px;}
.y22b{bottom:1076.613307px;}
.yb7{bottom:1088.544342px;}
.y1e{bottom:1089.547394px;}
.y11b{bottom:1089.729321px;}
.y52{bottom:1089.735260px;}
.ya7{bottom:1089.735306px;}
.y108{bottom:1090.102844px;}
.y173{bottom:1091.224823px;}
.y1ab{bottom:1091.378571px;}
.y26c{bottom:1091.492597px;}
.y22a{bottom:1091.607307px;}
.y3{bottom:1109.586556px;}
.y2{bottom:1126.582306px;}
.y1d{bottom:1127.482361px;}
.hc{height:24.883622px;}
.ha{height:31.630199px;}
.h2{height:33.840000px;}
.hd{height:35.207390px;}
.h3{height:44.676000px;}
.h9{height:45.186000px;}
.h12{height:49.970398px;}
.hb{height:50.439000px;}
.h10{height:50.439732px;}
.h8{height:53.160000px;}
.h4{height:55.461000px;}
.h11{height:59.004000px;}
.h7{height:59.340000px;}
.he{height:61.679217px;}
.h6{height:64.866000px;}
.hf{height:71.208000px;}
.h5{height:85.056000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:76.535402px;}
.x3{left:85.181849px;}
.xc{left:93.545402px;}
.x4{left:97.796100px;}
.x16{left:102.048152px;}
.xf{left:106.865402px;}
.xa{left:150.463497px;}
.x5{left:186.098705px;}
.x14{left:226.322362px;}
.x6{left:324.718940px;}
.x10{left:369.007649px;}
.x9{left:451.975189px;}
.x7{left:453.619492px;}
.xd{left:459.215402px;}
.xe{left:476.225400px;}
.x11{left:477.918146px;}
.x15{left:478.984222px;}
.x8{left:484.522680px;}
.xb{left:535.447495px;}
.x12{left:591.890396px;}
.x13{left:723.381143px;}
.x1{left:728.220612px;}
@media print{
.v2{vertical-align:-18.133343pt;}
.v3{vertical-align:-13.333333pt;}
.v4{vertical-align:-3.200196pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls1f{letter-spacing:-1.676542pt;}
.ls68{letter-spacing:-0.426667pt;}
.ls8{letter-spacing:-0.373333pt;}
.ls24{letter-spacing:-0.320000pt;}
.ls88{letter-spacing:-0.317333pt;}
.ls8d{letter-spacing:-0.272000pt;}
.ls22{letter-spacing:-0.266667pt;}
.ls8b{letter-spacing:-0.226667pt;}
.ls9{letter-spacing:-0.213333pt;}
.ls89{letter-spacing:-0.181333pt;}
.ls31{letter-spacing:-0.160000pt;}
.ls8e{letter-spacing:-0.136000pt;}
.ls21{letter-spacing:-0.106667pt;}
.ls8a{letter-spacing:-0.090667pt;}
.ls32{letter-spacing:-0.053333pt;}
.ls8c{letter-spacing:-0.045333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000076pt;}
.ls40{letter-spacing:0.026667pt;}
.lsb{letter-spacing:0.042988pt;}
.ls79{letter-spacing:0.045333pt;}
.ls1b{letter-spacing:0.053333pt;}
.ls3b{letter-spacing:0.073568pt;}
.lsc{letter-spacing:0.075310pt;}
.ls4c{letter-spacing:0.080000pt;}
.ls3a{letter-spacing:0.080208pt;}
.lsd{letter-spacing:0.085977pt;}
.ls7c{letter-spacing:0.090667pt;}
.ls17{letter-spacing:0.106667pt;}
.ls91{letter-spacing:0.113333pt;}
.ls7f{letter-spacing:0.136000pt;}
.ls62{letter-spacing:0.149333pt;}
.ls84{letter-spacing:0.158667pt;}
.ls5{letter-spacing:0.158926pt;}
.ls29{letter-spacing:0.160000pt;}
.ls35{letter-spacing:0.175539pt;}
.ls8f{letter-spacing:0.181333pt;}
.ls52{letter-spacing:0.186646pt;}
.ls4e{letter-spacing:0.186667pt;}
.ls49{letter-spacing:0.186686pt;}
.ls2{letter-spacing:0.213333pt;}
.ls6{letter-spacing:0.226667pt;}
.ls48{letter-spacing:0.228806pt;}
.ls51{letter-spacing:0.230431pt;}
.ls78{letter-spacing:0.234667pt;}
.ls2f{letter-spacing:0.240000pt;}
.ls3d{letter-spacing:0.245333pt;}
.ls2d{letter-spacing:0.255969pt;}
.ls7d{letter-spacing:0.256000pt;}
.ls4d{letter-spacing:0.266637pt;}
.ls18{letter-spacing:0.266651pt;}
.ls3{letter-spacing:0.266667pt;}
.ls12{letter-spacing:0.272000pt;}
.ls64{letter-spacing:0.287989pt;}
.ls69{letter-spacing:0.293333pt;}
.ls76{letter-spacing:0.294667pt;}
.ls53{letter-spacing:0.314667pt;}
.ls7a{letter-spacing:0.317333pt;}
.lsa{letter-spacing:0.320000pt;}
.ls61{letter-spacing:0.328501pt;}
.ls36{letter-spacing:0.331055pt;}
.ls6a{letter-spacing:0.346667pt;}
.ls83{letter-spacing:0.362667pt;}
.ls1d{letter-spacing:0.373333pt;}
.ls77{letter-spacing:0.385333pt;}
.ls60{letter-spacing:0.400000pt;}
.ls7b{letter-spacing:0.408000pt;}
.ls25{letter-spacing:0.411133pt;}
.lse{letter-spacing:0.426667pt;}
.ls50{letter-spacing:0.451742pt;}
.ls63{letter-spacing:0.453333pt;}
.ls10{letter-spacing:0.458667pt;}
.ls82{letter-spacing:0.476000pt;}
.ls1c{letter-spacing:0.480000pt;}
.ls90{letter-spacing:0.498667pt;}
.ls67{letter-spacing:0.506667pt;}
.ls15{letter-spacing:0.533333pt;}
.ls85{letter-spacing:0.544000pt;}
.ls13{letter-spacing:0.560000pt;}
.ls87{letter-spacing:0.566667pt;}
.ls4b{letter-spacing:0.580241pt;}
.ls26{letter-spacing:0.586270pt;}
.ls19{letter-spacing:0.586667pt;}
.ls6c{letter-spacing:0.589333pt;}
.ls47{letter-spacing:0.597333pt;}
.ls1e{letter-spacing:0.613333pt;}
.ls74{letter-spacing:0.634667pt;}
.ls2a{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.656000pt;}
.ls55{letter-spacing:0.666667pt;}
.ls38{letter-spacing:0.671997pt;}
.ls6e{letter-spacing:0.680000pt;}
.ls4f{letter-spacing:0.685830pt;}
.lsf{letter-spacing:0.693333pt;}
.ls46{letter-spacing:0.705172pt;}
.ls45{letter-spacing:0.720000pt;}
.ls81{letter-spacing:0.725333pt;}
.ls4{letter-spacing:0.746667pt;}
.ls93{letter-spacing:0.770667pt;}
.ls2e{letter-spacing:0.773333pt;}
.ls23{letter-spacing:0.800000pt;}
.ls80{letter-spacing:0.816000pt;}
.ls4a{letter-spacing:0.825518pt;}
.ls39{letter-spacing:0.826667pt;}
.ls14{letter-spacing:0.853333pt;}
.ls71{letter-spacing:0.861333pt;}
.ls65{letter-spacing:0.880000pt;}
.ls3c{letter-spacing:0.901333pt;}
.ls54{letter-spacing:0.902370pt;}
.ls1a{letter-spacing:0.906667pt;}
.ls72{letter-spacing:0.929333pt;}
.ls37{letter-spacing:0.942974pt;}
.ls92{letter-spacing:0.952000pt;}
.ls6d{letter-spacing:0.952533pt;}
.ls33{letter-spacing:0.960000pt;}
.ls86{letter-spacing:0.974667pt;}
.ls73{letter-spacing:0.997333pt;}
.ls2b{letter-spacing:1.013333pt;}
.ls6f{letter-spacing:1.042667pt;}
.ls28{letter-spacing:1.066667pt;}
.ls7e{letter-spacing:1.088000pt;}
.ls30{letter-spacing:1.120000pt;}
.ls2c{letter-spacing:1.130628pt;}
.ls9e{letter-spacing:1.133333pt;}
.ls16{letter-spacing:1.136000pt;}
.ls34{letter-spacing:1.173333pt;}
.ls95{letter-spacing:1.178667pt;}
.ls59{letter-spacing:1.200000pt;}
.ls98{letter-spacing:1.224000pt;}
.ls5f{letter-spacing:1.226667pt;}
.ls75{letter-spacing:1.269333pt;}
.ls42{letter-spacing:1.280000pt;}
.ls9a{letter-spacing:1.314667pt;}
.ls5a{letter-spacing:1.333333pt;}
.ls9c{letter-spacing:1.346360pt;}
.ls70{letter-spacing:1.360000pt;}
.ls9d{letter-spacing:1.382667pt;}
.ls66{letter-spacing:1.386667pt;}
.ls9b{letter-spacing:1.405333pt;}
.ls43{letter-spacing:1.440000pt;}
.ls56{letter-spacing:1.493333pt;}
.ls5c{letter-spacing:1.520000pt;}
.ls94{letter-spacing:1.541333pt;}
.ls44{letter-spacing:1.546667pt;}
.ls99{letter-spacing:1.586667pt;}
.ls41{letter-spacing:1.600000pt;}
.ls57{letter-spacing:1.653333pt;}
.ls96{letter-spacing:1.677333pt;}
.ls3e{letter-spacing:1.706667pt;}
.ls3f{letter-spacing:1.760000pt;}
.ls5b{letter-spacing:1.786667pt;}
.ls27{letter-spacing:1.813333pt;}
.ls5e{letter-spacing:1.866667pt;}
.ls58{letter-spacing:1.920000pt;}
.ls97{letter-spacing:1.926667pt;}
.ls5d{letter-spacing:1.973333pt;}
.ls6b{letter-spacing:2.133333pt;}
.ls0{letter-spacing:3.546667pt;}
.ls20{letter-spacing:12.380621pt;}
.ws13{word-spacing:-24.331359pt;}
.ws7c{word-spacing:-14.346667pt;}
.ws5f{word-spacing:-13.600000pt;}
.ws47{word-spacing:-13.333333pt;}
.ws67{word-spacing:-13.280000pt;}
.ws88{word-spacing:-13.184000pt;}
.ws62{word-spacing:-12.928000pt;}
.ws97{word-spacing:-11.560000pt;}
.ws87{word-spacing:-11.424000pt;}
.ws6f{word-spacing:-11.333333pt;}
.ws60{word-spacing:-11.088000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws12{word-spacing:-10.274196pt;}
.ws14{word-spacing:-10.240000pt;}
.ws63{word-spacing:-9.930667pt;}
.ws86{word-spacing:-9.746667pt;}
.ws76{word-spacing:-9.482667pt;}
.ws29{word-spacing:-9.333333pt;}
.ws1{word-spacing:-8.885333pt;}
.ws3{word-spacing:-7.728000pt;}
.ws54{word-spacing:-6.666667pt;}
.ws7{word-spacing:-1.333333pt;}
.ws6c{word-spacing:-1.280000pt;}
.ws2f{word-spacing:-1.226667pt;}
.ws56{word-spacing:-1.173333pt;}
.ws9a{word-spacing:-1.133333pt;}
.ws1e{word-spacing:-1.120000pt;}
.ws96{word-spacing:-1.088000pt;}
.ws41{word-spacing:-1.066667pt;}
.ws8b{word-spacing:-1.042667pt;}
.ws3b{word-spacing:-1.013333pt;}
.wscd{word-spacing:-0.997333pt;}
.ws6e{word-spacing:-0.960000pt;}
.ws81{word-spacing:-0.952533pt;}
.ws9c{word-spacing:-0.952000pt;}
.ws57{word-spacing:-0.906667pt;}
.ws99{word-spacing:-0.861333pt;}
.ws3e{word-spacing:-0.853333pt;}
.wsc7{word-spacing:-0.816000pt;}
.wsf{word-spacing:-0.800000pt;}
.ws19{word-spacing:-0.746667pt;}
.wsbf{word-spacing:-0.725333pt;}
.ws40{word-spacing:-0.693333pt;}
.ws9d{word-spacing:-0.680000pt;}
.wsa{word-spacing:-0.640000pt;}
.ws9e{word-spacing:-0.634667pt;}
.wsa3{word-spacing:-0.589333pt;}
.ws31{word-spacing:-0.586667pt;}
.ws11{word-spacing:-0.544000pt;}
.ws15{word-spacing:-0.533333pt;}
.ws5{word-spacing:-0.506667pt;}
.wsb1{word-spacing:-0.498667pt;}
.ws5c{word-spacing:-0.480000pt;}
.wsb3{word-spacing:-0.453333pt;}
.wse{word-spacing:-0.426667pt;}
.wsad{word-spacing:-0.408000pt;}
.ws1a{word-spacing:-0.373333pt;}
.ws3c{word-spacing:-0.320000pt;}
.wsa1{word-spacing:-0.317333pt;}
.ws20{word-spacing:-0.266667pt;}
.ws98{word-spacing:-0.234667pt;}
.ws9f{word-spacing:-0.226667pt;}
.ws6{word-spacing:-0.213333pt;}
.wsbe{word-spacing:-0.181333pt;}
.ws39{word-spacing:-0.160000pt;}
.wsb8{word-spacing:-0.136000pt;}
.ws1f{word-spacing:-0.106667pt;}
.wsd0{word-spacing:-0.090667pt;}
.ws4d{word-spacing:-0.053333pt;}
.ws8a{word-spacing:-0.045333pt;}
.ws16{word-spacing:-0.042988pt;}
.ws0{word-spacing:-0.042667pt;}
.ws4{word-spacing:0.000000pt;}
.ws89{word-spacing:0.045333pt;}
.ws35{word-spacing:0.053333pt;}
.wsa9{word-spacing:0.090667pt;}
.ws5d{word-spacing:0.106667pt;}
.wsb7{word-spacing:0.136000pt;}
.ws38{word-spacing:0.160000pt;}
.wsc4{word-spacing:0.181333pt;}
.ws7b{word-spacing:0.213333pt;}
.wsbb{word-spacing:0.226667pt;}
.ws48{word-spacing:0.266667pt;}
.wsa0{word-spacing:0.272000pt;}
.wsba{word-spacing:0.317333pt;}
.ws37{word-spacing:0.320000pt;}
.wsa7{word-spacing:0.362667pt;}
.ws55{word-spacing:0.373333pt;}
.wscf{word-spacing:0.408000pt;}
.ws23{word-spacing:0.426667pt;}
.ws26{word-spacing:0.480000pt;}
.wsb4{word-spacing:0.498667pt;}
.ws4a{word-spacing:0.533333pt;}
.ws64{word-spacing:0.586667pt;}
.wsb6{word-spacing:0.589333pt;}
.ws52{word-spacing:0.640000pt;}
.ws85{word-spacing:0.680000pt;}
.ws34{word-spacing:0.693333pt;}
.wsd5{word-spacing:0.725333pt;}
.ws3f{word-spacing:0.746667pt;}
.ws68{word-spacing:0.800000pt;}
.ws2a{word-spacing:0.853333pt;}
.ws94{word-spacing:0.861333pt;}
.ws8{word-spacing:0.906667pt;}
.ws53{word-spacing:0.960000pt;}
.ws1d{word-spacing:1.013333pt;}
.ws9b{word-spacing:1.042667pt;}
.ws21{word-spacing:1.066667pt;}
.wsd{word-spacing:1.120000pt;}
.ws95{word-spacing:1.133333pt;}
.ws4e{word-spacing:1.173333pt;}
.ws84{word-spacing:1.178667pt;}
.wsac{word-spacing:1.224000pt;}
.ws4f{word-spacing:1.226667pt;}
.wsc{word-spacing:1.280000pt;}
.wsa8{word-spacing:1.314667pt;}
.ws9{word-spacing:1.333333pt;}
.ws93{word-spacing:1.360000pt;}
.ws1b{word-spacing:1.386667pt;}
.ws91{word-spacing:1.405333pt;}
.ws6a{word-spacing:1.440000pt;}
.wsb5{word-spacing:1.450667pt;}
.ws30{word-spacing:1.493333pt;}
.wsb2{word-spacing:1.496000pt;}
.ws36{word-spacing:1.546667pt;}
.wsae{word-spacing:1.586667pt;}
.ws1c{word-spacing:1.600000pt;}
.wsd2{word-spacing:1.632000pt;}
.wsb{word-spacing:1.653333pt;}
.ws8c{word-spacing:1.677333pt;}
.ws18{word-spacing:1.706667pt;}
.ws6b{word-spacing:1.760000pt;}
.wsc0{word-spacing:1.768000pt;}
.ws24{word-spacing:1.813333pt;}
.wsa5{word-spacing:1.858667pt;}
.ws3d{word-spacing:1.866667pt;}
.ws2d{word-spacing:1.920000pt;}
.wsb0{word-spacing:1.949333pt;}
.ws69{word-spacing:1.973333pt;}
.wsd3{word-spacing:1.994667pt;}
.ws61{word-spacing:2.026667pt;}
.wsbd{word-spacing:2.040000pt;}
.ws2b{word-spacing:2.080000pt;}
.wsc2{word-spacing:2.085333pt;}
.ws46{word-spacing:2.133333pt;}
.wscc{word-spacing:2.176000pt;}
.ws28{word-spacing:2.186667pt;}
.wsc5{word-spacing:2.221333pt;}
.ws22{word-spacing:2.240000pt;}
.ws44{word-spacing:2.293333pt;}
.wsab{word-spacing:2.312000pt;}
.ws42{word-spacing:2.346667pt;}
.ws27{word-spacing:2.400000pt;}
.wsa4{word-spacing:2.402667pt;}
.ws43{word-spacing:2.453333pt;}
.ws8e{word-spacing:2.493333pt;}
.ws32{word-spacing:2.506667pt;}
.wsc1{word-spacing:2.538667pt;}
.ws2c{word-spacing:2.560000pt;}
.ws25{word-spacing:2.613333pt;}
.ws58{word-spacing:2.666667pt;}
.ws6d{word-spacing:2.720000pt;}
.ws50{word-spacing:2.773333pt;}
.wsc8{word-spacing:2.810667pt;}
.ws4b{word-spacing:2.826667pt;}
.ws7f{word-spacing:2.880000pt;}
.wsd4{word-spacing:2.901333pt;}
.ws5e{word-spacing:2.933333pt;}
.ws8f{word-spacing:2.946667pt;}
.ws73{word-spacing:2.986667pt;}
.wsbc{word-spacing:2.992000pt;}
.wsb9{word-spacing:3.037333pt;}
.ws3a{word-spacing:3.040000pt;}
.wsc6{word-spacing:3.082667pt;}
.wsc3{word-spacing:3.128000pt;}
.ws49{word-spacing:3.146667pt;}
.wsaf{word-spacing:3.173333pt;}
.ws51{word-spacing:3.200000pt;}
.ws33{word-spacing:3.306667pt;}
.ws90{word-spacing:3.309333pt;}
.ws7a{word-spacing:3.360000pt;}
.wscb{word-spacing:3.445333pt;}
.ws77{word-spacing:3.466667pt;}
.wsc9{word-spacing:3.490667pt;}
.ws45{word-spacing:3.520000pt;}
.ws75{word-spacing:3.573333pt;}
.wsce{word-spacing:3.581333pt;}
.ws82{word-spacing:3.626667pt;}
.ws65{word-spacing:3.680000pt;}
.ws72{word-spacing:3.733333pt;}
.ws59{word-spacing:3.786667pt;}
.wsa2{word-spacing:3.808000pt;}
.ws7e{word-spacing:3.840000pt;}
.wsaa{word-spacing:3.853333pt;}
.ws4c{word-spacing:3.946667pt;}
.wsd1{word-spacing:4.034667pt;}
.ws79{word-spacing:4.106667pt;}
.ws74{word-spacing:4.160000pt;}
.ws83{word-spacing:4.266667pt;}
.ws92{word-spacing:4.714667pt;}
.wsca{word-spacing:4.760000pt;}
.ws80{word-spacing:4.853333pt;}
.ws78{word-spacing:5.066667pt;}
.wsa6{word-spacing:5.168000pt;}
.ws8d{word-spacing:5.213333pt;}
.ws7d{word-spacing:5.280000pt;}
.ws66{word-spacing:5.653333pt;}
.ws5b{word-spacing:6.506667pt;}
.ws5a{word-spacing:6.613333pt;}
.ws2e{word-spacing:6.986667pt;}
.wsd6{word-spacing:12.013333pt;}
.wsd7{word-spacing:15.640000pt;}
.ws17{word-spacing:19.072000pt;}
.ws10{word-spacing:64.237333pt;}
.ws71{word-spacing:217.600000pt;}
.ws70{word-spacing:296.570658pt;}
._9{margin-left:-2631.076793pt;}
._3a{margin-left:-17.906667pt;}
._d{margin-left:-15.724823pt;}
._5{margin-left:-14.733333pt;}
._2f{margin-left:-13.154166pt;}
._b{margin-left:-12.004661pt;}
._10{margin-left:-11.088000pt;}
._38{margin-left:-9.928000pt;}
._11{margin-left:-8.000000pt;}
._4{margin-left:-5.888000pt;}
._1{margin-left:-4.109067pt;}
._3{margin-left:-2.653867pt;}
._0{margin-left:-1.450667pt;}
._2{width:1.536000pt;}
._e{width:2.773333pt;}
._32{width:6.573333pt;}
._12{width:8.112000pt;}
._2e{width:9.135467pt;}
._14{width:10.794667pt;}
._16{width:12.281600pt;}
._17{width:13.872000pt;}
._6{width:16.320000pt;}
._39{width:17.334156pt;}
._f{width:18.245333pt;}
._37{width:19.387200pt;}
._33{width:20.754667pt;}
._35{width:22.304000pt;}
._36{width:23.392000pt;}
._34{width:24.482667pt;}
._19{width:25.674667pt;}
._18{width:27.530667pt;}
._13{width:29.333333pt;}
._31{width:30.593718pt;}
._15{width:32.000000pt;}
._a{width:36.447995pt;}
._7{width:48.552000pt;}
._29{width:118.184000pt;}
._1c{width:186.913054pt;}
._26{width:207.445333pt;}
._27{width:210.527988pt;}
._25{width:226.031992pt;}
._1d{width:242.393600pt;}
._21{width:245.434654pt;}
._2d{width:270.367988pt;}
._23{width:288.180258pt;}
._2b{width:301.919993pt;}
._1e{width:321.775992pt;}
._1f{width:337.234667pt;}
._28{width:348.568000pt;}
._1b{width:353.599988pt;}
._24{width:359.901333pt;}
._2a{width:368.106661pt;}
._1a{width:379.077333pt;}
._20{width:388.189321pt;}
._2c{width:393.901333pt;}
._22{width:442.000000pt;}
._30{width:1776.998984pt;}
._c{width:1798.531699pt;}
._8{width:2106.367993pt;}
.fs7{font-size:30.382933pt;}
.fs6{font-size:31.733332pt;}
.fs5{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:42.988266pt;}
.fs1{font-size:45.333333pt;}
.fsc{font-size:50.133331pt;}
.fs2{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fsb{font-size:58.666667pt;}
.fsa{font-size:64.000000pt;}
.fs9{font-size:75.310399pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:61.181335pt;}
.y1c{bottom:100.394933pt;}
.yd3{bottom:101.270935pt;}
.yb6{bottom:101.484263pt;}
.y1aa{bottom:101.584261pt;}
.ye8{bottom:101.834920pt;}
.y86{bottom:101.986898pt;}
.yd7{bottom:101.986928pt;}
.ya6{bottom:101.986938pt;}
.y150{bottom:102.106898pt;}
.y163{bottom:102.111064pt;}
.y26b{bottom:103.997606pt;}
.y3b{bottom:105.555583pt;}
.y51{bottom:107.555578pt;}
.y172{bottom:111.992262pt;}
.y1b{bottom:113.722933pt;}
.y1a9{bottom:114.912261pt;}
.y229{bottom:116.985620pt;}
.y1eb{bottom:117.122285pt;}
.y26a{bottom:117.325606pt;}
.ye7{bottom:118.501587pt;}
.y85{bottom:118.653564pt;}
.yd6{bottom:118.653595pt;}
.ya5{bottom:118.653605pt;}
.y14f{bottom:118.773564pt;}
.y107{bottom:118.777588pt;}
.y162{bottom:118.777730pt;}
.y3a{bottom:122.222249pt;}
.y50{bottom:124.222244pt;}
.y171{bottom:125.320262pt;}
.y1a8{bottom:128.240261pt;}
.y228{bottom:130.313620pt;}
.y1ea{bottom:130.450285pt;}
.y269{bottom:130.653606pt;}
.y1a{bottom:131.584269pt;}
.ye6{bottom:135.168254pt;}
.y84{bottom:135.320231pt;}
.yd5{bottom:135.320262pt;}
.ya4{bottom:135.320272pt;}
.y14e{bottom:135.440231pt;}
.y106{bottom:135.444255pt;}
.y161{bottom:135.444397pt;}
.y39{bottom:138.888916pt;}
.y4f{bottom:140.888911pt;}
.y1a7{bottom:141.568261pt;}
.y227{bottom:143.641620pt;}
.y1e9{bottom:143.778285pt;}
.y268{bottom:143.981606pt;}
.ye5{bottom:151.834920pt;}
.y83{bottom:151.986898pt;}
.ya3{bottom:151.986938pt;}
.y14d{bottom:152.106898pt;}
.y105{bottom:152.110921pt;}
.y160{bottom:152.111064pt;}
.y19{bottom:153.806928pt;}
.y1a6{bottom:154.896261pt;}
.y38{bottom:155.555583pt;}
.y226{bottom:156.969620pt;}
.y1e8{bottom:157.106285pt;}
.y267{bottom:157.309606pt;}
.y4e{bottom:157.555578pt;}
.y18{bottom:167.134928pt;}
.y1a5{bottom:168.224261pt;}
.ye4{bottom:168.501587pt;}
.y82{bottom:168.653564pt;}
.yd4{bottom:168.653595pt;}
.ya2{bottom:168.653605pt;}
.y14c{bottom:168.773564pt;}
.y104{bottom:168.777588pt;}
.y15f{bottom:168.777730pt;}
.y225{bottom:170.297620pt;}
.y1e7{bottom:170.434285pt;}
.y266{bottom:170.637606pt;}
.y37{bottom:172.222249pt;}
.y4d{bottom:174.222244pt;}
.y1a4{bottom:181.552261pt;}
.y224{bottom:183.625620pt;}
.y1e6{bottom:183.762285pt;}
.y265{bottom:183.965606pt;}
.ye3{bottom:185.168254pt;}
.y81{bottom:185.320231pt;}
.ya1{bottom:185.320272pt;}
.y14b{bottom:185.440231pt;}
.y103{bottom:185.444255pt;}
.y15e{bottom:185.444397pt;}
.y36{bottom:188.888916pt;}
.y4c{bottom:190.888911pt;}
.y1a3{bottom:194.880261pt;}
.y223{bottom:196.953620pt;}
.y1e5{bottom:197.090285pt;}
.y264{bottom:197.293606pt;}
.ye2{bottom:201.834920pt;}
.y80{bottom:201.986898pt;}
.ya0{bottom:201.986938pt;}
.y14a{bottom:202.106898pt;}
.y102{bottom:202.110921pt;}
.y15d{bottom:202.111064pt;}
.y35{bottom:205.555583pt;}
.y4b{bottom:207.555578pt;}
.y1a2{bottom:208.208261pt;}
.y222{bottom:210.281620pt;}
.y1e4{bottom:210.418285pt;}
.y263{bottom:210.621606pt;}
.ye1{bottom:218.501587pt;}
.y7f{bottom:218.653564pt;}
.y9f{bottom:218.653605pt;}
.y149{bottom:218.773564pt;}
.y101{bottom:218.777588pt;}
.y15c{bottom:218.777730pt;}
.y1a1{bottom:221.536261pt;}
.y34{bottom:222.222249pt;}
.y221{bottom:223.609620pt;}
.y1e3{bottom:223.746285pt;}
.y262{bottom:223.949606pt;}
.y4a{bottom:224.222244pt;}
.y1a0{bottom:234.864261pt;}
.ye0{bottom:235.168254pt;}
.y7e{bottom:235.320231pt;}
.y9e{bottom:235.320272pt;}
.y148{bottom:235.440231pt;}
.y100{bottom:235.444255pt;}
.y15b{bottom:235.444397pt;}
.y220{bottom:236.937620pt;}
.y1e2{bottom:237.074285pt;}
.y261{bottom:237.277606pt;}
.y33{bottom:238.888916pt;}
.y49{bottom:240.888911pt;}
.y19f{bottom:248.192261pt;}
.y21f{bottom:250.265620pt;}
.y1e1{bottom:250.402285pt;}
.y260{bottom:250.605606pt;}
.ydf{bottom:251.834920pt;}
.y7d{bottom:251.986898pt;}
.y9d{bottom:251.986938pt;}
.y147{bottom:252.106898pt;}
.yff{bottom:252.110921pt;}
.y15a{bottom:252.111064pt;}
.y32{bottom:255.555583pt;}
.y48{bottom:257.555578pt;}
.y19e{bottom:261.520261pt;}
.y21e{bottom:263.593620pt;}
.y1e0{bottom:263.730285pt;}
.y25f{bottom:263.933606pt;}
.yde{bottom:268.501587pt;}
.y7c{bottom:268.653564pt;}
.y9c{bottom:268.653605pt;}
.y146{bottom:268.773564pt;}
.yfe{bottom:268.777588pt;}
.y159{bottom:268.777730pt;}
.y31{bottom:272.222249pt;}
.y47{bottom:274.222244pt;}
.y19d{bottom:274.848261pt;}
.y21d{bottom:276.921620pt;}
.y1df{bottom:277.058285pt;}
.y25e{bottom:277.261606pt;}
.ydd{bottom:285.168254pt;}
.y7b{bottom:285.320231pt;}
.y9b{bottom:285.320272pt;}
.y145{bottom:285.440231pt;}
.yfd{bottom:285.444255pt;}
.y158{bottom:285.444397pt;}
.y19c{bottom:288.176261pt;}
.y30{bottom:288.888916pt;}
.y21c{bottom:290.249620pt;}
.y1de{bottom:290.386285pt;}
.y25d{bottom:290.589606pt;}
.y46{bottom:290.888911pt;}
.y19b{bottom:301.504261pt;}
.ydc{bottom:301.834920pt;}
.y7a{bottom:301.986898pt;}
.y9a{bottom:301.986938pt;}
.y144{bottom:302.106898pt;}
.yfc{bottom:302.110921pt;}
.y21b{bottom:303.577620pt;}
.y1dd{bottom:303.714285pt;}
.y25c{bottom:303.917606pt;}
.y2f{bottom:305.555583pt;}
.y45{bottom:307.555578pt;}
.y19a{bottom:314.832261pt;}
.y21a{bottom:316.905620pt;}
.y1dc{bottom:317.042285pt;}
.y25b{bottom:317.245606pt;}
.ydb{bottom:318.501587pt;}
.y79{bottom:318.653564pt;}
.y99{bottom:318.653605pt;}
.y143{bottom:318.773564pt;}
.yfb{bottom:318.777588pt;}
.y2e{bottom:322.222249pt;}
.y44{bottom:324.222244pt;}
.y199{bottom:328.160261pt;}
.y219{bottom:330.233620pt;}
.y1db{bottom:330.370285pt;}
.y25a{bottom:330.573606pt;}
.yda{bottom:335.168254pt;}
.y78{bottom:335.320231pt;}
.y98{bottom:335.320272pt;}
.y142{bottom:335.440231pt;}
.yfa{bottom:335.444255pt;}
.y2d{bottom:338.888916pt;}
.y43{bottom:340.888911pt;}
.y198{bottom:341.488261pt;}
.y218{bottom:343.561620pt;}
.y1da{bottom:343.698285pt;}
.y259{bottom:343.901606pt;}
.yd9{bottom:351.834920pt;}
.y77{bottom:351.986898pt;}
.y97{bottom:351.986938pt;}
.y141{bottom:352.106898pt;}
.yf9{bottom:352.110921pt;}
.y197{bottom:354.816261pt;}
.y2c{bottom:355.555583pt;}
.y217{bottom:356.889620pt;}
.y1d9{bottom:357.026285pt;}
.y258{bottom:357.229606pt;}
.y42{bottom:357.555578pt;}
.y196{bottom:368.144261pt;}
.yd8{bottom:368.501587pt;}
.y76{bottom:368.653564pt;}
.y96{bottom:368.653605pt;}
.y140{bottom:368.773564pt;}
.yf8{bottom:368.777588pt;}
.y170{bottom:369.453613pt;}
.y216{bottom:370.217620pt;}
.y1d8{bottom:370.354285pt;}
.y257{bottom:370.557606pt;}
.y2b{bottom:372.222249pt;}
.y41{bottom:374.222244pt;}
.y195{bottom:381.472261pt;}
.y215{bottom:383.545620pt;}
.y1d7{bottom:383.682285pt;}
.y256{bottom:383.885606pt;}
.y75{bottom:385.320231pt;}
.y95{bottom:385.320272pt;}
.y13f{bottom:385.440231pt;}
.yf7{bottom:385.444255pt;}
.y2a{bottom:388.888916pt;}
.y40{bottom:390.888911pt;}
.y194{bottom:394.800261pt;}
.y214{bottom:396.873620pt;}
.y1d6{bottom:397.010285pt;}
.y255{bottom:397.213606pt;}
.y74{bottom:401.986898pt;}
.y94{bottom:401.986938pt;}
.y13e{bottom:402.106898pt;}
.yf6{bottom:402.110921pt;}
.y29{bottom:405.555583pt;}
.y3f{bottom:407.555578pt;}
.y193{bottom:408.128261pt;}
.y213{bottom:410.201620pt;}
.y1d5{bottom:410.338285pt;}
.y254{bottom:410.541606pt;}
.y115{bottom:410.853719pt;}
.y73{bottom:418.653564pt;}
.y93{bottom:418.653605pt;}
.y13d{bottom:418.773564pt;}
.yf5{bottom:418.777588pt;}
.y16f{bottom:419.453613pt;}
.y192{bottom:421.456261pt;}
.y28{bottom:422.222249pt;}
.y212{bottom:423.529620pt;}
.y1d4{bottom:423.666285pt;}
.y253{bottom:423.869606pt;}
.y3e{bottom:424.222244pt;}
.y13a{bottom:433.772269pt;}
.y191{bottom:434.784261pt;}
.y72{bottom:435.320231pt;}
.y92{bottom:435.320272pt;}
.y13c{bottom:435.440231pt;}
.yf4{bottom:435.444255pt;}
.y211{bottom:436.857620pt;}
.y1d3{bottom:436.994285pt;}
.y252{bottom:437.197606pt;}
.y3d{bottom:440.888911pt;}
.y139{bottom:447.100269pt;}
.y210{bottom:450.185620pt;}
.y1d2{bottom:450.322285pt;}
.y292{bottom:450.332976pt;}
.y251{bottom:450.525606pt;}
.y71{bottom:451.986898pt;}
.y91{bottom:451.986938pt;}
.y13b{bottom:452.106898pt;}
.yf3{bottom:452.110921pt;}
.y27{bottom:455.555583pt;}
.y3c{bottom:457.555578pt;}
.y138{bottom:460.428269pt;}
.y20f{bottom:463.513620pt;}
.y1d1{bottom:463.650285pt;}
.y291{bottom:463.660976pt;}
.y250{bottom:463.853606pt;}
.y190{bottom:464.784261pt;}
.y70{bottom:468.653564pt;}
.y90{bottom:468.653605pt;}
.y137{bottom:473.756269pt;}
.y20e{bottom:476.841620pt;}
.y1d0{bottom:476.978285pt;}
.y24f{bottom:477.181606pt;}
.y6f{bottom:485.320231pt;}
.y8f{bottom:485.320272pt;}
.yf2{bottom:485.444255pt;}
.y16e{bottom:486.120280pt;}
.y136{bottom:487.084269pt;}
.y20d{bottom:490.169620pt;}
.y1cf{bottom:490.306285pt;}
.y290{bottom:490.407642pt;}
.y24e{bottom:490.509606pt;}
.y151{bottom:492.382933pt;}
.y26{bottom:500.888916pt;}
.yd2{bottom:500.928263pt;}
.y6e{bottom:501.986898pt;}
.y8e{bottom:501.986938pt;}
.y20c{bottom:503.497620pt;}
.y1ce{bottom:503.634285pt;}
.y28f{bottom:503.735642pt;}
.y24d{bottom:503.837606pt;}
.y20b{bottom:516.825620pt;}
.y1cd{bottom:516.962285pt;}
.y28e{bottom:517.063642pt;}
.y24c{bottom:517.165606pt;}
.yd1{bottom:517.594930pt;}
.y6d{bottom:518.653564pt;}
.y8d{bottom:518.653605pt;}
.y17{bottom:525.521240pt;}
.y18f{bottom:526.702287pt;}
.y20a{bottom:530.153620pt;}
.y1cc{bottom:530.290285pt;}
.y28d{bottom:530.391642pt;}
.y24b{bottom:530.493606pt;}
.yd0{bottom:534.261597pt;}
.y11a{bottom:534.261637pt;}
.y135{bottom:535.314952pt;}
.y6c{bottom:535.320231pt;}
.y8c{bottom:535.320272pt;}
.y18e{bottom:540.030287pt;}
.y16{bottom:542.187907pt;}
.y209{bottom:543.481620pt;}
.y1cb{bottom:543.618285pt;}
.y28c{bottom:543.719642pt;}
.y24a{bottom:543.821606pt;}
.ycf{bottom:550.928263pt;}
.y119{bottom:550.928304pt;}
.y134{bottom:551.981618pt;}
.y6b{bottom:551.986898pt;}
.y8b{bottom:551.986938pt;}
.yf1{bottom:552.114920pt;}
.y18d{bottom:553.358287pt;}
.y208{bottom:556.809620pt;}
.y1ca{bottom:556.946285pt;}
.y28b{bottom:557.047642pt;}
.y249{bottom:557.149606pt;}
.y15{bottom:558.854574pt;}
.y23{bottom:561.391500pt;}
.y18c{bottom:566.686287pt;}
.yce{bottom:567.594930pt;}
.y118{bottom:567.594971pt;}
.y133{bottom:568.648285pt;}
.y6a{bottom:568.653564pt;}
.y8a{bottom:568.653605pt;}
.yf0{bottom:568.781587pt;}
.y207{bottom:570.137620pt;}
.y1c9{bottom:570.274285pt;}
.y28a{bottom:570.375642pt;}
.y248{bottom:570.477606pt;}
.y22{bottom:574.320221pt;}
.y25{bottom:574.787598pt;}
.y14{bottom:575.521240pt;}
.y18b{bottom:580.014287pt;}
.y206{bottom:583.465620pt;}
.y1c8{bottom:583.602285pt;}
.y289{bottom:583.703642pt;}
.y247{bottom:583.805606pt;}
.ycd{bottom:584.261597pt;}
.y117{bottom:584.261637pt;}
.y132{bottom:585.314952pt;}
.y69{bottom:585.320231pt;}
.y89{bottom:585.320272pt;}
.yef{bottom:585.448254pt;}
.y21{bottom:587.248942pt;}
.y13{bottom:592.187907pt;}
.y18a{bottom:593.342287pt;}
.y205{bottom:596.793620pt;}
.y1c7{bottom:596.930285pt;}
.y288{bottom:597.031642pt;}
.y246{bottom:597.133606pt;}
.ycc{bottom:600.928263pt;}
.y116{bottom:600.928304pt;}
.y131{bottom:601.981618pt;}
.y68{bottom:601.986898pt;}
.y88{bottom:601.986938pt;}
.yee{bottom:602.114920pt;}
.y189{bottom:606.670287pt;}
.y12{bottom:608.854574pt;}
.y204{bottom:610.121620pt;}
.y1c6{bottom:610.258285pt;}
.y287{bottom:610.359642pt;}
.y245{bottom:610.461606pt;}
.ycb{bottom:617.594971pt;}
.y130{bottom:618.648285pt;}
.y67{bottom:618.653564pt;}
.ya9{bottom:618.653605pt;}
.yed{bottom:618.781587pt;}
.y188{bottom:619.998287pt;}
.y203{bottom:623.449620pt;}
.y1c5{bottom:623.586285pt;}
.y286{bottom:623.687642pt;}
.y244{bottom:623.789606pt;}
.y11{bottom:625.521240pt;}
.y187{bottom:633.326287pt;}
.yca{bottom:634.261637pt;}
.y12f{bottom:635.314952pt;}
.y66{bottom:635.320231pt;}
.y87{bottom:635.320272pt;}
.yec{bottom:635.448254pt;}
.y202{bottom:636.777620pt;}
.y1c4{bottom:636.914285pt;}
.y285{bottom:637.015642pt;}
.y243{bottom:637.117606pt;}
.y10{bottom:642.187907pt;}
.y186{bottom:646.654287pt;}
.y201{bottom:650.105620pt;}
.y1c3{bottom:650.242285pt;}
.y284{bottom:650.343642pt;}
.y242{bottom:650.445606pt;}
.yc9{bottom:650.928304pt;}
.y12e{bottom:651.981618pt;}
.y65{bottom:651.986898pt;}
.ya8{bottom:651.986938pt;}
.yeb{bottom:652.114920pt;}
.yf{bottom:658.854574pt;}
.y185{bottom:659.982287pt;}
.y200{bottom:663.433620pt;}
.y1c2{bottom:663.570285pt;}
.y283{bottom:663.671642pt;}
.y241{bottom:663.773606pt;}
.yc8{bottom:667.594971pt;}
.y12d{bottom:668.648285pt;}
.y64{bottom:668.653564pt;}
.yb5{bottom:668.653605pt;}
.yea{bottom:668.781587pt;}
.y184{bottom:673.310287pt;}
.ye{bottom:675.521240pt;}
.y1ff{bottom:676.761620pt;}
.y1c1{bottom:676.898285pt;}
.y282{bottom:676.999642pt;}
.y240{bottom:677.101606pt;}
.yc7{bottom:684.261637pt;}
.y12c{bottom:685.314952pt;}
.y63{bottom:685.320231pt;}
.y157{bottom:685.320272pt;}
.ye9{bottom:685.448254pt;}
.y1fe{bottom:690.089620pt;}
.y1c0{bottom:690.226285pt;}
.y281{bottom:690.327642pt;}
.y23f{bottom:690.429606pt;}
.yd{bottom:692.187907pt;}
.y183{bottom:699.977620pt;}
.yc6{bottom:700.928304pt;}
.y12b{bottom:701.981618pt;}
.y62{bottom:701.986898pt;}
.y156{bottom:701.986938pt;}
.y1fd{bottom:703.417620pt;}
.y1bf{bottom:703.554285pt;}
.y280{bottom:703.655642pt;}
.y23e{bottom:703.757606pt;}
.yc{bottom:708.854574pt;}
.y1fc{bottom:716.745620pt;}
.y1be{bottom:716.882285pt;}
.y27f{bottom:716.983642pt;}
.y23d{bottom:717.085606pt;}
.yc5{bottom:717.594971pt;}
.y12a{bottom:718.648285pt;}
.y61{bottom:718.653564pt;}
.y155{bottom:718.653605pt;}
.yb{bottom:725.521240pt;}
.y182{bottom:726.644287pt;}
.y1fb{bottom:730.073620pt;}
.y1bd{bottom:730.210285pt;}
.y27e{bottom:730.311642pt;}
.y23c{bottom:730.413606pt;}
.yc4{bottom:734.261637pt;}
.y129{bottom:735.314952pt;}
.y60{bottom:735.320231pt;}
.y154{bottom:735.320272pt;}
.y16a{bottom:738.940235pt;}
.y114{bottom:740.590016pt;}
.ya{bottom:742.187907pt;}
.y1fa{bottom:743.401620pt;}
.y1bc{bottom:743.538285pt;}
.y27d{bottom:743.639642pt;}
.y23b{bottom:743.741606pt;}
.yc3{bottom:750.928304pt;}
.y128{bottom:751.981618pt;}
.y5f{bottom:751.986898pt;}
.y153{bottom:751.986938pt;}
.y169{bottom:752.268235pt;}
.y181{bottom:756.706954pt;}
.y1f9{bottom:756.729620pt;}
.y1bb{bottom:756.866285pt;}
.y27c{bottom:756.967642pt;}
.y23a{bottom:757.069606pt;}
.y1f{bottom:765.292969pt;}
.y113{bottom:765.546016pt;}
.y168{bottom:765.596235pt;}
.yc2{bottom:767.594971pt;}
.y127{bottom:768.648285pt;}
.y5e{bottom:768.653564pt;}
.y152{bottom:768.653605pt;}
.y180{bottom:770.034954pt;}
.y1f8{bottom:770.057620pt;}
.y1ba{bottom:770.194285pt;}
.y27b{bottom:770.295642pt;}
.y239{bottom:770.397606pt;}
.y167{bottom:778.924235pt;}
.y9{bottom:781.461469pt;}
.y17f{bottom:783.362954pt;}
.y1f7{bottom:783.385620pt;}
.y1b9{bottom:783.522285pt;}
.y27a{bottom:783.623642pt;}
.y238{bottom:783.725606pt;}
.yc1{bottom:784.261637pt;}
.y126{bottom:785.314952pt;}
.y5d{bottom:785.320231pt;}
.yb4{bottom:785.320272pt;}
.y16d{bottom:786.120280pt;}
.y112{bottom:787.249349pt;}
.y8{bottom:794.789469pt;}
.y1f6{bottom:796.713620pt;}
.y1b8{bottom:796.850285pt;}
.y279{bottom:796.951642pt;}
.y237{bottom:797.053606pt;}
.yc0{bottom:800.928304pt;}
.y125{bottom:801.981618pt;}
.y5c{bottom:801.986898pt;}
.yb3{bottom:801.986938pt;}
.y111{bottom:806.457355pt;}
.y17e{bottom:810.030287pt;}
.y1f5{bottom:810.041620pt;}
.y1b7{bottom:810.178285pt;}
.y278{bottom:810.279642pt;}
.y236{bottom:810.381606pt;}
.ybf{bottom:817.594971pt;}
.y124{bottom:818.648285pt;}
.y5b{bottom:818.653564pt;}
.yb2{bottom:818.653605pt;}
.y16c{bottom:819.453613pt;}
.y110{bottom:823.094688pt;}
.y17d{bottom:823.358287pt;}
.y1f4{bottom:823.369620pt;}
.y1b6{bottom:823.506285pt;}
.y277{bottom:823.607642pt;}
.y235{bottom:823.709606pt;}
.y7{bottom:832.656169pt;}
.ybe{bottom:834.261637pt;}
.y123{bottom:835.314952pt;}
.y5a{bottom:835.320231pt;}
.yb1{bottom:835.320272pt;}
.y16b{bottom:836.120280pt;}
.y17c{bottom:836.686287pt;}
.y1f3{bottom:836.697620pt;}
.y1b5{bottom:836.834285pt;}
.y276{bottom:836.935642pt;}
.y234{bottom:837.037606pt;}
.y10f{bottom:839.732021pt;}
.y17b{bottom:850.014287pt;}
.y1f2{bottom:850.025620pt;}
.y1b4{bottom:850.162285pt;}
.y275{bottom:850.263642pt;}
.y233{bottom:850.365606pt;}
.ybd{bottom:850.928304pt;}
.y122{bottom:851.981618pt;}
.y59{bottom:851.986898pt;}
.yb0{bottom:851.986938pt;}
.y10e{bottom:856.369355pt;}
.y17a{bottom:863.342287pt;}
.y1f1{bottom:863.353620pt;}
.y1b3{bottom:863.490285pt;}
.y274{bottom:863.591642pt;}
.y232{bottom:863.693606pt;}
.ybc{bottom:867.594971pt;}
.y121{bottom:868.648285pt;}
.y58{bottom:868.653564pt;}
.yaf{bottom:868.653605pt;}
.y6{bottom:872.377441pt;}
.y10d{bottom:873.006688pt;}
.y20{bottom:874.398082pt;}
.y179{bottom:876.670287pt;}
.y1f0{bottom:876.681620pt;}
.y1b2{bottom:876.818285pt;}
.y273{bottom:876.919642pt;}
.y231{bottom:877.021606pt;}
.ybb{bottom:884.261637pt;}
.y120{bottom:885.314952pt;}
.y57{bottom:885.320231pt;}
.yae{bottom:885.320272pt;}
.y178{bottom:889.998287pt;}
.y1ef{bottom:890.009620pt;}
.y1b1{bottom:890.146285pt;}
.y272{bottom:890.247642pt;}
.y230{bottom:890.349606pt;}
.y5{bottom:896.377441pt;}
.y10c{bottom:897.962688pt;}
.yba{bottom:900.928304pt;}
.y11f{bottom:901.981618pt;}
.y56{bottom:901.986898pt;}
.yad{bottom:901.986938pt;}
.y177{bottom:903.326287pt;}
.y1ee{bottom:903.337620pt;}
.y1b0{bottom:903.474285pt;}
.y271{bottom:903.575642pt;}
.y22f{bottom:903.677606pt;}
.y10b{bottom:911.290688pt;}
.y176{bottom:916.654287pt;}
.y1ed{bottom:916.665620pt;}
.y1af{bottom:916.802285pt;}
.y270{bottom:916.903642pt;}
.y22e{bottom:917.005606pt;}
.yb9{bottom:917.594971pt;}
.y11e{bottom:918.648285pt;}
.y55{bottom:918.653564pt;}
.yac{bottom:918.653605pt;}
.y10a{bottom:924.618688pt;}
.y24{bottom:925.206950pt;}
.y166{bottom:928.996306pt;}
.y1ec{bottom:929.993620pt;}
.y1ae{bottom:930.130285pt;}
.y26f{bottom:930.231642pt;}
.y22d{bottom:930.333606pt;}
.yb8{bottom:934.261637pt;}
.y11d{bottom:935.314952pt;}
.y54{bottom:935.320231pt;}
.yab{bottom:935.320272pt;}
.y165{bottom:942.324306pt;}
.y175{bottom:943.321620pt;}
.y1ad{bottom:943.458285pt;}
.y26e{bottom:943.559642pt;}
.y22c{bottom:943.661606pt;}
.y109{bottom:946.322021pt;}
.y11c{bottom:951.981618pt;}
.y53{bottom:951.986898pt;}
.yaa{bottom:951.986938pt;}
.y164{bottom:955.652306pt;}
.y4{bottom:956.561849pt;}
.y174{bottom:956.649620pt;}
.y1ac{bottom:956.786285pt;}
.y26d{bottom:956.887642pt;}
.y22b{bottom:956.989606pt;}
.yb7{bottom:967.594971pt;}
.y1e{bottom:968.486572pt;}
.y11b{bottom:968.648285pt;}
.y52{bottom:968.653564pt;}
.ya7{bottom:968.653605pt;}
.y108{bottom:968.980306pt;}
.y173{bottom:969.977620pt;}
.y1ab{bottom:970.114285pt;}
.y26c{bottom:970.215642pt;}
.y22a{bottom:970.317606pt;}
.y3{bottom:986.299161pt;}
.y2{bottom:1001.406494pt;}
.y1d{bottom:1002.206543pt;}
.hc{height:22.118775pt;}
.ha{height:28.115732pt;}
.h2{height:30.080000pt;}
.hd{height:31.295458pt;}
.h3{height:39.712000pt;}
.h9{height:40.165333pt;}
.h12{height:44.418132pt;}
.hb{height:44.834667pt;}
.h10{height:44.835318pt;}
.h8{height:47.253333pt;}
.h4{height:49.298667pt;}
.h11{height:52.448000pt;}
.h7{height:52.746667pt;}
.he{height:54.825971pt;}
.h6{height:57.658667pt;}
.hf{height:63.296000pt;}
.h5{height:75.605333pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:68.031469pt;}
.x3{left:75.717199pt;}
.xc{left:83.151469pt;}
.x4{left:86.929867pt;}
.x16{left:90.709469pt;}
.xf{left:94.991469pt;}
.xa{left:133.745331pt;}
.x5{left:165.421071pt;}
.x14{left:201.175433pt;}
.x6{left:288.639058pt;}
.x10{left:328.006799pt;}
.x9{left:401.755724pt;}
.x7{left:403.217326pt;}
.xd{left:408.191469pt;}
.xe{left:423.311466pt;}
.x11{left:424.816130pt;}
.x15{left:425.763753pt;}
.x8{left:430.686827pt;}
.xb{left:475.953328pt;}
.x12{left:526.124797pt;}
.x13{left:643.005460pt;}
.x1{left:647.307210pt;}
}




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