
    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_83d477db07633d4f6f685b98.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_890d05fc7a362739cb71a3f5.woff')format("woff");}.ff2{font-family:ff2;line-height:0.892000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_69a4961e2c0577709372386b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.713000;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_baceeb3d3e275544b638d715.woff')format("woff");}.ff4{font-family:ff4;line-height:0.900000;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_67472715f926256c9425e3be.woff')format("woff");}.ff5{font-family:ff5;line-height:0.967773;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_b6306a160d590894ab7ce05b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_ef3b184c7f80dd56467a5623.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_dc730c81640baa53e3eb3567.woff')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_a69e96580b7933a093a72558.woff')format("woff");}.ff9{font-family:ff9;line-height:0.740723;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_1c172cd9ac17df87a85db60d.woff')format("woff");}.ffa{font-family:ffa;line-height:0.628000;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_be7f5270e49c72c4c8073500.woff')format("woff");}.ffb{font-family:ffb;line-height:0.806000;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_0f6bf13bee0c7a9181db309b.woff')format("woff");}.ffc{font-family:ffc;line-height:0.647000;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.880000px;}
.v1{vertical-align:26.929680px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.834197px;}
.ls8{letter-spacing:2.160756px;}
.lsb{letter-spacing:2.987495px;}
.ls1{letter-spacing:2.988000px;}
.ls2{letter-spacing:2.990845px;}
.ls4{letter-spacing:14.127574px;}
.ls9{letter-spacing:18.632972px;}
.ls7{letter-spacing:29.932884px;}
.ls6{letter-spacing:264.131953px;}
.ls5{letter-spacing:293.351953px;}
.ls3{letter-spacing:359.543730px;}
.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;}
}
.ws9{word-spacing:-13.449600px;}
.ws14a{word-spacing:-11.955135px;}
.ws8c{word-spacing:-9.472705px;}
.ws72{word-spacing:-3.047776px;}
.ws8{word-spacing:-0.065753px;}
.ws4{word-spacing:-0.059776px;}
.ws21{word-spacing:-0.047821px;}
.ws55{word-spacing:0.000000px;}
.ws181{word-spacing:3.156460px;}
.ws177{word-spacing:4.303659px;}
.ws14b{word-spacing:4.781259px;}
.ws185{word-spacing:4.781859px;}
.ws169{word-spacing:4.782459px;}
.ws16f{word-spacing:4.783059px;}
.ws16e{word-spacing:5.164059px;}
.ws17c{word-spacing:5.834259px;}
.wsa3{word-spacing:5.976299px;}
.ws3{word-spacing:5.976898px;}
.wsb5{word-spacing:5.977498px;}
.ws195{word-spacing:7.889858px;}
.ws173{word-spacing:8.608058px;}
.ws18a{word-spacing:9.181058px;}
.ws168{word-spacing:9.659257px;}
.ws155{word-spacing:9.851257px;}
.ws196{word-spacing:11.477257px;}
.ws182{word-spacing:11.524057px;}
.ws15f{word-spacing:11.907456px;}
.ws166{word-spacing:12.433375px;}
.ws156{word-spacing:12.815256px;}
.ws191{word-spacing:12.912456px;}
.ws1d{word-spacing:12.912599px;}
.ws63{word-spacing:13.688623px;}
.wsbf{word-spacing:13.749224px;}
.ws3d{word-spacing:13.808023px;}
.ws165{word-spacing:13.820575px;}
.ws47{word-spacing:13.986823px;}
.ws4f{word-spacing:14.166224px;}
.ws175{word-spacing:14.249575px;}
.ws129{word-spacing:14.287423px;}
.ws18{word-spacing:14.309001px;}
.ws8d{word-spacing:14.345623px;}
.ws15e{word-spacing:14.393575px;}
.ws39{word-spacing:14.466224px;}
.ws132{word-spacing:14.586223px;}
.wse0{word-spacing:14.644424px;}
.ws16c{word-spacing:14.729574px;}
.ws13{word-spacing:14.795001px;}
.wsbb{word-spacing:14.945023px;}
.ws11d{word-spacing:15.003223px;}
.ws180{word-spacing:15.064374px;}
.ws13b{word-spacing:15.122623px;}
.wsa2{word-spacing:15.183224px;}
.ws81{word-spacing:15.243223px;}
.ws11c{word-spacing:15.480824px;}
.wsf7{word-spacing:15.481423px;}
.wsd3{word-spacing:15.482023px;}
.wsa6{word-spacing:15.482623px;}
.wscb{word-spacing:15.540823px;}
.ws121{word-spacing:15.541423px;}
.ws12a{word-spacing:15.542623px;}
.ws17a{word-spacing:15.636774px;}
.wsf5{word-spacing:15.660823px;}
.ws4a{word-spacing:15.661423px;}
.ws66{word-spacing:15.719624px;}
.ws3f{word-spacing:15.960223px;}
.ws15b{word-spacing:16.067574px;}
.ws10c{word-spacing:16.079023px;}
.ws111{word-spacing:16.139023px;}
.ws107{word-spacing:16.139623px;}
.ws176{word-spacing:16.210374px;}
.wsb3{word-spacing:16.258423px;}
.ws91{word-spacing:16.317823px;}
.ws40{word-spacing:16.378423px;}
.ws120{word-spacing:16.379023px;}
.ws6b{word-spacing:16.437223px;}
.ws10f{word-spacing:16.438423px;}
.ws170{word-spacing:16.593774px;}
.ws124{word-spacing:16.616023px;}
.ws134{word-spacing:16.676623px;}
.ws14c{word-spacing:16.687974px;}
.wsfd{word-spacing:16.688574px;}
.wsfb{word-spacing:16.689174px;}
.wsfc{word-spacing:16.689773px;}
.ws158{word-spacing:16.690374px;}
.wsa9{word-spacing:16.737223px;}
.wsee{word-spacing:16.796023px;}
.ws192{word-spacing:16.833455px;}
.ws9e{word-spacing:16.915423px;}
.ws101{word-spacing:16.976623px;}
.ws104{word-spacing:17.035423px;}
.ws67{word-spacing:17.096023px;}
.ws16d{word-spacing:17.119973px;}
.ws128{word-spacing:17.155423px;}
.ws10d{word-spacing:17.215423px;}
.ws133{word-spacing:17.274223px;}
.ws12{word-spacing:17.322201px;}
.ws48{word-spacing:17.334823px;}
.wsdf{word-spacing:17.393623px;}
.wsc{word-spacing:17.430201px;}
.ws1a{word-spacing:17.700201px;}
.ws17b{word-spacing:17.740373px;}
.wsd1{word-spacing:17.753023px;}
.ws14e{word-spacing:17.789573px;}
.ws74{word-spacing:17.835773px;}
.ws73{word-spacing:17.836373px;}
.ws71{word-spacing:17.836973px;}
.ws131{word-spacing:17.873023px;}
.wsfa{word-spacing:17.883773px;}
.ws88{word-spacing:17.991223px;}
.ws9a{word-spacing:17.993023px;}
.ws17{word-spacing:18.129801px;}
.ws11{word-spacing:18.183801px;}
.ws178{word-spacing:18.219773px;}
.ws17f{word-spacing:18.266573px;}
.ws18c{word-spacing:18.362573px;}
.ws188{word-spacing:18.457973px;}
.wsaa{word-spacing:18.470023px;}
.wse6{word-spacing:18.471223px;}
.ws87{word-spacing:18.471823px;}
.ws1b{word-spacing:18.506601px;}
.ws80{word-spacing:18.529423px;}
.ws11e{word-spacing:18.530023px;}
.ws11f{word-spacing:18.530623px;}
.ws16b{word-spacing:18.601373px;}
.ws12f{word-spacing:18.649423px;}
.ws10e{word-spacing:18.650623px;}
.ws12b{word-spacing:18.708823px;}
.ws6c{word-spacing:18.769423px;}
.ws118{word-spacing:18.775401px;}
.ws119{word-spacing:18.776601px;}
.ws44{word-spacing:18.888223px;}
.ws95{word-spacing:18.948823px;}
.wsf6{word-spacing:18.950023px;}
.ws8a{word-spacing:19.008223px;}
.ws3e{word-spacing:19.008823px;}
.ws164{word-spacing:19.080173px;}
.ws10{word-spacing:19.206201px;}
.ws6f{word-spacing:19.367623px;}
.ws82{word-spacing:19.427623px;}
.wsdd{word-spacing:19.725223px;}
.ws45{word-spacing:19.725823px;}
.ws171{word-spacing:19.797173px;}
.ws9d{word-spacing:19.845823px;}
.wseb{word-spacing:19.964623px;}
.ws75{word-spacing:19.965223px;}
.wsd2{word-spacing:20.084023px;}
.ws12c{word-spacing:20.085223px;}
.ws1f{word-spacing:20.119401px;}
.ws1c{word-spacing:20.121801px;}
.wsc0{word-spacing:20.144623px;}
.ws15a{word-spacing:20.179972px;}
.wsf{word-spacing:20.228001px;}
.ws18b{word-spacing:20.229173px;}
.wsd9{word-spacing:20.264623px;}
.wsa1{word-spacing:20.323423px;}
.ws27{word-spacing:20.442823px;}
.ws4c{word-spacing:20.502223px;}
.ws174{word-spacing:20.514172px;}
.wse1{word-spacing:20.742223px;}
.ws94{word-spacing:20.801023px;}
.ws106{word-spacing:20.802223px;}
.ws70{word-spacing:20.860423px;}
.ws56{word-spacing:20.861023px;}
.ws9f{word-spacing:20.861623px;}
.ws41{word-spacing:20.862223px;}
.ws2f{word-spacing:20.862823px;}
.ws154{word-spacing:20.898172px;}
.wsec{word-spacing:20.921023px;}
.ws123{word-spacing:20.921623px;}
.ws138{word-spacing:20.981623px;}
.wsb2{word-spacing:20.982223px;}
.ws98{word-spacing:21.041023px;}
.ws79{word-spacing:21.041623px;}
.ws189{word-spacing:21.088972px;}
.ws194{word-spacing:21.232372px;}
.ws2c{word-spacing:21.279223px;}
.wsa4{word-spacing:21.279823px;}
.ws89{word-spacing:21.339823px;}
.wsb9{word-spacing:21.340423px;}
.ws15c{word-spacing:21.423772px;}
.wsd8{word-spacing:21.459823px;}
.ws4e{word-spacing:21.519223px;}
.ws167{word-spacing:21.567772px;}
.ws8b{word-spacing:21.578623px;}
.ws86{word-spacing:21.638623px;}
.ws163{word-spacing:21.661972px;}
.ws184{word-spacing:21.662572px;}
.ws60{word-spacing:21.698023px;}
.ws7b{word-spacing:21.699223px;}
.ws186{word-spacing:21.806572px;}
.wsbc{word-spacing:21.818623px;}
.ws187{word-spacing:21.853372px;}
.ws38{word-spacing:21.877423px;}
.ws26{word-spacing:22.056223px;}
.ws116{word-spacing:22.057423px;}
.ws12e{word-spacing:22.116823px;}
.ws58{word-spacing:22.176823px;}
.ws7e{word-spacing:22.177423px;}
.ws5d{word-spacing:22.235623px;}
.wsf9{word-spacing:22.236223px;}
.ws19{word-spacing:22.325001px;}
.wsa{word-spacing:22.379001px;}
.wsc8{word-spacing:22.416223px;}
.ws108{word-spacing:22.474423px;}
.wsf4{word-spacing:22.475023px;}
.ws10a{word-spacing:22.594423px;}
.ws150{word-spacing:22.618971px;}
.ws143{word-spacing:22.656223px;}
.ws7f{word-spacing:22.713823px;}
.ws37{word-spacing:22.714423px;}
.ws14d{word-spacing:22.858372px;}
.ws179{word-spacing:22.905172px;}
.ws2{word-spacing:22.946641px;}
.ws6{word-spacing:22.947241px;}
.ws5{word-spacing:22.947841px;}
.ws7{word-spacing:22.948441px;}
.ws126{word-spacing:22.953222px;}
.wsb1{word-spacing:23.013823px;}
.ws15{word-spacing:23.079201px;}
.ws18f{word-spacing:23.145171px;}
.ws10b{word-spacing:23.192623px;}
.ws130{word-spacing:23.312023px;}
.wsdc{word-spacing:23.372023px;}
.ws29{word-spacing:23.372622px;}
.ws183{word-spacing:23.431971px;}
.ws151{word-spacing:23.479371px;}
.ws18e{word-spacing:23.622771px;}
.wsc9{word-spacing:23.672023px;}
.wsae{word-spacing:23.731422px;}
.ws160{word-spacing:23.766771px;}
.wsde{word-spacing:23.789623px;}
.ws84{word-spacing:23.850822px;}
.ws30{word-spacing:23.909023px;}
.ws193{word-spacing:23.910771px;}
.ws90{word-spacing:23.910823px;}
.ws54{word-spacing:23.969623px;}
.wsf8{word-spacing:23.970823px;}
.ws172{word-spacing:24.005571px;}
.ws100{word-spacing:24.029022px;}
.ws148{word-spacing:24.054171px;}
.wsa0{word-spacing:24.089023px;}
.ws153{word-spacing:24.196971px;}
.ws13c{word-spacing:24.208423px;}
.wsab{word-spacing:24.267822px;}
.ws4d{word-spacing:24.268423px;}
.ws136{word-spacing:24.387823px;}
.ws15d{word-spacing:24.389571px;}
.ws49{word-spacing:24.447823px;}
.ws32{word-spacing:24.567223px;}
.ws92{word-spacing:24.567822px;}
.ws152{word-spacing:24.675171px;}
.wsc5{word-spacing:24.687222px;}
.ws157{word-spacing:24.723171px;}
.ws13f{word-spacing:24.746623px;}
.ws190{word-spacing:24.769971px;}
.ws5c{word-spacing:24.806622px;}
.ws141{word-spacing:24.925423px;}
.wsd4{word-spacing:24.926023px;}
.ws7a{word-spacing:24.926622px;}
.wsa7{word-spacing:24.927223px;}
.wsca{word-spacing:25.044823px;}
.ws62{word-spacing:25.104822px;}
.ws122{word-spacing:25.164223px;}
.wsc3{word-spacing:25.165422px;}
.ws139{word-spacing:25.225423px;}
.wse5{word-spacing:25.345423px;}
.ws103{word-spacing:25.404822px;}
.ws8f{word-spacing:25.464823px;}
.wse8{word-spacing:25.465422px;}
.wsd6{word-spacing:25.524823px;}
.ws162{word-spacing:25.584771px;}
.wse4{word-spacing:25.704222px;}
.ws2d{word-spacing:25.821822px;}
.ws76{word-spacing:25.822423px;}
.ws17e{word-spacing:25.870370px;}
.wsac{word-spacing:25.881823px;}
.ws83{word-spacing:25.882422px;}
.ws5b{word-spacing:25.883022px;}
.ws85{word-spacing:25.941823px;}
.ws64{word-spacing:26.063022px;}
.ws127{word-spacing:26.121822px;}
.wse3{word-spacing:26.241222px;}
.ws17d{word-spacing:26.301170px;}
.ws3c{word-spacing:26.301822px;}
.ws1e{word-spacing:26.307201px;}
.ws35{word-spacing:26.360622px;}
.ws51{word-spacing:26.421222px;}
.wsfe{word-spacing:26.421822px;}
.ws13d{word-spacing:26.480022px;}
.ws93{word-spacing:26.480622px;}
.ws57{word-spacing:26.481223px;}
.wsc4{word-spacing:26.541823px;}
.wsf0{word-spacing:26.599422px;}
.wsa8{word-spacing:26.660622px;}
.ws125{word-spacing:26.780622px;}
.ws3a{word-spacing:26.838822px;}
.ws61{word-spacing:26.839423px;}
.ws14f{word-spacing:26.874170px;}
.wscc{word-spacing:26.898223px;}
.ws6d{word-spacing:26.900022px;}
.wsbe{word-spacing:26.958822px;}
.wsd5{word-spacing:27.077622px;}
.ws96{word-spacing:27.257023px;}
.ws161{word-spacing:27.305570px;}
.wsb0{word-spacing:27.317022px;}
.ws5a{word-spacing:27.497622px;}
.ws18d{word-spacing:27.543770px;}
.wsed{word-spacing:27.675822px;}
.ws159{word-spacing:27.687770px;}
.ws33{word-spacing:27.735223px;}
.ws36{word-spacing:27.735822px;}
.ws5f{word-spacing:27.737023px;}
.ws2b{word-spacing:27.794622px;}
.wsc2{word-spacing:27.795222px;}
.ws110{word-spacing:27.855822px;}
.ws99{word-spacing:27.915223px;}
.wsc6{word-spacing:28.035223px;}
.ws16a{word-spacing:28.069970px;}
.wsb{word-spacing:28.082601px;}
.ws135{word-spacing:28.095222px;}
.ws12d{word-spacing:28.154623px;}
.wsb6{word-spacing:28.214622px;}
.ws25{word-spacing:28.273422px;}
.wsaf{word-spacing:28.332223px;}
.ws4b{word-spacing:28.333422px;}
.ws24{word-spacing:28.573422px;}
.ws78{word-spacing:28.632222px;}
.ws52{word-spacing:28.751022px;}
.ws145{word-spacing:28.752223px;}
.wsc7{word-spacing:28.811622px;}
.ws11b{word-spacing:28.812823px;}
.wsd{word-spacing:28.890201px;}
.ws59{word-spacing:29.051022px;}
.ws109{word-spacing:29.111622px;}
.ws149{word-spacing:29.266369px;}
.wscd{word-spacing:29.648622px;}
.ws2a{word-spacing:29.649222px;}
.wse7{word-spacing:29.707422px;}
.ws77{word-spacing:29.768022px;}
.ws13e{word-spacing:29.827422px;}
.ws147{word-spacing:29.841169px;}
.wse{word-spacing:29.912001px;}
.ws6e{word-spacing:30.006222px;}
.wsea{word-spacing:30.008022px;}
.ws9c{word-spacing:30.066222px;}
.ws53{word-spacing:30.126822px;}
.ws5e{word-spacing:30.127422px;}
.wsba{word-spacing:30.186223px;}
.wsd7{word-spacing:30.186822px;}
.ws7c{word-spacing:30.305022px;}
.wsdb{word-spacing:30.366222px;}
.ws68{word-spacing:30.425022px;}
.ws2e{word-spacing:30.544422px;}
.ws102{word-spacing:30.664422px;}
.wsff{word-spacing:30.725622px;}
.wsf2{word-spacing:30.785622px;}
.wsb7{word-spacing:31.142022px;}
.ws14{word-spacing:31.149201px;}
.ws11a{word-spacing:31.321422px;}
.ws43{word-spacing:31.381422px;}
.wsf1{word-spacing:31.382022px;}
.ws16{word-spacing:31.525401px;}
.wsc1{word-spacing:31.561422px;}
.ws105{word-spacing:31.620222px;}
.ws3b{word-spacing:31.679622px;}
.ws137{word-spacing:31.680822px;}
.ws34{word-spacing:31.740222px;}
.wse2{word-spacing:31.800822px;}
.ws117{word-spacing:31.919622px;}
.ws31{word-spacing:31.980822px;}
.ws6a{word-spacing:32.039022px;}
.wsb8{word-spacing:32.039622px;}
.ws28{word-spacing:32.040222px;}
.wscf{word-spacing:32.278422px;}
.ws50{word-spacing:32.339622px;}
.wsda{word-spacing:32.517822px;}
.wsf3{word-spacing:32.815422px;}
.ws20{word-spacing:32.816022px;}
.ws69{word-spacing:32.876022px;}
.ws65{word-spacing:32.876622px;}
.wsd0{word-spacing:33.236022px;}
.ws146{word-spacing:33.354222px;}
.ws42{word-spacing:33.413622px;}
.ws142{word-spacing:33.414822px;}
.wsa5{word-spacing:33.473622px;}
.ws23{word-spacing:33.654222px;}
.ws13a{word-spacing:33.832422px;}
.ws140{word-spacing:33.893622px;}
.ws8e{word-spacing:34.491222px;}
.wsef{word-spacing:34.550022px;}
.wse9{word-spacing:34.848222px;}
.ws9b{word-spacing:35.208222px;}
.ws97{word-spacing:35.208822px;}
.wsad{word-spacing:35.565822px;}
.ws46{word-spacing:35.864622px;}
.wsbd{word-spacing:36.282822px;}
.ws7d{word-spacing:36.701622px;}
.ws115{word-spacing:36.761022px;}
.wsce{word-spacing:36.882222px;}
.wsb4{word-spacing:37.897422px;}
.ws144{word-spacing:40.529021px;}
.ws197{word-spacing:43.468964px;}
.ws1{word-spacing:50.066931px;}
.ws0{word-spacing:50.068130px;}
.ws112{word-spacing:50.287710px;}
.ws22{word-spacing:52.304021px;}
.ws113{word-spacing:127.183139px;}
.ws114{word-spacing:194.480234px;}
._2{margin-left:-11.472003px;}
._f{margin-left:-7.710599px;}
._4{margin-left:-6.276599px;}
._1{margin-left:-5.020797px;}
._6{margin-left:-3.945599px;}
._3{margin-left:-2.450401px;}
._0{margin-left:-1.433399px;}
._a{width:2.336472px;}
._5{width:3.645281px;}
._16{width:15.002998px;}
._7{width:16.463400px;}
._19{width:17.873999px;}
._1d{width:19.011000px;}
._b{width:21.518999px;}
._9{width:23.379600px;}
._1f{width:24.388199px;}
._24{width:26.098193px;}
._29{width:27.161990px;}
._10{width:29.355598px;}
._8{width:30.965999px;}
._26{width:33.282588px;}
._20{width:34.491598px;}
._15{width:36.283198px;}
._28{width:37.879186px;}
._21{width:39.211786px;}
._2a{width:44.580587px;}
._22{width:45.835184px;}
._27{width:46.860583px;}
._2b{width:48.922176px;}
._18{width:49.973996px;}
._25{width:54.443503px;}
._23{width:61.308328px;}
._d{width:73.245633px;}
._c{width:78.920436px;}
._11{width:98.906950px;}
._1a{width:102.704948px;}
._12{width:120.204540px;}
._1e{width:134.520156px;}
._13{width:141.499729px;}
._14{width:162.798145px;}
._e{width:199.622765px;}
._1c{width:270.425220px;}
._1b{width:367.187730px;}
._17{width:1263.125483px;}
.fc1{color:rgb(0,0,102);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:29.815140px;}
.fs7{font-size:34.074480px;}
.fs9{font-size:34.591020px;}
.fs6{font-size:44.883840px;}
.fs4{font-size:47.820540px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753340px;}
.fs0{font-size:143.461740px;}
.y0{bottom:0.000000px;}
.yed{bottom:3.934524px;}
.yec{bottom:6.817524px;}
.y5b{bottom:7.031192px;}
.yeb{bottom:7.537524px;}
.ya9{bottom:10.134130px;}
.yac{bottom:14.925220px;}
.yaa{bottom:20.248465px;}
.ya8{bottom:20.249755px;}
.y5a{bottom:20.496032px;}
.yab{bottom:25.573465px;}
.ye8{bottom:29.156649px;}
.ya7{bottom:30.365965px;}
.ye7{bottom:39.966024px;}
.y56{bottom:47.397255px;}
.ya4{bottom:76.685965px;}
.y13c{bottom:113.324850px;}
.y114{bottom:113.329050px;}
.y1b6{bottom:113.329680px;}
.y31{bottom:113.329755px;}
.yc9{bottom:113.329800px;}
.ye5{bottom:113.330250px;}
.y55{bottom:113.331105px;}
.y16e{bottom:113.332350px;}
.y7d{bottom:113.332650px;}
.y9b{bottom:113.332800px;}
.y1b5{bottom:126.779880px;}
.y13b{bottom:131.257500px;}
.y113{bottom:131.261700px;}
.ye4{bottom:131.262300px;}
.yc8{bottom:131.262450px;}
.y54{bottom:131.263155px;}
.y30{bottom:131.264205px;}
.y7c{bottom:131.265300px;}
.y9a{bottom:131.265450px;}
.y16d{bottom:131.266200px;}
.y181{bottom:131.266500px;}
.y1b4{bottom:140.228910px;}
.yea{bottom:145.181064px;}
.y13a{bottom:149.190150px;}
.y53{bottom:149.195205px;}
.y112{bottom:149.195550px;}
.y99{bottom:149.198100px;}
.y16c{bottom:149.198850px;}
.y7b{bottom:149.199150px;}
.y2f{bottom:149.496255px;}
.y1b3{bottom:153.677940px;}
.ye3{bottom:154.662300px;}
.ye9{bottom:155.991024px;}
.ya5{bottom:156.015415px;}
.y1fd{bottom:158.161740px;}
.yc7{bottom:161.643300px;}
.y139{bottom:167.124600px;}
.y111{bottom:167.128200px;}
.y52{bottom:167.129655px;}
.y7a{bottom:167.131200px;}
.y16b{bottom:167.131500px;}
.y180{bottom:167.131800px;}
.y98{bottom:167.131950px;}
.y1b2{bottom:167.415240px;}
.y2e{bottom:167.428905px;}
.y1fc{bottom:171.612525px;}
.y1b1{bottom:180.865440px;}
.ye2{bottom:184.524600px;}
.y138{bottom:185.057250px;}
.y110{bottom:185.060850px;}
.y1fb{bottom:185.060955px;}
.y51{bottom:185.062305px;}
.y79{bottom:185.063250px;}
.y17f{bottom:185.064450px;}
.y97{bottom:185.064600px;}
.y2d{bottom:185.363355px;}
.y1b0{bottom:194.314470px;}
.y1fa{bottom:198.511740px;}
.yc6{bottom:200.629800px;}
.ye1{bottom:202.457250px;}
.y137{bottom:202.989900px;}
.y10f{bottom:202.993500px;}
.y50{bottom:202.994955px;}
.y78{bottom:202.995300px;}
.y17e{bottom:202.996350px;}
.y96{bottom:202.997250px;}
.y2c{bottom:203.296005px;}
.y16a{bottom:206.991000px;}
.y1af{bottom:207.763500px;}
.y5d{bottom:209.756192px;}
.y1f9{bottom:211.960770px;}
.yc5{bottom:218.564250px;}
.ye0{bottom:220.389900px;}
.y136{bottom:220.922550px;}
.y10e{bottom:220.926150px;}
.y77{bottom:220.927350px;}
.y4f{bottom:220.927605px;}
.y17d{bottom:220.928850px;}
.y95{bottom:220.929900px;}
.y2b{bottom:221.228655px;}
.y59{bottom:222.099032px;}
.y5c{bottom:223.221032px;}
.y1f8{bottom:225.409800px;}
.y169{bottom:230.453970px;}
.y1ae{bottom:233.061300px;}
.yc4{bottom:236.496900px;}
.ydf{bottom:238.322550px;}
.y135{bottom:238.855200px;}
.y10d{bottom:238.858800px;}
.y76{bottom:238.859400px;}
.y4e{bottom:238.860255px;}
.y1f7{bottom:238.860585px;}
.y17c{bottom:238.863300px;}
.y2a{bottom:239.161305px;}
.y94{bottom:239.996250px;}
.y168{bottom:243.903000px;}
.y1f6{bottom:252.309615px;}
.yc3{bottom:254.429550px;}
.yde{bottom:256.257000px;}
.y134{bottom:256.787850px;}
.y10c{bottom:256.793250px;}
.y75{bottom:256.793850px;}
.y4d{bottom:256.794105px;}
.y17b{bottom:256.795350px;}
.y29{bottom:257.093955px;}
.y93{bottom:257.930100px;}
.y1ad{bottom:265.478850px;}
.y1f5{bottom:265.758645px;}
.y167{bottom:267.364185px;}
.yc2{bottom:272.362200px;}
.ydd{bottom:274.189650px;}
.y133{bottom:274.721700px;}
.y10b{bottom:274.725900px;}
.y4c{bottom:274.726155px;}
.y74{bottom:274.726500px;}
.y17a{bottom:274.727400px;}
.y28{bottom:275.026605px;}
.y92{bottom:275.862150px;}
.y1f4{bottom:279.209430px;}
.y166{bottom:280.814970px;}
.y1ac{bottom:283.411500px;}
.yc1{bottom:290.294850px;}
.ydc{bottom:292.122300px;}
.y132{bottom:292.654350px;}
.y4b{bottom:292.658205px;}
.y1f3{bottom:292.658460px;}
.y10a{bottom:292.658550px;}
.y73{bottom:292.659150px;}
.y179{bottom:292.660050px;}
.y27{bottom:292.960455px;}
.y91{bottom:293.794200px;}
.y165{bottom:294.264000px;}
.y1ab{bottom:301.344150px;}
.y1f2{bottom:306.108660px;}
.ya3{bottom:307.752925px;}
.yc0{bottom:308.227500px;}
.ydb{bottom:310.054950px;}
.y131{bottom:310.587000px;}
.y4a{bottom:310.590255px;}
.y109{bottom:310.591200px;}
.y72{bottom:310.591800px;}
.y178{bottom:310.592700px;}
.y26{bottom:310.893105px;}
.y90{bottom:311.726250px;}
.ya6{bottom:313.076965px;}
.ya2{bottom:317.869135px;}
.y1aa{bottom:319.276800px;}
.y1f1{bottom:319.557690px;}
.y164{bottom:325.212000px;}
.ybf{bottom:326.161350px;}
.ya1{bottom:327.984760px;}
.yda{bottom:327.987600px;}
.y130{bottom:328.519650px;}
.y49{bottom:328.522305px;}
.y108{bottom:328.523850px;}
.y71{bottom:328.524450px;}
.y177{bottom:328.525350px;}
.y25{bottom:328.825755px;}
.y8f{bottom:329.658300px;}
.y1f0{bottom:333.006720px;}
.ya0{bottom:338.100385px;}
.y163{bottom:343.144050px;}
.ybe{bottom:344.094000px;}
.y1a9{bottom:345.021150px;}
.yd9{bottom:345.921450px;}
.y12f{bottom:346.452300px;}
.y48{bottom:346.454355px;}
.y70{bottom:346.457100px;}
.y1ef{bottom:346.457505px;}
.y107{bottom:346.457700px;}
.y176{bottom:346.459200px;}
.y24{bottom:346.758405px;}
.y8e{bottom:347.590350px;}
.y9f{bottom:348.216595px;}
.y9e{bottom:358.864840px;}
.y1ee{bottom:359.906535px;}
.ybd{bottom:362.026650px;}
.yd8{bottom:363.854100px;}
.y12e{bottom:364.384950px;}
.y47{bottom:364.388805px;}
.y106{bottom:364.390350px;}
.y6f{bottom:364.390950px;}
.y23{bottom:364.691055px;}
.y8d{bottom:365.524800px;}
.y9d{bottom:368.980465px;}
.y162{bottom:370.585200px;}
.y1ed{bottom:373.355565px;}
.y1a8{bottom:377.439300px;}
.ybc{bottom:379.959300px;}
.yd7{bottom:381.786750px;}
.y12d{bottom:382.318800px;}
.y46{bottom:382.321455px;}
.y6e{bottom:382.323600px;}
.y22{bottom:382.623705px;}
.y8c{bottom:383.457450px;}
.y1ec{bottom:386.805765px;}
.y161{bottom:388.517250px;}
.y105{bottom:389.274000px;}
.y1a7{bottom:395.371950px;}
.ybb{bottom:397.891950px;}
.yd6{bottom:399.719400px;}
.y12c{bottom:400.251450px;}
.y45{bottom:400.254105px;}
.y1eb{bottom:400.254795px;}
.y6d{bottom:400.256250px;}
.y8b{bottom:401.390100px;}
.y160{bottom:406.449300px;}
.y21{bottom:407.069055px;}
.y175{bottom:412.837200px;}
.y1a6{bottom:413.305800px;}
.y1ea{bottom:413.705580px;}
.yba{bottom:415.824600px;}
.yd5{bottom:417.652050px;}
.y12b{bottom:418.184100px;}
.y44{bottom:418.186755px;}
.y6c{bottom:418.188900px;}
.y8a{bottom:419.322750px;}
.y104{bottom:422.743350px;}
.y15f{bottom:424.381350px;}
.y1e9{bottom:427.154610px;}
.y1a5{bottom:431.238450px;}
.yb9{bottom:433.758450px;}
.yd4{bottom:435.584700px;}
.y12a{bottom:436.116750px;}
.y43{bottom:436.119405px;}
.y6b{bottom:436.120950px;}
.y89{bottom:437.255400px;}
.y174{bottom:438.840000px;}
.y1e8{bottom:440.603640px;}
.y103{bottom:440.676000px;}
.y20{bottom:441.798705px;}
.y15e{bottom:442.315800px;}
.y1a4{bottom:449.171100px;}
.yb8{bottom:451.691100px;}
.yd3{bottom:453.518550px;}
.y129{bottom:454.048800px;}
.y42{bottom:454.052055px;}
.y1e7{bottom:454.053840px;}
.y88{bottom:455.189250px;}
.y1f{bottom:456.743040px;}
.y102{bottom:458.608650px;}
.y15d{bottom:460.248450px;}
.y172{bottom:463.419000px;}
.y6a{bottom:466.701600px;}
.y1a3{bottom:467.103750px;}
.y1e6{bottom:467.502870px;}
.yb7{bottom:469.623750px;}
.yd2{bottom:471.450600px;}
.y128{bottom:471.471600px;}
.y41{bottom:471.985905px;}
.y1e{bottom:471.987990px;}
.y87{bottom:473.121900px;}
.y15c{bottom:478.181100px;}
.y1e5{bottom:480.951900px;}
.y69{bottom:484.634250px;}
.y1a2{bottom:485.036400px;}
.y101{bottom:485.095350px;}
.y1d{bottom:486.930570px;}
.yb6{bottom:487.556400px;}
.yd1{bottom:489.382650px;}
.y127{bottom:489.404250px;}
.y40{bottom:489.918555px;}
.y86{bottom:491.054550px;}
.y1e4{bottom:494.402685px;}
.y15b{bottom:496.113750px;}
.y1c{bottom:501.874905px;}
.y68{bottom:502.566900px;}
.y1a1{bottom:502.969050px;}
.yb5{bottom:505.488450px;}
.yd0{bottom:507.314700px;}
.y126{bottom:507.338100px;}
.y3f{bottom:507.851205px;}
.y1e3{bottom:507.851715px;}
.y85{bottom:508.987200px;}
.y15a{bottom:514.046400px;}
.y1b{bottom:516.819240px;}
.y100{bottom:518.563500px;}
.y67{bottom:520.500750px;}
.y1a0{bottom:520.902900px;}
.y1e2{bottom:521.301915px;}
.yb4{bottom:524.712450px;}
.ycf{bottom:525.246750px;}
.y125{bottom:525.270750px;}
.y3e{bottom:525.783855px;}
.y84{bottom:526.919850px;}
.y1a{bottom:531.762405px;}
.y159{bottom:531.979050px;}
.y1e1{bottom:534.750945px;}
.yff{bottom:536.496150px;}
.y66{bottom:538.433400px;}
.y19f{bottom:538.835550px;}
.yb3{bottom:542.645100px;}
.yce{bottom:543.178800px;}
.y124{bottom:543.203400px;}
.y3d{bottom:543.716505px;}
.y83{bottom:544.852500px;}
.y19{bottom:546.706740px;}
.y1e0{bottom:548.199975px;}
.y158{bottom:549.912900px;}
.yfe{bottom:554.430000px;}
.y65{bottom:556.366050px;}
.y19e{bottom:556.768200px;}
.yb2{bottom:560.577750px;}
.ycd{bottom:561.113250px;}
.y123{bottom:561.136050px;}
.y3c{bottom:561.649155px;}
.y1df{bottom:561.650175px;}
.y18{bottom:561.651075px;}
.y82{bottom:562.786350px;}
.y157{bottom:567.845550px;}
.yfd{bottom:572.362650px;}
.y64{bottom:574.298700px;}
.y19d{bottom:574.700850px;}
.y1de{bottom:575.099205px;}
.y17{bottom:576.594240px;}
.yb1{bottom:578.510400px;}
.y122{bottom:579.068700px;}
.y3b{bottom:579.583005px;}
.y81{bottom:580.719000px;}
.ycc{bottom:584.511450px;}
.y156{bottom:585.778200px;}
.y1dd{bottom:588.548235px;}
.yfc{bottom:590.295300px;}
.y16{bottom:591.539160px;}
.y63{bottom:592.231350px;}
.y19c{bottom:592.633500px;}
.yb0{bottom:596.443050px;}
.y121{bottom:597.001350px;}
.y173{bottom:597.327000px;}
.y3a{bottom:597.515055px;}
.y80{bottom:598.651650px;}
.y1dc{bottom:601.998435px;}
.y155{bottom:603.710850px;}
.y15{bottom:606.484080px;}
.yfb{bottom:608.227950px;}
.y62{bottom:610.164000px;}
.y19b{bottom:610.566150px;}
.ycb{bottom:614.373750px;}
.yaf{bottom:614.375700px;}
.y120{bottom:614.935200px;}
.y39{bottom:615.447105px;}
.y1db{bottom:615.447465px;}
.y14{bottom:621.427245px;}
.y154{bottom:621.643500px;}
.yfa{bottom:626.160600px;}
.y7f{bottom:628.096800px;}
.y61{bottom:628.097850px;}
.y19a{bottom:628.500000px;}
.y1da{bottom:628.896495px;}
.yca{bottom:632.305800px;}
.yae{bottom:632.310150px;}
.y11f{bottom:632.867850px;}
.y38{bottom:633.379155px;}
.y13{bottom:636.371580px;}
.y153{bottom:639.577350px;}
.y1d9{bottom:642.347280px;}
.yf9{bottom:644.093250px;}
.y60{bottom:646.030500px;}
.y7e{bottom:646.030650px;}
.y199{bottom:646.432050px;}
.y11e{bottom:650.800500px;}
.y37{bottom:651.311205px;}
.y12{bottom:651.315915px;}
.y1d8{bottom:655.796310px;}
.y152{bottom:657.510000px;}
.yf8{bottom:662.027100px;}
.y198{bottom:664.364700px;}
.y11{bottom:666.259080px;}
.y11d{bottom:668.732550px;}
.y36{bottom:669.245655px;}
.y1d7{bottom:669.246510px;}
.y151{bottom:675.442650px;}
.yf7{bottom:679.959750px;}
.y10{bottom:681.203415px;}
.y1d6{bottom:682.695540px;}
.y197{bottom:682.814700px;}
.yad{bottom:683.418000px;}
.y35{bottom:687.178305px;}
.y11c{bottom:690.862200px;}
.y150{bottom:693.375300px;}
.y1d5{bottom:696.144570px;}
.yf{bottom:696.146580px;}
.y5f{bottom:697.138350px;}
.yf6{bottom:697.892400px;}
.y196{bottom:700.746750px;}
.y34{bottom:705.110955px;}
.y1d4{bottom:709.595355px;}
.ye{bottom:711.091500px;}
.y14f{bottom:711.307950px;}
.y5e{bottom:715.071000px;}
.y11b{bottom:715.820850px;}
.yf5{bottom:715.825050px;}
.y9c{bottom:718.236035px;}
.y195{bottom:718.678800px;}
.y33{bottom:723.043605px;}
.y1d3{bottom:723.044385px;}
.yd{bottom:726.036420px;}
.y14e{bottom:729.240600px;}
.y11a{bottom:733.753500px;}
.yf4{bottom:733.757700px;}
.y1d2{bottom:736.493415px;}
.y194{bottom:736.613250px;}
.y32{bottom:740.976255px;}
.yc{bottom:740.979000px;}
.y58{bottom:746.966968px;}
.y14d{bottom:747.175050px;}
.y1d1{bottom:749.943615px;}
.y119{bottom:751.686150px;}
.yf3{bottom:751.690350px;}
.y193{bottom:754.545900px;}
.y1d0{bottom:763.392645px;}
.y14c{bottom:765.107700px;}
.y118{bottom:769.618800px;}
.yf2{bottom:769.624200px;}
.y192{bottom:772.478550px;}
.y171{bottom:776.713500px;}
.y1cf{bottom:776.843430px;}
.y14b{bottom:783.040350px;}
.y117{bottom:787.553250px;}
.yf1{bottom:787.556850px;}
.y1ce{bottom:790.292460px;}
.y191{bottom:790.411200px;}
.y14a{bottom:800.973000px;}
.y16f{bottom:801.294000px;}
.y1cd{bottom:803.741490px;}
.y116{bottom:805.485900px;}
.yf0{bottom:805.489500px;}
.yb{bottom:805.603800px;}
.y190{bottom:808.343850px;}
.y1cc{bottom:817.191690px;}
.y115{bottom:823.418550px;}
.yef{bottom:823.422150px;}
.ya{bottom:824.097150px;}
.y18f{bottom:826.277700px;}
.y1cb{bottom:830.640720px;}
.y149{bottom:837.702000px;}
.y9{bottom:842.811450px;}
.y1ca{bottom:844.089750px;}
.y18e{bottom:844.210350px;}
.y1c9{bottom:857.539950px;}
.y148{bottom:861.163500px;}
.y18d{bottom:862.143000px;}
.y1c8{bottom:870.988980px;}
.yee{bottom:874.530000px;}
.y18c{bottom:880.075650px;}
.y8{bottom:880.315500px;}
.y1c7{bottom:884.439180px;}
.y147{bottom:884.625000px;}
.y1c6{bottom:897.888210px;}
.y18b{bottom:898.008300px;}
.y7{bottom:898.808850px;}
.ye6{bottom:906.763476px;}
.y146{bottom:908.086500px;}
.y1c5{bottom:911.337240px;}
.y18a{bottom:915.940950px;}
.y6{bottom:917.523150px;}
.y1c4{bottom:924.787440px;}
.y189{bottom:933.874800px;}
.y170{bottom:935.202000px;}
.y1c3{bottom:938.236470px;}
.y145{bottom:939.037050px;}
.y1c2{bottom:951.685500px;}
.y188{bottom:951.807450px;}
.y5{bottom:955.027800px;}
.y1c1{bottom:965.136285px;}
.y144{bottom:969.505200px;}
.y4{bottom:973.521150px;}
.y187{bottom:977.551800px;}
.y1c0{bottom:978.585315px;}
.y143{bottom:987.437250px;}
.y1bf{bottom:992.034345px;}
.y3{bottom:992.234850px;}
.y142{bottom:1005.369300px;}
.y1be{bottom:1005.484545px;}
.y186{bottom:1009.969950px;}
.y1bd{bottom:1018.933575px;}
.y141{bottom:1023.301350px;}
.y185{bottom:1027.902600px;}
.y1bc{bottom:1032.384360px;}
.y2{bottom:1039.309650px;}
.y140{bottom:1041.233400px;}
.y1bb{bottom:1045.833390px;}
.y184{bottom:1045.835250px;}
.y13f{bottom:1059.167850px;}
.y1ba{bottom:1059.282420px;}
.y183{bottom:1063.767900px;}
.y1b9{bottom:1072.732620px;}
.y13e{bottom:1077.100500px;}
.y1{bottom:1081.152000px;}
.y182{bottom:1081.700550px;}
.y1b8{bottom:1086.181650px;}
.y1b7{bottom:1099.630680px;}
.y13d{bottom:1099.635000px;}
.y57{bottom:1165.751955px;}
.he{height:21.706237px;}
.hf{height:24.807153px;}
.hd{height:24.823791px;}
.h11{height:25.183208px;}
.h12{height:28.063208px;}
.h19{height:32.661429px;}
.ha{height:32.676663px;}
.h15{height:32.900532px;}
.h1b{height:33.139572px;}
.h1a{height:33.141912px;}
.h13{height:33.187455px;}
.h14{height:35.865405px;}
.h8{height:36.468750px;}
.h16{height:37.013299px;}
.h7{height:37.336090px;}
.h6{height:37.605082px;}
.h3{height:40.826735px;}
.h4{height:41.125613px;}
.h18{height:41.126213px;}
.h17{height:41.128013px;}
.h2{height:45.238298px;}
.h5{height:45.566438px;}
.hb{height:59.606343px;}
.h1{height:98.701677px;}
.h10{height:193.907995px;}
.h9{height:354.907508px;}
.hc{height:380.742005px;}
.h0{height:1188.000000px;}
.w3{width:576.898499px;}
.w2{width:641.921997px;}
.w1{width:642.616479px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3b{left:2.845492px;}
.x3c{left:7.889827px;}
.x31{left:11.183849px;}
.x26{left:15.045751px;}
.x32{left:24.676814px;}
.x2d{left:38.120849px;}
.x33{left:39.834463px;}
.x3{left:65.678895px;}
.xf{left:73.446660px;}
.x51{left:79.423680px;}
.x10{left:84.654465px;}
.x5{left:87.090195px;}
.x20{left:88.388925px;}
.x1a{left:92.483700px;}
.x46{left:94.993350px;}
.x39{left:96.409650px;}
.x2{left:99.952695px;}
.x4{left:106.508745px;}
.x1{left:111.985500px;}
.x3f{left:113.003993px;}
.x19{left:120.908700px;}
.x44{left:131.053650px;}
.x41{left:134.695200px;}
.x45{left:136.197165px;}
.x25{left:137.483249px;}
.x2e{left:155.858849px;}
.x43{left:159.403935px;}
.x34{left:162.155849px;}
.x42{left:165.711000px;}
.x3a{left:170.670008px;}
.x4a{left:177.304500px;}
.x2f{left:193.419149px;}
.x21{left:203.429055px;}
.x24{left:217.019985px;}
.x50{left:219.897225px;}
.x3e{left:224.939993px;}
.x47{left:238.354500px;}
.x40{left:251.736000px;}
.x13{left:261.571365px;}
.x12{left:278.053815px;}
.x1b{left:291.866970px;}
.x48{left:307.908000px;}
.x8{left:313.626345px;}
.x6{left:317.944695px;}
.x7{left:319.432980px;}
.x11{left:321.949965px;}
.x35{left:325.648138px;}
.x27{left:361.457252px;}
.x28{left:364.893752px;}
.x49{left:377.461500px;}
.x36{left:380.545138px;}
.x29{left:383.285701px;}
.x3d{left:390.565493px;}
.x2a{left:418.009500px;}
.x30{left:432.821849px;}
.x22{left:467.967525px;}
.x2b{left:470.076000px;}
.x2c{left:471.667500px;}
.x52{left:473.944830px;}
.x23{left:482.910105px;}
.x4c{left:487.668000px;}
.x1d{left:493.473075px;}
.x53{left:495.356130px;}
.xa{left:502.056060px;}
.x9{left:508.531845px;}
.x14{left:511.618365px;}
.x4f{left:513.643500px;}
.x54{left:519.935325px;}
.xb{left:521.983860px;}
.x1c{left:524.504970px;}
.x37{left:526.094849px;}
.x15{left:531.856665px;}
.x38{left:537.300313px;}
.x4d{left:538.786500px;}
.x4e{left:559.693500px;}
.x55{left:608.588295px;}
.x4b{left:633.019500px;}
.x56{left:634.767930px;}
.x18{left:654.961515px;}
.x16{left:660.466365px;}
.xd{left:674.688810px;}
.xe{left:675.951510px;}
.x1f{left:677.569425px;}
.xc{left:695.109360px;}
.x1e{left:700.128075px;}
.x17{left:711.112515px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.560000pt;}
.v1{vertical-align:23.937493pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.741508pt;}
.ls8{letter-spacing:1.920672pt;}
.lsb{letter-spacing:2.655551pt;}
.ls1{letter-spacing:2.656000pt;}
.ls2{letter-spacing:2.658529pt;}
.ls4{letter-spacing:12.557844pt;}
.ls9{letter-spacing:16.562642pt;}
.ls7{letter-spacing:26.607008pt;}
.ls6{letter-spacing:234.783958pt;}
.ls5{letter-spacing:260.757292pt;}
.ls3{letter-spacing:319.594427pt;}
.ws9{word-spacing:-11.955200pt;}
.ws14a{word-spacing:-10.626787pt;}
.ws8c{word-spacing:-8.420183pt;}
.ws72{word-spacing:-2.709134pt;}
.ws8{word-spacing:-0.058447pt;}
.ws4{word-spacing:-0.053134pt;}
.ws21{word-spacing:-0.042507pt;}
.ws55{word-spacing:0.000000pt;}
.ws181{word-spacing:2.805742pt;}
.ws177{word-spacing:3.825475pt;}
.ws14b{word-spacing:4.250008pt;}
.ws185{word-spacing:4.250542pt;}
.ws169{word-spacing:4.251075pt;}
.ws16f{word-spacing:4.251608pt;}
.ws16e{word-spacing:4.590275pt;}
.ws17c{word-spacing:5.186008pt;}
.wsa3{word-spacing:5.312266pt;}
.ws3{word-spacing:5.312798pt;}
.wsb5{word-spacing:5.313332pt;}
.ws195{word-spacing:7.013207pt;}
.ws173{word-spacing:7.651607pt;}
.ws18a{word-spacing:8.160940pt;}
.ws168{word-spacing:8.586007pt;}
.ws155{word-spacing:8.756673pt;}
.ws196{word-spacing:10.202006pt;}
.ws182{word-spacing:10.243606pt;}
.ws15f{word-spacing:10.584406pt;}
.ws166{word-spacing:11.051889pt;}
.ws156{word-spacing:11.391339pt;}
.ws191{word-spacing:11.477739pt;}
.ws1d{word-spacing:11.477866pt;}
.ws63{word-spacing:12.167665pt;}
.wsbf{word-spacing:12.221532pt;}
.ws3d{word-spacing:12.273798pt;}
.ws165{word-spacing:12.284955pt;}
.ws47{word-spacing:12.432732pt;}
.ws4f{word-spacing:12.592199pt;}
.ws175{word-spacing:12.666288pt;}
.ws129{word-spacing:12.699932pt;}
.ws18{word-spacing:12.719112pt;}
.ws8d{word-spacing:12.751665pt;}
.ws15e{word-spacing:12.794289pt;}
.ws39{word-spacing:12.858865pt;}
.ws132{word-spacing:12.965532pt;}
.wse0{word-spacing:13.017265pt;}
.ws16c{word-spacing:13.092955pt;}
.ws13{word-spacing:13.151112pt;}
.wsbb{word-spacing:13.284465pt;}
.ws11d{word-spacing:13.336198pt;}
.ws180{word-spacing:13.390555pt;}
.ws13b{word-spacing:13.442332pt;}
.wsa2{word-spacing:13.496199pt;}
.ws81{word-spacing:13.549532pt;}
.ws11c{word-spacing:13.760732pt;}
.wsf7{word-spacing:13.761265pt;}
.wsd3{word-spacing:13.761798pt;}
.wsa6{word-spacing:13.762332pt;}
.wscb{word-spacing:13.814065pt;}
.ws121{word-spacing:13.814599pt;}
.ws12a{word-spacing:13.815665pt;}
.ws17a{word-spacing:13.899355pt;}
.wsf5{word-spacing:13.920732pt;}
.ws4a{word-spacing:13.921265pt;}
.ws66{word-spacing:13.972999pt;}
.ws3f{word-spacing:14.186865pt;}
.ws15b{word-spacing:14.282288pt;}
.ws10c{word-spacing:14.292465pt;}
.ws111{word-spacing:14.345799pt;}
.ws107{word-spacing:14.346332pt;}
.ws176{word-spacing:14.409221pt;}
.wsb3{word-spacing:14.451932pt;}
.ws91{word-spacing:14.504732pt;}
.ws40{word-spacing:14.558598pt;}
.ws120{word-spacing:14.559132pt;}
.ws6b{word-spacing:14.610865pt;}
.ws10f{word-spacing:14.611932pt;}
.ws170{word-spacing:14.750021pt;}
.ws124{word-spacing:14.769798pt;}
.ws134{word-spacing:14.823665pt;}
.ws14c{word-spacing:14.833754pt;}
.wsfd{word-spacing:14.834288pt;}
.wsfb{word-spacing:14.834821pt;}
.wsfc{word-spacing:14.835354pt;}
.ws158{word-spacing:14.835888pt;}
.wsa9{word-spacing:14.877532pt;}
.wsee{word-spacing:14.929798pt;}
.ws192{word-spacing:14.963071pt;}
.ws9e{word-spacing:15.035932pt;}
.ws101{word-spacing:15.090332pt;}
.ws104{word-spacing:15.142598pt;}
.ws67{word-spacing:15.196465pt;}
.ws16d{word-spacing:15.217754pt;}
.ws128{word-spacing:15.249265pt;}
.ws10d{word-spacing:15.302598pt;}
.ws133{word-spacing:15.354865pt;}
.ws12{word-spacing:15.397512pt;}
.ws48{word-spacing:15.408732pt;}
.wsdf{word-spacing:15.460998pt;}
.wsc{word-spacing:15.493512pt;}
.ws1a{word-spacing:15.733512pt;}
.ws17b{word-spacing:15.769221pt;}
.wsd1{word-spacing:15.780465pt;}
.ws14e{word-spacing:15.812954pt;}
.ws74{word-spacing:15.854021pt;}
.ws73{word-spacing:15.854554pt;}
.ws71{word-spacing:15.855087pt;}
.ws131{word-spacing:15.887132pt;}
.wsfa{word-spacing:15.896687pt;}
.ws88{word-spacing:15.992198pt;}
.ws9a{word-spacing:15.993798pt;}
.ws17{word-spacing:16.115379pt;}
.ws11{word-spacing:16.163379pt;}
.ws178{word-spacing:16.195354pt;}
.ws17f{word-spacing:16.236954pt;}
.ws18c{word-spacing:16.322287pt;}
.ws188{word-spacing:16.407087pt;}
.wsaa{word-spacing:16.417798pt;}
.wse6{word-spacing:16.418865pt;}
.ws87{word-spacing:16.419398pt;}
.ws1b{word-spacing:16.450312pt;}
.ws80{word-spacing:16.470598pt;}
.ws11e{word-spacing:16.471132pt;}
.ws11f{word-spacing:16.471665pt;}
.ws16b{word-spacing:16.534554pt;}
.ws12f{word-spacing:16.577265pt;}
.ws10e{word-spacing:16.578332pt;}
.ws12b{word-spacing:16.630065pt;}
.ws6c{word-spacing:16.683932pt;}
.ws118{word-spacing:16.689245pt;}
.ws119{word-spacing:16.690312pt;}
.ws44{word-spacing:16.789531pt;}
.ws95{word-spacing:16.843398pt;}
.wsf6{word-spacing:16.844465pt;}
.ws8a{word-spacing:16.896198pt;}
.ws3e{word-spacing:16.896732pt;}
.ws164{word-spacing:16.960153pt;}
.ws10{word-spacing:17.072179pt;}
.ws6f{word-spacing:17.215665pt;}
.ws82{word-spacing:17.268998pt;}
.wsdd{word-spacing:17.533531pt;}
.ws45{word-spacing:17.534065pt;}
.ws171{word-spacing:17.597487pt;}
.ws9d{word-spacing:17.640732pt;}
.wseb{word-spacing:17.746332pt;}
.ws75{word-spacing:17.746865pt;}
.wsd2{word-spacing:17.852465pt;}
.ws12c{word-spacing:17.853532pt;}
.ws1f{word-spacing:17.883912pt;}
.ws1c{word-spacing:17.886046pt;}
.wsc0{word-spacing:17.906331pt;}
.ws15a{word-spacing:17.937753pt;}
.wsf{word-spacing:17.980446pt;}
.ws18b{word-spacing:17.981487pt;}
.wsd9{word-spacing:18.012998pt;}
.wsa1{word-spacing:18.065265pt;}
.ws27{word-spacing:18.171398pt;}
.ws4c{word-spacing:18.224198pt;}
.ws174{word-spacing:18.234820pt;}
.wse1{word-spacing:18.437531pt;}
.ws94{word-spacing:18.489798pt;}
.ws106{word-spacing:18.490865pt;}
.ws70{word-spacing:18.542598pt;}
.ws56{word-spacing:18.543131pt;}
.ws9f{word-spacing:18.543665pt;}
.ws41{word-spacing:18.544198pt;}
.ws2f{word-spacing:18.544732pt;}
.ws154{word-spacing:18.576153pt;}
.wsec{word-spacing:18.596465pt;}
.ws123{word-spacing:18.596998pt;}
.ws138{word-spacing:18.650332pt;}
.wsb2{word-spacing:18.650865pt;}
.ws98{word-spacing:18.703132pt;}
.ws79{word-spacing:18.703665pt;}
.ws189{word-spacing:18.745753pt;}
.ws194{word-spacing:18.873219pt;}
.ws2c{word-spacing:18.914865pt;}
.wsa4{word-spacing:18.915398pt;}
.ws89{word-spacing:18.968731pt;}
.wsb9{word-spacing:18.969265pt;}
.ws15c{word-spacing:19.043353pt;}
.wsd8{word-spacing:19.075398pt;}
.ws4e{word-spacing:19.128198pt;}
.ws167{word-spacing:19.171353pt;}
.ws8b{word-spacing:19.180998pt;}
.ws86{word-spacing:19.234332pt;}
.ws163{word-spacing:19.255086pt;}
.ws184{word-spacing:19.255619pt;}
.ws60{word-spacing:19.287131pt;}
.ws7b{word-spacing:19.288198pt;}
.ws186{word-spacing:19.383619pt;}
.wsbc{word-spacing:19.394332pt;}
.ws187{word-spacing:19.425219pt;}
.ws38{word-spacing:19.446598pt;}
.ws26{word-spacing:19.605531pt;}
.ws116{word-spacing:19.606598pt;}
.ws12e{word-spacing:19.659398pt;}
.ws58{word-spacing:19.712731pt;}
.ws7e{word-spacing:19.713265pt;}
.ws5d{word-spacing:19.764998pt;}
.wsf9{word-spacing:19.765531pt;}
.ws19{word-spacing:19.844446pt;}
.wsa{word-spacing:19.892446pt;}
.wsc8{word-spacing:19.925532pt;}
.ws108{word-spacing:19.977265pt;}
.wsf4{word-spacing:19.977798pt;}
.ws10a{word-spacing:20.083932pt;}
.ws150{word-spacing:20.105752pt;}
.ws143{word-spacing:20.138865pt;}
.ws7f{word-spacing:20.190065pt;}
.ws37{word-spacing:20.190598pt;}
.ws14d{word-spacing:20.318553pt;}
.ws179{word-spacing:20.360153pt;}
.ws2{word-spacing:20.397014pt;}
.ws6{word-spacing:20.397548pt;}
.ws5{word-spacing:20.398081pt;}
.ws7{word-spacing:20.398614pt;}
.ws126{word-spacing:20.402864pt;}
.wsb1{word-spacing:20.456732pt;}
.ws15{word-spacing:20.514845pt;}
.ws18f{word-spacing:20.573486pt;}
.ws10b{word-spacing:20.615665pt;}
.ws130{word-spacing:20.721798pt;}
.wsdc{word-spacing:20.775131pt;}
.ws29{word-spacing:20.775664pt;}
.ws183{word-spacing:20.828419pt;}
.ws151{word-spacing:20.870552pt;}
.ws18e{word-spacing:20.998019pt;}
.wsc9{word-spacing:21.041798pt;}
.wsae{word-spacing:21.094598pt;}
.ws160{word-spacing:21.126019pt;}
.wsde{word-spacing:21.146332pt;}
.ws84{word-spacing:21.200731pt;}
.ws30{word-spacing:21.252465pt;}
.ws193{word-spacing:21.254019pt;}
.ws90{word-spacing:21.254065pt;}
.ws54{word-spacing:21.306331pt;}
.wsf8{word-spacing:21.307398pt;}
.ws172{word-spacing:21.338285pt;}
.ws100{word-spacing:21.359131pt;}
.ws148{word-spacing:21.381485pt;}
.wsa0{word-spacing:21.412465pt;}
.ws153{word-spacing:21.508419pt;}
.ws13c{word-spacing:21.518598pt;}
.wsab{word-spacing:21.571398pt;}
.ws4d{word-spacing:21.571931pt;}
.ws136{word-spacing:21.678064pt;}
.ws15d{word-spacing:21.679619pt;}
.ws49{word-spacing:21.731398pt;}
.ws32{word-spacing:21.837531pt;}
.ws92{word-spacing:21.838064pt;}
.ws152{word-spacing:21.933485pt;}
.wsc5{word-spacing:21.944198pt;}
.ws157{word-spacing:21.976152pt;}
.ws13f{word-spacing:21.996998pt;}
.ws190{word-spacing:22.017752pt;}
.ws5c{word-spacing:22.050331pt;}
.ws141{word-spacing:22.155931pt;}
.wsd4{word-spacing:22.156465pt;}
.ws7a{word-spacing:22.156998pt;}
.wsa7{word-spacing:22.157531pt;}
.wsca{word-spacing:22.262065pt;}
.ws62{word-spacing:22.315398pt;}
.ws122{word-spacing:22.368198pt;}
.wsc3{word-spacing:22.369264pt;}
.ws139{word-spacing:22.422598pt;}
.wse5{word-spacing:22.529265pt;}
.ws103{word-spacing:22.582064pt;}
.ws8f{word-spacing:22.635398pt;}
.wse8{word-spacing:22.635931pt;}
.wsd6{word-spacing:22.688731pt;}
.ws162{word-spacing:22.742018pt;}
.wse4{word-spacing:22.848198pt;}
.ws2d{word-spacing:22.952731pt;}
.ws76{word-spacing:22.953265pt;}
.ws17e{word-spacing:22.995885pt;}
.wsac{word-spacing:23.006065pt;}
.ws83{word-spacing:23.006598pt;}
.ws5b{word-spacing:23.007131pt;}
.ws85{word-spacing:23.059398pt;}
.ws64{word-spacing:23.167131pt;}
.ws127{word-spacing:23.219398pt;}
.wse3{word-spacing:23.325531pt;}
.ws17d{word-spacing:23.378818pt;}
.ws3c{word-spacing:23.379398pt;}
.ws1e{word-spacing:23.384179pt;}
.ws35{word-spacing:23.431664pt;}
.ws51{word-spacing:23.485531pt;}
.wsfe{word-spacing:23.486064pt;}
.ws13d{word-spacing:23.537798pt;}
.ws93{word-spacing:23.538331pt;}
.ws57{word-spacing:23.538865pt;}
.wsc4{word-spacing:23.592731pt;}
.wsf0{word-spacing:23.643931pt;}
.wsa8{word-spacing:23.698331pt;}
.ws125{word-spacing:23.804998pt;}
.ws3a{word-spacing:23.856731pt;}
.ws61{word-spacing:23.857264pt;}
.ws14f{word-spacing:23.888151pt;}
.wscc{word-spacing:23.909531pt;}
.ws6d{word-spacing:23.911131pt;}
.wsbe{word-spacing:23.963398pt;}
.wsd5{word-spacing:24.068998pt;}
.ws96{word-spacing:24.228465pt;}
.ws161{word-spacing:24.271618pt;}
.wsb0{word-spacing:24.281798pt;}
.ws5a{word-spacing:24.442331pt;}
.ws18d{word-spacing:24.483351pt;}
.wsed{word-spacing:24.600731pt;}
.ws159{word-spacing:24.611351pt;}
.ws33{word-spacing:24.653531pt;}
.ws36{word-spacing:24.654064pt;}
.ws5f{word-spacing:24.655131pt;}
.ws2b{word-spacing:24.706331pt;}
.wsc2{word-spacing:24.706864pt;}
.ws110{word-spacing:24.760731pt;}
.ws99{word-spacing:24.813531pt;}
.wsc6{word-spacing:24.920198pt;}
.ws16a{word-spacing:24.951084pt;}
.wsb{word-spacing:24.962312pt;}
.ws135{word-spacing:24.973531pt;}
.ws12d{word-spacing:25.026331pt;}
.wsb6{word-spacing:25.079664pt;}
.ws25{word-spacing:25.131931pt;}
.wsaf{word-spacing:25.184198pt;}
.ws4b{word-spacing:25.185264pt;}
.ws24{word-spacing:25.398598pt;}
.ws78{word-spacing:25.450864pt;}
.ws52{word-spacing:25.556464pt;}
.ws145{word-spacing:25.557531pt;}
.wsc7{word-spacing:25.610331pt;}
.ws11b{word-spacing:25.611398pt;}
.wsd{word-spacing:25.680179pt;}
.ws59{word-spacing:25.823131pt;}
.ws109{word-spacing:25.876998pt;}
.ws149{word-spacing:26.014551pt;}
.wscd{word-spacing:26.354331pt;}
.ws2a{word-spacing:26.354864pt;}
.wse7{word-spacing:26.406598pt;}
.ws77{word-spacing:26.460464pt;}
.ws13e{word-spacing:26.513264pt;}
.ws147{word-spacing:26.525484pt;}
.wse{word-spacing:26.588446pt;}
.ws6e{word-spacing:26.672197pt;}
.wsea{word-spacing:26.673798pt;}
.ws9c{word-spacing:26.725531pt;}
.ws53{word-spacing:26.779398pt;}
.ws5e{word-spacing:26.779931pt;}
.wsba{word-spacing:26.832198pt;}
.wsd7{word-spacing:26.832731pt;}
.ws7c{word-spacing:26.937798pt;}
.wsdb{word-spacing:26.992198pt;}
.ws68{word-spacing:27.044464pt;}
.ws2e{word-spacing:27.150598pt;}
.ws102{word-spacing:27.257264pt;}
.wsff{word-spacing:27.311664pt;}
.wsf2{word-spacing:27.364998pt;}
.wsb7{word-spacing:27.681798pt;}
.ws14{word-spacing:27.688179pt;}
.ws11a{word-spacing:27.841264pt;}
.ws43{word-spacing:27.894597pt;}
.wsf1{word-spacing:27.895131pt;}
.ws16{word-spacing:28.022579pt;}
.wsc1{word-spacing:28.054598pt;}
.ws105{word-spacing:28.106864pt;}
.ws3b{word-spacing:28.159664pt;}
.ws137{word-spacing:28.160731pt;}
.ws34{word-spacing:28.213531pt;}
.wse2{word-spacing:28.267397pt;}
.ws117{word-spacing:28.372998pt;}
.ws31{word-spacing:28.427398pt;}
.ws6a{word-spacing:28.479131pt;}
.wsb8{word-spacing:28.479664pt;}
.ws28{word-spacing:28.480197pt;}
.wscf{word-spacing:28.691931pt;}
.ws50{word-spacing:28.746331pt;}
.wsda{word-spacing:28.904730pt;}
.wsf3{word-spacing:29.169264pt;}
.ws20{word-spacing:29.169797pt;}
.ws69{word-spacing:29.223131pt;}
.ws65{word-spacing:29.223664pt;}
.wsd0{word-spacing:29.543131pt;}
.ws146{word-spacing:29.648198pt;}
.ws42{word-spacing:29.700997pt;}
.ws142{word-spacing:29.702064pt;}
.wsa5{word-spacing:29.754331pt;}
.ws23{word-spacing:29.914864pt;}
.ws13a{word-spacing:30.073264pt;}
.ws140{word-spacing:30.127664pt;}
.ws8e{word-spacing:30.658864pt;}
.wsef{word-spacing:30.711131pt;}
.wse9{word-spacing:30.976197pt;}
.ws9b{word-spacing:31.296197pt;}
.ws97{word-spacing:31.296731pt;}
.wsad{word-spacing:31.614064pt;}
.ws46{word-spacing:31.879664pt;}
.wsbd{word-spacing:32.251397pt;}
.ws7d{word-spacing:32.623664pt;}
.ws115{word-spacing:32.676464pt;}
.wsce{word-spacing:32.784197pt;}
.wsb4{word-spacing:33.686597pt;}
.ws144{word-spacing:36.025797pt;}
.ws197{word-spacing:38.639079pt;}
.ws1{word-spacing:44.503938pt;}
.ws0{word-spacing:44.505004pt;}
.ws112{word-spacing:44.700187pt;}
.ws22{word-spacing:46.492463pt;}
.ws113{word-spacing:113.051679pt;}
.ws114{word-spacing:172.871320pt;}
._2{margin-left:-10.197336pt;}
._f{margin-left:-6.853866pt;}
._4{margin-left:-5.579199pt;}
._1{margin-left:-4.462930pt;}
._6{margin-left:-3.507199pt;}
._3{margin-left:-2.178134pt;}
._0{margin-left:-1.274133pt;}
._a{width:2.076864pt;}
._5{width:3.240250pt;}
._16{width:13.335999pt;}
._7{width:14.634134pt;}
._19{width:15.887999pt;}
._1d{width:16.898667pt;}
._b{width:19.127999pt;}
._9{width:20.781867pt;}
._1f{width:21.678399pt;}
._24{width:23.198393pt;}
._29{width:24.143991pt;}
._10{width:26.093864pt;}
._8{width:27.525333pt;}
._26{width:29.584523pt;}
._20{width:30.659198pt;}
._15{width:32.251732pt;}
._28{width:33.670387pt;}
._21{width:34.854921pt;}
._2a{width:39.627188pt;}
._22{width:40.742386pt;}
._27{width:41.653852pt;}
._2b{width:43.486379pt;}
._18{width:44.421330pt;}
._25{width:48.394225pt;}
._23{width:54.496292pt;}
._d{width:65.107230pt;}
._c{width:70.151499pt;}
._11{width:87.917289pt;}
._1a{width:91.293288pt;}
._12{width:106.848480pt;}
._1e{width:119.573472pt;}
._13{width:125.777537pt;}
._14{width:144.709462pt;}
._e{width:177.442458pt;}
._1c{width:240.377973pt;}
._1b{width:326.389093pt;}
._17{width:1122.778207pt;}
.fs8{font-size:26.502347pt;}
.fs7{font-size:30.288427pt;}
.fs9{font-size:30.747573pt;}
.fs6{font-size:39.896747pt;}
.fs4{font-size:42.507147pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447413pt;}
.fs0{font-size:127.521547pt;}
.y0{bottom:0.000000pt;}
.yed{bottom:3.497355pt;}
.yec{bottom:6.060021pt;}
.y5b{bottom:6.249948pt;}
.yeb{bottom:6.700021pt;}
.ya9{bottom:9.008116pt;}
.yac{bottom:13.266863pt;}
.yaa{bottom:17.998636pt;}
.ya8{bottom:17.999783pt;}
.y5a{bottom:18.218695pt;}
.yab{bottom:22.731969pt;}
.ye8{bottom:25.917021pt;}
.ya7{bottom:26.991969pt;}
.ye7{bottom:35.525355pt;}
.y56{bottom:42.130893pt;}
.ya4{bottom:68.165303pt;}
.y13c{bottom:100.733200pt;}
.y114{bottom:100.736933pt;}
.y1b6{bottom:100.737493pt;}
.y31{bottom:100.737560pt;}
.yc9{bottom:100.737600pt;}
.ye5{bottom:100.738000pt;}
.y55{bottom:100.738760pt;}
.y16e{bottom:100.739867pt;}
.y7d{bottom:100.740133pt;}
.y9b{bottom:100.740267pt;}
.y1b5{bottom:112.693227pt;}
.y13b{bottom:116.673333pt;}
.y113{bottom:116.677067pt;}
.ye4{bottom:116.677600pt;}
.yc8{bottom:116.677733pt;}
.y54{bottom:116.678360pt;}
.y30{bottom:116.679293pt;}
.y7c{bottom:116.680267pt;}
.y9a{bottom:116.680400pt;}
.y16d{bottom:116.681067pt;}
.y181{bottom:116.681333pt;}
.y1b4{bottom:124.647920pt;}
.yea{bottom:129.049835pt;}
.y13a{bottom:132.613467pt;}
.y53{bottom:132.617960pt;}
.y112{bottom:132.618267pt;}
.y99{bottom:132.620533pt;}
.y16c{bottom:132.621200pt;}
.y7b{bottom:132.621467pt;}
.y2f{bottom:132.885560pt;}
.y1b3{bottom:136.602613pt;}
.ye3{bottom:137.477600pt;}
.ye9{bottom:138.658688pt;}
.ya5{bottom:138.680369pt;}
.y1fd{bottom:140.588213pt;}
.yc7{bottom:143.682933pt;}
.y139{bottom:148.555200pt;}
.y111{bottom:148.558400pt;}
.y52{bottom:148.559693pt;}
.y7a{bottom:148.561067pt;}
.y16b{bottom:148.561333pt;}
.y180{bottom:148.561600pt;}
.y98{bottom:148.561733pt;}
.y1b2{bottom:148.813547pt;}
.y2e{bottom:148.825693pt;}
.y1fc{bottom:152.544467pt;}
.y1b1{bottom:160.769280pt;}
.ye2{bottom:164.021867pt;}
.y138{bottom:164.495333pt;}
.y110{bottom:164.498533pt;}
.y1fb{bottom:164.498627pt;}
.y51{bottom:164.499827pt;}
.y79{bottom:164.500667pt;}
.y17f{bottom:164.501733pt;}
.y97{bottom:164.501867pt;}
.y2d{bottom:164.767427pt;}
.y1b0{bottom:172.723973pt;}
.y1fa{bottom:176.454880pt;}
.yc6{bottom:178.337600pt;}
.ye1{bottom:179.962000pt;}
.y137{bottom:180.435467pt;}
.y10f{bottom:180.438667pt;}
.y50{bottom:180.439960pt;}
.y78{bottom:180.440267pt;}
.y17e{bottom:180.441200pt;}
.y96{bottom:180.442000pt;}
.y2c{bottom:180.707560pt;}
.y16a{bottom:183.992000pt;}
.y1af{bottom:184.678667pt;}
.y5d{bottom:186.449948pt;}
.y1f9{bottom:188.409573pt;}
.yc5{bottom:194.279333pt;}
.ye0{bottom:195.902133pt;}
.y136{bottom:196.375600pt;}
.y10e{bottom:196.378800pt;}
.y77{bottom:196.379867pt;}
.y4f{bottom:196.380093pt;}
.y17d{bottom:196.381200pt;}
.y95{bottom:196.382133pt;}
.y2b{bottom:196.647693pt;}
.y59{bottom:197.421361pt;}
.y5c{bottom:198.418695pt;}
.y1f8{bottom:200.364267pt;}
.y169{bottom:204.847973pt;}
.y1ae{bottom:207.165600pt;}
.yc4{bottom:210.219467pt;}
.ydf{bottom:211.842267pt;}
.y135{bottom:212.315733pt;}
.y10d{bottom:212.318933pt;}
.y76{bottom:212.319467pt;}
.y4e{bottom:212.320227pt;}
.y1f7{bottom:212.320520pt;}
.y17c{bottom:212.322933pt;}
.y2a{bottom:212.587827pt;}
.y94{bottom:213.330000pt;}
.y168{bottom:216.802667pt;}
.y1f6{bottom:224.275213pt;}
.yc3{bottom:226.159600pt;}
.yde{bottom:227.784000pt;}
.y134{bottom:228.255867pt;}
.y10c{bottom:228.260667pt;}
.y75{bottom:228.261200pt;}
.y4d{bottom:228.261427pt;}
.y17b{bottom:228.262533pt;}
.y29{bottom:228.527960pt;}
.y93{bottom:229.271200pt;}
.y1ad{bottom:235.981200pt;}
.y1f5{bottom:236.229907pt;}
.y167{bottom:237.657053pt;}
.yc2{bottom:242.099733pt;}
.ydd{bottom:243.724133pt;}
.y133{bottom:244.197067pt;}
.y10b{bottom:244.200800pt;}
.y4c{bottom:244.201027pt;}
.y74{bottom:244.201333pt;}
.y17a{bottom:244.202133pt;}
.y28{bottom:244.468093pt;}
.y92{bottom:245.210800pt;}
.y1f4{bottom:248.186160pt;}
.y166{bottom:249.613307pt;}
.y1ac{bottom:251.921333pt;}
.yc1{bottom:258.039867pt;}
.ydc{bottom:259.664267pt;}
.y132{bottom:260.137200pt;}
.y4b{bottom:260.140627pt;}
.y1f3{bottom:260.140853pt;}
.y10a{bottom:260.140933pt;}
.y73{bottom:260.141467pt;}
.y179{bottom:260.142267pt;}
.y27{bottom:260.409293pt;}
.y91{bottom:261.150400pt;}
.y165{bottom:261.568000pt;}
.y1ab{bottom:267.861467pt;}
.y1f2{bottom:272.096587pt;}
.ya3{bottom:273.558156pt;}
.yc0{bottom:273.980000pt;}
.ydb{bottom:275.604400pt;}
.y131{bottom:276.077333pt;}
.y4a{bottom:276.080227pt;}
.y109{bottom:276.081067pt;}
.y72{bottom:276.081600pt;}
.y178{bottom:276.082400pt;}
.y26{bottom:276.349427pt;}
.y90{bottom:277.090000pt;}
.ya6{bottom:278.290636pt;}
.ya2{bottom:282.550343pt;}
.y1aa{bottom:283.801600pt;}
.y1f1{bottom:284.051280pt;}
.y164{bottom:289.077333pt;}
.ybf{bottom:289.921200pt;}
.ya1{bottom:291.542009pt;}
.yda{bottom:291.544533pt;}
.y130{bottom:292.017467pt;}
.y49{bottom:292.019827pt;}
.y108{bottom:292.021200pt;}
.y71{bottom:292.021733pt;}
.y177{bottom:292.022533pt;}
.y25{bottom:292.289560pt;}
.y8f{bottom:293.029600pt;}
.y1f0{bottom:296.005973pt;}
.ya0{bottom:300.533676pt;}
.y163{bottom:305.016933pt;}
.ybe{bottom:305.861333pt;}
.y1a9{bottom:306.685467pt;}
.yd9{bottom:307.485733pt;}
.y12f{bottom:307.957600pt;}
.y48{bottom:307.959427pt;}
.y70{bottom:307.961867pt;}
.y1ef{bottom:307.962227pt;}
.y107{bottom:307.962400pt;}
.y176{bottom:307.963733pt;}
.y24{bottom:308.229693pt;}
.y8e{bottom:308.969200pt;}
.y9f{bottom:309.525863pt;}
.y9e{bottom:318.990969pt;}
.y1ee{bottom:319.916920pt;}
.ybd{bottom:321.801467pt;}
.yd8{bottom:323.425867pt;}
.y12e{bottom:323.897733pt;}
.y47{bottom:323.901160pt;}
.y106{bottom:323.902533pt;}
.y6f{bottom:323.903067pt;}
.y23{bottom:324.169827pt;}
.y8d{bottom:324.910933pt;}
.y9d{bottom:327.982636pt;}
.y162{bottom:329.409067pt;}
.y1ed{bottom:331.871613pt;}
.y1a8{bottom:335.501600pt;}
.ybc{bottom:337.741600pt;}
.yd7{bottom:339.366000pt;}
.y12d{bottom:339.838933pt;}
.y46{bottom:339.841293pt;}
.y6e{bottom:339.843200pt;}
.y22{bottom:340.109960pt;}
.y8c{bottom:340.851067pt;}
.y1ec{bottom:343.827347pt;}
.y161{bottom:345.348667pt;}
.y105{bottom:346.021333pt;}
.y1a7{bottom:351.441733pt;}
.ybb{bottom:353.681733pt;}
.yd6{bottom:355.306133pt;}
.y12c{bottom:355.779067pt;}
.y45{bottom:355.781427pt;}
.y1eb{bottom:355.782040pt;}
.y6d{bottom:355.783333pt;}
.y8b{bottom:356.791200pt;}
.y160{bottom:361.288267pt;}
.y21{bottom:361.839160pt;}
.y175{bottom:366.966400pt;}
.y1a6{bottom:367.382933pt;}
.y1ea{bottom:367.738293pt;}
.yba{bottom:369.621867pt;}
.yd5{bottom:371.246267pt;}
.y12b{bottom:371.719200pt;}
.y44{bottom:371.721560pt;}
.y6c{bottom:371.723467pt;}
.y8a{bottom:372.731333pt;}
.y104{bottom:375.771867pt;}
.y15f{bottom:377.227867pt;}
.y1e9{bottom:379.692987pt;}
.y1a5{bottom:383.323067pt;}
.yb9{bottom:385.563067pt;}
.yd4{bottom:387.186400pt;}
.y12a{bottom:387.659333pt;}
.y43{bottom:387.661693pt;}
.y6b{bottom:387.663067pt;}
.y89{bottom:388.671467pt;}
.y174{bottom:390.080000pt;}
.y1e8{bottom:391.647680pt;}
.y103{bottom:391.712000pt;}
.y20{bottom:392.709960pt;}
.y15e{bottom:393.169600pt;}
.y1a4{bottom:399.263200pt;}
.yb8{bottom:401.503200pt;}
.yd3{bottom:403.127600pt;}
.y129{bottom:403.598933pt;}
.y42{bottom:403.601827pt;}
.y1e7{bottom:403.603413pt;}
.y88{bottom:404.612667pt;}
.y1f{bottom:405.993813pt;}
.y102{bottom:407.652133pt;}
.y15d{bottom:409.109733pt;}
.y172{bottom:411.928000pt;}
.y6a{bottom:414.845867pt;}
.y1a3{bottom:415.203333pt;}
.y1e6{bottom:415.558107pt;}
.yb7{bottom:417.443333pt;}
.yd2{bottom:419.067200pt;}
.y128{bottom:419.085867pt;}
.y41{bottom:419.543027pt;}
.y1e{bottom:419.544880pt;}
.y87{bottom:420.552800pt;}
.y15c{bottom:425.049867pt;}
.y1e5{bottom:427.512800pt;}
.y69{bottom:430.786000pt;}
.y1a2{bottom:431.143467pt;}
.y101{bottom:431.195867pt;}
.y1d{bottom:432.827173pt;}
.yb6{bottom:433.383467pt;}
.yd1{bottom:435.006800pt;}
.y127{bottom:435.026000pt;}
.y40{bottom:435.483160pt;}
.y86{bottom:436.492933pt;}
.y1e4{bottom:439.469053pt;}
.y15b{bottom:440.990000pt;}
.y1c{bottom:446.111027pt;}
.y68{bottom:446.726133pt;}
.y1a1{bottom:447.083600pt;}
.yb5{bottom:449.323067pt;}
.yd0{bottom:450.946400pt;}
.y126{bottom:450.967200pt;}
.y3f{bottom:451.423293pt;}
.y1e3{bottom:451.423747pt;}
.y85{bottom:452.433067pt;}
.y15a{bottom:456.930133pt;}
.y1b{bottom:459.394880pt;}
.y100{bottom:460.945333pt;}
.y67{bottom:462.667333pt;}
.y1a0{bottom:463.024800pt;}
.y1e2{bottom:463.379480pt;}
.yb4{bottom:466.411067pt;}
.ycf{bottom:466.886000pt;}
.y125{bottom:466.907333pt;}
.y3e{bottom:467.363427pt;}
.y84{bottom:468.373200pt;}
.y1a{bottom:472.677693pt;}
.y159{bottom:472.870267pt;}
.y1e1{bottom:475.334173pt;}
.yff{bottom:476.885467pt;}
.y66{bottom:478.607467pt;}
.y19f{bottom:478.964933pt;}
.yb3{bottom:482.351200pt;}
.yce{bottom:482.825600pt;}
.y124{bottom:482.847467pt;}
.y3d{bottom:483.303560pt;}
.y83{bottom:484.313333pt;}
.y19{bottom:485.961547pt;}
.y1e0{bottom:487.288867pt;}
.y158{bottom:488.811467pt;}
.yfe{bottom:492.826667pt;}
.y65{bottom:494.547600pt;}
.y19e{bottom:494.905067pt;}
.yb2{bottom:498.291333pt;}
.ycd{bottom:498.767333pt;}
.y123{bottom:498.787600pt;}
.y3c{bottom:499.243693pt;}
.y1df{bottom:499.244600pt;}
.y18{bottom:499.245400pt;}
.y82{bottom:500.254533pt;}
.y157{bottom:504.751600pt;}
.yfd{bottom:508.766800pt;}
.y64{bottom:510.487733pt;}
.y19d{bottom:510.845200pt;}
.y1de{bottom:511.199293pt;}
.y17{bottom:512.528213pt;}
.yb1{bottom:514.231467pt;}
.y122{bottom:514.727733pt;}
.y3b{bottom:515.184893pt;}
.y81{bottom:516.194667pt;}
.ycc{bottom:519.565733pt;}
.y156{bottom:520.691733pt;}
.y1dd{bottom:523.153987pt;}
.yfc{bottom:524.706933pt;}
.y16{bottom:525.812587pt;}
.y63{bottom:526.427867pt;}
.y19c{bottom:526.785333pt;}
.yb0{bottom:530.171600pt;}
.y121{bottom:530.667867pt;}
.y173{bottom:530.957333pt;}
.y3a{bottom:531.124493pt;}
.y80{bottom:532.134800pt;}
.y1dc{bottom:535.109720pt;}
.y155{bottom:536.631867pt;}
.y15{bottom:539.096960pt;}
.yfb{bottom:540.647067pt;}
.y62{bottom:542.368000pt;}
.y19b{bottom:542.725467pt;}
.ycb{bottom:546.110000pt;}
.yaf{bottom:546.111733pt;}
.y120{bottom:546.609067pt;}
.y39{bottom:547.064093pt;}
.y1db{bottom:547.064413pt;}
.y14{bottom:552.379773pt;}
.y154{bottom:552.572000pt;}
.yfa{bottom:556.587200pt;}
.y7f{bottom:558.308267pt;}
.y61{bottom:558.309200pt;}
.y19a{bottom:558.666667pt;}
.y1da{bottom:559.019107pt;}
.yca{bottom:562.049600pt;}
.yae{bottom:562.053467pt;}
.y11f{bottom:562.549200pt;}
.y38{bottom:563.003693pt;}
.y13{bottom:565.663627pt;}
.y153{bottom:568.513200pt;}
.y1d9{bottom:570.975360pt;}
.yf9{bottom:572.527333pt;}
.y60{bottom:574.249333pt;}
.y7e{bottom:574.249467pt;}
.y199{bottom:574.606267pt;}
.y11e{bottom:578.489333pt;}
.y37{bottom:578.943293pt;}
.y12{bottom:578.947480pt;}
.y1d8{bottom:582.930053pt;}
.y152{bottom:584.453333pt;}
.yf8{bottom:588.468533pt;}
.y198{bottom:590.546400pt;}
.y11{bottom:592.230293pt;}
.y11d{bottom:594.428933pt;}
.y36{bottom:594.885027pt;}
.y1d7{bottom:594.885787pt;}
.y151{bottom:600.393467pt;}
.yf7{bottom:604.408667pt;}
.y10{bottom:605.514147pt;}
.y1d6{bottom:606.840480pt;}
.y197{bottom:606.946400pt;}
.yad{bottom:607.482667pt;}
.y35{bottom:610.825160pt;}
.y11c{bottom:614.099733pt;}
.y150{bottom:616.333600pt;}
.y1d5{bottom:618.795173pt;}
.yf{bottom:618.796960pt;}
.y5f{bottom:619.678533pt;}
.yf6{bottom:620.348800pt;}
.y196{bottom:622.886000pt;}
.y34{bottom:626.765293pt;}
.y1d4{bottom:630.751427pt;}
.ye{bottom:632.081333pt;}
.y14f{bottom:632.273733pt;}
.y5e{bottom:635.618667pt;}
.y11b{bottom:636.285200pt;}
.yf5{bottom:636.288933pt;}
.y9c{bottom:638.432031pt;}
.y195{bottom:638.825600pt;}
.y33{bottom:642.705427pt;}
.y1d3{bottom:642.706120pt;}
.yd{bottom:645.365707pt;}
.y14e{bottom:648.213867pt;}
.y11a{bottom:652.225333pt;}
.yf4{bottom:652.229067pt;}
.y1d2{bottom:654.660813pt;}
.y194{bottom:654.767333pt;}
.y32{bottom:658.645560pt;}
.yc{bottom:658.648000pt;}
.y58{bottom:663.970639pt;}
.y14d{bottom:664.155600pt;}
.y1d1{bottom:666.616547pt;}
.y119{bottom:668.165467pt;}
.yf3{bottom:668.169200pt;}
.y193{bottom:670.707467pt;}
.y1d0{bottom:678.571240pt;}
.y14c{bottom:680.095733pt;}
.y118{bottom:684.105600pt;}
.yf2{bottom:684.110400pt;}
.y192{bottom:686.647600pt;}
.y171{bottom:690.412000pt;}
.y1cf{bottom:690.527493pt;}
.y14b{bottom:696.035867pt;}
.y117{bottom:700.047333pt;}
.yf1{bottom:700.050533pt;}
.y1ce{bottom:702.482187pt;}
.y191{bottom:702.587733pt;}
.y14a{bottom:711.976000pt;}
.y16f{bottom:712.261333pt;}
.y1cd{bottom:714.436880pt;}
.y116{bottom:715.987467pt;}
.yf0{bottom:715.990667pt;}
.yb{bottom:716.092267pt;}
.y190{bottom:718.527867pt;}
.y1cc{bottom:726.392613pt;}
.y115{bottom:731.927600pt;}
.yef{bottom:731.930800pt;}
.ya{bottom:732.530800pt;}
.y18f{bottom:734.469067pt;}
.y1cb{bottom:738.347307pt;}
.y149{bottom:744.624000pt;}
.y9{bottom:749.165733pt;}
.y1ca{bottom:750.302000pt;}
.y18e{bottom:750.409200pt;}
.y1c9{bottom:762.257733pt;}
.y148{bottom:765.478667pt;}
.y18d{bottom:766.349333pt;}
.y1c8{bottom:774.212427pt;}
.yee{bottom:777.360000pt;}
.y18c{bottom:782.289467pt;}
.y8{bottom:782.502667pt;}
.y1c7{bottom:786.168160pt;}
.y147{bottom:786.333333pt;}
.y1c6{bottom:798.122853pt;}
.y18b{bottom:798.229600pt;}
.y7{bottom:798.941200pt;}
.ye6{bottom:806.011979pt;}
.y146{bottom:807.188000pt;}
.y1c5{bottom:810.077547pt;}
.y18a{bottom:814.169733pt;}
.y6{bottom:815.576133pt;}
.y1c4{bottom:822.033280pt;}
.y189{bottom:830.110933pt;}
.y170{bottom:831.290667pt;}
.y1c3{bottom:833.987973pt;}
.y145{bottom:834.699600pt;}
.y1c2{bottom:845.942667pt;}
.y188{bottom:846.051067pt;}
.y5{bottom:848.913600pt;}
.y1c1{bottom:857.898920pt;}
.y144{bottom:861.782400pt;}
.y4{bottom:865.352133pt;}
.y187{bottom:868.934933pt;}
.y1c0{bottom:869.853613pt;}
.y143{bottom:877.722000pt;}
.y1bf{bottom:881.808307pt;}
.y3{bottom:881.986533pt;}
.y142{bottom:893.661600pt;}
.y1be{bottom:893.764040pt;}
.y186{bottom:897.751067pt;}
.y1bd{bottom:905.718733pt;}
.y141{bottom:909.601200pt;}
.y185{bottom:913.691200pt;}
.y1bc{bottom:917.674987pt;}
.y2{bottom:923.830800pt;}
.y140{bottom:925.540800pt;}
.y1bb{bottom:929.629680pt;}
.y184{bottom:929.631333pt;}
.y13f{bottom:941.482533pt;}
.y1ba{bottom:941.584373pt;}
.y183{bottom:945.571467pt;}
.y1b9{bottom:953.540107pt;}
.y13e{bottom:957.422667pt;}
.y1{bottom:961.024000pt;}
.y182{bottom:961.511600pt;}
.y1b8{bottom:965.494800pt;}
.y1b7{bottom:977.449493pt;}
.y13d{bottom:977.453333pt;}
.y57{bottom:1036.223960pt;}
.he{height:19.294433pt;}
.hf{height:22.050803pt;}
.hd{height:22.065592pt;}
.h11{height:22.385074pt;}
.h12{height:24.945074pt;}
.h19{height:29.032381pt;}
.ha{height:29.045923pt;}
.h15{height:29.244917pt;}
.h1b{height:29.457397pt;}
.h1a{height:29.459477pt;}
.h13{height:29.499960pt;}
.h14{height:31.880360pt;}
.h8{height:32.416667pt;}
.h16{height:32.900710pt;}
.h7{height:33.187635pt;}
.h6{height:33.426739pt;}
.h3{height:36.290431pt;}
.h4{height:36.556100pt;}
.h18{height:36.556634pt;}
.h17{height:36.558234pt;}
.h2{height:40.211820pt;}
.h5{height:40.503500pt;}
.hb{height:52.983416pt;}
.h1{height:87.734824pt;}
.h10{height:172.362663pt;}
.h9{height:315.473340pt;}
.hc{height:338.437337pt;}
.h0{height:1056.000000pt;}
.w3{width:512.798665pt;}
.w2{width:570.597331pt;}
.w1{width:571.214648pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3b{left:2.529327pt;}
.x3c{left:7.013180pt;}
.x31{left:9.941199pt;}
.x26{left:13.374001pt;}
.x32{left:21.934945pt;}
.x2d{left:33.885199pt;}
.x33{left:35.408412pt;}
.x3{left:58.381240pt;}
.xf{left:65.285920pt;}
.x51{left:70.598827pt;}
.x10{left:75.248413pt;}
.x5{left:77.413507pt;}
.x20{left:78.567933pt;}
.x1a{left:82.207733pt;}
.x46{left:84.438533pt;}
.x39{left:85.697467pt;}
.x2{left:88.846840pt;}
.x4{left:94.674440pt;}
.x1{left:99.542667pt;}
.x3f{left:100.447993pt;}
.x19{left:107.474400pt;}
.x44{left:116.492133pt;}
.x41{left:119.729067pt;}
.x45{left:121.064147pt;}
.x25{left:122.207332pt;}
.x2e{left:138.541199pt;}
.x43{left:141.692387pt;}
.x34{left:144.138532pt;}
.x42{left:147.298667pt;}
.x3a{left:151.706673pt;}
.x4a{left:157.604000pt;}
.x2f{left:171.928132pt;}
.x21{left:180.825827pt;}
.x24{left:192.906653pt;}
.x50{left:195.464200pt;}
.x3e{left:199.946660pt;}
.x47{left:211.870667pt;}
.x40{left:223.765333pt;}
.x13{left:232.507880pt;}
.x12{left:247.158947pt;}
.x1b{left:259.437307pt;}
.x48{left:273.696000pt;}
.x8{left:278.778973pt;}
.x6{left:282.617507pt;}
.x7{left:283.940427pt;}
.x11{left:286.177747pt;}
.x35{left:289.465012pt;}
.x27{left:321.295335pt;}
.x28{left:324.350001pt;}
.x49{left:335.521333pt;}
.x36{left:338.262345pt;}
.x29{left:340.698401pt;}
.x3d{left:347.169327pt;}
.x2a{left:371.564000pt;}
.x30{left:384.730532pt;}
.x22{left:415.971133pt;}
.x2b{left:417.845333pt;}
.x2c{left:419.260000pt;}
.x52{left:421.284293pt;}
.x23{left:429.253427pt;}
.x4c{left:433.482667pt;}
.x1d{left:438.642733pt;}
.x53{left:440.316560pt;}
.xa{left:446.272053pt;}
.x9{left:452.028307pt;}
.x14{left:454.771880pt;}
.x4f{left:456.572000pt;}
.x54{left:462.164733pt;}
.xb{left:463.985653pt;}
.x1c{left:466.226640pt;}
.x37{left:467.639865pt;}
.x15{left:472.761480pt;}
.x38{left:477.600279pt;}
.x4d{left:478.921333pt;}
.x4e{left:497.505333pt;}
.x55{left:540.967373pt;}
.x4b{left:562.684000pt;}
.x56{left:564.238160pt;}
.x18{left:582.188013pt;}
.x16{left:587.081213pt;}
.xd{left:599.723387pt;}
.xe{left:600.845787pt;}
.x1f{left:602.283933pt;}
.xc{left:617.874987pt;}
.x1e{left:622.336067pt;}
.x17{left:632.100013pt;}
}




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