
    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_5d95f9d8698f115be841e7e5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_85d5e6841c663151e856c635.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.890000;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_bd946e8a0a7b61444f0d607c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.711000;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_95f17861bdb0f8479dc6c315.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921000;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_fce5fa3185cc19fc9728071e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_e04b6a020ca08c24b7d34786.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_994cb5bfe1b053959f955e96.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.440000;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_47988ba9d1521b4b5ac7c8bf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.684000;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_0b7803b69d0d7b92565e3dab.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.969000;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_0a5748cc940640a7d0c6aab3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.025000;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_acd1048cd6174e8cdb7eb135.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.704000;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_b6799ab64dc8a272ff3960bd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.686000;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_3f8b2d448bd7a6f7d99dc4f5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.678000;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_65e5f4980c864971e705b043.woff2')format("woff");}.ffe{font-family:ffe;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;}
@font-face{font-family:fff;src:url('chunks/assets/font_13b322a836a56b02ca12df33.woff2')format("woff");}.fff{font-family:fff;line-height:0.706055;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_25571f0d65197ec3df90104b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.708008;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_9f06131fb0e59f32953fac8c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.683000;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_2609d027f61f476bfe56f30f.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.887450;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);}
.v13{vertical-align:-23.910000px;}
.v14{vertical-align:-17.934000px;}
.vb{vertical-align:-8.964000px;}
.v16{vertical-align:-5.976000px;}
.v11{vertical-align:-3.156000px;}
.v19{vertical-align:-1.247501px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.328000px;}
.v10{vertical-align:5.814000px;}
.v7{vertical-align:7.698000px;}
.v8{vertical-align:8.964000px;}
.v3{vertical-align:14.778000px;}
.v6{vertical-align:16.662000px;}
.v12{vertical-align:17.934000px;}
.v18{vertical-align:20.586000px;}
.v4{vertical-align:21.696000px;}
.v2{vertical-align:24.678000px;}
.v5{vertical-align:31.050000px;}
.vf{vertical-align:33.648000px;}
.ve{vertical-align:37.512000px;}
.v9{vertical-align:40.014000px;}
.vd{vertical-align:41.610000px;}
.vc{vertical-align:45.828000px;}
.va{vertical-align:48.558000px;}
.v15{vertical-align:56.790000px;}
.v17{vertical-align:62.130000px;}
.ls1{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.000065px;}
.ls6c{letter-spacing:0.000493px;}
.ls41{letter-spacing:0.002162px;}
.ls74{letter-spacing:0.002175px;}
.ls2b{letter-spacing:0.003356px;}
.ls50{letter-spacing:0.003507px;}
.ls22{letter-spacing:0.003652px;}
.ls3b{letter-spacing:0.004893px;}
.ls68{letter-spacing:0.005937px;}
.ls4c{letter-spacing:0.006065px;}
.ls2e{letter-spacing:0.009035px;}
.ls48{letter-spacing:0.013248px;}
.ls69{letter-spacing:0.014309px;}
.ls13{letter-spacing:0.021240px;}
.ls67{letter-spacing:0.021978px;}
.ls2a{letter-spacing:0.022937px;}
.ls20{letter-spacing:0.023156px;}
.ls5a{letter-spacing:0.023564px;}
.ls5c{letter-spacing:0.024654px;}
.ls3e{letter-spacing:0.025225px;}
.ls7b{letter-spacing:0.026169px;}
.ls66{letter-spacing:0.026694px;}
.ls77{letter-spacing:0.027964px;}
.ls55{letter-spacing:0.028618px;}
.ls79{letter-spacing:0.028679px;}
.ls36{letter-spacing:0.860771px;}
.ls3f{letter-spacing:1.853044px;}
.ls4e{letter-spacing:1.912819px;}
.ls8c{letter-spacing:2.371909px;}
.ls8d{letter-spacing:2.391030px;}
.ls6b{letter-spacing:2.426882px;}
.ls0{letter-spacing:2.964877px;}
.ls4d{letter-spacing:2.983140px;}
.ls3{letter-spacing:2.988780px;}
.ls40{letter-spacing:2.989140px;}
.ls2{letter-spacing:3.012698px;}
.ls34{letter-spacing:8.270939px;}
.ls1a{letter-spacing:8.276939px;}
.ls1c{letter-spacing:8.288986px;}
.ls26{letter-spacing:8.291576px;}
.ls27{letter-spacing:8.292322px;}
.ls7d{letter-spacing:8.296248px;}
.ls28{letter-spacing:8.298119px;}
.ls24{letter-spacing:8.298228px;}
.ls7c{letter-spacing:8.298978px;}
.ls4f{letter-spacing:8.300778px;}
.lsb{letter-spacing:8.300814px;}
.ls17{letter-spacing:8.301048px;}
.ls5{letter-spacing:8.301334px;}
.lsd{letter-spacing:8.302748px;}
.lse{letter-spacing:8.304065px;}
.ls2c{letter-spacing:8.307334px;}
.ls4{letter-spacing:8.308808px;}
.ls5e{letter-spacing:8.313274px;}
.ls7a{letter-spacing:8.314696px;}
.ls33{letter-spacing:8.315989px;}
.ls78{letter-spacing:8.317427px;}
.ls11{letter-spacing:8.323806px;}
.ls16{letter-spacing:8.325955px;}
.ls8{letter-spacing:8.329806px;}
.ls52{letter-spacing:9.419732px;}
.ls4a{letter-spacing:9.425732px;}
.ls39{letter-spacing:9.982525px;}
.ls58{letter-spacing:13.259068px;}
.ls7{letter-spacing:13.270183px;}
.ls43{letter-spacing:13.279606px;}
.ls47{letter-spacing:13.286162px;}
.ls42{letter-spacing:13.329959px;}
.ls4b{letter-spacing:13.377269px;}
.ls61{letter-spacing:15.123227px;}
.ls3d{letter-spacing:15.183002px;}
.ls76{letter-spacing:15.242778px;}
.ls90{letter-spacing:15.412099px;}
.ls2d{letter-spacing:16.268525px;}
.ls18{letter-spacing:16.557841px;}
.ls10{letter-spacing:16.617617px;}
.ls14{letter-spacing:16.737168px;}
.ls15{letter-spacing:16.796944px;}
.ls25{letter-spacing:17.036046px;}
.ls30{letter-spacing:17.039793px;}
.ls32{letter-spacing:17.065641px;}
.ls84{letter-spacing:18.590212px;}
.ls73{letter-spacing:19.187968px;}
.ls70{letter-spacing:19.546621px;}
.ls2f{letter-spacing:19.586525px;}
.ls1d{letter-spacing:19.592525px;}
.ls8f{letter-spacing:19.784044px;}
.ls72{letter-spacing:19.785724px;}
.ls8e{letter-spacing:19.790044px;}
.ls19{letter-spacing:19.965050px;}
.ls94{letter-spacing:20.801909px;}
.lsc{letter-spacing:20.921460px;}
.ls93{letter-spacing:21.100787px;}
.ls63{letter-spacing:21.280114px;}
.ls91{letter-spacing:21.877870px;}
.ls1e{letter-spacing:21.894255px;}
.ls29{letter-spacing:21.904052px;}
.ls37{letter-spacing:21.937645px;}
.ls5f{letter-spacing:22.415850px;}
.ls82{letter-spacing:22.475626px;}
.ls92{letter-spacing:22.535401px;}
.ls71{letter-spacing:22.549140px;}
.ls59{letter-spacing:22.953830px;}
.ls60{letter-spacing:23.133157px;}
.ls56{letter-spacing:23.372260px;}
.ls64{letter-spacing:23.432035px;}
.ls3a{letter-spacing:23.790689px;}
.ls65{letter-spacing:23.907089px;}
.ls5b{letter-spacing:24.328669px;}
.ls80{letter-spacing:25.524181px;}
.ls83{letter-spacing:25.882835px;}
.ls6a{letter-spacing:26.358538px;}
.ls6{letter-spacing:26.587140px;}
.ls9{letter-spacing:26.593140px;}
.ls53{letter-spacing:26.669924px;}
.ls81{letter-spacing:30.485556px;}
.ls62{letter-spacing:30.707732px;}
.ls38{letter-spacing:30.724658px;}
.ls6e{letter-spacing:72.086908px;}
.ls46{letter-spacing:74.953140px;}
.ls45{letter-spacing:74.959140px;}
.ls6d{letter-spacing:78.662908px;}
.ls3c{letter-spacing:81.529140px;}
.lsf{letter-spacing:83.293140px;}
.ls85{letter-spacing:92.812892px;}
.ls86{letter-spacing:99.201572px;}
.ls57{letter-spacing:99.307140px;}
.ls5d{letter-spacing:99.313140px;}
.ls8b{letter-spacing:102.310865px;}
.ls8a{letter-spacing:106.306827px;}
.ls89{letter-spacing:137.951694px;}
.ls87{letter-spacing:173.954529px;}
.ls88{letter-spacing:222.028067px;}
.ls23{letter-spacing:782.940809px;}
.ls6f{letter-spacing:801.829898px;}
.ls51{letter-spacing:807.771089px;}
.ls54{letter-spacing:814.347089px;}
.ls49{letter-spacing:841.605089px;}
.ls44{letter-spacing:874.947089px;}
.ls7e{letter-spacing:919.408504px;}
.ls12{letter-spacing:926.342473px;}
.ls35{letter-spacing:928.374844px;}
.ls7f{letter-spacing:965.913920px;}
.ls31{letter-spacing:989.228525px;}
.lsa{letter-spacing:1101.724084px;}
.ls75{letter-spacing:1102.041569px;}
.ls1b{letter-spacing:1376.213639px;}
.ls1f{letter-spacing:1519.928525px;}
.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;}
}
.ws6f{word-spacing:-59.775600px;}
.ws6d{word-spacing:-47.654765px;}
.ws63{word-spacing:-47.324343px;}
.ws3c{word-spacing:-38.937826px;}
.ws6b{word-spacing:-38.495486px;}
.ws61{word-spacing:-37.837955px;}
.wscb{word-spacing:-35.745809px;}
.ws6a{word-spacing:-30.656379px;}
.ws6c{word-spacing:-29.875845px;}
.ws62{word-spacing:-29.015076px;}
.ws67{word-spacing:-28.955301px;}
.ws45{word-spacing:-16.605662px;}
.ws27{word-spacing:-14.943900px;}
.wsd{word-spacing:-14.920027px;}
.ws5c{word-spacing:-11.955150px;}
.ws94{word-spacing:-11.530560px;}
.ws3d{word-spacing:-10.460700px;}
.wsae{word-spacing:-9.564150px;}
.ws3b{word-spacing:-3.335478px;}
.ws75{word-spacing:-3.275703px;}
.ws87{word-spacing:-2.988735px;}
.wsab{word-spacing:-2.390985px;}
.ws47{word-spacing:-1.649114px;}
.ws3{word-spacing:-0.059776px;}
.wsda{word-spacing:-0.047821px;}
.ws46{word-spacing:-0.041843px;}
.wsb2{word-spacing:-0.035866px;}
.ws2c{word-spacing:-0.012000px;}
.ws26{word-spacing:0.000000px;}
.ws48{word-spacing:0.011955px;}
.ws2e{word-spacing:0.047776px;}
.wsce{word-spacing:0.071731px;}
.wsf{word-spacing:0.657532px;}
.wse8{word-spacing:0.860771px;}
.ws93{word-spacing:1.075961px;}
.wsd8{word-spacing:1.195512px;}
.ws19{word-spacing:1.434614px;}
.wsc9{word-spacing:1.566121px;}
.wscd{word-spacing:1.733492px;}
.wse2{word-spacing:2.008465px;}
.ws49{word-spacing:2.092146px;}
.ws57{word-spacing:2.331248px;}
.wsad{word-spacing:2.391075px;}
.ws8f{word-spacing:2.450800px;}
.ws79{word-spacing:2.630126px;}
.ws76{word-spacing:2.689902px;}
.ws1a{word-spacing:2.809453px;}
.ws1e{word-spacing:2.869229px;}
.wsd6{word-spacing:2.929004px;}
.ws5a{word-spacing:2.988780px;}
.ws38{word-spacing:2.988825px;}
.ws84{word-spacing:3.108331px;}
.ws98{word-spacing:3.168107px;}
.ws1d{word-spacing:3.227882px;}
.wsd4{word-spacing:3.287658px;}
.ws80{word-spacing:3.466985px;}
.ws8e{word-spacing:3.526760px;}
.ws92{word-spacing:3.586536px;}
.wsa1{word-spacing:3.646312px;}
.ws9e{word-spacing:3.706087px;}
.wsbf{word-spacing:3.765863px;}
.ws20{word-spacing:3.945190px;}
.wsbe{word-spacing:4.064741px;}
.wsd9{word-spacing:4.064751px;}
.ws32{word-spacing:4.124516px;}
.wsca{word-spacing:4.196247px;}
.wsdf{word-spacing:4.208213px;}
.ws40{word-spacing:4.244068px;}
.ws11{word-spacing:4.303843px;}
.ws73{word-spacing:4.315798px;}
.ws89{word-spacing:4.423394px;}
.wsc7{word-spacing:4.495125px;}
.ws85{word-spacing:4.542946px;}
.ws6e{word-spacing:4.602721px;}
.ws56{word-spacing:4.722272px;}
.wsac{word-spacing:4.782030px;}
.ws70{word-spacing:4.782048px;}
.ws25{word-spacing:4.782060px;}
.ws7{word-spacing:4.788058px;}
.wse7{word-spacing:4.877701px;}
.ws14{word-spacing:4.961375px;}
.ws3f{word-spacing:5.021150px;}
.wsa3{word-spacing:5.033106px;}
.ws41{word-spacing:5.124080px;}
.ws10{word-spacing:5.140702px;}
.ws3e{word-spacing:5.160080px;}
.ws8c{word-spacing:5.200477px;}
.wsbd{word-spacing:5.212432px;}
.wse1{word-spacing:5.212445px;}
.wsbc{word-spacing:5.272208px;}
.ws58{word-spacing:5.320028px;}
.ws90{word-spacing:5.379804px;}
.wsa{word-spacing:5.379840px;}
.ws59{word-spacing:5.499355px;}
.wsba{word-spacing:5.511310px;}
.ws23{word-spacing:5.547190px;}
.ws1f{word-spacing:5.559131px;}
.ws86{word-spacing:5.618906px;}
.ws5d{word-spacing:5.678682px;}
.ws7d{word-spacing:5.738458px;}
.wsbb{word-spacing:5.810188px;}
.ws34{word-spacing:5.858009px;}
.ws5b{word-spacing:5.917754px;}
.wsb8{word-spacing:5.917784px;}
.wsc1{word-spacing:5.929740px;}
.ws2f{word-spacing:5.929754px;}
.ws2d{word-spacing:5.977530px;}
.ws4{word-spacing:5.977560px;}
.wsdb{word-spacing:5.977575px;}
.ws33{word-spacing:6.037336px;}
.ws6{word-spacing:6.079219px;}
.ws4d{word-spacing:6.097111px;}
.ws4c{word-spacing:6.156887px;}
.ws1b{word-spacing:6.216662px;}
.ws7f{word-spacing:6.276438px;}
.wscc{word-spacing:6.336214px;}
.ws96{word-spacing:6.395989px;}
.wsb9{word-spacing:6.455765px;}
.ws1{word-spacing:6.575340px;}
.wsa2{word-spacing:6.635092px;}
.wsd5{word-spacing:6.694867px;}
.ws30{word-spacing:6.754643px;}
.ws8{word-spacing:6.778598px;}
.wse3{word-spacing:6.838346px;}
.ws35{word-spacing:6.874194px;}
.wsc8{word-spacing:6.886149px;}
.ws88{word-spacing:6.933970px;}
.ws24{word-spacing:7.029628px;}
.ws7b{word-spacing:7.053521px;}
.wse4{word-spacing:7.125269px;}
.wse{word-spacing:7.173072px;}
.wsb7{word-spacing:7.232848px;}
.ws17{word-spacing:7.292623px;}
.ws9f{word-spacing:7.471950px;}
.ws18{word-spacing:7.531726px;}
.ws81{word-spacing:7.591501px;}
.ws72{word-spacing:7.651277px;}
.wse9{word-spacing:7.699117px;}
.ws1c{word-spacing:7.770828px;}
.wsd3{word-spacing:7.782783px;}
.wsd1{word-spacing:7.842559px;}
.ws97{word-spacing:8.069706px;}
.wsde{word-spacing:8.177323px;}
.wsa4{word-spacing:8.201212px;}
.wse6{word-spacing:8.225143px;}
.ws9{word-spacing:8.231155px;}
.wsd0{word-spacing:8.320764px;}
.ws65{word-spacing:8.368584px;}
.wscf{word-spacing:8.380539px;}
.ws60{word-spacing:8.428360px;}
.ws15{word-spacing:8.488135px;}
.wsc6{word-spacing:8.739193px;}
.ws78{word-spacing:8.787013px;}
.ws21{word-spacing:8.846789px;}
.ws9b{word-spacing:8.918520px;}
.ws71{word-spacing:8.966340px;}
.wsd7{word-spacing:9.085891px;}
.ws43{word-spacing:9.132886px;}
.ws69{word-spacing:9.145667px;}
.ws54{word-spacing:9.265218px;}
.ws77{word-spacing:9.324994px;}
.ws66{word-spacing:9.384769px;}
.wsc2{word-spacing:9.396724px;}
.ws83{word-spacing:9.444545px;}
.wsc3{word-spacing:9.456500px;}
.wsd2{word-spacing:9.504320px;}
.ws4a{word-spacing:9.558886px;}
.ws9d{word-spacing:9.623872px;}
.ws8d{word-spacing:9.862974px;}
.ws3a{word-spacing:10.042301px;}
.ws22{word-spacing:10.221628px;}
.ws82{word-spacing:10.281403px;}
.ws7e{word-spacing:10.341179px;}
.ws5{word-spacing:10.383091px;}
.wsc5{word-spacing:10.460730px;}
.ws5e{word-spacing:10.759608px;}
.ws7c{word-spacing:10.819384px;}
.ws9c{word-spacing:10.831339px;}
.wsa0{word-spacing:10.938935px;}
.wsc4{word-spacing:11.058486px;}
.ws36{word-spacing:11.118262px;}
.ws99{word-spacing:11.237813px;}
.ws16{word-spacing:11.357364px;}
.ws5f{word-spacing:11.417140px;}
.wsb6{word-spacing:11.536691px;}
.ws31{word-spacing:11.596466px;}
.ws42{word-spacing:11.700080px;}
.ws29{word-spacing:11.736883px;}
.ws95{word-spacing:11.835569px;}
.ws37{word-spacing:11.955120px;}
.ws12{word-spacing:12.134447px;}
.ws13{word-spacing:12.373549px;}
.ws91{word-spacing:12.493100px;}
.ws9a{word-spacing:12.612652px;}
.ws50{word-spacing:12.971305px;}
.wsa5{word-spacing:13.537971px;}
.ws7a{word-spacing:13.569061px;}
.ws0{word-spacing:14.346180px;}
.ws4f{word-spacing:14.501972px;}
.wsc0{word-spacing:14.645022px;}
.ws39{word-spacing:15.242778px;}
.ws4b{word-spacing:15.384886px;}
.wse0{word-spacing:16.067722px;}
.ws64{word-spacing:16.229866px;}
.wsdd{word-spacing:16.689389px;}
.ws8a{word-spacing:17.753353px;}
.wsdc{word-spacing:17.884904px;}
.wsc{word-spacing:17.932680px;}
.wse5{word-spacing:19.032599px;}
.ws8b{word-spacing:19.128192px;}
.ws74{word-spacing:19.449401px;}
.wsb{word-spacing:20.120602px;}
.ws51{word-spacing:20.433877px;}
.ws2{word-spacing:20.861684px;}
.ws28{word-spacing:23.430883px;}
.ws53{word-spacing:24.149342px;}
.wsb5{word-spacing:25.212584px;}
.ws68{word-spacing:25.913866px;}
.ws4e{word-spacing:26.167285px;}
.ws55{word-spacing:26.552322px;}
.wsb3{word-spacing:29.592584px;}
.wsa9{word-spacing:35.753695px;}
.wsaa{word-spacing:38.647768px;}
.ws52{word-spacing:42.407972px;}
.wsa8{word-spacing:48.511100px;}
.wsb0{word-spacing:50.532996px;}
.wsa7{word-spacing:56.025591px;}
.wsb4{word-spacing:59.775750px;}
.wsb1{word-spacing:71.730900px;}
.ws2b{word-spacing:81.312917px;}
.wsa6{word-spacing:87.477355px;}
.wsaf{word-spacing:95.593379px;}
.ws2a{word-spacing:132.694859px;}
.ws44{word-spacing:1409.730886px;}
._27{margin-left:-20.562806px;}
._0{margin-left:-18.506572px;}
._17{margin-left:-13.270183px;}
._9{margin-left:-7.711052px;}
._2{margin-left:-6.276438px;}
._6{margin-left:-4.949453px;}
._d{margin-left:-3.885414px;}
._1{margin-left:-2.869236px;}
._3{margin-left:-1.494390px;}
._11{width:1.297127px;}
._7{width:2.400095px;}
._5{width:3.601382px;}
._4{width:4.883635px;}
._14{width:6.575316px;}
._16{width:9.982525px;}
._10{width:12.961349px;}
._b{width:16.737168px;}
._8{width:18.231558px;}
._1b{width:19.427070px;}
._c{width:21.698543px;}
._18{width:23.632284px;}
._12{width:24.687323px;}
._a{width:26.301264px;}
._19{width:27.484861px;}
._f{width:29.887800px;}
._13{width:31.681068px;}
._e{width:33.474420px;}
._15{width:37.114971px;}
._1a{width:56.906371px;}
._23{width:71.730900px;}
._20{width:81.534123px;}
._26{width:83.016562px;}
._25{width:84.020794px;}
._1f{width:94.302223px;}
._21{width:95.641200px;}
._1e{width:107.596350px;}
._22{width:119.551500px;}
._24{width:131.506650px;}
._1c{width:133.715071px;}
._1d{width:194.821124px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.887800px;}
.fsb{font-size:35.865600px;}
.fsa{font-size:38.256600px;}
.fs5{font-size:41.842800px;}
.fs7{font-size:46.122240px;}
.fs4{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs9{font-size:54.009957px;}
.fs8{font-size:59.508000px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.yfc{bottom:2.772379px;}
.yf5{bottom:5.351981px;}
.y126{bottom:22.266272px;}
.yf4{bottom:45.587294px;}
.y125{bottom:54.126360px;}
.y11f{bottom:57.106480px;}
.yf6{bottom:66.403991px;}
.y123{bottom:69.528750px;}
.yf3{bottom:81.260757px;}
.y124{bottom:95.119933px;}
.y11d{bottom:113.332500px;}
.y71{bottom:117.609000px;}
.yb6{bottom:123.789000px;}
.yee{bottom:123.943500px;}
.yf0{bottom:124.656884px;}
.y14d{bottom:125.205000px;}
.y6f{bottom:127.858500px;}
.y72{bottom:127.860000px;}
.yb5{bottom:127.954500px;}
.y2f{bottom:128.766000px;}
.y11c{bottom:131.265000px;}
.yf2{bottom:132.135389px;}
.y70{bottom:137.968500px;}
.yb2{bottom:138.204000px;}
.yed{bottom:141.876000px;}
.y2e{bottom:142.215000px;}
.y14c{bottom:143.137500px;}
.yf1{bottom:143.444995px;}
.yb3{bottom:144.424500px;}
.yb4{bottom:148.314000px;}
.y11b{bottom:149.199000px;}
.y16a{bottom:152.439000px;}
.yfb{bottom:154.511666px;}
.y2d{bottom:155.665500px;}
.y6d{bottom:155.694000px;}
.y6e{bottom:156.376500px;}
.yec{bottom:159.810000px;}
.y6c{bottom:160.071000px;}
.y14b{bottom:161.070000px;}
.y11a{bottom:167.131500px;}
.y121{bottom:167.182767px;}
.y122{bottom:167.442823px;}
.y169{bottom:170.371500px;}
.yb1{bottom:174.399000px;}
.yeb{bottom:177.742500px;}
.y14a{bottom:179.002500px;}
.y6b{bottom:182.197500px;}
.y6a{bottom:182.880000px;}
.y2c{bottom:184.455000px;}
.y119{bottom:185.022000px;}
.y69{bottom:186.574500px;}
.y168{bottom:188.304000px;}
.yb0{bottom:192.331500px;}
.y149{bottom:196.935000px;}
.yea{bottom:200.382000px;}
.y2b{bottom:202.387500px;}
.y118{bottom:202.954500px;}
.y167{bottom:206.236500px;}
.y68{bottom:208.699500px;}
.y67{bottom:209.236500px;}
.yaf{bottom:210.264000px;}
.y120{bottom:211.476431px;}
.y66{bottom:212.931000px;}
.y148{bottom:214.867500px;}
.y2a{bottom:220.320000px;}
.y117{bottom:220.887000px;}
.y166{bottom:224.169000px;}
.yae{bottom:228.198000px;}
.ye9{bottom:228.402000px;}
.y147{bottom:232.801500px;}
.y29{bottom:238.252500px;}
.y116{bottom:238.819500px;}
.y65{bottom:239.802000px;}
.y165{bottom:242.101500px;}
.yad{bottom:246.130500px;}
.ye8{bottom:246.334500px;}
.y146{bottom:250.734000px;}
.y28{bottom:256.185000px;}
.y64{bottom:256.807500px;}
.yf8{bottom:259.171532px;}
.y164{bottom:260.035500px;}
.y115{bottom:261.418500px;}
.yac{bottom:264.063000px;}
.ye7{bottom:264.267000px;}
.y145{bottom:268.666500px;}
.yf7{bottom:270.853575px;}
.y27{bottom:274.117500px;}
.y63{bottom:274.740000px;}
.y163{bottom:277.968000px;}
.yab{bottom:281.995500px;}
.ye6{bottom:282.201000px;}
.y144{bottom:286.599000px;}
.y62{bottom:288.295500px;}
.y114{bottom:289.185000px;}
.y26{bottom:292.051500px;}
.y61{bottom:292.672500px;}
.y162{bottom:295.900500px;}
.yaa{bottom:299.928000px;}
.ye5{bottom:300.133500px;}
.y143{bottom:304.531500px;}
.y113{bottom:307.117500px;}
.yfa{bottom:307.415467px;}
.y25{bottom:309.984000px;}
.y60{bottom:310.315500px;}
.y161{bottom:313.833000px;}
.y5f{bottom:314.545500px;}
.ye4{bottom:318.066000px;}
.yf9{bottom:319.097510px;}
.y142{bottom:322.464000px;}
.ya8{bottom:323.797500px;}
.y112{bottom:325.050000px;}
.y24{bottom:327.916500px;}
.y160{bottom:331.765500px;}
.ye3{bottom:335.998500px;}
.ya9{bottom:337.960500px;}
.y5d{bottom:340.215000px;}
.y5e{bottom:340.362000px;}
.y141{bottom:340.398000px;}
.y5c{bottom:340.426500px;}
.ya7{bottom:341.655000px;}
.y111{bottom:342.982500px;}
.y5b{bottom:344.592000px;}
.y23{bottom:345.849000px;}
.y15f{bottom:349.698000px;}
.ye2{bottom:353.931000px;}
.y140{bottom:358.330500px;}
.y110{bottom:360.916500px;}
.ya6{bottom:363.514500px;}
.y22{bottom:363.781500px;}
.ya5{bottom:367.209000px;}
.y15e{bottom:367.632000px;}
.y5a{bottom:368.227500px;}
.ye1{bottom:371.863500px;}
.y59{bottom:372.117000px;}
.y13f{bottom:376.263000px;}
.y10f{bottom:378.849000px;}
.y21{bottom:381.714000px;}
.ya4{bottom:386.470500px;}
.ye0{bottom:389.797500px;}
.ya3{bottom:390.165000px;}
.y15d{bottom:390.271500px;}
.y57{bottom:392.872500px;}
.ya2{bottom:393.942000px;}
.y13e{bottom:394.195500px;}
.y10e{bottom:396.781500px;}
.y20{bottom:399.648000px;}
.y58{bottom:406.630500px;}
.ydf{bottom:407.730000px;}
.y54{bottom:410.325000px;}
.y13d{bottom:412.128000px;}
.y10d{bottom:414.672000px;}
.y1f{bottom:417.580500px;}
.ya1{bottom:418.185000px;}
.y15c{bottom:418.291500px;}
.y56{bottom:424.521000px;}
.yde{bottom:425.662500px;}
.y55{bottom:429.004500px;}
.y13c{bottom:430.060500px;}
.y10c{bottom:432.604500px;}
.y1e{bottom:435.513000px;}
.ya0{bottom:436.117500px;}
.y15b{bottom:436.224000px;}
.y53{bottom:440.352000px;}
.ydd{bottom:443.595000px;}
.y13b{bottom:447.994500px;}
.y10b{bottom:450.537000px;}
.y1d{bottom:453.445500px;}
.y9f{bottom:454.050000px;}
.y15a{bottom:454.156500px;}
.y52{bottom:457.357500px;}
.ydc{bottom:461.527500px;}
.y13a{bottom:465.927000px;}
.y9e{bottom:468.093000px;}
.y10a{bottom:468.471000px;}
.y1c{bottom:471.378000px;}
.y9d{bottom:471.982500px;}
.y159{bottom:472.089000px;}
.y51{bottom:475.290000px;}
.ydb{bottom:479.461500px;}
.y139{bottom:483.859500px;}
.y9c{bottom:486.025500px;}
.y109{bottom:486.361500px;}
.y1b{bottom:489.312000px;}
.y9b{bottom:489.916500px;}
.y158{bottom:490.023000px;}
.y50{bottom:493.222500px;}
.y138{bottom:501.792000px;}
.yda{bottom:502.101000px;}
.y9a{bottom:503.959500px;}
.y108{bottom:504.294000px;}
.y1a{bottom:507.244500px;}
.y99{bottom:507.849000px;}
.y157{bottom:507.955500px;}
.y4f{bottom:511.155000px;}
.y137{bottom:519.724500px;}
.y107{bottom:522.226500px;}
.y19{bottom:525.177000px;}
.y156{bottom:525.888000px;}
.y4e{bottom:529.089000px;}
.yd9{bottom:530.121000px;}
.y98{bottom:534.421500px;}
.y136{bottom:537.658500px;}
.y97{bottom:538.116000px;}
.y106{bottom:540.159000px;}
.y18{bottom:543.109500px;}
.y155{bottom:543.820500px;}
.y4d{bottom:547.021500px;}
.yd8{bottom:548.053500px;}
.y135{bottom:555.591000px;}
.y105{bottom:558.091500px;}
.y96{bottom:559.914000px;}
.y17{bottom:561.042000px;}
.y154{bottom:561.753000px;}
.y95{bottom:563.608500px;}
.yd7{bottom:565.986000px;}
.y4c{bottom:569.197500px;}
.y134{bottom:573.523500px;}
.y104{bottom:576.025500px;}
.y16{bottom:578.974500px;}
.y153{bottom:579.685500px;}
.yd6{bottom:583.918500px;}
.y94{bottom:585.018000px;}
.y93{bottom:588.712500px;}
.y133{bottom:591.456000px;}
.y103{bottom:593.958000px;}
.y4b{bottom:594.435000px;}
.y15{bottom:596.908500px;}
.y152{bottom:597.619500px;}
.yd5{bottom:601.851000px;}
.y92{bottom:609.016500px;}
.y132{bottom:609.388500px;}
.y102{bottom:611.848500px;}
.y4a{bottom:612.369000px;}
.y91{bottom:612.711000px;}
.y14{bottom:614.841000px;}
.y151{bottom:615.552000px;}
.yd4{bottom:619.785000px;}
.y131{bottom:627.321000px;}
.y101{bottom:629.781000px;}
.y49{bottom:630.301500px;}
.y13{bottom:632.773500px;}
.y150{bottom:633.484500px;}
.yd3{bottom:637.717500px;}
.y90{bottom:640.731000px;}
.y100{bottom:647.713500px;}
.y48{bottom:648.234000px;}
.y14f{bottom:651.417000px;}
.y12{bottom:655.413000px;}
.yd2{bottom:655.650000px;}
.y8f{bottom:658.663500px;}
.yff{bottom:665.646000px;}
.y47{bottom:666.166500px;}
.yd1{bottom:673.582500px;}
.y189{bottom:673.956000px;}
.y130{bottom:675.391500px;}
.y8e{bottom:676.597500px;}
.y12f{bottom:679.501500px;}
.yfe{bottom:683.578500px;}
.y46{bottom:684.099000px;}
.y188{bottom:687.405000px;}
.y11{bottom:687.489000px;}
.yd0{bottom:691.515000px;}
.y12e{bottom:691.690500px;}
.y8d{bottom:694.530000px;}
.y12d{bottom:695.802000px;}
.y14e{bottom:699.733500px;}
.y187{bottom:700.855500px;}
.y45{bottom:702.031500px;}
.y12c{bottom:707.991000px;}
.ycf{bottom:709.449000px;}
.y10{bottom:709.903500px;}
.y12b{bottom:711.954000px;}
.y8c{bottom:712.462500px;}
.y186{bottom:714.304500px;}
.y44{bottom:719.965500px;}
.yce{bottom:727.381500px;}
.y185{bottom:727.755000px;}
.y12a{bottom:730.335000px;}
.y8b{bottom:730.395000px;}
.yfd{bottom:731.446500px;}
.yf{bottom:733.815000px;}
.y43{bottom:737.898000px;}
.y184{bottom:741.204000px;}
.ycd{bottom:745.314000px;}
.y8a{bottom:748.327500px;}
.ye{bottom:748.758000px;}
.y183{bottom:754.653000px;}
.y42{bottom:755.830500px;}
.y129{bottom:757.129500px;}
.yef{bottom:758.346000px;}
.ycc{bottom:763.246500px;}
.yd{bottom:763.702500px;}
.y182{bottom:768.103500px;}
.y128{bottom:770.578500px;}
.y89{bottom:770.968500px;}
.y41{bottom:778.006500px;}
.yc{bottom:778.647000px;}
.ycb{bottom:781.179000px;}
.y181{bottom:781.552500px;}
.yb{bottom:793.590000px;}
.y180{bottom:795.001500px;}
.y88{bottom:798.987000px;}
.yca{bottom:799.111500px;}
.y127{bottom:806.343000px;}
.y17f{bottom:808.452000px;}
.ya{bottom:808.534500px;}
.y87{bottom:816.921000px;}
.yc9{bottom:817.045500px;}
.y40{bottom:821.379000px;}
.y17e{bottom:821.901000px;}
.y9{bottom:830.950500px;}
.y11e{bottom:833.242500px;}
.y86{bottom:834.853500px;}
.yc8{bottom:834.978000px;}
.y17d{bottom:835.351500px;}
.y17c{bottom:848.800500px;}
.y85{bottom:852.786000px;}
.yc7{bottom:852.910500px;}
.y17b{bottom:862.249500px;}
.y84{bottom:870.718500px;}
.yc6{bottom:870.843000px;}
.y35{bottom:875.169000px;}
.y17a{bottom:875.700000px;}
.y3f{bottom:885.642000px;}
.y8{bottom:888.153000px;}
.y83{bottom:888.651000px;}
.yc5{bottom:888.775500px;}
.y179{bottom:889.149000px;}
.y3c{bottom:895.825500px;}
.y178{bottom:902.598000px;}
.y7{bottom:906.646500px;}
.yc4{bottom:911.416500px;}
.y82{bottom:912.976500px;}
.y177{bottom:916.048500px;}
.y81{bottom:916.671000px;}
.y6{bottom:925.140000px;}
.y176{bottom:929.497500px;}
.y80{bottom:934.605000px;}
.yc3{bottom:939.436500px;}
.y3a{bottom:941.184000px;}
.y175{bottom:942.946500px;}
.y5{bottom:943.632000px;}
.y7f{bottom:952.537500px;}
.y3e{bottom:953.121000px;}
.y3d{bottom:956.209500px;}
.y174{bottom:956.397000px;}
.yc2{bottom:957.369000px;}
.y4{bottom:962.347500px;}
.y3b{bottom:963.763500px;}
.y173{bottom:969.846000px;}
.y7e{bottom:970.470000px;}
.yc1{bottom:981.694500px;}
.y172{bottom:983.296500px;}
.y7d{bottom:984.300000px;}
.yc0{bottom:985.389000px;}
.y7c{bottom:988.402500px;}
.y171{bottom:996.745500px;}
.ybf{bottom:1004.458500px;}
.ybe{bottom:1008.153000px;}
.y3{bottom:1009.420500px;}
.y170{bottom:1010.194500px;}
.ybd{bottom:1011.930000px;}
.y7a{bottom:1012.740000px;}
.y7b{bottom:1013.211000px;}
.y79{bottom:1016.905500px;}
.y36{bottom:1018.069500px;}
.y33{bottom:1021.117500px;}
.y16f{bottom:1023.645000px;}
.ybc{bottom:1027.222500px;}
.ybb{bottom:1030.917000px;}
.y39{bottom:1033.513500px;}
.y30{bottom:1034.224500px;}
.y16e{bottom:1037.094000px;}
.y37{bottom:1045.197000px;}
.y78{bottom:1045.836000px;}
.yba{bottom:1049.988000px;}
.y16d{bottom:1050.543000px;}
.y2{bottom:1051.264500px;}
.yb9{bottom:1053.682500px;}
.yb8{bottom:1057.459500px;}
.y77{bottom:1063.768500px;}
.y16c{bottom:1063.993500px;}
.y38{bottom:1068.340500px;}
.y31{bottom:1069.975500px;}
.y16b{bottom:1077.442500px;}
.y32{bottom:1080.724500px;}
.y76{bottom:1081.701000px;}
.y1{bottom:1093.107000px;}
.y75{bottom:1095.532500px;}
.y74{bottom:1095.679500px;}
.yb7{bottom:1095.744000px;}
.y34{bottom:1096.996500px;}
.y73{bottom:1099.635000px;}
.hf{height:2.391024px;}
.he{height:31.382100px;}
.h41{height:32.024329px;}
.h38{height:32.721070px;}
.h9{height:32.900573px;}
.h48{height:33.091855px;}
.h4d{height:33.140573px;}
.h7{height:37.013299px;}
.h6{height:37.228493px;}
.h8{height:37.283299px;}
.h47{height:37.501054px;}
.h45{height:37.785809px;}
.h46{height:37.967897px;}
.h3{height:40.826735px;}
.h5{height:41.125613px;}
.h43{height:41.318543px;}
.h4{height:41.425613px;}
.hb{height:41.617613px;}
.h49{height:41.749000px;}
.h44{height:41.882242px;}
.hc{height:42.141798px;}
.ha{height:43.453613px;}
.hd{height:44.831700px;}
.h2{height:45.238339px;}
.h2a{height:46.326090px;}
.h4a{height:48.752573px;}
.h4c{height:49.340573px;}
.h4b{height:49.346573px;}
.h31{height:50.811024px;}
.h23{height:53.072100px;}
.h3b{height:53.307070px;}
.h3e{height:54.411070px;}
.h13{height:54.417070px;}
.h21{height:55.903613px;}
.h2e{height:56.060100px;}
.h1c{height:56.066100px;}
.h33{height:56.683613px;}
.h35{height:56.689613px;}
.h10{height:57.399070px;}
.h28{height:57.405070px;}
.h26{height:57.535613px;}
.h37{height:59.181024px;}
.h1f{height:59.609700px;}
.h32{height:59.939700px;}
.h15{height:60.389700px;}
.h3f{height:60.395700px;}
.h12{height:61.104090px;}
.h19{height:61.751700px;}
.h36{height:61.884090px;}
.h1a{height:63.246090px;}
.h16{height:63.771070px;}
.h1b{height:63.834090px;}
.h2d{height:65.589024px;}
.h22{height:67.245619px;}
.h34{height:68.636100px;}
.h24{height:68.894100px;}
.h25{height:69.482100px;}
.h3c{height:69.969070px;}
.h14{height:69.975070px;}
.h2f{height:70.838100px;}
.h2b{height:70.844100px;}
.h11{height:72.177070px;}
.h29{height:72.183070px;}
.h27{height:72.728100px;}
.h1e{height:72.992100px;}
.h20{height:73.574100px;}
.h30{height:74.717700px;}
.h2c{height:74.723700px;}
.h3a{height:75.497700px;}
.h1d{height:78.549070px;}
.h17{height:80.433070px;}
.h18{height:81.279070px;}
.h39{height:94.851070px;}
.h1{height:98.701718px;}
.h3d{height:98.791613px;}
.h42{height:278.943750px;}
.h40{height:353.844060px;}
.h0{height:1188.000000px;}
.w1{width:385.553100px;}
.w2{width:385.562250px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7f{left:4.855879px;}
.x7e{left:16.392060px;}
.x83{left:61.430480px;}
.x84{left:62.454142px;}
.x7a{left:67.888694px;}
.x20{left:73.446000px;}
.x8d{left:79.423500px;}
.x5a{left:82.164000px;}
.x2{left:84.639000px;}
.x1f{left:88.389000px;}
.x1{left:89.571000px;}
.x81{left:93.271351px;}
.x5{left:98.418000px;}
.x8e{left:100.834500px;}
.x1b{left:103.333500px;}
.x3b{left:109.609500px;}
.x6c{left:113.548500px;}
.x77{left:116.440639px;}
.x45{left:123.805500px;}
.x1a{left:125.749500px;}
.x6{left:131.137500px;}
.x8{left:134.485500px;}
.xa{left:142.197000px;}
.x2d{left:153.676500px;}
.x4{left:154.776000px;}
.x7b{left:167.039475px;}
.x78{left:181.122973px;}
.x9{left:186.624000px;}
.x35{left:194.308500px;}
.x8b{left:195.946500px;}
.x21{left:202.588500px;}
.x46{left:207.199500px;}
.x2c{left:222.540000px;}
.x89{left:223.662000px;}
.x87{left:226.114500px;}
.x79{left:229.185374px;}
.x8a{left:232.971000px;}
.x88{left:234.168000px;}
.x76{left:235.999575px;}
.x82{left:245.222550px;}
.x86{left:248.457000px;}
.x7{left:259.774500px;}
.x73{left:260.943000px;}
.x75{left:266.223000px;}
.x74{left:271.066500px;}
.x80{left:272.542500px;}
.x3{left:283.134000px;}
.x3c{left:286.600500px;}
.x8f{left:290.607000px;}
.x3d{left:296.194500px;}
.x5e{left:298.804500px;}
.x51{left:299.826000px;}
.x41{left:302.005500px;}
.x52{left:308.544000px;}
.x54{left:310.186500px;}
.x7d{left:312.808887px;}
.x28{left:315.928500px;}
.x1c{left:318.156000px;}
.x30{left:319.179000px;}
.x50{left:321.234000px;}
.x36{left:322.461000px;}
.x7c{left:323.933643px;}
.x85{left:326.760000px;}
.x6d{left:328.191000px;}
.x37{left:332.056500px;}
.x58{left:335.133000px;}
.x4a{left:337.429500px;}
.x72{left:339.823500px;}
.x71{left:343.168500px;}
.xc{left:347.130000px;}
.x4b{left:352.836000px;}
.x40{left:359.239500px;}
.x67{left:360.715500px;}
.x60{left:362.305500px;}
.x2f{left:366.586500px;}
.x3e{left:367.776000px;}
.x63{left:377.248500px;}
.xd{left:379.849500px;}
.xf{left:383.197500px;}
.x11{left:394.443000px;}
.x32{left:396.604500px;}
.x8c{left:397.864500px;}
.x1e{left:400.689000px;}
.x22{left:401.704500px;}
.x31{left:403.063500px;}
.x23{left:404.505000px;}
.x64{left:407.863500px;}
.x53{left:411.558000px;}
.xb{left:412.759500px;}
.x55{left:413.920500px;}
.x61{left:417.042000px;}
.x33{left:418.189500px;}
.x6f{left:420.241500px;}
.x1d{left:421.980000px;}
.x5c{left:425.287500px;}
.x19{left:433.977000px;}
.x10{left:435.336000px;}
.x3f{left:439.366500px;}
.x65{left:448.978500px;}
.x69{left:450.901500px;}
.x6a{left:460.497000px;}
.x24{left:463.471500px;}
.x5d{left:469.419000px;}
.x90{left:470.833500px;}
.x38{left:475.063500px;}
.x4e{left:487.698000px;}
.x34{left:489.349500px;}
.x68{left:495.312000px;}
.x56{left:500.181000px;}
.x5f{left:502.264500px;}
.x6e{left:503.563500px;}
.xe{left:508.486500px;}
.x27{left:510.241500px;}
.x62{left:514.531500px;}
.x6b{left:516.250500px;}
.x25{left:532.338000px;}
.x4c{left:534.286500px;}
.x29{left:536.328000px;}
.x70{left:539.263500px;}
.x2b{left:540.927000px;}
.x2a{left:542.088000px;}
.x66{left:546.468000px;}
.x42{left:551.617500px;}
.x39{left:553.467000px;}
.x4f{left:556.131000px;}
.x43{left:559.408500px;}
.x57{left:562.483500px;}
.x4d{left:589.512000px;}
.x13{left:595.842000px;}
.x26{left:604.441500px;}
.x44{left:613.549500px;}
.x14{left:628.561500px;}
.x16{left:631.909500px;}
.x18{left:635.676000px;}
.x47{left:640.221000px;}
.x12{left:654.616500px;}
.x17{left:684.048000px;}
.x48{left:691.335000px;}
.x5b{left:729.462000px;}
.x2e{left:747.352500px;}
.x15{left:757.198500px;}
.x49{left:764.548500px;}
.x3a{left:773.349000px;}
.x59{left:816.208500px;}
@media print{
.v13{vertical-align:-21.253333pt;}
.v14{vertical-align:-15.941333pt;}
.vb{vertical-align:-7.968000pt;}
.v16{vertical-align:-5.312000pt;}
.v11{vertical-align:-2.805333pt;}
.v19{vertical-align:-1.108890pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.069333pt;}
.v10{vertical-align:5.168000pt;}
.v7{vertical-align:6.842667pt;}
.v8{vertical-align:7.968000pt;}
.v3{vertical-align:13.136000pt;}
.v6{vertical-align:14.810667pt;}
.v12{vertical-align:15.941333pt;}
.v18{vertical-align:18.298667pt;}
.v4{vertical-align:19.285333pt;}
.v2{vertical-align:21.936000pt;}
.v5{vertical-align:27.600000pt;}
.vf{vertical-align:29.909333pt;}
.ve{vertical-align:33.344000pt;}
.v9{vertical-align:35.568000pt;}
.vd{vertical-align:36.986667pt;}
.vc{vertical-align:40.736000pt;}
.va{vertical-align:43.162667pt;}
.v15{vertical-align:50.480000pt;}
.v17{vertical-align:55.226667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.000058pt;}
.ls6c{letter-spacing:0.000438pt;}
.ls41{letter-spacing:0.001921pt;}
.ls74{letter-spacing:0.001933pt;}
.ls2b{letter-spacing:0.002983pt;}
.ls50{letter-spacing:0.003118pt;}
.ls22{letter-spacing:0.003246pt;}
.ls3b{letter-spacing:0.004349pt;}
.ls68{letter-spacing:0.005277pt;}
.ls4c{letter-spacing:0.005391pt;}
.ls2e{letter-spacing:0.008031pt;}
.ls48{letter-spacing:0.011776pt;}
.ls69{letter-spacing:0.012719pt;}
.ls13{letter-spacing:0.018880pt;}
.ls67{letter-spacing:0.019536pt;}
.ls2a{letter-spacing:0.020389pt;}
.ls20{letter-spacing:0.020583pt;}
.ls5a{letter-spacing:0.020946pt;}
.ls5c{letter-spacing:0.021915pt;}
.ls3e{letter-spacing:0.022422pt;}
.ls7b{letter-spacing:0.023261pt;}
.ls66{letter-spacing:0.023728pt;}
.ls77{letter-spacing:0.024857pt;}
.ls55{letter-spacing:0.025438pt;}
.ls79{letter-spacing:0.025493pt;}
.ls36{letter-spacing:0.765130pt;}
.ls3f{letter-spacing:1.647150pt;}
.ls4e{letter-spacing:1.700284pt;}
.ls8c{letter-spacing:2.108364pt;}
.ls8d{letter-spacing:2.125360pt;}
.ls6b{letter-spacing:2.157229pt;}
.ls0{letter-spacing:2.635446pt;}
.ls4d{letter-spacing:2.651680pt;}
.ls3{letter-spacing:2.656693pt;}
.ls40{letter-spacing:2.657014pt;}
.ls2{letter-spacing:2.677954pt;}
.ls34{letter-spacing:7.351945pt;}
.ls1a{letter-spacing:7.357279pt;}
.ls1c{letter-spacing:7.367988pt;}
.ls26{letter-spacing:7.370289pt;}
.ls27{letter-spacing:7.370953pt;}
.ls7d{letter-spacing:7.374442pt;}
.ls28{letter-spacing:7.376106pt;}
.ls24{letter-spacing:7.376203pt;}
.ls7c{letter-spacing:7.376870pt;}
.ls4f{letter-spacing:7.378470pt;}
.lsb{letter-spacing:7.378501pt;}
.ls17{letter-spacing:7.378709pt;}
.ls5{letter-spacing:7.378964pt;}
.lsd{letter-spacing:7.380220pt;}
.lse{letter-spacing:7.381391pt;}
.ls2c{letter-spacing:7.384297pt;}
.ls4{letter-spacing:7.385607pt;}
.ls5e{letter-spacing:7.389577pt;}
.ls7a{letter-spacing:7.390841pt;}
.ls33{letter-spacing:7.391990pt;}
.ls78{letter-spacing:7.393269pt;}
.ls11{letter-spacing:7.398939pt;}
.ls16{letter-spacing:7.400849pt;}
.ls8{letter-spacing:7.404272pt;}
.ls52{letter-spacing:8.373095pt;}
.ls4a{letter-spacing:8.378428pt;}
.ls39{letter-spacing:8.873356pt;}
.ls58{letter-spacing:11.785838pt;}
.ls7{letter-spacing:11.795718pt;}
.ls43{letter-spacing:11.804094pt;}
.ls47{letter-spacing:11.809921pt;}
.ls42{letter-spacing:11.848852pt;}
.ls4b{letter-spacing:11.890906pt;}
.ls61{letter-spacing:13.442868pt;}
.ls3d{letter-spacing:13.496002pt;}
.ls76{letter-spacing:13.549136pt;}
.ls90{letter-spacing:13.699643pt;}
.ls2d{letter-spacing:14.460911pt;}
.ls18{letter-spacing:14.718081pt;}
.ls10{letter-spacing:14.771215pt;}
.ls14{letter-spacing:14.877483pt;}
.ls15{letter-spacing:14.930617pt;}
.ls25{letter-spacing:15.143152pt;}
.ls30{letter-spacing:15.146482pt;}
.ls32{letter-spacing:15.169459pt;}
.ls84{letter-spacing:16.524633pt;}
.ls73{letter-spacing:17.055971pt;}
.ls70{letter-spacing:17.374774pt;}
.ls2f{letter-spacing:17.410245pt;}
.ls1d{letter-spacing:17.415578pt;}
.ls8f{letter-spacing:17.585817pt;}
.ls72{letter-spacing:17.587310pt;}
.ls8e{letter-spacing:17.591150pt;}
.ls19{letter-spacing:17.746711pt;}
.ls94{letter-spacing:18.490586pt;}
.lsc{letter-spacing:18.596853pt;}
.ls93{letter-spacing:18.756255pt;}
.ls63{letter-spacing:18.915657pt;}
.ls91{letter-spacing:19.446995pt;}
.ls1e{letter-spacing:19.461560pt;}
.ls29{letter-spacing:19.470269pt;}
.ls37{letter-spacing:19.500129pt;}
.ls5f{letter-spacing:19.925200pt;}
.ls82{letter-spacing:19.978334pt;}
.ls92{letter-spacing:20.031468pt;}
.ls71{letter-spacing:20.043680pt;}
.ls59{letter-spacing:20.403405pt;}
.ls60{letter-spacing:20.562806pt;}
.ls56{letter-spacing:20.775342pt;}
.ls64{letter-spacing:20.828476pt;}
.ls3a{letter-spacing:21.147279pt;}
.ls65{letter-spacing:21.250746pt;}
.ls5b{letter-spacing:21.625484pt;}
.ls80{letter-spacing:22.688161pt;}
.ls83{letter-spacing:23.006964pt;}
.ls6a{letter-spacing:23.429812pt;}
.ls6{letter-spacing:23.633014pt;}
.ls9{letter-spacing:23.638347pt;}
.ls53{letter-spacing:23.706599pt;}
.ls81{letter-spacing:27.098272pt;}
.ls62{letter-spacing:27.295761pt;}
.ls38{letter-spacing:27.310807pt;}
.ls6e{letter-spacing:64.077252pt;}
.ls46{letter-spacing:66.625014pt;}
.ls45{letter-spacing:66.630347pt;}
.ls6d{letter-spacing:69.922585pt;}
.ls3c{letter-spacing:72.470347pt;}
.lsf{letter-spacing:74.038347pt;}
.ls85{letter-spacing:82.500348pt;}
.ls86{letter-spacing:88.179175pt;}
.ls57{letter-spacing:88.273014pt;}
.ls5d{letter-spacing:88.278347pt;}
.ls8b{letter-spacing:90.942991pt;}
.ls8a{letter-spacing:94.494957pt;}
.ls89{letter-spacing:122.623728pt;}
.ls87{letter-spacing:154.626248pt;}
.ls88{letter-spacing:197.358282pt;}
.ls23{letter-spacing:695.947386pt;}
.ls6f{letter-spacing:712.737687pt;}
.ls51{letter-spacing:718.018746pt;}
.ls54{letter-spacing:723.864079pt;}
.ls49{letter-spacing:748.093413pt;}
.ls44{letter-spacing:777.730746pt;}
.ls7e{letter-spacing:817.252003pt;}
.ls12{letter-spacing:823.415532pt;}
.ls35{letter-spacing:825.222083pt;}
.ls7f{letter-spacing:858.590151pt;}
.ls31{letter-spacing:879.314245pt;}
.lsa{letter-spacing:979.310297pt;}
.ls75{letter-spacing:979.592506pt;}
.ls1b{letter-spacing:1223.301012pt;}
.ls1f{letter-spacing:1351.047578pt;}
.ws6f{word-spacing:-53.133867pt;}
.ws6d{word-spacing:-42.359791pt;}
.ws63{word-spacing:-42.066082pt;}
.ws3c{word-spacing:-34.611401pt;}
.ws6b{word-spacing:-34.218210pt;}
.ws61{word-spacing:-33.633738pt;}
.wscb{word-spacing:-31.774052pt;}
.ws6a{word-spacing:-27.250114pt;}
.ws6c{word-spacing:-26.556307pt;}
.ws62{word-spacing:-25.791179pt;}
.ws67{word-spacing:-25.738045pt;}
.ws45{word-spacing:-14.760588pt;}
.ws27{word-spacing:-13.283467pt;}
.wsd{word-spacing:-13.262246pt;}
.ws5c{word-spacing:-10.626800pt;}
.ws94{word-spacing:-10.249387pt;}
.ws3d{word-spacing:-9.298400pt;}
.wsae{word-spacing:-8.501467pt;}
.ws3b{word-spacing:-2.964870pt;}
.ws75{word-spacing:-2.911736pt;}
.ws87{word-spacing:-2.656653pt;}
.wsab{word-spacing:-2.125320pt;}
.ws47{word-spacing:-1.465879pt;}
.ws3{word-spacing:-0.053134pt;}
.wsda{word-spacing:-0.042507pt;}
.ws46{word-spacing:-0.037194pt;}
.wsb2{word-spacing:-0.031881pt;}
.ws2c{word-spacing:-0.010667pt;}
.ws26{word-spacing:0.000000pt;}
.ws48{word-spacing:0.010627pt;}
.ws2e{word-spacing:0.042467pt;}
.wsce{word-spacing:0.063761pt;}
.wsf{word-spacing:0.584473pt;}
.wse8{word-spacing:0.765130pt;}
.ws93{word-spacing:0.956410pt;}
.wsd8{word-spacing:1.062677pt;}
.ws19{word-spacing:1.275213pt;}
.wsc9{word-spacing:1.392107pt;}
.wscd{word-spacing:1.540882pt;}
.wse2{word-spacing:1.785302pt;}
.ws49{word-spacing:1.859685pt;}
.ws57{word-spacing:2.072221pt;}
.wsad{word-spacing:2.125400pt;}
.ws8f{word-spacing:2.178489pt;}
.ws79{word-spacing:2.337890pt;}
.ws76{word-spacing:2.391024pt;}
.ws1a{word-spacing:2.497292pt;}
.ws1e{word-spacing:2.550426pt;}
.wsd6{word-spacing:2.603559pt;}
.ws5a{word-spacing:2.656693pt;}
.ws38{word-spacing:2.656733pt;}
.ws84{word-spacing:2.762961pt;}
.ws98{word-spacing:2.816095pt;}
.ws1d{word-spacing:2.869229pt;}
.wsd4{word-spacing:2.922363pt;}
.ws80{word-spacing:3.081764pt;}
.ws8e{word-spacing:3.134898pt;}
.ws92{word-spacing:3.188032pt;}
.wsa1{word-spacing:3.241166pt;}
.ws9e{word-spacing:3.294300pt;}
.wsbf{word-spacing:3.347434pt;}
.ws20{word-spacing:3.506835pt;}
.wsbe{word-spacing:3.613103pt;}
.wsd9{word-spacing:3.613112pt;}
.ws32{word-spacing:3.666237pt;}
.wsca{word-spacing:3.729997pt;}
.wsdf{word-spacing:3.740634pt;}
.ws40{word-spacing:3.772505pt;}
.ws11{word-spacing:3.825638pt;}
.ws73{word-spacing:3.836265pt;}
.ws89{word-spacing:3.931906pt;}
.wsc7{word-spacing:3.995667pt;}
.ws85{word-spacing:4.038174pt;}
.ws6e{word-spacing:4.091308pt;}
.ws56{word-spacing:4.197575pt;}
.wsac{word-spacing:4.250693pt;}
.ws70{word-spacing:4.250709pt;}
.ws25{word-spacing:4.250720pt;}
.ws7{word-spacing:4.256051pt;}
.wse7{word-spacing:4.335734pt;}
.ws14{word-spacing:4.410111pt;}
.ws3f{word-spacing:4.463245pt;}
.wsa3{word-spacing:4.473872pt;}
.ws41{word-spacing:4.554738pt;}
.ws10{word-spacing:4.569513pt;}
.ws3e{word-spacing:4.586738pt;}
.ws8c{word-spacing:4.622646pt;}
.wsbd{word-spacing:4.633273pt;}
.wse1{word-spacing:4.633285pt;}
.wsbc{word-spacing:4.686407pt;}
.ws58{word-spacing:4.728914pt;}
.ws90{word-spacing:4.782048pt;}
.wsa{word-spacing:4.782080pt;}
.ws59{word-spacing:4.888316pt;}
.wsba{word-spacing:4.898943pt;}
.ws23{word-spacing:4.930835pt;}
.ws1f{word-spacing:4.941450pt;}
.ws86{word-spacing:4.994583pt;}
.ws5d{word-spacing:5.047717pt;}
.ws7d{word-spacing:5.100851pt;}
.wsbb{word-spacing:5.164612pt;}
.ws34{word-spacing:5.207119pt;}
.ws5b{word-spacing:5.260226pt;}
.wsb8{word-spacing:5.260253pt;}
.wsc1{word-spacing:5.270880pt;}
.ws2f{word-spacing:5.270893pt;}
.ws2d{word-spacing:5.313360pt;}
.ws4{word-spacing:5.313387pt;}
.wsdb{word-spacing:5.313400pt;}
.ws33{word-spacing:5.366521pt;}
.ws6{word-spacing:5.403750pt;}
.ws4d{word-spacing:5.419654pt;}
.ws4c{word-spacing:5.472788pt;}
.ws1b{word-spacing:5.525922pt;}
.ws7f{word-spacing:5.579056pt;}
.wscc{word-spacing:5.632190pt;}
.ws96{word-spacing:5.685324pt;}
.wsb9{word-spacing:5.738458pt;}
.ws1{word-spacing:5.844747pt;}
.wsa2{word-spacing:5.897859pt;}
.wsd5{word-spacing:5.950993pt;}
.ws30{word-spacing:6.004127pt;}
.ws8{word-spacing:6.025421pt;}
.wse3{word-spacing:6.078530pt;}
.ws35{word-spacing:6.110395pt;}
.wsc8{word-spacing:6.121021pt;}
.ws88{word-spacing:6.163529pt;}
.ws24{word-spacing:6.248558pt;}
.ws7b{word-spacing:6.269796pt;}
.wse4{word-spacing:6.333573pt;}
.wse{word-spacing:6.376064pt;}
.wsb7{word-spacing:6.429198pt;}
.ws17{word-spacing:6.482332pt;}
.ws9f{word-spacing:6.641733pt;}
.ws18{word-spacing:6.694867pt;}
.ws81{word-spacing:6.748001pt;}
.ws72{word-spacing:6.801135pt;}
.wse9{word-spacing:6.843659pt;}
.ws1c{word-spacing:6.907403pt;}
.wsd3{word-spacing:6.918029pt;}
.wsd1{word-spacing:6.971163pt;}
.ws97{word-spacing:7.173072pt;}
.wsde{word-spacing:7.268731pt;}
.wsa4{word-spacing:7.289967pt;}
.wse6{word-spacing:7.311238pt;}
.ws9{word-spacing:7.316582pt;}
.wsd0{word-spacing:7.396234pt;}
.ws65{word-spacing:7.438741pt;}
.wscf{word-spacing:7.449368pt;}
.ws60{word-spacing:7.491875pt;}
.ws15{word-spacing:7.545009pt;}
.wsc6{word-spacing:7.768171pt;}
.ws78{word-spacing:7.810678pt;}
.ws21{word-spacing:7.863812pt;}
.ws9b{word-spacing:7.927573pt;}
.ws71{word-spacing:7.970080pt;}
.wsd7{word-spacing:8.076348pt;}
.ws43{word-spacing:8.118121pt;}
.ws69{word-spacing:8.129482pt;}
.ws54{word-spacing:8.235749pt;}
.ws77{word-spacing:8.288883pt;}
.ws66{word-spacing:8.342017pt;}
.wsc2{word-spacing:8.352644pt;}
.ws83{word-spacing:8.395151pt;}
.wsc3{word-spacing:8.405778pt;}
.wsd2{word-spacing:8.448285pt;}
.ws4a{word-spacing:8.496788pt;}
.ws9d{word-spacing:8.554553pt;}
.ws8d{word-spacing:8.767088pt;}
.ws3a{word-spacing:8.926490pt;}
.ws22{word-spacing:9.085891pt;}
.ws82{word-spacing:9.139025pt;}
.ws7e{word-spacing:9.192159pt;}
.ws5{word-spacing:9.229414pt;}
.wsc5{word-spacing:9.298427pt;}
.ws5e{word-spacing:9.564096pt;}
.ws7c{word-spacing:9.617230pt;}
.ws9c{word-spacing:9.627857pt;}
.wsa0{word-spacing:9.723498pt;}
.wsc4{word-spacing:9.829765pt;}
.ws36{word-spacing:9.882899pt;}
.ws99{word-spacing:9.989167pt;}
.ws16{word-spacing:10.095435pt;}
.ws5f{word-spacing:10.148569pt;}
.wsb6{word-spacing:10.254836pt;}
.ws31{word-spacing:10.307970pt;}
.ws42{word-spacing:10.400071pt;}
.ws29{word-spacing:10.432785pt;}
.ws95{word-spacing:10.520506pt;}
.ws37{word-spacing:10.626773pt;}
.ws12{word-spacing:10.786175pt;}
.ws13{word-spacing:10.998710pt;}
.ws91{word-spacing:11.104978pt;}
.ws9a{word-spacing:11.211246pt;}
.ws50{word-spacing:11.530049pt;}
.wsa5{word-spacing:12.033752pt;}
.ws7a{word-spacing:12.061388pt;}
.ws0{word-spacing:12.752160pt;}
.ws4f{word-spacing:12.890642pt;}
.wsc0{word-spacing:13.017797pt;}
.ws39{word-spacing:13.549136pt;}
.ws4b{word-spacing:13.675454pt;}
.wse0{word-spacing:14.282419pt;}
.ws64{word-spacing:14.426547pt;}
.wsdd{word-spacing:14.835013pt;}
.ws8a{word-spacing:15.780758pt;}
.wsdc{word-spacing:15.897693pt;}
.wsc{word-spacing:15.940160pt;}
.wse5{word-spacing:16.917866pt;}
.ws8b{word-spacing:17.002837pt;}
.ws74{word-spacing:17.288356pt;}
.wsb{word-spacing:17.884979pt;}
.ws51{word-spacing:18.163446pt;}
.ws2{word-spacing:18.543719pt;}
.ws28{word-spacing:20.827452pt;}
.ws53{word-spacing:21.466082pt;}
.wsb5{word-spacing:22.411185pt;}
.ws68{word-spacing:23.034547pt;}
.ws4e{word-spacing:23.259809pt;}
.ws55{word-spacing:23.602064pt;}
.wsb3{word-spacing:26.304519pt;}
.wsa9{word-spacing:31.781062pt;}
.wsaa{word-spacing:34.353571pt;}
.ws52{word-spacing:37.695975pt;}
.wsa8{word-spacing:43.120978pt;}
.wsb0{word-spacing:44.918219pt;}
.wsa7{word-spacing:49.800526pt;}
.wsb4{word-spacing:53.134000pt;}
.wsb1{word-spacing:63.760800pt;}
.ws2b{word-spacing:72.278148pt;}
.wsa6{word-spacing:77.757649pt;}
.wsaf{word-spacing:84.971893pt;}
.ws2a{word-spacing:117.950986pt;}
.ws44{word-spacing:1253.094121pt;}
._27{margin-left:-18.278050pt;}
._0{margin-left:-16.450286pt;}
._17{margin-left:-11.795718pt;}
._9{margin-left:-6.854269pt;}
._2{margin-left:-5.579056pt;}
._6{margin-left:-4.399514pt;}
._d{margin-left:-3.453701pt;}
._1{margin-left:-2.550432pt;}
._3{margin-left:-1.328347pt;}
._11{width:1.153002pt;}
._7{width:2.133418pt;}
._5{width:3.201229pt;}
._4{width:4.341009pt;}
._14{width:5.844725pt;}
._16{width:8.873356pt;}
._10{width:11.521199pt;}
._b{width:14.877483pt;}
._8{width:16.205829pt;}
._1b{width:17.268507pt;}
._c{width:19.287594pt;}
._18{width:21.006475pt;}
._12{width:21.944287pt;}
._a{width:23.378901pt;}
._19{width:24.430988pt;}
._f{width:26.566933pt;}
._13{width:28.160949pt;}
._e{width:29.755040pt;}
._15{width:32.991086pt;}
._1a{width:50.583441pt;}
._23{width:63.760800pt;}
._20{width:72.474776pt;}
._26{width:73.792499pt;}
._25{width:74.685150pt;}
._1f{width:83.824198pt;}
._21{width:85.014400pt;}
._1e{width:95.641200pt;}
._22{width:106.268000pt;}
._24{width:116.894800pt;}
._1c{width:118.857841pt;}
._1d{width:173.174333pt;}
.fs6{font-size:26.566933pt;}
.fsb{font-size:31.880533pt;}
.fsa{font-size:34.005867pt;}
.fs5{font-size:37.193600pt;}
.fs7{font-size:40.997547pt;}
.fs4{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs9{font-size:48.008850pt;}
.fs8{font-size:52.896000pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.yfc{bottom:2.464337pt;}
.yf5{bottom:4.757317pt;}
.y126{bottom:19.792242pt;}
.yf4{bottom:40.522039pt;}
.y125{bottom:48.112320pt;}
.y11f{bottom:50.761316pt;}
.yf6{bottom:59.025769pt;}
.y123{bottom:61.803334pt;}
.yf3{bottom:72.231784pt;}
.y124{bottom:84.551052pt;}
.y11d{bottom:100.740000pt;}
.y71{bottom:104.541333pt;}
.yb6{bottom:110.034667pt;}
.yee{bottom:110.172000pt;}
.yf0{bottom:110.806119pt;}
.y14d{bottom:111.293333pt;}
.y6f{bottom:113.652000pt;}
.y72{bottom:113.653333pt;}
.yb5{bottom:113.737333pt;}
.y2f{bottom:114.458667pt;}
.y11c{bottom:116.680000pt;}
.yf2{bottom:117.453679pt;}
.y70{bottom:122.638667pt;}
.yb2{bottom:122.848000pt;}
.yed{bottom:126.112000pt;}
.y2e{bottom:126.413333pt;}
.y14c{bottom:127.233333pt;}
.yf1{bottom:127.506662pt;}
.yb3{bottom:128.377333pt;}
.yb4{bottom:131.834667pt;}
.y11b{bottom:132.621333pt;}
.y16a{bottom:135.501333pt;}
.yfb{bottom:137.343703pt;}
.y2d{bottom:138.369333pt;}
.y6d{bottom:138.394667pt;}
.y6e{bottom:139.001333pt;}
.yec{bottom:142.053333pt;}
.y6c{bottom:142.285333pt;}
.y14b{bottom:143.173333pt;}
.y11a{bottom:148.561333pt;}
.y121{bottom:148.606904pt;}
.y122{bottom:148.838065pt;}
.y169{bottom:151.441333pt;}
.yb1{bottom:155.021333pt;}
.yeb{bottom:157.993333pt;}
.y14a{bottom:159.113333pt;}
.y6b{bottom:161.953333pt;}
.y6a{bottom:162.560000pt;}
.y2c{bottom:163.960000pt;}
.y119{bottom:164.464000pt;}
.y69{bottom:165.844000pt;}
.y168{bottom:167.381333pt;}
.yb0{bottom:170.961333pt;}
.y149{bottom:175.053333pt;}
.yea{bottom:178.117333pt;}
.y2b{bottom:179.900000pt;}
.y118{bottom:180.404000pt;}
.y167{bottom:183.321333pt;}
.y68{bottom:185.510667pt;}
.y67{bottom:185.988000pt;}
.yaf{bottom:186.901333pt;}
.y120{bottom:187.979050pt;}
.y66{bottom:189.272000pt;}
.y148{bottom:190.993333pt;}
.y2a{bottom:195.840000pt;}
.y117{bottom:196.344000pt;}
.y166{bottom:199.261333pt;}
.yae{bottom:202.842667pt;}
.ye9{bottom:203.024000pt;}
.y147{bottom:206.934667pt;}
.y29{bottom:211.780000pt;}
.y116{bottom:212.284000pt;}
.y65{bottom:213.157333pt;}
.y165{bottom:215.201333pt;}
.yad{bottom:218.782667pt;}
.ye8{bottom:218.964000pt;}
.y146{bottom:222.874667pt;}
.y28{bottom:227.720000pt;}
.y64{bottom:228.273333pt;}
.yf8{bottom:230.374695pt;}
.y164{bottom:231.142667pt;}
.y115{bottom:232.372000pt;}
.yac{bottom:234.722667pt;}
.ye7{bottom:234.904000pt;}
.y145{bottom:238.814667pt;}
.yf7{bottom:240.758733pt;}
.y27{bottom:243.660000pt;}
.y63{bottom:244.213333pt;}
.y163{bottom:247.082667pt;}
.yab{bottom:250.662667pt;}
.ye6{bottom:250.845333pt;}
.y144{bottom:254.754667pt;}
.y62{bottom:256.262667pt;}
.y114{bottom:257.053333pt;}
.y26{bottom:259.601333pt;}
.y61{bottom:260.153333pt;}
.y162{bottom:263.022667pt;}
.yaa{bottom:266.602667pt;}
.ye5{bottom:266.785333pt;}
.y143{bottom:270.694667pt;}
.y113{bottom:272.993333pt;}
.yfa{bottom:273.258193pt;}
.y25{bottom:275.541333pt;}
.y60{bottom:275.836000pt;}
.y161{bottom:278.962667pt;}
.y5f{bottom:279.596000pt;}
.ye4{bottom:282.725333pt;}
.yf9{bottom:283.642231pt;}
.y142{bottom:286.634667pt;}
.ya8{bottom:287.820000pt;}
.y112{bottom:288.933333pt;}
.y24{bottom:291.481333pt;}
.y160{bottom:294.902667pt;}
.ye3{bottom:298.665333pt;}
.ya9{bottom:300.409333pt;}
.y5d{bottom:302.413333pt;}
.y5e{bottom:302.544000pt;}
.y141{bottom:302.576000pt;}
.y5c{bottom:302.601333pt;}
.ya7{bottom:303.693333pt;}
.y111{bottom:304.873333pt;}
.y5b{bottom:306.304000pt;}
.y23{bottom:307.421333pt;}
.y15f{bottom:310.842667pt;}
.ye2{bottom:314.605333pt;}
.y140{bottom:318.516000pt;}
.y110{bottom:320.814667pt;}
.ya6{bottom:323.124000pt;}
.y22{bottom:323.361333pt;}
.ya5{bottom:326.408000pt;}
.y15e{bottom:326.784000pt;}
.y5a{bottom:327.313333pt;}
.ye1{bottom:330.545333pt;}
.y59{bottom:330.770667pt;}
.y13f{bottom:334.456000pt;}
.y10f{bottom:336.754667pt;}
.y21{bottom:339.301333pt;}
.ya4{bottom:343.529333pt;}
.ye0{bottom:346.486667pt;}
.ya3{bottom:346.813333pt;}
.y15d{bottom:346.908000pt;}
.y57{bottom:349.220000pt;}
.ya2{bottom:350.170667pt;}
.y13e{bottom:350.396000pt;}
.y10e{bottom:352.694667pt;}
.y20{bottom:355.242667pt;}
.y58{bottom:361.449333pt;}
.ydf{bottom:362.426667pt;}
.y54{bottom:364.733333pt;}
.y13d{bottom:366.336000pt;}
.y10d{bottom:368.597333pt;}
.y1f{bottom:371.182667pt;}
.ya1{bottom:371.720000pt;}
.y15c{bottom:371.814667pt;}
.y56{bottom:377.352000pt;}
.yde{bottom:378.366667pt;}
.y55{bottom:381.337333pt;}
.y13c{bottom:382.276000pt;}
.y10c{bottom:384.537333pt;}
.y1e{bottom:387.122667pt;}
.ya0{bottom:387.660000pt;}
.y15b{bottom:387.754667pt;}
.y53{bottom:391.424000pt;}
.ydd{bottom:394.306667pt;}
.y13b{bottom:398.217333pt;}
.y10b{bottom:400.477333pt;}
.y1d{bottom:403.062667pt;}
.y9f{bottom:403.600000pt;}
.y15a{bottom:403.694667pt;}
.y52{bottom:406.540000pt;}
.ydc{bottom:410.246667pt;}
.y13a{bottom:414.157333pt;}
.y9e{bottom:416.082667pt;}
.y10a{bottom:416.418667pt;}
.y1c{bottom:419.002667pt;}
.y9d{bottom:419.540000pt;}
.y159{bottom:419.634667pt;}
.y51{bottom:422.480000pt;}
.ydb{bottom:426.188000pt;}
.y139{bottom:430.097333pt;}
.y9c{bottom:432.022667pt;}
.y109{bottom:432.321333pt;}
.y1b{bottom:434.944000pt;}
.y9b{bottom:435.481333pt;}
.y158{bottom:435.576000pt;}
.y50{bottom:438.420000pt;}
.y138{bottom:446.037333pt;}
.yda{bottom:446.312000pt;}
.y9a{bottom:447.964000pt;}
.y108{bottom:448.261333pt;}
.y1a{bottom:450.884000pt;}
.y99{bottom:451.421333pt;}
.y157{bottom:451.516000pt;}
.y4f{bottom:454.360000pt;}
.y137{bottom:461.977333pt;}
.y107{bottom:464.201333pt;}
.y19{bottom:466.824000pt;}
.y156{bottom:467.456000pt;}
.y4e{bottom:470.301333pt;}
.yd9{bottom:471.218667pt;}
.y98{bottom:475.041333pt;}
.y136{bottom:477.918667pt;}
.y97{bottom:478.325333pt;}
.y106{bottom:480.141333pt;}
.y18{bottom:482.764000pt;}
.y155{bottom:483.396000pt;}
.y4d{bottom:486.241333pt;}
.yd8{bottom:487.158667pt;}
.y135{bottom:493.858667pt;}
.y105{bottom:496.081333pt;}
.y96{bottom:497.701333pt;}
.y17{bottom:498.704000pt;}
.y154{bottom:499.336000pt;}
.y95{bottom:500.985333pt;}
.yd7{bottom:503.098667pt;}
.y4c{bottom:505.953333pt;}
.y134{bottom:509.798667pt;}
.y104{bottom:512.022667pt;}
.y16{bottom:514.644000pt;}
.y153{bottom:515.276000pt;}
.yd6{bottom:519.038667pt;}
.y94{bottom:520.016000pt;}
.y93{bottom:523.300000pt;}
.y133{bottom:525.738667pt;}
.y103{bottom:527.962667pt;}
.y4b{bottom:528.386667pt;}
.y15{bottom:530.585333pt;}
.y152{bottom:531.217333pt;}
.yd5{bottom:534.978667pt;}
.y92{bottom:541.348000pt;}
.y132{bottom:541.678667pt;}
.y102{bottom:543.865333pt;}
.y4a{bottom:544.328000pt;}
.y91{bottom:544.632000pt;}
.y14{bottom:546.525333pt;}
.y151{bottom:547.157333pt;}
.yd4{bottom:550.920000pt;}
.y131{bottom:557.618667pt;}
.y101{bottom:559.805333pt;}
.y49{bottom:560.268000pt;}
.y13{bottom:562.465333pt;}
.y150{bottom:563.097333pt;}
.yd3{bottom:566.860000pt;}
.y90{bottom:569.538667pt;}
.y100{bottom:575.745333pt;}
.y48{bottom:576.208000pt;}
.y14f{bottom:579.037333pt;}
.y12{bottom:582.589333pt;}
.yd2{bottom:582.800000pt;}
.y8f{bottom:585.478667pt;}
.yff{bottom:591.685333pt;}
.y47{bottom:592.148000pt;}
.yd1{bottom:598.740000pt;}
.y189{bottom:599.072000pt;}
.y130{bottom:600.348000pt;}
.y8e{bottom:601.420000pt;}
.y12f{bottom:604.001333pt;}
.yfe{bottom:607.625333pt;}
.y46{bottom:608.088000pt;}
.y188{bottom:611.026667pt;}
.y11{bottom:611.101333pt;}
.yd0{bottom:614.680000pt;}
.y12e{bottom:614.836000pt;}
.y8d{bottom:617.360000pt;}
.y12d{bottom:618.490667pt;}
.y14e{bottom:621.985333pt;}
.y187{bottom:622.982667pt;}
.y45{bottom:624.028000pt;}
.y12c{bottom:629.325333pt;}
.ycf{bottom:630.621333pt;}
.y10{bottom:631.025333pt;}
.y12b{bottom:632.848000pt;}
.y8c{bottom:633.300000pt;}
.y186{bottom:634.937333pt;}
.y44{bottom:639.969333pt;}
.yce{bottom:646.561333pt;}
.y185{bottom:646.893333pt;}
.y12a{bottom:649.186667pt;}
.y8b{bottom:649.240000pt;}
.yfd{bottom:650.174667pt;}
.yf{bottom:652.280000pt;}
.y43{bottom:655.909333pt;}
.y184{bottom:658.848000pt;}
.ycd{bottom:662.501333pt;}
.y8a{bottom:665.180000pt;}
.ye{bottom:665.562667pt;}
.y183{bottom:670.802667pt;}
.y42{bottom:671.849333pt;}
.y129{bottom:673.004000pt;}
.yef{bottom:674.085333pt;}
.ycc{bottom:678.441333pt;}
.yd{bottom:678.846667pt;}
.y182{bottom:682.758667pt;}
.y128{bottom:684.958667pt;}
.y89{bottom:685.305333pt;}
.y41{bottom:691.561333pt;}
.yc{bottom:692.130667pt;}
.ycb{bottom:694.381333pt;}
.y181{bottom:694.713333pt;}
.yb{bottom:705.413333pt;}
.y180{bottom:706.668000pt;}
.y88{bottom:710.210667pt;}
.yca{bottom:710.321333pt;}
.y127{bottom:716.749333pt;}
.y17f{bottom:718.624000pt;}
.ya{bottom:718.697333pt;}
.y87{bottom:726.152000pt;}
.yc9{bottom:726.262667pt;}
.y40{bottom:730.114667pt;}
.y17e{bottom:730.578667pt;}
.y9{bottom:738.622667pt;}
.y11e{bottom:740.660000pt;}
.y86{bottom:742.092000pt;}
.yc8{bottom:742.202667pt;}
.y17d{bottom:742.534667pt;}
.y17c{bottom:754.489333pt;}
.y85{bottom:758.032000pt;}
.yc7{bottom:758.142667pt;}
.y17b{bottom:766.444000pt;}
.y84{bottom:773.972000pt;}
.yc6{bottom:774.082667pt;}
.y35{bottom:777.928000pt;}
.y17a{bottom:778.400000pt;}
.y3f{bottom:787.237333pt;}
.y8{bottom:789.469333pt;}
.y83{bottom:789.912000pt;}
.yc5{bottom:790.022667pt;}
.y179{bottom:790.354667pt;}
.y3c{bottom:796.289333pt;}
.y178{bottom:802.309333pt;}
.y7{bottom:805.908000pt;}
.yc4{bottom:810.148000pt;}
.y82{bottom:811.534667pt;}
.y177{bottom:814.265333pt;}
.y81{bottom:814.818667pt;}
.y6{bottom:822.346667pt;}
.y176{bottom:826.220000pt;}
.y80{bottom:830.760000pt;}
.yc3{bottom:835.054667pt;}
.y3a{bottom:836.608000pt;}
.y175{bottom:838.174667pt;}
.y5{bottom:838.784000pt;}
.y7f{bottom:846.700000pt;}
.y3e{bottom:847.218667pt;}
.y3d{bottom:849.964000pt;}
.y174{bottom:850.130667pt;}
.yc2{bottom:850.994667pt;}
.y4{bottom:855.420000pt;}
.y3b{bottom:856.678667pt;}
.y173{bottom:862.085333pt;}
.y7e{bottom:862.640000pt;}
.yc1{bottom:872.617333pt;}
.y172{bottom:874.041333pt;}
.y7d{bottom:874.933333pt;}
.yc0{bottom:875.901333pt;}
.y7c{bottom:878.580000pt;}
.y171{bottom:885.996000pt;}
.ybf{bottom:892.852000pt;}
.ybe{bottom:896.136000pt;}
.y3{bottom:897.262667pt;}
.y170{bottom:897.950667pt;}
.ybd{bottom:899.493333pt;}
.y7a{bottom:900.213333pt;}
.y7b{bottom:900.632000pt;}
.y79{bottom:903.916000pt;}
.y36{bottom:904.950667pt;}
.y33{bottom:907.660000pt;}
.y16f{bottom:909.906667pt;}
.ybc{bottom:913.086667pt;}
.ybb{bottom:916.370667pt;}
.y39{bottom:918.678667pt;}
.y30{bottom:919.310667pt;}
.y16e{bottom:921.861333pt;}
.y37{bottom:929.064000pt;}
.y78{bottom:929.632000pt;}
.yba{bottom:933.322667pt;}
.y16d{bottom:933.816000pt;}
.y2{bottom:934.457333pt;}
.yb9{bottom:936.606667pt;}
.yb8{bottom:939.964000pt;}
.y77{bottom:945.572000pt;}
.y16c{bottom:945.772000pt;}
.y38{bottom:949.636000pt;}
.y31{bottom:951.089333pt;}
.y16b{bottom:957.726667pt;}
.y32{bottom:960.644000pt;}
.y76{bottom:961.512000pt;}
.y1{bottom:971.650667pt;}
.y75{bottom:973.806667pt;}
.y74{bottom:973.937333pt;}
.yb7{bottom:973.994667pt;}
.y34{bottom:975.108000pt;}
.y73{bottom:977.453333pt;}
.hf{height:2.125355pt;}
.he{height:27.895200pt;}
.h41{height:28.466070pt;}
.h38{height:29.085395pt;}
.h9{height:29.244954pt;}
.h48{height:29.414982pt;}
.h4d{height:29.458287pt;}
.h7{height:32.900710pt;}
.h6{height:33.091994pt;}
.h8{height:33.140710pt;}
.h47{height:33.334270pt;}
.h45{height:33.587386pt;}
.h46{height:33.749242pt;}
.h3{height:36.290431pt;}
.h5{height:36.556100pt;}
.h43{height:36.727594pt;}
.h4{height:36.822767pt;}
.hb{height:36.993434pt;}
.h49{height:37.110223pt;}
.h44{height:37.228660pt;}
.hc{height:37.459376pt;}
.ha{height:38.625434pt;}
.hd{height:39.850400pt;}
.h2{height:40.211857pt;}
.h2a{height:41.178747pt;}
.h4a{height:43.335620pt;}
.h4c{height:43.858287pt;}
.h4b{height:43.863620pt;}
.h31{height:45.165355pt;}
.h23{height:47.175200pt;}
.h3b{height:47.384062pt;}
.h3e{height:48.365395pt;}
.h13{height:48.370729pt;}
.h21{height:49.692100pt;}
.h2e{height:49.831200pt;}
.h1c{height:49.836533pt;}
.h33{height:50.385434pt;}
.h35{height:50.390767pt;}
.h10{height:51.021395pt;}
.h28{height:51.026729pt;}
.h26{height:51.142767pt;}
.h37{height:52.605355pt;}
.h1f{height:52.986400pt;}
.h32{height:53.279733pt;}
.h15{height:53.679733pt;}
.h3f{height:53.685067pt;}
.h12{height:54.314747pt;}
.h19{height:54.890400pt;}
.h36{height:55.008080pt;}
.h1a{height:56.218747pt;}
.h16{height:56.685395pt;}
.h1b{height:56.741413pt;}
.h2d{height:58.301355pt;}
.h22{height:59.773884pt;}
.h34{height:61.009867pt;}
.h24{height:61.239200pt;}
.h25{height:61.761867pt;}
.h3c{height:62.194729pt;}
.h14{height:62.200062pt;}
.h2f{height:62.967200pt;}
.h2b{height:62.972533pt;}
.h11{height:64.157395pt;}
.h29{height:64.162729pt;}
.h27{height:64.647200pt;}
.h1e{height:64.881867pt;}
.h20{height:65.399200pt;}
.h30{height:66.415733pt;}
.h2c{height:66.421067pt;}
.h3a{height:67.109067pt;}
.h1d{height:69.821395pt;}
.h17{height:71.496062pt;}
.h18{height:72.248062pt;}
.h39{height:84.312062pt;}
.h1{height:87.734861pt;}
.h3d{height:87.814767pt;}
.h42{height:247.950000pt;}
.h40{height:314.528053pt;}
.h0{height:1056.000000pt;}
.w1{width:342.713867pt;}
.w2{width:342.722000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7f{left:4.316337pt;}
.x7e{left:14.570720pt;}
.x83{left:54.604871pt;}
.x84{left:55.514793pt;}
.x7a{left:60.345506pt;}
.x20{left:65.285333pt;}
.x8d{left:70.598667pt;}
.x5a{left:73.034667pt;}
.x2{left:75.234667pt;}
.x1f{left:78.568000pt;}
.x1{left:79.618667pt;}
.x81{left:82.907868pt;}
.x5{left:87.482667pt;}
.x8e{left:89.630667pt;}
.x1b{left:91.852000pt;}
.x3b{left:97.430667pt;}
.x6c{left:100.932000pt;}
.x77{left:103.502791pt;}
.x45{left:110.049333pt;}
.x1a{left:111.777333pt;}
.x6{left:116.566667pt;}
.x8{left:119.542667pt;}
.xa{left:126.397333pt;}
.x2d{left:136.601333pt;}
.x4{left:137.578667pt;}
.x7b{left:148.479534pt;}
.x78{left:160.998199pt;}
.x9{left:165.888000pt;}
.x35{left:172.718667pt;}
.x8b{left:174.174667pt;}
.x21{left:180.078667pt;}
.x46{left:184.177333pt;}
.x2c{left:197.813333pt;}
.x89{left:198.810667pt;}
.x87{left:200.990667pt;}
.x79{left:203.720333pt;}
.x8a{left:207.085333pt;}
.x88{left:208.149333pt;}
.x76{left:209.777400pt;}
.x82{left:217.975600pt;}
.x86{left:220.850667pt;}
.x7{left:230.910667pt;}
.x73{left:231.949333pt;}
.x75{left:236.642667pt;}
.x74{left:240.948000pt;}
.x80{left:242.260000pt;}
.x3{left:251.674667pt;}
.x3c{left:254.756000pt;}
.x8f{left:258.317333pt;}
.x3d{left:263.284000pt;}
.x5e{left:265.604000pt;}
.x51{left:266.512000pt;}
.x41{left:268.449333pt;}
.x52{left:274.261333pt;}
.x54{left:275.721333pt;}
.x7d{left:278.052344pt;}
.x28{left:280.825333pt;}
.x1c{left:282.805333pt;}
.x30{left:283.714667pt;}
.x50{left:285.541333pt;}
.x36{left:286.632000pt;}
.x7c{left:287.941016pt;}
.x85{left:290.453333pt;}
.x6d{left:291.725333pt;}
.x37{left:295.161333pt;}
.x58{left:297.896000pt;}
.x4a{left:299.937333pt;}
.x72{left:302.065333pt;}
.x71{left:305.038667pt;}
.xc{left:308.560000pt;}
.x4b{left:313.632000pt;}
.x40{left:319.324000pt;}
.x67{left:320.636000pt;}
.x60{left:322.049333pt;}
.x2f{left:325.854667pt;}
.x3e{left:326.912000pt;}
.x63{left:335.332000pt;}
.xd{left:337.644000pt;}
.xf{left:340.620000pt;}
.x11{left:350.616000pt;}
.x32{left:352.537333pt;}
.x8c{left:353.657333pt;}
.x1e{left:356.168000pt;}
.x22{left:357.070667pt;}
.x31{left:358.278667pt;}
.x23{left:359.560000pt;}
.x64{left:362.545333pt;}
.x53{left:365.829333pt;}
.xb{left:366.897333pt;}
.x55{left:367.929333pt;}
.x61{left:370.704000pt;}
.x33{left:371.724000pt;}
.x6f{left:373.548000pt;}
.x1d{left:375.093333pt;}
.x5c{left:378.033333pt;}
.x19{left:385.757333pt;}
.x10{left:386.965333pt;}
.x3f{left:390.548000pt;}
.x65{left:399.092000pt;}
.x69{left:400.801333pt;}
.x6a{left:409.330667pt;}
.x24{left:411.974667pt;}
.x5d{left:417.261333pt;}
.x90{left:418.518667pt;}
.x38{left:422.278667pt;}
.x4e{left:433.509333pt;}
.x34{left:434.977333pt;}
.x68{left:440.277333pt;}
.x56{left:444.605333pt;}
.x5f{left:446.457333pt;}
.x6e{left:447.612000pt;}
.xe{left:451.988000pt;}
.x27{left:453.548000pt;}
.x62{left:457.361333pt;}
.x6b{left:458.889333pt;}
.x25{left:473.189333pt;}
.x4c{left:474.921333pt;}
.x29{left:476.736000pt;}
.x70{left:479.345333pt;}
.x2b{left:480.824000pt;}
.x2a{left:481.856000pt;}
.x66{left:485.749333pt;}
.x42{left:490.326667pt;}
.x39{left:491.970667pt;}
.x4f{left:494.338667pt;}
.x43{left:497.252000pt;}
.x57{left:499.985333pt;}
.x4d{left:524.010667pt;}
.x13{left:529.637333pt;}
.x26{left:537.281333pt;}
.x44{left:545.377333pt;}
.x14{left:558.721333pt;}
.x16{left:561.697333pt;}
.x18{left:565.045333pt;}
.x47{left:569.085333pt;}
.x12{left:581.881333pt;}
.x17{left:608.042667pt;}
.x48{left:614.520000pt;}
.x5b{left:648.410667pt;}
.x2e{left:664.313333pt;}
.x15{left:673.065333pt;}
.x49{left:679.598667pt;}
.x3a{left:687.421333pt;}
.x59{left:725.518667pt;}
}




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