
    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_337354cf41320f279f91509a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_d72006cf3ea7302a3d63ca64.woff')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_8d41512b8d3e1fdf7305d4e0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.958496;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_71e0bf3e8d5b25219915a0c8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.190918;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_99117970c08487f0fd46fbaa.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0f8db2a23d35eb980bb5cea0.woff')format("woff");}.ff6{font-family:ff6;line-height:1.349000;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_128befe29adaa84045e5cff8.woff')format("woff");}.ff7{font-family:ff7;line-height:1.362000;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_dd9a7459762f2636a23ce99b.woff')format("woff");}.ff8{font-family:ff8;line-height:1.190918;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_00ca4ea279a70cb9059d59a2.woff')format("woff");}.ff9{font-family:ff9;line-height:1.384000;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_8ba4d0197994b73c6cdc6df1.woff')format("woff");}.ffa{font-family:ffa;line-height:0.944000;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_033d7252e74140f1e0776cc6.woff')format("woff");}.ffb{font-family:ffb;line-height:0.452000;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_34731931732c8b5330337169.woff')format("woff");}.ffc{font-family:ffc;line-height:0.957000;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_5b598162d5dd29190b221b83.woff')format("woff");}.ffd{font-family:ffd;line-height:2.999000;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_f4aa840b1314132af6a3cfba.woff')format("woff");}.ffe{font-family:ffe;line-height:0.817000;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_5ef5ccfbcffeecfc22c4c1a4.woff')format("woff");}.fff{font-family:fff;line-height:0.258000;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:ff10;src:url('chunks/assets/font_e0c14e8225cdaba2c207b4fd.woff')format("woff");}.ff10{font-family:ff10;line-height:0.452000;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:ff11;src:url('chunks/assets/font_70b37d551fe408832fa01656.woff')format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_52c3e5109bd5bc27a83ca2c1.woff')format("woff");}.ff12{font-family:ff12;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.000000px;}
.v4{vertical-align:-18.900055px;}
.v5{vertical-align:-17.849991px;}
.v7{vertical-align:-10.805995px;}
.v9{vertical-align:-8.100037px;}
.v1{vertical-align:-1.488000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:15.607181px;}
.v6{vertical-align:17.849991px;}
.v3{vertical-align:18.881963px;}
.v8{vertical-align:43.770131px;}
.ls88{letter-spacing:-3.240000px;}
.ls60{letter-spacing:-1.512000px;}
.ls82{letter-spacing:-1.305000px;}
.ls86{letter-spacing:-1.170000px;}
.ls4b{letter-spacing:-0.540000px;}
.ls75{letter-spacing:-0.486000px;}
.ls45{letter-spacing:-0.432000px;}
.ls26{letter-spacing:-0.378000px;}
.ls84{letter-spacing:-0.360000px;}
.ls3c{letter-spacing:-0.336000px;}
.ls11{letter-spacing:-0.324000px;}
.ls8a{letter-spacing:-0.315000px;}
.ls46{letter-spacing:-0.280800px;}
.lsd{letter-spacing:-0.270000px;}
.ls2b{letter-spacing:-0.245700px;}
.ls80{letter-spacing:-0.225000px;}
.ls29{letter-spacing:-0.216000px;}
.ls3b{letter-spacing:-0.210000px;}
.ls83{letter-spacing:-0.180000px;}
.ls40{letter-spacing:-0.175500px;}
.lsf{letter-spacing:-0.162000px;}
.ls2a{letter-spacing:-0.140400px;}
.ls87{letter-spacing:-0.135000px;}
.ls27{letter-spacing:-0.108000px;}
.ls61{letter-spacing:-0.105300px;}
.ls7f{letter-spacing:-0.090000px;}
.ls28{letter-spacing:-0.070200px;}
.ls1f{letter-spacing:-0.054000px;}
.ls85{letter-spacing:-0.045000px;}
.ls47{letter-spacing:-0.035100px;}
.lsc{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.013219px;}
.ls2{letter-spacing:0.013223px;}
.ls3{letter-spacing:0.013772px;}
.lsb{letter-spacing:0.018028px;}
.ls1{letter-spacing:0.026966px;}
.ls50{letter-spacing:0.035100px;}
.ls81{letter-spacing:0.045000px;}
.ls12{letter-spacing:0.054000px;}
.ls17{letter-spacing:0.070200px;}
.ls7b{letter-spacing:0.090000px;}
.ls20{letter-spacing:0.105300px;}
.ls39{letter-spacing:0.108000px;}
.ls63{letter-spacing:0.109212px;}
.ls1a{letter-spacing:0.122850px;}
.ls33{letter-spacing:0.134952px;}
.ls7a{letter-spacing:0.135000px;}
.ls13{letter-spacing:0.136680px;}
.ls52{letter-spacing:0.137718px;}
.ls54{letter-spacing:0.137965px;}
.ls25{letter-spacing:0.140400px;}
.ls58{letter-spacing:0.142757px;}
.ls56{letter-spacing:0.144263px;}
.ls1d{letter-spacing:0.157950px;}
.ls6f{letter-spacing:0.158454px;}
.lsa{letter-spacing:0.158836px;}
.ls64{letter-spacing:0.159004px;}
.ls6{letter-spacing:0.159019px;}
.ls14{letter-spacing:0.159568px;}
.ls72{letter-spacing:0.160165px;}
.ls6d{letter-spacing:0.160348px;}
.ls6b{letter-spacing:0.160559px;}
.ls16{letter-spacing:0.162000px;}
.ls3f{letter-spacing:0.172781px;}
.ls15{letter-spacing:0.175500px;}
.ls49{letter-spacing:0.178200px;}
.ls79{letter-spacing:0.180000px;}
.ls62{letter-spacing:0.189000px;}
.ls51{letter-spacing:0.189546px;}
.ls73{letter-spacing:0.194369px;}
.ls8{letter-spacing:0.196834px;}
.ls77{letter-spacing:0.202500px;}
.ls34{letter-spacing:0.205186px;}
.ls5{letter-spacing:0.216000px;}
.ls71{letter-spacing:0.222018px;}
.ls78{letter-spacing:0.225000px;}
.ls6c{letter-spacing:0.231535px;}
.ls6a{letter-spacing:0.232606px;}
.ls3e{letter-spacing:0.242989px;}
.ls65{letter-spacing:0.242990px;}
.ls70{letter-spacing:0.243000px;}
.ls57{letter-spacing:0.245424px;}
.ls4f{letter-spacing:0.245700px;}
.ls3d{letter-spacing:0.250297px;}
.ls7{letter-spacing:0.257347px;}
.ls4a{letter-spacing:0.259819px;}
.ls53{letter-spacing:0.259848px;}
.ls74{letter-spacing:0.264000px;}
.lse{letter-spacing:0.270000px;}
.ls69{letter-spacing:0.276071px;}
.ls67{letter-spacing:0.276282px;}
.ls89{letter-spacing:0.292500px;}
.ls7d{letter-spacing:0.315000px;}
.ls4c{letter-spacing:0.315900px;}
.ls9{letter-spacing:0.324000px;}
.ls36{letter-spacing:0.345600px;}
.ls24{letter-spacing:0.351000px;}
.ls10{letter-spacing:0.378000px;}
.ls66{letter-spacing:0.382499px;}
.ls19{letter-spacing:0.386100px;}
.ls55{letter-spacing:0.388799px;}
.ls6e{letter-spacing:0.408558px;}
.ls37{letter-spacing:0.421200px;}
.ls59{letter-spacing:0.426600px;}
.ls1c{letter-spacing:0.432000px;}
.ls68{letter-spacing:0.447703px;}
.ls48{letter-spacing:0.459077px;}
.ls2f{letter-spacing:0.480600px;}
.ls30{letter-spacing:0.486000px;}
.ls7e{letter-spacing:0.495000px;}
.ls32{letter-spacing:0.523800px;}
.ls18{letter-spacing:0.526500px;}
.ls31{letter-spacing:0.529174px;}
.ls23{letter-spacing:0.540000px;}
.ls22{letter-spacing:0.561600px;}
.ls1b{letter-spacing:0.594000px;}
.ls44{letter-spacing:0.599385px;}
.ls43{letter-spacing:0.621000px;}
.ls42{letter-spacing:0.626388px;}
.ls4e{letter-spacing:0.631800px;}
.ls41{letter-spacing:0.642600px;}
.ls1e{letter-spacing:0.648000px;}
.ls35{letter-spacing:0.702000px;}
.ls2c{letter-spacing:0.756000px;}
.ls3a{letter-spacing:0.810000px;}
.ls21{letter-spacing:0.864000px;}
.ls2e{letter-spacing:0.874721px;}
.ls38{letter-spacing:0.939579px;}
.ls4d{letter-spacing:0.972000px;}
.ls2d{letter-spacing:1.080000px;}
.ls7c{letter-spacing:1.305000px;}
.ls76{letter-spacing:1.696500px;}
.ls0{letter-spacing:3.000000px;}
.ls5e{letter-spacing:3.908320px;}
.ls5b{letter-spacing:3.910696px;}
.ls5a{letter-spacing:4.917385px;}
.ls5f{letter-spacing:6.982953px;}
.ls5c{letter-spacing:9.024212px;}
.ls5d{letter-spacing:15.022341px;}
.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;}
}
.ws73{word-spacing:-54.000000px;}
.ws0{word-spacing:-48.000000px;}
.ws1{word-spacing:-15.000000px;}
.ws79{word-spacing:-13.860000px;}
.ws3e{word-spacing:-13.596000px;}
.ws69{word-spacing:-12.906000px;}
.ws30{word-spacing:-12.798000px;}
.ws72{word-spacing:-12.744000px;}
.ws67{word-spacing:-12.636000px;}
.ws10{word-spacing:-12.582000px;}
.ws36{word-spacing:-12.528000px;}
.ws74{word-spacing:-12.501000px;}
.ws4b{word-spacing:-12.366000px;}
.ws3{word-spacing:-12.360000px;}
.ws27{word-spacing:-12.258000px;}
.ws5c{word-spacing:-12.204000px;}
.ws5{word-spacing:-12.096000px;}
.ws68{word-spacing:-11.988000px;}
.ws75{word-spacing:-11.880000px;}
.ws58{word-spacing:-11.826000px;}
.ws3f{word-spacing:-11.718000px;}
.ws6d{word-spacing:-10.746000px;}
.ws7f{word-spacing:-10.530000px;}
.ws7d{word-spacing:-10.417500px;}
.ws7a{word-spacing:-10.215000px;}
.ws7{word-spacing:-10.200000px;}
.ws7b{word-spacing:-10.080000px;}
.ws9a{word-spacing:-9.990000px;}
.ws7e{word-spacing:-9.945000px;}
.ws7c{word-spacing:-9.765000px;}
.ws1e{word-spacing:-9.600000px;}
.ws80{word-spacing:-9.135000px;}
.ws4d{word-spacing:-8.778000px;}
.ws5f{word-spacing:-8.599500px;}
.ws21{word-spacing:-8.529300px;}
.ws5d{word-spacing:-8.388900px;}
.ws22{word-spacing:-8.318700px;}
.ws5e{word-spacing:-8.283600px;}
.ws60{word-spacing:-8.213400px;}
.ws1f{word-spacing:-8.143200px;}
.ws23{word-spacing:-8.108100px;}
.ws20{word-spacing:-8.073000px;}
.ws2{word-spacing:-8.034000px;}
.ws61{word-spacing:-8.002800px;}
.ws4{word-spacing:-7.967700px;}
.ws53{word-spacing:-7.932600px;}
.ws24{word-spacing:-7.897500px;}
.ws6a{word-spacing:-7.862400px;}
.ws25{word-spacing:-7.827300px;}
.ws50{word-spacing:-7.792200px;}
.ws26{word-spacing:-7.722000px;}
.ws52{word-spacing:-7.686900px;}
.ws6{word-spacing:-6.630000px;}
.ws9c{word-spacing:-6.120000px;}
.ws8a{word-spacing:-6.030000px;}
.ws91{word-spacing:-5.895000px;}
.ws9b{word-spacing:-5.850000px;}
.ws8c{word-spacing:-5.805000px;}
.ws93{word-spacing:-5.760000px;}
.ws8e{word-spacing:-5.715000px;}
.ws76{word-spacing:-5.616000px;}
.ws97{word-spacing:-5.580000px;}
.ws43{word-spacing:-5.508000px;}
.wsa8{word-spacing:-1.458000px;}
.ws5b{word-spacing:-1.296000px;}
.wsa{word-spacing:-1.242000px;}
.ws29{word-spacing:-1.188000px;}
.ws44{word-spacing:-1.134000px;}
.ws85{word-spacing:-1.035000px;}
.wsd{word-spacing:-1.026000px;}
.ws87{word-spacing:-0.990000px;}
.ws63{word-spacing:-0.918000px;}
.ws39{word-spacing:-0.864000px;}
.ws96{word-spacing:-0.855000px;}
.ws3c{word-spacing:-0.810000px;}
.ws51{word-spacing:-0.756000px;}
.ws83{word-spacing:-0.720000px;}
.wsb{word-spacing:-0.702000px;}
.wsc{word-spacing:-0.648000px;}
.ws94{word-spacing:-0.630000px;}
.ws32{word-spacing:-0.594000px;}
.ws2e{word-spacing:-0.561600px;}
.ws34{word-spacing:-0.540000px;}
.ws82{word-spacing:-0.495000px;}
.ws2c{word-spacing:-0.486000px;}
.ws37{word-spacing:-0.432000px;}
.ws33{word-spacing:-0.378000px;}
.ws31{word-spacing:-0.351000px;}
.ws64{word-spacing:-0.324000px;}
.ws2a{word-spacing:-0.270000px;}
.ws78{word-spacing:-0.264000px;}
.ws92{word-spacing:-0.225000px;}
.ws9{word-spacing:-0.216000px;}
.ws84{word-spacing:-0.180000px;}
.ws3b{word-spacing:-0.162000px;}
.ws88{word-spacing:-0.135000px;}
.ws45{word-spacing:-0.108000px;}
.ws2b{word-spacing:-0.105300px;}
.ws89{word-spacing:-0.090000px;}
.ws6b{word-spacing:-0.054037px;}
.ws12{word-spacing:-0.054000px;}
.ws8{word-spacing:0.000000px;}
.ws99{word-spacing:0.045000px;}
.ws65{word-spacing:0.054000px;}
.ws57{word-spacing:0.070200px;}
.ws6e{word-spacing:0.108000px;}
.ws9e{word-spacing:0.135000px;}
.ws35{word-spacing:0.140400px;}
.ws41{word-spacing:0.162000px;}
.ws95{word-spacing:0.180000px;}
.ws4f{word-spacing:0.210000px;}
.ws13{word-spacing:0.216000px;}
.ws8b{word-spacing:0.225000px;}
.ws59{word-spacing:0.270000px;}
.ws46{word-spacing:0.324000px;}
.ws48{word-spacing:0.378000px;}
.ws38{word-spacing:0.432000px;}
.ws14{word-spacing:0.486000px;}
.ws70{word-spacing:0.540000px;}
.ws98{word-spacing:0.585000px;}
.wse{word-spacing:0.648000px;}
.ws15{word-spacing:0.756000px;}
.ws9f{word-spacing:0.765000px;}
.ws55{word-spacing:0.810000px;}
.ws9d{word-spacing:0.855000px;}
.ws4a{word-spacing:0.864000px;}
.ws8d{word-spacing:0.900000px;}
.ws28{word-spacing:0.918000px;}
.ws3d{word-spacing:0.972000px;}
.ws8f{word-spacing:0.990000px;}
.ws56{word-spacing:1.026000px;}
.ws86{word-spacing:1.035000px;}
.ws71{word-spacing:1.080000px;}
.ws81{word-spacing:1.170000px;}
.ws11{word-spacing:1.188000px;}
.wsf{word-spacing:1.242000px;}
.ws49{word-spacing:1.296000px;}
.ws3a{word-spacing:1.404000px;}
.ws90{word-spacing:1.485000px;}
.ws62{word-spacing:1.512000px;}
.ws77{word-spacing:1.566000px;}
.ws47{word-spacing:1.620000px;}
.ws54{word-spacing:1.728000px;}
.ws6c{word-spacing:1.782000px;}
.ws6f{word-spacing:1.890000px;}
.ws40{word-spacing:2.052000px;}
.ws5a{word-spacing:2.106000px;}
.wsa0{word-spacing:2.322000px;}
.ws2d{word-spacing:2.376000px;}
.wsa4{word-spacing:2.754000px;}
.wsa5{word-spacing:2.862000px;}
.wsa3{word-spacing:3.024000px;}
.wsa6{word-spacing:3.078000px;}
.ws66{word-spacing:3.132000px;}
.wsa1{word-spacing:3.186000px;}
.ws2f{word-spacing:3.240000px;}
.wsa2{word-spacing:3.348000px;}
.ws42{word-spacing:3.510000px;}
.ws17{word-spacing:3.774000px;}
.ws1d{word-spacing:4.539000px;}
.wsa7{word-spacing:5.670000px;}
.ws19{word-spacing:5.865000px;}
.ws1a{word-spacing:6.273000px;}
.ws1b{word-spacing:7.140000px;}
.ws1c{word-spacing:8.415000px;}
.ws16{word-spacing:12.291000px;}
.ws18{word-spacing:20.145000px;}
.ws4c{word-spacing:137.171991px;}
.ws4e{word-spacing:209.831991px;}
._1b{margin-left:-16.338018px;}
._b{margin-left:-14.775598px;}
._7{margin-left:-13.407006px;}
._a{margin-left:-12.395999px;}
._6{margin-left:-11.258400px;}
._1c{margin-left:-10.232421px;}
._f{margin-left:-7.611599px;}
._d{margin-left:-6.210000px;}
._5{margin-left:-4.590000px;}
._2{margin-left:-3.523200px;}
._0{margin-left:-1.876800px;}
._4{width:1.068600px;}
._e{width:2.139601px;}
._1d{width:3.650400px;}
._9{width:5.856703px;}
._23{width:6.993000px;}
._1e{width:11.071798px;}
._c{width:12.330535px;}
._8{width:13.608000px;}
._3{width:15.033579px;}
._21{width:16.470000px;}
._22{width:18.045000px;}
._1f{width:33.966000px;}
._20{width:36.342000px;}
._10{width:55.822801px;}
._13{width:74.733600px;}
._11{width:145.390800px;}
._12{width:203.700000px;}
._14{width:219.365991px;}
._18{width:237.874800px;}
._1a{width:276.360000px;}
._16{width:285.082800px;}
._1{width:317.860800px;}
._17{width:320.670000px;}
._15{width:340.830000px;}
._19{width:364.644000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(205,221,228);}
.fs7{font-size:33.150000px;}
.fs5{font-size:35.100000px;}
.fs3{font-size:39.000000px;}
.fsc{font-size:41.068199px;}
.fsa{font-size:42.000000px;}
.fsd{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fsb{font-size:54.037199px;}
.fs1{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs6{font-size:108.000000px;}
.fs2{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y172{bottom:0.044998px;}
.y18c{bottom:0.045044px;}
.y9f{bottom:3.199200px;}
.y35{bottom:3.199350px;}
.yb6{bottom:3.199950px;}
.y2{bottom:3.200100px;}
.y17f{bottom:16.769989px;}
.y34{bottom:27.430500px;}
.y1{bottom:27.430650px;}
.ya0{bottom:27.555599px;}
.y3{bottom:27.555750px;}
.y181{bottom:27.718185px;}
.y184{bottom:37.708488px;}
.y182{bottom:39.868195px;}
.y187{bottom:39.868492px;}
.y33{bottom:68.037452px;}
.y7b{bottom:68.072552px;}
.yd1{bottom:69.198602px;}
.y210{bottom:70.735382px;}
.y14a{bottom:70.984648px;}
.y9a{bottom:71.663250px;}
.y110{bottom:76.984648px;}
.y32{bottom:83.037452px;}
.y7a{bottom:83.071052px;}
.y20f{bottom:83.481632px;}
.yd0{bottom:84.198602px;}
.y251{bottom:84.674396px;}
.y149{bottom:85.983148px;}
.y99{bottom:86.661750px;}
.y10f{bottom:91.983148px;}
.y20e{bottom:96.227882px;}
.y31{bottom:98.037452px;}
.y79{bottom:98.069552px;}
.ycf{bottom:99.197102px;}
.y148{bottom:100.981648px;}
.y98{bottom:101.660250px;}
.y1c2{bottom:103.230148px;}
.y10e{bottom:106.981648px;}
.y250{bottom:107.178896px;}
.y20d{bottom:108.974132px;}
.y30{bottom:113.037452px;}
.y78{bottom:113.068052px;}
.y147{bottom:115.981648px;}
.y97{bottom:116.658750px;}
.y1c1{bottom:118.230148px;}
.y20c{bottom:121.720382px;}
.y10d{bottom:121.989148px;}
.y17c{bottom:127.989150px;}
.y2f{bottom:128.037452px;}
.y77{bottom:128.066552px;}
.y24f{bottom:129.683396px;}
.y146{bottom:130.993648px;}
.y96{bottom:131.657250px;}
.y20b{bottom:134.466632px;}
.y10c{bottom:136.987648px;}
.y17b{bottom:142.987650px;}
.y2e{bottom:143.043452px;}
.y76{bottom:143.065052px;}
.y24e{bottom:144.681896px;}
.y145{bottom:145.992148px;}
.y95{bottom:146.655750px;}
.yad{bottom:147.158250px;}
.y20a{bottom:147.212882px;}
.y1c0{bottom:148.237648px;}
.y10b{bottom:151.986148px;}
.y17a{bottom:157.986150px;}
.y2d{bottom:158.037452px;}
.y75{bottom:158.063552px;}
.y24d{bottom:159.681896px;}
.y209{bottom:159.959132px;}
.y144{bottom:160.990648px;}
.y94{bottom:161.669250px;}
.yac{bottom:162.156750px;}
.y1bf{bottom:163.236148px;}
.y10a{bottom:166.984648px;}
.y208{bottom:172.705382px;}
.y179{bottom:172.984650px;}
.y2c{bottom:173.037452px;}
.y74{bottom:173.062052px;}
.y93{bottom:176.667750px;}
.y1be{bottom:178.234648px;}
.y109{bottom:181.983148px;}
.y207{bottom:185.451632px;}
.y178{bottom:187.983150px;}
.y73{bottom:188.060552px;}
.y24c{bottom:189.692408px;}
.y92{bottom:191.666250px;}
.y2b{bottom:192.493950px;}
.y1bd{bottom:193.233148px;}
.y143{bottom:193.984648px;}
.yb5{bottom:194.392939px;}
.y108{bottom:196.981648px;}
.y206{bottom:198.197882px;}
.y177{bottom:202.981650px;}
.y72{bottom:203.059052px;}
.y24b{bottom:204.690908px;}
.y91{bottom:206.664750px;}
.y1bc{bottom:208.231648px;}
.y142{bottom:208.983148px;}
.y205{bottom:210.944132px;}
.yb4{bottom:211.927939px;}
.y107{bottom:211.998148px;}
.y176{bottom:217.980150px;}
.y71{bottom:218.057552px;}
.y24a{bottom:219.689408px;}
.y90{bottom:221.663250px;}
.y1bb{bottom:223.230148px;}
.y204{bottom:223.690382px;}
.y141{bottom:223.981648px;}
.y106{bottom:226.996648px;}
.yb3{bottom:229.462939px;}
.y175{bottom:232.978650px;}
.y70{bottom:233.056052px;}
.y249{bottom:234.687908px;}
.y203{bottom:236.436632px;}
.y8f{bottom:236.661750px;}
.y29{bottom:237.222292px;}
.y1ba{bottom:238.230148px;}
.y140{bottom:238.983148px;}
.y105{bottom:241.995148px;}
.yb2{bottom:246.997939px;}
.y6f{bottom:248.054552px;}
.y202{bottom:249.182882px;}
.y248{bottom:249.686408px;}
.y8e{bottom:251.660250px;}
.y28{bottom:252.220792px;}
.y13f{bottom:253.981648px;}
.y17e{bottom:255.480011px;}
.y104{bottom:256.993648px;}
.y201{bottom:261.929132px;}
.y186{bottom:262.665000px;}
.y6e{bottom:263.053052px;}
.yb1{bottom:264.532939px;}
.y247{bottom:264.684908px;}
.y8d{bottom:266.658750px;}
.y27{bottom:267.220792px;}
.y1b9{bottom:268.263148px;}
.y13e{bottom:268.981648px;}
.y17d{bottom:270.832650px;}
.y103{bottom:271.992148px;}
.y180{bottom:272.250000px;}
.y200{bottom:274.675382px;}
.y6d{bottom:278.051552px;}
.y246{bottom:279.683408px;}
.y8c{bottom:281.657250px;}
.yb0{bottom:282.067939px;}
.y26{bottom:282.222292px;}
.y183{bottom:282.246882px;}
.y185{bottom:282.253052px;}
.y1b8{bottom:283.261648px;}
.y13d{bottom:283.981648px;}
.y102{bottom:286.990648px;}
.y1ff{bottom:287.421632px;}
.y6c{bottom:293.050052px;}
.y245{bottom:294.681908px;}
.y8b{bottom:296.655750px;}
.y25{bottom:297.220792px;}
.y1b7{bottom:298.260148px;}
.y13c{bottom:298.981648px;}
.yaf{bottom:299.602939px;}
.y1fe{bottom:300.167882px;}
.y101{bottom:301.989148px;}
.y6b{bottom:308.048552px;}
.y244{bottom:309.681908px;}
.y174{bottom:310.981648px;}
.y8a{bottom:311.654250px;}
.y24{bottom:312.226815px;}
.y1fd{bottom:312.914132px;}
.y1b6{bottom:313.258648px;}
.y13b{bottom:313.996648px;}
.y100{bottom:316.987648px;}
.yae{bottom:317.137939px;}
.y6a{bottom:323.047052px;}
.y1fc{bottom:325.660382px;}
.y171{bottom:325.925995px;}
.y173{bottom:325.980148px;}
.y170{bottom:325.983148px;}
.y89{bottom:326.654250px;}
.y23{bottom:327.225315px;}
.y1b5{bottom:328.257148px;}
.y13a{bottom:328.995148px;}
.yff{bottom:331.986148px;}
.y69{bottom:338.045552px;}
.y1fb{bottom:338.406632px;}
.y16f{bottom:340.981648px;}
.y243{bottom:341.148743px;}
.y22{bottom:342.223815px;}
.y1b4{bottom:343.255648px;}
.y139{bottom:343.993648px;}
.yfe{bottom:346.984648px;}
.y1fa{bottom:351.152882px;}
.y68{bottom:353.050052px;}
.y16e{bottom:355.980148px;}
.y242{bottom:356.148743px;}
.y21{bottom:357.222315px;}
.y1b3{bottom:358.254148px;}
.yab{bottom:358.353139px;}
.y138{bottom:358.992148px;}
.y88{bottom:359.669250px;}
.yfd{bottom:361.983148px;}
.y1f9{bottom:363.899132px;}
.y67{bottom:368.048552px;}
.y16d{bottom:370.980148px;}
.y20{bottom:372.220815px;}
.y1b2{bottom:373.252648px;}
.yaa{bottom:373.363639px;}
.y137{bottom:373.990648px;}
.y87{bottom:374.667750px;}
.y1f8{bottom:376.645382px;}
.yfc{bottom:376.981648px;}
.y66{bottom:383.047052px;}
.y1f{bottom:387.220815px;}
.y241{bottom:387.627738px;}
.y1b1{bottom:388.251148px;}
.ya9{bottom:388.362139px;}
.y1f7{bottom:389.391632px;}
.y86{bottom:389.666250px;}
.yfb{bottom:391.983148px;}
.y65{bottom:398.045552px;}
.y1f6{bottom:402.137882px;}
.y1e{bottom:402.223815px;}
.y240{bottom:402.626238px;}
.y1b0{bottom:403.249648px;}
.ya8{bottom:403.360639px;}
.y16c{bottom:403.996648px;}
.y85{bottom:404.664750px;}
.yfa{bottom:406.981648px;}
.y136{bottom:406.984648px;}
.y64{bottom:413.045552px;}
.y1f5{bottom:414.884132px;}
.y1d{bottom:417.222315px;}
.y23f{bottom:417.624738px;}
.ya7{bottom:418.359139px;}
.y16b{bottom:418.995148px;}
.y84{bottom:419.663250px;}
.y135{bottom:421.983148px;}
.yf9{bottom:421.995148px;}
.y1f4{bottom:427.630382px;}
.y63{bottom:428.053052px;}
.y23e{bottom:432.623238px;}
.ya6{bottom:433.357639px;}
.y16a{bottom:433.993648px;}
.y83{bottom:434.661750px;}
.y1af{bottom:436.243648px;}
.y134{bottom:436.981648px;}
.yf8{bottom:436.993648px;}
.y1f3{bottom:440.376632px;}
.y62{bottom:443.051552px;}
.y23d{bottom:447.621738px;}
.ya5{bottom:448.356139px;}
.y169{bottom:448.992148px;}
.y82{bottom:449.660250px;}
.y1c{bottom:450.972315px;}
.y1ae{bottom:451.242148px;}
.y133{bottom:451.980148px;}
.yf7{bottom:451.992148px;}
.y1f2{bottom:453.122882px;}
.y61{bottom:458.050052px;}
.y23c{bottom:462.620238px;}
.ya4{bottom:463.354639px;}
.y168{bottom:463.990648px;}
.y81{bottom:464.658750px;}
.y1f1{bottom:465.869132px;}
.y1ad{bottom:466.240648px;}
.y132{bottom:466.980148px;}
.yf6{bottom:466.990648px;}
.y1b{bottom:467.469315px;}
.y60{bottom:473.048552px;}
.y23b{bottom:477.618738px;}
.ya3{bottom:478.353139px;}
.y1f0{bottom:478.615382px;}
.y167{bottom:478.989148px;}
.y80{bottom:479.657250px;}
.y1ac{bottom:481.239148px;}
.yf5{bottom:481.989148px;}
.y5f{bottom:488.047052px;}
.y1ef{bottom:491.361632px;}
.y23a{bottom:492.617238px;}
.ya2{bottom:493.351639px;}
.y166{bottom:493.987648px;}
.y7f{bottom:494.655750px;}
.y1ab{bottom:496.237648px;}
.yf4{bottom:496.987648px;}
.y131{bottom:499.990648px;}
.y1a{bottom:502.749315px;}
.y5e{bottom:503.045552px;}
.y1ee{bottom:504.107882px;}
.y239{bottom:507.615738px;}
.y165{bottom:508.986148px;}
.y7e{bottom:509.654250px;}
.y1aa{bottom:511.236148px;}
.yf3{bottom:511.986148px;}
.y130{bottom:514.989148px;}
.y1ed{bottom:516.854132px;}
.y5d{bottom:518.050052px;}
.y19{bottom:519.246315px;}
.y238{bottom:522.615738px;}
.y164{bottom:523.984648px;}
.y7d{bottom:524.654250px;}
.y1a9{bottom:526.234648px;}
.yf2{bottom:526.984648px;}
.y1ec{bottom:529.600382px;}
.y12f{bottom:529.987648px;}
.y5c{bottom:533.048552px;}
.y18{bottom:535.743315px;}
.y163{bottom:538.983148px;}
.y1a8{bottom:541.233148px;}
.yf1{bottom:541.983148px;}
.y1eb{bottom:542.346632px;}
.y12e{bottom:544.986148px;}
.y5b{bottom:548.047052px;}
.y17{bottom:552.240315px;}
.y237{bottom:552.623238px;}
.y162{bottom:553.981648px;}
.y1ea{bottom:555.092882px;}
.y1a7{bottom:556.231648px;}
.yf0{bottom:556.981648px;}
.y12d{bottom:559.984648px;}
.y5a{bottom:563.045552px;}
.y236{bottom:567.621738px;}
.y1e9{bottom:567.839132px;}
.y16{bottom:568.737315px;}
.y161{bottom:568.987648px;}
.y1a6{bottom:571.254194px;}
.y9e{bottom:571.296172px;}
.yef{bottom:571.981648px;}
.y12c{bottom:574.983148px;}
.y59{bottom:578.050052px;}
.y1e8{bottom:580.585382px;}
.y235{bottom:582.620238px;}
.y160{bottom:583.986148px;}
.y15{bottom:585.234315px;}
.y1a5{bottom:586.252694px;}
.y9d{bottom:586.294672px;}
.yee{bottom:587.005694px;}
.y12b{bottom:589.981648px;}
.y58{bottom:593.048552px;}
.y1e7{bottom:593.331632px;}
.y234{bottom:597.618738px;}
.y15f{bottom:598.984648px;}
.y1a4{bottom:601.251194px;}
.y9c{bottom:601.293172px;}
.y14{bottom:601.731315px;}
.yed{bottom:602.004194px;}
.y12a{bottom:604.987648px;}
.y1e6{bottom:606.077882px;}
.y57{bottom:608.047052px;}
.y233{bottom:612.617238px;}
.y15e{bottom:613.983148px;}
.y1a3{bottom:616.249694px;}
.y9b{bottom:616.291672px;}
.yec{bottom:617.002694px;}
.y13{bottom:618.228315px;}
.y1e5{bottom:618.824132px;}
.y129{bottom:619.986148px;}
.y56{bottom:623.045552px;}
.y232{bottom:627.615738px;}
.y15d{bottom:628.981648px;}
.y1a2{bottom:631.248194px;}
.y1e4{bottom:631.570382px;}
.yeb{bottom:632.001194px;}
.y12{bottom:634.725315px;}
.y128{bottom:634.984648px;}
.y55{bottom:638.057506px;}
.y231{bottom:642.615738px;}
.y15c{bottom:643.998194px;}
.y1e3{bottom:644.316632px;}
.y1a1{bottom:646.246694px;}
.yea{bottom:646.999694px;}
.y127{bottom:649.983148px;}
.y11{bottom:651.222315px;}
.y54{bottom:653.056006px;}
.y1e2{bottom:657.062882px;}
.y15b{bottom:658.996694px;}
.y1a0{bottom:661.245194px;}
.ye9{bottom:661.998194px;}
.y126{bottom:664.981648px;}
.y10{bottom:667.719315px;}
.y53{bottom:668.054506px;}
.y1e1{bottom:669.809132px;}
.y230{bottom:672.617238px;}
.y15a{bottom:673.995194px;}
.y19f{bottom:676.243694px;}
.ye8{bottom:676.996694px;}
.y125{bottom:679.981648px;}
.y1e0{bottom:682.555382px;}
.y52{bottom:683.053006px;}
.y22f{bottom:687.615738px;}
.y159{bottom:688.993694px;}
.y19e{bottom:691.242194px;}
.ye7{bottom:691.995194px;}
.y124{bottom:694.980148px;}
.y1df{bottom:695.301632px;}
.ye{bottom:697.719315px;}
.y51{bottom:698.051506px;}
.y22e{bottom:702.615738px;}
.yf{bottom:702.969315px;}
.y158{bottom:703.992194px;}
.y19d{bottom:706.240694px;}
.ye6{bottom:706.993694px;}
.y1de{bottom:708.047882px;}
.y123{bottom:709.980148px;}
.y50{bottom:713.050006px;}
.yc{bottom:715.719315px;}
.y1dd{bottom:720.794132px;}
.yd{bottom:720.969315px;}
.y19c{bottom:721.239194px;}
.ye5{bottom:721.992194px;}
.y122{bottom:724.980148px;}
.yce{bottom:724.999694px;}
.y4f{bottom:728.048506px;}
.y22d{bottom:732.720784px;}
.y1dc{bottom:733.540382px;}
.ya{bottom:733.719315px;}
.y19b{bottom:736.237694px;}
.y157{bottom:736.986194px;}
.ye4{bottom:736.990694px;}
.yb{bottom:738.969315px;}
.ycd{bottom:739.998194px;}
.y4e{bottom:743.047006px;}
.y22c{bottom:745.467034px;}
.y1db{bottom:746.286632px;}
.y19a{bottom:751.236194px;}
.y156{bottom:751.984694px;}
.ye3{bottom:751.989194px;}
.ycc{bottom:754.996694px;}
.y121{bottom:758.013194px;}
.y4d{bottom:758.045506px;}
.y22b{bottom:758.213284px;}
.y1da{bottom:759.032882px;}
.y199{bottom:766.234694px;}
.y9{bottom:766.695269px;}
.y155{bottom:766.983194px;}
.ye2{bottom:766.987694px;}
.ycb{bottom:769.995194px;}
.y22a{bottom:770.959534px;}
.y1d9{bottom:771.779132px;}
.y120{bottom:773.011694px;}
.y4c{bottom:773.051506px;}
.y198{bottom:781.233194px;}
.y154{bottom:781.981694px;}
.ye1{bottom:781.986194px;}
.y229{bottom:783.705784px;}
.y1d8{bottom:784.525382px;}
.yca{bottom:784.993694px;}
.y11f{bottom:788.010194px;}
.y4b{bottom:788.050006px;}
.y197{bottom:796.231694px;}
.y228{bottom:796.452034px;}
.y153{bottom:796.981694px;}
.ye0{bottom:796.984694px;}
.y1d7{bottom:797.271632px;}
.yc9{bottom:799.992194px;}
.y11e{bottom:803.008694px;}
.y4a{bottom:803.048506px;}
.y227{bottom:809.198284px;}
.y1d6{bottom:810.017882px;}
.y196{bottom:811.248194px;}
.y8{bottom:811.701269px;}
.ydf{bottom:811.983194px;}
.y152{bottom:811.990694px;}
.yc8{bottom:814.990694px;}
.y11d{bottom:818.007194px;}
.y49{bottom:818.047006px;}
.y226{bottom:821.944534px;}
.y1d5{bottom:822.764132px;}
.y195{bottom:826.246694px;}
.yde{bottom:826.981694px;}
.y151{bottom:826.989194px;}
.yc7{bottom:829.989194px;}
.y11c{bottom:833.005694px;}
.y48{bottom:833.045506px;}
.y225{bottom:834.690784px;}
.y1d4{bottom:835.510382px;}
.y194{bottom:841.245194px;}
.ydd{bottom:841.980194px;}
.y150{bottom:841.987694px;}
.yc6{bottom:844.987694px;}
.y224{bottom:847.437034px;}
.y11b{bottom:848.004194px;}
.y47{bottom:848.048506px;}
.y1d3{bottom:848.256632px;}
.y7{bottom:856.707269px;}
.ydc{bottom:856.980194px;}
.yc5{bottom:859.986194px;}
.y223{bottom:860.183284px;}
.y1d2{bottom:861.002882px;}
.y11a{bottom:863.002694px;}
.y46{bottom:863.047006px;}
.y222{bottom:872.929534px;}
.y1d1{bottom:873.749132px;}
.y193{bottom:874.239194px;}
.y14f{bottom:874.981694px;}
.yc4{bottom:874.984694px;}
.y119{bottom:878.001194px;}
.y45{bottom:878.045506px;}
.y221{bottom:885.675784px;}
.y1d0{bottom:886.495382px;}
.y192{bottom:889.237694px;}
.yc3{bottom:889.983194px;}
.ydb{bottom:889.987694px;}
.y118{bottom:892.999694px;}
.y44{bottom:893.045506px;}
.y220{bottom:898.422034px;}
.y1cf{bottom:899.241632px;}
.y6{bottom:901.713269px;}
.y191{bottom:904.236194px;}
.yc2{bottom:904.981694px;}
.yda{bottom:904.986194px;}
.y117{bottom:907.998194px;}
.y43{bottom:908.045506px;}
.y21f{bottom:911.168284px;}
.y1ce{bottom:911.987882px;}
.y25a{bottom:915.490696px;}
.y190{bottom:919.234694px;}
.yc1{bottom:919.980194px;}
.y14e{bottom:919.981694px;}
.yd9{bottom:919.984694px;}
.y116{bottom:922.996694px;}
.y42{bottom:923.047006px;}
.y21e{bottom:923.914534px;}
.y1cd{bottom:924.734132px;}
.y18f{bottom:934.233194px;}
.yc0{bottom:934.980194px;}
.yd8{bottom:934.983194px;}
.y21d{bottom:936.660784px;}
.y1cc{bottom:937.480382px;}
.y115{bottom:937.995194px;}
.y41{bottom:938.045506px;}
.y259{bottom:945.487694px;}
.y5{bottom:946.719269px;}
.y18e{bottom:949.231694px;}
.y21c{bottom:949.407034px;}
.yd7{bottom:949.981694px;}
.y1cb{bottom:950.226632px;}
.y114{bottom:952.993694px;}
.y40{bottom:953.047006px;}
.y2a{bottom:954.366760px;}
.y258{bottom:960.486194px;}
.y21b{bottom:962.153284px;}
.y1ca{bottom:962.972882px;}
.y18d{bottom:964.230194px;}
.yd6{bottom:964.980194px;}
.y14d{bottom:964.995194px;}
.ybf{bottom:967.989194px;}
.y113{bottom:967.992194px;}
.y3f{bottom:968.045506px;}
.y21a{bottom:974.899534px;}
.y257{bottom:975.484694px;}
.y1c9{bottom:975.719132px;}
.yd5{bottom:979.980194px;}
.y14c{bottom:979.993694px;}
.ybe{bottom:982.987694px;}
.y112{bottom:982.990694px;}
.y3e{bottom:983.045506px;}
.y219{bottom:987.645784px;}
.y1c8{bottom:988.465382px;}
.y256{bottom:990.483194px;}
.y14b{bottom:994.992194px;}
.y18b{bottom:997.925995px;}
.y18a{bottom:997.980194px;}
.ybd{bottom:997.986194px;}
.y111{bottom:997.989194px;}
.y3d{bottom:998.050006px;}
.y218{bottom:1000.392034px;}
.y1c7{bottom:1001.211632px;}
.y255{bottom:1005.481694px;}
.y189{bottom:1012.981694px;}
.ybc{bottom:1012.984694px;}
.yd4{bottom:1012.987694px;}
.y3c{bottom:1013.048506px;}
.y217{bottom:1013.138284px;}
.y1c6{bottom:1013.957882px;}
.y254{bottom:1020.480194px;}
.y216{bottom:1025.884534px;}
.y1c5{bottom:1026.704132px;}
.ybb{bottom:1027.983194px;}
.yd3{bottom:1027.986194px;}
.y3b{bottom:1028.047006px;}
.y253{bottom:1035.478694px;}
.y215{bottom:1038.630784px;}
.y1c4{bottom:1039.454132px;}
.yba{bottom:1042.981694px;}
.yd2{bottom:1042.984694px;}
.y3a{bottom:1043.045506px;}
.y252{bottom:1050.477194px;}
.y214{bottom:1051.377034px;}
.y188{bottom:1057.981694px;}
.yb9{bottom:1057.983194px;}
.y39{bottom:1058.045506px;}
.y213{bottom:1064.123284px;}
.yb8{bottom:1072.981694px;}
.y38{bottom:1073.045506px;}
.y212{bottom:1076.869534px;}
.yb7{bottom:1087.980194px;}
.y37{bottom:1088.044006px;}
.y1c3{bottom:1088.954132px;}
.y211{bottom:1089.615784px;}
.y7c{bottom:1140.640320px;}
.ya1{bottom:1140.746521px;}
.y36{bottom:1140.746704px;}
.y4{bottom:1141.922516px;}
.h37{height:2.161488px;}
.h32{height:6.150000px;}
.h38{height:19.615503px;}
.h33{height:24.208665px;}
.h8{height:28.050293px;}
.h7{height:28.183594px;}
.h11{height:30.684677px;}
.h2{height:34.523438px;}
.h3b{height:35.411133px;}
.h36{height:37.826039px;}
.h9{height:38.838867px;}
.h34{height:40.500000px;}
.h22{height:41.538000px;}
.h21{height:43.008000px;}
.h6{height:43.154297px;}
.h39{height:44.354921px;}
.h3d{height:44.505000px;}
.h3e{height:45.090000px;}
.h3{height:45.679688px;}
.h35{height:45.931619px;}
.h3c{height:46.080000px;}
.h1c{height:47.469727px;}
.h12{height:48.534668px;}
.h13{height:49.373525px;}
.h3f{height:50.439000px;}
.ha{height:53.406000px;}
.h25{height:53.511680px;}
.h3a{height:53.517680px;}
.h30{height:53.541680px;}
.h28{height:53.541863px;}
.h2b{height:53.547863px;}
.h26{height:53.553863px;}
.h1d{height:53.553914px;}
.h2c{height:53.559907px;}
.h19{height:53.560046px;}
.h1f{height:53.565955px;}
.h2f{height:53.571680px;}
.h1b{height:53.577863px;}
.h29{height:53.577907px;}
.hd{height:53.583863px;}
.h18{height:53.584046px;}
.h1a{height:53.589863px;}
.h15{height:53.590046px;}
.hb{height:53.595863px;}
.h2a{height:53.595907px;}
.h17{height:53.596046px;}
.h23{height:53.601680px;}
.h27{height:53.601863px;}
.he{height:53.601955px;}
.h16{height:53.602046px;}
.h2e{height:53.607680px;}
.hc{height:53.607863px;}
.h2d{height:53.607907px;}
.h20{height:53.607955px;}
.h14{height:53.608046px;}
.h31{height:54.096000px;}
.h24{height:54.102000px;}
.hf{height:54.108000px;}
.h1e{height:55.296000px;}
.h4{height:57.099609px;}
.h10{height:77.677734px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w2{width:7.290000px;}
.w3{width:164.370003px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:7.228350px;}
.x1b{left:41.673615px;}
.x3{left:61.653603px;}
.x1d{left:84.280060px;}
.x1f{left:117.138931px;}
.x11{left:141.395702px;}
.x21{left:148.904251px;}
.x23{left:156.882889px;}
.x5{left:233.858253px;}
.x15{left:238.560729px;}
.x10{left:251.859470px;}
.x28{left:254.119488px;}
.x24{left:255.606753px;}
.xf{left:325.266907px;}
.x6{left:329.170807px;}
.xb{left:353.890045px;}
.x14{left:386.883728px;}
.x7{left:446.663864px;}
.x19{left:450.373489px;}
.x1a{left:466.478531px;}
.xc{left:468.399307px;}
.x1c{left:501.983414px;}
.x1e{left:545.358582px;}
.x8{left:558.353256px;}
.xd{left:566.363113px;}
.x22{left:571.008591px;}
.x20{left:573.708618px;}
.x4{left:586.814117px;}
.x9{left:665.926483px;}
.xe{left:700.667542px;}
.x25{left:724.691986px;}
.x26{left:732.043808px;}
.xa{left:753.790329px;}
.x13{left:797.390808px;}
.x2{left:798.901611px;}
.x18{left:813.264416px;}
.x27{left:818.848755px;}
.x16{left:823.969482px;}
.x1{left:825.001190px;}
.x17{left:831.259918px;}
@media print{
.v2{vertical-align:-18.666667pt;}
.v4{vertical-align:-16.800049pt;}
.v5{vertical-align:-15.866659pt;}
.v7{vertical-align:-9.605329pt;}
.v9{vertical-align:-7.200033pt;}
.v1{vertical-align:-1.322667pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:13.873050pt;}
.v6{vertical-align:15.866659pt;}
.v3{vertical-align:16.783967pt;}
.v8{vertical-align:38.906783pt;}
.ls88{letter-spacing:-2.880000pt;}
.ls60{letter-spacing:-1.344000pt;}
.ls82{letter-spacing:-1.160000pt;}
.ls86{letter-spacing:-1.040000pt;}
.ls4b{letter-spacing:-0.480000pt;}
.ls75{letter-spacing:-0.432000pt;}
.ls45{letter-spacing:-0.384000pt;}
.ls26{letter-spacing:-0.336000pt;}
.ls84{letter-spacing:-0.320000pt;}
.ls3c{letter-spacing:-0.298667pt;}
.ls11{letter-spacing:-0.288000pt;}
.ls8a{letter-spacing:-0.280000pt;}
.ls46{letter-spacing:-0.249600pt;}
.lsd{letter-spacing:-0.240000pt;}
.ls2b{letter-spacing:-0.218400pt;}
.ls80{letter-spacing:-0.200000pt;}
.ls29{letter-spacing:-0.192000pt;}
.ls3b{letter-spacing:-0.186667pt;}
.ls83{letter-spacing:-0.160000pt;}
.ls40{letter-spacing:-0.156000pt;}
.lsf{letter-spacing:-0.144000pt;}
.ls2a{letter-spacing:-0.124800pt;}
.ls87{letter-spacing:-0.120000pt;}
.ls27{letter-spacing:-0.096000pt;}
.ls61{letter-spacing:-0.093600pt;}
.ls7f{letter-spacing:-0.080000pt;}
.ls28{letter-spacing:-0.062400pt;}
.ls1f{letter-spacing:-0.048000pt;}
.ls85{letter-spacing:-0.040000pt;}
.ls47{letter-spacing:-0.031200pt;}
.lsc{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.011751pt;}
.ls2{letter-spacing:0.011754pt;}
.ls3{letter-spacing:0.012242pt;}
.lsb{letter-spacing:0.016025pt;}
.ls1{letter-spacing:0.023970pt;}
.ls50{letter-spacing:0.031200pt;}
.ls81{letter-spacing:0.040000pt;}
.ls12{letter-spacing:0.048000pt;}
.ls17{letter-spacing:0.062400pt;}
.ls7b{letter-spacing:0.080000pt;}
.ls20{letter-spacing:0.093600pt;}
.ls39{letter-spacing:0.096000pt;}
.ls63{letter-spacing:0.097077pt;}
.ls1a{letter-spacing:0.109200pt;}
.ls33{letter-spacing:0.119957pt;}
.ls7a{letter-spacing:0.120000pt;}
.ls13{letter-spacing:0.121493pt;}
.ls52{letter-spacing:0.122416pt;}
.ls54{letter-spacing:0.122636pt;}
.ls25{letter-spacing:0.124800pt;}
.ls58{letter-spacing:0.126895pt;}
.ls56{letter-spacing:0.128233pt;}
.ls1d{letter-spacing:0.140400pt;}
.ls6f{letter-spacing:0.140848pt;}
.lsa{letter-spacing:0.141187pt;}
.ls64{letter-spacing:0.141336pt;}
.ls6{letter-spacing:0.141350pt;}
.ls14{letter-spacing:0.141839pt;}
.ls72{letter-spacing:0.142369pt;}
.ls6d{letter-spacing:0.142532pt;}
.ls6b{letter-spacing:0.142719pt;}
.ls16{letter-spacing:0.144000pt;}
.ls3f{letter-spacing:0.153583pt;}
.ls15{letter-spacing:0.156000pt;}
.ls49{letter-spacing:0.158400pt;}
.ls79{letter-spacing:0.160000pt;}
.ls62{letter-spacing:0.168000pt;}
.ls51{letter-spacing:0.168485pt;}
.ls73{letter-spacing:0.172772pt;}
.ls8{letter-spacing:0.174964pt;}
.ls77{letter-spacing:0.180000pt;}
.ls34{letter-spacing:0.182388pt;}
.ls5{letter-spacing:0.192000pt;}
.ls71{letter-spacing:0.197349pt;}
.ls78{letter-spacing:0.200000pt;}
.ls6c{letter-spacing:0.205809pt;}
.ls6a{letter-spacing:0.206761pt;}
.ls3e{letter-spacing:0.215990pt;}
.ls65{letter-spacing:0.215991pt;}
.ls70{letter-spacing:0.216000pt;}
.ls57{letter-spacing:0.218155pt;}
.ls4f{letter-spacing:0.218400pt;}
.ls3d{letter-spacing:0.222486pt;}
.ls7{letter-spacing:0.228753pt;}
.ls4a{letter-spacing:0.230950pt;}
.ls53{letter-spacing:0.230976pt;}
.ls74{letter-spacing:0.234667pt;}
.lse{letter-spacing:0.240000pt;}
.ls69{letter-spacing:0.245396pt;}
.ls67{letter-spacing:0.245584pt;}
.ls89{letter-spacing:0.260000pt;}
.ls7d{letter-spacing:0.280000pt;}
.ls4c{letter-spacing:0.280800pt;}
.ls9{letter-spacing:0.288000pt;}
.ls36{letter-spacing:0.307200pt;}
.ls24{letter-spacing:0.312000pt;}
.ls10{letter-spacing:0.336000pt;}
.ls66{letter-spacing:0.339999pt;}
.ls19{letter-spacing:0.343200pt;}
.ls55{letter-spacing:0.345599pt;}
.ls6e{letter-spacing:0.363163pt;}
.ls37{letter-spacing:0.374400pt;}
.ls59{letter-spacing:0.379200pt;}
.ls1c{letter-spacing:0.384000pt;}
.ls68{letter-spacing:0.397958pt;}
.ls48{letter-spacing:0.408069pt;}
.ls2f{letter-spacing:0.427200pt;}
.ls30{letter-spacing:0.432000pt;}
.ls7e{letter-spacing:0.440000pt;}
.ls32{letter-spacing:0.465600pt;}
.ls18{letter-spacing:0.468000pt;}
.ls31{letter-spacing:0.470377pt;}
.ls23{letter-spacing:0.480000pt;}
.ls22{letter-spacing:0.499200pt;}
.ls1b{letter-spacing:0.528000pt;}
.ls44{letter-spacing:0.532787pt;}
.ls43{letter-spacing:0.552000pt;}
.ls42{letter-spacing:0.556789pt;}
.ls4e{letter-spacing:0.561600pt;}
.ls41{letter-spacing:0.571200pt;}
.ls1e{letter-spacing:0.576000pt;}
.ls35{letter-spacing:0.624000pt;}
.ls2c{letter-spacing:0.672000pt;}
.ls3a{letter-spacing:0.720000pt;}
.ls21{letter-spacing:0.768000pt;}
.ls2e{letter-spacing:0.777530pt;}
.ls38{letter-spacing:0.835182pt;}
.ls4d{letter-spacing:0.864000pt;}
.ls2d{letter-spacing:0.960000pt;}
.ls7c{letter-spacing:1.160000pt;}
.ls76{letter-spacing:1.508000pt;}
.ls0{letter-spacing:2.666667pt;}
.ls5e{letter-spacing:3.474062pt;}
.ls5b{letter-spacing:3.476174pt;}
.ls5a{letter-spacing:4.371009pt;}
.ls5f{letter-spacing:6.207069pt;}
.ls5c{letter-spacing:8.021522pt;}
.ls5d{letter-spacing:13.353192pt;}
.ws73{word-spacing:-48.000000pt;}
.ws0{word-spacing:-42.666667pt;}
.ws1{word-spacing:-13.333333pt;}
.ws79{word-spacing:-12.320000pt;}
.ws3e{word-spacing:-12.085333pt;}
.ws69{word-spacing:-11.472000pt;}
.ws30{word-spacing:-11.376000pt;}
.ws72{word-spacing:-11.328000pt;}
.ws67{word-spacing:-11.232000pt;}
.ws10{word-spacing:-11.184000pt;}
.ws36{word-spacing:-11.136000pt;}
.ws74{word-spacing:-11.112000pt;}
.ws4b{word-spacing:-10.992000pt;}
.ws3{word-spacing:-10.986667pt;}
.ws27{word-spacing:-10.896000pt;}
.ws5c{word-spacing:-10.848000pt;}
.ws5{word-spacing:-10.752000pt;}
.ws68{word-spacing:-10.656000pt;}
.ws75{word-spacing:-10.560000pt;}
.ws58{word-spacing:-10.512000pt;}
.ws3f{word-spacing:-10.416000pt;}
.ws6d{word-spacing:-9.552000pt;}
.ws7f{word-spacing:-9.360000pt;}
.ws7d{word-spacing:-9.260000pt;}
.ws7a{word-spacing:-9.080000pt;}
.ws7{word-spacing:-9.066667pt;}
.ws7b{word-spacing:-8.960000pt;}
.ws9a{word-spacing:-8.880000pt;}
.ws7e{word-spacing:-8.840000pt;}
.ws7c{word-spacing:-8.680000pt;}
.ws1e{word-spacing:-8.533333pt;}
.ws80{word-spacing:-8.120000pt;}
.ws4d{word-spacing:-7.802667pt;}
.ws5f{word-spacing:-7.644000pt;}
.ws21{word-spacing:-7.581600pt;}
.ws5d{word-spacing:-7.456800pt;}
.ws22{word-spacing:-7.394400pt;}
.ws5e{word-spacing:-7.363200pt;}
.ws60{word-spacing:-7.300800pt;}
.ws1f{word-spacing:-7.238400pt;}
.ws23{word-spacing:-7.207200pt;}
.ws20{word-spacing:-7.176000pt;}
.ws2{word-spacing:-7.141333pt;}
.ws61{word-spacing:-7.113600pt;}
.ws4{word-spacing:-7.082400pt;}
.ws53{word-spacing:-7.051200pt;}
.ws24{word-spacing:-7.020000pt;}
.ws6a{word-spacing:-6.988800pt;}
.ws25{word-spacing:-6.957600pt;}
.ws50{word-spacing:-6.926400pt;}
.ws26{word-spacing:-6.864000pt;}
.ws52{word-spacing:-6.832800pt;}
.ws6{word-spacing:-5.893333pt;}
.ws9c{word-spacing:-5.440000pt;}
.ws8a{word-spacing:-5.360000pt;}
.ws91{word-spacing:-5.240000pt;}
.ws9b{word-spacing:-5.200000pt;}
.ws8c{word-spacing:-5.160000pt;}
.ws93{word-spacing:-5.120000pt;}
.ws8e{word-spacing:-5.080000pt;}
.ws76{word-spacing:-4.992000pt;}
.ws97{word-spacing:-4.960000pt;}
.ws43{word-spacing:-4.896000pt;}
.wsa8{word-spacing:-1.296000pt;}
.ws5b{word-spacing:-1.152000pt;}
.wsa{word-spacing:-1.104000pt;}
.ws29{word-spacing:-1.056000pt;}
.ws44{word-spacing:-1.008000pt;}
.ws85{word-spacing:-0.920000pt;}
.wsd{word-spacing:-0.912000pt;}
.ws87{word-spacing:-0.880000pt;}
.ws63{word-spacing:-0.816000pt;}
.ws39{word-spacing:-0.768000pt;}
.ws96{word-spacing:-0.760000pt;}
.ws3c{word-spacing:-0.720000pt;}
.ws51{word-spacing:-0.672000pt;}
.ws83{word-spacing:-0.640000pt;}
.wsb{word-spacing:-0.624000pt;}
.wsc{word-spacing:-0.576000pt;}
.ws94{word-spacing:-0.560000pt;}
.ws32{word-spacing:-0.528000pt;}
.ws2e{word-spacing:-0.499200pt;}
.ws34{word-spacing:-0.480000pt;}
.ws82{word-spacing:-0.440000pt;}
.ws2c{word-spacing:-0.432000pt;}
.ws37{word-spacing:-0.384000pt;}
.ws33{word-spacing:-0.336000pt;}
.ws31{word-spacing:-0.312000pt;}
.ws64{word-spacing:-0.288000pt;}
.ws2a{word-spacing:-0.240000pt;}
.ws78{word-spacing:-0.234667pt;}
.ws92{word-spacing:-0.200000pt;}
.ws9{word-spacing:-0.192000pt;}
.ws84{word-spacing:-0.160000pt;}
.ws3b{word-spacing:-0.144000pt;}
.ws88{word-spacing:-0.120000pt;}
.ws45{word-spacing:-0.096000pt;}
.ws2b{word-spacing:-0.093600pt;}
.ws89{word-spacing:-0.080000pt;}
.ws6b{word-spacing:-0.048033pt;}
.ws12{word-spacing:-0.048000pt;}
.ws8{word-spacing:0.000000pt;}
.ws99{word-spacing:0.040000pt;}
.ws65{word-spacing:0.048000pt;}
.ws57{word-spacing:0.062400pt;}
.ws6e{word-spacing:0.096000pt;}
.ws9e{word-spacing:0.120000pt;}
.ws35{word-spacing:0.124800pt;}
.ws41{word-spacing:0.144000pt;}
.ws95{word-spacing:0.160000pt;}
.ws4f{word-spacing:0.186667pt;}
.ws13{word-spacing:0.192000pt;}
.ws8b{word-spacing:0.200000pt;}
.ws59{word-spacing:0.240000pt;}
.ws46{word-spacing:0.288000pt;}
.ws48{word-spacing:0.336000pt;}
.ws38{word-spacing:0.384000pt;}
.ws14{word-spacing:0.432000pt;}
.ws70{word-spacing:0.480000pt;}
.ws98{word-spacing:0.520000pt;}
.wse{word-spacing:0.576000pt;}
.ws15{word-spacing:0.672000pt;}
.ws9f{word-spacing:0.680000pt;}
.ws55{word-spacing:0.720000pt;}
.ws9d{word-spacing:0.760000pt;}
.ws4a{word-spacing:0.768000pt;}
.ws8d{word-spacing:0.800000pt;}
.ws28{word-spacing:0.816000pt;}
.ws3d{word-spacing:0.864000pt;}
.ws8f{word-spacing:0.880000pt;}
.ws56{word-spacing:0.912000pt;}
.ws86{word-spacing:0.920000pt;}
.ws71{word-spacing:0.960000pt;}
.ws81{word-spacing:1.040000pt;}
.ws11{word-spacing:1.056000pt;}
.wsf{word-spacing:1.104000pt;}
.ws49{word-spacing:1.152000pt;}
.ws3a{word-spacing:1.248000pt;}
.ws90{word-spacing:1.320000pt;}
.ws62{word-spacing:1.344000pt;}
.ws77{word-spacing:1.392000pt;}
.ws47{word-spacing:1.440000pt;}
.ws54{word-spacing:1.536000pt;}
.ws6c{word-spacing:1.584000pt;}
.ws6f{word-spacing:1.680000pt;}
.ws40{word-spacing:1.824000pt;}
.ws5a{word-spacing:1.872000pt;}
.wsa0{word-spacing:2.064000pt;}
.ws2d{word-spacing:2.112000pt;}
.wsa4{word-spacing:2.448000pt;}
.wsa5{word-spacing:2.544000pt;}
.wsa3{word-spacing:2.688000pt;}
.wsa6{word-spacing:2.736000pt;}
.ws66{word-spacing:2.784000pt;}
.wsa1{word-spacing:2.832000pt;}
.ws2f{word-spacing:2.880000pt;}
.wsa2{word-spacing:2.976000pt;}
.ws42{word-spacing:3.120000pt;}
.ws17{word-spacing:3.354667pt;}
.ws1d{word-spacing:4.034667pt;}
.wsa7{word-spacing:5.040000pt;}
.ws19{word-spacing:5.213333pt;}
.ws1a{word-spacing:5.576000pt;}
.ws1b{word-spacing:6.346667pt;}
.ws1c{word-spacing:7.480000pt;}
.ws16{word-spacing:10.925333pt;}
.ws18{word-spacing:17.906667pt;}
.ws4c{word-spacing:121.930659pt;}
.ws4e{word-spacing:186.517326pt;}
._1b{margin-left:-14.522683pt;}
._b{margin-left:-13.133865pt;}
._7{margin-left:-11.917339pt;}
._a{margin-left:-11.018666pt;}
._6{margin-left:-10.007467pt;}
._1c{margin-left:-9.095485pt;}
._f{margin-left:-6.765866pt;}
._d{margin-left:-5.520000pt;}
._5{margin-left:-4.080000pt;}
._2{margin-left:-3.131733pt;}
._0{margin-left:-1.668267pt;}
._4{width:0.949866pt;}
._e{width:1.901868pt;}
._1d{width:3.244800pt;}
._9{width:5.205958pt;}
._23{width:6.216000pt;}
._1e{width:9.841599pt;}
._c{width:10.960476pt;}
._8{width:12.096000pt;}
._3{width:13.363181pt;}
._21{width:14.640000pt;}
._22{width:16.040000pt;}
._1f{width:30.192000pt;}
._20{width:32.304000pt;}
._10{width:49.620268pt;}
._13{width:66.429867pt;}
._11{width:129.236267pt;}
._12{width:181.066667pt;}
._14{width:194.991992pt;}
._18{width:211.444267pt;}
._1a{width:245.653333pt;}
._16{width:253.406933pt;}
._1{width:282.542933pt;}
._17{width:285.040000pt;}
._15{width:302.960000pt;}
._19{width:324.128000pt;}
.fs7{font-size:29.466667pt;}
.fs5{font-size:31.200000pt;}
.fs3{font-size:34.666667pt;}
.fsc{font-size:36.505066pt;}
.fsa{font-size:37.333333pt;}
.fsd{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fsb{font-size:48.033066pt;}
.fs1{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs6{font-size:96.000000pt;}
.fs2{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y172{bottom:0.039998pt;}
.y18c{bottom:0.040039pt;}
.y9f{bottom:2.843733pt;}
.y35{bottom:2.843867pt;}
.yb6{bottom:2.844400pt;}
.y2{bottom:2.844533pt;}
.y17f{bottom:14.906657pt;}
.y34{bottom:24.382667pt;}
.y1{bottom:24.382800pt;}
.ya0{bottom:24.493866pt;}
.y3{bottom:24.494000pt;}
.y181{bottom:24.638387pt;}
.y184{bottom:33.518656pt;}
.y182{bottom:35.438395pt;}
.y187{bottom:35.438660pt;}
.y33{bottom:60.477735pt;}
.y7b{bottom:60.508935pt;}
.yd1{bottom:61.509868pt;}
.y210{bottom:62.875895pt;}
.y14a{bottom:63.097465pt;}
.y9a{bottom:63.700667pt;}
.y110{bottom:68.430799pt;}
.y32{bottom:73.811069pt;}
.y7a{bottom:73.840935pt;}
.y20f{bottom:74.205895pt;}
.yd0{bottom:74.843201pt;}
.y251{bottom:75.266130pt;}
.y149{bottom:76.429465pt;}
.y99{bottom:77.032667pt;}
.y10f{bottom:81.762799pt;}
.y20e{bottom:85.535895pt;}
.y31{bottom:87.144402pt;}
.y79{bottom:87.172935pt;}
.ycf{bottom:88.175201pt;}
.y148{bottom:89.761465pt;}
.y98{bottom:90.364667pt;}
.y1c2{bottom:91.760132pt;}
.y10e{bottom:95.094799pt;}
.y250{bottom:95.270130pt;}
.y20d{bottom:96.865895pt;}
.y30{bottom:100.477735pt;}
.y78{bottom:100.504935pt;}
.y147{bottom:103.094799pt;}
.y97{bottom:103.696667pt;}
.y1c1{bottom:105.093465pt;}
.y20c{bottom:108.195895pt;}
.y10d{bottom:108.434799pt;}
.y17c{bottom:113.768133pt;}
.y2f{bottom:113.811069pt;}
.y77{bottom:113.836935pt;}
.y24f{bottom:115.274130pt;}
.y146{bottom:116.438799pt;}
.y96{bottom:117.028667pt;}
.y20b{bottom:119.525895pt;}
.y10c{bottom:121.766799pt;}
.y17b{bottom:127.100133pt;}
.y2e{bottom:127.149735pt;}
.y76{bottom:127.168935pt;}
.y24e{bottom:128.606130pt;}
.y145{bottom:129.770799pt;}
.y95{bottom:130.360667pt;}
.yad{bottom:130.807333pt;}
.y20a{bottom:130.855895pt;}
.y1c0{bottom:131.766799pt;}
.y10b{bottom:135.098799pt;}
.y17a{bottom:140.432133pt;}
.y2d{bottom:140.477735pt;}
.y75{bottom:140.500935pt;}
.y24d{bottom:141.939463pt;}
.y209{bottom:142.185895pt;}
.y144{bottom:143.102799pt;}
.y94{bottom:143.706000pt;}
.yac{bottom:144.139333pt;}
.y1bf{bottom:145.098799pt;}
.y10a{bottom:148.430799pt;}
.y208{bottom:153.515895pt;}
.y179{bottom:153.764133pt;}
.y2c{bottom:153.811069pt;}
.y74{bottom:153.832935pt;}
.y93{bottom:157.038000pt;}
.y1be{bottom:158.430799pt;}
.y109{bottom:161.762799pt;}
.y207{bottom:164.845895pt;}
.y178{bottom:167.096133pt;}
.y73{bottom:167.164935pt;}
.y24c{bottom:168.615473pt;}
.y92{bottom:170.370000pt;}
.y2b{bottom:171.105733pt;}
.y1bd{bottom:171.762799pt;}
.y143{bottom:172.430799pt;}
.yb5{bottom:172.793724pt;}
.y108{bottom:175.094799pt;}
.y206{bottom:176.175895pt;}
.y177{bottom:180.428133pt;}
.y72{bottom:180.496935pt;}
.y24b{bottom:181.947473pt;}
.y91{bottom:183.702000pt;}
.y1bc{bottom:185.094799pt;}
.y142{bottom:185.762799pt;}
.y205{bottom:187.505895pt;}
.yb4{bottom:188.380391pt;}
.y107{bottom:188.442799pt;}
.y176{bottom:193.760133pt;}
.y71{bottom:193.828935pt;}
.y24a{bottom:195.279473pt;}
.y90{bottom:197.034000pt;}
.y1bb{bottom:198.426799pt;}
.y204{bottom:198.835895pt;}
.y141{bottom:199.094799pt;}
.y106{bottom:201.774799pt;}
.yb3{bottom:203.967057pt;}
.y175{bottom:207.092133pt;}
.y70{bottom:207.160935pt;}
.y249{bottom:208.611473pt;}
.y203{bottom:210.165895pt;}
.y8f{bottom:210.366000pt;}
.y29{bottom:210.864259pt;}
.y1ba{bottom:211.760132pt;}
.y140{bottom:212.429465pt;}
.y105{bottom:215.106799pt;}
.yb2{bottom:219.553724pt;}
.y6f{bottom:220.492935pt;}
.y202{bottom:221.495895pt;}
.y248{bottom:221.943473pt;}
.y8e{bottom:223.698000pt;}
.y28{bottom:224.196259pt;}
.y13f{bottom:225.761465pt;}
.y17e{bottom:227.093343pt;}
.y104{bottom:228.438799pt;}
.y201{bottom:232.825895pt;}
.y186{bottom:233.480000pt;}
.y6e{bottom:233.824935pt;}
.yb1{bottom:235.140391pt;}
.y247{bottom:235.275473pt;}
.y8d{bottom:237.030000pt;}
.y27{bottom:237.529593pt;}
.y1b9{bottom:238.456132pt;}
.y13e{bottom:239.094799pt;}
.y17d{bottom:240.740133pt;}
.y103{bottom:241.770799pt;}
.y180{bottom:242.000000pt;}
.y200{bottom:244.155895pt;}
.y6d{bottom:247.156935pt;}
.y246{bottom:248.607473pt;}
.y8c{bottom:250.362000pt;}
.yb0{bottom:250.727057pt;}
.y26{bottom:250.864259pt;}
.y183{bottom:250.886117pt;}
.y185{bottom:250.891602pt;}
.y1b8{bottom:251.788132pt;}
.y13d{bottom:252.428132pt;}
.y102{bottom:255.102799pt;}
.y1ff{bottom:255.485895pt;}
.y6c{bottom:260.488935pt;}
.y245{bottom:261.939473pt;}
.y8b{bottom:263.694000pt;}
.y25{bottom:264.196259pt;}
.y1b7{bottom:265.120132pt;}
.y13c{bottom:265.761465pt;}
.yaf{bottom:266.313724pt;}
.y1fe{bottom:266.815895pt;}
.y101{bottom:268.434799pt;}
.y6b{bottom:273.820935pt;}
.y244{bottom:275.272807pt;}
.y174{bottom:276.428132pt;}
.y8a{bottom:277.026000pt;}
.y24{bottom:277.534946pt;}
.y1fd{bottom:278.145895pt;}
.y1b6{bottom:278.452132pt;}
.y13b{bottom:279.108132pt;}
.y100{bottom:281.766799pt;}
.yae{bottom:281.900391pt;}
.y6a{bottom:287.152935pt;}
.y1fc{bottom:289.475895pt;}
.y171{bottom:289.711995pt;}
.y173{bottom:289.760132pt;}
.y170{bottom:289.762799pt;}
.y89{bottom:290.359333pt;}
.y23{bottom:290.866946pt;}
.y1b5{bottom:291.784132pt;}
.y13a{bottom:292.440132pt;}
.yff{bottom:295.098799pt;}
.y69{bottom:300.484935pt;}
.y1fb{bottom:300.805895pt;}
.y16f{bottom:303.094799pt;}
.y243{bottom:303.243327pt;}
.y22{bottom:304.198946pt;}
.y1b4{bottom:305.116132pt;}
.y139{bottom:305.772132pt;}
.yfe{bottom:308.430799pt;}
.y1fa{bottom:312.135895pt;}
.y68{bottom:313.822269pt;}
.y16e{bottom:316.426799pt;}
.y242{bottom:316.576660pt;}
.y21{bottom:317.530946pt;}
.y1b3{bottom:318.448132pt;}
.yab{bottom:318.536123pt;}
.y138{bottom:319.104132pt;}
.y88{bottom:319.706000pt;}
.yfd{bottom:321.762799pt;}
.y1f9{bottom:323.465895pt;}
.y67{bottom:327.154269pt;}
.y16d{bottom:329.760132pt;}
.y20{bottom:330.862946pt;}
.y1b2{bottom:331.780132pt;}
.yaa{bottom:331.878790pt;}
.y137{bottom:332.436132pt;}
.y87{bottom:333.038000pt;}
.y1f8{bottom:334.795895pt;}
.yfc{bottom:335.094799pt;}
.y66{bottom:340.486269pt;}
.y1f{bottom:344.196280pt;}
.y241{bottom:344.557989pt;}
.y1b1{bottom:345.112132pt;}
.ya9{bottom:345.210790pt;}
.y1f7{bottom:346.125895pt;}
.y86{bottom:346.370000pt;}
.yfb{bottom:348.429465pt;}
.y65{bottom:353.818269pt;}
.y1f6{bottom:357.455895pt;}
.y1e{bottom:357.532280pt;}
.y240{bottom:357.889989pt;}
.y1b0{bottom:358.444132pt;}
.ya8{bottom:358.542790pt;}
.y16c{bottom:359.108132pt;}
.y85{bottom:359.702000pt;}
.yfa{bottom:361.761465pt;}
.y136{bottom:361.764132pt;}
.y64{bottom:367.151602pt;}
.y1f5{bottom:368.785895pt;}
.y1d{bottom:370.864280pt;}
.y23f{bottom:371.221989pt;}
.ya7{bottom:371.874790pt;}
.y16b{bottom:372.440132pt;}
.y84{bottom:373.034000pt;}
.y135{bottom:375.096132pt;}
.yf9{bottom:375.106799pt;}
.y1f4{bottom:380.115895pt;}
.y63{bottom:380.491602pt;}
.y23e{bottom:384.553989pt;}
.ya6{bottom:385.206790pt;}
.y16a{bottom:385.772132pt;}
.y83{bottom:386.366000pt;}
.y1af{bottom:387.772132pt;}
.y134{bottom:388.428132pt;}
.yf8{bottom:388.438799pt;}
.y1f3{bottom:391.445895pt;}
.y62{bottom:393.823602pt;}
.y23d{bottom:397.885989pt;}
.ya5{bottom:398.538790pt;}
.y169{bottom:399.104132pt;}
.y82{bottom:399.698000pt;}
.y1c{bottom:400.864280pt;}
.y1ae{bottom:401.104132pt;}
.y133{bottom:401.760132pt;}
.yf7{bottom:401.770799pt;}
.y1f2{bottom:402.775895pt;}
.y61{bottom:407.155602pt;}
.y23c{bottom:411.217989pt;}
.ya4{bottom:411.870790pt;}
.y168{bottom:412.436132pt;}
.y81{bottom:413.030000pt;}
.y1f1{bottom:414.105895pt;}
.y1ad{bottom:414.436132pt;}
.y132{bottom:415.093465pt;}
.yf6{bottom:415.102799pt;}
.y1b{bottom:415.528280pt;}
.y60{bottom:420.487602pt;}
.y23b{bottom:424.549989pt;}
.ya3{bottom:425.202790pt;}
.y1f0{bottom:425.435895pt;}
.y167{bottom:425.768132pt;}
.y80{bottom:426.362000pt;}
.y1ac{bottom:427.768132pt;}
.yf5{bottom:428.434799pt;}
.y5f{bottom:433.819602pt;}
.y1ef{bottom:436.765895pt;}
.y23a{bottom:437.881989pt;}
.ya2{bottom:438.534790pt;}
.y166{bottom:439.100132pt;}
.y7f{bottom:439.694000pt;}
.y1ab{bottom:441.100132pt;}
.yf4{bottom:441.766799pt;}
.y131{bottom:444.436132pt;}
.y1a{bottom:446.888280pt;}
.y5e{bottom:447.151602pt;}
.y1ee{bottom:448.095895pt;}
.y239{bottom:451.213989pt;}
.y165{bottom:452.432132pt;}
.y7e{bottom:453.026000pt;}
.y1aa{bottom:454.432132pt;}
.yf3{bottom:455.098799pt;}
.y130{bottom:457.768132pt;}
.y1ed{bottom:459.425895pt;}
.y5d{bottom:460.488935pt;}
.y19{bottom:461.552280pt;}
.y238{bottom:464.547323pt;}
.y164{bottom:465.764132pt;}
.y7d{bottom:466.359333pt;}
.y1a9{bottom:467.764132pt;}
.yf2{bottom:468.430799pt;}
.y1ec{bottom:470.755895pt;}
.y12f{bottom:471.100132pt;}
.y5c{bottom:473.820935pt;}
.y18{bottom:476.216280pt;}
.y163{bottom:479.096132pt;}
.y1a8{bottom:481.096132pt;}
.yf1{bottom:481.762799pt;}
.y1eb{bottom:482.085895pt;}
.y12e{bottom:484.432132pt;}
.y5b{bottom:487.152935pt;}
.y17{bottom:490.880280pt;}
.y237{bottom:491.220656pt;}
.y162{bottom:492.428132pt;}
.y1ea{bottom:493.415895pt;}
.y1a7{bottom:494.428132pt;}
.yf0{bottom:495.094799pt;}
.y12d{bottom:497.764132pt;}
.y5a{bottom:500.484935pt;}
.y236{bottom:504.552656pt;}
.y1e9{bottom:504.745895pt;}
.y16{bottom:505.544280pt;}
.y161{bottom:505.766799pt;}
.y1a6{bottom:507.781506pt;}
.y9e{bottom:507.818819pt;}
.yef{bottom:508.428132pt;}
.y12c{bottom:511.096132pt;}
.y59{bottom:513.822269pt;}
.y1e8{bottom:516.075895pt;}
.y235{bottom:517.884656pt;}
.y160{bottom:519.098799pt;}
.y15{bottom:520.208280pt;}
.y1a5{bottom:521.113506pt;}
.y9d{bottom:521.150819pt;}
.yee{bottom:521.782839pt;}
.y12b{bottom:524.428132pt;}
.y58{bottom:527.154269pt;}
.y1e7{bottom:527.405895pt;}
.y234{bottom:531.216656pt;}
.y15f{bottom:532.430799pt;}
.y1a4{bottom:534.445506pt;}
.y9c{bottom:534.482819pt;}
.y14{bottom:534.872280pt;}
.yed{bottom:535.114839pt;}
.y12a{bottom:537.766799pt;}
.y1e6{bottom:538.735895pt;}
.y57{bottom:540.486269pt;}
.y233{bottom:544.548656pt;}
.y15e{bottom:545.762799pt;}
.y1a3{bottom:547.777506pt;}
.y9b{bottom:547.814819pt;}
.yec{bottom:548.446839pt;}
.y13{bottom:549.536280pt;}
.y1e5{bottom:550.065895pt;}
.y129{bottom:551.098799pt;}
.y56{bottom:553.818269pt;}
.y232{bottom:557.880656pt;}
.y15d{bottom:559.094799pt;}
.y1a2{bottom:561.109506pt;}
.y1e4{bottom:561.395895pt;}
.yeb{bottom:561.778839pt;}
.y12{bottom:564.200280pt;}
.y128{bottom:564.430799pt;}
.y55{bottom:567.162228pt;}
.y231{bottom:571.213989pt;}
.y15c{bottom:572.442839pt;}
.y1e3{bottom:572.725895pt;}
.y1a1{bottom:574.441506pt;}
.yea{bottom:575.110839pt;}
.y127{bottom:577.762799pt;}
.y11{bottom:578.864280pt;}
.y54{bottom:580.494228pt;}
.y1e2{bottom:584.055895pt;}
.y15b{bottom:585.774839pt;}
.y1a0{bottom:587.773506pt;}
.ye9{bottom:588.442839pt;}
.y126{bottom:591.094799pt;}
.y10{bottom:593.528280pt;}
.y53{bottom:593.826228pt;}
.y1e1{bottom:595.385895pt;}
.y230{bottom:597.881989pt;}
.y15a{bottom:599.106839pt;}
.y19f{bottom:601.105506pt;}
.ye8{bottom:601.774839pt;}
.y125{bottom:604.428132pt;}
.y1e0{bottom:606.715895pt;}
.y52{bottom:607.158228pt;}
.y22f{bottom:611.213989pt;}
.y159{bottom:612.438839pt;}
.y19e{bottom:614.437506pt;}
.ye7{bottom:615.106839pt;}
.y124{bottom:617.760132pt;}
.y1df{bottom:618.045895pt;}
.ye{bottom:620.194946pt;}
.y51{bottom:620.490228pt;}
.y22e{bottom:624.547323pt;}
.yf{bottom:624.861613pt;}
.y158{bottom:625.770839pt;}
.y19d{bottom:627.769506pt;}
.ye6{bottom:628.438839pt;}
.y1de{bottom:629.375895pt;}
.y123{bottom:631.093465pt;}
.y50{bottom:633.822228pt;}
.yc{bottom:636.194946pt;}
.y1dd{bottom:640.705895pt;}
.yd{bottom:640.861613pt;}
.y19c{bottom:641.101506pt;}
.ye5{bottom:641.770839pt;}
.y122{bottom:644.426799pt;}
.yce{bottom:644.444173pt;}
.y4f{bottom:647.154228pt;}
.y22d{bottom:651.307363pt;}
.y1dc{bottom:652.035895pt;}
.ya{bottom:652.194946pt;}
.y19b{bottom:654.433506pt;}
.y157{bottom:655.098839pt;}
.ye4{bottom:655.102839pt;}
.yb{bottom:656.861613pt;}
.ycd{bottom:657.776173pt;}
.y4e{bottom:660.486228pt;}
.y22c{bottom:662.637363pt;}
.y1db{bottom:663.365895pt;}
.y19a{bottom:667.765506pt;}
.y156{bottom:668.430839pt;}
.ye3{bottom:668.434839pt;}
.ycc{bottom:671.108173pt;}
.y121{bottom:673.789506pt;}
.y4d{bottom:673.818228pt;}
.y22b{bottom:673.967363pt;}
.y1da{bottom:674.695895pt;}
.y199{bottom:681.097506pt;}
.y9{bottom:681.506906pt;}
.y155{bottom:681.762839pt;}
.ye2{bottom:681.766839pt;}
.ycb{bottom:684.440173pt;}
.y22a{bottom:685.297363pt;}
.y1d9{bottom:686.025895pt;}
.y120{bottom:687.121506pt;}
.y4c{bottom:687.156895pt;}
.y198{bottom:694.429506pt;}
.y154{bottom:695.094839pt;}
.ye1{bottom:695.098839pt;}
.y229{bottom:696.627363pt;}
.y1d8{bottom:697.355895pt;}
.yca{bottom:697.772173pt;}
.y11f{bottom:700.453506pt;}
.y4b{bottom:700.488895pt;}
.y197{bottom:707.761506pt;}
.y228{bottom:707.957363pt;}
.y153{bottom:708.428173pt;}
.ye0{bottom:708.430839pt;}
.y1d7{bottom:708.685895pt;}
.yc9{bottom:711.104173pt;}
.y11e{bottom:713.785506pt;}
.y4a{bottom:713.820895pt;}
.y227{bottom:719.287363pt;}
.y1d6{bottom:720.015895pt;}
.y196{bottom:721.109506pt;}
.y8{bottom:721.512239pt;}
.ydf{bottom:721.762839pt;}
.y152{bottom:721.769506pt;}
.yc8{bottom:724.436173pt;}
.y11d{bottom:727.117506pt;}
.y49{bottom:727.152895pt;}
.y226{bottom:730.617363pt;}
.y1d5{bottom:731.345895pt;}
.y195{bottom:734.441506pt;}
.yde{bottom:735.094839pt;}
.y151{bottom:735.101506pt;}
.yc7{bottom:737.768173pt;}
.y11c{bottom:740.449506pt;}
.y48{bottom:740.484895pt;}
.y225{bottom:741.947363pt;}
.y1d4{bottom:742.675895pt;}
.y194{bottom:747.773506pt;}
.ydd{bottom:748.426839pt;}
.y150{bottom:748.433506pt;}
.yc6{bottom:751.100173pt;}
.y224{bottom:753.277363pt;}
.y11b{bottom:753.781506pt;}
.y47{bottom:753.820895pt;}
.y1d3{bottom:754.005895pt;}
.y7{bottom:761.517572pt;}
.ydc{bottom:761.760173pt;}
.yc5{bottom:764.432173pt;}
.y223{bottom:764.607363pt;}
.y1d2{bottom:765.335895pt;}
.y11a{bottom:767.113506pt;}
.y46{bottom:767.152895pt;}
.y222{bottom:775.937363pt;}
.y1d1{bottom:776.665895pt;}
.y193{bottom:777.101506pt;}
.y14f{bottom:777.761506pt;}
.yc4{bottom:777.764173pt;}
.y119{bottom:780.445506pt;}
.y45{bottom:780.484895pt;}
.y221{bottom:787.267363pt;}
.y1d0{bottom:787.995895pt;}
.y192{bottom:790.433506pt;}
.yc3{bottom:791.096173pt;}
.ydb{bottom:791.100173pt;}
.y118{bottom:793.777506pt;}
.y44{bottom:793.818228pt;}
.y220{bottom:798.597363pt;}
.y1cf{bottom:799.325895pt;}
.y6{bottom:801.522906pt;}
.y191{bottom:803.765506pt;}
.yc2{bottom:804.428173pt;}
.yda{bottom:804.432173pt;}
.y117{bottom:807.109506pt;}
.y43{bottom:807.151561pt;}
.y21f{bottom:809.927363pt;}
.y1ce{bottom:810.655895pt;}
.y25a{bottom:813.769507pt;}
.y190{bottom:817.097506pt;}
.yc1{bottom:817.760173pt;}
.y14e{bottom:817.761506pt;}
.yd9{bottom:817.764173pt;}
.y116{bottom:820.441506pt;}
.y42{bottom:820.486228pt;}
.y21e{bottom:821.257363pt;}
.y1cd{bottom:821.985895pt;}
.y18f{bottom:830.429506pt;}
.yc0{bottom:831.093506pt;}
.yd8{bottom:831.096173pt;}
.y21d{bottom:832.587363pt;}
.y1cc{bottom:833.315895pt;}
.y115{bottom:833.773506pt;}
.y41{bottom:833.818228pt;}
.y259{bottom:840.433506pt;}
.y5{bottom:841.528239pt;}
.y18e{bottom:843.761506pt;}
.y21c{bottom:843.917363pt;}
.yd7{bottom:844.428173pt;}
.y1cb{bottom:844.645895pt;}
.y114{bottom:847.105506pt;}
.y40{bottom:847.152895pt;}
.y2a{bottom:848.326009pt;}
.y258{bottom:853.765506pt;}
.y21b{bottom:855.247363pt;}
.y1ca{bottom:855.975895pt;}
.y18d{bottom:857.093506pt;}
.yd6{bottom:857.760173pt;}
.y14d{bottom:857.773506pt;}
.ybf{bottom:860.434839pt;}
.y113{bottom:860.437506pt;}
.y3f{bottom:860.484895pt;}
.y21a{bottom:866.577363pt;}
.y257{bottom:867.097506pt;}
.y1c9{bottom:867.305895pt;}
.yd5{bottom:871.093506pt;}
.y14c{bottom:871.105506pt;}
.ybe{bottom:873.766839pt;}
.y112{bottom:873.769506pt;}
.y3e{bottom:873.818228pt;}
.y219{bottom:877.907363pt;}
.y1c8{bottom:878.635895pt;}
.y256{bottom:880.429506pt;}
.y14b{bottom:884.437506pt;}
.y18b{bottom:887.045329pt;}
.y18a{bottom:887.093506pt;}
.ybd{bottom:887.098839pt;}
.y111{bottom:887.101506pt;}
.y3d{bottom:887.155561pt;}
.y218{bottom:889.237363pt;}
.y1c7{bottom:889.965895pt;}
.y255{bottom:893.761506pt;}
.y189{bottom:900.428173pt;}
.ybc{bottom:900.430839pt;}
.yd4{bottom:900.433506pt;}
.y3c{bottom:900.487561pt;}
.y217{bottom:900.567363pt;}
.y1c6{bottom:901.295895pt;}
.y254{bottom:907.093506pt;}
.y216{bottom:911.897363pt;}
.y1c5{bottom:912.625895pt;}
.ybb{bottom:913.762839pt;}
.yd3{bottom:913.765506pt;}
.y3b{bottom:913.819561pt;}
.y253{bottom:920.425506pt;}
.y215{bottom:923.227363pt;}
.y1c4{bottom:923.959229pt;}
.yba{bottom:927.094839pt;}
.yd2{bottom:927.097506pt;}
.y3a{bottom:927.151561pt;}
.y252{bottom:933.757506pt;}
.y214{bottom:934.557363pt;}
.y188{bottom:940.428173pt;}
.yb9{bottom:940.429506pt;}
.y39{bottom:940.484895pt;}
.y213{bottom:945.887363pt;}
.yb8{bottom:953.761506pt;}
.y38{bottom:953.818228pt;}
.y212{bottom:957.217363pt;}
.yb7{bottom:967.093506pt;}
.y37{bottom:967.150228pt;}
.y1c3{bottom:967.959229pt;}
.y211{bottom:968.547363pt;}
.y7c{bottom:1013.902507pt;}
.ya1{bottom:1013.996908pt;}
.y36{bottom:1013.997070pt;}
.y4{bottom:1015.042236pt;}
.h37{height:1.921323pt;}
.h32{height:5.466667pt;}
.h38{height:17.436003pt;}
.h33{height:21.518813pt;}
.h8{height:24.933594pt;}
.h7{height:25.052083pt;}
.h11{height:27.275268pt;}
.h2{height:30.687500pt;}
.h3b{height:31.476562pt;}
.h36{height:33.623146pt;}
.h9{height:34.523438pt;}
.h34{height:36.000000pt;}
.h22{height:36.922667pt;}
.h21{height:38.229333pt;}
.h6{height:38.359375pt;}
.h39{height:39.426596pt;}
.h3d{height:39.560000pt;}
.h3e{height:40.080000pt;}
.h3{height:40.604167pt;}
.h35{height:40.828106pt;}
.h3c{height:40.960000pt;}
.h1c{height:42.195312pt;}
.h12{height:43.141927pt;}
.h13{height:43.887578pt;}
.h3f{height:44.834667pt;}
.ha{height:47.472000pt;}
.h25{height:47.565938pt;}
.h3a{height:47.571271pt;}
.h30{height:47.592605pt;}
.h28{height:47.592767pt;}
.h2b{height:47.598101pt;}
.h26{height:47.603434pt;}
.h1d{height:47.603479pt;}
.h2c{height:47.608806pt;}
.h19{height:47.608930pt;}
.h1f{height:47.614182pt;}
.h2f{height:47.619271pt;}
.h1b{height:47.624767pt;}
.h29{height:47.624806pt;}
.hd{height:47.630101pt;}
.h18{height:47.630264pt;}
.h1a{height:47.635434pt;}
.h15{height:47.635597pt;}
.hb{height:47.640767pt;}
.h2a{height:47.640806pt;}
.h17{height:47.640930pt;}
.h23{height:47.645938pt;}
.h27{height:47.646101pt;}
.he{height:47.646182pt;}
.h16{height:47.646264pt;}
.h2e{height:47.651271pt;}
.hc{height:47.651434pt;}
.h2d{height:47.651473pt;}
.h20{height:47.651515pt;}
.h14{height:47.651597pt;}
.h31{height:48.085333pt;}
.h24{height:48.090667pt;}
.hf{height:48.096000pt;}
.h1e{height:49.152000pt;}
.h4{height:50.755208pt;}
.h10{height:69.046875pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w2{width:6.480000pt;}
.w3{width:146.106669pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:6.425200pt;}
.x1b{left:37.043213pt;}
.x3{left:54.803202pt;}
.x1d{left:74.915609pt;}
.x1f{left:104.123494pt;}
.x11{left:125.685069pt;}
.x21{left:132.359334pt;}
.x23{left:139.451457pt;}
.x5{left:207.874003pt;}
.x15{left:212.053981pt;}
.x10{left:223.875084pt;}
.x28{left:225.883990pt;}
.x24{left:227.206003pt;}
.xf{left:289.126139pt;}
.x6{left:292.596273pt;}
.xb{left:314.568929pt;}
.x14{left:343.896647pt;}
.x7{left:397.034546pt;}
.x19{left:400.331991pt;}
.x1a{left:414.647583pt;}
.xc{left:416.354940pt;}
.x1c{left:446.207479pt;}
.x1e{left:484.763184pt;}
.x8{left:496.314006pt;}
.xd{left:503.433879pt;}
.x22{left:507.563192pt;}
.x20{left:509.963216pt;}
.x4{left:521.612549pt;}
.x9{left:591.934652pt;}
.xe{left:622.815592pt;}
.x25{left:644.170654pt;}
.x26{left:650.705607pt;}
.xa{left:670.035848pt;}
.x13{left:708.791829pt;}
.x2{left:710.134766pt;}
.x18{left:722.901703pt;}
.x27{left:727.865560pt;}
.x16{left:732.417318pt;}
.x1{left:733.334391pt;}
.x17{left:738.897705pt;}
}




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