
    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_60db43d6e6b89658877c71ab.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_551addb1f9afed2167b2355d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.103000;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_05efcd405825245a8b1a5a3e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919000;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_246db3a2a7ea66b43dbbc65e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_65514f83e327ad8e31bbf2a1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.001000;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_9350acabce3f6c2550808c09.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.103000;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_4fbdb282a4bee1132b80404b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4377ec472d288d458889f310.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.103000;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_ad913d905ee18012bba4c418.woff2')format("woff");}.ff9{font-family:ff9;line-height:2.399000;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_23d69ae6edc74cbb7397468b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.897000;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_49c25a2e9e53c1b5db50124e.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ce8dea9823b72f5678a006f5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.046000;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_2b63009837556d2302156241.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_b1e41e349c7f10e7f7fb5a16.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_c03301961a1cf2666c85c76e.woff2')format("woff");}.fff{font-family:fff;line-height:0.899000;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_3c8a85a78c817565b7d66d86.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.052000;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_3572b2e10ef0ea7a1539ec8b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.692000;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);}
.va{vertical-align:-87.276000px;}
.v4{vertical-align:-55.794000px;}
.v7{vertical-align:-53.802000px;}
.v1{vertical-align:-10.758000px;}
.v11{vertical-align:-8.238000px;}
.v8{vertical-align:-6.234000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:10.758000px;}
.v17{vertical-align:15.906000px;}
.v13{vertical-align:17.928000px;}
.vb{vertical-align:20.724000px;}
.v16{vertical-align:22.266000px;}
.v14{vertical-align:26.478000px;}
.v10{vertical-align:27.498000px;}
.vf{vertical-align:33.474000px;}
.v15{vertical-align:37.770000px;}
.v5{vertical-align:49.200000px;}
.vd{vertical-align:65.424000px;}
.v2{vertical-align:69.342000px;}
.vc{vertical-align:84.354000px;}
.v6{vertical-align:87.276000px;}
.v12{vertical-align:94.080000px;}
.ve{vertical-align:98.034000px;}
.v9{vertical-align:112.008000px;}
.ls5{letter-spacing:0.000000px;}
.ls34{letter-spacing:0.000141px;}
.ls1e{letter-spacing:0.000760px;}
.ls47{letter-spacing:0.001139px;}
.ls5d{letter-spacing:0.001150px;}
.ls3d{letter-spacing:0.001165px;}
.ls1b{letter-spacing:0.001641px;}
.ls3b{letter-spacing:0.002012px;}
.ls45{letter-spacing:0.002197px;}
.ls49{letter-spacing:0.002403px;}
.ls4d{letter-spacing:0.002710px;}
.ls2{letter-spacing:0.002759px;}
.ls4e{letter-spacing:0.002775px;}
.ls1a{letter-spacing:0.003056px;}
.ls65{letter-spacing:0.003427px;}
.ls0{letter-spacing:0.003471px;}
.lsf{letter-spacing:0.003744px;}
.ls9{letter-spacing:0.003848px;}
.lse{letter-spacing:0.003962px;}
.ls21{letter-spacing:0.004381px;}
.ls53{letter-spacing:0.004500px;}
.ls39{letter-spacing:0.004528px;}
.ls20{letter-spacing:0.006760px;}
.ls64{letter-spacing:1.845811px;}
.ls52{letter-spacing:1.900500px;}
.ls1f{letter-spacing:2.573587px;}
.ls1d{letter-spacing:2.579587px;}
.ls42{letter-spacing:2.641849px;}
.ls19{letter-spacing:2.674328px;}
.ls4a{letter-spacing:2.892612px;}
.ls2f{letter-spacing:2.984915px;}
.ls66{letter-spacing:2.988532px;}
.ls1{letter-spacing:4.173471px;}
.ls46{letter-spacing:4.179471px;}
.ls2c{letter-spacing:4.205226px;}
.ls27{letter-spacing:5.155910px;}
.ls18{letter-spacing:7.173181px;}
.ls38{letter-spacing:7.178012px;}
.ls12{letter-spacing:7.658523px;}
.ls2a{letter-spacing:8.013894px;}
.ls17{letter-spacing:9.756440px;}
.ls22{letter-spacing:10.164499px;}
.ls37{letter-spacing:11.954759px;}
.ls30{letter-spacing:11.956438px;}
.ls44{letter-spacing:12.610491px;}
.ls43{letter-spacing:12.615104px;}
.ls62{letter-spacing:15.935518px;}
.ls29{letter-spacing:15.937473px;}
.ls28{letter-spacing:15.939848px;}
.ls61{letter-spacing:18.926915px;}
.ls2b{letter-spacing:19.124759px;}
.ls5b{letter-spacing:19.921165px;}
.ls8{letter-spacing:19.921473px;}
.ls4b{letter-spacing:19.922759px;}
.ls56{letter-spacing:19.924800px;}
.ls51{letter-spacing:19.925073px;}
.ls11{letter-spacing:19.925518px;}
.ls4c{letter-spacing:19.927473px;}
.ls7{letter-spacing:19.928759px;}
.ls2e{letter-spacing:19.941274px;}
.ls67{letter-spacing:20.115471px;}
.ls50{letter-spacing:20.115848px;}
.ls31{letter-spacing:20.147226px;}
.ls3f{letter-spacing:23.407165px;}
.lsd{letter-spacing:23.408759px;}
.ls59{letter-spacing:23.410404px;}
.ls57{letter-spacing:23.413114px;}
.ls68{letter-spacing:23.414012px;}
.ls2d{letter-spacing:23.414759px;}
.ls16{letter-spacing:23.462759px;}
.ls10{letter-spacing:24.098759px;}
.ls55{letter-spacing:24.099471px;}
.ls14{letter-spacing:25.981240px;}
.ls32{letter-spacing:25.982657px;}
.ls5f{letter-spacing:25.985587px;}
.ls3c{letter-spacing:26.402915px;}
.ls26{letter-spacing:26.560677px;}
.ls23{letter-spacing:26.925471px;}
.ls5c{letter-spacing:27.101518px;}
.ls54{letter-spacing:27.591471px;}
.ls3e{letter-spacing:28.828566px;}
.ls4{letter-spacing:29.077473px;}
.ls3{letter-spacing:29.078759px;}
.ls58{letter-spacing:29.682440px;}
.ls13{letter-spacing:30.905566px;}
.ls40{letter-spacing:30.962759px;}
.ls63{letter-spacing:31.213114px;}
.ls60{letter-spacing:31.219114px;}
.ls24{letter-spacing:32.510759px;}
.ls25{letter-spacing:32.512800px;}
.ls15{letter-spacing:33.167464px;}
.ls5a{letter-spacing:33.973165px;}
.ls6{letter-spacing:35.117518px;}
.ls36{letter-spacing:35.867518px;}
.ls35{letter-spacing:38.852915px;}
.ls33{letter-spacing:39.845518px;}
.lsb{letter-spacing:39.847473px;}
.lsa{letter-spacing:39.848759px;}
.lsc{letter-spacing:82.189114px;}
.ls1c{letter-spacing:87.688328px;}
.ls3a{letter-spacing:145.107332px;}
.ls4f{letter-spacing:190.786389px;}
.ls5e{letter-spacing:223.631587px;}
.ls48{letter-spacing:237.890784px;}
.ls41{letter-spacing:267.608230px;}
.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;}
}
.ws63{word-spacing:-71.731200px;}
.ws1e{word-spacing:-58.101975px;}
.ws6c{word-spacing:-47.324343px;}
.wsf{word-spacing:-45.664082px;}
.wsff{word-spacing:-45.040311px;}
.ws99{word-spacing:-40.348800px;}
.ws78{word-spacing:-39.452160px;}
.ws127{word-spacing:-38.576560px;}
.wsd1{word-spacing:-36.500671px;}
.ws148{word-spacing:-35.865600px;}
.wsc7{word-spacing:-35.644469px;}
.ws49{word-spacing:-35.119596px;}
.ws68{word-spacing:-33.756703px;}
.ws6b{word-spacing:-33.211407px;}
.wsbf{word-spacing:-31.604111px;}
.ws79{word-spacing:-31.102648px;}
.wsad{word-spacing:-30.881705px;}
.wsd6{word-spacing:-29.734167px;}
.wsf7{word-spacing:-29.388273px;}
.wsa5{word-spacing:-28.905820px;}
.ws7d{word-spacing:-28.305132px;}
.wscc{word-spacing:-26.899125px;}
.ws103{word-spacing:-26.210507px;}
.wsed{word-spacing:-22.423111px;}
.ws136{word-spacing:-22.057344px;}
.ws13c{word-spacing:-20.694451px;}
.ws35{word-spacing:-20.048870px;}
.wse6{word-spacing:-19.833677px;}
.ws9e{word-spacing:-19.761946px;}
.ws11d{word-spacing:-19.754717px;}
.ws81{word-spacing:-19.553925px;}
.ws41{word-spacing:-19.510886px;}
.ws152{word-spacing:-19.482194px;}
.wsec{word-spacing:-19.410463px;}
.ws0{word-spacing:-19.367325px;}
.ws137{word-spacing:-19.195269px;}
.ws4{word-spacing:-19.051807px;}
.wsf3{word-spacing:-18.908344px;}
.wsf2{word-spacing:-18.874737px;}
.ws69{word-spacing:-18.836613px;}
.ws11e{word-spacing:-18.549688px;}
.ws29{word-spacing:-18.477957px;}
.ws131{word-spacing:-18.399053px;}
.ws5{word-spacing:-18.262764px;}
.ws39{word-spacing:-18.112128px;}
.ws13d{word-spacing:-17.975839px;}
.ws151{word-spacing:-17.932800px;}
.ws96{word-spacing:-17.832376px;}
.ws36{word-spacing:-17.473720px;}
.wsa9{word-spacing:-17.401989px;}
.wse7{word-spacing:-17.258527px;}
.ws13b{word-spacing:-17.251354px;}
.ws34{word-spacing:-17.186796px;}
.ws13{word-spacing:-17.115064px;}
.wsb1{word-spacing:-16.684677px;}
.ws10e{word-spacing:-16.612946px;}
.wsb5{word-spacing:-16.541215px;}
.ws133{word-spacing:-16.318848px;}
.wsea{word-spacing:-16.254290px;}
.wse0{word-spacing:-16.182559px;}
.ws24{word-spacing:-16.139475px;}
.ws132{word-spacing:-16.039096px;}
.ws142{word-spacing:-15.967365px;}
.ws14d{word-spacing:-15.895634px;}
.ws8e{word-spacing:-15.823903px;}
.ws3a{word-spacing:-15.752172px;}
.ws40{word-spacing:-15.744998px;}
.wsb4{word-spacing:-15.680440px;}
.ws4c{word-spacing:-15.608709px;}
.ws26{word-spacing:-15.393516px;}
.ws92{word-spacing:-15.250053px;}
.wse2{word-spacing:-15.197758px;}
.ws80{word-spacing:-15.178322px;}
.ws45{word-spacing:-15.106591px;}
.ws11c{word-spacing:-15.099418px;}
.wse1{word-spacing:-15.034860px;}
.wsd9{word-spacing:-14.963128px;}
.ws25{word-spacing:-14.891397px;}
.ws11{word-spacing:-14.884224px;}
.ws17{word-spacing:-14.812493px;}
.ws30{word-spacing:-14.747935px;}
.ws14c{word-spacing:-14.633165px;}
.ws16{word-spacing:-14.604472px;}
.ws9d{word-spacing:-14.532741px;}
.ws98{word-spacing:-14.461010px;}
.ws13a{word-spacing:-14.453837px;}
.ws8d{word-spacing:-14.317548px;}
.ws52{word-spacing:-14.245816px;}
.ws5d{word-spacing:-14.238643px;}
.ws134{word-spacing:-14.174085px;}
.ws6a{word-spacing:-14.111859px;}
.wsfc{word-spacing:-14.099413px;}
.ws74{word-spacing:-14.093023px;}
.ws2c{word-spacing:-14.030623px;}
.wsb6{word-spacing:-13.958892px;}
.ws150{word-spacing:-13.915853px;}
.ws13f{word-spacing:-13.879987px;}
.ws121{word-spacing:-13.808256px;}
.ws6{word-spacing:-13.743698px;}
.ws21{word-spacing:-13.736525px;}
.ws10d{word-spacing:-13.671967px;}
.ws4d{word-spacing:-13.600236px;}
.ws112{word-spacing:-13.593062px;}
.wsdc{word-spacing:-13.528504px;}
.wsbe{word-spacing:-13.503484px;}
.ws14e{word-spacing:-13.456773px;}
.ws20{word-spacing:-13.449600px;}
.ws28{word-spacing:-13.385042px;}
.ws12d{word-spacing:-13.377869px;}
.ws50{word-spacing:-13.313311px;}
.wsfd{word-spacing:-13.265878px;}
.ws7b{word-spacing:-13.241580px;}
.ws124{word-spacing:-13.234406px;}
.wsde{word-spacing:-13.169848px;}
.wsdf{word-spacing:-13.098117px;}
.ws114{word-spacing:-13.040696px;}
.ws12{word-spacing:-13.026386px;}
.ws18{word-spacing:-12.954655px;}
.ws31{word-spacing:-12.882924px;}
.ws54{word-spacing:-12.811192px;}
.ws116{word-spacing:-12.804019px;}
.ws1c{word-spacing:-12.739461px;}
.ws84{word-spacing:-12.732288px;}
.ws9a{word-spacing:-12.667730px;}
.wse3{word-spacing:-12.617518px;}
.wsc3{word-spacing:-12.524268px;}
.ws5e{word-spacing:-12.380805px;}
.ws70{word-spacing:-12.370737px;}
.wsa4{word-spacing:-12.350586px;}
.ws14f{word-spacing:-12.337766px;}
.ws104{word-spacing:-12.237343px;}
.ws59{word-spacing:-12.230170px;}
.ws14b{word-spacing:-12.122573px;}
.ws140{word-spacing:-12.093880px;}
.ws122{word-spacing:-12.059628px;}
.ws123{word-spacing:-12.022149px;}
.wse9{word-spacing:-11.950418px;}
.wsce{word-spacing:-11.878687px;}
.wsc4{word-spacing:-11.806956px;}
.ws7a{word-spacing:-11.749538px;}
.ws2{word-spacing:-11.735224px;}
.ws135{word-spacing:-11.724526px;}
.ws6d{word-spacing:-11.717750px;}
.ws141{word-spacing:-11.712432px;}
.wse4{word-spacing:-11.708147px;}
.ws60{word-spacing:-11.705030px;}
.ws1{word-spacing:-11.663493px;}
.wsfe{word-spacing:-11.574921px;}
.wsf5{word-spacing:-11.520031px;}
.ws102{word-spacing:-11.504170px;}
.ws4a{word-spacing:-11.448300px;}
.ws11a{word-spacing:-11.441126px;}
.ws15a{word-spacing:-11.405261px;}
.ws117{word-spacing:-11.369395px;}
.ws1b{word-spacing:-11.304837px;}
.ws73{word-spacing:-11.161375px;}
.ws3f{word-spacing:-11.089644px;}
.ws65{word-spacing:-11.027750px;}
.ws27{word-spacing:-11.017912px;}
.ws107{word-spacing:-11.010739px;}
.ws130{word-spacing:-10.946181px;}
.ws5f{word-spacing:-10.874450px;}
.ws108{word-spacing:-10.867277px;}
.ws89{word-spacing:-10.802719px;}
.ws145{word-spacing:-10.759680px;}
.wscf{word-spacing:-10.750669px;}
.ws5a{word-spacing:-10.730988px;}
.ws12a{word-spacing:-10.659256px;}
.ws105{word-spacing:-10.508621px;}
.wsc5{word-spacing:-10.498489px;}
.ws115{word-spacing:-10.444063px;}
.ws149{word-spacing:-10.401024px;}
.ws93{word-spacing:-10.372332px;}
.ws144{word-spacing:-10.329293px;}
.wsa7{word-spacing:-10.300600px;}
.wsdb{word-spacing:-10.228869px;}
.wsb2{word-spacing:-10.157138px;}
.ws156{word-spacing:-10.085407px;}
.wsdd{word-spacing:-10.013676px;}
.ws11b{word-spacing:-9.941944px;}
.ws126{word-spacing:-9.913800px;}
.ws118{word-spacing:-9.870213px;}
.ws82{word-spacing:-9.863040px;}
.ws158{word-spacing:-9.726751px;}
.ws5b{word-spacing:-9.719578px;}
.wsb{word-spacing:-9.655020px;}
.ws75{word-spacing:-9.583288px;}
.ws42{word-spacing:-9.511557px;}
.ws109{word-spacing:-9.439826px;}
.ws85{word-spacing:-9.432653px;}
.wsd0{word-spacing:-9.380317px;}
.wsa8{word-spacing:-9.368095px;}
.ws159{word-spacing:-9.325056px;}
.wsbb{word-spacing:-9.308468px;}
.ws157{word-spacing:-9.253325px;}
.wse5{word-spacing:-9.217459px;}
.wsc9{word-spacing:-9.160281px;}
.ws106{word-spacing:-9.152901px;}
.wsd{word-spacing:-9.145728px;}
.wsc6{word-spacing:-9.104289px;}
.wsab{word-spacing:-9.095695px;}
.ws8c{word-spacing:-9.009439px;}
.wse8{word-spacing:-8.865976px;}
.ws44{word-spacing:-8.858803px;}
.wsd4{word-spacing:-8.757707px;}
.ws83{word-spacing:-8.579052px;}
.wsa1{word-spacing:-8.513731px;}
.ws9b{word-spacing:-8.507320px;}
.ws5c{word-spacing:-8.435589px;}
.ws10f{word-spacing:-8.428416px;}
.wsfb{word-spacing:-8.363858px;}
.wsfa{word-spacing:-8.292127px;}
.ws86{word-spacing:-8.220396px;}
.wsa0{word-spacing:-8.220373px;}
.wsbc{word-spacing:-8.121949px;}
.wsda{word-spacing:-8.076933px;}
.wse{word-spacing:-8.005202px;}
.wsac{word-spacing:-7.936298px;}
.wsb0{word-spacing:-7.887787px;}
.ws2a{word-spacing:-7.718277px;}
.wsb7{word-spacing:-7.646546px;}
.wsd5{word-spacing:-7.641391px;}
.wsb9{word-spacing:-7.621778px;}
.ws67{word-spacing:-7.565069px;}
.ws64{word-spacing:-7.531776px;}
.wsa3{word-spacing:-7.428514px;}
.wsa2{word-spacing:-7.383108px;}
.ws110{word-spacing:-7.359621px;}
.ws55{word-spacing:-7.144428px;}
.ws2d{word-spacing:-7.101389px;}
.wsc1{word-spacing:-7.072696px;}
.ws12b{word-spacing:-7.065523px;}
.wsb8{word-spacing:-7.029658px;}
.ws2f{word-spacing:-6.929234px;}
.ws12e{word-spacing:-6.922061px;}
.ws4b{word-spacing:-6.857503px;}
.wsd8{word-spacing:-6.785772px;}
.ws47{word-spacing:-6.717548px;}
.ws48{word-spacing:-6.714040px;}
.ws91{word-spacing:-6.642309px;}
.ws13e{word-spacing:-6.491674px;}
.ws23{word-spacing:-6.455775px;}
.ws10{word-spacing:-6.355384px;}
.wsc2{word-spacing:-6.211922px;}
.ws111{word-spacing:-6.204749px;}
.ws3{word-spacing:-6.140191px;}
.ws12f{word-spacing:-6.068460px;}
.ws10a{word-spacing:-6.061286px;}
.ws46{word-spacing:-5.989555px;}
.ws37{word-spacing:-5.846093px;}
.wsf9{word-spacing:-5.781535px;}
.ws76{word-spacing:-5.638072px;}
.wsc0{word-spacing:-5.638057px;}
.ws154{word-spacing:-5.595034px;}
.ws19{word-spacing:-5.494610px;}
.ws1a{word-spacing:-5.422879px;}
.ws10b{word-spacing:-5.351148px;}
.ws94{word-spacing:-5.279416px;}
.ws9{word-spacing:-5.207685px;}
.ws38{word-spacing:-5.135954px;}
.ws97{word-spacing:-5.064223px;}
.wsa{word-spacing:-4.805990px;}
.ws138{word-spacing:-4.698394px;}
.ws153{word-spacing:-4.633836px;}
.ws113{word-spacing:-4.554931px;}
.ws8b{word-spacing:-4.490373px;}
.ws1f{word-spacing:-4.483200px;}
.ws9c{word-spacing:-4.418642px;}
.ws72{word-spacing:-4.346911px;}
.ws53{word-spacing:-4.203448px;}
.ws9f{word-spacing:-4.186307px;}
.ws139{word-spacing:-4.059986px;}
.ws3e{word-spacing:-3.988255px;}
.ws7{word-spacing:-3.916524px;}
.ws2e{word-spacing:-3.844792px;}
.ws56{word-spacing:-3.837619px;}
.wscd{word-spacing:-3.773061px;}
.ws3b{word-spacing:-3.622426px;}
.ws6f{word-spacing:-3.586560px;}
.ws33{word-spacing:-3.486136px;}
.ws32{word-spacing:-3.481885px;}
.wsb3{word-spacing:-3.414405px;}
.ws87{word-spacing:-3.407232px;}
.ws57{word-spacing:-3.342674px;}
.ws3d{word-spacing:-3.270943px;}
.ws3c{word-spacing:-3.199212px;}
.ws95{word-spacing:-3.127480px;}
.ws4e{word-spacing:-3.055749px;}
.ws88{word-spacing:-2.984018px;}
.ws14a{word-spacing:-2.768824px;}
.ws146{word-spacing:-2.266706px;}
.ws8f{word-spacing:-2.194975px;}
.ws147{word-spacing:-2.080205px;}
.ws51{word-spacing:-1.979781px;}
.ws58{word-spacing:-1.836319px;}
.ws4f{word-spacing:-1.764588px;}
.ws14{word-spacing:-1.542221px;}
.ws15{word-spacing:-1.405932px;}
.wsee{word-spacing:-1.190738px;}
.ws2b{word-spacing:-1.119007px;}
.ws129{word-spacing:-1.047276px;}
.ws8a{word-spacing:-0.975544px;}
.ws12c{word-spacing:-0.968371px;}
.wsba{word-spacing:-0.903813px;}
.ws11f{word-spacing:-0.896640px;}
.ws120{word-spacing:-0.832082px;}
.ws77{word-spacing:-0.688620px;}
.ws155{word-spacing:-0.573850px;}
.ws43{word-spacing:-0.473426px;}
.ws119{word-spacing:-0.401695px;}
.ws8{word-spacing:-0.047821px;}
.wsf6{word-spacing:-0.043039px;}
.ws128{word-spacing:-0.040398px;}
.wsd3{word-spacing:-0.038224px;}
.ws7e{word-spacing:-0.035866px;}
.wsa6{word-spacing:-0.030271px;}
.wsc{word-spacing:-0.002077px;}
.ws1d{word-spacing:0.000000px;}
.ws90{word-spacing:0.172155px;}
.wsf8{word-spacing:0.358656px;}
.ws62{word-spacing:0.396117px;}
.ws6e{word-spacing:0.430387px;}
.ws143{word-spacing:2.467553px;}
.wsf0{word-spacing:16.880672px;}
.wsef{word-spacing:18.876542px;}
.wsf1{word-spacing:19.188542px;}
.wsf4{word-spacing:19.193451px;}
.wscb{word-spacing:20.574099px;}
.wsaa{word-spacing:20.681451px;}
.wseb{word-spacing:21.845451px;}
.ws71{word-spacing:25.691451px;}
.ws101{word-spacing:25.997408px;}
.ws10c{word-spacing:26.231451px;}
.ws7f{word-spacing:26.352207px;}
.ws61{word-spacing:26.357451px;}
.ws7c{word-spacing:42.797451px;}
.wsae{word-spacing:52.120528px;}
.wsc8{word-spacing:60.158872px;}
.wsbd{word-spacing:79.339195px;}
.wsca{word-spacing:239.863999px;}
.wsd7{word-spacing:304.812073px;}
.ws100{word-spacing:438.644583px;}
.ws125{word-spacing:461.792010px;}
.wsaf{word-spacing:502.571700px;}
.wsd2{word-spacing:547.086591px;}
.ws66{word-spacing:896.626428px;}
.ws22{word-spacing:2471.913613px;}
._23{margin-left:-19.981081px;}
._38{margin-left:-10.759650px;}
._2{margin-left:-9.606193px;}
._8{margin-left:-7.316582px;}
._3{margin-left:-5.881958px;}
._29{margin-left:-4.268217px;}
._0{margin-left:-3.202064px;}
._4{margin-left:-1.936742px;}
._6{width:2.008474px;}
._f{width:3.143678px;}
._6b{width:5.592061px;}
._24{width:7.659016px;}
._20{width:9.719142px;}
._7{width:17.574144px;}
._25{width:18.721843px;}
._64{width:19.977350px;}
._1e{width:21.017242px;}
._e{width:23.128938px;}
._1c{width:24.388608px;}
._5a{width:26.397082px;}
._16{width:27.734135px;}
._9{width:28.907674px;}
._5{width:30.270566px;}
._c{width:31.418266px;}
._a{width:33.230097px;}
._1a{width:34.695933px;}
._11{width:35.865600px;}
._1d{width:37.371955px;}
._d{width:38.947453px;}
._58{width:41.030246px;}
._68{width:43.102047px;}
._1b{width:44.600717px;}
._2a{width:47.061221px;}
._1f{width:48.340487px;}
._2b{width:49.653632px;}
._1{width:51.542908px;}
._22{width:53.368013px;}
._b{width:55.643972px;}
._40{width:58.021808px;}
._4a{width:59.210872px;}
._69{width:60.477981px;}
._67{width:62.246218px;}
._19{width:63.456272px;}
._6a{width:64.917276px;}
._5d{width:67.553230px;}
._60{width:73.146883px;}
._46{width:81.201218px;}
._52{width:89.390475px;}
._65{width:90.434182px;}
._31{width:93.537485px;}
._30{width:94.541722px;}
._48{width:96.258434px;}
._59{width:98.486938px;}
._2f{width:104.360783px;}
._66{width:106.310806px;}
._4f{width:107.434792px;}
._5c{width:109.394204px;}
._57{width:110.821184px;}
._42{width:120.272453px;}
._21{width:122.155763px;}
._26{width:130.518187px;}
._53{width:136.760746px;}
._3b{width:144.192443px;}
._50{width:151.802631px;}
._63{width:155.194705px;}
._36{width:158.690865px;}
._43{width:173.170870px;}
._4e{width:182.381221px;}
._27{width:185.547724px;}
._45{width:186.946498px;}
._2e{width:188.643133px;}
._54{width:191.228248px;}
._2c{width:195.707291px;}
._3c{width:197.541135px;}
._41{width:201.988478px;}
._3e{width:204.735849px;}
._44{width:208.094094px;}
._5b{width:212.527763px;}
._56{width:215.974025px;}
._37{width:242.907188px;}
._4b{width:247.584788px;}
._3a{width:251.447956px;}
._2d{width:260.601789px;}
._34{width:282.308176px;}
._49{width:295.872935px;}
._55{width:297.143719px;}
._3f{width:298.861550px;}
._39{width:308.313122px;}
._61{width:317.879498px;}
._4d{width:324.653081px;}
._28{width:335.177535px;}
._4c{width:345.422996px;}
._33{width:346.584230px;}
._35{width:356.901403px;}
._5e{width:363.309806px;}
._51{width:371.830500px;}
._47{width:439.208156px;}
._62{width:468.393084px;}
._3d{width:514.701621px;}
._32{width:525.634347px;}
._5f{width:565.514329px;}
._13{width:849.440870px;}
._14{width:937.800364px;}
._18{width:1037.637700px;}
._15{width:1277.030554px;}
._17{width:1451.767757px;}
._12{width:1604.483482px;}
._10{width:2238.573945px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.270918px;}
.fs11{font-size:31.138384px;}
.fs9{font-size:32.340115px;}
.fsb{font-size:33.096637px;}
.fs5{font-size:35.865600px;}
.fsd{font-size:37.327804px;}
.fsf{font-size:38.224440px;}
.fs15{font-size:40.398365px;}
.fs6{font-size:45.406567px;}
.fs10{font-size:46.707771px;}
.fs13{font-size:47.167371px;}
.fs2{font-size:47.820600px;}
.fs8{font-size:48.510376px;}
.fsa{font-size:49.645164px;}
.fsc{font-size:55.991940px;}
.fse{font-size:57.336900px;}
.fs4{font-size:59.775600px;}
.fs14{font-size:60.597800px;}
.fs12{font-size:70.751352px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y1e{bottom:61.467000px;}
.yb2{bottom:106.299000px;}
.y77{bottom:121.600500px;}
.yde{bottom:122.485500px;}
.yb1{bottom:127.968000px;}
.y20a{bottom:140.244000px;}
.y153{bottom:140.821500px;}
.yfa{bottom:141.837000px;}
.y76{bottom:143.269500px;}
.y135{bottom:148.182000px;}
.y1cb{bottom:149.637000px;}
.y18f{bottom:153.939000px;}
.ydd{bottom:159.097500px;}
.yb0{bottom:163.350000px;}
.y23f{bottom:163.606500px;}
.y1a9{bottom:167.395500px;}
.y209{bottom:173.494500px;}
.y95{bottom:173.548500px;}
.yf9{bottom:175.224000px;}
.y152{bottom:175.342500px;}
.y18e{bottom:175.608000px;}
.y75{bottom:179.883000px;}
.y134{bottom:183.207329px;}
.y1e9{bottom:183.444000px;}
.y1ca{bottom:184.485000px;}
.y5b{bottom:189.111000px;}
.yc4{bottom:194.764500px;}
.y94{bottom:195.216000px;}
.ydc{bottom:195.711000px;}
.y133{bottom:198.617628px;}
.y23e{bottom:199.245000px;}
.yaf{bottom:199.552500px;}
.y3c{bottom:200.233500px;}
.y1a8{bottom:200.272500px;}
.y74{bottom:201.552000px;}
.y223{bottom:202.125000px;}
.y1e8{bottom:205.113000px;}
.y151{bottom:205.683000px;}
.y1c9{bottom:206.154000px;}
.y114{bottom:207.384000px;}
.yf8{bottom:208.611000px;}
.y5a{bottom:210.780000px;}
.y18d{bottom:212.221500px;}
.y132{bottom:214.027926px;}
.yc3{bottom:216.433500px;}
.y93{bottom:216.885000px;}
.y23d{bottom:220.912500px;}
.y3b{bottom:221.902500px;}
.y222{bottom:223.792500px;}
.y16f{bottom:223.821000px;}
.y208{bottom:225.487500px;}
.y150{bottom:227.352000px;}
.y113{bottom:229.053000px;}
.y131{bottom:229.439263px;}
.ydb{bottom:232.323000px;}
.y59{bottom:232.447500px;}
.y18c{bottom:233.889000px;}
.yae{bottom:235.755000px;}
.y1c8{bottom:237.471000px;}
.y73{bottom:238.164000px;}
.y1e7{bottom:241.725000px;}
.y92{bottom:242.002500px;}
.y3a{bottom:243.570000px;}
.yf7{bottom:244.149000px;}
.y1a7{bottom:244.729500px;}
.y16e{bottom:245.490000px;}
.y207{bottom:247.156500px;}
.y14f{bottom:249.019500px;}
.yc2{bottom:253.045500px;}
.y91{bottom:254.304000px;}
.y23c{bottom:256.551000px;}
.y1c7{bottom:259.140000px;}
.y72{bottom:259.833000px;}
.y221{bottom:260.406000px;}
.y1e6{bottom:263.394000px;}
.y39{bottom:265.239000px;}
.y112{bottom:265.665000px;}
.y206{bottom:268.825500px;}
.yda{bottom:268.936500px;}
.y58{bottom:269.061000px;}
.y18b{bottom:270.502500px;}
.yad{bottom:271.957500px;}
.y130{bottom:272.619000px;}
.yc1{bottom:274.714500px;}
.yf6{bottom:277.536000px;}
.y23b{bottom:278.220000px;}
.y1c6{bottom:280.809000px;}
.y71{bottom:281.502000px;}
.y220{bottom:282.075000px;}
.y16d{bottom:282.102000px;}
.y14e{bottom:282.270000px;}
.y90{bottom:283.705500px;}
.y38{bottom:286.908000px;}
.y111{bottom:287.334000px;}
.yd9{bottom:290.605500px;}
.y57{bottom:290.730000px;}
.y18a{bottom:292.171500px;}
.y1a6{bottom:296.413500px;}
.y1e5{bottom:300.007500px;}
.y1c5{bottom:302.478000px;}
.y16c{bottom:303.771000px;}
.y205{bottom:305.437500px;}
.yac{bottom:307.339500px;}
.y37{bottom:308.577000px;}
.yf5{bottom:310.923000px;}
.yc0{bottom:311.326500px;}
.y56{bottom:312.399000px;}
.y23a{bottom:313.858500px;}
.y14d{bottom:315.520500px;}
.y8f{bottom:315.630000px;}
.y1a5{bottom:318.082500px;}
.y70{bottom:318.114000px;}
.y12f{bottom:318.420000px;}
.y21f{bottom:318.687000px;}
.y1e4{bottom:321.676500px;}
.y8e{bottom:321.813000px;}
.y110{bottom:323.946000px;}
.y204{bottom:327.106500px;}
.yd8{bottom:327.217500px;}
.y189{bottom:328.783500px;}
.y36{bottom:330.246000px;}
.ybf{bottom:332.995500px;}
.y1d{bottom:333.868500px;}
.y239{bottom:335.527500px;}
.y1c4{bottom:335.728500px;}
.y1a4{bottom:339.751500px;}
.y6f{bottom:339.783000px;}
.y12e{bottom:340.089000px;}
.y21e{bottom:340.356000px;}
.y16b{bottom:340.384500px;}
.y14c{bottom:342.420000px;}
.yf4{bottom:344.310000px;}
.yab{bottom:344.950500px;}
.y10f{bottom:345.615000px;}
.y8d{bottom:345.724500px;}
.y203{bottom:348.775500px;}
.y55{bottom:349.011000px;}
.y188{bottom:350.452500px;}
.yaa{bottom:351.135000px;}
.y35{bottom:351.913500px;}
.y1c{bottom:355.537500px;}
.y1e3{bottom:358.288500px;}
.yd7{bottom:360.468000px;}
.y16a{bottom:362.053500px;}
.y8c{bottom:367.392000px;}
.ybe{bottom:369.609000px;}
.y54{bottom:370.680000px;}
.y238{bottom:371.164500px;}
.y187{bottom:372.121500px;}
.y34{bottom:373.582500px;}
.y1a3{bottom:374.569500px;}
.y12d{bottom:374.841000px;}
.y6e{bottom:376.395000px;}
.y21d{bottom:376.968000px;}
.y1b{bottom:377.206500px;}
.yf3{bottom:377.697000px;}
.y1e2{bottom:379.957500px;}
.y10e{bottom:382.228500px;}
.y202{bottom:385.387500px;}
.y1c3{bottom:386.808000px;}
.y8b{bottom:389.061000px;}
.ybd{bottom:391.278000px;}
.y53{bottom:392.349000px;}
.y14b{bottom:393.331500px;}
.ya9{bottom:395.029500px;}
.y33{bottom:395.251500px;}
.y12c{bottom:396.510000px;}
.y6d{bottom:398.064000px;}
.y21c{bottom:398.637000px;}
.y169{bottom:398.665500px;}
.yf2{bottom:399.364500px;}
.y1e1{bottom:401.626500px;}
.y10d{bottom:403.896000px;}
.y186{bottom:405.372000px;}
.y237{bottom:406.803000px;}
.y201{bottom:407.056500px;}
.yd6{bottom:407.230500px;}
.y1c2{bottom:408.477000px;}
.y1a2{bottom:410.584500px;}
.y8a{bottom:410.730000px;}
.ybc{bottom:412.945500px;}
.y1a{bottom:413.818500px;}
.ya8{bottom:416.698500px;}
.y32{bottom:416.920500px;}
.y6c{bottom:419.733000px;}
.y168{bottom:420.334500px;}
.y14a{bottom:427.854000px;}
.y236{bottom:428.472000px;}
.y200{bottom:428.725500px;}
.yd5{bottom:428.899500px;}
.y52{bottom:428.961000px;}
.y1c1{bottom:430.146000px;}
.y12b{bottom:431.262000px;}
.yf1{bottom:432.753000px;}
.ybb{bottom:434.614500px;}
.y1e0{bottom:434.877000px;}
.y21b{bottom:435.250500px;}
.y19{bottom:435.487500px;}
.y10c{bottom:437.146500px;}
.y31{bottom:438.589500px;}
.y6b{bottom:441.402000px;}
.y1a1{bottom:446.598000px;}
.y89{bottom:447.343500px;}
.ya7{bottom:449.949000px;}
.y51{bottom:450.630000px;}
.y12a{bottom:452.931000px;}
.y167{bottom:453.585000px;}
.y18{bottom:457.156500px;}
.y185{bottom:457.363500px;}
.y149{bottom:458.193000px;}
.y30{bottom:460.258500px;}
.y1c0{bottom:461.464500px;}
.yd4{bottom:462.148500px;}
.y6a{bottom:463.071000px;}
.y235{bottom:464.110500px;}
.y1ff{bottom:465.337500px;}
.yf0{bottom:466.002000px;}
.yba{bottom:467.865000px;}
.y21a{bottom:468.501000px;}
.y50{bottom:472.299000px;}
.ya6{bottom:476.847000px;}
.y184{bottom:479.032500px;}
.y1a0{bottom:481.417500px;}
.y2f{bottom:481.926000px;}
.y1bf{bottom:483.133500px;}
.y10b{bottom:483.909000px;}
.y88{bottom:483.955500px;}
.y129{bottom:483.963000px;}
.y69{bottom:484.740000px;}
.y234{bottom:485.778000px;}
.y1df{bottom:486.868500px;}
.y1fe{bottom:487.006500px;}
.y17{bottom:493.768500px;}
.y148{bottom:499.615500px;}
.y183{bottom:500.701500px;}
.y2e{bottom:503.595000px;}
.y1be{bottom:504.801000px;}
.y166{bottom:505.576500px;}
.y128{bottom:505.632000px;}
.y1de{bottom:508.537500px;}
.y1fd{bottom:508.675500px;}
.y4f{bottom:508.911000px;}
.yef{bottom:512.209500px;}
.yd3{bottom:514.141500px;}
.yb9{bottom:514.627500px;}
.y16{bottom:515.437500px;}
.y19f{bottom:516.235500px;}
.y68{bottom:517.989000px;}
.y219{bottom:520.492500px;}
.y10a{bottom:520.522500px;}
.y87{bottom:520.569000px;}
.y233{bottom:521.416500px;}
.y182{bottom:522.370500px;}
.y2d{bottom:525.264000px;}
.y165{bottom:527.245500px;}
.y127{bottom:527.299500px;}
.ya5{bottom:528.628500px;}
.y1dd{bottom:530.206500px;}
.y4e{bottom:530.580000px;}
.y147{bottom:535.268825px;}
.yd2{bottom:535.810500px;}
.yb8{bottom:536.296500px;}
.y15{bottom:537.106500px;}
.y1bd{bottom:539.649000px;}
.y218{bottom:542.161500px;}
.y232{bottom:543.085500px;}
.y1fc{bottom:545.287500px;}
.y2c{bottom:546.933000px;}
.yee{bottom:547.746000px;}
.y164{bottom:548.914500px;}
.y19e{bottom:551.251500px;}
.y4d{bottom:552.249000px;}
.y146{bottom:552.649219px;}
.y109{bottom:557.134500px;}
.y86{bottom:557.181000px;}
.yb7{bottom:557.965500px;}
.y19d{bottom:558.366000px;}
.y181{bottom:558.982500px;}
.y126{bottom:560.550000px;}
.y1bc{bottom:561.318000px;}
.y67{bottom:562.647000px;}
.y217{bottom:563.830500px;}
.ya4{bottom:564.831000px;}
.y1dc{bottom:566.818500px;}
.y1fb{bottom:566.956500px;}
.y2b{bottom:568.602000px;}
.y145{bottom:570.030784px;}
.yd1{bottom:572.422500px;}
.y14{bottom:573.720000px;}
.y231{bottom:578.724000px;}
.yb6{bottom:579.633000px;}
.y85{bottom:580.743000px;}
.yed{bottom:581.133000px;}
.y144{bottom:587.411178px;}
.y1db{bottom:588.487500px;}
.y4c{bottom:588.861000px;}
.y2a{bottom:590.271000px;}
.y108{bottom:593.748000px;}
.y125{bottom:593.800500px;}
.yd0{bottom:594.091500px;}
.y19c{bottom:594.381000px;}
.y13{bottom:595.387500px;}
.y180{bottom:595.596000px;}
.y1bb{bottom:596.166000px;}
.y163{bottom:598.005000px;}
.y230{bottom:600.393000px;}
.y216{bottom:600.442500px;}
.ya3{bottom:601.033500px;}
.y1fa{bottom:603.570000px;}
.y1da{bottom:610.156500px;}
.y4b{bottom:610.530000px;}
.yb5{bottom:612.883500px;}
.yec{bottom:614.521500px;}
.y12{bottom:617.056500px;}
.y1ba{bottom:617.835000px;}
.y84{bottom:619.123500px;}
.y162{bottom:619.674000px;}
.y215{bottom:622.111500px;}
.y66{bottom:622.548000px;}
.y29{bottom:623.520000px;}
.y19b{bottom:629.199000px;}
.y107{bottom:630.360000px;}
.ycf{bottom:630.705000px;}
.y143{bottom:631.525500px;}
.y17f{bottom:632.208000px;}
.y22f{bottom:636.030000px;}
.yeb{bottom:636.189000px;}
.ya2{bottom:636.415500px;}
.y1f9{bottom:636.820500px;}
.y83{bottom:640.791000px;}
.y4a{bottom:643.780500px;}
.y65{bottom:644.217000px;}
.y124{bottom:644.832000px;}
.y1d9{bottom:646.770000px;}
.y1b9{bottom:649.153500px;}
.y19a{bottom:650.868000px;}
.yce{bottom:652.374000px;}
.y11{bottom:653.670000px;}
.y161{bottom:654.408184px;}
.yb4{bottom:657.541500px;}
.y22e{bottom:657.699000px;}
.y214{bottom:658.725000px;}
.y64{bottom:665.884500px;}
.y123{bottom:666.501000px;}
.y106{bottom:666.972000px;}
.y28{bottom:668.178000px;}
.y1d8{bottom:668.437500px;}
.y17e{bottom:668.821500px;}
.y160{bottom:668.907667px;}
.y1b8{bottom:670.822500px;}
.yea{bottom:671.727000px;}
.y199{bottom:672.537000px;}
.y10{bottom:675.337500px;}
.y142{bottom:677.208000px;}
.ya1{bottom:680.211000px;}
.y213{bottom:680.394000px;}
.y82{bottom:682.635000px;}
.y15f{bottom:683.406173px;}
.y1f8{bottom:688.812000px;}
.ycd{bottom:688.986000px;}
.y1d7{bottom:690.106500px;}
.y1b7{bottom:692.490000px;}
.y22d{bottom:693.337500px;}
.y198{bottom:694.206000px;}
.y49{bottom:695.773500px;}
.yf{bottom:697.006500px;}
.y122{bottom:697.533000px;}
.y15e{bottom:697.904678px;}
.y17b{bottom:701.982000px;}
.y63{bottom:702.498000px;}
.y105{bottom:703.585500px;}
.y17d{bottom:703.912500px;}
.ye9{bottom:705.114000px;}
.y1f7{bottom:710.481000px;}
.ycc{bottom:710.655000px;}
.y141{bottom:711.729000px;}
.y15d{bottom:712.404161px;}
.y1b6{bottom:714.159000px;}
.y22c{bottom:715.006500px;}
.y17c{bottom:715.075500px;}
.y212{bottom:717.006000px;}
.y48{bottom:717.442500px;}
.y17a{bottom:719.409000px;}
.y62{bottom:724.167000px;}
.y81{bottom:724.477500px;}
.ya0{bottom:725.101500px;}
.y1d6{bottom:726.720000px;}
.y197{bottom:727.456500px;}
.y27{bottom:728.079000px;}
.y1f6{bottom:732.150000px;}
.y121{bottom:732.285000px;}
.ycb{bottom:732.324000px;}
.y140{bottom:733.398000px;}
.ye{bottom:733.620000px;}
.y1b5{bottom:735.828000px;}
.ye8{bottom:738.501000px;}
.y211{bottom:738.675000px;}
.yb3{bottom:739.110000px;}
.y104{bottom:740.197500px;}
.y9f{bottom:746.770500px;}
.y1d5{bottom:748.387500px;}
.y1f5{bottom:753.819000px;}
.y47{bottom:754.054500px;}
.y22b{bottom:754.434000px;}
.y15c{bottom:755.173500px;}
.yd{bottom:755.289000px;}
.ye7{bottom:760.170000px;}
.y61{bottom:760.779000px;}
.y80{bottom:761.091000px;}
.yca{bottom:765.574500px;}
.y179{bottom:765.748500px;}
.y120{bottom:767.037000px;}
.y26{bottom:767.305500px;}
.y13f{bottom:767.919000px;}
.y1b4{bottom:769.078500px;}
.y1d4{bottom:770.056500px;}
.y210{bottom:771.925500px;}
.y1f4{bottom:775.488000px;}
.y46{bottom:775.723500px;}
.y103{bottom:776.811000px;}
.yc{bottom:776.956500px;}
.y196{bottom:779.139000px;}
.y9e{bottom:780.019500px;}
.y60{bottom:782.448000px;}
.y178{bottom:787.417500px;}
.y13e{bottom:789.588000px;}
.ye6{bottom:793.557000px;}
.y1b3{bottom:795.978000px;}
.y1f3{bottom:797.155500px;}
.y45{bottom:797.392500px;}
.y7f{bottom:797.703000px;}
.y11f{bottom:798.069000px;}
.yb{bottom:798.625500px;}
.y195{bottom:800.808000px;}
.y25{bottom:806.533500px;}
.y1d3{bottom:806.670000px;}
.y15b{bottom:807.165000px;}
.y177{bottom:809.085000px;}
.y102{bottom:810.061500px;}
.yc9{bottom:812.335500px;}
.y22a{bottom:813.831000px;}
.y1f2{bottom:818.824500px;}
.y5f{bottom:819.060000px;}
.y11e{bottom:819.738000px;}
.y13d{bottom:819.928500px;}
.ya{bottom:820.294500px;}
.y20f{bottom:823.917000px;}
.ye5{bottom:826.944000px;}
.y24{bottom:828.202500px;}
.y1d2{bottom:828.339000px;}
.y176{bottom:830.754000px;}
.y9d{bottom:831.801000px;}
.y44{bottom:834.004500px;}
.y7e{bottom:834.316500px;}
.y229{bottom:835.498500px;}
.y194{bottom:835.626000px;}
.y11d{bottom:841.405500px;}
.y13c{bottom:841.597500px;}
.y9{bottom:841.963500px;}
.y15a{bottom:843.778500px;}
.y20e{bottom:845.586000px;}
.y1b2{bottom:847.057500px;}
.y1d1{bottom:850.006500px;}
.y175{bottom:852.423000px;}
.y9c{bottom:853.470000px;}
.y43{bottom:855.673500px;}
.y228{bottom:857.167500px;}
.y1f1{bottom:858.252000px;}
.ye4{bottom:860.331000px;}
.y13b{bottom:863.265000px;}
.y8{bottom:863.632500px;}
.y20d{bottom:867.255000px;}
.y23{bottom:867.430500px;}
.y1b1{bottom:868.726500px;}
.yc8{bottom:870.618000px;}
.y193{bottom:871.641000px;}
.y7d{bottom:873.918000px;}
.y9b{bottom:875.139000px;}
.y5e{bottom:877.342500px;}
.y227{bottom:878.836500px;}
.y159{bottom:880.390500px;}
.y101{bottom:880.758000px;}
.y11c{bottom:880.833000px;}
.y1d0{bottom:883.257000px;}
.y7{bottom:885.301500px;}
.y174{bottom:885.673500px;}
.y1b0{bottom:890.395500px;}
.y42{bottom:892.285500px;}
.ye3{bottom:893.581500px;}
.y13a{bottom:896.515500px;}
.y9a{bottom:896.806500px;}
.y226{bottom:900.505500px;}
.y1f0{bottom:902.710500px;}
.y20c{bottom:903.867000px;}
.y192{bottom:906.459000px;}
.y22{bottom:906.658500px;}
.y6{bottom:906.969000px;}
.y1cf{bottom:910.156500px;}
.y7c{bottom:913.519500px;}
.y41{bottom:913.954500px;}
.y100{bottom:915.364051px;}
.y99{bottom:918.475500px;}
.y225{bottom:922.174500px;}
.y11b{bottom:925.291500px;}
.y20b{bottom:925.536000px;}
.y158{bottom:925.995000px;}
.y5{bottom:928.638000px;}
.yc7{bottom:928.899000px;}
.y191{bottom:929.124000px;}
.yff{bottom:929.458651px;}
.y139{bottom:929.766000px;}
.y7b{bottom:935.187000px;}
.y5d{bottom:935.623500px;}
.y173{bottom:937.666500px;}
.ye2{bottom:939.787500px;}
.y1af{bottom:941.187000px;}
.y190{bottom:941.424000px;}
.yfe{bottom:943.553252px;}
.y224{bottom:943.843500px;}
.y21{bottom:945.885000px;}
.y242{bottom:947.205000px;}
.y97{bottom:949.917000px;}
.y98{bottom:950.484000px;}
.y40{bottom:950.568000px;}
.y138{bottom:956.665500px;}
.y1ef{bottom:957.031500px;}
.yfd{bottom:957.648802px;}
.y172{bottom:959.334000px;}
.y157{bottom:961.780878px;}
.y1ce{bottom:962.149500px;}
.y96{bottom:962.785500px;}
.yc6{bottom:965.511000px;}
.y7a{bottom:968.437500px;}
.y241{bottom:968.874000px;}
.y3f{bottom:972.237000px;}
.ye1{bottom:975.325500px;}
.y11a{bottom:975.892500px;}
.y1ae{bottom:978.300279px;}
.y156{bottom:979.579959px;}
.y171{bottom:981.003000px;}
.y1cd{bottom:983.818500px;}
.y20{bottom:985.113000px;}
.yc5{bottom:987.180000px;}
.y4{bottom:987.292500px;}
.y1ee{bottom:993.140263px;}
.y5c{bottom:993.904500px;}
.ye0{bottom:996.994500px;}
.y155{bottom:997.377840px;}
.y1ad{bottom:1000.263605px;}
.y170{bottom:1002.672000px;}
.yfc{bottom:1003.618500px;}
.y1cc{bottom:1005.486000px;}
.y137{bottom:1007.577000px;}
.y3e{bottom:1008.849000px;}
.y3{bottom:1008.961500px;}
.y119{bottom:1010.804327px;}
.y1ed{bottom:1011.950357px;}
.y154{bottom:1015.175722px;}
.y79{bottom:1020.430500px;}
.y1ac{bottom:1022.225451px;}
.y1f{bottom:1024.341000px;}
.y118{bottom:1025.863392px;}
.y240{bottom:1027.155000px;}
.y136{bottom:1029.246000px;}
.ydf{bottom:1030.381500px;}
.y3d{bottom:1030.518000px;}
.y1ec{bottom:1030.761718px;}
.yfb{bottom:1036.869000px;}
.y2{bottom:1039.597500px;}
.y117{bottom:1040.921442px;}
.y78{bottom:1042.099500px;}
.y1ab{bottom:1044.187297px;}
.y1eb{bottom:1049.571813px;}
.y116{bottom:1055.979492px;}
.y1{bottom:1063.768500px;}
.y1aa{bottom:1066.150623px;}
.y1ea{bottom:1068.381907px;}
.y115{bottom:1071.038557px;}
.h1b{height:26.899200px;}
.hf{height:34.054925px;}
.h19{height:35.030828px;}
.hc{height:35.865450px;}
.h11{height:36.382782px;}
.h13{height:37.233873px;}
.h10{height:38.686395px;}
.h1a{height:39.795021px;}
.h12{height:41.330840px;}
.h15{height:41.993955px;}
.h14{height:42.297679px;}
.h20{height:42.805200px;}
.h17{height:43.002675px;}
.h23{height:45.448350px;}
.h16{height:47.705133px;}
.h18{height:48.851039px;}
.h1c{height:50.498765px;}
.h24{height:51.629326px;}
.h21{height:53.063514px;}
.h3{height:53.798400px;}
.h22{height:60.280152px;}
.h2{height:61.114982px;}
.h1f{height:61.913702px;}
.h4{height:64.557900px;}
.h5{height:71.733024px;}
.h1{height:77.469300px;}
.he{height:89.661024px;}
.h7{height:89.667024px;}
.hd{height:99.026765px;}
.hb{height:99.089702px;}
.h1e{height:99.698765px;}
.ha{height:99.704765px;}
.h1d{height:102.326400px;}
.h9{height:109.642982px;}
.h6{height:110.314982px;}
.h8{height:114.399024px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:106.299000px;}
.x17{left:112.353108px;}
.x1b{left:113.764467px;}
.x25{left:115.732356px;}
.x27{left:118.980000px;}
.x7{left:127.759500px;}
.x1a{left:130.653000px;}
.x5{left:132.637500px;}
.x1{left:138.492000px;}
.x8{left:150.196500px;}
.x1c{left:158.638500px;}
.x19{left:189.822000px;}
.x2{left:196.420500px;}
.x26{left:237.231000px;}
.x15{left:260.908500px;}
.xa{left:309.991500px;}
.x1d{left:335.302500px;}
.xd{left:338.854500px;}
.xb{left:346.573500px;}
.x11{left:359.158500px;}
.x24{left:362.427000px;}
.x22{left:379.612500px;}
.x4{left:394.252500px;}
.xf{left:397.668000px;}
.xc{left:398.670000px;}
.x3{left:400.716000px;}
.x12{left:422.920500px;}
.x13{left:437.886000px;}
.x18{left:450.220500px;}
.x9{left:454.609500px;}
.x10{left:457.339500px;}
.x23{left:467.622000px;}
.x1e{left:474.519000px;}
.x14{left:511.545000px;}
.xe{left:523.035000px;}
.x1f{left:524.737500px;}
.x20{left:540.999000px;}
.x21{left:577.819500px;}
.x16{left:591.865500px;}
@media print{
.va{vertical-align:-77.578667pt;}
.v4{vertical-align:-49.594667pt;}
.v7{vertical-align:-47.824000pt;}
.v1{vertical-align:-9.562667pt;}
.v11{vertical-align:-7.322667pt;}
.v8{vertical-align:-5.541333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:9.562667pt;}
.v17{vertical-align:14.138667pt;}
.v13{vertical-align:15.936000pt;}
.vb{vertical-align:18.421333pt;}
.v16{vertical-align:19.792000pt;}
.v14{vertical-align:23.536000pt;}
.v10{vertical-align:24.442667pt;}
.vf{vertical-align:29.754667pt;}
.v15{vertical-align:33.573333pt;}
.v5{vertical-align:43.733333pt;}
.vd{vertical-align:58.154667pt;}
.v2{vertical-align:61.637333pt;}
.vc{vertical-align:74.981333pt;}
.v6{vertical-align:77.578667pt;}
.v12{vertical-align:83.626667pt;}
.ve{vertical-align:87.141333pt;}
.v9{vertical-align:99.562667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls34{letter-spacing:0.000125pt;}
.ls1e{letter-spacing:0.000676pt;}
.ls47{letter-spacing:0.001012pt;}
.ls5d{letter-spacing:0.001022pt;}
.ls3d{letter-spacing:0.001036pt;}
.ls1b{letter-spacing:0.001458pt;}
.ls3b{letter-spacing:0.001788pt;}
.ls45{letter-spacing:0.001953pt;}
.ls49{letter-spacing:0.002136pt;}
.ls4d{letter-spacing:0.002409pt;}
.ls2{letter-spacing:0.002452pt;}
.ls4e{letter-spacing:0.002466pt;}
.ls1a{letter-spacing:0.002717pt;}
.ls65{letter-spacing:0.003046pt;}
.ls0{letter-spacing:0.003086pt;}
.lsf{letter-spacing:0.003328pt;}
.ls9{letter-spacing:0.003420pt;}
.lse{letter-spacing:0.003521pt;}
.ls21{letter-spacing:0.003895pt;}
.ls53{letter-spacing:0.004000pt;}
.ls39{letter-spacing:0.004025pt;}
.ls20{letter-spacing:0.006009pt;}
.ls64{letter-spacing:1.640721pt;}
.ls52{letter-spacing:1.689334pt;}
.ls1f{letter-spacing:2.287633pt;}
.ls1d{letter-spacing:2.292966pt;}
.ls42{letter-spacing:2.348310pt;}
.ls19{letter-spacing:2.377181pt;}
.ls4a{letter-spacing:2.571211pt;}
.ls2f{letter-spacing:2.653258pt;}
.ls66{letter-spacing:2.656473pt;}
.ls1{letter-spacing:3.709752pt;}
.ls46{letter-spacing:3.715086pt;}
.ls2c{letter-spacing:3.737979pt;}
.ls27{letter-spacing:4.583031pt;}
.ls18{letter-spacing:6.376161pt;}
.ls38{letter-spacing:6.380455pt;}
.ls12{letter-spacing:6.807576pt;}
.ls2a{letter-spacing:7.123461pt;}
.ls17{letter-spacing:8.672391pt;}
.ls22{letter-spacing:9.035110pt;}
.ls37{letter-spacing:10.626452pt;}
.ls30{letter-spacing:10.627945pt;}
.ls44{letter-spacing:11.209326pt;}
.ls43{letter-spacing:11.213426pt;}
.ls62{letter-spacing:14.164905pt;}
.ls29{letter-spacing:14.166642pt;}
.ls28{letter-spacing:14.168753pt;}
.ls61{letter-spacing:16.823925pt;}
.ls2b{letter-spacing:16.999786pt;}
.ls5b{letter-spacing:17.707703pt;}
.ls8{letter-spacing:17.707976pt;}
.ls4b{letter-spacing:17.709119pt;}
.ls56{letter-spacing:17.710933pt;}
.ls51{letter-spacing:17.711176pt;}
.ls11{letter-spacing:17.711572pt;}
.ls4c{letter-spacing:17.713309pt;}
.ls7{letter-spacing:17.714452pt;}
.ls2e{letter-spacing:17.725577pt;}
.ls67{letter-spacing:17.880419pt;}
.ls50{letter-spacing:17.880753pt;}
.ls31{letter-spacing:17.908646pt;}
.ls3f{letter-spacing:20.806369pt;}
.lsd{letter-spacing:20.807786pt;}
.ls59{letter-spacing:20.809248pt;}
.ls57{letter-spacing:20.811657pt;}
.ls68{letter-spacing:20.812455pt;}
.ls2d{letter-spacing:20.813119pt;}
.ls16{letter-spacing:20.855786pt;}
.ls10{letter-spacing:21.421119pt;}
.ls55{letter-spacing:21.421752pt;}
.ls14{letter-spacing:23.094436pt;}
.ls32{letter-spacing:23.095695pt;}
.ls5f{letter-spacing:23.098300pt;}
.ls3c{letter-spacing:23.469258pt;}
.ls26{letter-spacing:23.609490pt;}
.ls23{letter-spacing:23.933752pt;}
.ls5c{letter-spacing:24.090238pt;}
.ls54{letter-spacing:24.525752pt;}
.ls3e{letter-spacing:25.625392pt;}
.ls4{letter-spacing:25.846642pt;}
.ls3{letter-spacing:25.847786pt;}
.ls58{letter-spacing:26.384391pt;}
.ls13{letter-spacing:27.471614pt;}
.ls40{letter-spacing:27.522452pt;}
.ls63{letter-spacing:27.744990pt;}
.ls60{letter-spacing:27.750323pt;}
.ls24{letter-spacing:28.898452pt;}
.ls25{letter-spacing:28.900267pt;}
.ls15{letter-spacing:29.482191pt;}
.ls5a{letter-spacing:30.198369pt;}
.ls6{letter-spacing:31.215572pt;}
.ls36{letter-spacing:31.882238pt;}
.ls35{letter-spacing:34.535925pt;}
.ls33{letter-spacing:35.418238pt;}
.lsb{letter-spacing:35.419976pt;}
.lsa{letter-spacing:35.421119pt;}
.lsc{letter-spacing:73.056990pt;}
.ls1c{letter-spacing:77.945181pt;}
.ls3a{letter-spacing:128.984295pt;}
.ls4f{letter-spacing:169.587901pt;}
.ls5e{letter-spacing:198.783633pt;}
.ls48{letter-spacing:211.458475pt;}
.ls41{letter-spacing:237.873982pt;}
.ws63{word-spacing:-63.761067pt;}
.ws1e{word-spacing:-51.646200pt;}
.ws6c{word-spacing:-42.066082pt;}
.wsf{word-spacing:-40.590295pt;}
.wsff{word-spacing:-40.035832pt;}
.ws99{word-spacing:-35.865600pt;}
.ws78{word-spacing:-35.068587pt;}
.ws127{word-spacing:-34.290275pt;}
.wsd1{word-spacing:-32.445041pt;}
.ws148{word-spacing:-31.880533pt;}
.wsc7{word-spacing:-31.683973pt;}
.ws49{word-spacing:-31.217418pt;}
.ws68{word-spacing:-30.005958pt;}
.ws6b{word-spacing:-29.521250pt;}
.wsbf{word-spacing:-28.092543pt;}
.ws79{word-spacing:-27.646799pt;}
.wsad{word-spacing:-27.450405pt;}
.wsd6{word-spacing:-26.430371pt;}
.wsf7{word-spacing:-26.122909pt;}
.wsa5{word-spacing:-25.694063pt;}
.ws7d{word-spacing:-25.160117pt;}
.wscc{word-spacing:-23.910333pt;}
.ws103{word-spacing:-23.298229pt;}
.wsed{word-spacing:-19.931654pt;}
.ws136{word-spacing:-19.606528pt;}
.ws13c{word-spacing:-18.395068pt;}
.ws35{word-spacing:-17.821218pt;}
.wse6{word-spacing:-17.629935pt;}
.ws9e{word-spacing:-17.566174pt;}
.ws11d{word-spacing:-17.559749pt;}
.ws81{word-spacing:-17.381267pt;}
.ws41{word-spacing:-17.343010pt;}
.ws152{word-spacing:-17.317506pt;}
.wsec{word-spacing:-17.253745pt;}
.ws0{word-spacing:-17.215400pt;}
.ws137{word-spacing:-17.062461pt;}
.ws4{word-spacing:-16.934939pt;}
.wsf3{word-spacing:-16.807417pt;}
.wsf2{word-spacing:-16.777544pt;}
.ws69{word-spacing:-16.743656pt;}
.ws11e{word-spacing:-16.488612pt;}
.ws29{word-spacing:-16.424851pt;}
.ws131{word-spacing:-16.354714pt;}
.ws5{word-spacing:-16.233568pt;}
.ws39{word-spacing:-16.099669pt;}
.ws13d{word-spacing:-15.978523pt;}
.ws151{word-spacing:-15.940267pt;}
.ws96{word-spacing:-15.851001pt;}
.ws36{word-spacing:-15.532196pt;}
.wsa9{word-spacing:-15.468435pt;}
.wse7{word-spacing:-15.340913pt;}
.ws13b{word-spacing:-15.334537pt;}
.ws34{word-spacing:-15.277152pt;}
.ws13{word-spacing:-15.213391pt;}
.wsb1{word-spacing:-14.830824pt;}
.ws10e{word-spacing:-14.767063pt;}
.wsb5{word-spacing:-14.703302pt;}
.ws133{word-spacing:-14.505643pt;}
.wsea{word-spacing:-14.448258pt;}
.wse0{word-spacing:-14.384497pt;}
.ws24{word-spacing:-14.346200pt;}
.ws132{word-spacing:-14.256975pt;}
.ws142{word-spacing:-14.193213pt;}
.ws14d{word-spacing:-14.129452pt;}
.ws8e{word-spacing:-14.065691pt;}
.ws3a{word-spacing:-14.001930pt;}
.ws40{word-spacing:-13.995554pt;}
.wsb4{word-spacing:-13.938169pt;}
.ws4c{word-spacing:-13.874408pt;}
.ws26{word-spacing:-13.683125pt;}
.ws92{word-spacing:-13.555603pt;}
.wse2{word-spacing:-13.509118pt;}
.ws80{word-spacing:-13.491842pt;}
.ws45{word-spacing:-13.428081pt;}
.ws11c{word-spacing:-13.421705pt;}
.wse1{word-spacing:-13.364320pt;}
.wsd9{word-spacing:-13.300559pt;}
.ws25{word-spacing:-13.236797pt;}
.ws11{word-spacing:-13.230421pt;}
.ws17{word-spacing:-13.166660pt;}
.ws30{word-spacing:-13.109275pt;}
.ws14c{word-spacing:-13.007258pt;}
.ws16{word-spacing:-12.981753pt;}
.ws9d{word-spacing:-12.917992pt;}
.ws98{word-spacing:-12.854231pt;}
.ws13a{word-spacing:-12.847855pt;}
.ws8d{word-spacing:-12.726709pt;}
.ws52{word-spacing:-12.662948pt;}
.ws5d{word-spacing:-12.656572pt;}
.ws134{word-spacing:-12.599187pt;}
.ws6a{word-spacing:-12.543875pt;}
.wsfc{word-spacing:-12.532811pt;}
.ws74{word-spacing:-12.527131pt;}
.ws2c{word-spacing:-12.471665pt;}
.wsb6{word-spacing:-12.407904pt;}
.ws150{word-spacing:-12.369647pt;}
.ws13f{word-spacing:-12.337766pt;}
.ws121{word-spacing:-12.274005pt;}
.ws6{word-spacing:-12.216620pt;}
.ws21{word-spacing:-12.210244pt;}
.ws10d{word-spacing:-12.152859pt;}
.ws4d{word-spacing:-12.089098pt;}
.ws112{word-spacing:-12.082722pt;}
.wsdc{word-spacing:-12.025337pt;}
.wsbe{word-spacing:-12.003097pt;}
.ws14e{word-spacing:-11.961576pt;}
.ws20{word-spacing:-11.955200pt;}
.ws28{word-spacing:-11.897815pt;}
.ws12d{word-spacing:-11.891439pt;}
.ws50{word-spacing:-11.834054pt;}
.wsfd{word-spacing:-11.791892pt;}
.ws7b{word-spacing:-11.770293pt;}
.ws124{word-spacing:-11.763917pt;}
.wsde{word-spacing:-11.706532pt;}
.wsdf{word-spacing:-11.642771pt;}
.ws114{word-spacing:-11.591730pt;}
.ws12{word-spacing:-11.579010pt;}
.ws18{word-spacing:-11.515249pt;}
.ws31{word-spacing:-11.451488pt;}
.ws54{word-spacing:-11.387727pt;}
.ws116{word-spacing:-11.381350pt;}
.ws1c{word-spacing:-11.323965pt;}
.ws84{word-spacing:-11.317589pt;}
.ws9a{word-spacing:-11.260204pt;}
.wse3{word-spacing:-11.215572pt;}
.wsc3{word-spacing:-11.132682pt;}
.ws5e{word-spacing:-11.005160pt;}
.ws70{word-spacing:-10.996210pt;}
.wsa4{word-spacing:-10.978299pt;}
.ws14f{word-spacing:-10.966903pt;}
.ws104{word-spacing:-10.877638pt;}
.ws59{word-spacing:-10.871262pt;}
.ws14b{word-spacing:-10.775620pt;}
.ws140{word-spacing:-10.750116pt;}
.ws122{word-spacing:-10.719669pt;}
.ws123{word-spacing:-10.686355pt;}
.wse9{word-spacing:-10.622594pt;}
.wsce{word-spacing:-10.558833pt;}
.wsc4{word-spacing:-10.495072pt;}
.ws7a{word-spacing:-10.444034pt;}
.ws2{word-spacing:-10.431311pt;}
.ws135{word-spacing:-10.421801pt;}
.ws6d{word-spacing:-10.415778pt;}
.ws141{word-spacing:-10.411051pt;}
.wse4{word-spacing:-10.407241pt;}
.ws60{word-spacing:-10.404471pt;}
.ws1{word-spacing:-10.367549pt;}
.wsfe{word-spacing:-10.288819pt;}
.wsf5{word-spacing:-10.240027pt;}
.ws102{word-spacing:-10.225929pt;}
.ws4a{word-spacing:-10.176266pt;}
.ws11a{word-spacing:-10.169890pt;}
.ws15a{word-spacing:-10.138010pt;}
.ws117{word-spacing:-10.106129pt;}
.ws1b{word-spacing:-10.048744pt;}
.ws73{word-spacing:-9.921222pt;}
.ws3f{word-spacing:-9.857461pt;}
.ws65{word-spacing:-9.802445pt;}
.ws27{word-spacing:-9.793700pt;}
.ws107{word-spacing:-9.787324pt;}
.ws130{word-spacing:-9.729939pt;}
.ws5f{word-spacing:-9.666178pt;}
.ws108{word-spacing:-9.659802pt;}
.ws89{word-spacing:-9.602417pt;}
.ws145{word-spacing:-9.564160pt;}
.wscf{word-spacing:-9.556150pt;}
.ws5a{word-spacing:-9.538656pt;}
.ws12a{word-spacing:-9.474895pt;}
.ws105{word-spacing:-9.340996pt;}
.wsc5{word-spacing:-9.331990pt;}
.ws115{word-spacing:-9.283611pt;}
.ws149{word-spacing:-9.245355pt;}
.ws93{word-spacing:-9.219850pt;}
.ws144{word-spacing:-9.181594pt;}
.wsa7{word-spacing:-9.156089pt;}
.wsdb{word-spacing:-9.092328pt;}
.wsb2{word-spacing:-9.028567pt;}
.ws156{word-spacing:-8.964806pt;}
.wsdd{word-spacing:-8.901045pt;}
.ws11b{word-spacing:-8.837284pt;}
.ws126{word-spacing:-8.812267pt;}
.ws118{word-spacing:-8.773523pt;}
.ws82{word-spacing:-8.767147pt;}
.ws158{word-spacing:-8.646001pt;}
.ws5b{word-spacing:-8.639625pt;}
.wsb{word-spacing:-8.582240pt;}
.ws75{word-spacing:-8.518479pt;}
.ws42{word-spacing:-8.454717pt;}
.ws109{word-spacing:-8.390956pt;}
.ws85{word-spacing:-8.384580pt;}
.wsd0{word-spacing:-8.338059pt;}
.wsa8{word-spacing:-8.327195pt;}
.ws159{word-spacing:-8.288939pt;}
.wsbb{word-spacing:-8.274194pt;}
.ws157{word-spacing:-8.225178pt;}
.wse5{word-spacing:-8.193297pt;}
.wsc9{word-spacing:-8.142472pt;}
.ws106{word-spacing:-8.135912pt;}
.wsd{word-spacing:-8.129536pt;}
.wsc6{word-spacing:-8.092702pt;}
.wsab{word-spacing:-8.085063pt;}
.ws8c{word-spacing:-8.008390pt;}
.wse8{word-spacing:-7.880868pt;}
.ws44{word-spacing:-7.874492pt;}
.wsd4{word-spacing:-7.784628pt;}
.ws83{word-spacing:-7.625824pt;}
.wsa1{word-spacing:-7.567761pt;}
.ws9b{word-spacing:-7.562063pt;}
.ws5c{word-spacing:-7.498301pt;}
.ws10f{word-spacing:-7.491925pt;}
.wsfb{word-spacing:-7.434540pt;}
.wsfa{word-spacing:-7.370779pt;}
.ws86{word-spacing:-7.307018pt;}
.wsa0{word-spacing:-7.306998pt;}
.wsbc{word-spacing:-7.219510pt;}
.wsda{word-spacing:-7.179496pt;}
.wse{word-spacing:-7.115735pt;}
.wsac{word-spacing:-7.054487pt;}
.wsb0{word-spacing:-7.011366pt;}
.ws2a{word-spacing:-6.860691pt;}
.wsb7{word-spacing:-6.796930pt;}
.wsd5{word-spacing:-6.792348pt;}
.wsb9{word-spacing:-6.774914pt;}
.ws67{word-spacing:-6.724506pt;}
.ws64{word-spacing:-6.694912pt;}
.wsa3{word-spacing:-6.603124pt;}
.wsa2{word-spacing:-6.562762pt;}
.ws110{word-spacing:-6.541885pt;}
.ws55{word-spacing:-6.350602pt;}
.ws2d{word-spacing:-6.312346pt;}
.wsc1{word-spacing:-6.286841pt;}
.ws12b{word-spacing:-6.280465pt;}
.wsb8{word-spacing:-6.248585pt;}
.ws2f{word-spacing:-6.159319pt;}
.ws12e{word-spacing:-6.152943pt;}
.ws4b{word-spacing:-6.095558pt;}
.wsd8{word-spacing:-6.031797pt;}
.ws47{word-spacing:-5.971154pt;}
.ws48{word-spacing:-5.968036pt;}
.ws91{word-spacing:-5.904275pt;}
.ws13e{word-spacing:-5.770377pt;}
.ws23{word-spacing:-5.738467pt;}
.ws10{word-spacing:-5.649231pt;}
.wsc2{word-spacing:-5.521708pt;}
.ws111{word-spacing:-5.515332pt;}
.ws3{word-spacing:-5.457947pt;}
.ws12f{word-spacing:-5.394186pt;}
.ws10a{word-spacing:-5.387810pt;}
.ws46{word-spacing:-5.324049pt;}
.ws37{word-spacing:-5.196527pt;}
.wsf9{word-spacing:-5.139142pt;}
.ws76{word-spacing:-5.011620pt;}
.wsc0{word-spacing:-5.011606pt;}
.ws154{word-spacing:-4.973363pt;}
.ws19{word-spacing:-4.884098pt;}
.ws1a{word-spacing:-4.820337pt;}
.ws10b{word-spacing:-4.756576pt;}
.ws94{word-spacing:-4.692815pt;}
.ws9{word-spacing:-4.629053pt;}
.ws38{word-spacing:-4.565292pt;}
.ws97{word-spacing:-4.501531pt;}
.wsa{word-spacing:-4.271991pt;}
.ws138{word-spacing:-4.176350pt;}
.ws153{word-spacing:-4.118965pt;}
.ws113{word-spacing:-4.048828pt;}
.ws8b{word-spacing:-3.991443pt;}
.ws1f{word-spacing:-3.985067pt;}
.ws9c{word-spacing:-3.927682pt;}
.ws72{word-spacing:-3.863921pt;}
.ws53{word-spacing:-3.736399pt;}
.ws9f{word-spacing:-3.721161pt;}
.ws139{word-spacing:-3.608876pt;}
.ws3e{word-spacing:-3.545115pt;}
.ws7{word-spacing:-3.481354pt;}
.ws2e{word-spacing:-3.417593pt;}
.ws56{word-spacing:-3.411217pt;}
.wscd{word-spacing:-3.353832pt;}
.ws3b{word-spacing:-3.219934pt;}
.ws6f{word-spacing:-3.188053pt;}
.ws33{word-spacing:-3.098788pt;}
.ws32{word-spacing:-3.095009pt;}
.wsb3{word-spacing:-3.035027pt;}
.ws87{word-spacing:-3.028651pt;}
.ws57{word-spacing:-2.971266pt;}
.ws3d{word-spacing:-2.907505pt;}
.ws3c{word-spacing:-2.843744pt;}
.ws95{word-spacing:-2.779983pt;}
.ws4e{word-spacing:-2.716221pt;}
.ws88{word-spacing:-2.652460pt;}
.ws14a{word-spacing:-2.461177pt;}
.ws146{word-spacing:-2.014850pt;}
.ws8f{word-spacing:-1.951089pt;}
.ws147{word-spacing:-1.849071pt;}
.ws51{word-spacing:-1.759805pt;}
.ws58{word-spacing:-1.632283pt;}
.ws4f{word-spacing:-1.568522pt;}
.ws14{word-spacing:-1.370863pt;}
.ws15{word-spacing:-1.249717pt;}
.wsee{word-spacing:-1.058434pt;}
.ws2b{word-spacing:-0.994673pt;}
.ws129{word-spacing:-0.930912pt;}
.ws8a{word-spacing:-0.867151pt;}
.ws12c{word-spacing:-0.860774pt;}
.wsba{word-spacing:-0.803389pt;}
.ws11f{word-spacing:-0.797013pt;}
.ws120{word-spacing:-0.739628pt;}
.ws77{word-spacing:-0.612106pt;}
.ws155{word-spacing:-0.510089pt;}
.ws43{word-spacing:-0.420823pt;}
.ws119{word-spacing:-0.357062pt;}
.ws8{word-spacing:-0.042507pt;}
.wsf6{word-spacing:-0.038257pt;}
.ws128{word-spacing:-0.035910pt;}
.wsd3{word-spacing:-0.033977pt;}
.ws7e{word-spacing:-0.031881pt;}
.wsa6{word-spacing:-0.026907pt;}
.wsc{word-spacing:-0.001847pt;}
.ws1d{word-spacing:0.000000pt;}
.ws90{word-spacing:0.153027pt;}
.wsf8{word-spacing:0.318805pt;}
.ws62{word-spacing:0.352104pt;}
.ws6e{word-spacing:0.382566pt;}
.ws143{word-spacing:2.193381pt;}
.wsf0{word-spacing:15.005042pt;}
.wsef{word-spacing:16.779148pt;}
.wsf1{word-spacing:17.056481pt;}
.wsf4{word-spacing:17.060845pt;}
.wscb{word-spacing:18.288088pt;}
.wsaa{word-spacing:18.383512pt;}
.wseb{word-spacing:19.418178pt;}
.ws71{word-spacing:22.836845pt;}
.ws101{word-spacing:23.108807pt;}
.ws10c{word-spacing:23.316845pt;}
.ws7f{word-spacing:23.424184pt;}
.ws61{word-spacing:23.428845pt;}
.ws7c{word-spacing:38.042178pt;}
.wsae{word-spacing:46.329358pt;}
.wsc8{word-spacing:53.474553pt;}
.wsbd{word-spacing:70.523729pt;}
.wsca{word-spacing:213.212444pt;}
.wsd7{word-spacing:270.944065pt;}
.ws100{word-spacing:389.906296pt;}
.ws125{word-spacing:410.481787pt;}
.wsaf{word-spacing:446.730400pt;}
.wsd2{word-spacing:486.299192pt;}
.ws66{word-spacing:797.001269pt;}
.ws22{word-spacing:2197.256545pt;}
._23{margin-left:-17.760961pt;}
._38{margin-left:-9.564133pt;}
._2{margin-left:-8.538838pt;}
._8{margin-left:-6.503629pt;}
._3{margin-left:-5.228407pt;}
._29{margin-left:-3.793971pt;}
._0{margin-left:-2.846279pt;}
._4{margin-left:-1.721549pt;}
._6{width:1.785310pt;}
._f{width:2.794381pt;}
._6b{width:4.970721pt;}
._24{width:6.808015pt;}
._20{width:8.639237pt;}
._7{width:15.621461pt;}
._25{width:16.641638pt;}
._64{width:17.757645pt;}
._1e{width:18.681993pt;}
._e{width:20.559056pt;}
._1c{width:21.678763pt;}
._5a{width:23.464073pt;}
._16{width:24.652564pt;}
._9{width:25.695710pt;}
._5{width:26.907170pt;}
._c{width:27.927347pt;}
._a{width:29.537864pt;}
._1a{width:30.840829pt;}
._11{width:31.880533pt;}
._1d{width:33.219516pt;}
._d{width:34.619959pt;}
._58{width:36.471330pt;}
._68{width:38.312931pt;}
._1b{width:39.645082pt;}
._2a{width:41.832197pt;}
._1f{width:42.969322pt;}
._2b{width:44.136562pt;}
._1{width:45.815918pt;}
._22{width:47.438234pt;}
._b{width:49.461308pt;}
._40{width:51.574941pt;}
._4a{width:52.631887pt;}
._69{width:53.758206pt;}
._67{width:55.329971pt;}
._19{width:56.405575pt;}
._6a{width:57.704245pt;}
._5d{width:60.047315pt;}
._60{width:65.019452pt;}
._46{width:72.178861pt;}
._52{width:79.458200pt;}
._65{width:80.385940pt;}
._31{width:83.144431pt;}
._30{width:84.037086pt;}
._48{width:85.563053pt;}
._59{width:87.543945pt;}
._2f{width:92.765140pt;}
._66{width:94.498494pt;}
._4f{width:95.497593pt;}
._5c{width:97.239292pt;}
._57{width:98.507719pt;}
._42{width:106.908847pt;}
._21{width:108.582900pt;}
._26{width:116.016166pt;}
._53{width:121.565108pt;}
._3b{width:128.171060pt;}
._50{width:134.935672pt;}
._63{width:137.950849pt;}
._36{width:141.058547pt;}
._43{width:153.929662pt;}
._4e{width:162.116641pt;}
._27{width:164.931310pt;}
._45{width:166.174665pt;}
._2e{width:167.682785pt;}
._54{width:169.980665pt;}
._2c{width:173.962037pt;}
._3c{width:175.592120pt;}
._41{width:179.545314pt;}
._3e{width:181.987421pt;}
._44{width:184.972528pt;}
._5b{width:188.913567pt;}
._56{width:191.976911pt;}
._37{width:215.917500pt;}
._4b{width:220.075367pt;}
._3a{width:223.509294pt;}
._2d{width:231.646035pt;}
._34{width:250.940601pt;}
._49{width:262.998165pt;}
._55{width:264.127750pt;}
._3f{width:265.654711pt;}
._39{width:274.056108pt;}
._61{width:282.559554pt;}
._4d{width:288.580517pt;}
._28{width:297.935586pt;}
._4c{width:307.042663pt;}
._33{width:308.074871pt;}
._35{width:317.245691pt;}
._5e{width:322.942050pt;}
._51{width:330.516000pt;}
._47{width:390.407250pt;}
._62{width:416.349408pt;}
._3d{width:457.512552pt;}
._32{width:467.230531pt;}
._5f{width:502.679404pt;}
._13{width:755.058551pt;}
._14{width:833.600323pt;}
._18{width:922.344622pt;}
._15{width:1135.138270pt;}
._17{width:1290.460228pt;}
._12{width:1426.207539pt;}
._10{width:1989.843506pt;}
.fs7{font-size:26.907483pt;}
.fs11{font-size:27.678563pt;}
.fs9{font-size:28.746769pt;}
.fsb{font-size:29.419233pt;}
.fs5{font-size:31.880533pt;}
.fsd{font-size:33.180270pt;}
.fsf{font-size:33.977280pt;}
.fs15{font-size:35.909657pt;}
.fs6{font-size:40.361393pt;}
.fs10{font-size:41.518019pt;}
.fs13{font-size:41.926552pt;}
.fs2{font-size:42.507200pt;}
.fs8{font-size:43.120334pt;}
.fsa{font-size:44.129034pt;}
.fsc{font-size:49.770613pt;}
.fse{font-size:50.966133pt;}
.fs4{font-size:53.133867pt;}
.fs14{font-size:53.864712pt;}
.fs12{font-size:62.890090pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:54.637333pt;}
.yb2{bottom:94.488000pt;}
.y77{bottom:108.089333pt;}
.yde{bottom:108.876000pt;}
.yb1{bottom:113.749333pt;}
.y20a{bottom:124.661333pt;}
.y153{bottom:125.174667pt;}
.yfa{bottom:126.077333pt;}
.y76{bottom:127.350667pt;}
.y135{bottom:131.717333pt;}
.y1cb{bottom:133.010667pt;}
.y18f{bottom:136.834667pt;}
.ydd{bottom:141.420000pt;}
.yb0{bottom:145.200000pt;}
.y23f{bottom:145.428000pt;}
.y1a9{bottom:148.796000pt;}
.y209{bottom:154.217333pt;}
.y95{bottom:154.265333pt;}
.yf9{bottom:155.754667pt;}
.y152{bottom:155.860000pt;}
.y18e{bottom:156.096000pt;}
.y75{bottom:159.896000pt;}
.y134{bottom:162.850959pt;}
.y1e9{bottom:163.061333pt;}
.y1ca{bottom:163.986667pt;}
.y5b{bottom:168.098667pt;}
.yc4{bottom:173.124000pt;}
.y94{bottom:173.525333pt;}
.ydc{bottom:173.965333pt;}
.y133{bottom:176.549002pt;}
.y23e{bottom:177.106667pt;}
.yaf{bottom:177.380000pt;}
.y3c{bottom:177.985333pt;}
.y1a8{bottom:178.020000pt;}
.y74{bottom:179.157333pt;}
.y223{bottom:179.666667pt;}
.y1e8{bottom:182.322667pt;}
.y151{bottom:182.829333pt;}
.y1c9{bottom:183.248000pt;}
.y114{bottom:184.341333pt;}
.yf8{bottom:185.432000pt;}
.y5a{bottom:187.360000pt;}
.y18d{bottom:188.641333pt;}
.y132{bottom:190.247045pt;}
.yc3{bottom:192.385333pt;}
.y93{bottom:192.786667pt;}
.y23d{bottom:196.366667pt;}
.y3b{bottom:197.246667pt;}
.y222{bottom:198.926667pt;}
.y16f{bottom:198.952000pt;}
.y208{bottom:200.433333pt;}
.y150{bottom:202.090667pt;}
.y113{bottom:203.602667pt;}
.y131{bottom:203.946011pt;}
.ydb{bottom:206.509333pt;}
.y59{bottom:206.620000pt;}
.y18c{bottom:207.901333pt;}
.yae{bottom:209.560000pt;}
.y1c8{bottom:211.085333pt;}
.y73{bottom:211.701333pt;}
.y1e7{bottom:214.866667pt;}
.y92{bottom:215.113333pt;}
.y3a{bottom:216.506667pt;}
.yf7{bottom:217.021333pt;}
.y1a7{bottom:217.537333pt;}
.y16e{bottom:218.213333pt;}
.y207{bottom:219.694667pt;}
.y14f{bottom:221.350667pt;}
.yc2{bottom:224.929333pt;}
.y91{bottom:226.048000pt;}
.y23c{bottom:228.045333pt;}
.y1c7{bottom:230.346667pt;}
.y72{bottom:230.962667pt;}
.y221{bottom:231.472000pt;}
.y1e6{bottom:234.128000pt;}
.y39{bottom:235.768000pt;}
.y112{bottom:236.146667pt;}
.y206{bottom:238.956000pt;}
.yda{bottom:239.054667pt;}
.y58{bottom:239.165333pt;}
.y18b{bottom:240.446667pt;}
.yad{bottom:241.740000pt;}
.y130{bottom:242.328000pt;}
.yc1{bottom:244.190667pt;}
.yf6{bottom:246.698667pt;}
.y23b{bottom:247.306667pt;}
.y1c6{bottom:249.608000pt;}
.y71{bottom:250.224000pt;}
.y220{bottom:250.733333pt;}
.y16d{bottom:250.757333pt;}
.y14e{bottom:250.906667pt;}
.y90{bottom:252.182667pt;}
.y38{bottom:255.029333pt;}
.y111{bottom:255.408000pt;}
.yd9{bottom:258.316000pt;}
.y57{bottom:258.426667pt;}
.y18a{bottom:259.708000pt;}
.y1a6{bottom:263.478667pt;}
.y1e5{bottom:266.673333pt;}
.y1c5{bottom:268.869333pt;}
.y16c{bottom:270.018667pt;}
.y205{bottom:271.500000pt;}
.yac{bottom:273.190667pt;}
.y37{bottom:274.290667pt;}
.yf5{bottom:276.376000pt;}
.yc0{bottom:276.734667pt;}
.y56{bottom:277.688000pt;}
.y23a{bottom:278.985333pt;}
.y14d{bottom:280.462667pt;}
.y8f{bottom:280.560000pt;}
.y1a5{bottom:282.740000pt;}
.y70{bottom:282.768000pt;}
.y12f{bottom:283.040000pt;}
.y21f{bottom:283.277333pt;}
.y1e4{bottom:285.934667pt;}
.y8e{bottom:286.056000pt;}
.y110{bottom:287.952000pt;}
.y204{bottom:290.761333pt;}
.yd8{bottom:290.860000pt;}
.y189{bottom:292.252000pt;}
.y36{bottom:293.552000pt;}
.ybf{bottom:295.996000pt;}
.y1d{bottom:296.772000pt;}
.y239{bottom:298.246667pt;}
.y1c4{bottom:298.425333pt;}
.y1a4{bottom:302.001333pt;}
.y6f{bottom:302.029333pt;}
.y12e{bottom:302.301333pt;}
.y21e{bottom:302.538667pt;}
.y16b{bottom:302.564000pt;}
.y14c{bottom:304.373333pt;}
.yf4{bottom:306.053333pt;}
.yab{bottom:306.622667pt;}
.y10f{bottom:307.213333pt;}
.y8d{bottom:307.310667pt;}
.y203{bottom:310.022667pt;}
.y55{bottom:310.232000pt;}
.y188{bottom:311.513333pt;}
.yaa{bottom:312.120000pt;}
.y35{bottom:312.812000pt;}
.y1c{bottom:316.033333pt;}
.y1e3{bottom:318.478667pt;}
.yd7{bottom:320.416000pt;}
.y16a{bottom:321.825333pt;}
.y8c{bottom:326.570667pt;}
.ybe{bottom:328.541333pt;}
.y54{bottom:329.493333pt;}
.y238{bottom:329.924000pt;}
.y187{bottom:330.774667pt;}
.y34{bottom:332.073333pt;}
.y1a3{bottom:332.950667pt;}
.y12d{bottom:333.192000pt;}
.y6e{bottom:334.573333pt;}
.y21d{bottom:335.082667pt;}
.y1b{bottom:335.294667pt;}
.yf3{bottom:335.730667pt;}
.y1e2{bottom:337.740000pt;}
.y10e{bottom:339.758667pt;}
.y202{bottom:342.566667pt;}
.y1c3{bottom:343.829333pt;}
.y8b{bottom:345.832000pt;}
.ybd{bottom:347.802667pt;}
.y53{bottom:348.754667pt;}
.y14b{bottom:349.628000pt;}
.ya9{bottom:351.137333pt;}
.y33{bottom:351.334667pt;}
.y12c{bottom:352.453333pt;}
.y6d{bottom:353.834667pt;}
.y21c{bottom:354.344000pt;}
.y169{bottom:354.369333pt;}
.yf2{bottom:354.990667pt;}
.y1e1{bottom:357.001333pt;}
.y10d{bottom:359.018667pt;}
.y186{bottom:360.330667pt;}
.y237{bottom:361.602667pt;}
.y201{bottom:361.828000pt;}
.yd6{bottom:361.982667pt;}
.y1c2{bottom:363.090667pt;}
.y1a2{bottom:364.964000pt;}
.y8a{bottom:365.093333pt;}
.ybc{bottom:367.062667pt;}
.y1a{bottom:367.838667pt;}
.ya8{bottom:370.398667pt;}
.y32{bottom:370.596000pt;}
.y6c{bottom:373.096000pt;}
.y168{bottom:373.630667pt;}
.y14a{bottom:380.314667pt;}
.y236{bottom:380.864000pt;}
.y200{bottom:381.089333pt;}
.yd5{bottom:381.244000pt;}
.y52{bottom:381.298667pt;}
.y1c1{bottom:382.352000pt;}
.y12b{bottom:383.344000pt;}
.yf1{bottom:384.669333pt;}
.ybb{bottom:386.324000pt;}
.y1e0{bottom:386.557333pt;}
.y21b{bottom:386.889333pt;}
.y19{bottom:387.100000pt;}
.y10c{bottom:388.574667pt;}
.y31{bottom:389.857333pt;}
.y6b{bottom:392.357333pt;}
.y1a1{bottom:396.976000pt;}
.y89{bottom:397.638667pt;}
.ya7{bottom:399.954667pt;}
.y51{bottom:400.560000pt;}
.y12a{bottom:402.605333pt;}
.y167{bottom:403.186667pt;}
.y18{bottom:406.361333pt;}
.y185{bottom:406.545333pt;}
.y149{bottom:407.282667pt;}
.y30{bottom:409.118667pt;}
.y1c0{bottom:410.190667pt;}
.yd4{bottom:410.798667pt;}
.y6a{bottom:411.618667pt;}
.y235{bottom:412.542667pt;}
.y1ff{bottom:413.633333pt;}
.yf0{bottom:414.224000pt;}
.yba{bottom:415.880000pt;}
.y21a{bottom:416.445333pt;}
.y50{bottom:419.821333pt;}
.ya6{bottom:423.864000pt;}
.y184{bottom:425.806667pt;}
.y1a0{bottom:427.926667pt;}
.y2f{bottom:428.378667pt;}
.y1bf{bottom:429.452000pt;}
.y10b{bottom:430.141333pt;}
.y88{bottom:430.182667pt;}
.y129{bottom:430.189333pt;}
.y69{bottom:430.880000pt;}
.y234{bottom:431.802667pt;}
.y1df{bottom:432.772000pt;}
.y1fe{bottom:432.894667pt;}
.y17{bottom:438.905333pt;}
.y148{bottom:444.102667pt;}
.y183{bottom:445.068000pt;}
.y2e{bottom:447.640000pt;}
.y1be{bottom:448.712000pt;}
.y166{bottom:449.401333pt;}
.y128{bottom:449.450667pt;}
.y1de{bottom:452.033333pt;}
.y1fd{bottom:452.156000pt;}
.y4f{bottom:452.365333pt;}
.yef{bottom:455.297333pt;}
.yd3{bottom:457.014667pt;}
.yb9{bottom:457.446667pt;}
.y16{bottom:458.166667pt;}
.y19f{bottom:458.876000pt;}
.y68{bottom:460.434667pt;}
.y219{bottom:462.660000pt;}
.y10a{bottom:462.686667pt;}
.y87{bottom:462.728000pt;}
.y233{bottom:463.481333pt;}
.y182{bottom:464.329333pt;}
.y2d{bottom:466.901333pt;}
.y165{bottom:468.662667pt;}
.y127{bottom:468.710667pt;}
.ya5{bottom:469.892000pt;}
.y1dd{bottom:471.294667pt;}
.y4e{bottom:471.626667pt;}
.y147{bottom:475.794511pt;}
.yd2{bottom:476.276000pt;}
.yb8{bottom:476.708000pt;}
.y15{bottom:477.428000pt;}
.y1bd{bottom:479.688000pt;}
.y218{bottom:481.921333pt;}
.y232{bottom:482.742667pt;}
.y1fc{bottom:484.700000pt;}
.y2c{bottom:486.162667pt;}
.yee{bottom:486.885333pt;}
.y164{bottom:487.924000pt;}
.y19e{bottom:490.001333pt;}
.y4d{bottom:490.888000pt;}
.y146{bottom:491.243750pt;}
.y109{bottom:495.230667pt;}
.y86{bottom:495.272000pt;}
.yb7{bottom:495.969333pt;}
.y19d{bottom:496.325333pt;}
.y181{bottom:496.873333pt;}
.y126{bottom:498.266667pt;}
.y1bc{bottom:498.949333pt;}
.y67{bottom:500.130667pt;}
.y217{bottom:501.182667pt;}
.ya4{bottom:502.072000pt;}
.y1dc{bottom:503.838667pt;}
.y1fb{bottom:503.961333pt;}
.y2b{bottom:505.424000pt;}
.y145{bottom:506.694030pt;}
.yd1{bottom:508.820000pt;}
.y14{bottom:509.973333pt;}
.y231{bottom:514.421333pt;}
.yb6{bottom:515.229333pt;}
.y85{bottom:516.216000pt;}
.yed{bottom:516.562667pt;}
.y144{bottom:522.143270pt;}
.y1db{bottom:523.100000pt;}
.y4c{bottom:523.432000pt;}
.y2a{bottom:524.685333pt;}
.y108{bottom:527.776000pt;}
.y125{bottom:527.822667pt;}
.yd0{bottom:528.081333pt;}
.y19c{bottom:528.338667pt;}
.y13{bottom:529.233333pt;}
.y180{bottom:529.418667pt;}
.y1bb{bottom:529.925333pt;}
.y163{bottom:531.560000pt;}
.y230{bottom:533.682667pt;}
.y216{bottom:533.726667pt;}
.ya3{bottom:534.252000pt;}
.y1fa{bottom:536.506667pt;}
.y1da{bottom:542.361333pt;}
.y4b{bottom:542.693333pt;}
.yb5{bottom:544.785333pt;}
.yec{bottom:546.241333pt;}
.y12{bottom:548.494667pt;}
.y1ba{bottom:549.186667pt;}
.y84{bottom:550.332000pt;}
.y162{bottom:550.821333pt;}
.y215{bottom:552.988000pt;}
.y66{bottom:553.376000pt;}
.y29{bottom:554.240000pt;}
.y19b{bottom:559.288000pt;}
.y107{bottom:560.320000pt;}
.ycf{bottom:560.626667pt;}
.y143{bottom:561.356000pt;}
.y17f{bottom:561.962667pt;}
.y22f{bottom:565.360000pt;}
.yeb{bottom:565.501333pt;}
.ya2{bottom:565.702667pt;}
.y1f9{bottom:566.062667pt;}
.y83{bottom:569.592000pt;}
.y4a{bottom:572.249333pt;}
.y65{bottom:572.637333pt;}
.y124{bottom:573.184000pt;}
.y1d9{bottom:574.906667pt;}
.y1b9{bottom:577.025333pt;}
.y19a{bottom:578.549333pt;}
.yce{bottom:579.888000pt;}
.y11{bottom:581.040000pt;}
.y161{bottom:581.696164pt;}
.yb4{bottom:584.481333pt;}
.y22e{bottom:584.621333pt;}
.y214{bottom:585.533333pt;}
.y64{bottom:591.897333pt;}
.y123{bottom:592.445333pt;}
.y106{bottom:592.864000pt;}
.y28{bottom:593.936000pt;}
.y1d8{bottom:594.166667pt;}
.y17e{bottom:594.508000pt;}
.y160{bottom:594.584593pt;}
.y1b8{bottom:596.286667pt;}
.yea{bottom:597.090667pt;}
.y199{bottom:597.810667pt;}
.y10{bottom:600.300000pt;}
.y142{bottom:601.962667pt;}
.ya1{bottom:604.632000pt;}
.y213{bottom:604.794667pt;}
.y82{bottom:606.786667pt;}
.y15f{bottom:607.472153pt;}
.y1f8{bottom:612.277333pt;}
.ycd{bottom:612.432000pt;}
.y1d7{bottom:613.428000pt;}
.y1b7{bottom:615.546667pt;}
.y22d{bottom:616.300000pt;}
.y198{bottom:617.072000pt;}
.y49{bottom:618.465333pt;}
.yf{bottom:619.561333pt;}
.y122{bottom:620.029333pt;}
.y15e{bottom:620.359714pt;}
.y17b{bottom:623.984000pt;}
.y63{bottom:624.442667pt;}
.y105{bottom:625.409333pt;}
.y17d{bottom:625.700000pt;}
.ye9{bottom:626.768000pt;}
.y1f7{bottom:631.538667pt;}
.ycc{bottom:631.693333pt;}
.y141{bottom:632.648000pt;}
.y15d{bottom:633.248143pt;}
.y1b6{bottom:634.808000pt;}
.y22c{bottom:635.561333pt;}
.y17c{bottom:635.622667pt;}
.y212{bottom:637.338667pt;}
.y48{bottom:637.726667pt;}
.y17a{bottom:639.474667pt;}
.y62{bottom:643.704000pt;}
.y81{bottom:643.980000pt;}
.ya0{bottom:644.534667pt;}
.y1d6{bottom:645.973333pt;}
.y197{bottom:646.628000pt;}
.y27{bottom:647.181333pt;}
.y1f6{bottom:650.800000pt;}
.y121{bottom:650.920000pt;}
.ycb{bottom:650.954667pt;}
.y140{bottom:651.909333pt;}
.ye{bottom:652.106667pt;}
.y1b5{bottom:654.069333pt;}
.ye8{bottom:656.445333pt;}
.y211{bottom:656.600000pt;}
.yb3{bottom:656.986667pt;}
.y104{bottom:657.953333pt;}
.y9f{bottom:663.796000pt;}
.y1d5{bottom:665.233333pt;}
.y1f5{bottom:670.061333pt;}
.y47{bottom:670.270667pt;}
.y22b{bottom:670.608000pt;}
.y15c{bottom:671.265333pt;}
.yd{bottom:671.368000pt;}
.ye7{bottom:675.706667pt;}
.y61{bottom:676.248000pt;}
.y80{bottom:676.525333pt;}
.yca{bottom:680.510667pt;}
.y179{bottom:680.665333pt;}
.y120{bottom:681.810667pt;}
.y26{bottom:682.049333pt;}
.y13f{bottom:682.594667pt;}
.y1b4{bottom:683.625333pt;}
.y1d4{bottom:684.494667pt;}
.y210{bottom:686.156000pt;}
.y1f4{bottom:689.322667pt;}
.y46{bottom:689.532000pt;}
.y103{bottom:690.498667pt;}
.yc{bottom:690.628000pt;}
.y196{bottom:692.568000pt;}
.y9e{bottom:693.350667pt;}
.y60{bottom:695.509333pt;}
.y178{bottom:699.926667pt;}
.y13e{bottom:701.856000pt;}
.ye6{bottom:705.384000pt;}
.y1b3{bottom:707.536000pt;}
.y1f3{bottom:708.582667pt;}
.y45{bottom:708.793333pt;}
.y7f{bottom:709.069333pt;}
.y11f{bottom:709.394667pt;}
.yb{bottom:709.889333pt;}
.y195{bottom:711.829333pt;}
.y25{bottom:716.918667pt;}
.y1d3{bottom:717.040000pt;}
.y15b{bottom:717.480000pt;}
.y177{bottom:719.186667pt;}
.y102{bottom:720.054667pt;}
.yc9{bottom:722.076000pt;}
.y22a{bottom:723.405333pt;}
.y1f2{bottom:727.844000pt;}
.y5f{bottom:728.053333pt;}
.y11e{bottom:728.656000pt;}
.y13d{bottom:728.825333pt;}
.ya{bottom:729.150667pt;}
.y20f{bottom:732.370667pt;}
.ye5{bottom:735.061333pt;}
.y24{bottom:736.180000pt;}
.y1d2{bottom:736.301333pt;}
.y176{bottom:738.448000pt;}
.y9d{bottom:739.378667pt;}
.y44{bottom:741.337333pt;}
.y7e{bottom:741.614667pt;}
.y229{bottom:742.665333pt;}
.y194{bottom:742.778667pt;}
.y11d{bottom:747.916000pt;}
.y13c{bottom:748.086667pt;}
.y9{bottom:748.412000pt;}
.y15a{bottom:750.025333pt;}
.y20e{bottom:751.632000pt;}
.y1b2{bottom:752.940000pt;}
.y1d1{bottom:755.561333pt;}
.y175{bottom:757.709333pt;}
.y9c{bottom:758.640000pt;}
.y43{bottom:760.598667pt;}
.y228{bottom:761.926667pt;}
.y1f1{bottom:762.890667pt;}
.ye4{bottom:764.738667pt;}
.y13b{bottom:767.346667pt;}
.y8{bottom:767.673333pt;}
.y20d{bottom:770.893333pt;}
.y23{bottom:771.049333pt;}
.y1b1{bottom:772.201333pt;}
.yc8{bottom:773.882667pt;}
.y193{bottom:774.792000pt;}
.y7d{bottom:776.816000pt;}
.y9b{bottom:777.901333pt;}
.y5e{bottom:779.860000pt;}
.y227{bottom:781.188000pt;}
.y159{bottom:782.569333pt;}
.y101{bottom:782.896000pt;}
.y11c{bottom:782.962667pt;}
.y1d0{bottom:785.117333pt;}
.y7{bottom:786.934667pt;}
.y174{bottom:787.265333pt;}
.y1b0{bottom:791.462667pt;}
.y42{bottom:793.142667pt;}
.ye3{bottom:794.294667pt;}
.y13a{bottom:796.902667pt;}
.y9a{bottom:797.161333pt;}
.y226{bottom:800.449333pt;}
.y1f0{bottom:802.409333pt;}
.y20c{bottom:803.437333pt;}
.y192{bottom:805.741333pt;}
.y22{bottom:805.918667pt;}
.y6{bottom:806.194667pt;}
.y1cf{bottom:809.028000pt;}
.y7c{bottom:812.017333pt;}
.y41{bottom:812.404000pt;}
.y100{bottom:813.656934pt;}
.y99{bottom:816.422667pt;}
.y225{bottom:819.710667pt;}
.y11b{bottom:822.481333pt;}
.y20b{bottom:822.698667pt;}
.y158{bottom:823.106667pt;}
.y5{bottom:825.456000pt;}
.yc7{bottom:825.688000pt;}
.y191{bottom:825.888000pt;}
.yff{bottom:826.185468pt;}
.y139{bottom:826.458667pt;}
.y7b{bottom:831.277333pt;}
.y5d{bottom:831.665333pt;}
.y173{bottom:833.481333pt;}
.ye2{bottom:835.366667pt;}
.y1af{bottom:836.610667pt;}
.y190{bottom:836.821333pt;}
.yfe{bottom:838.714002pt;}
.y224{bottom:838.972000pt;}
.y21{bottom:840.786667pt;}
.y242{bottom:841.960000pt;}
.y97{bottom:844.370667pt;}
.y98{bottom:844.874667pt;}
.y40{bottom:844.949333pt;}
.y138{bottom:850.369333pt;}
.y1ef{bottom:850.694667pt;}
.yfd{bottom:851.243380pt;}
.y172{bottom:852.741333pt;}
.y157{bottom:854.916336pt;}
.y1ce{bottom:855.244000pt;}
.y96{bottom:855.809333pt;}
.yc6{bottom:858.232000pt;}
.y7a{bottom:860.833333pt;}
.y241{bottom:861.221333pt;}
.y3f{bottom:864.210667pt;}
.ye1{bottom:866.956000pt;}
.y11a{bottom:867.460000pt;}
.y1ae{bottom:869.600248pt;}
.y156{bottom:870.737741pt;}
.y171{bottom:872.002667pt;}
.y1cd{bottom:874.505333pt;}
.y20{bottom:875.656000pt;}
.yc5{bottom:877.493333pt;}
.y4{bottom:877.593333pt;}
.y1ee{bottom:882.791345pt;}
.y5c{bottom:883.470667pt;}
.ye0{bottom:886.217333pt;}
.y155{bottom:886.558080pt;}
.y1ad{bottom:889.123204pt;}
.y170{bottom:891.264000pt;}
.yfc{bottom:892.105333pt;}
.y1cc{bottom:893.765333pt;}
.y137{bottom:895.624000pt;}
.y3e{bottom:896.754667pt;}
.y3{bottom:896.854667pt;}
.y119{bottom:898.492735pt;}
.y1ed{bottom:899.511429pt;}
.y154{bottom:902.378420pt;}
.y79{bottom:907.049333pt;}
.y1ac{bottom:908.644845pt;}
.y1f{bottom:910.525333pt;}
.y118{bottom:911.878570pt;}
.y240{bottom:913.026667pt;}
.y136{bottom:914.885333pt;}
.ydf{bottom:915.894667pt;}
.y3d{bottom:916.016000pt;}
.y1ec{bottom:916.232639pt;}
.yfb{bottom:921.661333pt;}
.y2{bottom:924.086667pt;}
.y117{bottom:925.263504pt;}
.y78{bottom:926.310667pt;}
.y1ab{bottom:928.166487pt;}
.y1eb{bottom:932.952722pt;}
.y116{bottom:938.648438pt;}
.y1{bottom:945.572000pt;}
.y1aa{bottom:947.689443pt;}
.y1ea{bottom:949.672806pt;}
.y115{bottom:952.034273pt;}
.h1b{height:23.910400pt;}
.hf{height:30.271045pt;}
.h19{height:31.138514pt;}
.hc{height:31.880400pt;}
.h11{height:32.340251pt;}
.h13{height:33.096776pt;}
.h10{height:34.387907pt;}
.h1a{height:35.373352pt;}
.h12{height:36.738525pt;}
.h15{height:37.327960pt;}
.h14{height:37.597937pt;}
.h20{height:38.049067pt;}
.h17{height:38.224600pt;}
.h23{height:40.398534pt;}
.h16{height:42.404563pt;}
.h18{height:43.423146pt;}
.h1c{height:44.887791pt;}
.h24{height:45.892734pt;}
.h21{height:47.167568pt;}
.h3{height:47.820800pt;}
.h22{height:53.582357pt;}
.h2{height:54.324429pt;}
.h1f{height:55.034402pt;}
.h4{height:57.384800pt;}
.h5{height:63.762688pt;}
.h1{height:68.861600pt;}
.he{height:79.698688pt;}
.h7{height:79.704021pt;}
.hd{height:88.023791pt;}
.hb{height:88.079735pt;}
.h1e{height:88.621124pt;}
.ha{height:88.626458pt;}
.h1d{height:90.956800pt;}
.h9{height:97.460429pt;}
.h6{height:98.057762pt;}
.h8{height:101.688021pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:94.488000pt;}
.x17{left:99.869429pt;}
.x1b{left:101.123971pt;}
.x25{left:102.873205pt;}
.x27{left:105.760000pt;}
.x7{left:113.564000pt;}
.x1a{left:116.136000pt;}
.x5{left:117.900000pt;}
.x1{left:123.104000pt;}
.x8{left:133.508000pt;}
.x1c{left:141.012000pt;}
.x19{left:168.730667pt;}
.x2{left:174.596000pt;}
.x26{left:210.872000pt;}
.x15{left:231.918667pt;}
.xa{left:275.548000pt;}
.x1d{left:298.046667pt;}
.xd{left:301.204000pt;}
.xb{left:308.065333pt;}
.x11{left:319.252000pt;}
.x24{left:322.157333pt;}
.x22{left:337.433333pt;}
.x4{left:350.446667pt;}
.xf{left:353.482667pt;}
.xc{left:354.373333pt;}
.x3{left:356.192000pt;}
.x12{left:375.929333pt;}
.x13{left:389.232000pt;}
.x18{left:400.196000pt;}
.x9{left:404.097333pt;}
.x10{left:406.524000pt;}
.x23{left:415.664000pt;}
.x1e{left:421.794667pt;}
.x14{left:454.706667pt;}
.xe{left:464.920000pt;}
.x1f{left:466.433333pt;}
.x20{left:480.888000pt;}
.x21{left:513.617333pt;}
.x16{left:526.102667pt;}
}




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