
    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_132a684fae8939eda361e12b.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_8ec8c1bd4c06ccca84777cd2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065581;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_65d1f2c0ff5c425dff50a372.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_65cbd470bedf8d36dacb6409.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_784ba8caf1b85797a703882f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5a3e25e367c5c8c76dc6eba0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.732000;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_bab9b55d4a951e78b8e09e37.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.146000;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_a382eefacaf566970cee5fa1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.871015;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_9e84ee5241ef02493cd97e6f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_21d73860dbd4cf95462ce79b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065581;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_1af2734566ee09a6e95618a7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.879000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_4684379576780ca9960876ca.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.693000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_136c1c22e497352fe1455f4e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d2bd1f74c89955f8559db5d6.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_56a6f15c91e48c3ba11bdbe7.woff2')format("woff");}.fff{font-family:fff;line-height:1.065581;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;}
.v4{vertical-align:-15.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:16.805991px;}
.v1{vertical-align:24.000000px;}
.ls3d{letter-spacing:-2.730000px;}
.ls4b{letter-spacing:-2.142000px;}
.ls21{letter-spacing:-1.860000px;}
.ls3c{letter-spacing:-1.836000px;}
.ls4a{letter-spacing:-1.785000px;}
.ls29{letter-spacing:-1.560000px;}
.ls61{letter-spacing:-1.440000px;}
.ls25{letter-spacing:-1.380000px;}
.ls26{letter-spacing:-1.320000px;}
.ls27{letter-spacing:-1.260000px;}
.ls1c{letter-spacing:-1.200000px;}
.ls1d{letter-spacing:-1.140000px;}
.ls3f{letter-spacing:-1.134000px;}
.ls43{letter-spacing:-1.080000px;}
.ls97{letter-spacing:-1.071000px;}
.ls28{letter-spacing:-1.020000px;}
.ls95{letter-spacing:-0.969000px;}
.ls23{letter-spacing:-0.960000px;}
.ls20{letter-spacing:-0.900000px;}
.ls2b{letter-spacing:-0.840000px;}
.ls94{letter-spacing:-0.816000px;}
.ls1f{letter-spacing:-0.780000px;}
.ls93{letter-spacing:-0.765000px;}
.ls1e{letter-spacing:-0.720000px;}
.ls96{letter-spacing:-0.663000px;}
.ls24{letter-spacing:-0.660000px;}
.ls3a{letter-spacing:-0.600000px;}
.ls8e{letter-spacing:-0.561000px;}
.ls39{letter-spacing:-0.540000px;}
.ls92{letter-spacing:-0.510000px;}
.ls1b{letter-spacing:-0.480000px;}
.ls8f{letter-spacing:-0.459000px;}
.ls42{letter-spacing:-0.420000px;}
.ls8c{letter-spacing:-0.408000px;}
.ls22{letter-spacing:-0.360000px;}
.ls88{letter-spacing:-0.357000px;}
.ls8a{letter-spacing:-0.306000px;}
.ls3b{letter-spacing:-0.300000px;}
.ls44{letter-spacing:-0.255000px;}
.ls2a{letter-spacing:-0.240000px;}
.ls73{letter-spacing:-0.204000px;}
.ls14{letter-spacing:-0.180000px;}
.ls8b{letter-spacing:-0.153000px;}
.ls13{letter-spacing:-0.120000px;}
.ls71{letter-spacing:-0.102000px;}
.ls12{letter-spacing:-0.060000px;}
.ls89{letter-spacing:-0.051000px;}
.lsd{letter-spacing:0.000000px;}
.ls49{letter-spacing:0.030000px;}
.ls7f{letter-spacing:0.051000px;}
.ls9{letter-spacing:0.060000px;}
.ls76{letter-spacing:0.102000px;}
.ls8{letter-spacing:0.119952px;}
.ls19{letter-spacing:0.120000px;}
.ls6e{letter-spacing:0.153000px;}
.ls45{letter-spacing:0.162000px;}
.ls78{letter-spacing:0.178500px;}
.lsb{letter-spacing:0.178791px;}
.ls2d{letter-spacing:0.180000px;}
.ls7c{letter-spacing:0.204000px;}
.ls91{letter-spacing:0.229500px;}
.ls3e{letter-spacing:0.235200px;}
.ls0{letter-spacing:0.240000px;}
.lsc{letter-spacing:0.255000px;}
.ls6a{letter-spacing:0.264000px;}
.ls77{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.300000px;}
.ls7b{letter-spacing:0.306000px;}
.ls85{letter-spacing:0.331500px;}
.ls74{letter-spacing:0.357000px;}
.lsa{letter-spacing:0.360000px;}
.ls41{letter-spacing:0.390000px;}
.ls75{letter-spacing:0.408000px;}
.ls38{letter-spacing:0.420000px;}
.ls6{letter-spacing:0.431960px;}
.ls7d{letter-spacing:0.459000px;}
.ls2c{letter-spacing:0.480000px;}
.ls6f{letter-spacing:0.510000px;}
.lsf{letter-spacing:0.540000px;}
.ls84{letter-spacing:0.561000px;}
.ls5{letter-spacing:0.564000px;}
.ls3{letter-spacing:0.576000px;}
.ls11{letter-spacing:0.600000px;}
.ls80{letter-spacing:0.612000px;}
.ls79{letter-spacing:0.637500px;}
.ls10{letter-spacing:0.660000px;}
.ls81{letter-spacing:0.663000px;}
.ls4{letter-spacing:0.678000px;}
.ls36{letter-spacing:0.690000px;}
.ls72{letter-spacing:0.714000px;}
.ls7{letter-spacing:0.720000px;}
.ls82{letter-spacing:0.765000px;}
.ls17{letter-spacing:0.780000px;}
.ls34{letter-spacing:0.810000px;}
.ls7a{letter-spacing:0.816000px;}
.ls2{letter-spacing:0.840000px;}
.ls6d{letter-spacing:0.867000px;}
.ls1a{letter-spacing:0.900000px;}
.ls90{letter-spacing:0.918000px;}
.ls65{letter-spacing:0.960000px;}
.ls69{letter-spacing:0.969000px;}
.ls47{letter-spacing:0.990000px;}
.ls15{letter-spacing:1.020000px;}
.ls37{letter-spacing:1.050000px;}
.ls6b{letter-spacing:1.071000px;}
.ls33{letter-spacing:1.080000px;}
.ls87{letter-spacing:1.096500px;}
.ls62{letter-spacing:1.110000px;}
.ls83{letter-spacing:1.122000px;}
.ls30{letter-spacing:1.140000px;}
.ls18{letter-spacing:1.200000px;}
.ls7e{letter-spacing:1.224000px;}
.ls66{letter-spacing:1.230000px;}
.ls32{letter-spacing:1.260000px;}
.ls70{letter-spacing:1.275000px;}
.ls31{letter-spacing:1.320000px;}
.ls67{letter-spacing:1.350000px;}
.ls35{letter-spacing:1.380000px;}
.ls46{letter-spacing:1.410000px;}
.ls6c{letter-spacing:1.428000px;}
.ls63{letter-spacing:1.440000px;}
.ls64{letter-spacing:1.499953px;}
.ls40{letter-spacing:1.500000px;}
.ls8d{letter-spacing:1.581000px;}
.ls16{letter-spacing:1.620000px;}
.ls68{letter-spacing:1.650000px;}
.ls5c{letter-spacing:1.679972px;}
.ls48{letter-spacing:1.680000px;}
.ls2f{letter-spacing:1.740000px;}
.ls51{letter-spacing:1.782000px;}
.ls5f{letter-spacing:1.799991px;}
.ls4e{letter-spacing:1.800000px;}
.ls5d{letter-spacing:1.860000px;}
.ls4c{letter-spacing:1.920000px;}
.ls4d{letter-spacing:1.980000px;}
.ls86{letter-spacing:1.989000px;}
.ls52{letter-spacing:2.040000px;}
.ls54{letter-spacing:2.100000px;}
.ls5a{letter-spacing:2.220000px;}
.ls50{letter-spacing:2.280000px;}
.ls60{letter-spacing:2.340000px;}
.ls4f{letter-spacing:2.460000px;}
.ls56{letter-spacing:2.520000px;}
.ls58{letter-spacing:2.580000px;}
.ls59{letter-spacing:2.640000px;}
.ls55{letter-spacing:2.700000px;}
.ls5e{letter-spacing:2.741973px;}
.ls53{letter-spacing:2.820000px;}
.ls57{letter-spacing:2.940000px;}
.ls2e{letter-spacing:3.060000px;}
.lse{letter-spacing:3.990000px;}
.ls5b{letter-spacing:4.200000px;}
.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;}
}
.ws6d{word-spacing:-17.460000px;}
.ws85{word-spacing:-16.680000px;}
.ws86{word-spacing:-16.140000px;}
.ws2{word-spacing:-15.789000px;}
.ws3b{word-spacing:-15.720000px;}
.ws20{word-spacing:-15.300000px;}
.ws1f{word-spacing:-15.000000px;}
.ws54{word-spacing:-13.920000px;}
.wsc9{word-spacing:-13.515000px;}
.wsa7{word-spacing:-13.056000px;}
.wsa5{word-spacing:-13.005000px;}
.ws6e{word-spacing:-12.750000px;}
.ws55{word-spacing:-12.474000px;}
.ws3{word-spacing:-12.420000px;}
.wsc7{word-spacing:-12.240000px;}
.ws6{word-spacing:-11.760000px;}
.wsc3{word-spacing:-11.730000px;}
.ws8{word-spacing:-11.520000px;}
.ws7{word-spacing:-11.400000px;}
.ws87{word-spacing:-10.761000px;}
.ws72{word-spacing:-10.740000px;}
.ws3d{word-spacing:-10.500000px;}
.ws1{word-spacing:-9.996000px;}
.ws4{word-spacing:-8.694000px;}
.ws3e{word-spacing:-7.770000px;}
.ws3f{word-spacing:-7.585200px;}
.ws10{word-spacing:-7.500000px;}
.ws52{word-spacing:-6.375000px;}
.wsa0{word-spacing:-2.448000px;}
.ws8e{word-spacing:-2.100000px;}
.ws9{word-spacing:-1.890000px;}
.ws78{word-spacing:-1.800000px;}
.ws8b{word-spacing:-1.740000px;}
.ws9f{word-spacing:-1.683000px;}
.ws89{word-spacing:-1.620000px;}
.ws4d{word-spacing:-1.560000px;}
.ws16{word-spacing:-1.500000px;}
.ws38{word-spacing:-1.440000px;}
.ws6a{word-spacing:-1.380000px;}
.ws9b{word-spacing:-1.377000px;}
.wsd6{word-spacing:-1.326000px;}
.ws2a{word-spacing:-1.320000px;}
.ws94{word-spacing:-1.275000px;}
.ws19{word-spacing:-1.260000px;}
.ws71{word-spacing:-1.200000px;}
.wsce{word-spacing:-1.173000px;}
.ws4f{word-spacing:-1.140000px;}
.ws13{word-spacing:-1.080000px;}
.wsa2{word-spacing:-1.071000px;}
.wsc6{word-spacing:-1.020000px;}
.ws98{word-spacing:-0.969000px;}
.ws83{word-spacing:-0.960000px;}
.wsd7{word-spacing:-0.918000px;}
.ws8a{word-spacing:-0.840000px;}
.wsb7{word-spacing:-0.816000px;}
.ws49{word-spacing:-0.780000px;}
.wsa3{word-spacing:-0.765000px;}
.wse{word-spacing:-0.720000px;}
.wsa4{word-spacing:-0.714000px;}
.wsb{word-spacing:-0.660000px;}
.ws1d{word-spacing:-0.612000px;}
.ws14{word-spacing:-0.600000px;}
.ws1a{word-spacing:-0.540000px;}
.ws32{word-spacing:-0.480000px;}
.ws57{word-spacing:-0.420000px;}
.wsae{word-spacing:-0.408000px;}
.ws63{word-spacing:-0.360000px;}
.ws9c{word-spacing:-0.357000px;}
.ws5{word-spacing:-0.300000px;}
.ws92{word-spacing:-0.264000px;}
.wsac{word-spacing:-0.255000px;}
.ws24{word-spacing:-0.240000px;}
.ws37{word-spacing:-0.180000px;}
.wsb5{word-spacing:-0.153000px;}
.ws31{word-spacing:-0.120000px;}
.wsd2{word-spacing:-0.102000px;}
.ws1e{word-spacing:-0.072000px;}
.ws77{word-spacing:-0.060000px;}
.wscf{word-spacing:-0.051000px;}
.ws0{word-spacing:-0.048000px;}
.wsa{word-spacing:0.000000px;}
.ws2d{word-spacing:0.060000px;}
.ws62{word-spacing:0.120000px;}
.wsc2{word-spacing:0.153000px;}
.ws4e{word-spacing:0.180000px;}
.ws2c{word-spacing:0.240000px;}
.ws7c{word-spacing:0.300000px;}
.wsc8{word-spacing:0.357000px;}
.ws43{word-spacing:0.360000px;}
.ws5f{word-spacing:0.420000px;}
.wsd0{word-spacing:0.459000px;}
.wsd{word-spacing:0.480000px;}
.wsb4{word-spacing:0.510000px;}
.ws45{word-spacing:0.540000px;}
.ws18{word-spacing:0.600000px;}
.wsbe{word-spacing:0.612000px;}
.ws44{word-spacing:0.720000px;}
.ws88{word-spacing:0.780000px;}
.ws12{word-spacing:0.840000px;}
.wsdc{word-spacing:0.867000px;}
.ws27{word-spacing:0.900000px;}
.wsba{word-spacing:0.918000px;}
.ws11{word-spacing:0.960000px;}
.wsa6{word-spacing:0.969000px;}
.ws23{word-spacing:1.020000px;}
.wsc4{word-spacing:1.071000px;}
.ws1b{word-spacing:1.080000px;}
.ws53{word-spacing:1.134000px;}
.ws5d{word-spacing:1.140000px;}
.wsa1{word-spacing:1.173000px;}
.ws25{word-spacing:1.200000px;}
.wsab{word-spacing:1.224000px;}
.ws17{word-spacing:1.260000px;}
.ws97{word-spacing:1.275000px;}
.ws82{word-spacing:1.320000px;}
.wsb8{word-spacing:1.326000px;}
.ws67{word-spacing:1.380000px;}
.wsb6{word-spacing:1.428000px;}
.ws58{word-spacing:1.440000px;}
.ws95{word-spacing:1.479000px;}
.wsc{word-spacing:1.500000px;}
.wsc1{word-spacing:1.530000px;}
.ws33{word-spacing:1.560000px;}
.wsd8{word-spacing:1.581000px;}
.ws90{word-spacing:1.620000px;}
.wsb0{word-spacing:1.632000px;}
.ws36{word-spacing:1.680000px;}
.wsdb{word-spacing:1.683000px;}
.wsc5{word-spacing:1.734000px;}
.ws15{word-spacing:1.740000px;}
.ws3c{word-spacing:1.785000px;}
.ws2f{word-spacing:1.800000px;}
.wsd1{word-spacing:1.836000px;}
.ws42{word-spacing:1.860000px;}
.wsb3{word-spacing:1.887000px;}
.wsf{word-spacing:1.920000px;}
.wscd{word-spacing:1.938000px;}
.wsb2{word-spacing:1.989000px;}
.ws5c{word-spacing:2.040000px;}
.ws46{word-spacing:2.100000px;}
.wsa9{word-spacing:2.142000px;}
.ws65{word-spacing:2.160000px;}
.wsd3{word-spacing:2.193000px;}
.ws50{word-spacing:2.220000px;}
.wsd5{word-spacing:2.244000px;}
.ws64{word-spacing:2.280000px;}
.ws35{word-spacing:2.340000px;}
.wscc{word-spacing:2.346000px;}
.ws96{word-spacing:2.397000px;}
.ws5a{word-spacing:2.400000px;}
.ws70{word-spacing:2.460000px;}
.ws81{word-spacing:2.520000px;}
.wsc0{word-spacing:2.550000px;}
.wsca{word-spacing:2.601000px;}
.ws5b{word-spacing:2.700000px;}
.ws51{word-spacing:2.754000px;}
.ws26{word-spacing:2.760000px;}
.wscb{word-spacing:2.805000px;}
.ws66{word-spacing:2.880000px;}
.wsa8{word-spacing:2.907000px;}
.ws22{word-spacing:2.940000px;}
.wsd4{word-spacing:2.958000px;}
.ws2b{word-spacing:3.000000px;}
.ws8f{word-spacing:3.060000px;}
.ws8d{word-spacing:3.120000px;}
.wsb1{word-spacing:3.162000px;}
.ws4b{word-spacing:3.180000px;}
.wsda{word-spacing:3.213000px;}
.ws7a{word-spacing:3.240000px;}
.ws28{word-spacing:3.300000px;}
.wsad{word-spacing:3.315000px;}
.ws41{word-spacing:3.360000px;}
.ws7d{word-spacing:3.420000px;}
.ws74{word-spacing:3.540000px;}
.wsbd{word-spacing:3.570000px;}
.wsb9{word-spacing:3.621000px;}
.ws30{word-spacing:3.780000px;}
.ws6f{word-spacing:3.840000px;}
.ws3a{word-spacing:3.900000px;}
.ws34{word-spacing:3.960000px;}
.ws93{word-spacing:3.978000px;}
.ws6c{word-spacing:4.080000px;}
.ws59{word-spacing:4.140000px;}
.ws29{word-spacing:4.200000px;}
.wsaf{word-spacing:4.233000px;}
.ws91{word-spacing:4.284000px;}
.wsaa{word-spacing:4.386000px;}
.ws48{word-spacing:4.500000px;}
.ws4c{word-spacing:4.620000px;}
.ws80{word-spacing:4.680000px;}
.ws84{word-spacing:4.860000px;}
.ws7b{word-spacing:4.980000px;}
.ws73{word-spacing:5.040000px;}
.ws21{word-spacing:5.100000px;}
.ws5e{word-spacing:5.160000px;}
.ws56{word-spacing:5.340000px;}
.wsbb{word-spacing:5.355000px;}
.ws6b{word-spacing:5.400000px;}
.ws39{word-spacing:5.640000px;}
.ws99{word-spacing:5.661000px;}
.ws9e{word-spacing:5.712000px;}
.ws4a{word-spacing:5.760000px;}
.ws2e{word-spacing:5.820000px;}
.wsbf{word-spacing:5.865000px;}
.ws75{word-spacing:6.000000px;}
.ws69{word-spacing:6.120000px;}
.ws79{word-spacing:6.273000px;}
.ws68{word-spacing:6.360000px;}
.ws8c{word-spacing:6.900000px;}
.ws7e{word-spacing:7.200000px;}
.ws9a{word-spacing:7.395000px;}
.ws7f{word-spacing:7.740000px;}
.wsbc{word-spacing:8.007000px;}
.wsd9{word-spacing:8.211000px;}
.ws9d{word-spacing:8.517000px;}
.ws47{word-spacing:8.940000px;}
.ws76{word-spacing:11.400000px;}
.wsdd{word-spacing:14.025000px;}
.wsde{word-spacing:18.258000px;}
.ws1c{word-spacing:72.267000px;}
.ws40{word-spacing:374.429991px;}
.ws61{word-spacing:559.725000px;}
.ws60{word-spacing:612.459000px;}
._52{margin-left:-20.196000px;}
._55{margin-left:-17.646000px;}
._b{margin-left:-16.575000px;}
._4d{margin-left:-14.433000px;}
._34{margin-left:-11.796000px;}
._32{margin-left:-10.680000px;}
._7{margin-left:-8.928000px;}
._8{margin-left:-7.872000px;}
._9{margin-left:-6.420000px;}
._3{margin-left:-5.358000px;}
._5{margin-left:-3.612000px;}
._0{margin-left:-1.632000px;}
._1{width:1.056000px;}
._f{width:2.082000px;}
._33{width:3.516000px;}
._23{width:5.472000px;}
._46{width:6.906000px;}
._45{width:8.118000px;}
._6{width:9.642000px;}
._4{width:12.900000px;}
._47{width:14.586000px;}
._a{width:15.599990px;}
._53{width:16.626000px;}
._c{width:18.360000px;}
._51{width:20.017500px;}
._50{width:21.267000px;}
._4e{width:22.644000px;}
._4c{width:23.751000px;}
._4a{width:24.771000px;}
._54{width:25.806000px;}
._49{width:27.225000px;}
._4b{width:29.337000px;}
._48{width:30.396000px;}
._56{width:37.944000px;}
._2{width:39.387602px;}
._4f{width:40.473000px;}
._d{width:54.621000px;}
._1a{width:93.953994px;}
._10{width:96.845994px;}
._13{width:108.738000px;}
._15{width:124.482000px;}
._17{width:128.052000px;}
._14{width:140.177994px;}
._1c{width:143.130000px;}
._20{width:165.359994px;}
._21{width:179.844000px;}
._2c{width:184.751991px;}
._18{width:198.576000px;}
._1d{width:200.844000px;}
._3f{width:214.710000px;}
._1e{width:224.700000px;}
._41{width:227.961000px;}
._12{width:254.646000px;}
._43{width:260.508000px;}
._11{width:274.464000px;}
._36{width:278.510979px;}
._2e{width:285.206991px;}
._1b{width:291.978000px;}
._22{width:315.442125px;}
._3b{width:325.941000px;}
._38{width:329.510979px;}
._31{width:336.905991px;}
._3e{width:339.192000px;}
._3c{width:342.260979px;}
._37{width:347.616000px;}
._2d{width:351.644991px;}
._40{width:355.010979px;}
._39{width:373.116000px;}
._42{width:385.866000px;}
._1f{width:388.415991px;}
._44{width:398.616000px;}
._30{width:453.506991px;}
._3d{width:456.450000px;}
._3a{width:490.977000px;}
._35{width:502.248000px;}
._24{width:618.629991px;}
._2f{width:649.790991px;}
._27{width:656.828991px;}
._28{width:683.756991px;}
._16{width:687.792000px;}
._29{width:689.927991px;}
._26{width:736.556991px;}
._25{width:761.369991px;}
._2a{width:797.282991px;}
._2b{width:825.689991px;}
._19{width:953.862000px;}
._e{width:1748.228922px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsa{font-size:29.400000px;}
.fs7{font-size:35.699999px;}
.fs6{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs3{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:68.547300px;}
.y1{bottom:68.829002px;}
.y26{bottom:112.938300px;}
.y14b{bottom:114.735260px;}
.y139{bottom:114.735306px;}
.yea{bottom:120.858597px;}
.yb0{bottom:121.594194px;}
.yff{bottom:121.948960px;}
.y15c{bottom:122.369556px;}
.y49{bottom:123.883667px;}
.y74{bottom:131.383667px;}
.y1d7{bottom:131.857810px;}
.y25{bottom:133.032303px;}
.y14a{bottom:133.485260px;}
.yca{bottom:133.485306px;}
.y15b{bottom:137.363556px;}
.ye9{bottom:139.652097px;}
.yfe{bottom:140.742460px;}
.y48{bottom:142.633667px;}
.y196{bottom:142.720777px;}
.y1d6{bottom:146.851810px;}
.yba{bottom:149.727152px;}
.y73{bottom:150.133667px;}
.y149{bottom:152.235260px;}
.yc9{bottom:152.235306px;}
.y15a{bottom:152.357556px;}
.y195{bottom:157.714777px;}
.y24{bottom:158.032794px;}
.ye8{bottom:158.369097px;}
.yfd{bottom:159.459460px;}
.y47{bottom:161.383667px;}
.y1d5{bottom:161.845810px;}
.yb9{bottom:162.472647px;}
.y159{bottom:167.351556px;}
.y72{bottom:168.883667px;}
.y148{bottom:170.985260px;}
.yc8{bottom:170.985306px;}
.y194{bottom:172.708777px;}
.y23{bottom:173.026794px;}
.y1d4{bottom:176.839810px;}
.ye7{bottom:177.086097px;}
.yfc{bottom:178.176460px;}
.yb8{bottom:179.577147px;}
.y46{bottom:180.133667px;}
.y158{bottom:182.345556px;}
.y112{bottom:186.932543px;}
.y71{bottom:187.633667px;}
.y193{bottom:187.702777px;}
.y147{bottom:189.735260px;}
.yc7{bottom:189.735306px;}
.y1d3{bottom:191.833810px;}
.yb7{bottom:192.324147px;}
.ye6{bottom:195.803097px;}
.yfb{bottom:196.893460px;}
.y45{bottom:198.883667px;}
.y111{bottom:201.926543px;}
.y192{bottom:202.696777px;}
.yb6{bottom:205.071147px;}
.y70{bottom:206.383667px;}
.y1d2{bottom:206.827810px;}
.y146{bottom:208.485260px;}
.yc6{bottom:208.485306px;}
.ye5{bottom:214.520097px;}
.yfa{bottom:215.610460px;}
.y110{bottom:216.920543px;}
.y44{bottom:217.633667px;}
.y191{bottom:217.690777px;}
.y157{bottom:219.792306px;}
.y1d1{bottom:221.821810px;}
.yb5{bottom:222.091647px;}
.y6f{bottom:225.133667px;}
.y145{bottom:227.235260px;}
.yc5{bottom:227.235306px;}
.y10f{bottom:231.914543px;}
.y190{bottom:232.684777px;}
.ye4{bottom:233.237097px;}
.yf9{bottom:234.327460px;}
.y43{bottom:236.383667px;}
.y1d0{bottom:236.815810px;}
.yb4{bottom:239.122647px;}
.y6e{bottom:243.883667px;}
.y144{bottom:245.985260px;}
.y138{bottom:245.985306px;}
.y10e{bottom:246.908543px;}
.y18f{bottom:247.678777px;}
.y156{bottom:249.793056px;}
.y1cf{bottom:251.809810px;}
.yb3{bottom:251.869647px;}
.ye3{bottom:251.954097px;}
.yf8{bottom:253.044460px;}
.yf2{bottom:253.144798px;}
.y42{bottom:255.133667px;}
.y10d{bottom:261.902543px;}
.y6d{bottom:262.633667px;}
.y18e{bottom:262.672777px;}
.y143{bottom:264.735260px;}
.yc4{bottom:264.735306px;}
.y155{bottom:264.787056px;}
.y1ce{bottom:266.803810px;}
.yf1{bottom:268.138798px;}
.ye2{bottom:270.671097px;}
.yf7{bottom:271.761460px;}
.y41{bottom:273.883667px;}
.y10c{bottom:276.896543px;}
.y18d{bottom:277.666777px;}
.yb2{bottom:278.277147px;}
.y6c{bottom:281.383667px;}
.y1cd{bottom:281.797810px;}
.yf0{bottom:283.132798px;}
.y142{bottom:283.485260px;}
.y137{bottom:283.485306px;}
.y154{bottom:287.265306px;}
.ye1{bottom:289.388097px;}
.yf6{bottom:290.478460px;}
.yb1{bottom:291.024147px;}
.y10b{bottom:291.890543px;}
.y40{bottom:292.633667px;}
.y18c{bottom:292.660777px;}
.y1cc{bottom:296.791810px;}
.yef{bottom:298.126798px;}
.y6b{bottom:300.133667px;}
.y141{bottom:302.235260px;}
.yc3{bottom:302.235306px;}
.y153{bottom:302.259306px;}
.y10a{bottom:306.884543px;}
.y18b{bottom:307.654777px;}
.ye0{bottom:308.105097px;}
.yf5{bottom:309.195460px;}
.y3f{bottom:311.383667px;}
.y1cb{bottom:311.785810px;}
.yee{bottom:313.120798px;}
.yaf{bottom:314.833194px;}
.y152{bottom:317.253306px;}
.y6a{bottom:318.883667px;}
.y140{bottom:320.985260px;}
.yc2{bottom:320.985306px;}
.y109{bottom:321.878543px;}
.y18a{bottom:322.648777px;}
.y1ca{bottom:326.779810px;}
.ydf{bottom:326.822097px;}
.yed{bottom:328.114798px;}
.yae{bottom:329.827194px;}
.y3e{bottom:330.133667px;}
.y151{bottom:332.247306px;}
.y108{bottom:336.872543px;}
.yf4{bottom:337.283710px;}
.y69{bottom:337.633667px;}
.y189{bottom:337.642777px;}
.y13f{bottom:339.735260px;}
.yc1{bottom:339.735306px;}
.y1c9{bottom:341.773810px;}
.yec{bottom:343.108798px;}
.yde{bottom:345.539097px;}
.y150{bottom:347.241306px;}
.y3d{bottom:348.883667px;}
.yf3{bottom:352.277710px;}
.y188{bottom:352.636777px;}
.y68{bottom:356.383667px;}
.y136{bottom:356.690548px;}
.y1c8{bottom:356.767810px;}
.yeb{bottom:358.102798px;}
.y13e{bottom:358.485260px;}
.yc0{bottom:358.485306px;}
.y14f{bottom:362.235306px;}
.ydd{bottom:364.256097px;}
.y187{bottom:367.630777px;}
.y3c{bottom:367.633667px;}
.y135{bottom:371.684548px;}
.y1c7{bottom:371.761810px;}
.y67{bottom:375.133667px;}
.yad{bottom:377.235260px;}
.y96{bottom:377.235306px;}
.y186{bottom:382.624777px;}
.ydc{bottom:382.973097px;}
.y22{bottom:384.961395px;}
.y3b{bottom:386.383667px;}
.y134{bottom:386.678548px;}
.y1c6{bottom:386.755810px;}
.y14e{bottom:392.235306px;}
.y66{bottom:393.883667px;}
.yac{bottom:395.985260px;}
.y95{bottom:395.985306px;}
.y185{bottom:397.618777px;}
.ydb{bottom:397.967097px;}
.y203{bottom:401.500823px;}
.y133{bottom:401.672548px;}
.y231{bottom:401.679324px;}
.y1c5{bottom:401.749810px;}
.y3a{bottom:405.133667px;}
.y184{bottom:412.612777px;}
.y65{bottom:412.633667px;}
.yda{bottom:412.961097px;}
.yab{bottom:414.735260px;}
.y94{bottom:414.735306px;}
.y202{bottom:416.494823px;}
.y230{bottom:416.673324px;}
.y1c4{bottom:416.743810px;}
.y21{bottom:422.461395px;}
.y39{bottom:423.883667px;}
.y14d{bottom:425.991306px;}
.y183{bottom:427.606777px;}
.y64{bottom:431.383667px;}
.y201{bottom:431.488823px;}
.y1c3{bottom:431.737810px;}
.yaa{bottom:433.485260px;}
.y93{bottom:433.485306px;}
.y14c{bottom:440.985306px;}
.yd9{bottom:441.049347px;}
.y20{bottom:441.211395px;}
.y182{bottom:442.600777px;}
.y38{bottom:442.633667px;}
.y200{bottom:446.482823px;}
.y1c2{bottom:446.731810px;}
.y22f{bottom:446.763323px;}
.y63{bottom:450.133667px;}
.y130{bottom:452.055313px;}
.ya9{bottom:452.235260px;}
.y92{bottom:452.235306px;}
.y181{bottom:457.594777px;}
.y1f{bottom:459.961395px;}
.y37{bottom:461.383667px;}
.y1ff{bottom:461.476823px;}
.y1c1{bottom:461.725810px;}
.y22e{bottom:461.757323px;}
.yd8{bottom:468.783920px;}
.y62{bottom:468.883667px;}
.y132{bottom:469.464298px;}
.y12f{bottom:470.805313px;}
.ya8{bottom:470.985260px;}
.y91{bottom:470.985306px;}
.y180{bottom:472.588777px;}
.y1fe{bottom:476.470823px;}
.y1c0{bottom:476.719810px;}
.y22d{bottom:476.751323px;}
.y1e{bottom:478.711395px;}
.y36{bottom:480.133667px;}
.y131{bottom:484.458298px;}
.y17f{bottom:487.582777px;}
.y61{bottom:487.633667px;}
.ya7{bottom:489.735260px;}
.y90{bottom:489.735306px;}
.y1fd{bottom:491.464823px;}
.y1bf{bottom:491.713810px;}
.y22c{bottom:491.745323px;}
.y1d{bottom:497.461395px;}
.y35{bottom:498.883667px;}
.y17e{bottom:502.576777px;}
.y1fc{bottom:506.458823px;}
.y1be{bottom:506.707810px;}
.y22b{bottom:506.739323px;}
.y12e{bottom:508.305313px;}
.ya6{bottom:508.485260px;}
.y8f{bottom:508.485306px;}
.y1c{bottom:516.211395px;}
.y17d{bottom:517.570777px;}
.y34{bottom:517.633667px;}
.y1fb{bottom:521.452823px;}
.y1bd{bottom:521.701810px;}
.y22a{bottom:521.733323px;}
.y60{bottom:525.133667px;}
.ya5{bottom:527.235260px;}
.y8e{bottom:527.235306px;}
.y17c{bottom:532.564777px;}
.y1b{bottom:534.961395px;}
.y33{bottom:536.383667px;}
.y1fa{bottom:536.446823px;}
.y1bc{bottom:536.695810px;}
.y229{bottom:536.727323px;}
.y12d{bottom:545.805260px;}
.ya4{bottom:545.985260px;}
.y8d{bottom:545.985306px;}
.y17b{bottom:547.558777px;}
.y1f9{bottom:551.440823px;}
.y1bb{bottom:551.689810px;}
.y228{bottom:551.721323px;}
.y1a{bottom:553.711395px;}
.y32{bottom:555.133667px;}
.y17a{bottom:562.552777px;}
.y5f{bottom:562.633667px;}
.y12c{bottom:564.555260px;}
.ya3{bottom:564.735260px;}
.ybf{bottom:564.735306px;}
.y1f8{bottom:566.434823px;}
.y1ba{bottom:566.683810px;}
.y227{bottom:566.715323px;}
.y19{bottom:572.461395px;}
.y31{bottom:573.883667px;}
.y179{bottom:577.546777px;}
.y1f7{bottom:581.428823px;}
.y1b9{bottom:581.677810px;}
.y226{bottom:581.709323px;}
.y12b{bottom:583.305260px;}
.ya2{bottom:583.485260px;}
.y8c{bottom:583.485306px;}
.y107{bottom:585.081917px;}
.y18{bottom:591.211395px;}
.y178{bottom:592.540777px;}
.y30{bottom:592.633667px;}
.y1f6{bottom:596.422823px;}
.y1b8{bottom:596.671810px;}
.y225{bottom:596.703323px;}
.y106{bottom:600.075917px;}
.y12a{bottom:602.055260px;}
.ya1{bottom:602.235260px;}
.ybe{bottom:602.235306px;}
.y177{bottom:607.534777px;}
.y17{bottom:609.961395px;}
.y2f{bottom:611.383667px;}
.y1f5{bottom:611.416823px;}
.y1b7{bottom:611.665810px;}
.y224{bottom:611.697323px;}
.y105{bottom:615.069917px;}
.y5e{bottom:618.883667px;}
.y129{bottom:620.805260px;}
.ya0{bottom:620.985260px;}
.y8b{bottom:620.985306px;}
.y176{bottom:622.528777px;}
.y1f4{bottom:626.410823px;}
.y1b6{bottom:626.659810px;}
.y223{bottom:626.691323px;}
.y16{bottom:628.711395px;}
.y104{bottom:630.063917px;}
.y2e{bottom:630.133667px;}
.y175{bottom:637.522777px;}
.y5d{bottom:637.633667px;}
.y128{bottom:639.555260px;}
.y9f{bottom:639.735260px;}
.y8a{bottom:639.735306px;}
.y1f3{bottom:641.404823px;}
.y1b5{bottom:641.653810px;}
.y222{bottom:641.685323px;}
.y103{bottom:645.057917px;}
.y15{bottom:647.461395px;}
.y2d{bottom:648.883667px;}
.y174{bottom:652.516777px;}
.y5c{bottom:656.383667px;}
.y1f2{bottom:656.398823px;}
.y1b4{bottom:656.647810px;}
.y221{bottom:656.679323px;}
.y127{bottom:658.305260px;}
.y9e{bottom:658.485260px;}
.y89{bottom:658.485306px;}
.y102{bottom:660.051917px;}
.y14{bottom:666.211395px;}
.y173{bottom:667.510777px;}
.y2c{bottom:667.633667px;}
.y1f1{bottom:671.392823px;}
.y1b3{bottom:671.641810px;}
.y220{bottom:671.673323px;}
.y101{bottom:675.045917px;}
.y5b{bottom:675.133667px;}
.y126{bottom:677.055260px;}
.y9d{bottom:677.235260px;}
.ybd{bottom:677.235306px;}
.y172{bottom:682.504777px;}
.y13{bottom:684.961395px;}
.y2b{bottom:686.383667px;}
.y1f0{bottom:686.386823px;}
.y1b2{bottom:686.635810px;}
.y21f{bottom:686.667323px;}
.y100{bottom:690.039917px;}
.y5a{bottom:693.883667px;}
.y125{bottom:695.805260px;}
.y9c{bottom:695.985260px;}
.y88{bottom:695.985306px;}
.y171{bottom:697.498777px;}
.y1ef{bottom:701.380823px;}
.y1b1{bottom:701.629810px;}
.y21e{bottom:701.661323px;}
.y12{bottom:703.711395px;}
.y2a{bottom:705.133667px;}
.y170{bottom:712.492777px;}
.y59{bottom:712.633667px;}
.y124{bottom:714.555260px;}
.y9b{bottom:714.735260px;}
.y13d{bottom:714.735306px;}
.y1ee{bottom:716.374823px;}
.y1b0{bottom:716.623810px;}
.y21d{bottom:716.655323px;}
.y11{bottom:722.461395px;}
.y29{bottom:723.883667px;}
.y16f{bottom:727.486777px;}
.y1ed{bottom:731.368823px;}
.y58{bottom:731.383667px;}
.y1af{bottom:731.617810px;}
.y21c{bottom:731.649323px;}
.y123{bottom:733.305260px;}
.y9a{bottom:733.485260px;}
.yd7{bottom:733.485306px;}
.ybc{bottom:733.491306px;}
.y10{bottom:741.211395px;}
.y16e{bottom:742.480777px;}
.y28{bottom:742.633667px;}
.y1ec{bottom:746.362823px;}
.y1ae{bottom:746.611810px;}
.y21b{bottom:746.643323px;}
.y57{bottom:750.133667px;}
.y122{bottom:752.055260px;}
.y87{bottom:752.235260px;}
.ybb{bottom:752.235306px;}
.y16d{bottom:757.474777px;}
.yf{bottom:759.961395px;}
.y1eb{bottom:761.356823px;}
.y1ad{bottom:761.605810px;}
.y21a{bottom:761.637323px;}
.y121{bottom:770.805260px;}
.y86{bottom:770.985260px;}
.y13c{bottom:770.985306px;}
.y1ea{bottom:776.350823px;}
.y1ac{bottom:776.599810px;}
.y219{bottom:776.631323px;}
.ye{bottom:778.711395px;}
.y120{bottom:789.555260px;}
.y85{bottom:789.735260px;}
.y13b{bottom:789.735306px;}
.y16c{bottom:791.224823px;}
.y1e9{bottom:791.344823px;}
.y1ab{bottom:791.593810px;}
.y218{bottom:791.625323px;}
.yd{bottom:797.461395px;}
.y1e8{bottom:806.338823px;}
.y1aa{bottom:806.587810px;}
.y217{bottom:806.619323px;}
.y56{bottom:808.230187px;}
.y84{bottom:808.485260px;}
.y13a{bottom:808.485306px;}
.yc{bottom:816.211395px;}
.y1e7{bottom:821.332823px;}
.y1a9{bottom:821.581810px;}
.y216{bottom:821.613323px;}
.y11f{bottom:827.055260px;}
.y83{bottom:827.235260px;}
.yd6{bottom:827.235306px;}
.y55{bottom:832.125187px;}
.yb{bottom:834.961395px;}
.y1e6{bottom:836.326823px;}
.y1a8{bottom:836.575810px;}
.y215{bottom:836.607323px;}
.y11e{bottom:845.805260px;}
.y82{bottom:845.985260px;}
.yd5{bottom:845.985306px;}
.y54{bottom:850.875187px;}
.y1e5{bottom:851.320823px;}
.y1a7{bottom:851.569810px;}
.y214{bottom:851.601323px;}
.y81{bottom:864.735260px;}
.yd4{bottom:864.735306px;}
.y16b{bottom:866.302073px;}
.y1e4{bottom:866.314823px;}
.y1a6{bottom:866.563810px;}
.y213{bottom:866.595323px;}
.y53{bottom:869.625187px;}
.ya{bottom:879.144153px;}
.y16a{bottom:881.296073px;}
.y1e3{bottom:881.308823px;}
.y1a5{bottom:881.557810px;}
.y212{bottom:881.589323px;}
.y11d{bottom:883.305260px;}
.y80{bottom:883.485260px;}
.yd3{bottom:883.485306px;}
.y52{bottom:888.375187px;}
.y9{bottom:894.138153px;}
.y169{bottom:896.290073px;}
.y1e2{bottom:896.302823px;}
.y1a4{bottom:896.551810px;}
.y211{bottom:896.583323px;}
.y11c{bottom:902.055260px;}
.y7f{bottom:902.235260px;}
.yd2{bottom:902.235306px;}
.y168{bottom:911.284073px;}
.y1e1{bottom:911.296823px;}
.y1a3{bottom:911.545810px;}
.y210{bottom:911.577323px;}
.y51{bottom:911.655187px;}
.y11b{bottom:920.805260px;}
.y7e{bottom:920.985260px;}
.yd1{bottom:920.985306px;}
.y167{bottom:926.278073px;}
.y1e0{bottom:926.290823px;}
.y1a2{bottom:926.539810px;}
.y20f{bottom:926.571323px;}
.y50{bottom:935.565187px;}
.y8{bottom:936.738190px;}
.y11a{bottom:939.555260px;}
.y7d{bottom:939.735260px;}
.yd0{bottom:939.735306px;}
.y166{bottom:941.272073px;}
.y1df{bottom:941.284823px;}
.y1a1{bottom:941.533810px;}
.y20e{bottom:941.565323px;}
.y4f{bottom:954.315187px;}
.y165{bottom:956.266073px;}
.y1de{bottom:956.278823px;}
.y1a0{bottom:956.527810px;}
.y20d{bottom:956.559323px;}
.y119{bottom:958.305260px;}
.y7c{bottom:958.485260px;}
.ycf{bottom:958.485306px;}
.y164{bottom:971.260073px;}
.y1dd{bottom:971.272823px;}
.y19f{bottom:971.521810px;}
.y20c{bottom:971.553323px;}
.y118{bottom:977.055260px;}
.y7b{bottom:977.235260px;}
.yce{bottom:977.235306px;}
.y4e{bottom:981.135187px;}
.y7{bottom:981.424622px;}
.y163{bottom:986.254073px;}
.y1dc{bottom:986.266823px;}
.y19e{bottom:986.515810px;}
.y20b{bottom:986.547323px;}
.y117{bottom:995.805260px;}
.y7a{bottom:995.985260px;}
.ycd{bottom:995.985306px;}
.y4d{bottom:999.885187px;}
.y162{bottom:1001.248073px;}
.y1db{bottom:1001.260823px;}
.y19d{bottom:1001.509810px;}
.y20a{bottom:1001.541323px;}
.y6{bottom:1008.424622px;}
.y116{bottom:1014.555260px;}
.y79{bottom:1014.735260px;}
.ycc{bottom:1014.735306px;}
.y161{bottom:1016.242073px;}
.y1da{bottom:1016.254823px;}
.y19c{bottom:1016.503810px;}
.y209{bottom:1016.535323px;}
.y4c{bottom:1018.635187px;}
.y160{bottom:1031.236073px;}
.y1d9{bottom:1031.248823px;}
.y19b{bottom:1031.497810px;}
.y208{bottom:1031.529323px;}
.y115{bottom:1033.305260px;}
.y78{bottom:1033.485260px;}
.ycb{bottom:1033.485306px;}
.y4b{bottom:1040.415187px;}
.y1d8{bottom:1046.242823px;}
.y19a{bottom:1046.491810px;}
.y207{bottom:1046.523323px;}
.y114{bottom:1052.055260px;}
.y77{bottom:1052.235260px;}
.y99{bottom:1052.235306px;}
.y15f{bottom:1061.236823px;}
.y199{bottom:1061.485810px;}
.y206{bottom:1061.517323px;}
.y4a{bottom:1063.785187px;}
.y76{bottom:1070.985260px;}
.y98{bottom:1070.985306px;}
.y5{bottom:1076.132080px;}
.y15e{bottom:1076.230823px;}
.y198{bottom:1076.479810px;}
.y205{bottom:1076.511323px;}
.y113{bottom:1089.555260px;}
.y75{bottom:1089.735260px;}
.y97{bottom:1089.735306px;}
.y15d{bottom:1091.224823px;}
.y197{bottom:1091.473810px;}
.y204{bottom:1091.505323px;}
.y4{bottom:1109.586556px;}
.y3{bottom:1126.582306px;}
.y27{bottom:1127.482361px;}
.hb{height:33.129599px;}
.h2{height:33.840000px;}
.h11{height:38.976000px;}
.hd{height:39.780000px;}
.he{height:40.680000px;}
.hf{height:41.700000px;}
.h8{height:43.260000px;}
.h12{height:44.089191px;}
.h4{height:44.676000px;}
.ha{height:47.328000px;}
.hc{height:51.912000px;}
.h13{height:53.160000px;}
.h3{height:54.862258px;}
.h5{height:55.461000px;}
.h9{height:55.680000px;}
.h10{height:59.004000px;}
.h7{height:64.866000px;}
.h6{height:85.056000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:76.535402px;}
.x6{left:78.746400px;}
.x4{left:85.181849px;}
.x7{left:93.575397px;}
.x5{left:97.796100px;}
.x14{left:102.048152px;}
.x8{left:126.269405px;}
.x10{left:267.873894px;}
.xe{left:415.590156px;}
.x11{left:439.131894px;}
.x9{left:459.212540px;}
.xa{left:476.222540px;}
.x15{left:484.790398px;}
.xb{left:495.589651px;}
.x12{left:571.400389px;}
.xc{left:602.521651px;}
.xf{left:712.312788px;}
.x13{left:714.570139px;}
.x1{left:728.220612px;}
.xd{left:745.132649px;}
.x2{left:755.489868px;}
@media print{
.v2{vertical-align:-18.133343pt;}
.v4{vertical-align:-13.333333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:14.938659pt;}
.v1{vertical-align:21.333333pt;}
.ls3d{letter-spacing:-2.426667pt;}
.ls4b{letter-spacing:-1.904000pt;}
.ls21{letter-spacing:-1.653333pt;}
.ls3c{letter-spacing:-1.632000pt;}
.ls4a{letter-spacing:-1.586667pt;}
.ls29{letter-spacing:-1.386667pt;}
.ls61{letter-spacing:-1.280000pt;}
.ls25{letter-spacing:-1.226667pt;}
.ls26{letter-spacing:-1.173333pt;}
.ls27{letter-spacing:-1.120000pt;}
.ls1c{letter-spacing:-1.066667pt;}
.ls1d{letter-spacing:-1.013333pt;}
.ls3f{letter-spacing:-1.008000pt;}
.ls43{letter-spacing:-0.960000pt;}
.ls97{letter-spacing:-0.952000pt;}
.ls28{letter-spacing:-0.906667pt;}
.ls95{letter-spacing:-0.861333pt;}
.ls23{letter-spacing:-0.853333pt;}
.ls20{letter-spacing:-0.800000pt;}
.ls2b{letter-spacing:-0.746667pt;}
.ls94{letter-spacing:-0.725333pt;}
.ls1f{letter-spacing:-0.693333pt;}
.ls93{letter-spacing:-0.680000pt;}
.ls1e{letter-spacing:-0.640000pt;}
.ls96{letter-spacing:-0.589333pt;}
.ls24{letter-spacing:-0.586667pt;}
.ls3a{letter-spacing:-0.533333pt;}
.ls8e{letter-spacing:-0.498667pt;}
.ls39{letter-spacing:-0.480000pt;}
.ls92{letter-spacing:-0.453333pt;}
.ls1b{letter-spacing:-0.426667pt;}
.ls8f{letter-spacing:-0.408000pt;}
.ls42{letter-spacing:-0.373333pt;}
.ls8c{letter-spacing:-0.362667pt;}
.ls22{letter-spacing:-0.320000pt;}
.ls88{letter-spacing:-0.317333pt;}
.ls8a{letter-spacing:-0.272000pt;}
.ls3b{letter-spacing:-0.266667pt;}
.ls44{letter-spacing:-0.226667pt;}
.ls2a{letter-spacing:-0.213333pt;}
.ls73{letter-spacing:-0.181333pt;}
.ls14{letter-spacing:-0.160000pt;}
.ls8b{letter-spacing:-0.136000pt;}
.ls13{letter-spacing:-0.106667pt;}
.ls71{letter-spacing:-0.090667pt;}
.ls12{letter-spacing:-0.053333pt;}
.ls89{letter-spacing:-0.045333pt;}
.lsd{letter-spacing:0.000000pt;}
.ls49{letter-spacing:0.026667pt;}
.ls7f{letter-spacing:0.045333pt;}
.ls9{letter-spacing:0.053333pt;}
.ls76{letter-spacing:0.090667pt;}
.ls8{letter-spacing:0.106624pt;}
.ls19{letter-spacing:0.106667pt;}
.ls6e{letter-spacing:0.136000pt;}
.ls45{letter-spacing:0.144000pt;}
.ls78{letter-spacing:0.158667pt;}
.lsb{letter-spacing:0.158926pt;}
.ls2d{letter-spacing:0.160000pt;}
.ls7c{letter-spacing:0.181333pt;}
.ls91{letter-spacing:0.204000pt;}
.ls3e{letter-spacing:0.209067pt;}
.ls0{letter-spacing:0.213333pt;}
.lsc{letter-spacing:0.226667pt;}
.ls6a{letter-spacing:0.234667pt;}
.ls77{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.266667pt;}
.ls7b{letter-spacing:0.272000pt;}
.ls85{letter-spacing:0.294667pt;}
.ls74{letter-spacing:0.317333pt;}
.lsa{letter-spacing:0.320000pt;}
.ls41{letter-spacing:0.346667pt;}
.ls75{letter-spacing:0.362667pt;}
.ls38{letter-spacing:0.373333pt;}
.ls6{letter-spacing:0.383964pt;}
.ls7d{letter-spacing:0.408000pt;}
.ls2c{letter-spacing:0.426667pt;}
.ls6f{letter-spacing:0.453333pt;}
.lsf{letter-spacing:0.480000pt;}
.ls84{letter-spacing:0.498667pt;}
.ls5{letter-spacing:0.501333pt;}
.ls3{letter-spacing:0.512000pt;}
.ls11{letter-spacing:0.533333pt;}
.ls80{letter-spacing:0.544000pt;}
.ls79{letter-spacing:0.566667pt;}
.ls10{letter-spacing:0.586667pt;}
.ls81{letter-spacing:0.589333pt;}
.ls4{letter-spacing:0.602667pt;}
.ls36{letter-spacing:0.613333pt;}
.ls72{letter-spacing:0.634667pt;}
.ls7{letter-spacing:0.640000pt;}
.ls82{letter-spacing:0.680000pt;}
.ls17{letter-spacing:0.693333pt;}
.ls34{letter-spacing:0.720000pt;}
.ls7a{letter-spacing:0.725333pt;}
.ls2{letter-spacing:0.746667pt;}
.ls6d{letter-spacing:0.770667pt;}
.ls1a{letter-spacing:0.800000pt;}
.ls90{letter-spacing:0.816000pt;}
.ls65{letter-spacing:0.853333pt;}
.ls69{letter-spacing:0.861333pt;}
.ls47{letter-spacing:0.880000pt;}
.ls15{letter-spacing:0.906667pt;}
.ls37{letter-spacing:0.933333pt;}
.ls6b{letter-spacing:0.952000pt;}
.ls33{letter-spacing:0.960000pt;}
.ls87{letter-spacing:0.974667pt;}
.ls62{letter-spacing:0.986667pt;}
.ls83{letter-spacing:0.997333pt;}
.ls30{letter-spacing:1.013333pt;}
.ls18{letter-spacing:1.066667pt;}
.ls7e{letter-spacing:1.088000pt;}
.ls66{letter-spacing:1.093333pt;}
.ls32{letter-spacing:1.120000pt;}
.ls70{letter-spacing:1.133333pt;}
.ls31{letter-spacing:1.173333pt;}
.ls67{letter-spacing:1.200000pt;}
.ls35{letter-spacing:1.226667pt;}
.ls46{letter-spacing:1.253333pt;}
.ls6c{letter-spacing:1.269333pt;}
.ls63{letter-spacing:1.280000pt;}
.ls64{letter-spacing:1.333292pt;}
.ls40{letter-spacing:1.333333pt;}
.ls8d{letter-spacing:1.405333pt;}
.ls16{letter-spacing:1.440000pt;}
.ls68{letter-spacing:1.466667pt;}
.ls5c{letter-spacing:1.493308pt;}
.ls48{letter-spacing:1.493333pt;}
.ls2f{letter-spacing:1.546667pt;}
.ls51{letter-spacing:1.584000pt;}
.ls5f{letter-spacing:1.599992pt;}
.ls4e{letter-spacing:1.600000pt;}
.ls5d{letter-spacing:1.653333pt;}
.ls4c{letter-spacing:1.706667pt;}
.ls4d{letter-spacing:1.760000pt;}
.ls86{letter-spacing:1.768000pt;}
.ls52{letter-spacing:1.813333pt;}
.ls54{letter-spacing:1.866667pt;}
.ls5a{letter-spacing:1.973333pt;}
.ls50{letter-spacing:2.026667pt;}
.ls60{letter-spacing:2.080000pt;}
.ls4f{letter-spacing:2.186667pt;}
.ls56{letter-spacing:2.240000pt;}
.ls58{letter-spacing:2.293333pt;}
.ls59{letter-spacing:2.346667pt;}
.ls55{letter-spacing:2.400000pt;}
.ls5e{letter-spacing:2.437309pt;}
.ls53{letter-spacing:2.506667pt;}
.ls57{letter-spacing:2.613333pt;}
.ls2e{letter-spacing:2.720000pt;}
.lse{letter-spacing:3.546667pt;}
.ls5b{letter-spacing:3.733333pt;}
.ws6d{word-spacing:-15.520000pt;}
.ws85{word-spacing:-14.826667pt;}
.ws86{word-spacing:-14.346667pt;}
.ws2{word-spacing:-14.034667pt;}
.ws3b{word-spacing:-13.973333pt;}
.ws20{word-spacing:-13.600000pt;}
.ws1f{word-spacing:-13.333333pt;}
.ws54{word-spacing:-12.373333pt;}
.wsc9{word-spacing:-12.013333pt;}
.wsa7{word-spacing:-11.605333pt;}
.wsa5{word-spacing:-11.560000pt;}
.ws6e{word-spacing:-11.333333pt;}
.ws55{word-spacing:-11.088000pt;}
.ws3{word-spacing:-11.040000pt;}
.wsc7{word-spacing:-10.880000pt;}
.ws6{word-spacing:-10.453333pt;}
.wsc3{word-spacing:-10.426667pt;}
.ws8{word-spacing:-10.240000pt;}
.ws7{word-spacing:-10.133333pt;}
.ws87{word-spacing:-9.565333pt;}
.ws72{word-spacing:-9.546667pt;}
.ws3d{word-spacing:-9.333333pt;}
.ws1{word-spacing:-8.885333pt;}
.ws4{word-spacing:-7.728000pt;}
.ws3e{word-spacing:-6.906667pt;}
.ws3f{word-spacing:-6.742400pt;}
.ws10{word-spacing:-6.666667pt;}
.ws52{word-spacing:-5.666667pt;}
.wsa0{word-spacing:-2.176000pt;}
.ws8e{word-spacing:-1.866667pt;}
.ws9{word-spacing:-1.680000pt;}
.ws78{word-spacing:-1.600000pt;}
.ws8b{word-spacing:-1.546667pt;}
.ws9f{word-spacing:-1.496000pt;}
.ws89{word-spacing:-1.440000pt;}
.ws4d{word-spacing:-1.386667pt;}
.ws16{word-spacing:-1.333333pt;}
.ws38{word-spacing:-1.280000pt;}
.ws6a{word-spacing:-1.226667pt;}
.ws9b{word-spacing:-1.224000pt;}
.wsd6{word-spacing:-1.178667pt;}
.ws2a{word-spacing:-1.173333pt;}
.ws94{word-spacing:-1.133333pt;}
.ws19{word-spacing:-1.120000pt;}
.ws71{word-spacing:-1.066667pt;}
.wsce{word-spacing:-1.042667pt;}
.ws4f{word-spacing:-1.013333pt;}
.ws13{word-spacing:-0.960000pt;}
.wsa2{word-spacing:-0.952000pt;}
.wsc6{word-spacing:-0.906667pt;}
.ws98{word-spacing:-0.861333pt;}
.ws83{word-spacing:-0.853333pt;}
.wsd7{word-spacing:-0.816000pt;}
.ws8a{word-spacing:-0.746667pt;}
.wsb7{word-spacing:-0.725333pt;}
.ws49{word-spacing:-0.693333pt;}
.wsa3{word-spacing:-0.680000pt;}
.wse{word-spacing:-0.640000pt;}
.wsa4{word-spacing:-0.634667pt;}
.wsb{word-spacing:-0.586667pt;}
.ws1d{word-spacing:-0.544000pt;}
.ws14{word-spacing:-0.533333pt;}
.ws1a{word-spacing:-0.480000pt;}
.ws32{word-spacing:-0.426667pt;}
.ws57{word-spacing:-0.373333pt;}
.wsae{word-spacing:-0.362667pt;}
.ws63{word-spacing:-0.320000pt;}
.ws9c{word-spacing:-0.317333pt;}
.ws5{word-spacing:-0.266667pt;}
.ws92{word-spacing:-0.234667pt;}
.wsac{word-spacing:-0.226667pt;}
.ws24{word-spacing:-0.213333pt;}
.ws37{word-spacing:-0.160000pt;}
.wsb5{word-spacing:-0.136000pt;}
.ws31{word-spacing:-0.106667pt;}
.wsd2{word-spacing:-0.090667pt;}
.ws1e{word-spacing:-0.064000pt;}
.ws77{word-spacing:-0.053333pt;}
.wscf{word-spacing:-0.045333pt;}
.ws0{word-spacing:-0.042667pt;}
.wsa{word-spacing:0.000000pt;}
.ws2d{word-spacing:0.053333pt;}
.ws62{word-spacing:0.106667pt;}
.wsc2{word-spacing:0.136000pt;}
.ws4e{word-spacing:0.160000pt;}
.ws2c{word-spacing:0.213333pt;}
.ws7c{word-spacing:0.266667pt;}
.wsc8{word-spacing:0.317333pt;}
.ws43{word-spacing:0.320000pt;}
.ws5f{word-spacing:0.373333pt;}
.wsd0{word-spacing:0.408000pt;}
.wsd{word-spacing:0.426667pt;}
.wsb4{word-spacing:0.453333pt;}
.ws45{word-spacing:0.480000pt;}
.ws18{word-spacing:0.533333pt;}
.wsbe{word-spacing:0.544000pt;}
.ws44{word-spacing:0.640000pt;}
.ws88{word-spacing:0.693333pt;}
.ws12{word-spacing:0.746667pt;}
.wsdc{word-spacing:0.770667pt;}
.ws27{word-spacing:0.800000pt;}
.wsba{word-spacing:0.816000pt;}
.ws11{word-spacing:0.853333pt;}
.wsa6{word-spacing:0.861333pt;}
.ws23{word-spacing:0.906667pt;}
.wsc4{word-spacing:0.952000pt;}
.ws1b{word-spacing:0.960000pt;}
.ws53{word-spacing:1.008000pt;}
.ws5d{word-spacing:1.013333pt;}
.wsa1{word-spacing:1.042667pt;}
.ws25{word-spacing:1.066667pt;}
.wsab{word-spacing:1.088000pt;}
.ws17{word-spacing:1.120000pt;}
.ws97{word-spacing:1.133333pt;}
.ws82{word-spacing:1.173333pt;}
.wsb8{word-spacing:1.178667pt;}
.ws67{word-spacing:1.226667pt;}
.wsb6{word-spacing:1.269333pt;}
.ws58{word-spacing:1.280000pt;}
.ws95{word-spacing:1.314667pt;}
.wsc{word-spacing:1.333333pt;}
.wsc1{word-spacing:1.360000pt;}
.ws33{word-spacing:1.386667pt;}
.wsd8{word-spacing:1.405333pt;}
.ws90{word-spacing:1.440000pt;}
.wsb0{word-spacing:1.450667pt;}
.ws36{word-spacing:1.493333pt;}
.wsdb{word-spacing:1.496000pt;}
.wsc5{word-spacing:1.541333pt;}
.ws15{word-spacing:1.546667pt;}
.ws3c{word-spacing:1.586667pt;}
.ws2f{word-spacing:1.600000pt;}
.wsd1{word-spacing:1.632000pt;}
.ws42{word-spacing:1.653333pt;}
.wsb3{word-spacing:1.677333pt;}
.wsf{word-spacing:1.706667pt;}
.wscd{word-spacing:1.722667pt;}
.wsb2{word-spacing:1.768000pt;}
.ws5c{word-spacing:1.813333pt;}
.ws46{word-spacing:1.866667pt;}
.wsa9{word-spacing:1.904000pt;}
.ws65{word-spacing:1.920000pt;}
.wsd3{word-spacing:1.949333pt;}
.ws50{word-spacing:1.973333pt;}
.wsd5{word-spacing:1.994667pt;}
.ws64{word-spacing:2.026667pt;}
.ws35{word-spacing:2.080000pt;}
.wscc{word-spacing:2.085333pt;}
.ws96{word-spacing:2.130667pt;}
.ws5a{word-spacing:2.133333pt;}
.ws70{word-spacing:2.186667pt;}
.ws81{word-spacing:2.240000pt;}
.wsc0{word-spacing:2.266667pt;}
.wsca{word-spacing:2.312000pt;}
.ws5b{word-spacing:2.400000pt;}
.ws51{word-spacing:2.448000pt;}
.ws26{word-spacing:2.453333pt;}
.wscb{word-spacing:2.493333pt;}
.ws66{word-spacing:2.560000pt;}
.wsa8{word-spacing:2.584000pt;}
.ws22{word-spacing:2.613333pt;}
.wsd4{word-spacing:2.629333pt;}
.ws2b{word-spacing:2.666667pt;}
.ws8f{word-spacing:2.720000pt;}
.ws8d{word-spacing:2.773333pt;}
.wsb1{word-spacing:2.810667pt;}
.ws4b{word-spacing:2.826667pt;}
.wsda{word-spacing:2.856000pt;}
.ws7a{word-spacing:2.880000pt;}
.ws28{word-spacing:2.933333pt;}
.wsad{word-spacing:2.946667pt;}
.ws41{word-spacing:2.986667pt;}
.ws7d{word-spacing:3.040000pt;}
.ws74{word-spacing:3.146667pt;}
.wsbd{word-spacing:3.173333pt;}
.wsb9{word-spacing:3.218667pt;}
.ws30{word-spacing:3.360000pt;}
.ws6f{word-spacing:3.413333pt;}
.ws3a{word-spacing:3.466667pt;}
.ws34{word-spacing:3.520000pt;}
.ws93{word-spacing:3.536000pt;}
.ws6c{word-spacing:3.626667pt;}
.ws59{word-spacing:3.680000pt;}
.ws29{word-spacing:3.733333pt;}
.wsaf{word-spacing:3.762667pt;}
.ws91{word-spacing:3.808000pt;}
.wsaa{word-spacing:3.898667pt;}
.ws48{word-spacing:4.000000pt;}
.ws4c{word-spacing:4.106667pt;}
.ws80{word-spacing:4.160000pt;}
.ws84{word-spacing:4.320000pt;}
.ws7b{word-spacing:4.426667pt;}
.ws73{word-spacing:4.480000pt;}
.ws21{word-spacing:4.533333pt;}
.ws5e{word-spacing:4.586667pt;}
.ws56{word-spacing:4.746667pt;}
.wsbb{word-spacing:4.760000pt;}
.ws6b{word-spacing:4.800000pt;}
.ws39{word-spacing:5.013333pt;}
.ws99{word-spacing:5.032000pt;}
.ws9e{word-spacing:5.077333pt;}
.ws4a{word-spacing:5.120000pt;}
.ws2e{word-spacing:5.173333pt;}
.wsbf{word-spacing:5.213333pt;}
.ws75{word-spacing:5.333333pt;}
.ws69{word-spacing:5.440000pt;}
.ws79{word-spacing:5.576000pt;}
.ws68{word-spacing:5.653333pt;}
.ws8c{word-spacing:6.133333pt;}
.ws7e{word-spacing:6.400000pt;}
.ws9a{word-spacing:6.573333pt;}
.ws7f{word-spacing:6.880000pt;}
.wsbc{word-spacing:7.117333pt;}
.wsd9{word-spacing:7.298667pt;}
.ws9d{word-spacing:7.570667pt;}
.ws47{word-spacing:7.946667pt;}
.ws76{word-spacing:10.133333pt;}
.wsdd{word-spacing:12.466667pt;}
.wsde{word-spacing:16.229333pt;}
.ws1c{word-spacing:64.237333pt;}
.ws40{word-spacing:332.826658pt;}
.ws61{word-spacing:497.533333pt;}
.ws60{word-spacing:544.408000pt;}
._52{margin-left:-17.952000pt;}
._55{margin-left:-15.685333pt;}
._b{margin-left:-14.733333pt;}
._4d{margin-left:-12.829333pt;}
._34{margin-left:-10.485333pt;}
._32{margin-left:-9.493333pt;}
._7{margin-left:-7.936000pt;}
._8{margin-left:-6.997333pt;}
._9{margin-left:-5.706667pt;}
._3{margin-left:-4.762667pt;}
._5{margin-left:-3.210667pt;}
._0{margin-left:-1.450667pt;}
._1{width:0.938667pt;}
._f{width:1.850667pt;}
._33{width:3.125333pt;}
._23{width:4.864000pt;}
._46{width:6.138667pt;}
._45{width:7.216000pt;}
._6{width:8.570667pt;}
._4{width:11.466667pt;}
._47{width:12.965333pt;}
._a{width:13.866658pt;}
._53{width:14.778667pt;}
._c{width:16.320000pt;}
._51{width:17.793333pt;}
._50{width:18.904000pt;}
._4e{width:20.128000pt;}
._4c{width:21.112000pt;}
._4a{width:22.018667pt;}
._54{width:22.938667pt;}
._49{width:24.200000pt;}
._4b{width:26.077333pt;}
._48{width:27.018667pt;}
._56{width:33.728000pt;}
._2{width:35.011201pt;}
._4f{width:35.976000pt;}
._d{width:48.552000pt;}
._1a{width:83.514662pt;}
._10{width:86.085328pt;}
._13{width:96.656000pt;}
._15{width:110.650667pt;}
._17{width:113.824000pt;}
._14{width:124.602662pt;}
._1c{width:127.226667pt;}
._20{width:146.986662pt;}
._21{width:159.861333pt;}
._2c{width:164.223992pt;}
._18{width:176.512000pt;}
._1d{width:178.528000pt;}
._3f{width:190.853333pt;}
._1e{width:199.733333pt;}
._41{width:202.632000pt;}
._12{width:226.352000pt;}
._43{width:231.562667pt;}
._11{width:243.968000pt;}
._36{width:247.565315pt;}
._2e{width:253.517326pt;}
._1b{width:259.536000pt;}
._22{width:280.393000pt;}
._3b{width:289.725333pt;}
._38{width:292.898648pt;}
._31{width:299.471992pt;}
._3e{width:301.504000pt;}
._3c{width:304.231982pt;}
._37{width:308.992000pt;}
._2d{width:312.573326pt;}
._40{width:315.565315pt;}
._39{width:331.658667pt;}
._42{width:342.992000pt;}
._1f{width:345.258658pt;}
._44{width:354.325333pt;}
._30{width:403.117326pt;}
._3d{width:405.733333pt;}
._3a{width:436.424000pt;}
._35{width:446.442667pt;}
._24{width:549.893326pt;}
._2f{width:577.591992pt;}
._27{width:583.847992pt;}
._28{width:607.783992pt;}
._16{width:611.370667pt;}
._29{width:613.269326pt;}
._26{width:654.717326pt;}
._25{width:676.773326pt;}
._2a{width:708.695992pt;}
._2b{width:733.946659pt;}
._19{width:847.877333pt;}
._e{width:1553.981264pt;}
.fsa{font-size:26.133333pt;}
.fs7{font-size:31.733332pt;}
.fs6{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs3{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:60.930933pt;}
.y1{bottom:61.181335pt;}
.y26{bottom:100.389600pt;}
.y14b{bottom:101.986898pt;}
.y139{bottom:101.986938pt;}
.yea{bottom:107.429864pt;}
.yb0{bottom:108.083728pt;}
.yff{bottom:108.399076pt;}
.y15c{bottom:108.772938pt;}
.y49{bottom:110.118815pt;}
.y74{bottom:116.785482pt;}
.y1d7{bottom:117.206942pt;}
.y25{bottom:118.250936pt;}
.y14a{bottom:118.653564pt;}
.yca{bottom:118.653605pt;}
.y15b{bottom:122.100938pt;}
.ye9{bottom:124.135197pt;}
.yfe{bottom:125.104409pt;}
.y48{bottom:126.785482pt;}
.y196{bottom:126.862913pt;}
.y1d6{bottom:130.534942pt;}
.yba{bottom:133.090801pt;}
.y73{bottom:133.452148pt;}
.y149{bottom:135.320231pt;}
.yc9{bottom:135.320272pt;}
.y15a{bottom:135.428938pt;}
.y195{bottom:140.190913pt;}
.y24{bottom:140.473595pt;}
.ye8{bottom:140.772531pt;}
.yfd{bottom:141.741742pt;}
.y47{bottom:143.452148pt;}
.y1d5{bottom:143.862942pt;}
.yb9{bottom:144.420131pt;}
.y159{bottom:148.756938pt;}
.y72{bottom:150.118815pt;}
.y148{bottom:151.986898pt;}
.yc8{bottom:151.986938pt;}
.y194{bottom:153.518913pt;}
.y23{bottom:153.801595pt;}
.y1d4{bottom:157.190942pt;}
.ye7{bottom:157.409864pt;}
.yfc{bottom:158.379076pt;}
.yb8{bottom:159.624131pt;}
.y46{bottom:160.118815pt;}
.y158{bottom:162.084938pt;}
.y112{bottom:166.162261pt;}
.y71{bottom:166.785482pt;}
.y193{bottom:166.846913pt;}
.y147{bottom:168.653564pt;}
.yc7{bottom:168.653605pt;}
.y1d3{bottom:170.518942pt;}
.yb7{bottom:170.954797pt;}
.ye6{bottom:174.047197pt;}
.yfb{bottom:175.016409pt;}
.y45{bottom:176.785482pt;}
.y111{bottom:179.490261pt;}
.y192{bottom:180.174913pt;}
.yb6{bottom:182.285464pt;}
.y70{bottom:183.452148pt;}
.y1d2{bottom:183.846942pt;}
.y146{bottom:185.320231pt;}
.yc6{bottom:185.320272pt;}
.ye5{bottom:190.684531pt;}
.yfa{bottom:191.653742pt;}
.y110{bottom:192.818261pt;}
.y44{bottom:193.452148pt;}
.y191{bottom:193.502913pt;}
.y157{bottom:195.370938pt;}
.y1d1{bottom:197.174942pt;}
.yb5{bottom:197.414797pt;}
.y6f{bottom:200.118815pt;}
.y145{bottom:201.986898pt;}
.yc5{bottom:201.986938pt;}
.y10f{bottom:206.146261pt;}
.y190{bottom:206.830913pt;}
.ye4{bottom:207.321864pt;}
.yf9{bottom:208.291076pt;}
.y43{bottom:210.118815pt;}
.y1d0{bottom:210.502942pt;}
.yb4{bottom:212.553464pt;}
.y6e{bottom:216.785482pt;}
.y144{bottom:218.653564pt;}
.y138{bottom:218.653605pt;}
.y10e{bottom:219.474261pt;}
.y18f{bottom:220.158913pt;}
.y156{bottom:222.038272pt;}
.y1cf{bottom:223.830942pt;}
.yb3{bottom:223.884131pt;}
.ye3{bottom:223.959197pt;}
.yf8{bottom:224.928409pt;}
.yf2{bottom:225.017599pt;}
.y42{bottom:226.785482pt;}
.y10d{bottom:232.802261pt;}
.y6d{bottom:233.452148pt;}
.y18e{bottom:233.486913pt;}
.y143{bottom:235.320231pt;}
.yc4{bottom:235.320272pt;}
.y155{bottom:235.366272pt;}
.y1ce{bottom:237.158942pt;}
.yf1{bottom:238.345599pt;}
.ye2{bottom:240.596531pt;}
.yf7{bottom:241.565742pt;}
.y41{bottom:243.452148pt;}
.y10c{bottom:246.130261pt;}
.y18d{bottom:246.814913pt;}
.yb2{bottom:247.357464pt;}
.y6c{bottom:250.118815pt;}
.y1cd{bottom:250.486942pt;}
.yf0{bottom:251.673599pt;}
.y142{bottom:251.986898pt;}
.y137{bottom:251.986938pt;}
.y154{bottom:255.346938pt;}
.ye1{bottom:257.233864pt;}
.yf6{bottom:258.203076pt;}
.yb1{bottom:258.688131pt;}
.y10b{bottom:259.458261pt;}
.y40{bottom:260.118815pt;}
.y18c{bottom:260.142913pt;}
.y1cc{bottom:263.814942pt;}
.yef{bottom:265.001599pt;}
.y6b{bottom:266.785482pt;}
.y141{bottom:268.653564pt;}
.yc3{bottom:268.653605pt;}
.y153{bottom:268.674938pt;}
.y10a{bottom:272.786261pt;}
.y18b{bottom:273.470913pt;}
.ye0{bottom:273.871197pt;}
.yf5{bottom:274.840409pt;}
.y3f{bottom:276.785482pt;}
.y1cb{bottom:277.142942pt;}
.yee{bottom:278.329599pt;}
.yaf{bottom:279.851728pt;}
.y152{bottom:282.002938pt;}
.y6a{bottom:283.452148pt;}
.y140{bottom:285.320231pt;}
.yc2{bottom:285.320272pt;}
.y109{bottom:286.114261pt;}
.y18a{bottom:286.798913pt;}
.y1ca{bottom:290.470942pt;}
.ydf{bottom:290.508531pt;}
.yed{bottom:291.657599pt;}
.yae{bottom:293.179728pt;}
.y3e{bottom:293.452148pt;}
.y151{bottom:295.330938pt;}
.y108{bottom:299.442261pt;}
.yf4{bottom:299.807742pt;}
.y69{bottom:300.118815pt;}
.y189{bottom:300.126913pt;}
.y13f{bottom:301.986898pt;}
.yc1{bottom:301.986938pt;}
.y1c9{bottom:303.798942pt;}
.yec{bottom:304.985599pt;}
.yde{bottom:307.145864pt;}
.y150{bottom:308.658938pt;}
.y3d{bottom:310.118815pt;}
.yf3{bottom:313.135742pt;}
.y188{bottom:313.454913pt;}
.y68{bottom:316.785482pt;}
.y136{bottom:317.058265pt;}
.y1c8{bottom:317.126942pt;}
.yeb{bottom:318.313599pt;}
.y13e{bottom:318.653564pt;}
.yc0{bottom:318.653605pt;}
.y14f{bottom:321.986938pt;}
.ydd{bottom:323.783197pt;}
.y187{bottom:326.782913pt;}
.y3c{bottom:326.785482pt;}
.y135{bottom:330.386265pt;}
.y1c7{bottom:330.454942pt;}
.y67{bottom:333.452148pt;}
.yad{bottom:335.320231pt;}
.y96{bottom:335.320272pt;}
.y186{bottom:340.110913pt;}
.ydc{bottom:340.420531pt;}
.y22{bottom:342.187907pt;}
.y3b{bottom:343.452148pt;}
.y134{bottom:343.714265pt;}
.y1c6{bottom:343.782942pt;}
.y14e{bottom:348.653605pt;}
.y66{bottom:350.118815pt;}
.yac{bottom:351.986898pt;}
.y95{bottom:351.986938pt;}
.y185{bottom:353.438913pt;}
.ydb{bottom:353.748531pt;}
.y203{bottom:356.889620pt;}
.y133{bottom:357.042265pt;}
.y231{bottom:357.048288pt;}
.y1c5{bottom:357.110942pt;}
.y3a{bottom:360.118815pt;}
.y184{bottom:366.766913pt;}
.y65{bottom:366.785482pt;}
.yda{bottom:367.076531pt;}
.yab{bottom:368.653564pt;}
.y94{bottom:368.653605pt;}
.y202{bottom:370.217620pt;}
.y230{bottom:370.376288pt;}
.y1c4{bottom:370.438942pt;}
.y21{bottom:375.521240pt;}
.y39{bottom:376.785482pt;}
.y14d{bottom:378.658938pt;}
.y183{bottom:380.094913pt;}
.y64{bottom:383.452148pt;}
.y201{bottom:383.545620pt;}
.y1c3{bottom:383.766942pt;}
.yaa{bottom:385.320231pt;}
.y93{bottom:385.320272pt;}
.y14c{bottom:391.986938pt;}
.yd9{bottom:392.043864pt;}
.y20{bottom:392.187907pt;}
.y182{bottom:393.422913pt;}
.y38{bottom:393.452148pt;}
.y200{bottom:396.873620pt;}
.y1c2{bottom:397.094942pt;}
.y22f{bottom:397.122954pt;}
.y63{bottom:400.118815pt;}
.y130{bottom:401.826945pt;}
.ya9{bottom:401.986898pt;}
.y92{bottom:401.986938pt;}
.y181{bottom:406.750913pt;}
.y1f{bottom:408.854574pt;}
.y37{bottom:410.118815pt;}
.y1ff{bottom:410.201620pt;}
.y1c1{bottom:410.422942pt;}
.y22e{bottom:410.450954pt;}
.yd8{bottom:416.696818pt;}
.y62{bottom:416.785482pt;}
.y132{bottom:417.301598pt;}
.y12f{bottom:418.493612pt;}
.ya8{bottom:418.653564pt;}
.y91{bottom:418.653605pt;}
.y180{bottom:420.078913pt;}
.y1fe{bottom:423.529620pt;}
.y1c0{bottom:423.750942pt;}
.y22d{bottom:423.778954pt;}
.y1e{bottom:425.521240pt;}
.y36{bottom:426.785482pt;}
.y131{bottom:430.629598pt;}
.y17f{bottom:433.406913pt;}
.y61{bottom:433.452148pt;}
.ya7{bottom:435.320231pt;}
.y90{bottom:435.320272pt;}
.y1fd{bottom:436.857620pt;}
.y1bf{bottom:437.078942pt;}
.y22c{bottom:437.106954pt;}
.y1d{bottom:442.187907pt;}
.y35{bottom:443.452148pt;}
.y17e{bottom:446.734913pt;}
.y1fc{bottom:450.185620pt;}
.y1be{bottom:450.406942pt;}
.y22b{bottom:450.434954pt;}
.y12e{bottom:451.826945pt;}
.ya6{bottom:451.986898pt;}
.y8f{bottom:451.986938pt;}
.y1c{bottom:458.854574pt;}
.y17d{bottom:460.062913pt;}
.y34{bottom:460.118815pt;}
.y1fb{bottom:463.513620pt;}
.y1bd{bottom:463.734942pt;}
.y22a{bottom:463.762954pt;}
.y60{bottom:466.785482pt;}
.ya5{bottom:468.653564pt;}
.y8e{bottom:468.653605pt;}
.y17c{bottom:473.390913pt;}
.y1b{bottom:475.521240pt;}
.y33{bottom:476.785482pt;}
.y1fa{bottom:476.841620pt;}
.y1bc{bottom:477.062942pt;}
.y229{bottom:477.090954pt;}
.y12d{bottom:485.160231pt;}
.ya4{bottom:485.320231pt;}
.y8d{bottom:485.320272pt;}
.y17b{bottom:486.718913pt;}
.y1f9{bottom:490.169620pt;}
.y1bb{bottom:490.390942pt;}
.y228{bottom:490.418954pt;}
.y1a{bottom:492.187907pt;}
.y32{bottom:493.452148pt;}
.y17a{bottom:500.046913pt;}
.y5f{bottom:500.118815pt;}
.y12c{bottom:501.826898pt;}
.ya3{bottom:501.986898pt;}
.ybf{bottom:501.986938pt;}
.y1f8{bottom:503.497620pt;}
.y1ba{bottom:503.718942pt;}
.y227{bottom:503.746954pt;}
.y19{bottom:508.854574pt;}
.y31{bottom:510.118815pt;}
.y179{bottom:513.374913pt;}
.y1f7{bottom:516.825620pt;}
.y1b9{bottom:517.046942pt;}
.y226{bottom:517.074954pt;}
.y12b{bottom:518.493564pt;}
.ya2{bottom:518.653564pt;}
.y8c{bottom:518.653605pt;}
.y107{bottom:520.072815pt;}
.y18{bottom:525.521240pt;}
.y178{bottom:526.702913pt;}
.y30{bottom:526.785482pt;}
.y1f6{bottom:530.153620pt;}
.y1b8{bottom:530.374942pt;}
.y225{bottom:530.402954pt;}
.y106{bottom:533.400815pt;}
.y12a{bottom:535.160231pt;}
.ya1{bottom:535.320231pt;}
.ybe{bottom:535.320272pt;}
.y177{bottom:540.030913pt;}
.y17{bottom:542.187907pt;}
.y2f{bottom:543.452148pt;}
.y1f5{bottom:543.481620pt;}
.y1b7{bottom:543.702942pt;}
.y224{bottom:543.730954pt;}
.y105{bottom:546.728815pt;}
.y5e{bottom:550.118815pt;}
.y129{bottom:551.826898pt;}
.ya0{bottom:551.986898pt;}
.y8b{bottom:551.986938pt;}
.y176{bottom:553.358913pt;}
.y1f4{bottom:556.809620pt;}
.y1b6{bottom:557.030942pt;}
.y223{bottom:557.058954pt;}
.y16{bottom:558.854574pt;}
.y104{bottom:560.056815pt;}
.y2e{bottom:560.118815pt;}
.y175{bottom:566.686913pt;}
.y5d{bottom:566.785482pt;}
.y128{bottom:568.493564pt;}
.y9f{bottom:568.653564pt;}
.y8a{bottom:568.653605pt;}
.y1f3{bottom:570.137620pt;}
.y1b5{bottom:570.358942pt;}
.y222{bottom:570.386954pt;}
.y103{bottom:573.384815pt;}
.y15{bottom:575.521240pt;}
.y2d{bottom:576.785482pt;}
.y174{bottom:580.014913pt;}
.y5c{bottom:583.452148pt;}
.y1f2{bottom:583.465620pt;}
.y1b4{bottom:583.686942pt;}
.y221{bottom:583.714954pt;}
.y127{bottom:585.160231pt;}
.y9e{bottom:585.320231pt;}
.y89{bottom:585.320272pt;}
.y102{bottom:586.712815pt;}
.y14{bottom:592.187907pt;}
.y173{bottom:593.342913pt;}
.y2c{bottom:593.452148pt;}
.y1f1{bottom:596.793620pt;}
.y1b3{bottom:597.014942pt;}
.y220{bottom:597.042954pt;}
.y101{bottom:600.040815pt;}
.y5b{bottom:600.118815pt;}
.y126{bottom:601.826898pt;}
.y9d{bottom:601.986898pt;}
.ybd{bottom:601.986938pt;}
.y172{bottom:606.670913pt;}
.y13{bottom:608.854574pt;}
.y2b{bottom:610.118815pt;}
.y1f0{bottom:610.121620pt;}
.y1b2{bottom:610.342942pt;}
.y21f{bottom:610.370954pt;}
.y100{bottom:613.368815pt;}
.y5a{bottom:616.785482pt;}
.y125{bottom:618.493564pt;}
.y9c{bottom:618.653564pt;}
.y88{bottom:618.653605pt;}
.y171{bottom:619.998913pt;}
.y1ef{bottom:623.449620pt;}
.y1b1{bottom:623.670942pt;}
.y21e{bottom:623.698954pt;}
.y12{bottom:625.521240pt;}
.y2a{bottom:626.785482pt;}
.y170{bottom:633.326913pt;}
.y59{bottom:633.452148pt;}
.y124{bottom:635.160231pt;}
.y9b{bottom:635.320231pt;}
.y13d{bottom:635.320272pt;}
.y1ee{bottom:636.777620pt;}
.y1b0{bottom:636.998942pt;}
.y21d{bottom:637.026954pt;}
.y11{bottom:642.187907pt;}
.y29{bottom:643.452148pt;}
.y16f{bottom:646.654913pt;}
.y1ed{bottom:650.105620pt;}
.y58{bottom:650.118815pt;}
.y1af{bottom:650.326942pt;}
.y21c{bottom:650.354954pt;}
.y123{bottom:651.826898pt;}
.y9a{bottom:651.986898pt;}
.yd7{bottom:651.986938pt;}
.ybc{bottom:651.992272pt;}
.y10{bottom:658.854574pt;}
.y16e{bottom:659.982913pt;}
.y28{bottom:660.118815pt;}
.y1ec{bottom:663.433620pt;}
.y1ae{bottom:663.654942pt;}
.y21b{bottom:663.682954pt;}
.y57{bottom:666.785482pt;}
.y122{bottom:668.493564pt;}
.y87{bottom:668.653564pt;}
.ybb{bottom:668.653605pt;}
.y16d{bottom:673.310913pt;}
.yf{bottom:675.521240pt;}
.y1eb{bottom:676.761620pt;}
.y1ad{bottom:676.982942pt;}
.y21a{bottom:677.010954pt;}
.y121{bottom:685.160231pt;}
.y86{bottom:685.320231pt;}
.y13c{bottom:685.320272pt;}
.y1ea{bottom:690.089620pt;}
.y1ac{bottom:690.310942pt;}
.y219{bottom:690.338954pt;}
.ye{bottom:692.187907pt;}
.y120{bottom:701.826898pt;}
.y85{bottom:701.986898pt;}
.y13b{bottom:701.986938pt;}
.y16c{bottom:703.310954pt;}
.y1e9{bottom:703.417620pt;}
.y1ab{bottom:703.638942pt;}
.y218{bottom:703.666954pt;}
.yd{bottom:708.854574pt;}
.y1e8{bottom:716.745620pt;}
.y1aa{bottom:716.966942pt;}
.y217{bottom:716.994954pt;}
.y56{bottom:718.426833pt;}
.y84{bottom:718.653564pt;}
.y13a{bottom:718.653605pt;}
.yc{bottom:725.521240pt;}
.y1e7{bottom:730.073620pt;}
.y1a9{bottom:730.294942pt;}
.y216{bottom:730.322954pt;}
.y11f{bottom:735.160231pt;}
.y83{bottom:735.320231pt;}
.yd6{bottom:735.320272pt;}
.y55{bottom:739.666833pt;}
.yb{bottom:742.187907pt;}
.y1e6{bottom:743.401620pt;}
.y1a8{bottom:743.622942pt;}
.y215{bottom:743.650954pt;}
.y11e{bottom:751.826898pt;}
.y82{bottom:751.986898pt;}
.yd5{bottom:751.986938pt;}
.y54{bottom:756.333499pt;}
.y1e5{bottom:756.729620pt;}
.y1a7{bottom:756.950942pt;}
.y214{bottom:756.978954pt;}
.y81{bottom:768.653564pt;}
.yd4{bottom:768.653605pt;}
.y16b{bottom:770.046287pt;}
.y1e4{bottom:770.057620pt;}
.y1a6{bottom:770.278942pt;}
.y213{bottom:770.306954pt;}
.y53{bottom:773.000166pt;}
.ya{bottom:781.461469pt;}
.y16a{bottom:783.374287pt;}
.y1e3{bottom:783.385620pt;}
.y1a5{bottom:783.606942pt;}
.y212{bottom:783.634954pt;}
.y11d{bottom:785.160231pt;}
.y80{bottom:785.320231pt;}
.yd3{bottom:785.320272pt;}
.y52{bottom:789.666833pt;}
.y9{bottom:794.789469pt;}
.y169{bottom:796.702287pt;}
.y1e2{bottom:796.713620pt;}
.y1a4{bottom:796.934942pt;}
.y211{bottom:796.962954pt;}
.y11c{bottom:801.826898pt;}
.y7f{bottom:801.986898pt;}
.yd2{bottom:801.986938pt;}
.y168{bottom:810.030287pt;}
.y1e1{bottom:810.041620pt;}
.y1a3{bottom:810.262942pt;}
.y210{bottom:810.290954pt;}
.y51{bottom:810.360166pt;}
.y11b{bottom:818.493564pt;}
.y7e{bottom:818.653564pt;}
.yd1{bottom:818.653605pt;}
.y167{bottom:823.358287pt;}
.y1e0{bottom:823.369620pt;}
.y1a2{bottom:823.590942pt;}
.y20f{bottom:823.618954pt;}
.y50{bottom:831.613499pt;}
.y8{bottom:832.656169pt;}
.y11a{bottom:835.160231pt;}
.y7d{bottom:835.320231pt;}
.yd0{bottom:835.320272pt;}
.y166{bottom:836.686287pt;}
.y1df{bottom:836.697620pt;}
.y1a1{bottom:836.918942pt;}
.y20e{bottom:836.946954pt;}
.y4f{bottom:848.280166pt;}
.y165{bottom:850.014287pt;}
.y1de{bottom:850.025620pt;}
.y1a0{bottom:850.246942pt;}
.y20d{bottom:850.274954pt;}
.y119{bottom:851.826898pt;}
.y7c{bottom:851.986898pt;}
.ycf{bottom:851.986938pt;}
.y164{bottom:863.342287pt;}
.y1dd{bottom:863.353620pt;}
.y19f{bottom:863.574942pt;}
.y20c{bottom:863.602954pt;}
.y118{bottom:868.493564pt;}
.y7b{bottom:868.653564pt;}
.yce{bottom:868.653605pt;}
.y4e{bottom:872.120166pt;}
.y7{bottom:872.377441pt;}
.y163{bottom:876.670287pt;}
.y1dc{bottom:876.681620pt;}
.y19e{bottom:876.902942pt;}
.y20b{bottom:876.930954pt;}
.y117{bottom:885.160231pt;}
.y7a{bottom:885.320231pt;}
.ycd{bottom:885.320272pt;}
.y4d{bottom:888.786833pt;}
.y162{bottom:889.998287pt;}
.y1db{bottom:890.009620pt;}
.y19d{bottom:890.230942pt;}
.y20a{bottom:890.258954pt;}
.y6{bottom:896.377441pt;}
.y116{bottom:901.826898pt;}
.y79{bottom:901.986898pt;}
.ycc{bottom:901.986938pt;}
.y161{bottom:903.326287pt;}
.y1da{bottom:903.337620pt;}
.y19c{bottom:903.558942pt;}
.y209{bottom:903.586954pt;}
.y4c{bottom:905.453499pt;}
.y160{bottom:916.654287pt;}
.y1d9{bottom:916.665620pt;}
.y19b{bottom:916.886942pt;}
.y208{bottom:916.914954pt;}
.y115{bottom:918.493564pt;}
.y78{bottom:918.653564pt;}
.ycb{bottom:918.653605pt;}
.y4b{bottom:924.813499pt;}
.y1d8{bottom:929.993620pt;}
.y19a{bottom:930.214942pt;}
.y207{bottom:930.242954pt;}
.y114{bottom:935.160231pt;}
.y77{bottom:935.320231pt;}
.y99{bottom:935.320272pt;}
.y15f{bottom:943.321620pt;}
.y199{bottom:943.542942pt;}
.y206{bottom:943.570954pt;}
.y4a{bottom:945.586833pt;}
.y76{bottom:951.986898pt;}
.y98{bottom:951.986938pt;}
.y5{bottom:956.561849pt;}
.y15e{bottom:956.649620pt;}
.y198{bottom:956.870942pt;}
.y205{bottom:956.898954pt;}
.y113{bottom:968.493564pt;}
.y75{bottom:968.653564pt;}
.y97{bottom:968.653605pt;}
.y15d{bottom:969.977620pt;}
.y197{bottom:970.198942pt;}
.y204{bottom:970.226954pt;}
.y4{bottom:986.299161pt;}
.y3{bottom:1001.406494pt;}
.y27{bottom:1002.206543pt;}
.hb{height:29.448532pt;}
.h2{height:30.080000pt;}
.h11{height:34.645333pt;}
.hd{height:35.360000pt;}
.he{height:36.160000pt;}
.hf{height:37.066667pt;}
.h8{height:38.453333pt;}
.h12{height:39.190392pt;}
.h4{height:39.712000pt;}
.ha{height:42.069333pt;}
.hc{height:46.144000pt;}
.h13{height:47.253333pt;}
.h3{height:48.766452pt;}
.h5{height:49.298667pt;}
.h9{height:49.493333pt;}
.h10{height:52.448000pt;}
.h7{height:57.658667pt;}
.h6{height:75.605333pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:68.031469pt;}
.x6{left:69.996800pt;}
.x4{left:75.717199pt;}
.x7{left:83.178131pt;}
.x5{left:86.929867pt;}
.x14{left:90.709469pt;}
.x8{left:112.239471pt;}
.x10{left:238.110128pt;}
.xe{left:369.413472pt;}
.x11{left:390.339461pt;}
.x9{left:408.188924pt;}
.xa{left:423.308924pt;}
.x15{left:430.924799pt;}
.xb{left:440.524134pt;}
.x12{left:507.911457pt;}
.xc{left:535.574801pt;}
.xf{left:633.166922pt;}
.x13{left:635.173457pt;}
.x1{left:647.307210pt;}
.xd{left:662.340132pt;}
.x2{left:671.546549pt;}
}




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