
    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_834c6a5d41abeb10cf9ba7c1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.997000;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_5c633183dc92a8063bc29d19.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_45dbef2fc499cdd39473a5ec.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c1dc0ad1f882f426bf6301ef.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.901000;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_c11db11ec99c1e156b1053ac.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e131d2581ab1ac3bb4316a4f.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_7569b00f5e3c7a1fbea026cb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.681000;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_3dc13f4a3929fd0d644c771c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.920000;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_dba7096f244ea7b9fd7ea4cd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.805000;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_0128ecbcfc53d56fda250479.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.725000;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_f61238ee55b5553cd451fa94.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_465c120b1169c401187af6d7.woff2')format("woff");}.ffc{font-family:ffc;line-height:2.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_87dc2f93989e258e3293f728.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.525000;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_53125fd2b23993a89c4aeb92.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.525000;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_66b880f8bd8ecba1109dc189.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_3b35ad888935c3b098214757.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_cbc0dc0e3d25c21cc404b4a3.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.705000;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_bbe024f435abe282a743ba11.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.725000;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;}
.ff13{font-family:sans-serif;visibility:hidden;}
.ff14{font-family:sans-serif;visibility:hidden;}
.ff15{font-family:sans-serif;visibility:hidden;}
.ff16{font-family:sans-serif;visibility:hidden;}
.ff17{font-family:sans-serif;visibility:hidden;}
.ff18{font-family:sans-serif;visibility:hidden;}
.ff19{font-family:sans-serif;visibility:hidden;}
.ff1a{font-family:sans-serif;visibility:hidden;}
.ff1b{font-family:sans-serif;visibility:hidden;}
.ff1c{font-family:sans-serif;visibility:hidden;}
.ff1d{font-family:sans-serif;visibility:hidden;}
.ff1e{font-family:sans-serif;visibility:hidden;}
.ff1f{font-family:sans-serif;visibility:hidden;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v5{vertical-align:-72.660000px;}
.vc{vertical-align:-67.338000px;}
.v12{vertical-align:-22.854000px;}
.v11{vertical-align:-9.816000px;}
.v13{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:13.614000px;}
.v3{vertical-align:20.604000px;}
.v1{vertical-align:23.754000px;}
.v2{vertical-align:34.500000px;}
.vf{vertical-align:45.216000px;}
.va{vertical-align:48.162000px;}
.v10{vertical-align:52.962000px;}
.v7{vertical-align:55.632000px;}
.v9{vertical-align:77.478000px;}
.v8{vertical-align:93.792000px;}
.vd{vertical-align:100.230000px;}
.vb{vertical-align:111.924000px;}
.v6{vertical-align:114.618000px;}
.v4{vertical-align:152.778000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000141px;}
.ls5d{letter-spacing:0.000273px;}
.lse{letter-spacing:0.000479px;}
.ls4b{letter-spacing:0.001593px;}
.ls3c{letter-spacing:0.002149px;}
.ls20{letter-spacing:0.002706px;}
.ls2f{letter-spacing:0.002712px;}
.ls12{letter-spacing:0.003056px;}
.lsb{letter-spacing:0.003169px;}
.ls1d{letter-spacing:0.003791px;}
.ls48{letter-spacing:0.004332px;}
.ls39{letter-spacing:0.004528px;}
.ls13{letter-spacing:1.277644px;}
.ls37{letter-spacing:2.062335px;}
.ls51{letter-spacing:2.618875px;}
.ls42{letter-spacing:2.986528px;}
.ls1c{letter-spacing:2.988103px;}
.ls17{letter-spacing:2.990915px;}
.ls3{letter-spacing:2.992528px;}
.ls22{letter-spacing:2.994103px;}
.lsd{letter-spacing:3.638154px;}
.ls53{letter-spacing:4.957991px;}
.ls11{letter-spacing:5.092888px;}
.ls1{letter-spacing:5.311591px;}
.ls7{letter-spacing:5.317591px;}
.ls28{letter-spacing:5.609412px;}
.ls21{letter-spacing:7.134493px;}
.ls1b{letter-spacing:7.137229px;}
.ls2c{letter-spacing:7.140493px;}
.ls24{letter-spacing:9.088332px;}
.ls1f{letter-spacing:9.092147px;}
.ls27{letter-spacing:12.747229px;}
.ls3a{letter-spacing:14.542332px;}
.ls15{letter-spacing:14.543412px;}
.lsa{letter-spacing:14.548332px;}
.ls5f{letter-spacing:16.103055px;}
.ls5e{letter-spacing:16.458644px;}
.ls30{letter-spacing:16.502700px;}
.ls60{letter-spacing:16.654699px;}
.ls5c{letter-spacing:18.035656px;}
.ls1a{letter-spacing:18.179412px;}
.ls63{letter-spacing:18.370349px;}
.ls3f{letter-spacing:20.269739px;}
.ls3d{letter-spacing:20.611289px;}
.ls1e{letter-spacing:21.168103px;}
.ls23{letter-spacing:21.174103px;}
.ls4a{letter-spacing:21.317972px;}
.ls57{letter-spacing:21.413468px;}
.ls2d{letter-spacing:21.426103px;}
.ls5a{letter-spacing:21.699255px;}
.ls43{letter-spacing:21.700349px;}
.ls59{letter-spacing:21.701412px;}
.ls50{letter-spacing:21.828933px;}
.ls6a{letter-spacing:21.844349px;}
.ls66{letter-spacing:22.078349px;}
.ls64{letter-spacing:22.102349px;}
.ls68{letter-spacing:22.132349px;}
.ls40{letter-spacing:22.702528px;}
.ls65{letter-spacing:22.726349px;}
.ls5{letter-spacing:22.995255px;}
.ls67{letter-spacing:23.050349px;}
.ls58{letter-spacing:23.314500px;}
.ls6b{letter-spacing:23.722349px;}
.ls38{letter-spacing:24.240103px;}
.ls29{letter-spacing:24.393229px;}
.ls2a{letter-spacing:24.396493px;}
.ls61{letter-spacing:24.688528px;}
.ls5b{letter-spacing:24.772528px;}
.ls19{letter-spacing:25.317229px;}
.ls26{letter-spacing:26.134335px;}
.ls4d{letter-spacing:26.485093px;}
.ls4e{letter-spacing:26.786949px;}
.ls6{letter-spacing:26.913255px;}
.ls4c{letter-spacing:26.974328px;}
.ls3e{letter-spacing:27.020022px;}
.ls31{letter-spacing:27.268332px;}
.ls2e{letter-spacing:27.278147px;}
.ls69{letter-spacing:27.724349px;}
.ls46{letter-spacing:28.417591px;}
.ls2b{letter-spacing:28.530103px;}
.ls47{letter-spacing:28.768328px;}
.ls34{letter-spacing:28.833229px;}
.ls4f{letter-spacing:30.625374px;}
.ls8{letter-spacing:30.658528px;}
.ls49{letter-spacing:31.364044px;}
.ls0{letter-spacing:32.723973px;}
.ls45{letter-spacing:36.958328px;}
.ls9{letter-spacing:36.964328px;}
.ls44{letter-spacing:40.264328px;}
.lsf{letter-spacing:45.083644px;}
.lsc{letter-spacing:46.186328px;}
.ls3b{letter-spacing:46.192328px;}
.ls18{letter-spacing:47.270712px;}
.ls14{letter-spacing:59.639644px;}
.ls10{letter-spacing:62.015644px;}
.ls16{letter-spacing:62.033644px;}
.ls41{letter-spacing:62.206328px;}
.ls54{letter-spacing:65.426381px;}
.ls32{letter-spacing:66.101644px;}
.ls62{letter-spacing:67.888328px;}
.ls52{letter-spacing:80.162717px;}
.ls33{letter-spacing:98.603950px;}
.ls35{letter-spacing:122.435412px;}
.ls56{letter-spacing:136.660757px;}
.ls55{letter-spacing:207.895132px;}
.ls25{letter-spacing:218.024712px;}
.ls36{letter-spacing:1434.956712px;}
.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;}
}
.ws17{word-spacing:-65.454600px;}
.ws4{word-spacing:-47.333852px;}
.ws38{word-spacing:-42.637126px;}
.ws67{word-spacing:-37.333494px;}
.wsa9{word-spacing:-33.192028px;}
.ws1f{word-spacing:-32.544027px;}
.ws6e{word-spacing:-28.495876px;}
.ws6b{word-spacing:-27.762273px;}
.ws32{word-spacing:-18.183288px;}
.ws8b{word-spacing:-18.035656px;}
.ws7{word-spacing:-17.358560px;}
.ws37{word-spacing:-17.304143px;}
.ws5{word-spacing:-17.293105px;}
.ws76{word-spacing:-17.227651px;}
.ws10{word-spacing:-16.769469px;}
.ws95{word-spacing:-16.654699px;}
.ws8f{word-spacing:-16.458644px;}
.ws2d{word-spacing:-16.311286px;}
.ws77{word-spacing:-16.180377px;}
.ws92{word-spacing:-16.103055px;}
.ws40{word-spacing:-16.049468px;}
.ws41{word-spacing:-16.046296px;}
.ws87{word-spacing:-15.984013px;}
.ws3{word-spacing:-15.743520px;}
.wsc0{word-spacing:-15.722195px;}
.wsa5{word-spacing:-15.591286px;}
.ws86{word-spacing:-15.394922px;}
.ws3a{word-spacing:-15.329467px;}
.ws3c{word-spacing:-15.284296px;}
.ws3b{word-spacing:-15.269617px;}
.ws58{word-spacing:-15.264013px;}
.ws13{word-spacing:-15.198558px;}
.wse{word-spacing:-15.133104px;}
.ws55{word-spacing:-14.936740px;}
.ws29{word-spacing:-14.805831px;}
.ws28{word-spacing:-14.740376px;}
.ws7e{word-spacing:-14.674921px;}
.ws12{word-spacing:-14.609467px;}
.ws52{word-spacing:-14.544012px;}
.ws11{word-spacing:-14.216739px;}
.wsaa{word-spacing:-14.151285px;}
.ws3f{word-spacing:-14.120296px;}
.ws33{word-spacing:-14.085830px;}
.wsb9{word-spacing:-13.627648px;}
.wsd{word-spacing:-13.431284px;}
.ws4c{word-spacing:-13.365829px;}
.ws7a{word-spacing:-13.234920px;}
.ws9a{word-spacing:-13.169466px;}
.ws79{word-spacing:-13.104011px;}
.ws2a{word-spacing:-13.038556px;}
.wsa8{word-spacing:-13.032011px;}
.ws53{word-spacing:-12.973102px;}
.wsf{word-spacing:-12.907647px;}
.ws5a{word-spacing:-12.842193px;}
.wsa1{word-spacing:-12.711283px;}
.ws78{word-spacing:-12.645829px;}
.ws23{word-spacing:-12.580374px;}
.ws4f{word-spacing:-12.514920px;}
.ws60{word-spacing:-12.318556px;}
.wsb{word-spacing:-12.253101px;}
.ws7d{word-spacing:-11.991283px;}
.ws19{word-spacing:-11.794919px;}
.ws2c{word-spacing:-11.729464px;}
.ws14{word-spacing:-11.402191px;}
.ws49{word-spacing:-11.336737px;}
.ws48{word-spacing:-11.305257px;}
.ws16{word-spacing:-11.271282px;}
.ws62{word-spacing:-11.250917px;}
.ws63{word-spacing:-11.234296px;}
.ws64{word-spacing:-11.205828px;}
.wsb5{word-spacing:-11.140373px;}
.ws61{word-spacing:-11.138402px;}
.ws1{word-spacing:-10.878555px;}
.ws45{word-spacing:-10.845877px;}
.wsa6{word-spacing:-10.844474px;}
.ws47{word-spacing:-10.844296px;}
.ws5f{word-spacing:-10.815420px;}
.ws2{word-spacing:-10.813100px;}
.ws88{word-spacing:-10.747645px;}
.ws97{word-spacing:-10.682191px;}
.ws5c{word-spacing:-10.621133px;}
.ws5d{word-spacing:-10.616736px;}
.ws31{word-spacing:-10.485827px;}
.wsb6{word-spacing:-10.474478px;}
.wsba{word-spacing:-10.429066px;}
.wsae{word-spacing:-10.420372px;}
.ws5e{word-spacing:-10.354918px;}
.ws99{word-spacing:-10.224009px;}
.ws4b{word-spacing:-10.093099px;}
.ws1a{word-spacing:-10.027645px;}
.ws56{word-spacing:-9.962190px;}
.wsa3{word-spacing:-9.955645px;}
.ws57{word-spacing:-9.896736px;}
.wsb4{word-spacing:-9.831281px;}
.wsc1{word-spacing:-9.824735px;}
.ws59{word-spacing:-9.700372px;}
.ws9e{word-spacing:-9.664877px;}
.ws9f{word-spacing:-9.634917px;}
.wsad{word-spacing:-9.628372px;}
.ws1d{word-spacing:-9.569463px;}
.wsb7{word-spacing:-9.562917px;}
.ws6d{word-spacing:-9.525371px;}
.ws20{word-spacing:-9.504008px;}
.ws8{word-spacing:-9.471921px;}
.ws6c{word-spacing:-9.468058px;}
.wsa{word-spacing:-9.438553px;}
.wsc{word-spacing:-9.373099px;}
.wsb2{word-spacing:-9.242190px;}
.ws4d{word-spacing:-9.045826px;}
.wsb3{word-spacing:-9.039280px;}
.ws2f{word-spacing:-8.980371px;}
.wsa2{word-spacing:-8.908371px;}
.ws15{word-spacing:-8.849462px;}
.wsb8{word-spacing:-8.712007px;}
.ws7c{word-spacing:-8.587644px;}
.ws4e{word-spacing:-8.522189px;}
.ws39{word-spacing:-8.473257px;}
.ws1b{word-spacing:-8.456734px;}
.ws50{word-spacing:-8.260371px;}
.wsaf{word-spacing:-8.194916px;}
.wsc3{word-spacing:-8.122916px;}
.wsab{word-spacing:-8.064007px;}
.ws7b{word-spacing:-7.998552px;}
.ws2e{word-spacing:-7.933098px;}
.ws7f{word-spacing:-7.736734px;}
.ws43{word-spacing:-7.671279px;}
.ws42{word-spacing:-7.605825px;}
.ws44{word-spacing:-7.540370px;}
.wsb0{word-spacing:-7.474915px;}
.ws26{word-spacing:-7.409461px;}
.wsc2{word-spacing:-7.213097px;}
.ws4a{word-spacing:-7.082188px;}
.ws3d{word-spacing:-7.016733px;}
.ws3e{word-spacing:-7.004296px;}
.wsbe{word-spacing:-6.885824px;}
.ws5b{word-spacing:-6.820369px;}
.ws22{word-spacing:-6.689460px;}
.ws25{word-spacing:-6.558551px;}
.wsa4{word-spacing:-6.362187px;}
.ws80{word-spacing:-6.100369px;}
.ws89{word-spacing:-6.034914px;}
.ws51{word-spacing:-5.838550px;}
.ws54{word-spacing:-5.707641px;}
.ws21{word-spacing:-5.642187px;}
.ws9c{word-spacing:-5.445823px;}
.ws9d{word-spacing:-5.380368px;}
.ws9{word-spacing:-5.144437px;}
.wsb1{word-spacing:-5.053095px;}
.ws27{word-spacing:-4.856731px;}
.wsbc{word-spacing:-4.823117px;}
.wsbd{word-spacing:-4.457458px;}
.ws98{word-spacing:-3.940367px;}
.ws30{word-spacing:-3.482185px;}
.wsbf{word-spacing:-3.351276px;}
.ws2b{word-spacing:-3.285821px;}
.wsac{word-spacing:-3.024003px;}
.ws1c{word-spacing:-2.958548px;}
.wsa7{word-spacing:-2.696730px;}
.ws82{word-spacing:-2.173093px;}
.ws24{word-spacing:-1.256728px;}
.wsbb{word-spacing:-0.274909px;}
.wsa0{word-spacing:-0.148723px;}
.ws1e{word-spacing:-0.065455px;}
.ws6a{word-spacing:-0.057313px;}
.ws71{word-spacing:-0.053798px;}
.ws6{word-spacing:-0.047821px;}
.ws46{word-spacing:-0.017548px;}
.ws18{word-spacing:0.000000px;}
.ws34{word-spacing:0.013091px;}
.ws36{word-spacing:3.804958px;}
.ws94{word-spacing:18.129424px;}
.ws91{word-spacing:18.204175px;}
.ws72{word-spacing:18.345254px;}
.ws8e{word-spacing:18.354274px;}
.ws70{word-spacing:18.399053px;}
.ws8a{word-spacing:18.924324px;}
.ws35{word-spacing:33.948151px;}
.ws0{word-spacing:45.062948px;}
.ws83{word-spacing:62.205514px;}
.ws8c{word-spacing:66.873215px;}
.ws9b{word-spacing:75.638466px;}
.ws69{word-spacing:89.525585px;}
.ws68{word-spacing:92.352054px;}
.ws81{word-spacing:107.401995px;}
.ws8d{word-spacing:134.429597px;}
.ws6f{word-spacing:176.798224px;}
.ws90{word-spacing:180.916189px;}
.ws93{word-spacing:184.767650px;}
.ws75{word-spacing:185.275187px;}
.ws96{word-spacing:188.107317px;}
.ws84{word-spacing:205.229640px;}
.ws85{word-spacing:210.589742px;}
.ws73{word-spacing:268.327197px;}
.ws74{word-spacing:290.450811px;}
.ws66{word-spacing:453.751374px;}
.ws65{word-spacing:676.157372px;}
._25{margin-left:-512.725435px;}
._37{margin-left:-440.246559px;}
._27{margin-left:-258.415691px;}
._26{margin-left:-236.301800px;}
._39{margin-left:-221.886044px;}
._38{margin-left:-202.898174px;}
._36{margin-left:-194.272619px;}
._30{margin-left:-18.035656px;}
._33{margin-left:-16.458644px;}
._2{margin-left:-11.154195px;}
._7{margin-left:-7.919102px;}
._6{margin-left:-5.432732px;}
._0{margin-left:-3.718065px;}
._5{margin-left:-1.832729px;}
._4{width:1.832729px;}
._3{width:3.718065px;}
._24{width:4.778186px;}
._3d{width:6.030592px;}
._3a{width:8.515931px;}
._3b{width:9.754510px;}
._3c{width:10.865464px;}
._9{width:16.490630px;}
._c{width:18.458197px;}
._15{width:20.238319px;}
._14{width:25.920022px;}
._b{width:27.478085px;}
._a{width:28.669115px;}
._12{width:29.978207px;}
._d{width:32.072754px;}
._f{width:33.643664px;}
._16{width:35.869121px;}
._17{width:37.178213px;}
._11{width:38.290941px;}
._13{width:40.516397px;}
._8{width:42.091751px;}
._2f{width:43.260151px;}
._19{width:44.378219px;}
._10{width:46.603179px;}
._34{width:49.418223px;}
._18{width:50.727315px;}
._e{width:52.678106px;}
._2b{width:54.838108px;}
._1{width:60.530098px;}
._1b{width:62.056404px;}
._2e{width:71.552857px;}
._21{width:77.085585px;}
._2a{width:117.860970px;}
._2d{width:123.068151px;}
._29{width:128.300777px;}
._32{width:130.071965px;}
._1c{width:146.433954px;}
._28{width:149.218727px;}
._1e{width:160.704817px;}
._1a{width:236.586835px;}
._1d{width:244.381363px;}
._1f{width:441.534503px;}
._2c{width:445.866404px;}
._20{width:455.234794px;}
._31{width:466.971906px;}
._35{width:523.314256px;}
._23{width:553.411453px;}
._22{width:631.756640px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1a{font-size:24.434424px;}
.fs20{font-size:27.997200px;}
.fs1e{font-size:29.997000px;}
.fsd{font-size:32.606448px;}
.fs10{font-size:32.859720px;}
.fs9{font-size:34.333200px;}
.fs17{font-size:34.906320px;}
.fsb{font-size:34.935480px;}
.fs4{font-size:35.865600px;}
.fs13{font-size:37.068480px;}
.fs1b{font-size:37.534320px;}
.fs1f{font-size:39.996000px;}
.fs6{font-size:41.872196px;}
.fs11{font-size:43.812960px;}
.fs8{font-size:45.777600px;}
.fs18{font-size:46.541760px;}
.fsc{font-size:46.580640px;}
.fs3{font-size:47.820600px;}
.fs14{font-size:49.424640px;}
.fs21{font-size:49.995000px;}
.fs1c{font-size:50.045760px;}
.fs7{font-size:53.798400px;}
.fsa{font-size:57.222000px;}
.fs5{font-size:57.312702px;}
.fs19{font-size:58.177200px;}
.fse{font-size:58.225800px;}
.fs15{font-size:61.780800px;}
.fs1d{font-size:62.557200px;}
.fs1{font-size:65.454600px;}
.fs12{font-size:65.719440px;}
.fsf{font-size:69.870960px;}
.fs16{font-size:74.136960px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.yd8{bottom:12.146972px;}
.y1e5{bottom:12.422351px;}
.y7d{bottom:12.691661px;}
.y18f{bottom:12.903521px;}
.y104{bottom:13.051194px;}
.y1b9{bottom:13.874991px;}
.yb0{bottom:14.467474px;}
.y197{bottom:15.107892px;}
.y1ac{bottom:15.471499px;}
.y1e6{bottom:16.248375px;}
.yb1{bottom:18.923385px;}
.y7f{bottom:23.304535px;}
.y103{bottom:27.066555px;}
.yd7{bottom:27.656931px;}
.y1e4{bottom:28.059694px;}
.y18e{bottom:29.379486px;}
.y1b8{bottom:31.591386px;}
.yaf{bottom:32.679230px;}
.y80{bottom:33.859330px;}
.y7c{bottom:37.480410px;}
.y1e7{bottom:40.285034px;}
.y19e{bottom:43.605629px;}
.yd9{bottom:44.437637px;}
.yb2{bottom:46.917258px;}
.ye9{bottom:47.800624px;}
.y1af{bottom:50.949447px;}
.y1b3{bottom:56.037111px;}
.y1b0{bottom:57.027755px;}
.y1b1{bottom:59.399016px;}
.ye8{bottom:59.866302px;}
.y19c{bottom:59.894087px;}
.y190{bottom:61.110075px;}
.y1ad{bottom:61.650199px;}
.y1b2{bottom:62.256459px;}
.y1e8{bottom:64.205055px;}
.y1b4{bottom:65.184244px;}
.yda{bottom:67.609775px;}
.ye7{bottom:71.931981px;}
.y19f{bottom:72.832150px;}
.yb3{bottom:75.770221px;}
.y7e{bottom:79.156567px;}
.y19d{bottom:80.514925px;}
.y194{bottom:82.832923px;}
.y19b{bottom:83.457933px;}
.ye6{bottom:83.997659px;}
.y1ee{bottom:86.285956px;}
.y83{bottom:87.599729px;}
.y1e9{bottom:88.125077px;}
.y196{bottom:89.082427px;}
.y1ae{bottom:90.066845px;}
.ydb{bottom:90.781914px;}
.y1a3{bottom:93.298001px;}
.y191{bottom:93.780515px;}
.ye5{bottom:96.063338px;}
.yfd{bottom:96.490991px;}
.ye2{bottom:97.107318px;}
.y82{bottom:101.064781px;}
.y1a0{bottom:102.058670px;}
.y1ba{bottom:102.680895px;}
.yb9{bottom:103.476214px;}
.yb4{bottom:104.623185px;}
.y19a{bottom:107.021779px;}
.y1c{bottom:108.000000px;}
.ye4{bottom:108.129016px;}
.y1a4{bottom:109.357304px;}
.y1ea{bottom:112.045098px;}
.y1bc{bottom:113.356774px;}
.ydc{bottom:113.954052px;}
.yfc{bottom:113.987507px;}
.y81{bottom:114.529833px;}
.y1a7{bottom:116.898045px;}
.y195{bottom:117.756287px;}
.y1a8{bottom:125.140954px;}
.y192{bottom:126.450955px;}
.y1a9{bottom:127.512214px;}
.y1aa{bottom:130.369658px;}
.y199{bottom:130.585625px;}
.y1a1{bottom:131.285190px;}
.y1a5{bottom:132.026602px;}
.y1ab{bottom:133.297443px;}
.yb5{bottom:133.476148px;}
.y1eb{bottom:135.965120px;}
.ydd{bottom:137.126191px;}
.y93{bottom:148.147500px;}
.y7b{bottom:149.750163px;}
.y1b{bottom:150.519000px;}
.y45{bottom:150.520500px;}
.y198{bottom:154.149471px;}
.y1a6{bottom:154.695900px;}
.y193{bottom:159.121395px;}
.y1ec{bottom:159.885141px;}
.yde{bottom:160.298329px;}
.y1a2{bottom:160.511710px;}
.y90{bottom:161.541000px;}
.yb6{bottom:162.329111px;}
.yfe{bottom:166.402052px;}
.y92{bottom:168.472500px;}
.y1a{bottom:170.844000px;}
.y100{bottom:171.492840px;}
.y1bb{bottom:172.421294px;}
.y8f{bottom:181.864500px;}
.y215{bottom:183.021000px;}
.ydf{bottom:183.470468px;}
.y1ed{bottom:183.805163px;}
.ybd{bottom:186.861000px;}
.y91{bottom:188.796000px;}
.y19{bottom:191.167500px;}
.yb7{bottom:191.182075px;}
.y168{bottom:199.953250px;}
.y170{bottom:202.157620px;}
.y185{bottom:202.521228px;}
.y214{bottom:203.344500px;}
.ye0{bottom:206.642606px;}
.ybc{bottom:207.184500px;}
.ye3{bottom:211.486527px;}
.y18{bottom:211.491000px;}
.y1ef{bottom:211.913545px;}
.yff{bottom:213.036063px;}
.y167{bottom:216.429215px;}
.yb8{bottom:220.035038px;}
.y7a{bottom:220.343759px;}
.y213{bottom:223.668000px;}
.y1bd{bottom:225.794532px;}
.ye1{bottom:229.814745px;}
.y177{bottom:230.655358px;}
.y17{bottom:231.814500px;}
.y175{bottom:235.768070px;}
.y188{bottom:237.999175px;}
.y1d9{bottom:242.054558px;}
.y94{bottom:242.452500px;}
.y18c{bottom:243.086839px;}
.yec{bottom:243.202500px;}
.y212{bottom:243.991500px;}
.y189{bottom:244.077484px;}
.y1da{bottom:245.880582px;}
.y18a{bottom:246.448744px;}
.y169{bottom:247.940449px;}
.y18b{bottom:249.306188px;}
.y186{bottom:249.487134px;}
.ybb{bottom:249.695105px;}
.yba{bottom:250.502533px;}
.y16{bottom:252.138000px;}
.y18d{bottom:252.233972px;}
.y1d8{bottom:257.691901px;}
.y102{bottom:258.450360px;}
.y101{bottom:259.307086px;}
.y178{bottom:259.881878px;}
.y174{bottom:260.555956px;}
.yeb{bottom:263.526000px;}
.y211{bottom:264.316500px;}
.ycc{bottom:265.693941px;}
.y176{bottom:267.564654px;}
.y16d{bottom:269.882652px;}
.y1db{bottom:269.917240px;}
.y15{bottom:272.463000px;}
.y16f{bottom:276.223057px;}
.y110{bottom:276.760500px;}
.y187{bottom:277.219253px;}
.y16a{bottom:280.163004px;}
.y17c{bottom:280.347730px;}
.ycb{bottom:281.203900px;}
.yea{bottom:283.849500px;}
.y210{bottom:284.640000px;}
.y173{bottom:285.343843px;}
.y43{bottom:288.085500px;}
.y179{bottom:289.108398px;}
.y79{bottom:290.937355px;}
.ya3{bottom:291.455922px;}
.y14{bottom:292.786500px;}
.y1dc{bottom:293.837262px;}
.ya4{bottom:295.911834px;}
.y17d{bottom:296.407382px;}
.y10f{bottom:297.084000px;}
.yf6{bottom:297.949920px;}
.ycd{bottom:297.984606px;}
.y44{bottom:302.832000px;}
.y180{bottom:303.947773px;}
.y16e{bottom:304.806016px;}
.y20f{bottom:304.963500px;}
.y117{bottom:305.089500px;}
.y40{bottom:308.115000px;}
.ya2{bottom:309.667679px;}
.y172{bottom:310.131730px;}
.y181{bottom:312.190682px;}
.y16b{bottom:312.385560px;}
.y13{bottom:313.110000px;}
.y182{bottom:314.561943px;}
.yf5{bottom:315.446436px;}
.y1e2{bottom:315.918163px;}
.y10e{bottom:317.407500px;}
.y183{bottom:317.419387px;}
.y1dd{bottom:317.757284px;}
.y17a{bottom:318.334918px;}
.y17e{bottom:319.076518px;}
.ybe{bottom:319.117500px;}
.y184{bottom:320.347171px;}
.yce{bottom:323.295153px;}
.y42{bottom:323.661000px;}
.ya5{bottom:323.905706px;}
.y20e{bottom:325.287000px;}
.y106{bottom:327.624000px;}
.y41{bottom:328.570500px;}
.y12{bottom:333.433500px;}
.y108{bottom:334.068000px;}
.y171{bottom:334.919616px;}
.y10d{bottom:337.732500px;}
.y1de{bottom:341.677305px;}
.y17f{bottom:341.745653px;}
.y16c{bottom:344.608116px;}
.y20d{bottom:345.610500px;}
.y17b{bottom:347.561438px;}
.y105{bottom:347.947500px;}
.ycf{bottom:348.605701px;}
.yd5{bottom:350.654287px;}
.ya6{bottom:352.758670px;}
.y11{bottom:353.757000px;}
.y107{bottom:354.391500px;}
.y3f{bottom:356.625000px;}
.y10c{bottom:358.056000px;}
.y116{bottom:359.535000px;}
.y78{bottom:361.530951px;}
.y3e{bottom:361.908000px;}
.y1df{bottom:365.597327px;}
.y20c{bottom:365.934000px;}
.yf7{bottom:367.860981px;}
.y67{bottom:368.904000px;}
.yf9{bottom:372.951769px;}
.yd0{bottom:373.916249px;}
.y66{bottom:374.055000px;}
.y10{bottom:374.082000px;}
.y10b{bottom:378.379500px;}
.y115{bottom:379.860000px;}
.yac{bottom:380.464663px;}
.y3d{bottom:380.994000px;}
.ya7{bottom:381.611633px;}
.yed{bottom:383.215500px;}
.y20b{bottom:386.259000px;}
.y3c{bottom:386.278500px;}
.y140{bottom:387.002978px;}
.y149{bottom:389.207349px;}
.y1e0{bottom:389.517348px;}
.y15e{bottom:389.570956px;}
.yf{bottom:394.405500px;}
.y65{bottom:397.231500px;}
.y10a{bottom:398.703000px;}
.yd1{bottom:399.226797px;}
.y114{bottom:400.183500px;}
.y13f{bottom:403.478943px;}
.y20a{bottom:406.582500px;}
.y3b{bottom:409.455000px;}
.ya8{bottom:410.464597px;}
.y1e1{bottom:413.437370px;}
.yf8{bottom:414.494992px;}
.ye{bottom:414.729000px;}
.y64{bottom:417.555000px;}
.y150{bottom:417.705087px;}
.y109{bottom:419.026500px;}
.y113{bottom:420.507000px;}
.y14e{bottom:421.950250px;}
.yd2{bottom:424.537344px;}
.y161{bottom:425.048904px;}
.y209{bottom:426.906000px;}
.y141{bottom:429.012012px;}
.y165{bottom:430.136568px;}
.y3a{bottom:430.206000px;}
.y162{bottom:431.127212px;}
.y77{bottom:432.124547px;}
.y63{bottom:432.727500px;}
.y163{bottom:433.498473px;}
.yd{bottom:435.646500px;}
.y164{bottom:436.355916px;}
.y15f{bottom:436.509116px;}
.y62{bottom:437.878500px;}
.y166{bottom:439.283701px;}
.ya9{bottom:439.317560px;}
.y112{bottom:440.830500px;}
.y1e3{bottom:441.545752px;}
.y151{bottom:446.931607px;}
.y208{bottom:447.229500px;}
.y14d{bottom:448.334539px;}
.yd3{bottom:449.847892px;}
.y39{bottom:450.531000px;}
.y142{bottom:452.134241px;}
.y14f{bottom:454.614382px;}
.yc{bottom:455.970000px;}
.y146{bottom:456.932380px;}
.yfb{bottom:459.909289px;}
.y61{bottom:460.146000px;}
.yfa{bottom:460.766015px;}
.y111{bottom:461.154000px;}
.y148{bottom:463.284149px;}
.yd6{bottom:465.033496px;}
.y160{bottom:465.527010px;}
.y155{bottom:467.397459px;}
.y207{bottom:467.553000px;}
.yaa{bottom:468.170523px;}
.y38{bottom:470.854500px;}
.y1cd{bottom:471.686765px;}
.y14c{bottom:474.718829px;}
.yd4{bottom:475.158440px;}
.y143{bottom:475.256470px;}
.y1ce{bottom:475.512789px;}
.y152{bottom:476.158127px;}
.yb{bottom:476.293500px;}
.y60{bottom:480.469500px;}
.y156{bottom:483.503717px;}
.y1cc{bottom:487.324108px;}
.y206{bottom:487.878000px;}
.y159{bottom:490.997502px;}
.y37{bottom:491.178000px;}
.y147{bottom:491.855744px;}
.yab{bottom:497.023487px;}
.y144{bottom:498.378699px;}
.y15a{bottom:499.240411px;}
.yef{bottom:499.408849px;}
.y1cf{bottom:499.549447px;}
.y5f{bottom:500.793000px;}
.y14b{bottom:501.103119px;}
.y15b{bottom:501.611672px;}
.y76{bottom:502.718143px;}
.y15c{bottom:504.469115px;}
.y153{bottom:505.384647px;}
.y157{bottom:506.690401px;}
.y15d{bottom:507.396900px;}
.y205{bottom:508.201500px;}
.y36{bottom:511.501500px;}
.ya{bottom:513.972000px;}
.yee{bottom:516.905365px;}
.yc0{bottom:519.240909px;}
.y5e{bottom:521.118000px;}
.y145{bottom:521.500928px;}
.y1d0{bottom:523.469469px;}
.yae{bottom:526.683553px;}
.y14a{bottom:527.487409px;}
.yad{bottom:527.490981px;}
.y204{bottom:528.525000px;}
.y158{bottom:529.877084px;}
.y35{bottom:531.825000px;}
.y154{bottom:534.611167px;}
.ybf{bottom:534.750868px;}
.y9{bottom:540.871500px;}
.y5d{bottom:541.441500px;}
.y1d6{bottom:545.550369px;}
.y1d1{bottom:547.389490px;}
.y203{bottom:548.848500px;}
.yc1{bottom:551.531574px;}
.y34{bottom:552.150000px;}
.y5c{bottom:561.765000px;}
.y96{bottom:568.444371px;}
.y202{bottom:569.172000px;}
.yf0{bottom:569.319910px;}
.y1d2{bottom:571.309512px;}
.y33{bottom:572.473500px;}
.y97{bottom:572.900282px;}
.y75{bottom:573.311739px;}
.y119{bottom:574.052707px;}
.yf2{bottom:574.410698px;}
.yc2{bottom:575.884180px;}
.y121{bottom:576.257077px;}
.y136{bottom:576.620685px;}
.y5b{bottom:582.088500px;}
.y95{bottom:586.656127px;}
.y201{bottom:589.497000px;}
.y118{bottom:590.528672px;}
.y32{bottom:592.797000px;}
.y1d3{bottom:595.229534px;}
.y8{bottom:595.816500px;}
.yc3{bottom:600.236786px;}
.y98{bottom:600.894155px;}
.y5a{bottom:602.412000px;}
.yc9{bottom:604.201256px;}
.y127{bottom:604.754815px;}
.y125{bottom:607.228139px;}
.y200{bottom:609.820500px;}
.y139{bottom:612.098632px;}
.y31{bottom:613.120500px;}
.yf1{bottom:615.953921px;}
.y13d{bottom:617.186297px;}
.y13a{bottom:618.176941px;}
.y1d4{bottom:619.149555px;}
.y13b{bottom:620.548201px;}
.y137{bottom:620.756939px;}
.y59{bottom:622.737000px;}
.y13c{bottom:623.405645px;}
.yc4{bottom:624.589392px;}
.y13e{bottom:626.333430px;}
.y99{bottom:629.747118px;}
.y1ff{bottom:630.144000px;}
.y7{bottom:631.965000px;}
.y30{bottom:633.873000px;}
.y128{bottom:633.981335px;}
.y11a{bottom:640.945972px;}
.y126{bottom:641.664111px;}
.y58{bottom:643.060500px;}
.y1d5{bottom:643.069577px;}
.y74{bottom:643.905335px;}
.y11d{bottom:643.982109px;}
.y124{bottom:645.195211px;}
.yc5{bottom:648.941998px;}
.y11f{bottom:650.333877px;}
.y1fe{bottom:650.467500px;}
.y138{bottom:650.949625px;}
.y2f{bottom:654.196500px;}
.y12c{bottom:654.447187px;}
.y9f{bottom:657.453112px;}
.y9a{bottom:658.600082px;}
.yf4{bottom:661.368218px;}
.yf3{bottom:662.224944px;}
.y129{bottom:663.207855px;}
.y57{bottom:663.384000px;}
.y12d{bottom:668.924337px;}
.y1fd{bottom:670.791000px;}
.y1d7{bottom:671.177959px;}
.y6{bottom:673.191000px;}
.yc6{bottom:673.294603px;}
.y2e{bottom:674.521500px;}
.y130{bottom:678.047230px;}
.y11b{bottom:678.877976px;}
.y11e{bottom:678.905473px;}
.y123{bottom:683.162284px;}
.y56{bottom:683.707500px;}
.y131{bottom:686.290139px;}
.y9b{bottom:687.453045px;}
.y132{bottom:688.661400px;}
.y12e{bottom:689.052795px;}
.y2d{bottom:689.694000px;}
.y1fc{bottom:691.116000px;}
.y133{bottom:691.518844px;}
.y12a{bottom:692.434375px;}
.y134{bottom:694.446628px;}
.y2c{bottom:694.845000px;}
.yc7{bottom:697.647209px;}
.y1c1{bottom:701.318972px;}
.y55{bottom:704.031000px;}
.y1c2{bottom:705.144996px;}
.y12f{bottom:709.181252px;}
.y1fb{bottom:711.439500px;}
.y73{bottom:714.498931px;}
.y9c{bottom:716.306009px;}
.y11c{bottom:716.809981px;}
.y1c0{bottom:716.956314px;}
.yca{bottom:718.580464px;}
.y122{bottom:721.129356px;}
.y12b{bottom:721.660895px;}
.yc8{bottom:721.999815px;}
.y54{bottom:724.356000px;}
.y1c3{bottom:729.181654px;}
.y1fa{bottom:731.763000px;}
.y2b{bottom:735.147000px;}
.y135{bottom:744.333219px;}
.y53{bottom:744.679500px;}
.y9d{bottom:745.158972px;}
.y120{bottom:745.396002px;}
.y1f9{bottom:752.086500px;}
.y1c4{bottom:753.101676px;}
.y5{bottom:753.883500px;}
.y52{bottom:759.852000px;}
.y51{bottom:765.003000px;}
.y1bf{bottom:765.274500px;}
.y1f8{bottom:772.410000px;}
.y9e{bottom:774.011935px;}
.y1ca{bottom:775.182576px;}
.y1c5{bottom:777.021697px;}
.y72{bottom:785.092527px;}
.y1be{bottom:785.598000px;}
.y50{bottom:787.270500px;}
.y2a{bottom:789.147000px;}
.y1f7{bottom:792.735000px;}
.y4{bottom:798.715500px;}
.y1c6{bottom:800.941719px;}
.ya1{bottom:803.672002px;}
.ya0{bottom:804.479430px;}
.y4f{bottom:807.594000px;}
.y29{bottom:809.472000px;}
.y1f6{bottom:813.058500px;}
.y1b7{bottom:820.866000px;}
.y1c7{bottom:824.861740px;}
.y4e{bottom:827.917500px;}
.y28{bottom:829.795500px;}
.y1f5{bottom:833.382000px;}
.y8e{bottom:839.343000px;}
.y3{bottom:843.547500px;}
.y70{bottom:846.544500px;}
.y4d{bottom:848.241000px;}
.y1c8{bottom:848.781762px;}
.y27{bottom:850.119000px;}
.y1f4{bottom:853.705500px;}
.y71{bottom:855.686123px;}
.y8d{bottom:859.668000px;}
.y4c{bottom:868.564500px;}
.y6f{bottom:869.077825px;}
.y26{bottom:870.442500px;}
.y1b6{bottom:871.987500px;}
.y1c9{bottom:872.701784px;}
.y1b5{bottom:877.138500px;}
.y8c{bottom:879.991500px;}
.y2{bottom:888.379500px;}
.y4b{bottom:888.889500px;}
.y25{bottom:890.766000px;}
.y6e{bottom:895.770358px;}
.y8b{bottom:900.315000px;}
.y1cb{bottom:900.810166px;}
.y4a{bottom:909.213000px;}
.y24{bottom:911.091000px;}
.y8a{bottom:920.638500px;}
.y6d{bottom:922.464204px;}
.y23{bottom:931.414500px;}
.y1{bottom:933.211500px;}
.y1f3{bottom:933.805500px;}
.y89{bottom:940.962000px;}
.y49{bottom:948.912000px;}
.y6c{bottom:949.680790px;}
.y22{bottom:951.738000px;}
.y47{bottom:956.868000px;}
.y88{bottom:961.287000px;}
.y46{bottom:962.152500px;}
.y48{bottom:967.933500px;}
.y21{bottom:972.061500px;}
.y87{bottom:981.610500px;}
.y6b{bottom:982.609500px;}
.y20{bottom:992.385000px;}
.y1f2{bottom:999.298500px;}
.y86{bottom:1001.934000px;}
.y6a{bottom:1002.934500px;}
.y1f{bottom:1012.710000px;}
.y1f1{bottom:1019.623500px;}
.y85{bottom:1022.257500px;}
.y69{bottom:1023.258000px;}
.y1e{bottom:1033.033500px;}
.y1f0{bottom:1039.947000px;}
.y84{bottom:1042.581000px;}
.y68{bottom:1043.581500px;}
.y1d{bottom:1053.357000px;}
.y216{bottom:1118.412000px;}
.he{height:2.618184px;}
.h37{height:17.250703px;}
.h40{height:19.766023px;}
.h1c{height:20.048870px;}
.h25{height:23.020152px;}
.h36{height:24.643862px;}
.h3d{height:27.867213px;}
.h3f{height:28.237176px;}
.h29{height:30.526680px;}
.h1f{height:31.895543px;}
.h32{height:32.427971px;}
.h22{height:32.455061px;}
.h34{height:32.858483px;}
.h24{height:32.885932px;}
.h2d{height:34.436618px;}
.h39{height:34.869383px;}
.hd{height:35.865450px;}
.h3e{height:37.156284px;}
.h2a{height:40.702240px;}
.h1e{height:42.527390px;}
.h19{height:43.041839px;}
.h33{height:43.237295px;}
.h23{height:43.273415px;}
.h1b{height:44.200544px;}
.h1a{height:44.205797px;}
.h2e{height:45.915491px;}
.h41{height:46.445355px;}
.h3a{height:46.492511px;}
.hc{height:49.090950px;}
.h3{height:49.156405px;}
.h12{height:50.485715px;}
.h18{height:52.203387px;}
.h20{height:53.159238px;}
.h35{height:54.046619px;}
.h26{height:54.091768px;}
.h2f{height:57.394363px;}
.h3b{height:58.115639px;}
.h6{height:59.613450px;}
.h5{height:59.619450px;}
.h4{height:60.340117px;}
.h2b{height:61.053360px;}
.h27{height:64.910122px;}
.h30{height:68.873236px;}
.h9{height:69.760405px;}
.hb{height:70.288405px;}
.ha{height:70.294405px;}
.h7{height:70.365450px;}
.h16{height:70.371450px;}
.h14{height:71.947715px;}
.h8{height:90.969450px;}
.h17{height:90.975450px;}
.h10{height:91.497450px;}
.h15{height:102.118405px;}
.h2{height:111.393227px;}
.h11{height:113.343450px;}
.h13{height:136.095450px;}
.hf{height:155.396184px;}
.h38{height:248.930922px;}
.h2c{height:686.582507px;}
.h28{height:750.683726px;}
.h31{height:764.708105px;}
.h21{height:827.435407px;}
.h1d{height:919.268360px;}
.h3c{height:919.300504px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:473.838874px;}
.w2{width:532.347004px;}
.w7{width:541.540086px;}
.w8{width:560.834536px;}
.w3{width:653.166107px;}
.w6{width:676.925380px;}
.w5{width:676.927342px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:10.478779px;}
.x4d{left:11.916937px;}
.x23{left:17.508591px;}
.x2d{left:19.328236px;}
.x53{left:21.516474px;}
.x72{left:23.685131px;}
.x45{left:25.945487px;}
.x20{left:27.902431px;}
.x68{left:29.636473px;}
.x2c{left:33.134119px;}
.x2b{left:38.683766px;}
.x66{left:39.875328px;}
.x48{left:43.872034px;}
.x52{left:48.523114px;}
.x61{left:52.568247px;}
.x51{left:58.113262px;}
.x43{left:60.277049px;}
.x6d{left:66.396852px;}
.x22{left:73.309117px;}
.x26{left:77.327930px;}
.x50{left:80.484336px;}
.x49{left:94.540949px;}
.x24{left:97.839785px;}
.x60{left:99.333618px;}
.x67{left:104.446406px;}
.x73{left:106.226853px;}
.x5{left:108.000000px;}
.x9{left:110.127000px;}
.x1{left:119.215500px;}
.x3{left:123.639000px;}
.x2{left:125.539500px;}
.x6{left:132.592500px;}
.x69{left:134.258822px;}
.x4e{left:140.069083px;}
.x6e{left:144.030932px;}
.x6f{left:146.747945px;}
.x70{left:149.157372px;}
.x71{left:152.512056px;}
.x27{left:156.740188px;}
.x83{left:162.000000px;}
.x7e{left:164.410148px;}
.x6b{left:166.039500px;}
.x28{left:167.743099px;}
.x17{left:170.955000px;}
.x6c{left:172.652425px;}
.x29{left:173.713518px;}
.x65{left:175.690500px;}
.x2a{left:177.620492px;}
.x1e{left:180.282000px;}
.x4f{left:181.743032px;}
.x80{left:183.398019px;}
.x3c{left:191.477395px;}
.xe{left:204.996000px;}
.x56{left:206.140823px;}
.x42{left:209.538000px;}
.x3f{left:213.591286px;}
.x57{left:222.854791px;}
.x21{left:225.354421px;}
.x44{left:232.640828px;}
.x55{left:233.751653px;}
.xf{left:239.541000px;}
.x75{left:241.085264px;}
.x54{left:243.545426px;}
.x10{left:245.076000px;}
.x1b{left:246.531000px;}
.x13{left:248.331000px;}
.x14{left:256.803000px;}
.x4a{left:259.741417px;}
.xd{left:266.286000px;}
.x2f{left:280.775725px;}
.x1c{left:287.872500px;}
.x19{left:291.148500px;}
.x11{left:293.175000px;}
.x18{left:300.778500px;}
.x76{left:309.271804px;}
.x16{left:310.396500px;}
.x15{left:318.868500px;}
.x74{left:321.693011px;}
.x77{left:323.845784px;}
.x34{left:327.151665px;}
.x64{left:333.070500px;}
.x12{left:339.534000px;}
.x82{left:351.447000px;}
.x1d{left:355.969500px;}
.x81{left:358.086430px;}
.x30{left:360.187983px;}
.xa{left:368.275500px;}
.x31{left:371.190894px;}
.x2e{left:374.654124px;}
.x6a{left:375.733864px;}
.x32{left:377.161313px;}
.x33{left:381.068287px;}
.x7{left:387.420000px;}
.x3d{left:394.925191px;}
.x46{left:406.389164px;}
.x4{left:409.585500px;}
.x47{left:410.592470px;}
.x79{left:415.773676px;}
.x40{left:417.039082px;}
.x25{left:438.321000px;}
.x8{left:442.389000px;}
.x7d{left:455.515795px;}
.x4b{left:475.610801px;}
.x36{left:484.223520px;}
.x7a{left:493.407755px;}
.x78{left:496.381423px;}
.x7b{left:498.534196px;}
.x7c{left:501.888880px;}
.x7f{left:513.786971px;}
.x5e{left:525.057767px;}
.x4c{left:526.279716px;}
.x59{left:527.603020px;}
.x3b{left:530.508482px;}
.x5f{left:531.986763px;}
.x58{left:533.420740px;}
.x5a{left:542.258798px;}
.xb{left:554.935500px;}
.x37{left:563.635778px;}
.x62{left:572.260490px;}
.x38{left:574.638690px;}
.x35{left:578.101919px;}
.x39{left:580.609108px;}
.x3a{left:584.516082px;}
.x5c{left:587.630196px;}
.x63{left:589.087165px;}
.x5b{left:591.580383px;}
.x1a{left:592.768500px;}
.x3e{left:598.372986px;}
.x5d{left:613.822719px;}
.x41{left:620.486877px;}
.xc{left:625.995000px;}
@media print{
.v5{vertical-align:-64.586667pt;}
.vc{vertical-align:-59.856000pt;}
.v12{vertical-align:-20.314667pt;}
.v11{vertical-align:-8.725333pt;}
.v13{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:12.101333pt;}
.v3{vertical-align:18.314667pt;}
.v1{vertical-align:21.114667pt;}
.v2{vertical-align:30.666667pt;}
.vf{vertical-align:40.192000pt;}
.va{vertical-align:42.810667pt;}
.v10{vertical-align:47.077333pt;}
.v7{vertical-align:49.450667pt;}
.v9{vertical-align:68.869333pt;}
.v8{vertical-align:83.370667pt;}
.vd{vertical-align:89.093333pt;}
.vb{vertical-align:99.488000pt;}
.v6{vertical-align:101.882667pt;}
.v4{vertical-align:135.802667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000125pt;}
.ls5d{letter-spacing:0.000242pt;}
.lse{letter-spacing:0.000426pt;}
.ls4b{letter-spacing:0.001416pt;}
.ls3c{letter-spacing:0.001910pt;}
.ls20{letter-spacing:0.002405pt;}
.ls2f{letter-spacing:0.002411pt;}
.ls12{letter-spacing:0.002717pt;}
.lsb{letter-spacing:0.002817pt;}
.ls1d{letter-spacing:0.003370pt;}
.ls48{letter-spacing:0.003851pt;}
.ls39{letter-spacing:0.004025pt;}
.ls13{letter-spacing:1.135684pt;}
.ls37{letter-spacing:1.833187pt;}
.ls51{letter-spacing:2.327889pt;}
.ls42{letter-spacing:2.654692pt;}
.ls1c{letter-spacing:2.656092pt;}
.ls17{letter-spacing:2.658591pt;}
.ls3{letter-spacing:2.660025pt;}
.ls22{letter-spacing:2.661425pt;}
.lsd{letter-spacing:3.233914pt;}
.ls53{letter-spacing:4.407103pt;}
.ls11{letter-spacing:4.527012pt;}
.ls1{letter-spacing:4.721414pt;}
.ls7{letter-spacing:4.726748pt;}
.ls28{letter-spacing:4.986144pt;}
.ls21{letter-spacing:6.341771pt;}
.ls1b{letter-spacing:6.344203pt;}
.ls2c{letter-spacing:6.347104pt;}
.ls24{letter-spacing:8.078517pt;}
.ls1f{letter-spacing:8.081908pt;}
.ls27{letter-spacing:11.330870pt;}
.ls3a{letter-spacing:12.926517pt;}
.ls15{letter-spacing:12.927477pt;}
.lsa{letter-spacing:12.931851pt;}
.ls5f{letter-spacing:14.313827pt;}
.ls5e{letter-spacing:14.629906pt;}
.ls30{letter-spacing:14.669067pt;}
.ls60{letter-spacing:14.804177pt;}
.ls5c{letter-spacing:16.031695pt;}
.ls1a{letter-spacing:16.159477pt;}
.ls63{letter-spacing:16.329199pt;}
.ls3f{letter-spacing:18.017546pt;}
.ls3d{letter-spacing:18.321146pt;}
.ls1e{letter-spacing:18.816092pt;}
.ls23{letter-spacing:18.821425pt;}
.ls4a{letter-spacing:18.949308pt;}
.ls57{letter-spacing:19.034194pt;}
.ls2d{letter-spacing:19.045425pt;}
.ls5a{letter-spacing:19.288226pt;}
.ls43{letter-spacing:19.289199pt;}
.ls59{letter-spacing:19.290144pt;}
.ls50{letter-spacing:19.403496pt;}
.ls6a{letter-spacing:19.417199pt;}
.ls66{letter-spacing:19.625199pt;}
.ls64{letter-spacing:19.646532pt;}
.ls68{letter-spacing:19.673199pt;}
.ls40{letter-spacing:20.180025pt;}
.ls65{letter-spacing:20.201199pt;}
.ls5{letter-spacing:20.440226pt;}
.ls67{letter-spacing:20.489199pt;}
.ls58{letter-spacing:20.724000pt;}
.ls6b{letter-spacing:21.086532pt;}
.ls38{letter-spacing:21.546758pt;}
.ls29{letter-spacing:21.682870pt;}
.ls2a{letter-spacing:21.685771pt;}
.ls61{letter-spacing:21.945358pt;}
.ls5b{letter-spacing:22.020025pt;}
.ls19{letter-spacing:22.504203pt;}
.ls26{letter-spacing:23.230520pt;}
.ls4d{letter-spacing:23.542305pt;}
.ls4e{letter-spacing:23.810621pt;}
.ls6{letter-spacing:23.922893pt;}
.ls4c{letter-spacing:23.977181pt;}
.ls3e{letter-spacing:24.017798pt;}
.ls31{letter-spacing:24.238517pt;}
.ls2e{letter-spacing:24.247242pt;}
.ls69{letter-spacing:24.643865pt;}
.ls46{letter-spacing:25.260081pt;}
.ls2b{letter-spacing:25.360092pt;}
.ls47{letter-spacing:25.571847pt;}
.ls34{letter-spacing:25.629537pt;}
.ls4f{letter-spacing:27.222554pt;}
.ls8{letter-spacing:27.252025pt;}
.ls49{letter-spacing:27.879150pt;}
.ls0{letter-spacing:29.087976pt;}
.ls45{letter-spacing:32.851847pt;}
.ls9{letter-spacing:32.857181pt;}
.ls44{letter-spacing:35.790514pt;}
.lsf{letter-spacing:40.074350pt;}
.lsc{letter-spacing:41.054514pt;}
.ls3b{letter-spacing:41.059847pt;}
.ls18{letter-spacing:42.018411pt;}
.ls14{letter-spacing:53.013017pt;}
.ls10{letter-spacing:55.125017pt;}
.ls16{letter-spacing:55.141017pt;}
.ls41{letter-spacing:55.294514pt;}
.ls54{letter-spacing:58.156783pt;}
.ls32{letter-spacing:58.757017pt;}
.ls62{letter-spacing:60.345181pt;}
.ls52{letter-spacing:71.255749pt;}
.ls33{letter-spacing:87.647956pt;}
.ls35{letter-spacing:108.831477pt;}
.ls56{letter-spacing:121.476228pt;}
.ls55{letter-spacing:184.795673pt;}
.ls25{letter-spacing:193.799744pt;}
.ls36{letter-spacing:1275.517077pt;}
.ws17{word-spacing:-58.181867pt;}
.ws4{word-spacing:-42.074535pt;}
.ws38{word-spacing:-37.899668pt;}
.ws67{word-spacing:-33.185328pt;}
.wsa9{word-spacing:-29.504025pt;}
.ws1f{word-spacing:-28.928024pt;}
.ws6e{word-spacing:-25.329667pt;}
.ws6b{word-spacing:-24.677576pt;}
.ws32{word-spacing:-16.162923pt;}
.ws8b{word-spacing:-16.031695pt;}
.ws7{word-spacing:-15.429831pt;}
.ws37{word-spacing:-15.381460pt;}
.ws5{word-spacing:-15.371649pt;}
.ws76{word-spacing:-15.313467pt;}
.ws10{word-spacing:-14.906194pt;}
.ws95{word-spacing:-14.804177pt;}
.ws8f{word-spacing:-14.629906pt;}
.ws2d{word-spacing:-14.498921pt;}
.ws77{word-spacing:-14.382557pt;}
.ws92{word-spacing:-14.313827pt;}
.ws40{word-spacing:-14.266194pt;}
.ws41{word-spacing:-14.263375pt;}
.ws87{word-spacing:-14.208012pt;}
.ws3{word-spacing:-13.994240pt;}
.wsc0{word-spacing:-13.975284pt;}
.wsa5{word-spacing:-13.858921pt;}
.ws86{word-spacing:-13.684375pt;}
.ws3a{word-spacing:-13.626193pt;}
.ws3c{word-spacing:-13.586041pt;}
.ws3b{word-spacing:-13.572993pt;}
.ws58{word-spacing:-13.568011pt;}
.ws13{word-spacing:-13.509829pt;}
.wse{word-spacing:-13.451648pt;}
.ws55{word-spacing:-13.277102pt;}
.ws29{word-spacing:-13.160738pt;}
.ws28{word-spacing:-13.102556pt;}
.ws7e{word-spacing:-13.044375pt;}
.ws12{word-spacing:-12.986193pt;}
.ws52{word-spacing:-12.928011pt;}
.ws11{word-spacing:-12.637101pt;}
.wsaa{word-spacing:-12.578920pt;}
.ws3f{word-spacing:-12.551375pt;}
.ws33{word-spacing:-12.520738pt;}
.wsb9{word-spacing:-12.113465pt;}
.wsd{word-spacing:-11.938919pt;}
.ws4c{word-spacing:-11.880737pt;}
.ws7a{word-spacing:-11.764373pt;}
.ws9a{word-spacing:-11.706192pt;}
.ws79{word-spacing:-11.648010pt;}
.ws2a{word-spacing:-11.589828pt;}
.wsa8{word-spacing:-11.584010pt;}
.ws53{word-spacing:-11.531646pt;}
.wsf{word-spacing:-11.473464pt;}
.ws5a{word-spacing:-11.415282pt;}
.wsa1{word-spacing:-11.298919pt;}
.ws78{word-spacing:-11.240737pt;}
.ws23{word-spacing:-11.182555pt;}
.ws4f{word-spacing:-11.124373pt;}
.ws60{word-spacing:-10.949827pt;}
.wsb{word-spacing:-10.891645pt;}
.ws7d{word-spacing:-10.658918pt;}
.ws19{word-spacing:-10.484372pt;}
.ws2c{word-spacing:-10.426191pt;}
.ws14{word-spacing:-10.135281pt;}
.ws49{word-spacing:-10.077099pt;}
.ws48{word-spacing:-10.049117pt;}
.ws16{word-spacing:-10.018917pt;}
.ws62{word-spacing:-10.000815pt;}
.ws63{word-spacing:-9.986041pt;}
.ws64{word-spacing:-9.960736pt;}
.wsb5{word-spacing:-9.902554pt;}
.ws61{word-spacing:-9.900802pt;}
.ws1{word-spacing:-9.669826pt;}
.ws45{word-spacing:-9.640780pt;}
.wsa6{word-spacing:-9.639533pt;}
.ws47{word-spacing:-9.639375pt;}
.ws5f{word-spacing:-9.613707pt;}
.ws2{word-spacing:-9.611644pt;}
.ws88{word-spacing:-9.553463pt;}
.ws97{word-spacing:-9.495281pt;}
.ws5c{word-spacing:-9.441007pt;}
.ws5d{word-spacing:-9.437099pt;}
.ws31{word-spacing:-9.320735pt;}
.wsb6{word-spacing:-9.310647pt;}
.wsba{word-spacing:-9.270281pt;}
.wsae{word-spacing:-9.262553pt;}
.ws5e{word-spacing:-9.204371pt;}
.ws99{word-spacing:-9.088008pt;}
.ws4b{word-spacing:-8.971644pt;}
.ws1a{word-spacing:-8.913462pt;}
.ws56{word-spacing:-8.855280pt;}
.wsa3{word-spacing:-8.849462pt;}
.ws57{word-spacing:-8.797098pt;}
.wsb4{word-spacing:-8.738916pt;}
.wsc1{word-spacing:-8.733098pt;}
.ws59{word-spacing:-8.622553pt;}
.ws9e{word-spacing:-8.591002pt;}
.ws9f{word-spacing:-8.564371pt;}
.wsad{word-spacing:-8.558553pt;}
.ws1d{word-spacing:-8.506189pt;}
.wsb7{word-spacing:-8.500371pt;}
.ws6d{word-spacing:-8.466997pt;}
.ws20{word-spacing:-8.448007pt;}
.ws8{word-spacing:-8.419485pt;}
.ws6c{word-spacing:-8.416052pt;}
.wsa{word-spacing:-8.389825pt;}
.wsc{word-spacing:-8.331643pt;}
.wsb2{word-spacing:-8.215280pt;}
.ws4d{word-spacing:-8.040734pt;}
.wsb3{word-spacing:-8.034916pt;}
.ws2f{word-spacing:-7.982552pt;}
.wsa2{word-spacing:-7.918552pt;}
.ws15{word-spacing:-7.866188pt;}
.wsb8{word-spacing:-7.744006pt;}
.ws7c{word-spacing:-7.633461pt;}
.ws4e{word-spacing:-7.575279pt;}
.ws39{word-spacing:-7.531784pt;}
.ws1b{word-spacing:-7.517097pt;}
.ws50{word-spacing:-7.342552pt;}
.wsaf{word-spacing:-7.284370pt;}
.wsc3{word-spacing:-7.220370pt;}
.wsab{word-spacing:-7.168006pt;}
.ws7b{word-spacing:-7.109824pt;}
.ws2e{word-spacing:-7.051642pt;}
.ws7f{word-spacing:-6.877097pt;}
.ws43{word-spacing:-6.818915pt;}
.ws42{word-spacing:-6.760733pt;}
.ws44{word-spacing:-6.702551pt;}
.wsb0{word-spacing:-6.644369pt;}
.ws26{word-spacing:-6.586187pt;}
.wsc2{word-spacing:-6.411642pt;}
.ws4a{word-spacing:-6.295278pt;}
.ws3d{word-spacing:-6.237096pt;}
.ws3e{word-spacing:-6.226041pt;}
.wsbe{word-spacing:-6.120732pt;}
.ws5b{word-spacing:-6.062551pt;}
.ws22{word-spacing:-5.946187pt;}
.ws25{word-spacing:-5.829823pt;}
.wsa4{word-spacing:-5.655277pt;}
.ws80{word-spacing:-5.422550pt;}
.ws89{word-spacing:-5.364368pt;}
.ws51{word-spacing:-5.189823pt;}
.ws54{word-spacing:-5.073459pt;}
.ws21{word-spacing:-5.015277pt;}
.ws9c{word-spacing:-4.840731pt;}
.ws9d{word-spacing:-4.782549pt;}
.ws9{word-spacing:-4.572833pt;}
.wsb1{word-spacing:-4.491640pt;}
.ws27{word-spacing:-4.317095pt;}
.wsbc{word-spacing:-4.287215pt;}
.wsbd{word-spacing:-3.962185pt;}
.ws98{word-spacing:-3.502548pt;}
.ws30{word-spacing:-3.095275pt;}
.wsbf{word-spacing:-2.978912pt;}
.ws2b{word-spacing:-2.920730pt;}
.wsac{word-spacing:-2.688002pt;}
.ws1c{word-spacing:-2.629820pt;}
.wsa7{word-spacing:-2.397093pt;}
.ws82{word-spacing:-1.931638pt;}
.ws24{word-spacing:-1.117092pt;}
.wsbb{word-spacing:-0.244364pt;}
.wsa0{word-spacing:-0.132198pt;}
.ws1e{word-spacing:-0.058182pt;}
.ws6a{word-spacing:-0.050945pt;}
.ws71{word-spacing:-0.047821pt;}
.ws6{word-spacing:-0.042507pt;}
.ws46{word-spacing:-0.015599pt;}
.ws18{word-spacing:0.000000pt;}
.ws34{word-spacing:0.011636pt;}
.ws36{word-spacing:3.382185pt;}
.ws94{word-spacing:16.115044pt;}
.ws91{word-spacing:16.181489pt;}
.ws72{word-spacing:16.306893pt;}
.ws8e{word-spacing:16.314910pt;}
.ws70{word-spacing:16.354714pt;}
.ws8a{word-spacing:16.821621pt;}
.ws35{word-spacing:30.176134pt;}
.ws0{word-spacing:40.055954pt;}
.ws83{word-spacing:55.293791pt;}
.ws8c{word-spacing:59.442858pt;}
.ws9b{word-spacing:67.234192pt;}
.ws69{word-spacing:79.578298pt;}
.ws68{word-spacing:82.090715pt;}
.ws81{word-spacing:95.468440pt;}
.ws8d{word-spacing:119.492975pt;}
.ws6f{word-spacing:157.153977pt;}
.ws90{word-spacing:160.814390pt;}
.ws93{word-spacing:164.237911pt;}
.ws75{word-spacing:164.689055pt;}
.ws96{word-spacing:167.206504pt;}
.ws84{word-spacing:182.426346pt;}
.ws85{word-spacing:187.190882pt;}
.ws73{word-spacing:238.513064pt;}
.ws74{word-spacing:258.178499pt;}
.ws66{word-spacing:403.334555pt;}
.ws65{word-spacing:601.028775pt;}
._25{margin-left:-455.755942pt;}
._37{margin-left:-391.330275pt;}
._27{margin-left:-229.702836pt;}
._26{margin-left:-210.046044pt;}
._39{margin-left:-197.232040pt;}
._38{margin-left:-180.353932pt;}
._36{margin-left:-172.686773pt;}
._30{margin-left:-16.031695pt;}
._33{margin-left:-14.629906pt;}
._2{margin-left:-9.914840pt;}
._7{margin-left:-7.039202pt;}
._6{margin-left:-4.829095pt;}
._0{margin-left:-3.304947pt;}
._5{margin-left:-1.629092pt;}
._4{width:1.629092pt;}
._3{width:3.304947pt;}
._24{width:4.247276pt;}
._3d{width:5.360526pt;}
._3a{width:7.569717pt;}
._3b{width:8.670676pt;}
._3c{width:9.658190pt;}
._9{width:14.658338pt;}
._c{width:16.407286pt;}
._15{width:17.989617pt;}
._14{width:23.040019pt;}
._b{width:24.424964pt;}
._a{width:25.483658pt;}
._12{width:26.647295pt;}
._d{width:28.509115pt;}
._f{width:29.905479pt;}
._16{width:31.883663pt;}
._17{width:33.047300pt;}
._11{width:34.036392pt;}
._13{width:36.014575pt;}
._8{width:37.414890pt;}
._2f{width:38.453468pt;}
._19{width:39.447306pt;}
._10{width:41.425048pt;}
._34{width:43.927309pt;}
._18{width:45.090947pt;}
._e{width:46.824983pt;}
._2b{width:48.744985pt;}
._1{width:53.804532pt;}
._1b{width:55.161248pt;}
._2e{width:63.602540pt;}
._21{width:68.520520pt;}
._2a{width:104.765307pt;}
._2d{width:109.393912pt;}
._29{width:114.045135pt;}
._32{width:115.619524pt;}
._1c{width:130.163515pt;}
._28{width:132.638868pt;}
._1e{width:142.848726pt;}
._1a{width:210.299409pt;}
._1d{width:217.227878pt;}
._1f{width:392.475114pt;}
._2c{width:396.325693pt;}
._20{width:404.653151pt;}
._31{width:415.086139pt;}
._35{width:465.168228pt;}
._23{width:491.921292pt;}
._22{width:561.561458pt;}
.fs1a{font-size:21.719488pt;}
.fs20{font-size:24.886400pt;}
.fs1e{font-size:26.664000pt;}
.fsd{font-size:28.983509pt;}
.fs10{font-size:29.208640pt;}
.fs9{font-size:30.518400pt;}
.fs17{font-size:31.027840pt;}
.fsb{font-size:31.053760pt;}
.fs4{font-size:31.880533pt;}
.fs13{font-size:32.949760pt;}
.fs1b{font-size:33.363840pt;}
.fs1f{font-size:35.552000pt;}
.fs6{font-size:37.219729pt;}
.fs11{font-size:38.944853pt;}
.fs8{font-size:40.691200pt;}
.fs18{font-size:41.370453pt;}
.fsc{font-size:41.405013pt;}
.fs3{font-size:42.507200pt;}
.fs14{font-size:43.933013pt;}
.fs21{font-size:44.440000pt;}
.fs1c{font-size:44.485120pt;}
.fs7{font-size:47.820800pt;}
.fsa{font-size:50.864000pt;}
.fs5{font-size:50.944624pt;}
.fs19{font-size:51.713067pt;}
.fse{font-size:51.756267pt;}
.fs15{font-size:54.916267pt;}
.fs1d{font-size:55.606400pt;}
.fs1{font-size:58.181867pt;}
.fs12{font-size:58.417280pt;}
.fsf{font-size:62.107520pt;}
.fs16{font-size:65.899520pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.yd8{bottom:10.797308pt;}
.y1e5{bottom:11.042090pt;}
.y7d{bottom:11.281476pt;}
.y18f{bottom:11.469797pt;}
.y104{bottom:11.601061pt;}
.y1b9{bottom:12.333326pt;}
.yb0{bottom:12.859977pt;}
.y197{bottom:13.429237pt;}
.y1ac{bottom:13.752444pt;}
.y1e6{bottom:14.443000pt;}
.yb1{bottom:16.820787pt;}
.y7f{bottom:20.715143pt;}
.y103{bottom:24.059160pt;}
.yd7{bottom:24.583939pt;}
.y1e4{bottom:24.941950pt;}
.y18e{bottom:26.115099pt;}
.y1b8{bottom:28.081232pt;}
.yaf{bottom:29.048205pt;}
.y80{bottom:30.097182pt;}
.y7c{bottom:33.315920pt;}
.y1e7{bottom:35.808919pt;}
.y19e{bottom:38.760559pt;}
.yd9{bottom:39.500122pt;}
.yb2{bottom:41.704229pt;}
.ye9{bottom:42.489444pt;}
.y1af{bottom:45.288397pt;}
.y1b3{bottom:49.810765pt;}
.y1b0{bottom:50.691338pt;}
.y1b1{bottom:52.799125pt;}
.ye8{bottom:53.214491pt;}
.y19c{bottom:53.239189pt;}
.y190{bottom:54.320067pt;}
.y1ad{bottom:54.800177pt;}
.y1b2{bottom:55.339075pt;}
.y1e8{bottom:57.071160pt;}
.y1b4{bottom:57.941550pt;}
.yda{bottom:60.097578pt;}
.ye7{bottom:63.939538pt;}
.y19f{bottom:64.739688pt;}
.yb3{bottom:67.351308pt;}
.y7e{bottom:70.361393pt;}
.y19d{bottom:71.568822pt;}
.y194{bottom:73.629265pt;}
.y19b{bottom:74.184830pt;}
.ye6{bottom:74.664586pt;}
.y1ee{bottom:76.698627pt;}
.y83{bottom:77.866426pt;}
.y1e9{bottom:78.333402pt;}
.y196{bottom:79.184380pt;}
.y1ae{bottom:80.059418pt;}
.ydb{bottom:80.695035pt;}
.y1a3{bottom:82.931557pt;}
.y191{bottom:83.360458pt;}
.ye5{bottom:85.389633pt;}
.yfd{bottom:85.769770pt;}
.ye2{bottom:86.317616pt;}
.y82{bottom:89.835361pt;}
.y1a0{bottom:90.718817pt;}
.y1ba{bottom:91.271907pt;}
.yb9{bottom:91.978857pt;}
.yb4{bottom:92.998386pt;}
.y19a{bottom:95.130471pt;}
.y1c{bottom:96.000000pt;}
.ye4{bottom:96.114681pt;}
.y1a4{bottom:97.206492pt;}
.y1ea{bottom:99.595643pt;}
.y1bc{bottom:100.761577pt;}
.ydc{bottom:101.292491pt;}
.yfc{bottom:101.322228pt;}
.y81{bottom:101.804296pt;}
.y1a7{bottom:103.909373pt;}
.y195{bottom:104.672255pt;}
.y1a8{bottom:111.236403pt;}
.y192{bottom:112.400849pt;}
.y1a9{bottom:113.344191pt;}
.y1aa{bottom:115.884141pt;}
.y199{bottom:116.076111pt;}
.y1a1{bottom:116.697946pt;}
.y1a5{bottom:117.356979pt;}
.y1ab{bottom:118.486616pt;}
.yb5{bottom:118.645465pt;}
.y1eb{bottom:120.857884pt;}
.ydd{bottom:121.889947pt;}
.y93{bottom:131.686667pt;}
.y7b{bottom:133.111256pt;}
.y1b{bottom:133.794667pt;}
.y45{bottom:133.796000pt;}
.y198{bottom:137.021752pt;}
.y1a6{bottom:137.507467pt;}
.y193{bottom:141.441240pt;}
.y1ec{bottom:142.120126pt;}
.yde{bottom:142.487404pt;}
.y1a2{bottom:142.677075pt;}
.y90{bottom:143.592000pt;}
.yb6{bottom:144.292544pt;}
.yfe{bottom:147.912935pt;}
.y92{bottom:149.753333pt;}
.y1a{bottom:151.861333pt;}
.y100{bottom:152.438080pt;}
.y1bb{bottom:153.263372pt;}
.y8f{bottom:161.657333pt;}
.y215{bottom:162.685333pt;}
.ydf{bottom:163.084860pt;}
.y1ed{bottom:163.382367pt;}
.ybd{bottom:166.098667pt;}
.y91{bottom:167.818667pt;}
.y19{bottom:169.926667pt;}
.yb7{bottom:169.939622pt;}
.y168{bottom:177.736222pt;}
.y170{bottom:179.695662pt;}
.y185{bottom:180.018869pt;}
.y214{bottom:180.750667pt;}
.ye0{bottom:183.682317pt;}
.ybc{bottom:184.164000pt;}
.ye3{bottom:187.988024pt;}
.y18{bottom:187.992000pt;}
.y1ef{bottom:188.367596pt;}
.yff{bottom:189.365390pt;}
.y167{bottom:192.381524pt;}
.yb8{bottom:195.586701pt;}
.y7a{bottom:195.861119pt;}
.y213{bottom:198.816000pt;}
.y1bd{bottom:200.706251pt;}
.ye1{bottom:204.279773pt;}
.y177{bottom:205.026985pt;}
.y17{bottom:206.057333pt;}
.y175{bottom:209.571618pt;}
.y188{bottom:211.554822pt;}
.y1d9{bottom:215.159607pt;}
.y94{bottom:215.513333pt;}
.y18c{bottom:216.077191pt;}
.yec{bottom:216.180000pt;}
.y212{bottom:216.881333pt;}
.y189{bottom:216.957763pt;}
.y1da{bottom:218.560517pt;}
.y18a{bottom:219.065550pt;}
.y169{bottom:220.391510pt;}
.y18b{bottom:221.605500pt;}
.y186{bottom:221.766341pt;}
.ybb{bottom:221.951204pt;}
.yba{bottom:222.668918pt;}
.y16{bottom:224.122667pt;}
.y18d{bottom:224.207976pt;}
.y1d8{bottom:229.059467pt;}
.y102{bottom:229.733654pt;}
.y101{bottom:230.495188pt;}
.y178{bottom:231.006114pt;}
.y174{bottom:231.605295pt;}
.yeb{bottom:234.245333pt;}
.y211{bottom:234.948000pt;}
.ycc{bottom:236.172392pt;}
.y176{bottom:237.835248pt;}
.y16d{bottom:239.895690pt;}
.y1db{bottom:239.926436pt;}
.y15{bottom:242.189333pt;}
.y16f{bottom:245.531607pt;}
.y110{bottom:246.009333pt;}
.y187{bottom:246.417114pt;}
.y16a{bottom:249.033782pt;}
.y17c{bottom:249.197982pt;}
.ycb{bottom:249.959022pt;}
.yea{bottom:252.310667pt;}
.y210{bottom:253.013333pt;}
.y173{bottom:253.638972pt;}
.y43{bottom:256.076000pt;}
.y179{bottom:256.985243pt;}
.y79{bottom:258.610982pt;}
.ya3{bottom:259.071931pt;}
.y14{bottom:260.254667pt;}
.y1dc{bottom:261.188677pt;}
.ya4{bottom:263.032741pt;}
.y17d{bottom:263.473228pt;}
.y10f{bottom:264.074667pt;}
.yf6{bottom:264.844373pt;}
.ycd{bottom:264.875205pt;}
.y44{bottom:269.184000pt;}
.y180{bottom:270.175798pt;}
.y16e{bottom:270.938681pt;}
.y20f{bottom:271.078667pt;}
.y117{bottom:271.190667pt;}
.y40{bottom:273.880000pt;}
.ya2{bottom:275.260159pt;}
.y172{bottom:275.672648pt;}
.y181{bottom:277.502829pt;}
.y16b{bottom:277.676053pt;}
.y13{bottom:278.320000pt;}
.y182{bottom:279.610616pt;}
.yf5{bottom:280.396832pt;}
.y1e2{bottom:280.816145pt;}
.y10e{bottom:282.140000pt;}
.y183{bottom:282.150566pt;}
.y1dd{bottom:282.450919pt;}
.y17a{bottom:282.964372pt;}
.y17e{bottom:283.623571pt;}
.ybe{bottom:283.660000pt;}
.y184{bottom:284.753041pt;}
.yce{bottom:287.373470pt;}
.y42{bottom:287.698667pt;}
.ya5{bottom:287.916184pt;}
.y20e{bottom:289.144000pt;}
.y106{bottom:291.221333pt;}
.y41{bottom:292.062667pt;}
.y12{bottom:296.385333pt;}
.y108{bottom:296.949333pt;}
.y171{bottom:297.706325pt;}
.y10d{bottom:300.206667pt;}
.y1de{bottom:303.713160pt;}
.y17f{bottom:303.773914pt;}
.y16c{bottom:306.318325pt;}
.y20d{bottom:307.209333pt;}
.y17b{bottom:308.943501pt;}
.y105{bottom:309.286667pt;}
.ycf{bottom:309.871734pt;}
.yd5{bottom:311.692700pt;}
.ya6{bottom:313.563262pt;}
.y11{bottom:314.450667pt;}
.y107{bottom:315.014667pt;}
.y3f{bottom:317.000000pt;}
.y10c{bottom:318.272000pt;}
.y116{bottom:319.586667pt;}
.y78{bottom:321.360845pt;}
.y3e{bottom:321.696000pt;}
.y1df{bottom:324.975402pt;}
.y20c{bottom:325.274667pt;}
.yf7{bottom:326.987539pt;}
.y67{bottom:327.914667pt;}
.yf9{bottom:331.512684pt;}
.yd0{bottom:332.369999pt;}
.y66{bottom:332.493333pt;}
.y10{bottom:332.517333pt;}
.y10b{bottom:336.337333pt;}
.y115{bottom:337.653333pt;}
.yac{bottom:338.190812pt;}
.y3d{bottom:338.661333pt;}
.ya7{bottom:339.210341pt;}
.yed{bottom:340.636000pt;}
.y20b{bottom:343.341333pt;}
.y3c{bottom:343.358667pt;}
.y140{bottom:344.002647pt;}
.y149{bottom:345.962088pt;}
.y1e0{bottom:346.237643pt;}
.y15e{bottom:346.285294pt;}
.yf{bottom:350.582667pt;}
.y65{bottom:353.094667pt;}
.y10a{bottom:354.402667pt;}
.yd1{bottom:354.868264pt;}
.y114{bottom:355.718667pt;}
.y13f{bottom:358.647949pt;}
.y20a{bottom:361.406667pt;}
.y3b{bottom:363.960000pt;}
.ya8{bottom:364.857419pt;}
.y1e1{bottom:367.499884pt;}
.yf8{bottom:368.439993pt;}
.ye{bottom:368.648000pt;}
.y64{bottom:371.160000pt;}
.y150{bottom:371.293410pt;}
.y109{bottom:372.468000pt;}
.y113{bottom:373.784000pt;}
.y14e{bottom:375.066888pt;}
.yd2{bottom:377.366528pt;}
.y161{bottom:377.821248pt;}
.y209{bottom:379.472000pt;}
.y141{bottom:381.344010pt;}
.y165{bottom:382.343616pt;}
.y3a{bottom:382.405333pt;}
.y162{bottom:383.224189pt;}
.y77{bottom:384.110708pt;}
.y63{bottom:384.646667pt;}
.y163{bottom:385.331976pt;}
.yd{bottom:387.241333pt;}
.y164{bottom:387.871926pt;}
.y15f{bottom:388.008103pt;}
.y62{bottom:389.225333pt;}
.y166{bottom:390.474401pt;}
.ya9{bottom:390.504498pt;}
.y112{bottom:391.849333pt;}
.y1e3{bottom:392.485113pt;}
.y151{bottom:397.272539pt;}
.y208{bottom:397.537333pt;}
.y14d{bottom:398.519591pt;}
.yd3{bottom:399.864793pt;}
.y39{bottom:400.472000pt;}
.y142{bottom:401.897103pt;}
.y14f{bottom:404.101673pt;}
.yc{bottom:405.306667pt;}
.y146{bottom:406.162116pt;}
.yfb{bottom:408.808257pt;}
.y61{bottom:409.018667pt;}
.yfa{bottom:409.569791pt;}
.y111{bottom:409.914667pt;}
.y148{bottom:411.808132pt;}
.yd6{bottom:413.363107pt;}
.y160{bottom:413.801786pt;}
.y155{bottom:415.464408pt;}
.y207{bottom:415.602667pt;}
.yaa{bottom:416.151576pt;}
.y38{bottom:418.537333pt;}
.y1cd{bottom:419.277125pt;}
.y14c{bottom:421.972293pt;}
.yd4{bottom:422.363058pt;}
.y143{bottom:422.450196pt;}
.y1ce{bottom:422.678034pt;}
.y152{bottom:423.251668pt;}
.yb{bottom:423.372000pt;}
.y60{bottom:427.084000pt;}
.y156{bottom:429.781082pt;}
.y1cc{bottom:433.176984pt;}
.y206{bottom:433.669333pt;}
.y159{bottom:436.442224pt;}
.y37{bottom:436.602667pt;}
.y147{bottom:437.205106pt;}
.yab{bottom:441.798655pt;}
.y144{bottom:443.003288pt;}
.y15a{bottom:443.769254pt;}
.yef{bottom:443.918977pt;}
.y1cf{bottom:444.043953pt;}
.y5f{bottom:445.149333pt;}
.y14b{bottom:445.424995pt;}
.y15b{bottom:445.877041pt;}
.y76{bottom:446.860571pt;}
.y15c{bottom:448.416991pt;}
.y153{bottom:449.230797pt;}
.y157{bottom:450.391467pt;}
.y15d{bottom:451.019466pt;}
.y205{bottom:451.734667pt;}
.y36{bottom:454.668000pt;}
.ya{bottom:456.864000pt;}
.yee{bottom:459.471435pt;}
.yc0{bottom:461.547475pt;}
.y5e{bottom:463.216000pt;}
.y145{bottom:463.556381pt;}
.y1d0{bottom:465.306195pt;}
.yae{bottom:468.163159pt;}
.y14a{bottom:468.877697pt;}
.yad{bottom:468.880872pt;}
.y204{bottom:469.800000pt;}
.y158{bottom:471.001852pt;}
.y35{bottom:472.733333pt;}
.y154{bottom:475.209926pt;}
.ybf{bottom:475.334105pt;}
.y9{bottom:480.774667pt;}
.y5d{bottom:481.281333pt;}
.y1d6{bottom:484.933662pt;}
.y1d1{bottom:486.568436pt;}
.y203{bottom:487.865333pt;}
.yc1{bottom:490.250288pt;}
.y34{bottom:490.800000pt;}
.y5c{bottom:499.346667pt;}
.y96{bottom:505.283885pt;}
.y202{bottom:505.930667pt;}
.yf0{bottom:506.062142pt;}
.y1d2{bottom:507.830677pt;}
.y33{bottom:508.865333pt;}
.y97{bottom:509.244695pt;}
.y75{bottom:509.610435pt;}
.y119{bottom:510.269073pt;}
.yf2{bottom:510.587287pt;}
.yc2{bottom:511.897049pt;}
.y121{bottom:512.228513pt;}
.y136{bottom:512.551720pt;}
.y5b{bottom:517.412000pt;}
.y95{bottom:521.472113pt;}
.y201{bottom:523.997333pt;}
.y118{bottom:524.914375pt;}
.y32{bottom:526.930667pt;}
.y1d3{bottom:529.092919pt;}
.y8{bottom:529.614667pt;}
.yc3{bottom:533.543810pt;}
.y98{bottom:534.128138pt;}
.y5a{bottom:535.477333pt;}
.yc9{bottom:537.067783pt;}
.y127{bottom:537.559836pt;}
.y125{bottom:539.758346pt;}
.y200{bottom:542.062667pt;}
.y139{bottom:544.087673pt;}
.y31{bottom:544.996000pt;}
.yf1{bottom:547.514597pt;}
.y13d{bottom:548.610041pt;}
.y13a{bottom:549.490614pt;}
.y1d4{bottom:550.355160pt;}
.y13b{bottom:551.598401pt;}
.y137{bottom:551.783946pt;}
.y59{bottom:553.544000pt;}
.y13c{bottom:554.138351pt;}
.yc4{bottom:555.190570pt;}
.y13e{bottom:556.740826pt;}
.y99{bottom:559.775216pt;}
.y1ff{bottom:560.128000pt;}
.y7{bottom:561.746667pt;}
.y30{bottom:563.442667pt;}
.y128{bottom:563.538965pt;}
.y11a{bottom:569.729753pt;}
.y126{bottom:570.368099pt;}
.y58{bottom:571.609333pt;}
.y1d5{bottom:571.617402pt;}
.y74{bottom:572.360298pt;}
.y11d{bottom:572.428541pt;}
.y124{bottom:573.506855pt;}
.yc5{bottom:576.837331pt;}
.y11f{bottom:578.074558pt;}
.y1fe{bottom:578.193333pt;}
.y138{bottom:578.621889pt;}
.y2f{bottom:581.508000pt;}
.y12c{bottom:581.730833pt;}
.y9f{bottom:584.402766pt;}
.y9a{bottom:585.422295pt;}
.yf4{bottom:587.882861pt;}
.yf3{bottom:588.644395pt;}
.y129{bottom:589.518094pt;}
.y57{bottom:589.674667pt;}
.y12d{bottom:594.599411pt;}
.y1fd{bottom:596.258667pt;}
.y1d7{bottom:596.602630pt;}
.y6{bottom:598.392000pt;}
.yc6{bottom:598.484092pt;}
.y2e{bottom:599.574667pt;}
.y130{bottom:602.708649pt;}
.y11b{bottom:603.447090pt;}
.y11e{bottom:603.471531pt;}
.y123{bottom:607.255363pt;}
.y56{bottom:607.740000pt;}
.y131{bottom:610.035680pt;}
.y9b{bottom:611.069374pt;}
.y132{bottom:612.143467pt;}
.y12e{bottom:612.491373pt;}
.y2d{bottom:613.061333pt;}
.y1fc{bottom:614.325333pt;}
.y133{bottom:614.683417pt;}
.y12a{bottom:615.497223pt;}
.y134{bottom:617.285892pt;}
.y2c{bottom:617.640000pt;}
.yc7{bottom:620.130853pt;}
.y1c1{bottom:623.394642pt;}
.y55{bottom:625.805333pt;}
.y1c2{bottom:626.795552pt;}
.y12f{bottom:630.383335pt;}
.y1fb{bottom:632.390667pt;}
.y73{bottom:635.110161pt;}
.y9c{bottom:636.716452pt;}
.y11c{bottom:637.164428pt;}
.y1c0{bottom:637.294502pt;}
.yca{bottom:638.738191pt;}
.y122{bottom:641.003872pt;}
.y12b{bottom:641.476352pt;}
.yc8{bottom:641.777613pt;}
.y54{bottom:643.872000pt;}
.y1c3{bottom:648.161470pt;}
.y1fa{bottom:650.456000pt;}
.y2b{bottom:653.464000pt;}
.y135{bottom:661.629528pt;}
.y53{bottom:661.937333pt;}
.y9d{bottom:662.363531pt;}
.y120{bottom:662.574224pt;}
.y1f9{bottom:668.521333pt;}
.y1c4{bottom:669.423712pt;}
.y5{bottom:670.118667pt;}
.y52{bottom:675.424000pt;}
.y51{bottom:680.002667pt;}
.y1bf{bottom:680.244000pt;}
.y1f8{bottom:686.586667pt;}
.y9e{bottom:688.010609pt;}
.y1ca{bottom:689.051179pt;}
.y1c5{bottom:690.685953pt;}
.y72{bottom:697.860024pt;}
.y1be{bottom:698.309333pt;}
.y50{bottom:699.796000pt;}
.y2a{bottom:701.464000pt;}
.y1f7{bottom:704.653333pt;}
.y4{bottom:709.969333pt;}
.y1c6{bottom:711.948195pt;}
.ya1{bottom:714.375113pt;}
.ya0{bottom:715.092827pt;}
.y4f{bottom:717.861333pt;}
.y29{bottom:719.530667pt;}
.y1f6{bottom:722.718667pt;}
.y1b7{bottom:729.658667pt;}
.y1c7{bottom:733.210436pt;}
.y4e{bottom:735.926667pt;}
.y28{bottom:737.596000pt;}
.y1f5{bottom:740.784000pt;}
.y8e{bottom:746.082667pt;}
.y3{bottom:749.820000pt;}
.y70{bottom:752.484000pt;}
.y4d{bottom:753.992000pt;}
.y1c8{bottom:754.472677pt;}
.y27{bottom:755.661333pt;}
.y1f4{bottom:758.849333pt;}
.y71{bottom:760.609887pt;}
.y8d{bottom:764.149333pt;}
.y4c{bottom:772.057333pt;}
.y6f{bottom:772.513622pt;}
.y26{bottom:773.726667pt;}
.y1b6{bottom:775.100000pt;}
.y1c9{bottom:775.734919pt;}
.y1b5{bottom:779.678667pt;}
.y8c{bottom:782.214667pt;}
.y2{bottom:789.670667pt;}
.y4b{bottom:790.124000pt;}
.y25{bottom:791.792000pt;}
.y6e{bottom:796.240318pt;}
.y8b{bottom:800.280000pt;}
.y1cb{bottom:800.720147pt;}
.y4a{bottom:808.189333pt;}
.y24{bottom:809.858667pt;}
.y8a{bottom:818.345333pt;}
.y6d{bottom:819.968182pt;}
.y23{bottom:827.924000pt;}
.y1{bottom:829.521333pt;}
.y1f3{bottom:830.049333pt;}
.y89{bottom:836.410667pt;}
.y49{bottom:843.477333pt;}
.y6c{bottom:844.160702pt;}
.y22{bottom:845.989333pt;}
.y47{bottom:850.549333pt;}
.y88{bottom:854.477333pt;}
.y46{bottom:855.246667pt;}
.y48{bottom:860.385333pt;}
.y21{bottom:864.054667pt;}
.y87{bottom:872.542667pt;}
.y6b{bottom:873.430667pt;}
.y20{bottom:882.120000pt;}
.y1f2{bottom:888.265333pt;}
.y86{bottom:890.608000pt;}
.y6a{bottom:891.497333pt;}
.y1f{bottom:900.186667pt;}
.y1f1{bottom:906.332000pt;}
.y85{bottom:908.673333pt;}
.y69{bottom:909.562667pt;}
.y1e{bottom:918.252000pt;}
.y1f0{bottom:924.397333pt;}
.y84{bottom:926.738667pt;}
.y68{bottom:927.628000pt;}
.y1d{bottom:936.317333pt;}
.y216{bottom:994.144000pt;}
.he{height:2.327275pt;}
.h37{height:15.333959pt;}
.h40{height:17.569798pt;}
.h1c{height:17.821218pt;}
.h25{height:20.462358pt;}
.h36{height:21.905655pt;}
.h3d{height:24.770856pt;}
.h3f{height:25.099712pt;}
.h29{height:27.134827pt;}
.h1f{height:28.351594pt;}
.h32{height:28.824863pt;}
.h22{height:28.848943pt;}
.h34{height:29.207540pt;}
.h24{height:29.231939pt;}
.h2d{height:30.610327pt;}
.h39{height:30.995007pt;}
.hd{height:31.880400pt;}
.h3e{height:33.027808pt;}
.h2a{height:36.179769pt;}
.h1e{height:37.802125pt;}
.h19{height:38.259413pt;}
.h33{height:38.433151pt;}
.h23{height:38.465257pt;}
.h1b{height:39.289372pt;}
.h1a{height:39.294042pt;}
.h2e{height:40.813769pt;}
.h41{height:41.284760pt;}
.h3a{height:41.326676pt;}
.hc{height:43.636400pt;}
.h3{height:43.694582pt;}
.h12{height:44.876191pt;}
.h18{height:46.403010pt;}
.h20{height:47.252656pt;}
.h35{height:48.041439pt;}
.h26{height:48.081572pt;}
.h2f{height:51.017212pt;}
.h3b{height:51.658346pt;}
.h6{height:52.989733pt;}
.h5{height:52.995067pt;}
.h4{height:53.635660pt;}
.h2b{height:54.269653pt;}
.h27{height:57.697886pt;}
.h30{height:61.220654pt;}
.h9{height:62.009249pt;}
.hb{height:62.478582pt;}
.ha{height:62.483915pt;}
.h7{height:62.547067pt;}
.h16{height:62.552400pt;}
.h14{height:63.953525pt;}
.h8{height:80.861733pt;}
.h17{height:80.867067pt;}
.h10{height:81.331067pt;}
.h15{height:90.771915pt;}
.h2{height:99.016202pt;}
.h11{height:100.749733pt;}
.h13{height:120.973733pt;}
.hf{height:138.129941pt;}
.h38{height:221.271931pt;}
.h2c{height:610.295562pt;}
.h28{height:667.274423pt;}
.h31{height:679.740538pt;}
.h21{height:735.498139pt;}
.h1d{height:817.127431pt;}
.h3c{height:817.156004pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:421.190110pt;}
.w2{width:473.197336pt;}
.w7{width:481.368965pt;}
.w8{width:498.519588pt;}
.w3{width:580.592095pt;}
.w6{width:601.711449pt;}
.w5{width:601.713193pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:9.314470pt;}
.x4d{left:10.592833pt;}
.x23{left:15.563192pt;}
.x2d{left:17.180654pt;}
.x53{left:19.125755pt;}
.x72{left:21.053450pt;}
.x45{left:23.062655pt;}
.x20{left:24.802161pt;}
.x68{left:26.343532pt;}
.x2c{left:29.452550pt;}
.x2b{left:34.385570pt;}
.x66{left:35.444736pt;}
.x48{left:38.997363pt;}
.x52{left:43.131657pt;}
.x61{left:46.727331pt;}
.x51{left:51.656233pt;}
.x43{left:53.579599pt;}
.x6d{left:59.019424pt;}
.x22{left:65.163659pt;}
.x26{left:68.735937pt;}
.x50{left:71.541632pt;}
.x49{left:84.036399pt;}
.x24{left:86.968698pt;}
.x60{left:88.296550pt;}
.x67{left:92.841250pt;}
.x73{left:94.423870pt;}
.x5{left:96.000000pt;}
.x9{left:97.890667pt;}
.x1{left:105.969333pt;}
.x3{left:109.901333pt;}
.x2{left:111.590667pt;}
.x6{left:117.860000pt;}
.x69{left:119.341175pt;}
.x4e{left:124.505852pt;}
.x6e{left:128.027495pt;}
.x6f{left:130.442618pt;}
.x70{left:132.584331pt;}
.x71{left:135.566272pt;}
.x27{left:139.324611pt;}
.x83{left:144.000000pt;}
.x7e{left:146.142354pt;}
.x6b{left:147.590667pt;}
.x28{left:149.104977pt;}
.x17{left:151.960000pt;}
.x6c{left:153.468822pt;}
.x29{left:154.412016pt;}
.x65{left:156.169333pt;}
.x2a{left:157.884882pt;}
.x1e{left:160.250667pt;}
.x4f{left:161.549362pt;}
.x80{left:163.020461pt;}
.x3c{left:170.202129pt;}
.xe{left:182.218667pt;}
.x56{left:183.236287pt;}
.x42{left:186.256000pt;}
.x3f{left:189.858921pt;}
.x57{left:198.093148pt;}
.x21{left:200.315041pt;}
.x44{left:206.791847pt;}
.x55{left:207.779247pt;}
.xf{left:212.925333pt;}
.x75{left:214.298013pt;}
.x54{left:216.484823pt;}
.x10{left:217.845333pt;}
.x1b{left:219.138667pt;}
.x13{left:220.738667pt;}
.x14{left:228.269333pt;}
.x4a{left:230.881260pt;}
.xd{left:236.698667pt;}
.x2f{left:249.578422pt;}
.x1c{left:255.886667pt;}
.x19{left:258.798667pt;}
.x11{left:260.600000pt;}
.x18{left:267.358667pt;}
.x76{left:274.908270pt;}
.x16{left:275.908000pt;}
.x15{left:283.438667pt;}
.x74{left:285.949343pt;}
.x77{left:287.862919pt;}
.x34{left:290.801480pt;}
.x64{left:296.062667pt;}
.x12{left:301.808000pt;}
.x82{left:312.397333pt;}
.x1d{left:316.417333pt;}
.x81{left:318.299049pt;}
.x30{left:320.167096pt;}
.xa{left:327.356000pt;}
.x31{left:329.947462pt;}
.x2e{left:333.025888pt;}
.x6a{left:333.985657pt;}
.x32{left:335.254501pt;}
.x33{left:338.727366pt;}
.x7{left:344.373333pt;}
.x3d{left:351.044614pt;}
.x46{left:361.234813pt;}
.x4{left:364.076000pt;}
.x47{left:364.971085pt;}
.x79{left:369.576601pt;}
.x40{left:370.701406pt;}
.x25{left:389.618667pt;}
.x8{left:393.234667pt;}
.x7d{left:404.902929pt;}
.x4b{left:422.765156pt;}
.x36{left:430.420907pt;}
.x7a{left:438.584671pt;}
.x78{left:441.227932pt;}
.x7b{left:443.141507pt;}
.x7c{left:446.123449pt;}
.x7f{left:456.699530pt;}
.x5e{left:466.718015pt;}
.x4c{left:467.804192pt;}
.x59{left:468.980462pt;}
.x3b{left:471.563095pt;}
.x5f{left:472.877123pt;}
.x58{left:474.151769pt;}
.x5a{left:482.007820pt;}
.xb{left:493.276000pt;}
.x37{left:501.009581pt;}
.x62{left:508.675991pt;}
.x38{left:510.789946pt;}
.x35{left:513.868373pt;}
.x39{left:516.096985pt;}
.x3a{left:519.569851pt;}
.x5c{left:522.337952pt;}
.x63{left:523.633035pt;}
.x5b{left:525.849229pt;}
.x1a{left:526.905333pt;}
.x3e{left:531.887099pt;}
.x5d{left:545.620195pt;}
.x41{left:551.543890pt;}
.xc{left:556.440000pt;}
}




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