
    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_5bad9d811ab5a63715e702ca.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e8e6543f58a3eabe435b0512.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_aa37182ad84509f0762d2da2.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_cf01f69f37009133d0b7903c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_be60163a59294dae7152f8be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.924000;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_7f20fcb7ea27bab2e6bfa19a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.328000;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_8075579a2a3ff1ce41605895.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.892000;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_e56a2b55d7271df10907214f.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3eb2998e75e4377d917cb90f.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_c23a0962e84297559af907ca.woff2')format("woff");}.ffa{font-family:ffa;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.400055px;}
.v3{vertical-align:-3.600220px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.399780px;}
.v1{vertical-align:24.000000px;}
.ls5d{letter-spacing:-1.530000px;}
.ls5c{letter-spacing:-0.969000px;}
.ls25{letter-spacing:-0.563724px;}
.ls33{letter-spacing:-0.480000px;}
.ls47{letter-spacing:-0.420000px;}
.ls7a{letter-spacing:-0.408000px;}
.ls5b{letter-spacing:-0.360000px;}
.ls7b{letter-spacing:-0.357000px;}
.ls8c{letter-spacing:-0.306000px;}
.ls46{letter-spacing:-0.300000px;}
.ls79{letter-spacing:-0.255000px;}
.ls60{letter-spacing:-0.240000px;}
.ls78{letter-spacing:-0.204000px;}
.ls20{letter-spacing:-0.180000px;}
.ls77{letter-spacing:-0.153000px;}
.ls21{letter-spacing:-0.120000px;}
.ls8b{letter-spacing:-0.102000px;}
.ls22{letter-spacing:-0.060000px;}
.ls8e{letter-spacing:-0.051000px;}
.ls1f{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000085px;}
.ls3{letter-spacing:0.000087px;}
.ls2{letter-spacing:0.000089px;}
.ls72{letter-spacing:0.051000px;}
.ls6{letter-spacing:0.060000px;}
.ls75{letter-spacing:0.102000px;}
.ls5{letter-spacing:0.120000px;}
.ls7f{letter-spacing:0.153000px;}
.ls1d{letter-spacing:0.178791px;}
.ls8{letter-spacing:0.180000px;}
.ls67{letter-spacing:0.204000px;}
.lsc{letter-spacing:0.207599px;}
.ls61{letter-spacing:0.210000px;}
.lse{letter-spacing:0.210022px;}
.ls37{letter-spacing:0.239410px;}
.lsb{letter-spacing:0.239991px;}
.ls4{letter-spacing:0.240000px;}
.ls1c{letter-spacing:0.241596px;}
.ls1e{letter-spacing:0.255000px;}
.ls6f{letter-spacing:0.264000px;}
.ls1b{letter-spacing:0.268440px;}
.ls30{letter-spacing:0.270000px;}
.lsd{letter-spacing:0.278354px;}
.ls45{letter-spacing:0.282000px;}
.ls76{letter-spacing:0.288000px;}
.ls57{letter-spacing:0.299846px;}
.ls7{letter-spacing:0.300000px;}
.ls2c{letter-spacing:0.305984px;}
.ls83{letter-spacing:0.306000px;}
.ls62{letter-spacing:0.319244px;}
.ls5f{letter-spacing:0.342000px;}
.ls73{letter-spacing:0.357000px;}
.ls11{letter-spacing:0.360000px;}
.ls44{letter-spacing:0.375000px;}
.ls87{letter-spacing:0.382500px;}
.ls66{letter-spacing:0.390000px;}
.ls6b{letter-spacing:0.408000px;}
.ls10{letter-spacing:0.420000px;}
.ls23{letter-spacing:0.456348px;}
.ls74{letter-spacing:0.459000px;}
.ls28{letter-spacing:0.480000px;}
.ls43{letter-spacing:0.496304px;}
.ls6e{letter-spacing:0.510000px;}
.lsa{letter-spacing:0.540000px;}
.ls24{letter-spacing:0.550302px;}
.ls69{letter-spacing:0.561000px;}
.ls9{letter-spacing:0.600000px;}
.ls81{letter-spacing:0.612000px;}
.ls63{letter-spacing:0.630000px;}
.ls88{letter-spacing:0.637500px;}
.ls2a{letter-spacing:0.660000px;}
.ls68{letter-spacing:0.663000px;}
.ls14{letter-spacing:0.671987px;}
.ls59{letter-spacing:0.690000px;}
.ls70{letter-spacing:0.714000px;}
.lsf{letter-spacing:0.720000px;}
.ls8a{letter-spacing:0.739500px;}
.ls65{letter-spacing:0.750000px;}
.ls7d{letter-spacing:0.765000px;}
.ls13{letter-spacing:0.780000px;}
.ls71{letter-spacing:0.790500px;}
.ls56{letter-spacing:0.797974px;}
.ls64{letter-spacing:0.810000px;}
.ls89{letter-spacing:0.816000px;}
.ls15{letter-spacing:0.840000px;}
.ls6d{letter-spacing:0.867000px;}
.ls51{letter-spacing:0.870000px;}
.ls36{letter-spacing:0.897583px;}
.ls1a{letter-spacing:0.900000px;}
.ls6c{letter-spacing:0.918000px;}
.ls16{letter-spacing:0.930000px;}
.ls17{letter-spacing:0.960000px;}
.ls7c{letter-spacing:0.969000px;}
.ls4d{letter-spacing:0.975586px;}
.ls2b{letter-spacing:1.020000px;}
.ls7e{letter-spacing:1.071000px;}
.ls5a{letter-spacing:1.071600px;}
.ls29{letter-spacing:1.080000px;}
.ls55{letter-spacing:1.121378px;}
.ls8f{letter-spacing:1.122000px;}
.ls39{letter-spacing:1.140000px;}
.ls90{letter-spacing:1.173000px;}
.ls18{letter-spacing:1.200000px;}
.ls85{letter-spacing:1.224000px;}
.ls2e{letter-spacing:1.260000px;}
.ls86{letter-spacing:1.275000px;}
.ls26{letter-spacing:1.320000px;}
.ls84{letter-spacing:1.326000px;}
.ls2d{letter-spacing:1.380000px;}
.ls50{letter-spacing:1.393799px;}
.ls31{letter-spacing:1.410000px;}
.ls4e{letter-spacing:1.440000px;}
.ls58{letter-spacing:1.470000px;}
.ls8d{letter-spacing:1.479000px;}
.ls19{letter-spacing:1.488000px;}
.ls32{letter-spacing:1.500000px;}
.ls82{letter-spacing:1.504500px;}
.ls5e{letter-spacing:1.560000px;}
.ls41{letter-spacing:1.620000px;}
.ls6a{letter-spacing:1.632000px;}
.ls3c{letter-spacing:1.680000px;}
.ls2f{letter-spacing:1.740000px;}
.ls35{letter-spacing:1.762233px;}
.ls80{letter-spacing:1.785000px;}
.ls3b{letter-spacing:1.800000px;}
.ls54{letter-spacing:1.801208px;}
.ls49{letter-spacing:1.836589px;}
.ls38{letter-spacing:1.860000px;}
.ls4c{letter-spacing:1.884027px;}
.ls3d{letter-spacing:1.920000px;}
.ls12{letter-spacing:1.980000px;}
.ls3e{letter-spacing:2.040000px;}
.ls42{letter-spacing:2.100000px;}
.ls4f{letter-spacing:2.117406px;}
.ls53{letter-spacing:2.199702px;}
.ls34{letter-spacing:2.220000px;}
.ls40{letter-spacing:2.250000px;}
.ls3a{letter-spacing:2.340000px;}
.ls4b{letter-spacing:2.520000px;}
.ls52{letter-spacing:2.580000px;}
.ls48{letter-spacing:2.622631px;}
.ls4a{letter-spacing:2.640000px;}
.ls3f{letter-spacing:2.700000px;}
.ls27{letter-spacing:2.760000px;}
.ls0{letter-spacing:3.990000px;}
.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;}
}
.ws49{word-spacing:-17.700000px;}
.ws4a{word-spacing:-16.140000px;}
.ws62{word-spacing:-15.900000px;}
.ws75{word-spacing:-15.840000px;}
.ws26{word-spacing:-15.300000px;}
.ws85{word-spacing:-15.120000px;}
.ws48{word-spacing:-15.000000px;}
.ws7e{word-spacing:-14.940000px;}
.ws8a{word-spacing:-14.832000px;}
.ws63{word-spacing:-14.544000px;}
.ws87{word-spacing:-13.311000px;}
.ws95{word-spacing:-13.005000px;}
.ws89{word-spacing:-12.852000px;}
.wsb{word-spacing:-12.750000px;}
.ws47{word-spacing:-12.474000px;}
.ws2{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.360000px;}
.ws6{word-spacing:-12.060000px;}
.ws64{word-spacing:-11.781000px;}
.ws5{word-spacing:-11.640000px;}
.ws7{word-spacing:-11.520000px;}
.ws88{word-spacing:-10.353000px;}
.ws1{word-spacing:-9.996000px;}
.ws86{word-spacing:-9.639000px;}
.ws0{word-spacing:-9.408000px;}
.wsa{word-spacing:-8.925000px;}
.ws3{word-spacing:-8.694000px;}
.ws16{word-spacing:-7.500000px;}
.ws9{word-spacing:-2.657556px;}
.ws8{word-spacing:-2.563602px;}
.wse{word-spacing:-1.500000px;}
.ws11{word-spacing:-1.440000px;}
.ws4e{word-spacing:-1.380000px;}
.ws99{word-spacing:-1.326000px;}
.ws94{word-spacing:-1.275000px;}
.ws8e{word-spacing:-1.260000px;}
.wscc{word-spacing:-1.224000px;}
.ws50{word-spacing:-1.200000px;}
.ws53{word-spacing:-1.140000px;}
.ws5c{word-spacing:-1.080000px;}
.ws65{word-spacing:-1.071600px;}
.wsa0{word-spacing:-1.071000px;}
.ws40{word-spacing:-1.020000px;}
.ws9c{word-spacing:-0.969000px;}
.ws61{word-spacing:-0.960000px;}
.ws6a{word-spacing:-0.900000px;}
.ws4b{word-spacing:-0.840000px;}
.wsb1{word-spacing:-0.816000px;}
.ws38{word-spacing:-0.780000px;}
.wsa1{word-spacing:-0.765000px;}
.wsf{word-spacing:-0.720000px;}
.wsa2{word-spacing:-0.714000px;}
.wsa5{word-spacing:-0.663000px;}
.ws28{word-spacing:-0.660000px;}
.ws25{word-spacing:-0.612000px;}
.ws3f{word-spacing:-0.600000px;}
.wsd{word-spacing:-0.570000px;}
.wsab{word-spacing:-0.561000px;}
.ws82{word-spacing:-0.540000px;}
.ws29{word-spacing:-0.480000px;}
.ws14{word-spacing:-0.420000px;}
.ws7d{word-spacing:-0.360000px;}
.wsc6{word-spacing:-0.357000px;}
.wsc8{word-spacing:-0.306000px;}
.ws1b{word-spacing:-0.300000px;}
.ws4d{word-spacing:-0.282000px;}
.ws22{word-spacing:-0.268440px;}
.ws9d{word-spacing:-0.264000px;}
.wsa4{word-spacing:-0.255000px;}
.ws79{word-spacing:-0.240000px;}
.ws10{word-spacing:-0.180000px;}
.wsca{word-spacing:-0.153000px;}
.ws37{word-spacing:-0.120000px;}
.wsb0{word-spacing:-0.102000px;}
.ws20{word-spacing:-0.060000px;}
.wsc{word-spacing:0.000000px;}
.wsc3{word-spacing:0.051000px;}
.ws8b{word-spacing:0.060000px;}
.ws36{word-spacing:0.180000px;}
.wsc4{word-spacing:0.204000px;}
.ws92{word-spacing:0.255000px;}
.ws31{word-spacing:0.300000px;}
.wsd1{word-spacing:0.306000px;}
.ws93{word-spacing:0.357000px;}
.ws18{word-spacing:0.420000px;}
.wsc5{word-spacing:0.459000px;}
.wsa3{word-spacing:0.510000px;}
.ws23{word-spacing:0.563724px;}
.ws4f{word-spacing:0.600000px;}
.ws8d{word-spacing:0.660000px;}
.wsaa{word-spacing:0.663000px;}
.ws15{word-spacing:0.720000px;}
.ws51{word-spacing:0.780000px;}
.ws81{word-spacing:0.840000px;}
.wsa6{word-spacing:0.867000px;}
.ws5a{word-spacing:0.900000px;}
.ws41{word-spacing:0.960000px;}
.wsa9{word-spacing:0.969000px;}
.ws12{word-spacing:1.020000px;}
.ws6e{word-spacing:1.080000px;}
.ws52{word-spacing:1.140000px;}
.ws9f{word-spacing:1.173000px;}
.ws30{word-spacing:1.260000px;}
.ws97{word-spacing:1.275000px;}
.ws58{word-spacing:1.320000px;}
.wsb3{word-spacing:1.326000px;}
.wsb6{word-spacing:1.377000px;}
.ws44{word-spacing:1.380000px;}
.ws96{word-spacing:1.428000px;}
.ws21{word-spacing:1.440000px;}
.wsb7{word-spacing:1.479000px;}
.ws13{word-spacing:1.500000px;}
.ws55{word-spacing:1.560000px;}
.ws19{word-spacing:1.620000px;}
.wsae{word-spacing:1.632000px;}
.ws2a{word-spacing:1.680000px;}
.ws2f{word-spacing:1.740000px;}
.ws9e{word-spacing:1.785000px;}
.ws2b{word-spacing:1.800000px;}
.wsd2{word-spacing:1.836000px;}
.ws35{word-spacing:1.860000px;}
.wsb2{word-spacing:1.887000px;}
.ws56{word-spacing:1.920000px;}
.wsa8{word-spacing:1.938000px;}
.ws1a{word-spacing:1.980000px;}
.wsad{word-spacing:1.989000px;}
.ws2d{word-spacing:2.040000px;}
.ws6b{word-spacing:2.100000px;}
.ws2e{word-spacing:2.160000px;}
.wsc9{word-spacing:2.193000px;}
.ws3a{word-spacing:2.280000px;}
.wsb5{word-spacing:2.295000px;}
.ws1c{word-spacing:2.340000px;}
.wsac{word-spacing:2.346000px;}
.wsb9{word-spacing:2.397000px;}
.ws1f{word-spacing:2.400000px;}
.ws9b{word-spacing:2.448000px;}
.ws3c{word-spacing:2.460000px;}
.ws45{word-spacing:2.520000px;}
.wsbb{word-spacing:2.550000px;}
.ws32{word-spacing:2.580000px;}
.ws1d{word-spacing:2.640000px;}
.wsc0{word-spacing:2.652000px;}
.ws77{word-spacing:2.700000px;}
.ws9a{word-spacing:2.703000px;}
.wsa7{word-spacing:2.805000px;}
.ws90{word-spacing:2.820000px;}
.wsb4{word-spacing:2.856000px;}
.ws34{word-spacing:2.880000px;}
.ws57{word-spacing:2.940000px;}
.ws7c{word-spacing:3.000000px;}
.ws33{word-spacing:3.060000px;}
.ws5b{word-spacing:3.180000px;}
.wscd{word-spacing:3.213000px;}
.ws7a{word-spacing:3.300000px;}
.wsc2{word-spacing:3.315000px;}
.ws6c{word-spacing:3.360000px;}
.wsbc{word-spacing:3.366000px;}
.wsaf{word-spacing:3.417000px;}
.wsc7{word-spacing:3.468000px;}
.wscb{word-spacing:3.519000px;}
.ws68{word-spacing:3.540000px;}
.wsba{word-spacing:3.570000px;}
.ws42{word-spacing:3.600000px;}
.ws8c{word-spacing:3.660000px;}
.ws5d{word-spacing:3.720000px;}
.ws1e{word-spacing:3.780000px;}
.wscf{word-spacing:3.825000px;}
.ws91{word-spacing:3.840000px;}
.ws6d{word-spacing:3.960000px;}
.ws3e{word-spacing:4.020000px;}
.ws60{word-spacing:4.080000px;}
.ws3b{word-spacing:4.140000px;}
.wsce{word-spacing:4.182000px;}
.ws54{word-spacing:4.200000px;}
.wsbf{word-spacing:4.284000px;}
.ws84{word-spacing:4.320000px;}
.ws27{word-spacing:4.380000px;}
.wsc1{word-spacing:4.386000px;}
.ws8f{word-spacing:4.500000px;}
.wsbe{word-spacing:4.641000px;}
.ws39{word-spacing:4.680000px;}
.ws5f{word-spacing:4.740000px;}
.ws43{word-spacing:4.800000px;}
.ws80{word-spacing:5.040000px;}
.ws6f{word-spacing:5.100000px;}
.ws46{word-spacing:5.280000px;}
.ws59{word-spacing:5.400000px;}
.wsd0{word-spacing:5.406000px;}
.ws7b{word-spacing:5.460000px;}
.ws83{word-spacing:5.520000px;}
.ws7f{word-spacing:5.580000px;}
.wsbd{word-spacing:5.610000px;}
.ws78{word-spacing:5.640000px;}
.ws67{word-spacing:6.180000px;}
.ws98{word-spacing:6.273000px;}
.ws3d{word-spacing:6.360000px;}
.ws69{word-spacing:6.420000px;}
.ws76{word-spacing:6.480000px;}
.ws66{word-spacing:6.660000px;}
.ws5e{word-spacing:6.960000px;}
.wsb8{word-spacing:6.987000px;}
.ws17{word-spacing:7.740000px;}
.ws4c{word-spacing:8.820000px;}
.ws2c{word-spacing:11.460000px;}
.wsd3{word-spacing:13.515000px;}
.wsd4{word-spacing:17.595000px;}
.ws71{word-spacing:31.824000px;}
.ws24{word-spacing:72.267000px;}
.ws70{word-spacing:73.077900px;}
.ws73{word-spacing:136.170000px;}
.ws74{word-spacing:166.464000px;}
.ws72{word-spacing:271.881000px;}
._a{margin-left:-2959.376944px;}
._b{margin-left:-96.900000px;}
._5c{margin-left:-18.054000px;}
._7{margin-left:-16.575000px;}
._57{margin-left:-15.402000px;}
._11{margin-left:-14.160000px;}
._5b{margin-left:-12.699000px;}
._5a{margin-left:-11.169000px;}
._4f{margin-left:-9.039627px;}
._13{margin-left:-7.560000px;}
._6{margin-left:-6.000000px;}
._10{margin-left:-4.610379px;}
._4{margin-left:-3.535241px;}
._0{margin-left:-1.632000px;}
._2{width:1.317621px;}
._1{width:2.390400px;}
._e{width:5.071241px;}
._f{width:6.084000px;}
._54{width:7.701000px;}
._50{width:9.231000px;}
._12{width:11.016000px;}
._5{width:13.500000px;}
._14{width:15.606000px;}
._3{width:16.931986px;}
._8{width:18.360000px;}
._59{width:20.451000px;}
._58{width:22.236000px;}
._56{width:23.493000px;}
._55{width:25.281000px;}
._53{width:26.316000px;}
._51{width:28.050000px;}
._52{width:29.376000px;}
._d{width:35.207373px;}
._19{width:44.063982px;}
._18{width:45.543000px;}
._2a{width:48.713379px;}
._45{width:52.785000px;}
._9{width:54.621000px;}
._16{width:57.375000px;}
._44{width:64.698621px;}
._2b{width:85.935000px;}
._32{width:96.104379px;}
._43{width:104.609379px;}
._47{width:105.734994px;}
._3c{width:109.338918px;}
._38{width:115.566000px;}
._4e{width:131.537379px;}
._37{width:138.261000px;}
._1c{width:148.920000px;}
._25{width:152.388000px;}
._49{width:155.193000px;}
._35{width:164.169000px;}
._28{width:168.299992px;}
._3d{width:173.553000px;}
._3e{width:175.797000px;}
._27{width:177.837000px;}
._1e{width:179.214000px;}
._29{width:183.498000px;}
._1a{width:184.926000px;}
._39{width:187.119000px;}
._23{width:191.513379px;}
._26{width:192.691479px;}
._1d{width:193.799992px;}
._22{width:200.532000px;}
._4d{width:205.334379px;}
._33{width:208.998000px;}
._17{width:213.545379px;}
._3f{width:219.257372px;}
._40{width:224.808000px;}
._4b{width:227.511000px;}
._36{width:229.653000px;}
._42{width:231.693000px;}
._2c{width:235.228241px;}
._4c{width:236.291379px;}
._34{width:238.170000px;}
._1b{width:243.377100px;}
._41{width:246.335100px;}
._4a{width:257.079006px;}
._3b{width:265.965000px;}
._1f{width:269.127000px;}
._20{width:274.176000px;}
._2e{width:275.981379px;}
._3a{width:281.877000px;}
._30{width:289.170000px;}
._24{width:307.377000px;}
._2d{width:308.504100px;}
._21{width:344.763279px;}
._2f{width:346.191272px;}
._46{width:350.217000px;}
._31{width:365.015379px;}
._15{width:397.698000px;}
._48{width:445.536000px;}
._c{width:2147.711932px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:13.422000px;}
.fs7{font-size:35.699999px;}
.fs5{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fsa{font-size:56.399998px;}
.fs2{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y30{bottom:21.043488px;}
.y1{bottom:69.499649px;}
.y38{bottom:112.938300px;}
.y6e{bottom:113.415344px;}
.y1e5{bottom:114.138305px;}
.y95{bottom:114.432289px;}
.y162{bottom:114.564308px;}
.y1c0{bottom:114.735260px;}
.yc3{bottom:114.735306px;}
.y182{bottom:114.874809px;}
.y227{bottom:116.614823px;}
.y269{bottom:117.010073px;}
.y2d{bottom:122.461349px;}
.y102{bottom:122.467804px;}
.y1e4{bottom:129.132305px;}
.y226{bottom:131.608823px;}
.y268{bottom:132.004073px;}
.y6d{bottom:132.165344px;}
.y37{bottom:133.032303px;}
.y94{bottom:133.182289px;}
.y161{bottom:133.314308px;}
.y1bf{bottom:133.485260px;}
.yc2{bottom:133.485306px;}
.y181{bottom:133.624809px;}
.y2c{bottom:141.211349px;}
.y101{bottom:141.217804px;}
.y225{bottom:146.602823px;}
.y267{bottom:146.998073px;}
.yef{bottom:150.033154px;}
.y36{bottom:150.485553px;}
.y6c{bottom:150.915344px;}
.y93{bottom:151.932289px;}
.y160{bottom:152.064308px;}
.y1be{bottom:152.235260px;}
.yc1{bottom:152.235306px;}
.y180{bottom:152.374809px;}
.y2b{bottom:159.961349px;}
.y100{bottom:159.967804px;}
.y224{bottom:161.596823px;}
.y266{bottom:161.992073px;}
.y1e3{bottom:162.882305px;}
.yee{bottom:168.783154px;}
.y6b{bottom:169.665344px;}
.y35{bottom:170.579556px;}
.y92{bottom:170.682289px;}
.y15f{bottom:170.814308px;}
.y1bd{bottom:170.985260px;}
.yc0{bottom:170.985306px;}
.y17f{bottom:171.124809px;}
.y223{bottom:176.590823px;}
.y265{bottom:176.986073px;}
.y2a{bottom:178.711349px;}
.y105{bottom:178.717804px;}
.yff{bottom:179.617802px;}
.yed{bottom:187.533154px;}
.y34{bottom:188.032794px;}
.y6a{bottom:188.415344px;}
.y91{bottom:189.432289px;}
.y15e{bottom:189.564308px;}
.y1bc{bottom:189.735260px;}
.ybf{bottom:189.735306px;}
.y17e{bottom:189.874809px;}
.y222{bottom:191.584823px;}
.y264{bottom:191.980073px;}
.y29{bottom:197.461349px;}
.yfe{bottom:197.467804px;}
.y221{bottom:206.578823px;}
.y263{bottom:206.974073px;}
.y69{bottom:207.165344px;}
.y33{bottom:208.126808px;}
.y90{bottom:208.182289px;}
.y15d{bottom:208.314308px;}
.y1bb{bottom:208.485260px;}
.ybe{bottom:208.485306px;}
.y17d{bottom:208.624809px;}
.y28{bottom:216.211349px;}
.yfd{bottom:216.217804px;}
.y220{bottom:221.572823px;}
.y262{bottom:221.968073px;}
.yec{bottom:225.033142px;}
.y68{bottom:225.915344px;}
.y8f{bottom:226.932289px;}
.y15c{bottom:227.064308px;}
.y1ba{bottom:227.235260px;}
.ybd{bottom:227.235306px;}
.y17c{bottom:227.374809px;}
.y1e2{bottom:231.078306px;}
.y32{bottom:233.127300px;}
.y27{bottom:234.961349px;}
.yfc{bottom:235.867790px;}
.y21f{bottom:236.566823px;}
.y261{bottom:236.962073px;}
.y67{bottom:244.665344px;}
.y8e{bottom:245.682289px;}
.y15b{bottom:245.814308px;}
.y1b9{bottom:245.985260px;}
.ybc{bottom:245.985306px;}
.y1e1{bottom:246.072306px;}
.y17b{bottom:246.124809px;}
.y31{bottom:248.121300px;}
.y21e{bottom:251.560823px;}
.y260{bottom:251.956073px;}
.y26{bottom:253.711349px;}
.yfb{bottom:253.717804px;}
.y1e0{bottom:261.066306px;}
.y66{bottom:263.415344px;}
.y8d{bottom:264.432289px;}
.y1b8{bottom:264.735260px;}
.ybb{bottom:264.735306px;}
.y17a{bottom:264.874809px;}
.y21d{bottom:266.554823px;}
.y25f{bottom:266.950073px;}
.y25{bottom:272.461349px;}
.yfa{bottom:272.467804px;}
.y1df{bottom:276.060306px;}
.yeb{bottom:281.283142px;}
.y21c{bottom:281.548823px;}
.y25e{bottom:281.944073px;}
.y65{bottom:282.165344px;}
.y8c{bottom:283.182289px;}
.y1b7{bottom:283.485260px;}
.yba{bottom:283.485306px;}
.y179{bottom:283.624809px;}
.y1de{bottom:291.054306px;}
.y24{bottom:291.211349px;}
.y104{bottom:291.217804px;}
.yf9{bottom:292.117790px;}
.y21b{bottom:296.542823px;}
.y25d{bottom:296.938073px;}
.yea{bottom:300.033142px;}
.y64{bottom:300.915344px;}
.y8b{bottom:301.932289px;}
.y1b6{bottom:302.235260px;}
.yb9{bottom:302.235306px;}
.y178{bottom:302.374809px;}
.y1dd{bottom:306.048306px;}
.y23{bottom:309.961349px;}
.yf8{bottom:309.967804px;}
.y21a{bottom:311.536823px;}
.y25c{bottom:311.932073px;}
.ye9{bottom:318.783142px;}
.y63{bottom:319.665344px;}
.y1b5{bottom:320.985260px;}
.yb8{bottom:320.985306px;}
.y1dc{bottom:321.042306px;}
.y177{bottom:321.124809px;}
.y219{bottom:326.530823px;}
.y25b{bottom:326.926073px;}
.y22{bottom:328.711349px;}
.yf7{bottom:328.717804px;}
.y1db{bottom:336.036306px;}
.ye8{bottom:337.533142px;}
.y62{bottom:338.415344px;}
.y8a{bottom:339.432289px;}
.y1b4{bottom:339.735260px;}
.yb7{bottom:339.735306px;}
.y176{bottom:339.874786px;}
.y194{bottom:339.874809px;}
.y218{bottom:341.524823px;}
.y25a{bottom:341.920073px;}
.y21{bottom:347.461349px;}
.yf6{bottom:347.467804px;}
.y1da{bottom:351.030306px;}
.ye7{bottom:356.283142px;}
.y217{bottom:356.518823px;}
.y259{bottom:356.914073px;}
.y61{bottom:357.165344px;}
.y1b3{bottom:358.485260px;}
.yb6{bottom:358.485306px;}
.y175{bottom:358.624786px;}
.y193{bottom:358.624809px;}
.y1d9{bottom:366.024306px;}
.y103{bottom:366.217804px;}
.yf5{bottom:367.117790px;}
.y216{bottom:371.512823px;}
.y258{bottom:371.908073px;}
.ye6{bottom:375.033142px;}
.y60{bottom:375.915344px;}
.y1b2{bottom:377.235260px;}
.yb5{bottom:377.235306px;}
.y174{bottom:377.374786px;}
.y192{bottom:377.374809px;}
.y1d8{bottom:381.018306px;}
.y89{bottom:381.365570px;}
.yf4{bottom:384.967804px;}
.y215{bottom:386.506823px;}
.y257{bottom:386.902073px;}
.y5f{bottom:394.665344px;}
.y1b1{bottom:395.985260px;}
.yb4{bottom:395.985306px;}
.y1d7{bottom:396.012306px;}
.y173{bottom:396.124786px;}
.y191{bottom:396.124809px;}
.y88{bottom:400.115570px;}
.y214{bottom:401.500823px;}
.y256{bottom:401.896073px;}
.y20{bottom:403.711349px;}
.yf3{bottom:403.717804px;}
.ye5{bottom:412.533142px;}
.y5e{bottom:413.415344px;}
.y1b0{bottom:414.735260px;}
.yb3{bottom:414.735306px;}
.y172{bottom:414.874786px;}
.y190{bottom:414.874809px;}
.y213{bottom:416.494823px;}
.y255{bottom:416.890073px;}
.y87{bottom:418.865570px;}
.y1f{bottom:422.461349px;}
.yf2{bottom:422.467804px;}
.y212{bottom:431.488823px;}
.y254{bottom:431.884073px;}
.y5d{bottom:432.165344px;}
.y1af{bottom:433.485260px;}
.yb2{bottom:433.485306px;}
.y1d6{bottom:433.497306px;}
.y171{bottom:433.624786px;}
.y18f{bottom:433.624809px;}
.y86{bottom:437.615570px;}
.yf1{bottom:441.217804px;}
.y211{bottom:446.482823px;}
.y253{bottom:446.878073px;}
.y1d5{bottom:448.491306px;}
.y5c{bottom:450.915344px;}
.y1ae{bottom:452.235260px;}
.yb1{bottom:452.235306px;}
.y170{bottom:452.374786px;}
.y18e{bottom:452.374809px;}
.y85{bottom:456.365570px;}
.y1e{bottom:459.961349px;}
.yf0{bottom:460.867813px;}
.y210{bottom:461.476823px;}
.y252{bottom:461.872073px;}
.y1d4{bottom:463.485306px;}
.ye4{bottom:468.783142px;}
.y5b{bottom:469.665344px;}
.y15a{bottom:470.844759px;}
.y1ad{bottom:470.985260px;}
.yb0{bottom:470.985306px;}
.y16f{bottom:471.124786px;}
.y18d{bottom:471.124809px;}
.y126{bottom:474.682524px;}
.y84{bottom:475.115570px;}
.y20f{bottom:476.470823px;}
.y251{bottom:476.866073px;}
.y1d{bottom:478.711349px;}
.y159{bottom:485.838759px;}
.ye3{bottom:487.533142px;}
.y5a{bottom:488.415344px;}
.y125{bottom:489.676524px;}
.y1ac{bottom:489.735260px;}
.yaf{bottom:489.735306px;}
.y16e{bottom:489.874786px;}
.y18c{bottom:489.874809px;}
.y20e{bottom:491.464823px;}
.y250{bottom:491.860073px;}
.y1d3{bottom:493.485306px;}
.y83{bottom:493.865570px;}
.y1c{bottom:497.461349px;}
.ye2{bottom:506.283142px;}
.y20d{bottom:506.458823px;}
.y24f{bottom:506.854073px;}
.y59{bottom:507.165344px;}
.y1ab{bottom:508.485260px;}
.yae{bottom:508.485306px;}
.y16d{bottom:508.624786px;}
.y18b{bottom:508.624809px;}
.y1b{bottom:516.211349px;}
.y20c{bottom:521.452823px;}
.y24e{bottom:521.848073px;}
.ye1{bottom:525.033142px;}
.y58{bottom:525.915344px;}
.y1aa{bottom:527.235260px;}
.yad{bottom:527.235306px;}
.y1d2{bottom:527.330510px;}
.y16c{bottom:527.374786px;}
.y18a{bottom:527.374809px;}
.y82{bottom:531.365570px;}
.y1a{bottom:534.961349px;}
.y20b{bottom:536.446823px;}
.y24d{bottom:536.842073px;}
.y1d1{bottom:542.324510px;}
.ye0{bottom:543.783142px;}
.y57{bottom:544.665344px;}
.y1a9{bottom:545.985260px;}
.yac{bottom:545.985306px;}
.y157{bottom:545.989986px;}
.y16b{bottom:546.124786px;}
.y189{bottom:546.124809px;}
.y139{bottom:546.124969px;}
.y124{bottom:549.805524px;}
.y20a{bottom:551.440823px;}
.y28d{bottom:551.568341px;}
.y24c{bottom:551.836073px;}
.y19{bottom:553.711349px;}
.y1d0{bottom:557.318510px;}
.ydf{bottom:562.533142px;}
.y56{bottom:563.415344px;}
.y1a8{bottom:564.735260px;}
.yab{bottom:564.735306px;}
.y156{bottom:564.739986px;}
.y16a{bottom:564.874786px;}
.y188{bottom:564.874809px;}
.y138{bottom:564.874969px;}
.y209{bottom:566.434823px;}
.y28c{bottom:566.562341px;}
.y24b{bottom:566.830073px;}
.y123{bottom:568.599024px;}
.y1cf{bottom:572.312510px;}
.y18{bottom:572.461349px;}
.y81{bottom:573.298828px;}
.yde{bottom:581.283142px;}
.y208{bottom:581.428823px;}
.y24a{bottom:581.824073px;}
.y55{bottom:582.165344px;}
.y1a7{bottom:583.485260px;}
.yaa{bottom:583.485306px;}
.y155{bottom:583.489986px;}
.y169{bottom:583.624786px;}
.y187{bottom:583.624809px;}
.y137{bottom:583.624969px;}
.y1ce{bottom:587.306510px;}
.y122{bottom:587.316024px;}
.y17{bottom:591.211349px;}
.y80{bottom:592.048828px;}
.y207{bottom:596.422823px;}
.y28b{bottom:596.652339px;}
.y249{bottom:596.818073px;}
.ydd{bottom:600.033142px;}
.y54{bottom:600.915344px;}
.y1a6{bottom:602.235260px;}
.y154{bottom:602.239986px;}
.y1cd{bottom:602.300510px;}
.y168{bottom:602.374786px;}
.y186{bottom:602.374809px;}
.y136{bottom:602.374969px;}
.y121{bottom:606.033024px;}
.y16{bottom:609.961395px;}
.y7f{bottom:610.798828px;}
.y206{bottom:611.416823px;}
.y28a{bottom:611.646339px;}
.y248{bottom:611.812073px;}
.y1cc{bottom:617.294510px;}
.ydc{bottom:618.783142px;}
.y53{bottom:619.665344px;}
.y1a5{bottom:620.985260px;}
.ya9{bottom:620.985306px;}
.y153{bottom:620.989986px;}
.y167{bottom:621.124786px;}
.y185{bottom:621.124809px;}
.y135{bottom:621.124969px;}
.y120{bottom:624.750024px;}
.y205{bottom:626.410823px;}
.y289{bottom:626.640339px;}
.y247{bottom:626.806073px;}
.y15{bottom:628.711395px;}
.y7e{bottom:629.548828px;}
.y1cb{bottom:632.288510px;}
.ydb{bottom:637.533142px;}
.y52{bottom:638.415344px;}
.y1a4{bottom:639.735260px;}
.y152{bottom:639.739986px;}
.y166{bottom:639.874786px;}
.y184{bottom:639.874809px;}
.y134{bottom:639.874969px;}
.y204{bottom:641.404823px;}
.y288{bottom:641.634339px;}
.y246{bottom:641.800073px;}
.y11f{bottom:643.467024px;}
.y1ca{bottom:647.282510px;}
.y14{bottom:647.461395px;}
.y7d{bottom:648.298828px;}
.yda{bottom:656.283142px;}
.y203{bottom:656.398823px;}
.y287{bottom:656.628339px;}
.y245{bottom:656.794073px;}
.y51{bottom:657.165344px;}
.y1a3{bottom:658.485260px;}
.y151{bottom:658.489986px;}
.y165{bottom:658.624786px;}
.y183{bottom:658.624809px;}
.y133{bottom:658.624969px;}
.y11e{bottom:662.184024px;}
.y1c9{bottom:662.276510px;}
.y164{bottom:662.298435px;}
.y13{bottom:666.211395px;}
.y7c{bottom:667.048828px;}
.y202{bottom:671.392823px;}
.y286{bottom:671.622339px;}
.y244{bottom:671.788073px;}
.yd9{bottom:675.033142px;}
.y50{bottom:675.915344px;}
.y1a2{bottom:677.235260px;}
.ya8{bottom:677.235306px;}
.y150{bottom:677.239986px;}
.y1c8{bottom:677.270510px;}
.y163{bottom:677.292435px;}
.y132{bottom:677.374969px;}
.y11d{bottom:680.901024px;}
.y12{bottom:684.961395px;}
.y7b{bottom:685.798828px;}
.y201{bottom:686.386823px;}
.y285{bottom:686.616339px;}
.y243{bottom:686.782073px;}
.y1c7{bottom:692.264510px;}
.yd8{bottom:693.783142px;}
.y4f{bottom:694.665344px;}
.y1a1{bottom:695.985260px;}
.ya7{bottom:695.985306px;}
.y14f{bottom:695.989986px;}
.y131{bottom:696.124969px;}
.y11c{bottom:699.618024px;}
.y200{bottom:701.380823px;}
.y284{bottom:701.610339px;}
.y242{bottom:701.776073px;}
.y11{bottom:703.711395px;}
.y7a{bottom:704.548828px;}
.y1c6{bottom:707.258510px;}
.yd7{bottom:712.533142px;}
.y4e{bottom:713.415344px;}
.y1a0{bottom:714.735260px;}
.ya6{bottom:714.735306px;}
.y14e{bottom:714.739986px;}
.y130{bottom:714.874969px;}
.y1ff{bottom:716.374823px;}
.y283{bottom:716.604339px;}
.y241{bottom:716.770073px;}
.y11b{bottom:718.335024px;}
.y1c5{bottom:722.252510px;}
.y10{bottom:722.461395px;}
.y79{bottom:723.298828px;}
.yd6{bottom:731.283142px;}
.y1fe{bottom:731.368823px;}
.y282{bottom:731.598339px;}
.y240{bottom:731.764073px;}
.y4d{bottom:732.165344px;}
.y19f{bottom:733.485260px;}
.y14d{bottom:733.489986px;}
.y12f{bottom:733.624969px;}
.y11a{bottom:737.052024px;}
.y1c4{bottom:737.246510px;}
.yf{bottom:741.211395px;}
.y78{bottom:742.048828px;}
.y1fd{bottom:746.362823px;}
.y281{bottom:746.592339px;}
.y23f{bottom:746.758073px;}
.yd5{bottom:750.033142px;}
.y4c{bottom:750.915344px;}
.y19e{bottom:752.235260px;}
.y14c{bottom:752.239986px;}
.y1c3{bottom:752.240510px;}
.y12e{bottom:752.374969px;}
.ya5{bottom:753.135315px;}
.y119{bottom:755.769024px;}
.ye{bottom:759.961395px;}
.y77{bottom:760.798828px;}
.y1fc{bottom:761.356823px;}
.y280{bottom:761.586339px;}
.y23e{bottom:761.752073px;}
.yd4{bottom:768.783142px;}
.y4b{bottom:769.665344px;}
.y19d{bottom:770.985260px;}
.y14b{bottom:770.989986px;}
.y12d{bottom:771.124969px;}
.ya4{bottom:771.885315px;}
.y118{bottom:774.486024px;}
.y1fb{bottom:776.350823px;}
.y27f{bottom:776.580339px;}
.y23d{bottom:776.746073px;}
.yd{bottom:778.711395px;}
.y76{bottom:779.548828px;}
.y1c2{bottom:782.241260px;}
.yd3{bottom:787.533142px;}
.y4a{bottom:788.415344px;}
.y19c{bottom:789.735260px;}
.y14a{bottom:789.739986px;}
.y12c{bottom:789.874969px;}
.ya3{bottom:790.635315px;}
.y1fa{bottom:791.344823px;}
.y27e{bottom:791.574339px;}
.y23c{bottom:791.740073px;}
.y117{bottom:793.203024px;}
.y1c1{bottom:797.235260px;}
.yc{bottom:797.461395px;}
.y75{bottom:798.298828px;}
.yd2{bottom:806.283142px;}
.y1f9{bottom:806.338823px;}
.y27d{bottom:806.568339px;}
.y23b{bottom:806.734073px;}
.y49{bottom:807.165344px;}
.y19b{bottom:808.485260px;}
.y149{bottom:808.489986px;}
.y12b{bottom:808.624969px;}
.ya2{bottom:809.385315px;}
.y116{bottom:811.920024px;}
.yb{bottom:816.211395px;}
.y74{bottom:817.048828px;}
.y1f8{bottom:821.332823px;}
.y27c{bottom:821.562339px;}
.y23a{bottom:821.728073px;}
.yd1{bottom:825.033142px;}
.y48{bottom:825.915344px;}
.y19a{bottom:827.235260px;}
.y148{bottom:827.239986px;}
.y12a{bottom:827.374969px;}
.ya1{bottom:828.135315px;}
.y115{bottom:830.637024px;}
.ya{bottom:834.961395px;}
.y1f7{bottom:836.326823px;}
.y27b{bottom:836.556339px;}
.y239{bottom:836.722073px;}
.yd0{bottom:843.783142px;}
.y47{bottom:844.665344px;}
.y199{bottom:845.985260px;}
.y147{bottom:845.989986px;}
.y129{bottom:846.124969px;}
.ya0{bottom:846.885315px;}
.y114{bottom:849.354024px;}
.y1f6{bottom:851.320823px;}
.y27a{bottom:851.550339px;}
.y238{bottom:851.716073px;}
.y73{bottom:854.548828px;}
.ycf{bottom:862.533142px;}
.y46{bottom:863.415344px;}
.y198{bottom:864.735260px;}
.y146{bottom:864.739986px;}
.y128{bottom:864.874969px;}
.y1f5{bottom:866.314823px;}
.y279{bottom:866.544339px;}
.y237{bottom:866.710073px;}
.y113{bottom:868.071024px;}
.y9{bottom:879.144153px;}
.yce{bottom:881.283142px;}
.y1f4{bottom:881.308823px;}
.y278{bottom:881.538339px;}
.y236{bottom:881.704073px;}
.y45{bottom:882.165344px;}
.y9f{bottom:883.485260px;}
.y145{bottom:883.489986px;}
.y127{bottom:883.624969px;}
.y112{bottom:886.788024px;}
.y8{bottom:894.138153px;}
.y1f3{bottom:896.302823px;}
.y72{bottom:896.482086px;}
.y277{bottom:896.532339px;}
.y235{bottom:896.698073px;}
.ycd{bottom:900.033142px;}
.y44{bottom:900.915344px;}
.y9e{bottom:902.235260px;}
.y144{bottom:902.239986px;}
.y111{bottom:905.505024px;}
.y1f2{bottom:911.296823px;}
.y276{bottom:911.526339px;}
.y234{bottom:911.692073px;}
.y71{bottom:915.232086px;}
.ycc{bottom:918.783142px;}
.y43{bottom:919.665344px;}
.y9d{bottom:920.985260px;}
.y143{bottom:920.989986px;}
.y110{bottom:924.222024px;}
.y1f1{bottom:926.290823px;}
.y275{bottom:926.520339px;}
.y233{bottom:926.686073px;}
.y70{bottom:933.982086px;}
.y7{bottom:936.738190px;}
.ycb{bottom:937.533142px;}
.y42{bottom:938.415344px;}
.y9c{bottom:939.735260px;}
.y142{bottom:939.739986px;}
.y1f0{bottom:941.284823px;}
.y274{bottom:941.514339px;}
.y232{bottom:941.680073px;}
.y158{bottom:942.862524px;}
.y10f{bottom:942.939024px;}
.y1ef{bottom:956.278823px;}
.yca{bottom:956.283142px;}
.y273{bottom:956.508339px;}
.y231{bottom:956.674073px;}
.y41{bottom:957.165344px;}
.y9b{bottom:958.485260px;}
.y141{bottom:958.489986px;}
.y10e{bottom:961.656024px;}
.y1ee{bottom:971.272823px;}
.y6f{bottom:971.482086px;}
.y272{bottom:971.502339px;}
.y230{bottom:971.668073px;}
.yc9{bottom:975.033142px;}
.y40{bottom:975.915344px;}
.y9a{bottom:977.235260px;}
.y140{bottom:977.239986px;}
.y10d{bottom:980.373024px;}
.y6{bottom:981.424622px;}
.y1ed{bottom:986.266823px;}
.y271{bottom:986.496339px;}
.y22f{bottom:986.662073px;}
.yc8{bottom:993.783142px;}
.y3f{bottom:994.665344px;}
.y197{bottom:995.985260px;}
.y13f{bottom:995.989986px;}
.y10c{bottom:999.090024px;}
.y1ec{bottom:1001.260823px;}
.y270{bottom:1001.490339px;}
.y22e{bottom:1001.656073px;}
.y5{bottom:1008.424622px;}
.yc7{bottom:1012.533142px;}
.y3e{bottom:1013.415344px;}
.y99{bottom:1014.735260px;}
.y13e{bottom:1014.739986px;}
.y1eb{bottom:1016.254823px;}
.y26f{bottom:1016.484339px;}
.y22d{bottom:1016.650073px;}
.y10b{bottom:1017.807024px;}
.y1ea{bottom:1031.248823px;}
.yc6{bottom:1031.283142px;}
.y26e{bottom:1031.478339px;}
.y22c{bottom:1031.644073px;}
.y3d{bottom:1032.165344px;}
.y196{bottom:1033.485260px;}
.y13d{bottom:1033.489986px;}
.y10a{bottom:1036.524024px;}
.y1e9{bottom:1046.242823px;}
.y26d{bottom:1046.472339px;}
.y22b{bottom:1046.638073px;}
.yc5{bottom:1050.033142px;}
.y3c{bottom:1050.915344px;}
.y195{bottom:1052.235260px;}
.y13c{bottom:1052.239986px;}
.y108{bottom:1060.114844px;}
.y1e8{bottom:1061.236823px;}
.y26c{bottom:1061.466339px;}
.y22a{bottom:1061.632073px;}
.y109{bottom:1064.612274px;}
.y3b{bottom:1069.665344px;}
.y98{bottom:1070.985260px;}
.y13b{bottom:1070.989986px;}
.y107{bottom:1075.108844px;}
.y4{bottom:1076.132080px;}
.y1e7{bottom:1076.230823px;}
.y26b{bottom:1076.460339px;}
.y229{bottom:1076.626073px;}
.yc4{bottom:1087.533142px;}
.y3a{bottom:1088.415344px;}
.y97{bottom:1089.735260px;}
.y13a{bottom:1089.739986px;}
.y106{bottom:1090.102844px;}
.y1e6{bottom:1091.224823px;}
.y26a{bottom:1091.454339px;}
.y228{bottom:1091.620073px;}
.y2f{bottom:1105.511993px;}
.y3{bottom:1109.586556px;}
.y2e{bottom:1126.555481px;}
.y2{bottom:1126.582306px;}
.y96{bottom:1127.482361px;}
.y39{bottom:1127.482544px;}
.hb{height:9.368556px;}
.hf{height:25.204199px;}
.he{height:36.006000px;}
.hd{height:36.855469px;}
.h12{height:39.818398px;}
.h2{height:42.048000px;}
.h9{height:42.360000px;}
.hc{height:42.519000px;}
.h3{height:44.676000px;}
.h13{height:45.186000px;}
.h14{height:52.173000px;}
.h8{height:53.160000px;}
.h4{height:55.461000px;}
.h11{height:59.004000px;}
.h7{height:59.340000px;}
.ha{height:61.380000px;}
.h6{height:64.866000px;}
.h10{height:71.208000px;}
.h5{height:85.056000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:68.622002px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:57.096634px;}
.x1{left:76.535402px;}
.x2{left:85.181849px;}
.xa{left:93.545402px;}
.xb{left:96.307045px;}
.x8{left:97.796100px;}
.xe{left:102.047253px;}
.x3{left:459.209372px;}
.x4{left:476.219372px;}
.xc{left:478.984222px;}
.xd{left:484.725290px;}
.x6{left:747.755997px;}
.x5{left:771.240326px;}
.x9{left:792.153442px;}
@media print{
.v2{vertical-align:-18.133382pt;}
.v3{vertical-align:-3.200196pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.133138pt;}
.v1{vertical-align:21.333333pt;}
.ls5d{letter-spacing:-1.360000pt;}
.ls5c{letter-spacing:-0.861333pt;}
.ls25{letter-spacing:-0.501088pt;}
.ls33{letter-spacing:-0.426667pt;}
.ls47{letter-spacing:-0.373333pt;}
.ls7a{letter-spacing:-0.362667pt;}
.ls5b{letter-spacing:-0.320000pt;}
.ls7b{letter-spacing:-0.317333pt;}
.ls8c{letter-spacing:-0.272000pt;}
.ls46{letter-spacing:-0.266667pt;}
.ls79{letter-spacing:-0.226667pt;}
.ls60{letter-spacing:-0.213333pt;}
.ls78{letter-spacing:-0.181333pt;}
.ls20{letter-spacing:-0.160000pt;}
.ls77{letter-spacing:-0.136000pt;}
.ls21{letter-spacing:-0.106667pt;}
.ls8b{letter-spacing:-0.090667pt;}
.ls22{letter-spacing:-0.053333pt;}
.ls8e{letter-spacing:-0.045333pt;}
.ls1f{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000076pt;}
.ls3{letter-spacing:0.000077pt;}
.ls2{letter-spacing:0.000079pt;}
.ls72{letter-spacing:0.045333pt;}
.ls6{letter-spacing:0.053333pt;}
.ls75{letter-spacing:0.090667pt;}
.ls5{letter-spacing:0.106667pt;}
.ls7f{letter-spacing:0.136000pt;}
.ls1d{letter-spacing:0.158926pt;}
.ls8{letter-spacing:0.160000pt;}
.ls67{letter-spacing:0.181333pt;}
.lsc{letter-spacing:0.184532pt;}
.ls61{letter-spacing:0.186667pt;}
.lse{letter-spacing:0.186686pt;}
.ls37{letter-spacing:0.212809pt;}
.lsb{letter-spacing:0.213325pt;}
.ls4{letter-spacing:0.213333pt;}
.ls1c{letter-spacing:0.214752pt;}
.ls1e{letter-spacing:0.226667pt;}
.ls6f{letter-spacing:0.234667pt;}
.ls1b{letter-spacing:0.238613pt;}
.ls30{letter-spacing:0.240000pt;}
.lsd{letter-spacing:0.247426pt;}
.ls45{letter-spacing:0.250667pt;}
.ls76{letter-spacing:0.256000pt;}
.ls57{letter-spacing:0.266530pt;}
.ls7{letter-spacing:0.266667pt;}
.ls2c{letter-spacing:0.271985pt;}
.ls83{letter-spacing:0.272000pt;}
.ls62{letter-spacing:0.283773pt;}
.ls5f{letter-spacing:0.304000pt;}
.ls73{letter-spacing:0.317333pt;}
.ls11{letter-spacing:0.320000pt;}
.ls44{letter-spacing:0.333333pt;}
.ls87{letter-spacing:0.340000pt;}
.ls66{letter-spacing:0.346667pt;}
.ls6b{letter-spacing:0.362667pt;}
.ls10{letter-spacing:0.373333pt;}
.ls23{letter-spacing:0.405643pt;}
.ls74{letter-spacing:0.408000pt;}
.ls28{letter-spacing:0.426667pt;}
.ls43{letter-spacing:0.441159pt;}
.ls6e{letter-spacing:0.453333pt;}
.lsa{letter-spacing:0.480000pt;}
.ls24{letter-spacing:0.489157pt;}
.ls69{letter-spacing:0.498667pt;}
.ls9{letter-spacing:0.533333pt;}
.ls81{letter-spacing:0.544000pt;}
.ls63{letter-spacing:0.560000pt;}
.ls88{letter-spacing:0.566667pt;}
.ls2a{letter-spacing:0.586667pt;}
.ls68{letter-spacing:0.589333pt;}
.ls14{letter-spacing:0.597322pt;}
.ls59{letter-spacing:0.613333pt;}
.ls70{letter-spacing:0.634667pt;}
.lsf{letter-spacing:0.640000pt;}
.ls8a{letter-spacing:0.657333pt;}
.ls65{letter-spacing:0.666667pt;}
.ls7d{letter-spacing:0.680000pt;}
.ls13{letter-spacing:0.693333pt;}
.ls71{letter-spacing:0.702667pt;}
.ls56{letter-spacing:0.709310pt;}
.ls64{letter-spacing:0.720000pt;}
.ls89{letter-spacing:0.725333pt;}
.ls15{letter-spacing:0.746667pt;}
.ls6d{letter-spacing:0.770667pt;}
.ls51{letter-spacing:0.773333pt;}
.ls36{letter-spacing:0.797852pt;}
.ls1a{letter-spacing:0.800000pt;}
.ls6c{letter-spacing:0.816000pt;}
.ls16{letter-spacing:0.826667pt;}
.ls17{letter-spacing:0.853333pt;}
.ls7c{letter-spacing:0.861333pt;}
.ls4d{letter-spacing:0.867188pt;}
.ls2b{letter-spacing:0.906667pt;}
.ls7e{letter-spacing:0.952000pt;}
.ls5a{letter-spacing:0.952533pt;}
.ls29{letter-spacing:0.960000pt;}
.ls55{letter-spacing:0.996781pt;}
.ls8f{letter-spacing:0.997333pt;}
.ls39{letter-spacing:1.013333pt;}
.ls90{letter-spacing:1.042667pt;}
.ls18{letter-spacing:1.066667pt;}
.ls85{letter-spacing:1.088000pt;}
.ls2e{letter-spacing:1.120000pt;}
.ls86{letter-spacing:1.133333pt;}
.ls26{letter-spacing:1.173333pt;}
.ls84{letter-spacing:1.178667pt;}
.ls2d{letter-spacing:1.226667pt;}
.ls50{letter-spacing:1.238932pt;}
.ls31{letter-spacing:1.253333pt;}
.ls4e{letter-spacing:1.280000pt;}
.ls58{letter-spacing:1.306667pt;}
.ls8d{letter-spacing:1.314667pt;}
.ls19{letter-spacing:1.322667pt;}
.ls32{letter-spacing:1.333333pt;}
.ls82{letter-spacing:1.337333pt;}
.ls5e{letter-spacing:1.386667pt;}
.ls41{letter-spacing:1.440000pt;}
.ls6a{letter-spacing:1.450667pt;}
.ls3c{letter-spacing:1.493333pt;}
.ls2f{letter-spacing:1.546667pt;}
.ls35{letter-spacing:1.566429pt;}
.ls80{letter-spacing:1.586667pt;}
.ls3b{letter-spacing:1.600000pt;}
.ls54{letter-spacing:1.601074pt;}
.ls49{letter-spacing:1.632524pt;}
.ls38{letter-spacing:1.653333pt;}
.ls4c{letter-spacing:1.674691pt;}
.ls3d{letter-spacing:1.706667pt;}
.ls12{letter-spacing:1.760000pt;}
.ls3e{letter-spacing:1.813333pt;}
.ls42{letter-spacing:1.866667pt;}
.ls4f{letter-spacing:1.882139pt;}
.ls53{letter-spacing:1.955291pt;}
.ls34{letter-spacing:1.973333pt;}
.ls40{letter-spacing:2.000000pt;}
.ls3a{letter-spacing:2.080000pt;}
.ls4b{letter-spacing:2.240000pt;}
.ls52{letter-spacing:2.293333pt;}
.ls48{letter-spacing:2.331227pt;}
.ls4a{letter-spacing:2.346667pt;}
.ls3f{letter-spacing:2.400000pt;}
.ls27{letter-spacing:2.453333pt;}
.ls0{letter-spacing:3.546667pt;}
.ws49{word-spacing:-15.733333pt;}
.ws4a{word-spacing:-14.346667pt;}
.ws62{word-spacing:-14.133333pt;}
.ws75{word-spacing:-14.080000pt;}
.ws26{word-spacing:-13.600000pt;}
.ws85{word-spacing:-13.440000pt;}
.ws48{word-spacing:-13.333333pt;}
.ws7e{word-spacing:-13.280000pt;}
.ws8a{word-spacing:-13.184000pt;}
.ws63{word-spacing:-12.928000pt;}
.ws87{word-spacing:-11.832000pt;}
.ws95{word-spacing:-11.560000pt;}
.ws89{word-spacing:-11.424000pt;}
.wsb{word-spacing:-11.333333pt;}
.ws47{word-spacing:-11.088000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.986667pt;}
.ws6{word-spacing:-10.720000pt;}
.ws64{word-spacing:-10.472000pt;}
.ws5{word-spacing:-10.346667pt;}
.ws7{word-spacing:-10.240000pt;}
.ws88{word-spacing:-9.202667pt;}
.ws1{word-spacing:-8.885333pt;}
.ws86{word-spacing:-8.568000pt;}
.ws0{word-spacing:-8.362667pt;}
.wsa{word-spacing:-7.933333pt;}
.ws3{word-spacing:-7.728000pt;}
.ws16{word-spacing:-6.666667pt;}
.ws9{word-spacing:-2.362272pt;}
.ws8{word-spacing:-2.278757pt;}
.wse{word-spacing:-1.333333pt;}
.ws11{word-spacing:-1.280000pt;}
.ws4e{word-spacing:-1.226667pt;}
.ws99{word-spacing:-1.178667pt;}
.ws94{word-spacing:-1.133333pt;}
.ws8e{word-spacing:-1.120000pt;}
.wscc{word-spacing:-1.088000pt;}
.ws50{word-spacing:-1.066667pt;}
.ws53{word-spacing:-1.013333pt;}
.ws5c{word-spacing:-0.960000pt;}
.ws65{word-spacing:-0.952533pt;}
.wsa0{word-spacing:-0.952000pt;}
.ws40{word-spacing:-0.906667pt;}
.ws9c{word-spacing:-0.861333pt;}
.ws61{word-spacing:-0.853333pt;}
.ws6a{word-spacing:-0.800000pt;}
.ws4b{word-spacing:-0.746667pt;}
.wsb1{word-spacing:-0.725333pt;}
.ws38{word-spacing:-0.693333pt;}
.wsa1{word-spacing:-0.680000pt;}
.wsf{word-spacing:-0.640000pt;}
.wsa2{word-spacing:-0.634667pt;}
.wsa5{word-spacing:-0.589333pt;}
.ws28{word-spacing:-0.586667pt;}
.ws25{word-spacing:-0.544000pt;}
.ws3f{word-spacing:-0.533333pt;}
.wsd{word-spacing:-0.506667pt;}
.wsab{word-spacing:-0.498667pt;}
.ws82{word-spacing:-0.480000pt;}
.ws29{word-spacing:-0.426667pt;}
.ws14{word-spacing:-0.373333pt;}
.ws7d{word-spacing:-0.320000pt;}
.wsc6{word-spacing:-0.317333pt;}
.wsc8{word-spacing:-0.272000pt;}
.ws1b{word-spacing:-0.266667pt;}
.ws4d{word-spacing:-0.250667pt;}
.ws22{word-spacing:-0.238613pt;}
.ws9d{word-spacing:-0.234667pt;}
.wsa4{word-spacing:-0.226667pt;}
.ws79{word-spacing:-0.213333pt;}
.ws10{word-spacing:-0.160000pt;}
.wsca{word-spacing:-0.136000pt;}
.ws37{word-spacing:-0.106667pt;}
.wsb0{word-spacing:-0.090667pt;}
.ws20{word-spacing:-0.053333pt;}
.wsc{word-spacing:0.000000pt;}
.wsc3{word-spacing:0.045333pt;}
.ws8b{word-spacing:0.053333pt;}
.ws36{word-spacing:0.160000pt;}
.wsc4{word-spacing:0.181333pt;}
.ws92{word-spacing:0.226667pt;}
.ws31{word-spacing:0.266667pt;}
.wsd1{word-spacing:0.272000pt;}
.ws93{word-spacing:0.317333pt;}
.ws18{word-spacing:0.373333pt;}
.wsc5{word-spacing:0.408000pt;}
.wsa3{word-spacing:0.453333pt;}
.ws23{word-spacing:0.501088pt;}
.ws4f{word-spacing:0.533333pt;}
.ws8d{word-spacing:0.586667pt;}
.wsaa{word-spacing:0.589333pt;}
.ws15{word-spacing:0.640000pt;}
.ws51{word-spacing:0.693333pt;}
.ws81{word-spacing:0.746667pt;}
.wsa6{word-spacing:0.770667pt;}
.ws5a{word-spacing:0.800000pt;}
.ws41{word-spacing:0.853333pt;}
.wsa9{word-spacing:0.861333pt;}
.ws12{word-spacing:0.906667pt;}
.ws6e{word-spacing:0.960000pt;}
.ws52{word-spacing:1.013333pt;}
.ws9f{word-spacing:1.042667pt;}
.ws30{word-spacing:1.120000pt;}
.ws97{word-spacing:1.133333pt;}
.ws58{word-spacing:1.173333pt;}
.wsb3{word-spacing:1.178667pt;}
.wsb6{word-spacing:1.224000pt;}
.ws44{word-spacing:1.226667pt;}
.ws96{word-spacing:1.269333pt;}
.ws21{word-spacing:1.280000pt;}
.wsb7{word-spacing:1.314667pt;}
.ws13{word-spacing:1.333333pt;}
.ws55{word-spacing:1.386667pt;}
.ws19{word-spacing:1.440000pt;}
.wsae{word-spacing:1.450667pt;}
.ws2a{word-spacing:1.493333pt;}
.ws2f{word-spacing:1.546667pt;}
.ws9e{word-spacing:1.586667pt;}
.ws2b{word-spacing:1.600000pt;}
.wsd2{word-spacing:1.632000pt;}
.ws35{word-spacing:1.653333pt;}
.wsb2{word-spacing:1.677333pt;}
.ws56{word-spacing:1.706667pt;}
.wsa8{word-spacing:1.722667pt;}
.ws1a{word-spacing:1.760000pt;}
.wsad{word-spacing:1.768000pt;}
.ws2d{word-spacing:1.813333pt;}
.ws6b{word-spacing:1.866667pt;}
.ws2e{word-spacing:1.920000pt;}
.wsc9{word-spacing:1.949333pt;}
.ws3a{word-spacing:2.026667pt;}
.wsb5{word-spacing:2.040000pt;}
.ws1c{word-spacing:2.080000pt;}
.wsac{word-spacing:2.085333pt;}
.wsb9{word-spacing:2.130667pt;}
.ws1f{word-spacing:2.133333pt;}
.ws9b{word-spacing:2.176000pt;}
.ws3c{word-spacing:2.186667pt;}
.ws45{word-spacing:2.240000pt;}
.wsbb{word-spacing:2.266667pt;}
.ws32{word-spacing:2.293333pt;}
.ws1d{word-spacing:2.346667pt;}
.wsc0{word-spacing:2.357333pt;}
.ws77{word-spacing:2.400000pt;}
.ws9a{word-spacing:2.402667pt;}
.wsa7{word-spacing:2.493333pt;}
.ws90{word-spacing:2.506667pt;}
.wsb4{word-spacing:2.538667pt;}
.ws34{word-spacing:2.560000pt;}
.ws57{word-spacing:2.613333pt;}
.ws7c{word-spacing:2.666667pt;}
.ws33{word-spacing:2.720000pt;}
.ws5b{word-spacing:2.826667pt;}
.wscd{word-spacing:2.856000pt;}
.ws7a{word-spacing:2.933333pt;}
.wsc2{word-spacing:2.946667pt;}
.ws6c{word-spacing:2.986667pt;}
.wsbc{word-spacing:2.992000pt;}
.wsaf{word-spacing:3.037333pt;}
.wsc7{word-spacing:3.082667pt;}
.wscb{word-spacing:3.128000pt;}
.ws68{word-spacing:3.146667pt;}
.wsba{word-spacing:3.173333pt;}
.ws42{word-spacing:3.200000pt;}
.ws8c{word-spacing:3.253333pt;}
.ws5d{word-spacing:3.306667pt;}
.ws1e{word-spacing:3.360000pt;}
.wscf{word-spacing:3.400000pt;}
.ws91{word-spacing:3.413333pt;}
.ws6d{word-spacing:3.520000pt;}
.ws3e{word-spacing:3.573333pt;}
.ws60{word-spacing:3.626667pt;}
.ws3b{word-spacing:3.680000pt;}
.wsce{word-spacing:3.717333pt;}
.ws54{word-spacing:3.733333pt;}
.wsbf{word-spacing:3.808000pt;}
.ws84{word-spacing:3.840000pt;}
.ws27{word-spacing:3.893333pt;}
.wsc1{word-spacing:3.898667pt;}
.ws8f{word-spacing:4.000000pt;}
.wsbe{word-spacing:4.125333pt;}
.ws39{word-spacing:4.160000pt;}
.ws5f{word-spacing:4.213333pt;}
.ws43{word-spacing:4.266667pt;}
.ws80{word-spacing:4.480000pt;}
.ws6f{word-spacing:4.533333pt;}
.ws46{word-spacing:4.693333pt;}
.ws59{word-spacing:4.800000pt;}
.wsd0{word-spacing:4.805333pt;}
.ws7b{word-spacing:4.853333pt;}
.ws83{word-spacing:4.906667pt;}
.ws7f{word-spacing:4.960000pt;}
.wsbd{word-spacing:4.986667pt;}
.ws78{word-spacing:5.013333pt;}
.ws67{word-spacing:5.493333pt;}
.ws98{word-spacing:5.576000pt;}
.ws3d{word-spacing:5.653333pt;}
.ws69{word-spacing:5.706667pt;}
.ws76{word-spacing:5.760000pt;}
.ws66{word-spacing:5.920000pt;}
.ws5e{word-spacing:6.186667pt;}
.wsb8{word-spacing:6.210667pt;}
.ws17{word-spacing:6.880000pt;}
.ws4c{word-spacing:7.840000pt;}
.ws2c{word-spacing:10.186667pt;}
.wsd3{word-spacing:12.013333pt;}
.wsd4{word-spacing:15.640000pt;}
.ws71{word-spacing:28.288000pt;}
.ws24{word-spacing:64.237333pt;}
.ws70{word-spacing:64.958133pt;}
.ws73{word-spacing:121.040000pt;}
.ws74{word-spacing:147.968000pt;}
.ws72{word-spacing:241.672000pt;}
._a{margin-left:-2630.557284pt;}
._b{margin-left:-86.133333pt;}
._5c{margin-left:-16.048000pt;}
._7{margin-left:-14.733333pt;}
._57{margin-left:-13.690667pt;}
._11{margin-left:-12.586667pt;}
._5b{margin-left:-11.288000pt;}
._5a{margin-left:-9.928000pt;}
._4f{margin-left:-8.035224pt;}
._13{margin-left:-6.720000pt;}
._6{margin-left:-5.333333pt;}
._10{margin-left:-4.098115pt;}
._4{margin-left:-3.142437pt;}
._0{margin-left:-1.450667pt;}
._2{width:1.171218pt;}
._1{width:2.124800pt;}
._e{width:4.507770pt;}
._f{width:5.408000pt;}
._54{width:6.845333pt;}
._50{width:8.205333pt;}
._12{width:9.792000pt;}
._5{width:12.000000pt;}
._14{width:13.872000pt;}
._3{width:15.050654pt;}
._8{width:16.320000pt;}
._59{width:18.178667pt;}
._58{width:19.765333pt;}
._56{width:20.882667pt;}
._55{width:22.472000pt;}
._53{width:23.392000pt;}
._51{width:24.933333pt;}
._52{width:26.112000pt;}
._d{width:31.295442pt;}
._19{width:39.167984pt;}
._18{width:40.482667pt;}
._2a{width:43.300782pt;}
._45{width:46.920000pt;}
._9{width:48.552000pt;}
._16{width:51.000000pt;}
._44{width:57.509885pt;}
._2b{width:76.386667pt;}
._32{width:85.426115pt;}
._43{width:92.986115pt;}
._47{width:93.986661pt;}
._3c{width:97.190149pt;}
._38{width:102.725333pt;}
._4e{width:116.922115pt;}
._37{width:122.898667pt;}
._1c{width:132.373333pt;}
._25{width:135.456000pt;}
._49{width:137.949333pt;}
._35{width:145.928000pt;}
._28{width:149.599993pt;}
._3d{width:154.269333pt;}
._3e{width:156.264000pt;}
._27{width:158.077333pt;}
._1e{width:159.301333pt;}
._29{width:163.109333pt;}
._1a{width:164.378667pt;}
._39{width:166.328000pt;}
._23{width:170.234115pt;}
._26{width:171.281315pt;}
._1d{width:172.266660pt;}
._22{width:178.250667pt;}
._4d{width:182.519448pt;}
._33{width:185.776000pt;}
._17{width:189.818115pt;}
._3f{width:194.895441pt;}
._40{width:199.829333pt;}
._4b{width:202.232000pt;}
._36{width:204.136000pt;}
._42{width:205.949333pt;}
._2c{width:209.091770pt;}
._4c{width:210.036782pt;}
._34{width:211.706667pt;}
._1b{width:216.335200pt;}
._41{width:218.964533pt;}
._4a{width:228.514672pt;}
._3b{width:236.413333pt;}
._1f{width:239.224000pt;}
._20{width:243.712000pt;}
._2e{width:245.316782pt;}
._3a{width:250.557333pt;}
._30{width:257.040000pt;}
._24{width:273.224000pt;}
._2d{width:274.225867pt;}
._21{width:306.456248pt;}
._2f{width:307.725575pt;}
._46{width:311.304000pt;}
._31{width:324.458115pt;}
._15{width:353.509333pt;}
._48{width:396.032000pt;}
._c{width:1909.077272pt;}
.fs6{font-size:11.930667pt;}
.fs7{font-size:31.733332pt;}
.fs5{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fsa{font-size:50.133331pt;}
.fs2{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:18.705322pt;}
.y1{bottom:61.777466pt;}
.y38{bottom:100.389600pt;}
.y6e{bottom:100.813639pt;}
.y1e5{bottom:101.456271pt;}
.y95{bottom:101.717590pt;}
.y162{bottom:101.834941pt;}
.y1c0{bottom:101.986898pt;}
.yc3{bottom:101.986938pt;}
.y182{bottom:102.110942pt;}
.y227{bottom:103.657620pt;}
.y269{bottom:104.008954pt;}
.y2d{bottom:108.854533pt;}
.y102{bottom:108.860270pt;}
.y1e4{bottom:114.784271pt;}
.y226{bottom:116.985620pt;}
.y268{bottom:117.336954pt;}
.y6d{bottom:117.480306pt;}
.y37{bottom:118.250936pt;}
.y94{bottom:118.384257pt;}
.y161{bottom:118.501607pt;}
.y1bf{bottom:118.653564pt;}
.yc2{bottom:118.653605pt;}
.y181{bottom:118.777608pt;}
.y2c{bottom:125.521200pt;}
.y101{bottom:125.526937pt;}
.y225{bottom:130.313620pt;}
.y267{bottom:130.664954pt;}
.yef{bottom:133.362803pt;}
.y36{bottom:133.764936pt;}
.y6c{bottom:134.146973pt;}
.y93{bottom:135.050924pt;}
.y160{bottom:135.168274pt;}
.y1be{bottom:135.320231pt;}
.yc1{bottom:135.320272pt;}
.y180{bottom:135.444275pt;}
.y2b{bottom:142.187866pt;}
.y100{bottom:142.193604pt;}
.y224{bottom:143.641620pt;}
.y266{bottom:143.992954pt;}
.y1e3{bottom:144.784271pt;}
.yee{bottom:150.029470pt;}
.y6b{bottom:150.813639pt;}
.y35{bottom:151.626272pt;}
.y92{bottom:151.717590pt;}
.y15f{bottom:151.834941pt;}
.y1bd{bottom:151.986898pt;}
.yc0{bottom:151.986938pt;}
.y17f{bottom:152.110942pt;}
.y223{bottom:156.969620pt;}
.y265{bottom:157.320954pt;}
.y2a{bottom:158.854533pt;}
.y105{bottom:158.860270pt;}
.yff{bottom:159.660268pt;}
.yed{bottom:166.696136pt;}
.y34{bottom:167.140262pt;}
.y6a{bottom:167.480306pt;}
.y91{bottom:168.384257pt;}
.y15e{bottom:168.501607pt;}
.y1bc{bottom:168.653564pt;}
.ybf{bottom:168.653605pt;}
.y17e{bottom:168.777608pt;}
.y222{bottom:170.297620pt;}
.y264{bottom:170.648954pt;}
.y29{bottom:175.521200pt;}
.yfe{bottom:175.526937pt;}
.y221{bottom:183.625620pt;}
.y263{bottom:183.976954pt;}
.y69{bottom:184.146973pt;}
.y33{bottom:185.001607pt;}
.y90{bottom:185.050924pt;}
.y15d{bottom:185.168274pt;}
.y1bb{bottom:185.320231pt;}
.ybe{bottom:185.320272pt;}
.y17d{bottom:185.444275pt;}
.y28{bottom:192.187866pt;}
.yfd{bottom:192.193604pt;}
.y220{bottom:196.953620pt;}
.y262{bottom:197.304954pt;}
.yec{bottom:200.029460pt;}
.y68{bottom:200.813639pt;}
.y8f{bottom:201.717590pt;}
.y15c{bottom:201.834941pt;}
.y1ba{bottom:201.986898pt;}
.ybd{bottom:201.986938pt;}
.y17c{bottom:202.110942pt;}
.y1e2{bottom:205.402938pt;}
.y32{bottom:207.224266pt;}
.y27{bottom:208.854533pt;}
.yfc{bottom:209.660258pt;}
.y21f{bottom:210.281620pt;}
.y261{bottom:210.632954pt;}
.y67{bottom:217.480306pt;}
.y8e{bottom:218.384257pt;}
.y15b{bottom:218.501607pt;}
.y1b9{bottom:218.653564pt;}
.ybc{bottom:218.653605pt;}
.y1e1{bottom:218.730938pt;}
.y17b{bottom:218.777608pt;}
.y31{bottom:220.552266pt;}
.y21e{bottom:223.609620pt;}
.y260{bottom:223.960954pt;}
.y26{bottom:225.521200pt;}
.yfb{bottom:225.526937pt;}
.y1e0{bottom:232.058938pt;}
.y66{bottom:234.146973pt;}
.y8d{bottom:235.050924pt;}
.y1b8{bottom:235.320231pt;}
.ybb{bottom:235.320272pt;}
.y17a{bottom:235.444275pt;}
.y21d{bottom:236.937620pt;}
.y25f{bottom:237.288954pt;}
.y25{bottom:242.187866pt;}
.yfa{bottom:242.193604pt;}
.y1df{bottom:245.386938pt;}
.yeb{bottom:250.029460pt;}
.y21c{bottom:250.265620pt;}
.y25e{bottom:250.616954pt;}
.y65{bottom:250.813639pt;}
.y8c{bottom:251.717590pt;}
.y1b7{bottom:251.986898pt;}
.yba{bottom:251.986938pt;}
.y179{bottom:252.110942pt;}
.y1de{bottom:258.714938pt;}
.y24{bottom:258.854533pt;}
.y104{bottom:258.860270pt;}
.yf9{bottom:259.660258pt;}
.y21b{bottom:263.593620pt;}
.y25d{bottom:263.944954pt;}
.yea{bottom:266.696126pt;}
.y64{bottom:267.480306pt;}
.y8b{bottom:268.384257pt;}
.y1b6{bottom:268.653564pt;}
.yb9{bottom:268.653605pt;}
.y178{bottom:268.777608pt;}
.y1dd{bottom:272.042938pt;}
.y23{bottom:275.521200pt;}
.yf8{bottom:275.526937pt;}
.y21a{bottom:276.921620pt;}
.y25c{bottom:277.272954pt;}
.ye9{bottom:283.362793pt;}
.y63{bottom:284.146973pt;}
.y1b5{bottom:285.320231pt;}
.yb8{bottom:285.320272pt;}
.y1dc{bottom:285.370938pt;}
.y177{bottom:285.444275pt;}
.y219{bottom:290.249620pt;}
.y25b{bottom:290.600954pt;}
.y22{bottom:292.187866pt;}
.yf7{bottom:292.193604pt;}
.y1db{bottom:298.698938pt;}
.ye8{bottom:300.029460pt;}
.y62{bottom:300.813639pt;}
.y8a{bottom:301.717590pt;}
.y1b4{bottom:301.986898pt;}
.yb7{bottom:301.986938pt;}
.y176{bottom:302.110921pt;}
.y194{bottom:302.110942pt;}
.y218{bottom:303.577620pt;}
.y25a{bottom:303.928954pt;}
.y21{bottom:308.854533pt;}
.yf6{bottom:308.860270pt;}
.y1da{bottom:312.026938pt;}
.ye7{bottom:316.696126pt;}
.y217{bottom:316.905620pt;}
.y259{bottom:317.256954pt;}
.y61{bottom:317.480306pt;}
.y1b3{bottom:318.653564pt;}
.yb6{bottom:318.653605pt;}
.y175{bottom:318.777588pt;}
.y193{bottom:318.777608pt;}
.y1d9{bottom:325.354938pt;}
.y103{bottom:325.526937pt;}
.yf5{bottom:326.326925pt;}
.y216{bottom:330.233620pt;}
.y258{bottom:330.584954pt;}
.ye6{bottom:333.362793pt;}
.y60{bottom:334.146973pt;}
.y1b2{bottom:335.320231pt;}
.yb5{bottom:335.320272pt;}
.y174{bottom:335.444255pt;}
.y192{bottom:335.444275pt;}
.y1d8{bottom:338.682938pt;}
.y89{bottom:338.991618pt;}
.yf4{bottom:342.193604pt;}
.y215{bottom:343.561620pt;}
.y257{bottom:343.912954pt;}
.y5f{bottom:350.813639pt;}
.y1b1{bottom:351.986898pt;}
.yb4{bottom:351.986938pt;}
.y1d7{bottom:352.010938pt;}
.y173{bottom:352.110921pt;}
.y191{bottom:352.110942pt;}
.y88{bottom:355.658285pt;}
.y214{bottom:356.889620pt;}
.y256{bottom:357.240954pt;}
.y20{bottom:358.854533pt;}
.yf3{bottom:358.860270pt;}
.ye5{bottom:366.696126pt;}
.y5e{bottom:367.480306pt;}
.y1b0{bottom:368.653564pt;}
.yb3{bottom:368.653605pt;}
.y172{bottom:368.777588pt;}
.y190{bottom:368.777608pt;}
.y213{bottom:370.217620pt;}
.y255{bottom:370.568954pt;}
.y87{bottom:372.324951pt;}
.y1f{bottom:375.521200pt;}
.yf2{bottom:375.526937pt;}
.y212{bottom:383.545620pt;}
.y254{bottom:383.896954pt;}
.y5d{bottom:384.146973pt;}
.y1af{bottom:385.320231pt;}
.yb2{bottom:385.320272pt;}
.y1d6{bottom:385.330938pt;}
.y171{bottom:385.444255pt;}
.y18f{bottom:385.444275pt;}
.y86{bottom:388.991618pt;}
.yf1{bottom:392.193604pt;}
.y211{bottom:396.873620pt;}
.y253{bottom:397.224954pt;}
.y1d5{bottom:398.658938pt;}
.y5c{bottom:400.813639pt;}
.y1ae{bottom:401.986898pt;}
.yb1{bottom:401.986938pt;}
.y170{bottom:402.110921pt;}
.y18e{bottom:402.110942pt;}
.y85{bottom:405.658285pt;}
.y1e{bottom:408.854533pt;}
.yf0{bottom:409.660278pt;}
.y210{bottom:410.201620pt;}
.y252{bottom:410.552954pt;}
.y1d4{bottom:411.986938pt;}
.ye4{bottom:416.696126pt;}
.y5b{bottom:417.480306pt;}
.y15a{bottom:418.528674pt;}
.y1ad{bottom:418.653564pt;}
.yb0{bottom:418.653605pt;}
.y16f{bottom:418.777588pt;}
.y18d{bottom:418.777608pt;}
.y126{bottom:421.940021pt;}
.y84{bottom:422.324951pt;}
.y20f{bottom:423.529620pt;}
.y251{bottom:423.880954pt;}
.y1d{bottom:425.521200pt;}
.y159{bottom:431.856674pt;}
.ye3{bottom:433.362793pt;}
.y5a{bottom:434.146973pt;}
.y125{bottom:435.268021pt;}
.y1ac{bottom:435.320231pt;}
.yaf{bottom:435.320272pt;}
.y16e{bottom:435.444255pt;}
.y18c{bottom:435.444275pt;}
.y20e{bottom:436.857620pt;}
.y250{bottom:437.208954pt;}
.y1d3{bottom:438.653605pt;}
.y83{bottom:438.991618pt;}
.y1c{bottom:442.187866pt;}
.ye2{bottom:450.029460pt;}
.y20d{bottom:450.185620pt;}
.y24f{bottom:450.536954pt;}
.y59{bottom:450.813639pt;}
.y1ab{bottom:451.986898pt;}
.yae{bottom:451.986938pt;}
.y16d{bottom:452.110921pt;}
.y18b{bottom:452.110942pt;}
.y1b{bottom:458.854533pt;}
.y20c{bottom:463.513620pt;}
.y24e{bottom:463.864954pt;}
.ye1{bottom:466.696126pt;}
.y58{bottom:467.480306pt;}
.y1aa{bottom:468.653564pt;}
.yad{bottom:468.653605pt;}
.y1d2{bottom:468.738231pt;}
.y16c{bottom:468.777588pt;}
.y18a{bottom:468.777608pt;}
.y82{bottom:472.324951pt;}
.y1a{bottom:475.521200pt;}
.y20b{bottom:476.841620pt;}
.y24d{bottom:477.192954pt;}
.y1d1{bottom:482.066231pt;}
.ye0{bottom:483.362793pt;}
.y57{bottom:484.146973pt;}
.y1a9{bottom:485.320231pt;}
.yac{bottom:485.320272pt;}
.y157{bottom:485.324432pt;}
.y16b{bottom:485.444255pt;}
.y189{bottom:485.444275pt;}
.y139{bottom:485.444417pt;}
.y124{bottom:488.716021pt;}
.y20a{bottom:490.169620pt;}
.y28d{bottom:490.282969pt;}
.y24c{bottom:490.520954pt;}
.y19{bottom:492.187866pt;}
.y1d0{bottom:495.394231pt;}
.ydf{bottom:500.029460pt;}
.y56{bottom:500.813639pt;}
.y1a8{bottom:501.986898pt;}
.yab{bottom:501.986938pt;}
.y156{bottom:501.991099pt;}
.y16a{bottom:502.110921pt;}
.y188{bottom:502.110942pt;}
.y138{bottom:502.111084pt;}
.y209{bottom:503.497620pt;}
.y28c{bottom:503.610969pt;}
.y24b{bottom:503.848954pt;}
.y123{bottom:505.421355pt;}
.y1cf{bottom:508.722231pt;}
.y18{bottom:508.854533pt;}
.y81{bottom:509.598958pt;}
.yde{bottom:516.696126pt;}
.y208{bottom:516.825620pt;}
.y24a{bottom:517.176954pt;}
.y55{bottom:517.480306pt;}
.y1a7{bottom:518.653564pt;}
.yaa{bottom:518.653605pt;}
.y155{bottom:518.657766pt;}
.y169{bottom:518.777588pt;}
.y187{bottom:518.777608pt;}
.y137{bottom:518.777751pt;}
.y1ce{bottom:522.050231pt;}
.y122{bottom:522.058688pt;}
.y17{bottom:525.521200pt;}
.y80{bottom:526.265625pt;}
.y207{bottom:530.153620pt;}
.y28b{bottom:530.357635pt;}
.y249{bottom:530.504954pt;}
.ydd{bottom:533.362793pt;}
.y54{bottom:534.146973pt;}
.y1a6{bottom:535.320231pt;}
.y154{bottom:535.324432pt;}
.y1cd{bottom:535.378231pt;}
.y168{bottom:535.444255pt;}
.y186{bottom:535.444275pt;}
.y136{bottom:535.444417pt;}
.y121{bottom:538.696021pt;}
.y16{bottom:542.187907pt;}
.y7f{bottom:542.932292pt;}
.y206{bottom:543.481620pt;}
.y28a{bottom:543.685635pt;}
.y248{bottom:543.832954pt;}
.y1cc{bottom:548.706231pt;}
.ydc{bottom:550.029460pt;}
.y53{bottom:550.813639pt;}
.y1a5{bottom:551.986898pt;}
.ya9{bottom:551.986938pt;}
.y153{bottom:551.991099pt;}
.y167{bottom:552.110921pt;}
.y185{bottom:552.110942pt;}
.y135{bottom:552.111084pt;}
.y120{bottom:555.333355pt;}
.y205{bottom:556.809620pt;}
.y289{bottom:557.013635pt;}
.y247{bottom:557.160954pt;}
.y15{bottom:558.854574pt;}
.y7e{bottom:559.598958pt;}
.y1cb{bottom:562.034231pt;}
.ydb{bottom:566.696126pt;}
.y52{bottom:567.480306pt;}
.y1a4{bottom:568.653564pt;}
.y152{bottom:568.657766pt;}
.y166{bottom:568.777588pt;}
.y184{bottom:568.777608pt;}
.y134{bottom:568.777751pt;}
.y204{bottom:570.137620pt;}
.y288{bottom:570.341635pt;}
.y246{bottom:570.488954pt;}
.y11f{bottom:571.970688pt;}
.y1ca{bottom:575.362231pt;}
.y14{bottom:575.521240pt;}
.y7d{bottom:576.265625pt;}
.yda{bottom:583.362793pt;}
.y203{bottom:583.465620pt;}
.y287{bottom:583.669635pt;}
.y245{bottom:583.816954pt;}
.y51{bottom:584.146973pt;}
.y1a3{bottom:585.320231pt;}
.y151{bottom:585.324432pt;}
.y165{bottom:585.444255pt;}
.y183{bottom:585.444275pt;}
.y133{bottom:585.444417pt;}
.y11e{bottom:588.608021pt;}
.y1c9{bottom:588.690231pt;}
.y164{bottom:588.709720pt;}
.y13{bottom:592.187907pt;}
.y7c{bottom:592.932292pt;}
.y202{bottom:596.793620pt;}
.y286{bottom:596.997635pt;}
.y244{bottom:597.144954pt;}
.yd9{bottom:600.029460pt;}
.y50{bottom:600.813639pt;}
.y1a2{bottom:601.986898pt;}
.ya8{bottom:601.986938pt;}
.y150{bottom:601.991099pt;}
.y1c8{bottom:602.018231pt;}
.y163{bottom:602.037720pt;}
.y132{bottom:602.111084pt;}
.y11d{bottom:605.245355pt;}
.y12{bottom:608.854574pt;}
.y7b{bottom:609.598958pt;}
.y201{bottom:610.121620pt;}
.y285{bottom:610.325635pt;}
.y243{bottom:610.472954pt;}
.y1c7{bottom:615.346231pt;}
.yd8{bottom:616.696126pt;}
.y4f{bottom:617.480306pt;}
.y1a1{bottom:618.653564pt;}
.ya7{bottom:618.653605pt;}
.y14f{bottom:618.657766pt;}
.y131{bottom:618.777751pt;}
.y11c{bottom:621.882688pt;}
.y200{bottom:623.449620pt;}
.y284{bottom:623.653635pt;}
.y242{bottom:623.800954pt;}
.y11{bottom:625.521240pt;}
.y7a{bottom:626.265625pt;}
.y1c6{bottom:628.674231pt;}
.yd7{bottom:633.362793pt;}
.y4e{bottom:634.146973pt;}
.y1a0{bottom:635.320231pt;}
.ya6{bottom:635.320272pt;}
.y14e{bottom:635.324432pt;}
.y130{bottom:635.444417pt;}
.y1ff{bottom:636.777620pt;}
.y283{bottom:636.981635pt;}
.y241{bottom:637.128954pt;}
.y11b{bottom:638.520021pt;}
.y1c5{bottom:642.002231pt;}
.y10{bottom:642.187907pt;}
.y79{bottom:642.932292pt;}
.yd6{bottom:650.029460pt;}
.y1fe{bottom:650.105620pt;}
.y282{bottom:650.309635pt;}
.y240{bottom:650.456954pt;}
.y4d{bottom:650.813639pt;}
.y19f{bottom:651.986898pt;}
.y14d{bottom:651.991099pt;}
.y12f{bottom:652.111084pt;}
.y11a{bottom:655.157355pt;}
.y1c4{bottom:655.330231pt;}
.yf{bottom:658.854574pt;}
.y78{bottom:659.598958pt;}
.y1fd{bottom:663.433620pt;}
.y281{bottom:663.637635pt;}
.y23f{bottom:663.784954pt;}
.yd5{bottom:666.696126pt;}
.y4c{bottom:667.480306pt;}
.y19e{bottom:668.653564pt;}
.y14c{bottom:668.657766pt;}
.y1c3{bottom:668.658231pt;}
.y12e{bottom:668.777751pt;}
.ya5{bottom:669.453613pt;}
.y119{bottom:671.794688pt;}
.ye{bottom:675.521240pt;}
.y77{bottom:676.265625pt;}
.y1fc{bottom:676.761620pt;}
.y280{bottom:676.965635pt;}
.y23e{bottom:677.112954pt;}
.yd4{bottom:683.362793pt;}
.y4b{bottom:684.146973pt;}
.y19d{bottom:685.320231pt;}
.y14b{bottom:685.324432pt;}
.y12d{bottom:685.444417pt;}
.ya4{bottom:686.120280pt;}
.y118{bottom:688.432021pt;}
.y1fb{bottom:690.089620pt;}
.y27f{bottom:690.293635pt;}
.y23d{bottom:690.440954pt;}
.yd{bottom:692.187907pt;}
.y76{bottom:692.932292pt;}
.y1c2{bottom:695.325564pt;}
.yd3{bottom:700.029460pt;}
.y4a{bottom:700.813639pt;}
.y19c{bottom:701.986898pt;}
.y14a{bottom:701.991099pt;}
.y12c{bottom:702.111084pt;}
.ya3{bottom:702.786947pt;}
.y1fa{bottom:703.417620pt;}
.y27e{bottom:703.621635pt;}
.y23c{bottom:703.768954pt;}
.y117{bottom:705.069355pt;}
.y1c1{bottom:708.653564pt;}
.yc{bottom:708.854574pt;}
.y75{bottom:709.598958pt;}
.yd2{bottom:716.696126pt;}
.y1f9{bottom:716.745620pt;}
.y27d{bottom:716.949635pt;}
.y23b{bottom:717.096954pt;}
.y49{bottom:717.480306pt;}
.y19b{bottom:718.653564pt;}
.y149{bottom:718.657766pt;}
.y12b{bottom:718.777751pt;}
.ya2{bottom:719.453613pt;}
.y116{bottom:721.706688pt;}
.yb{bottom:725.521240pt;}
.y74{bottom:726.265625pt;}
.y1f8{bottom:730.073620pt;}
.y27c{bottom:730.277635pt;}
.y23a{bottom:730.424954pt;}
.yd1{bottom:733.362793pt;}
.y48{bottom:734.146973pt;}
.y19a{bottom:735.320231pt;}
.y148{bottom:735.324432pt;}
.y12a{bottom:735.444417pt;}
.ya1{bottom:736.120280pt;}
.y115{bottom:738.344021pt;}
.ya{bottom:742.187907pt;}
.y1f7{bottom:743.401620pt;}
.y27b{bottom:743.605635pt;}
.y239{bottom:743.752954pt;}
.yd0{bottom:750.029460pt;}
.y47{bottom:750.813639pt;}
.y199{bottom:751.986898pt;}
.y147{bottom:751.991099pt;}
.y129{bottom:752.111084pt;}
.ya0{bottom:752.786947pt;}
.y114{bottom:754.981355pt;}
.y1f6{bottom:756.729620pt;}
.y27a{bottom:756.933635pt;}
.y238{bottom:757.080954pt;}
.y73{bottom:759.598958pt;}
.ycf{bottom:766.696126pt;}
.y46{bottom:767.480306pt;}
.y198{bottom:768.653564pt;}
.y146{bottom:768.657766pt;}
.y128{bottom:768.777751pt;}
.y1f5{bottom:770.057620pt;}
.y279{bottom:770.261635pt;}
.y237{bottom:770.408954pt;}
.y113{bottom:771.618688pt;}
.y9{bottom:781.461469pt;}
.yce{bottom:783.362793pt;}
.y1f4{bottom:783.385620pt;}
.y278{bottom:783.589635pt;}
.y236{bottom:783.736954pt;}
.y45{bottom:784.146973pt;}
.y9f{bottom:785.320231pt;}
.y145{bottom:785.324432pt;}
.y127{bottom:785.444417pt;}
.y112{bottom:788.256021pt;}
.y8{bottom:794.789469pt;}
.y1f3{bottom:796.713620pt;}
.y72{bottom:796.872965pt;}
.y277{bottom:796.917635pt;}
.y235{bottom:797.064954pt;}
.ycd{bottom:800.029460pt;}
.y44{bottom:800.813639pt;}
.y9e{bottom:801.986898pt;}
.y144{bottom:801.991099pt;}
.y111{bottom:804.893355pt;}
.y1f2{bottom:810.041620pt;}
.y276{bottom:810.245635pt;}
.y234{bottom:810.392954pt;}
.y71{bottom:813.539632pt;}
.ycc{bottom:816.696126pt;}
.y43{bottom:817.480306pt;}
.y9d{bottom:818.653564pt;}
.y143{bottom:818.657766pt;}
.y110{bottom:821.530688pt;}
.y1f1{bottom:823.369620pt;}
.y275{bottom:823.573635pt;}
.y233{bottom:823.720954pt;}
.y70{bottom:830.206299pt;}
.y7{bottom:832.656169pt;}
.ycb{bottom:833.362793pt;}
.y42{bottom:834.146973pt;}
.y9c{bottom:835.320231pt;}
.y142{bottom:835.324432pt;}
.y1f0{bottom:836.697620pt;}
.y274{bottom:836.901635pt;}
.y232{bottom:837.048954pt;}
.y158{bottom:838.100021pt;}
.y10f{bottom:838.168021pt;}
.y1ef{bottom:850.025620pt;}
.yca{bottom:850.029460pt;}
.y273{bottom:850.229635pt;}
.y231{bottom:850.376954pt;}
.y41{bottom:850.813639pt;}
.y9b{bottom:851.986898pt;}
.y141{bottom:851.991099pt;}
.y10e{bottom:854.805355pt;}
.y1ee{bottom:863.353620pt;}
.y6f{bottom:863.539632pt;}
.y272{bottom:863.557635pt;}
.y230{bottom:863.704954pt;}
.yc9{bottom:866.696126pt;}
.y40{bottom:867.480306pt;}
.y9a{bottom:868.653564pt;}
.y140{bottom:868.657766pt;}
.y10d{bottom:871.442688pt;}
.y6{bottom:872.377441pt;}
.y1ed{bottom:876.681620pt;}
.y271{bottom:876.885635pt;}
.y22f{bottom:877.032954pt;}
.yc8{bottom:883.362793pt;}
.y3f{bottom:884.146973pt;}
.y197{bottom:885.320231pt;}
.y13f{bottom:885.324432pt;}
.y10c{bottom:888.080021pt;}
.y1ec{bottom:890.009620pt;}
.y270{bottom:890.213635pt;}
.y22e{bottom:890.360954pt;}
.y5{bottom:896.377441pt;}
.yc7{bottom:900.029460pt;}
.y3e{bottom:900.813639pt;}
.y99{bottom:901.986898pt;}
.y13e{bottom:901.991099pt;}
.y1eb{bottom:903.337620pt;}
.y26f{bottom:903.541635pt;}
.y22d{bottom:903.688954pt;}
.y10b{bottom:904.717355pt;}
.y1ea{bottom:916.665620pt;}
.yc6{bottom:916.696126pt;}
.y26e{bottom:916.869635pt;}
.y22c{bottom:917.016954pt;}
.y3d{bottom:917.480306pt;}
.y196{bottom:918.653564pt;}
.y13d{bottom:918.657766pt;}
.y10a{bottom:921.354688pt;}
.y1e9{bottom:929.993620pt;}
.y26d{bottom:930.197635pt;}
.y22b{bottom:930.344954pt;}
.yc5{bottom:933.362793pt;}
.y3c{bottom:934.146973pt;}
.y195{bottom:935.320231pt;}
.y13c{bottom:935.324432pt;}
.y108{bottom:942.324306pt;}
.y1e8{bottom:943.321620pt;}
.y26c{bottom:943.525635pt;}
.y22a{bottom:943.672954pt;}
.y109{bottom:946.322021pt;}
.y3b{bottom:950.813639pt;}
.y98{bottom:951.986898pt;}
.y13b{bottom:951.991099pt;}
.y107{bottom:955.652306pt;}
.y4{bottom:956.561849pt;}
.y1e7{bottom:956.649620pt;}
.y26b{bottom:956.853635pt;}
.y229{bottom:957.000954pt;}
.yc4{bottom:966.696126pt;}
.y3a{bottom:967.480306pt;}
.y97{bottom:968.653564pt;}
.y13a{bottom:968.657766pt;}
.y106{bottom:968.980306pt;}
.y1e6{bottom:969.977620pt;}
.y26a{bottom:970.181635pt;}
.y228{bottom:970.328954pt;}
.y2f{bottom:982.677327pt;}
.y3{bottom:986.299161pt;}
.y2e{bottom:1001.382650pt;}
.y2{bottom:1001.406494pt;}
.y96{bottom:1002.206543pt;}
.y39{bottom:1002.206706pt;}
.hb{height:8.327605pt;}
.hf{height:22.403733pt;}
.he{height:32.005333pt;}
.hd{height:32.760417pt;}
.h12{height:35.394132pt;}
.h2{height:37.376000pt;}
.h9{height:37.653333pt;}
.hc{height:37.794667pt;}
.h3{height:39.712000pt;}
.h13{height:40.165333pt;}
.h14{height:46.376000pt;}
.h8{height:47.253333pt;}
.h4{height:49.298667pt;}
.h11{height:52.448000pt;}
.h7{height:52.746667pt;}
.ha{height:54.560000pt;}
.h6{height:57.658667pt;}
.h10{height:63.296000pt;}
.h5{height:75.605333pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:60.997335pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:50.752563pt;}
.x1{left:68.031469pt;}
.x2{left:75.717199pt;}
.xa{left:83.151469pt;}
.xb{left:85.606262pt;}
.x8{left:86.929867pt;}
.xe{left:90.708669pt;}
.x3{left:408.186108pt;}
.x4{left:423.306108pt;}
.xc{left:425.763753pt;}
.xd{left:430.866924pt;}
.x6{left:664.671997pt;}
.x5{left:685.546956pt;}
.x9{left:704.136393pt;}
}




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