
    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_17f81e0225c4967359190237.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_67ff7916cd97e43e45992440.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_2d260a18360014f48c4d2171.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.062988;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_4149ae0663b74c1ba430c121.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.856934;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_67d2d4d1378bc270cc0d3982.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_24a223d343f887d45a0320e0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c56b80a99ccf2b48b8bc8653.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_337706d60ae2207e3a39643f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f4b85efcc8d34e653c6b2736.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.102539;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_ae4be1f446410509b8ddf577.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8f595c4206b842c07227b6ff.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.975586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-2.968560px;}
.lse{letter-spacing:-2.872800px;}
.ls63{letter-spacing:-2.160000px;}
.ls27{letter-spacing:-2.052000px;}
.lsc{letter-spacing:-1.998000px;}
.ls51{letter-spacing:-1.805122px;}
.lsd{letter-spacing:-1.782000px;}
.ls6b{letter-spacing:-1.656000px;}
.ls32{letter-spacing:-1.440000px;}
.ls50{letter-spacing:-1.425096px;}
.ls15{letter-spacing:-0.910080px;}
.ls62{letter-spacing:-0.792000px;}
.ls49{letter-spacing:-0.720000px;}
.ls17{letter-spacing:-0.358560px;}
.ls1a{letter-spacing:-0.324000px;}
.ls5d{letter-spacing:-0.316800px;}
.ls29{letter-spacing:-0.288000px;}
.ls1c{letter-spacing:-0.270000px;}
.ls25{letter-spacing:-0.264960px;}
.ls18{letter-spacing:-0.239040px;}
.ls1d{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.170640px;}
.ls1e{letter-spacing:-0.162000px;}
.ls3e{letter-spacing:-0.144000px;}
.ls3f{letter-spacing:-0.119520px;}
.ls28{letter-spacing:-0.108000px;}
.ls10{letter-spacing:-0.095760px;}
.ls33{letter-spacing:-0.072000px;}
.ls26{letter-spacing:-0.066240px;}
.ls16{letter-spacing:-0.059760px;}
.ls13{letter-spacing:-0.056880px;}
.ls1b{letter-spacing:-0.054000px;}
.lsb{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.054000px;}
.ls7{letter-spacing:0.059760px;}
.ls22{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.095760px;}
.ls6{letter-spacing:0.119520px;}
.ls2d{letter-spacing:0.132480px;}
.ls23{letter-spacing:0.144000px;}
.ls3a{letter-spacing:0.170640px;}
.ls5{letter-spacing:0.179280px;}
.ls2e{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.216000px;}
.ls31{letter-spacing:0.227520px;}
.ls8{letter-spacing:0.239040px;}
.ls4a{letter-spacing:0.259920px;}
.ls24{letter-spacing:0.264960px;}
.ls11{letter-spacing:0.287280px;}
.ls1f{letter-spacing:0.324000px;}
.ls3{letter-spacing:0.358560px;}
.ls34{letter-spacing:0.378000px;}
.ls5a{letter-spacing:0.432000px;}
.ls19{letter-spacing:0.478080px;}
.ls38{letter-spacing:0.504000px;}
.ls61{letter-spacing:0.576000px;}
.ls4{letter-spacing:0.657360px;}
.ls48{letter-spacing:0.720000px;}
.ls21{letter-spacing:0.756000px;}
.ls1{letter-spacing:0.792000px;}
.ls4f{letter-spacing:0.855058px;}
.ls6c{letter-spacing:0.864000px;}
.ls64{letter-spacing:0.936000px;}
.ls4d{letter-spacing:1.187580px;}
.ls6d{letter-spacing:1.224000px;}
.ls43{letter-spacing:1.440000px;}
.ls4e{letter-spacing:1.852625px;}
.ls4c{letter-spacing:2.880000px;}
.ls44{letter-spacing:3.607200px;}
.ls41{letter-spacing:4.320000px;}
.ls39{letter-spacing:5.040000px;}
.ls46{letter-spacing:5.760000px;}
.ls30{letter-spacing:6.480000px;}
.ls2b{letter-spacing:7.200000px;}
.ls5f{letter-spacing:7.920000px;}
.ls2c{letter-spacing:8.640000px;}
.ls65{letter-spacing:9.360000px;}
.ls3b{letter-spacing:9.367200px;}
.ls40{letter-spacing:10.807200px;}
.ls52{letter-spacing:10.944000px;}
.ls37{letter-spacing:11.520000px;}
.ls5b{letter-spacing:12.240000px;}
.ls3d{letter-spacing:12.960000px;}
.lsa{letter-spacing:14.549760px;}
.ls68{letter-spacing:15.120000px;}
.ls59{letter-spacing:16.560000px;}
.ls69{letter-spacing:18.000000px;}
.ls2f{letter-spacing:18.720000px;}
.ls66{letter-spacing:19.440000px;}
.ls35{letter-spacing:20.160000px;}
.ls4b{letter-spacing:22.320000px;}
.ls42{letter-spacing:30.384000px;}
.ls5c{letter-spacing:31.104000px;}
.ls53{letter-spacing:31.824000px;}
.ls6a{letter-spacing:33.120000px;}
.ls54{letter-spacing:33.984000px;}
.ls36{letter-spacing:40.320000px;}
.ls67{letter-spacing:41.760000px;}
.ls3c{letter-spacing:51.264000px;}
.ls55{letter-spacing:54.864000px;}
.ls47{letter-spacing:63.504000px;}
.ls56{letter-spacing:74.304000px;}
.ls60{letter-spacing:92.160000px;}
.ls58{letter-spacing:135.504000px;}
.ls57{letter-spacing:159.264000px;}
.ls45{letter-spacing:168.624000px;}
.ls5e{letter-spacing:176.400000px;}
.ls0{letter-spacing:226.260000px;}
.ls2a{letter-spacing:453.015360px;}
.ls20{letter-spacing:1317.778560px;}
.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;}
}
.wsf4{word-spacing:-72.000000px;}
.ws2{word-spacing:-21.641760px;}
.ws10b{word-spacing:-18.936000px;}
.ws12d{word-spacing:-18.864000px;}
.ws13a{word-spacing:-18.720000px;}
.ws109{word-spacing:-18.576000px;}
.ws12e{word-spacing:-18.216000px;}
.ws42{word-spacing:-18.144000px;}
.ws105{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws12f{word-spacing:-17.928000px;}
.wsbd{word-spacing:-17.856000px;}
.ws9e{word-spacing:-17.784000px;}
.ws81{word-spacing:-17.712000px;}
.ws107{word-spacing:-17.360640px;}
.ws118{word-spacing:-17.280000px;}
.ws120{word-spacing:-17.208000px;}
.ws106{word-spacing:-17.043840px;}
.wsa7{word-spacing:-16.560000px;}
.ws10a{word-spacing:-15.840000px;}
.ws9{word-spacing:-15.418080px;}
.ws5{word-spacing:-15.298560px;}
.ws3f{word-spacing:-15.235200px;}
.wsc1{word-spacing:-15.059520px;}
.wseb{word-spacing:-14.999760px;}
.ws64{word-spacing:-14.970240px;}
.ws7{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.880240px;}
.wsc0{word-spacing:-14.820480px;}
.wsa{word-spacing:-14.700960px;}
.ws8{word-spacing:-14.581440px;}
.ws80{word-spacing:-14.447520px;}
.wsa8{word-spacing:-14.390640px;}
.ws41{word-spacing:-14.163120px;}
.ws4{word-spacing:-14.049360px;}
.ws90{word-spacing:-13.878000px;}
.ws0{word-spacing:-13.500000px;}
.wsdf{word-spacing:-13.063380px;}
.wse0{word-spacing:-12.730858px;}
.wsd{word-spacing:-12.528000px;}
.wse{word-spacing:-12.204000px;}
.wsf{word-spacing:-12.042000px;}
.ws40{word-spacing:-11.988000px;}
.wsc{word-spacing:-11.934000px;}
.wsb{word-spacing:-11.880000px;}
.ws1{word-spacing:-11.718000px;}
.ws13{word-spacing:-4.404960px;}
.wsb8{word-spacing:-4.320000px;}
.ws14{word-spacing:-4.309200px;}
.wsd5{word-spacing:-4.032000px;}
.ws117{word-spacing:-3.744000px;}
.ws99{word-spacing:-3.600000px;}
.ws116{word-spacing:-3.456000px;}
.wsb0{word-spacing:-3.312000px;}
.wsf7{word-spacing:-3.024000px;}
.ws97{word-spacing:-2.880000px;}
.wse3{word-spacing:-2.755186px;}
.ws77{word-spacing:-2.592000px;}
.ws92{word-spacing:-2.304000px;}
.ws6e{word-spacing:-2.160000px;}
.ws25{word-spacing:-2.091600px;}
.wse2{word-spacing:-2.090141px;}
.ws11e{word-spacing:-2.088000px;}
.ws9f{word-spacing:-1.944000px;}
.ws22{word-spacing:-1.912320px;}
.ws5b{word-spacing:-1.872000px;}
.wse4{word-spacing:-1.757618px;}
.ws23{word-spacing:-1.613520px;}
.wsc6{word-spacing:-1.584000px;}
.ws7e{word-spacing:-1.440000px;}
.ws24{word-spacing:-1.434240px;}
.ws4b{word-spacing:-1.188000px;}
.wsa4{word-spacing:-1.152000px;}
.wse1{word-spacing:-0.918000px;}
.wsed{word-spacing:-0.896400px;}
.wsf6{word-spacing:-0.864000px;}
.ws6f{word-spacing:-0.720000px;}
.ws112{word-spacing:-0.576000px;}
.wsd3{word-spacing:-0.504000px;}
.ws91{word-spacing:-0.432000px;}
.ws20{word-spacing:-0.358560px;}
.ws16{word-spacing:-0.287280px;}
.ws12{word-spacing:-0.216000px;}
.ws1d{word-spacing:-0.179280px;}
.ws78{word-spacing:-0.144000px;}
.ws21{word-spacing:-0.119520px;}
.ws28{word-spacing:-0.059760px;}
.wsae{word-spacing:-0.056880px;}
.ws30{word-spacing:-0.054000px;}
.ws10{word-spacing:0.000000px;}
.ws2b{word-spacing:0.054000px;}
.ws18{word-spacing:0.056880px;}
.ws1e{word-spacing:0.059760px;}
.ws8c{word-spacing:0.072000px;}
.ws15{word-spacing:0.095760px;}
.wsef{word-spacing:0.144000px;}
.ws50{word-spacing:0.162000px;}
.ws19{word-spacing:0.170640px;}
.ws44{word-spacing:0.198720px;}
.ws2e{word-spacing:0.216000px;}
.ws82{word-spacing:0.227520px;}
.ws1f{word-spacing:0.239040px;}
.ws58{word-spacing:0.288000px;}
.wsc2{word-spacing:0.298800px;}
.ws32{word-spacing:0.324000px;}
.ws48{word-spacing:0.378000px;}
.ws43{word-spacing:0.397440px;}
.wsec{word-spacing:0.418320px;}
.wse5{word-spacing:0.522535px;}
.wsbf{word-spacing:0.537840px;}
.ws65{word-spacing:0.540000px;}
.ws17{word-spacing:0.574560px;}
.ws95{word-spacing:0.720000px;}
.ws49{word-spacing:0.756000px;}
.ws111{word-spacing:0.792000px;}
.ws127{word-spacing:0.864000px;}
.wse6{word-spacing:0.902561px;}
.ws1a{word-spacing:0.910080px;}
.ws4c{word-spacing:0.972000px;}
.ws60{word-spacing:1.008000px;}
.ws4a{word-spacing:1.026000px;}
.wsaf{word-spacing:1.296000px;}
.ws3e{word-spacing:1.404000px;}
.ws56{word-spacing:1.440000px;}
.ws123{word-spacing:1.512000px;}
.ws2f{word-spacing:1.620000px;}
.ws47{word-spacing:1.674000px;}
.ws31{word-spacing:1.728000px;}
.ws45{word-spacing:1.782000px;}
.ws11{word-spacing:1.998000px;}
.wsad{word-spacing:2.016000px;}
.ws46{word-spacing:2.052000px;}
.ws35{word-spacing:2.160000px;}
.ws26{word-spacing:2.211120px;}
.wsdb{word-spacing:2.304000px;}
.ws34{word-spacing:2.430000px;}
.wsa9{word-spacing:2.448000px;}
.wsf9{word-spacing:2.736000px;}
.ws8e{word-spacing:2.880000px;}
.ws29{word-spacing:2.928240px;}
.ws13b{word-spacing:2.952000px;}
.wsce{word-spacing:3.096000px;}
.ws2a{word-spacing:3.107520px;}
.ws4d{word-spacing:3.132000px;}
.ws63{word-spacing:3.168000px;}
.ws67{word-spacing:3.600000px;}
.ws96{word-spacing:3.888000px;}
.wsa6{word-spacing:4.320000px;}
.ws3d{word-spacing:4.590000px;}
.ws69{word-spacing:4.608000px;}
.ws7a{word-spacing:4.896000px;}
.ws59{word-spacing:5.040000px;}
.ws4e{word-spacing:5.238000px;}
.wsea{word-spacing:5.256000px;}
.ws5f{word-spacing:5.328000px;}
.ws4f{word-spacing:5.346000px;}
.ws85{word-spacing:5.616000px;}
.ws94{word-spacing:5.760000px;}
.ws11a{word-spacing:5.904000px;}
.ws7f{word-spacing:6.048000px;}
.ws8a{word-spacing:6.480000px;}
.wsa1{word-spacing:6.768000px;}
.wse9{word-spacing:7.056000px;}
.ws66{word-spacing:7.200000px;}
.ws11c{word-spacing:7.344000px;}
.ws137{word-spacing:7.416000px;}
.ws73{word-spacing:7.488000px;}
.ws70{word-spacing:7.920000px;}
.ws71{word-spacing:8.208000px;}
.wsa0{word-spacing:8.496000px;}
.ws76{word-spacing:8.640000px;}
.ws5e{word-spacing:8.928000px;}
.ws5a{word-spacing:9.360000px;}
.ws1b{word-spacing:9.442080px;}
.ws136{word-spacing:9.504000px;}
.ws9a{word-spacing:9.648000px;}
.ws3a{word-spacing:9.666000px;}
.wsb3{word-spacing:10.080000px;}
.ws1c{word-spacing:10.159200px;}
.ws3c{word-spacing:10.368000px;}
.ws87{word-spacing:10.800000px;}
.wsb6{word-spacing:11.088000px;}
.ws8f{word-spacing:11.520000px;}
.ws33{word-spacing:11.772000px;}
.ws93{word-spacing:11.808000px;}
.ws55{word-spacing:12.240000px;}
.wsc9{word-spacing:12.528000px;}
.ws62{word-spacing:12.960000px;}
.ws37{word-spacing:13.014000px;}
.ws38{word-spacing:13.230000px;}
.ws53{word-spacing:13.248000px;}
.ws36{word-spacing:13.284000px;}
.wsd1{word-spacing:13.536000px;}
.wsca{word-spacing:13.680000px;}
.ws132{word-spacing:13.824000px;}
.ws9b{word-spacing:13.968000px;}
.ws68{word-spacing:14.400000px;}
.ws74{word-spacing:14.688000px;}
.ws6d{word-spacing:15.120000px;}
.ws57{word-spacing:15.408000px;}
.wsfd{word-spacing:15.696000px;}
.ws6a{word-spacing:15.840000px;}
.ws124{word-spacing:15.984000px;}
.wscf{word-spacing:16.128000px;}
.ws5c{word-spacing:16.560000px;}
.wsfe{word-spacing:16.776000px;}
.ws5d{word-spacing:16.848000px;}
.ws8b{word-spacing:17.280000px;}
.wsa5{word-spacing:17.568000px;}
.ws3b{word-spacing:17.604000px;}
.ws133{word-spacing:17.856000px;}
.ws72{word-spacing:18.000000px;}
.ws79{word-spacing:18.288000px;}
.ws10d{word-spacing:18.576000px;}
.ws83{word-spacing:18.720000px;}
.ws84{word-spacing:19.008000px;}
.ws11d{word-spacing:19.296000px;}
.ws102{word-spacing:19.440000px;}
.ws39{word-spacing:19.710000px;}
.ws9c{word-spacing:19.728000px;}
.wsf5{word-spacing:20.016000px;}
.ws98{word-spacing:20.160000px;}
.ws6b{word-spacing:20.448000px;}
.wsee{word-spacing:20.808000px;}
.ws2d{word-spacing:20.844000px;}
.ws61{word-spacing:20.880000px;}
.ws2c{word-spacing:21.114000px;}
.wsb9{word-spacing:21.168000px;}
.ws11f{word-spacing:21.456000px;}
.ws7d{word-spacing:21.600000px;}
.wsaa{word-spacing:21.888000px;}
.ws114{word-spacing:22.176000px;}
.wsda{word-spacing:22.320000px;}
.wsba{word-spacing:22.608000px;}
.wsdd{word-spacing:23.040000px;}
.ws27{word-spacing:23.127120px;}
.wsd2{word-spacing:23.328000px;}
.ws122{word-spacing:23.616000px;}
.ws8d{word-spacing:23.760000px;}
.ws121{word-spacing:23.976000px;}
.wsd0{word-spacing:24.048000px;}
.ws52{word-spacing:24.480000px;}
.ws51{word-spacing:24.768000px;}
.wse8{word-spacing:25.200000px;}
.wsb5{word-spacing:25.488000px;}
.ws129{word-spacing:25.776000px;}
.wsf2{word-spacing:25.920000px;}
.wsbe{word-spacing:26.208000px;}
.ws86{word-spacing:26.640000px;}
.wsa2{word-spacing:26.928000px;}
.wsdc{word-spacing:27.216000px;}
.wsc4{word-spacing:27.360000px;}
.ws88{word-spacing:28.368000px;}
.ws54{word-spacing:28.800000px;}
.ws103{word-spacing:29.088000px;}
.wsc7{word-spacing:29.520000px;}
.wsc8{word-spacing:29.808000px;}
.wsd4{word-spacing:30.240000px;}
.wsab{word-spacing:30.528000px;}
.ws9d{word-spacing:30.960000px;}
.wsc3{word-spacing:31.248000px;}
.ws75{word-spacing:31.536000px;}
.wse7{word-spacing:31.680000px;}
.ws126{word-spacing:31.824000px;}
.ws135{word-spacing:31.968000px;}
.wsd7{word-spacing:32.256000px;}
.ws6c{word-spacing:32.400000px;}
.wsf3{word-spacing:32.688000px;}
.wscd{word-spacing:33.120000px;}
.wsbc{word-spacing:33.408000px;}
.ws7c{word-spacing:33.840000px;}
.ws134{word-spacing:34.056000px;}
.wsd9{word-spacing:34.560000px;}
.wsd8{word-spacing:34.848000px;}
.wsde{word-spacing:36.720000px;}
.ws113{word-spacing:37.008000px;}
.ws7b{word-spacing:37.728000px;}
.wsac{word-spacing:38.160000px;}
.ws13c{word-spacing:39.024000px;}
.wsa3{word-spacing:40.320000px;}
.ws89{word-spacing:41.040000px;}
.wsf8{word-spacing:41.328000px;}
.ws12b{word-spacing:41.760000px;}
.ws12a{word-spacing:41.904000px;}
.ws101{word-spacing:42.048000px;}
.ws128{word-spacing:42.480000px;}
.wscb{word-spacing:42.768000px;}
.wsbb{word-spacing:43.200000px;}
.ws10f{word-spacing:43.920000px;}
.ws10e{word-spacing:44.064000px;}
.wscc{word-spacing:44.208000px;}
.wsb7{word-spacing:44.640000px;}
.wsb1{word-spacing:46.800000px;}
.wsb2{word-spacing:47.088000px;}
.wsc5{word-spacing:47.808000px;}
.wsb4{word-spacing:50.400000px;}
.wsd6{word-spacing:56.160000px;}
.ws100{word-spacing:59.760000px;}
.wsff{word-spacing:60.048000px;}
.wsfc{word-spacing:61.920000px;}
.ws13d{word-spacing:63.360000px;}
.ws108{word-spacing:64.080000px;}
.ws11b{word-spacing:64.944000px;}
.ws110{word-spacing:65.520000px;}
.wsf1{word-spacing:72.000000px;}
.wsf0{word-spacing:72.288000px;}
.wsfb{word-spacing:81.360000px;}
.ws104{word-spacing:84.960000px;}
.ws115{word-spacing:92.160000px;}
.wsfa{word-spacing:92.880000px;}
.ws119{word-spacing:109.440000px;}
.ws131{word-spacing:113.040000px;}
.ws130{word-spacing:113.328000px;}
.ws139{word-spacing:172.080000px;}
.ws138{word-spacing:172.368000px;}
.ws10c{word-spacing:176.400000px;}
.ws125{word-spacing:361.440000px;}
.ws12c{word-spacing:417.600000px;}
._9{margin-left:-12.312000px;}
._7{margin-left:-8.413200px;}
._f{margin-left:-6.987996px;}
._e{margin-left:-5.622616px;}
._b{margin-left:-4.003200px;}
._2{margin-left:-2.646000px;}
._1{margin-left:-1.393200px;}
._0{width:1.425600px;}
._3{width:2.544120px;}
._5{width:3.730680px;}
._a{width:5.846400px;}
._10{width:7.920000px;}
._4{width:9.175680px;}
._d{width:11.044800px;}
._8{width:19.094400px;}
._6{width:20.876400px;}
._11{width:22.478400px;}
._c{width:24.480000px;}
._19{width:25.660800px;}
._1b{width:30.049200px;}
._1c{width:32.650560px;}
._1e{width:40.071600px;}
._16{width:59.544000px;}
._15{width:61.124400px;}
._14{width:64.033200px;}
._13{width:66.240000px;}
._17{width:92.956680px;}
._12{width:143.431200px;}
._18{width:165.096000px;}
._1d{width:172.296000px;}
._1a{width:361.728000px;}
.fc5{color:rgb(52,51,50);}
.fc3{color:rgb(0,157,229);}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(100,100,100);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:47.503200px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs5{font-size:59.760000px;}
.fs7{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.yff{bottom:-0.000150px;}
.y0{bottom:0.000000px;}
.y156{bottom:2.736454px;}
.y178{bottom:5.480100px;}
.y161{bottom:5.480250px;}
.y151{bottom:5.480550px;}
.y15f{bottom:5.480850px;}
.y167{bottom:5.481000px;}
.y165{bottom:5.481450px;}
.y16b{bottom:5.481750px;}
.y163{bottom:5.481900px;}
.y176{bottom:5.482050px;}
.y17f{bottom:5.482350px;}
.y15c{bottom:6.391804px;}
.y159{bottom:6.393300px;}
.y169{bottom:6.394350px;}
.y14f{bottom:6.394650px;}
.y16f{bottom:6.394800px;}
.y153{bottom:6.394950px;}
.y17b{bottom:6.395250px;}
.y173{bottom:7.308150px;}
.y171{bottom:7.309050px;}
.yfb{bottom:16.739850px;}
.ye6{bottom:16.740000px;}
.y1a0{bottom:16.920000px;}
.yb9{bottom:17.099850px;}
.yb4{bottom:17.100000px;}
.ybd{bottom:17.280000px;}
.y155{bottom:18.270000px;}
.y15b{bottom:21.925350px;}
.y4{bottom:45.715500px;}
.y3{bottom:61.375500px;}
.y2{bottom:76.860000px;}
.yb6{bottom:94.140000px;}
.y247{bottom:98.280000px;}
.y249{bottom:98.639850px;}
.y7c{bottom:98.640000px;}
.y21a{bottom:99.000000px;}
.y136{bottom:99.360000px;}
.y115{bottom:103.680000px;}
.ye0{bottom:105.660000px;}
.yf8{bottom:106.560000px;}
.y1d4{bottom:107.248500px;}
.y1b0{bottom:111.780000px;}
.y22f{bottom:112.320000px;}
.y196{bottom:114.120000px;}
.y218{bottom:115.020000px;}
.y97{bottom:115.380000px;}
.y7f{bottom:115.744500px;}
.yac{bottom:118.080000px;}
.y246{bottom:119.160000px;}
.y7b{bottom:119.340000px;}
.y135{bottom:120.060000px;}
.y1d3{bottom:122.733000px;}
.yb5{bottom:124.740000px;}
.ydf{bottom:126.360000px;}
.y14d{bottom:127.620000px;}
.y2a{bottom:127.971000px;}
.y18a{bottom:128.160000px;}
.y219{bottom:133.380000px;}
.y114{bottom:134.460000px;}
.y22e{bottom:134.640000px;}
.y195{bottom:134.820000px;}
.y54{bottom:135.180000px;}
.y217{bottom:135.720000px;}
.y96{bottom:136.080000px;}
.yd1{bottom:136.620000px;}
.yf7{bottom:137.340000px;}
.y1d2{bottom:138.393000px;}
.yab{bottom:138.780000px;}
.y245{bottom:139.860000px;}
.y7a{bottom:140.040000px;}
.y1f7{bottom:140.580000px;}
.y134{bottom:140.760000px;}
.y16a{bottom:141.774000px;}
.y1af{bottom:143.100000px;}
.y29{bottom:144.535500px;}
.yde{bottom:147.060000px;}
.y189{bottom:148.860000px;}
.y1d1{bottom:153.877500px;}
.yb3{bottom:155.340000px;}
.y194{bottom:155.520000px;}
.y53{bottom:155.880000px;}
.y216{bottom:156.420000px;}
.y95{bottom:156.780000px;}
.yd0{bottom:157.320000px;}
.yaa{bottom:159.480000px;}
.y244{bottom:160.560000px;}
.y79{bottom:160.740000px;}
.y28{bottom:160.911000px;}
.y1f6{bottom:161.280000px;}
.y133{bottom:161.460000px;}
.y168{bottom:161.872500px;}
.y113{bottom:165.060000px;}
.ydd{bottom:167.760000px;}
.yf6{bottom:167.940000px;}
.y22d{bottom:169.020000px;}
.y1d0{bottom:169.362000px;}
.y188{bottom:169.740000px;}
.y1e0{bottom:170.820000px;}
.y1ae{bottom:173.700000px;}
.y193{bottom:176.220000px;}
.y52{bottom:176.580000px;}
.y215{bottom:177.120000px;}
.y27{bottom:177.475500px;}
.y94{bottom:177.480000px;}
.ycf{bottom:178.020000px;}
.ya9{bottom:180.000000px;}
.y243{bottom:181.260000px;}
.y78{bottom:181.440000px;}
.y17c{bottom:181.969500px;}
.y1f5{bottom:181.980000px;}
.y132{bottom:182.160000px;}
.y1cf{bottom:184.846500px;}
.ydc{bottom:188.460000px;}
.y22c{bottom:191.340000px;}
.y1df{bottom:191.520000px;}
.y187{bottom:191.700000px;}
.y26{bottom:193.851000px;}
.y112{bottom:195.660000px;}
.y192{bottom:196.920000px;}
.y51{bottom:197.280000px;}
.y214{bottom:197.820000px;}
.y93{bottom:198.180000px;}
.yf5{bottom:198.540000px;}
.y1ce{bottom:200.506500px;}
.ya8{bottom:200.700000px;}
.y242{bottom:201.960000px;}
.y170{bottom:202.066500px;}
.y248{bottom:202.139850px;}
.y77{bottom:202.140000px;}
.y1f4{bottom:202.680000px;}
.y131{bottom:202.860000px;}
.y1ad{bottom:205.200000px;}
.yce{bottom:206.820000px;}
.yb2{bottom:207.540000px;}
.ydb{bottom:209.160000px;}
.y25{bottom:210.415500px;}
.y1de{bottom:212.220000px;}
.y186{bottom:212.400000px;}
.y22b{bottom:213.660000px;}
.y1cd{bottom:215.991000px;}
.y14b{bottom:216.720000px;}
.y191{bottom:217.620000px;}
.y50{bottom:217.980000px;}
.y213{bottom:218.340000px;}
.y92{bottom:220.140000px;}
.ya7{bottom:221.400000px;}
.y172{bottom:222.165000px;}
.y241{bottom:222.660000px;}
.y76{bottom:222.840000px;}
.y1f3{bottom:223.380000px;}
.y130{bottom:223.560000px;}
.y111{bottom:226.260000px;}
.y24{bottom:226.980000px;}
.yf4{bottom:229.140000px;}
.ycd{bottom:229.500000px;}
.yda{bottom:229.860000px;}
.y1cc{bottom:231.475500px;}
.y1dd{bottom:232.920000px;}
.y185{bottom:234.360000px;}
.y1ac{bottom:235.800000px;}
.y22a{bottom:235.980000px;}
.y190{bottom:238.320000px;}
.y4f{bottom:238.680000px;}
.y212{bottom:239.040000px;}
.y91{bottom:240.840000px;}
.ya6{bottom:242.100000px;}
.y174{bottom:242.263500px;}
.y23{bottom:243.355500px;}
.y240{bottom:243.360000px;}
.y75{bottom:243.540000px;}
.y1f2{bottom:244.080000px;}
.y12f{bottom:244.260000px;}
.y1cb{bottom:246.960000px;}
.yd9{bottom:250.560000px;}
.y14a{bottom:251.100000px;}
.y1dc{bottom:253.620000px;}
.y184{bottom:255.060000px;}
.y110{bottom:258.300000px;}
.y18f{bottom:259.020000px;}
.y4e{bottom:259.380000px;}
.yf3{bottom:259.740000px;}
.y22{bottom:259.920000px;}
.ycc{bottom:260.100000px;}
.y90{bottom:261.540000px;}
.y17d{bottom:262.360500px;}
.y1ca{bottom:262.620000px;}
.ya5{bottom:262.800000px;}
.y23f{bottom:264.060000px;}
.y74{bottom:264.240000px;}
.y12e{bottom:264.960000px;}
.y1f1{bottom:266.040000px;}
.y1ab{bottom:266.400000px;}
.yd8{bottom:271.260000px;}
.y183{bottom:277.020000px;}
.y4d{bottom:280.080000px;}
.y211{bottom:280.440000px;}
.y229{bottom:280.620000px;}
.y18e{bottom:280.980000px;}
.y8f{bottom:282.240000px;}
.y16c{bottom:282.457500px;}
.ya4{bottom:283.500000px;}
.y23e{bottom:284.760000px;}
.y73{bottom:284.940000px;}
.y12d{bottom:285.300000px;}
.y149{bottom:285.480000px;}
.y1f0{bottom:286.740000px;}
.y1db{bottom:287.640000px;}
.y21{bottom:289.795500px;}
.yf2{bottom:290.340000px;}
.y10f{bottom:290.520000px;}
.ycb{bottom:290.700000px;}
.yd7{bottom:291.960000px;}
.y1aa{bottom:297.000000px;}
.y1c9{bottom:297.180000px;}
.y182{bottom:297.720000px;}
.y4c{bottom:300.780000px;}
.y210{bottom:301.140000px;}
.y18d{bottom:301.680000px;}
.y175{bottom:302.554500px;}
.y8e{bottom:302.940000px;}
.ya3{bottom:304.200000px;}
.y23d{bottom:305.460000px;}
.y72{bottom:305.640000px;}
.y12c{bottom:306.000000px;}
.y20{bottom:307.435500px;}
.y1ef{bottom:307.440000px;}
.y1da{bottom:308.340000px;}
.y10e{bottom:308.520000px;}
.yd6{bottom:312.660000px;}
.y1c8{bottom:317.880000px;}
.y148{bottom:319.860000px;}
.yf1{bottom:320.940000px;}
.yca{bottom:321.300000px;}
.y4b{bottom:321.480000px;}
.y20f{bottom:322.020000px;}
.y18c{bottom:322.380000px;}
.y16e{bottom:322.653000px;}
.y8d{bottom:323.640000px;}
.ya2{bottom:324.900000px;}
.y1f{bottom:325.080000px;}
.yd3{bottom:325.980000px;}
.y23c{bottom:326.160000px;}
.y71{bottom:326.340000px;}
.y12b{bottom:326.700000px;}
.y1a9{bottom:328.320000px;}
.y1ee{bottom:329.400000px;}
.yd5{bottom:333.360000px;}
.y1c7{bottom:338.580000px;}
.y10d{bottom:339.120000px;}
.y4a{bottom:342.180000px;}
.y1d9{bottom:342.182880px;}
.y16d{bottom:342.750000px;}
.y1e{bottom:342.900000px;}
.y20e{bottom:343.980000px;}
.y8c{bottom:344.340000px;}
.ya1{bottom:345.600000px;}
.yd2{bottom:346.680000px;}
.y23b{bottom:346.860000px;}
.y70{bottom:347.040000px;}
.y12a{bottom:347.400000px;}
.y1ed{bottom:350.100000px;}
.yc9{bottom:351.900000px;}
.yf0{bottom:352.980000px;}
.yd4{bottom:354.060000px;}
.y1a8{bottom:358.920000px;}
.y1c6{bottom:359.280000px;}
.y1d{bottom:360.720000px;}
.y17e{bottom:362.847000px;}
.y49{bottom:362.880000px;}
.y20d{bottom:364.680000px;}
.y8b{bottom:365.040000px;}
.ya0{bottom:366.300000px;}
.y23a{bottom:367.560000px;}
.y6f{bottom:367.740000px;}
.y129{bottom:368.460000px;}
.y10c{bottom:369.720000px;}
.y1ec{bottom:370.800000px;}
.y1d8{bottom:372.780000px;}
.ye3{bottom:374.760000px;}
.y1c{bottom:378.540000px;}
.y1c5{bottom:379.980000px;}
.yc8{bottom:382.500000px;}
.y177{bottom:382.947000px;}
.y48{bottom:383.580000px;}
.yef{bottom:385.200000px;}
.y20c{bottom:385.380000px;}
.y8a{bottom:385.740000px;}
.y9f{bottom:387.000000px;}
.y239{bottom:388.260000px;}
.y6e{bottom:388.440000px;}
.y128{bottom:389.160000px;}
.y1a7{bottom:390.240000px;}
.y1eb{bottom:391.500000px;}
.y1b{bottom:395.100000px;}
.ye2{bottom:395.460000px;}
.y10b{bottom:400.320000px;}
.y1c4{bottom:400.680000px;}
.y1d7{bottom:402.840000px;}
.yee{bottom:403.200000px;}
.y47{bottom:404.280000px;}
.y20b{bottom:406.080000px;}
.y228{bottom:406.440000px;}
.y89{bottom:407.700000px;}
.y238{bottom:408.960000px;}
.y6d{bottom:409.140000px;}
.y127{bottom:409.860000px;}
.y1ea{bottom:412.200000px;}
.y1a{bottom:412.373700px;}
.ye1{bottom:416.160000px;}
.y1d6{bottom:419.400000px;}
.y1a6{bottom:421.020000px;}
.y1c3{bottom:421.380000px;}
.y147{bottom:422.820000px;}
.y46{bottom:424.980000px;}
.y20a{bottom:426.780000px;}
.y227{bottom:427.140000px;}
.y88{bottom:428.400000px;}
.y19{bottom:429.480000px;}
.y237{bottom:429.660000px;}
.y6c{bottom:429.840000px;}
.y126{bottom:430.560000px;}
.y10a{bottom:430.920000px;}
.y1e9{bottom:432.900000px;}
.yed{bottom:433.800000px;}
.yc7{bottom:434.700000px;}
.y181{bottom:436.860000px;}
.y1c2{bottom:442.080000px;}
.y45{bottom:445.680000px;}
.y18{bottom:446.760000px;}
.y209{bottom:447.480000px;}
.y226{bottom:447.840000px;}
.y87{bottom:449.100000px;}
.y236{bottom:450.360000px;}
.y6b{bottom:450.540000px;}
.y125{bottom:451.260000px;}
.y1a5{bottom:452.340000px;}
.yc6{bottom:453.240000px;}
.y1e8{bottom:453.600000px;}
.y146{bottom:457.200000px;}
.y180{bottom:457.560000px;}
.y109{bottom:461.520000px;}
.y1c1{bottom:462.780000px;}
.y17{bottom:464.040000px;}
.yec{bottom:464.400000px;}
.y44{bottom:466.380000px;}
.y208{bottom:468.180000px;}
.y225{bottom:468.540000px;}
.y86{bottom:469.800000px;}
.y235{bottom:471.060000px;}
.y6a{bottom:471.240000px;}
.y1e7{bottom:474.300000px;}
.y145{bottom:478.260000px;}
.y16{bottom:481.296960px;}
.y1c0{bottom:483.480000px;}
.y1a4{bottom:483.660000px;}
.yc5{bottom:483.840000px;}
.y43{bottom:487.080000px;}
.y124{bottom:489.240000px;}
.y85{bottom:490.500000px;}
.y18b{bottom:490.680000px;}
.y234{bottom:491.400000px;}
.y80{bottom:491.580000px;}
.y69{bottom:491.940000px;}
.y108{bottom:492.120000px;}
.yeb{bottom:495.000000px;}
.y15{bottom:498.582540px;}
.y144{bottom:498.960000px;}
.y207{bottom:503.640000px;}
.y1bf{bottom:504.180000px;}
.y42{bottom:507.780000px;}
.y123{bottom:509.940000px;}
.y84{bottom:511.200000px;}
.yb1{bottom:512.280000px;}
.y68{bottom:512.640000px;}
.y1a3{bottom:514.260000px;}
.yc4{bottom:514.440000px;}
.y14{bottom:515.688840px;}
.y143{bottom:519.660000px;}
.y107{bottom:522.720000px;}
.y1be{bottom:524.880000px;}
.yea{bottom:525.600000px;}
.y233{bottom:526.140000px;}
.y41{bottom:528.480000px;}
.y122{bottom:530.640000px;}
.y83{bottom:531.900000px;}
.y13{bottom:532.974420px;}
.yb0{bottom:532.980000px;}
.y67{bottom:533.340000px;}
.y17a{bottom:536.418000px;}
.y206{bottom:538.020000px;}
.y142{bottom:540.360000px;}
.y1a2{bottom:544.860000px;}
.yc3{bottom:545.040000px;}
.y1bd{bottom:545.580000px;}
.y40{bottom:549.180000px;}
.y12{bottom:550.260000px;}
.y121{bottom:551.340000px;}
.y82{bottom:552.600000px;}
.y66{bottom:554.040000px;}
.y106{bottom:554.940000px;}
.ye9{bottom:556.200000px;}
.y179{bottom:556.516500px;}
.y205{bottom:560.340000px;}
.y141{bottom:561.060000px;}
.y24b{bottom:565.560000px;}
.y1bc{bottom:566.280000px;}
.y11{bottom:567.540000px;}
.y3f{bottom:569.880000px;}
.y120{bottom:572.040000px;}
.y81{bottom:573.300000px;}
.y65{bottom:574.560000px;}
.y1a1{bottom:575.460000px;}
.y164{bottom:576.613500px;}
.y140{bottom:581.760000px;}
.y204{bottom:582.660000px;}
.y10{bottom:584.808120px;}
.ye8{bottom:586.800000px;}
.y105{bottom:586.980000px;}
.y3e{bottom:590.580000px;}
.y11f{bottom:592.740000px;}
.y9e{bottom:594.000000px;}
.y64{bottom:595.260000px;}
.y162{bottom:596.710500px;}
.yc2{bottom:597.420000px;}
.yf{bottom:602.093700px;}
.y13f{bottom:602.460000px;}
.y104{bottom:604.980000px;}
.y203{bottom:605.160000px;}
.y19f{bottom:606.780000px;}
.y1bb{bottom:607.500000px;}
.y3d{bottom:610.920000px;}
.y11e{bottom:613.440000px;}
.y9d{bottom:614.700000px;}
.y63{bottom:615.960000px;}
.yc1{bottom:616.140000px;}
.y166{bottom:616.809000px;}
.ye7{bottom:617.400000px;}
.ye{bottom:619.200000px;}
.y13e{bottom:623.160000px;}
.y202{bottom:627.480000px;}
.y1ba{bottom:628.200000px;}
.y3c{bottom:631.980000px;}
.y11d{bottom:634.140000px;}
.y9c{bottom:635.400000px;}
.y103{bottom:635.580000px;}
.y62{bottom:636.660000px;}
.y160{bottom:636.907500px;}
.yd{bottom:637.200000px;}
.y19e{bottom:638.280000px;}
.y13d{bottom:643.860000px;}
.yc0{bottom:646.740000px;}
.y1b9{bottom:648.900000px;}
.ye5{bottom:649.620000px;}
.y201{bottom:649.800000px;}
.y11c{bottom:654.840000px;}
.y9b{bottom:656.100000px;}
.yaf{bottom:657.000000px;}
.y15e{bottom:657.004500px;}
.y61{bottom:657.360000px;}
.y3b{bottom:657.900000px;}
.y13c{bottom:664.560000px;}
.y102{bottom:666.180000px;}
.y19d{bottom:668.880000px;}
.y1b8{bottom:669.600000px;}
.y200{bottom:672.120000px;}
.yc{bottom:673.560000px;}
.y3a{bottom:674.451000px;}
.y11b{bottom:675.540000px;}
.y9a{bottom:676.800000px;}
.y15d{bottom:677.101500px;}
.ybf{bottom:677.340000px;}
.yae{bottom:677.700000px;}
.y60{bottom:678.060000px;}
.y13b{bottom:685.260000px;}
.y39{bottom:690.826500px;}
.ye4{bottom:693.900000px;}
.y232{bottom:694.440000px;}
.y11a{bottom:696.240000px;}
.y101{bottom:696.780000px;}
.y154{bottom:697.200000px;}
.y99{bottom:697.500000px;}
.y5f{bottom:698.760000px;}
.y19c{bottom:699.480000px;}
.y1b7{bottom:702.540000px;}
.yb{bottom:702.848880px;}
.y13a{bottom:705.960000px;}
.y1ff{bottom:706.500000px;}
.y38{bottom:707.391000px;}
.ybe{bottom:707.940000px;}
.y1b6{bottom:715.500000px;}
.y231{bottom:716.760000px;}
.y119{bottom:716.940000px;}
.y98{bottom:718.200000px;}
.y5e{bottom:719.460000px;}
.y37{bottom:723.766500px;}
.y139{bottom:726.660000px;}
.y152{bottom:727.345500px;}
.y100{bottom:727.380000px;}
.y1fe{bottom:728.820000px;}
.y19b{bottom:730.800000px;}
.ya{bottom:732.199320px;}
.y118{bottom:737.640000px;}
.ybc{bottom:738.540000px;}
.y224{bottom:738.900000px;}
.y230{bottom:739.080000px;}
.y5d{bottom:740.160000px;}
.y36{bottom:740.331000px;}
.y1b5{bottom:747.000000px;}
.y138{bottom:747.360000px;}
.y150{bottom:747.444000px;}
.y1fd{bottom:751.140000px;}
.y35{bottom:756.706500px;}
.yfe{bottom:757.980000px;}
.y117{bottom:758.340000px;}
.y223{bottom:759.600000px;}
.y5c{bottom:760.860000px;}
.y9{bottom:761.549760px;}
.y19a{bottom:762.120000px;}
.y14e{bottom:767.541000px;}
.y21f{bottom:768.060000px;}
.y34{bottom:773.271000px;}
.y1fc{bottom:773.460000px;}
.y1b4{bottom:777.600000px;}
.y1e6{bottom:779.040000px;}
.y222{bottom:780.300000px;}
.y137{bottom:781.200000px;}
.y5b{bottom:781.560000px;}
.y116{bottom:786.960000px;}
.y15a{bottom:787.638000px;}
.yfd{bottom:788.580000px;}
.y21e{bottom:788.760000px;}
.y33{bottom:789.646500px;}
.y8{bottom:790.708680px;}
.ybb{bottom:790.920000px;}
.y199{bottom:793.620000px;}
.y1fb{bottom:795.780000px;}
.y1e5{bottom:799.740000px;}
.y221{bottom:801.000000px;}
.y5a{bottom:802.260000px;}
.y32{bottom:806.211000px;}
.y1b3{bottom:808.200000px;}
.y21d{bottom:809.460000px;}
.yba{bottom:809.640000px;}
.y1fa{bottom:818.100000px;}
.yfc{bottom:819.360000px;}
.y7{bottom:820.059120px;}
.y1e4{bottom:820.440000px;}
.y220{bottom:821.700000px;}
.y7e{bottom:822.600000px;}
.y31{bottom:822.775500px;}
.y59{bottom:822.960000px;}
.y158{bottom:824.181000px;}
.y198{bottom:824.940000px;}
.y21c{bottom:830.160000px;}
.y30{bottom:839.151000px;}
.y1b2{bottom:839.520000px;}
.yb8{bottom:840.240000px;}
.y1f9{bottom:840.420000px;}
.y1e3{bottom:842.400000px;}
.y7d{bottom:843.300000px;}
.y24a{bottom:843.659850px;}
.y58{bottom:843.660000px;}
.y157{bottom:844.278000px;}
.y6{bottom:849.409560px;}
.y21b{bottom:850.860000px;}
.yfa{bottom:851.400000px;}
.y2f{bottom:855.715500px;}
.y1f8{bottom:862.740000px;}
.y1e2{bottom:863.100000px;}
.y57{bottom:864.360000px;}
.y197{bottom:868.499850px;}
.y1b1{bottom:870.120000px;}
.yb7{bottom:870.840000px;}
.y2e{bottom:872.091000px;}
.y1d5{bottom:873.711000px;}
.y5{bottom:878.760000px;}
.yf9{bottom:883.440000px;}
.y1e1{bottom:883.800000px;}
.yad{bottom:884.700000px;}
.y56{bottom:885.060000px;}
.y2d{bottom:888.655500px;}
.y14c{bottom:889.195500px;}
.y2c{bottom:916.746480px;}
.y55{bottom:917.458560px;}
.y1{bottom:925.920000px;}
.y2b{bottom:936.900000px;}
.h14{height:18.000000px;}
.h13{height:18.001500px;}
.h15{height:19.183500px;}
.h1b{height:19.185000px;}
.h18{height:29.233500px;}
.h10{height:30.598500px;}
.h11{height:30.600000px;}
.h12{height:30.780000px;}
.h1a{height:35.628000px;}
.hb{height:36.703125px;}
.h9{height:38.759766px;}
.h1c{height:40.243189px;}
.h17{height:41.681275px;}
.h16{height:42.121978px;}
.h19{height:42.191563px;}
.he{height:45.747070px;}
.h3{height:47.381836px;}
.h2{height:47.545312px;}
.ha{height:47.563312px;}
.h1e{height:50.626758px;}
.h6{height:52.435898px;}
.h7{height:52.483418px;}
.h8{height:52.528058px;}
.h1d{height:52.990313px;}
.hf{height:53.077852px;}
.hd{height:58.121719px;}
.h1f{height:60.996094px;}
.h5{height:63.175781px;}
.hc{height:63.949219px;}
.h4{height:68.733984px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w6{width:29.160000px;}
.w5{width:29.880000px;}
.wa{width:29.881500px;}
.w10{width:126.540000px;}
.w12{width:127.080000px;}
.wc{width:289.609500px;}
.wd{width:321.585000px;}
.w9{width:358.378500px;}
.w4{width:388.260000px;}
.w7{width:418.140000px;}
.w8{width:448.018500px;}
.w3{width:477.178500px;}
.w11{width:482.400000px;}
.wf{width:482.760000px;}
.we{width:609.840000px;}
.wb{width:612.109500px;}
.w2{width:621.000000px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xa{left:4.500000px;}
.x35{left:28.440000px;}
.x29{left:30.148800px;}
.x18{left:34.920000px;}
.x9{left:50.940000px;}
.x27{left:56.643150px;}
.x36{left:59.940000px;}
.x37{left:61.920000px;}
.x26{left:70.347000px;}
.x1e{left:77.113500px;}
.x19{left:83.160000px;}
.x12{left:89.460000px;}
.x1{left:95.760000px;}
.x17{left:103.500000px;}
.x3d{left:117.000000px;}
.x6{left:122.760000px;}
.x3{left:127.800000px;}
.x3c{left:138.240000px;}
.x2c{left:142.521150px;}
.xf{left:148.860000px;}
.x3b{left:154.800000px;}
.x25{left:157.138650px;}
.x2f{left:158.965800px;}
.x2a{left:160.793100px;}
.x20{left:165.361050px;}
.x1b{left:171.000000px;}
.x2d{left:175.410600px;}
.x7{left:180.900000px;}
.x1c{left:191.164500px;}
.x32{left:195.300000px;}
.x21{left:200.991300px;}
.x10{left:202.860000px;}
.x31{left:204.645600px;}
.x5{left:223.735500px;}
.x4{left:230.040000px;}
.x2e{left:236.621400px;}
.x1f{left:241.189500px;}
.x28{left:243.016650px;}
.xd{left:244.440000px;}
.x39{left:245.556000px;}
.x2b{left:246.671100px;}
.x33{left:250.380000px;}
.x24{left:256.720650px;}
.x22{left:262.196621px;}
.x8{left:267.660000px;}
.x11{left:271.440000px;}
.x30{left:280.474050px;}
.x1d{left:284.044500px;}
.xc{left:287.640000px;}
.xb{left:289.980000px;}
.x1a{left:294.660000px;}
.xe{left:300.060000px;}
.x23{left:367.638000px;}
.x3a{left:372.060000px;}
.x38{left:399.060000px;}
.x16{left:481.320000px;}
.x13{left:511.200000px;}
.x34{left:539.820000px;}
.x14{left:541.080000px;}
.x2{left:542.529000px;}
.x15{left:570.960000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-2.638720pt;}
.lse{letter-spacing:-2.553600pt;}
.ls63{letter-spacing:-1.920000pt;}
.ls27{letter-spacing:-1.824000pt;}
.lsc{letter-spacing:-1.776000pt;}
.ls51{letter-spacing:-1.604553pt;}
.lsd{letter-spacing:-1.584000pt;}
.ls6b{letter-spacing:-1.472000pt;}
.ls32{letter-spacing:-1.280000pt;}
.ls50{letter-spacing:-1.266752pt;}
.ls15{letter-spacing:-0.808960pt;}
.ls62{letter-spacing:-0.704000pt;}
.ls49{letter-spacing:-0.640000pt;}
.ls17{letter-spacing:-0.318720pt;}
.ls1a{letter-spacing:-0.288000pt;}
.ls5d{letter-spacing:-0.281600pt;}
.ls29{letter-spacing:-0.256000pt;}
.ls1c{letter-spacing:-0.240000pt;}
.ls25{letter-spacing:-0.235520pt;}
.ls18{letter-spacing:-0.212480pt;}
.ls1d{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.151680pt;}
.ls1e{letter-spacing:-0.144000pt;}
.ls3e{letter-spacing:-0.128000pt;}
.ls3f{letter-spacing:-0.106240pt;}
.ls28{letter-spacing:-0.096000pt;}
.ls10{letter-spacing:-0.085120pt;}
.ls33{letter-spacing:-0.064000pt;}
.ls26{letter-spacing:-0.058880pt;}
.ls16{letter-spacing:-0.053120pt;}
.ls13{letter-spacing:-0.050560pt;}
.ls1b{letter-spacing:-0.048000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.048000pt;}
.ls7{letter-spacing:0.053120pt;}
.ls22{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.085120pt;}
.ls6{letter-spacing:0.106240pt;}
.ls2d{letter-spacing:0.117760pt;}
.ls23{letter-spacing:0.128000pt;}
.ls3a{letter-spacing:0.151680pt;}
.ls5{letter-spacing:0.159360pt;}
.ls2e{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.192000pt;}
.ls31{letter-spacing:0.202240pt;}
.ls8{letter-spacing:0.212480pt;}
.ls4a{letter-spacing:0.231040pt;}
.ls24{letter-spacing:0.235520pt;}
.ls11{letter-spacing:0.255360pt;}
.ls1f{letter-spacing:0.288000pt;}
.ls3{letter-spacing:0.318720pt;}
.ls34{letter-spacing:0.336000pt;}
.ls5a{letter-spacing:0.384000pt;}
.ls19{letter-spacing:0.424960pt;}
.ls38{letter-spacing:0.448000pt;}
.ls61{letter-spacing:0.512000pt;}
.ls4{letter-spacing:0.584320pt;}
.ls48{letter-spacing:0.640000pt;}
.ls21{letter-spacing:0.672000pt;}
.ls1{letter-spacing:0.704000pt;}
.ls4f{letter-spacing:0.760051pt;}
.ls6c{letter-spacing:0.768000pt;}
.ls64{letter-spacing:0.832000pt;}
.ls4d{letter-spacing:1.055627pt;}
.ls6d{letter-spacing:1.088000pt;}
.ls43{letter-spacing:1.280000pt;}
.ls4e{letter-spacing:1.646778pt;}
.ls4c{letter-spacing:2.560000pt;}
.ls44{letter-spacing:3.206400pt;}
.ls41{letter-spacing:3.840000pt;}
.ls39{letter-spacing:4.480000pt;}
.ls46{letter-spacing:5.120000pt;}
.ls30{letter-spacing:5.760000pt;}
.ls2b{letter-spacing:6.400000pt;}
.ls5f{letter-spacing:7.040000pt;}
.ls2c{letter-spacing:7.680000pt;}
.ls65{letter-spacing:8.320000pt;}
.ls3b{letter-spacing:8.326400pt;}
.ls40{letter-spacing:9.606400pt;}
.ls52{letter-spacing:9.728000pt;}
.ls37{letter-spacing:10.240000pt;}
.ls5b{letter-spacing:10.880000pt;}
.ls3d{letter-spacing:11.520000pt;}
.lsa{letter-spacing:12.933120pt;}
.ls68{letter-spacing:13.440000pt;}
.ls59{letter-spacing:14.720000pt;}
.ls69{letter-spacing:16.000000pt;}
.ls2f{letter-spacing:16.640000pt;}
.ls66{letter-spacing:17.280000pt;}
.ls35{letter-spacing:17.920000pt;}
.ls4b{letter-spacing:19.840000pt;}
.ls42{letter-spacing:27.008000pt;}
.ls5c{letter-spacing:27.648000pt;}
.ls53{letter-spacing:28.288000pt;}
.ls6a{letter-spacing:29.440000pt;}
.ls54{letter-spacing:30.208000pt;}
.ls36{letter-spacing:35.840000pt;}
.ls67{letter-spacing:37.120000pt;}
.ls3c{letter-spacing:45.568000pt;}
.ls55{letter-spacing:48.768000pt;}
.ls47{letter-spacing:56.448000pt;}
.ls56{letter-spacing:66.048000pt;}
.ls60{letter-spacing:81.920000pt;}
.ls58{letter-spacing:120.448000pt;}
.ls57{letter-spacing:141.568000pt;}
.ls45{letter-spacing:149.888000pt;}
.ls5e{letter-spacing:156.800000pt;}
.ls0{letter-spacing:201.120000pt;}
.ls2a{letter-spacing:402.680320pt;}
.ls20{letter-spacing:1171.358720pt;}
.wsf4{word-spacing:-64.000000pt;}
.ws2{word-spacing:-19.237120pt;}
.ws10b{word-spacing:-16.832000pt;}
.ws12d{word-spacing:-16.768000pt;}
.ws13a{word-spacing:-16.640000pt;}
.ws109{word-spacing:-16.512000pt;}
.ws12e{word-spacing:-16.192000pt;}
.ws42{word-spacing:-16.128000pt;}
.ws105{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws12f{word-spacing:-15.936000pt;}
.wsbd{word-spacing:-15.872000pt;}
.ws9e{word-spacing:-15.808000pt;}
.ws81{word-spacing:-15.744000pt;}
.ws107{word-spacing:-15.431680pt;}
.ws118{word-spacing:-15.360000pt;}
.ws120{word-spacing:-15.296000pt;}
.ws106{word-spacing:-15.150080pt;}
.wsa7{word-spacing:-14.720000pt;}
.ws10a{word-spacing:-14.080000pt;}
.ws9{word-spacing:-13.704960pt;}
.ws5{word-spacing:-13.598720pt;}
.ws3f{word-spacing:-13.542400pt;}
.wsc1{word-spacing:-13.386240pt;}
.wseb{word-spacing:-13.333120pt;}
.ws64{word-spacing:-13.306880pt;}
.ws7{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.226880pt;}
.wsc0{word-spacing:-13.173760pt;}
.wsa{word-spacing:-13.067520pt;}
.ws8{word-spacing:-12.961280pt;}
.ws80{word-spacing:-12.842240pt;}
.wsa8{word-spacing:-12.791680pt;}
.ws41{word-spacing:-12.589440pt;}
.ws4{word-spacing:-12.488320pt;}
.ws90{word-spacing:-12.336000pt;}
.ws0{word-spacing:-12.000000pt;}
.wsdf{word-spacing:-11.611893pt;}
.wse0{word-spacing:-11.316318pt;}
.wsd{word-spacing:-11.136000pt;}
.wse{word-spacing:-10.848000pt;}
.wsf{word-spacing:-10.704000pt;}
.ws40{word-spacing:-10.656000pt;}
.wsc{word-spacing:-10.608000pt;}
.wsb{word-spacing:-10.560000pt;}
.ws1{word-spacing:-10.416000pt;}
.ws13{word-spacing:-3.915520pt;}
.wsb8{word-spacing:-3.840000pt;}
.ws14{word-spacing:-3.830400pt;}
.wsd5{word-spacing:-3.584000pt;}
.ws117{word-spacing:-3.328000pt;}
.ws99{word-spacing:-3.200000pt;}
.ws116{word-spacing:-3.072000pt;}
.wsb0{word-spacing:-2.944000pt;}
.wsf7{word-spacing:-2.688000pt;}
.ws97{word-spacing:-2.560000pt;}
.wse3{word-spacing:-2.449054pt;}
.ws77{word-spacing:-2.304000pt;}
.ws92{word-spacing:-2.048000pt;}
.ws6e{word-spacing:-1.920000pt;}
.ws25{word-spacing:-1.859200pt;}
.wse2{word-spacing:-1.857903pt;}
.ws11e{word-spacing:-1.856000pt;}
.ws9f{word-spacing:-1.728000pt;}
.ws22{word-spacing:-1.699840pt;}
.ws5b{word-spacing:-1.664000pt;}
.wse4{word-spacing:-1.562327pt;}
.ws23{word-spacing:-1.434240pt;}
.wsc6{word-spacing:-1.408000pt;}
.ws7e{word-spacing:-1.280000pt;}
.ws24{word-spacing:-1.274880pt;}
.ws4b{word-spacing:-1.056000pt;}
.wsa4{word-spacing:-1.024000pt;}
.wse1{word-spacing:-0.816000pt;}
.wsed{word-spacing:-0.796800pt;}
.wsf6{word-spacing:-0.768000pt;}
.ws6f{word-spacing:-0.640000pt;}
.ws112{word-spacing:-0.512000pt;}
.wsd3{word-spacing:-0.448000pt;}
.ws91{word-spacing:-0.384000pt;}
.ws20{word-spacing:-0.318720pt;}
.ws16{word-spacing:-0.255360pt;}
.ws12{word-spacing:-0.192000pt;}
.ws1d{word-spacing:-0.159360pt;}
.ws78{word-spacing:-0.128000pt;}
.ws21{word-spacing:-0.106240pt;}
.ws28{word-spacing:-0.053120pt;}
.wsae{word-spacing:-0.050560pt;}
.ws30{word-spacing:-0.048000pt;}
.ws10{word-spacing:0.000000pt;}
.ws2b{word-spacing:0.048000pt;}
.ws18{word-spacing:0.050560pt;}
.ws1e{word-spacing:0.053120pt;}
.ws8c{word-spacing:0.064000pt;}
.ws15{word-spacing:0.085120pt;}
.wsef{word-spacing:0.128000pt;}
.ws50{word-spacing:0.144000pt;}
.ws19{word-spacing:0.151680pt;}
.ws44{word-spacing:0.176640pt;}
.ws2e{word-spacing:0.192000pt;}
.ws82{word-spacing:0.202240pt;}
.ws1f{word-spacing:0.212480pt;}
.ws58{word-spacing:0.256000pt;}
.wsc2{word-spacing:0.265600pt;}
.ws32{word-spacing:0.288000pt;}
.ws48{word-spacing:0.336000pt;}
.ws43{word-spacing:0.353280pt;}
.wsec{word-spacing:0.371840pt;}
.wse5{word-spacing:0.464476pt;}
.wsbf{word-spacing:0.478080pt;}
.ws65{word-spacing:0.480000pt;}
.ws17{word-spacing:0.510720pt;}
.ws95{word-spacing:0.640000pt;}
.ws49{word-spacing:0.672000pt;}
.ws111{word-spacing:0.704000pt;}
.ws127{word-spacing:0.768000pt;}
.wse6{word-spacing:0.802276pt;}
.ws1a{word-spacing:0.808960pt;}
.ws4c{word-spacing:0.864000pt;}
.ws60{word-spacing:0.896000pt;}
.ws4a{word-spacing:0.912000pt;}
.wsaf{word-spacing:1.152000pt;}
.ws3e{word-spacing:1.248000pt;}
.ws56{word-spacing:1.280000pt;}
.ws123{word-spacing:1.344000pt;}
.ws2f{word-spacing:1.440000pt;}
.ws47{word-spacing:1.488000pt;}
.ws31{word-spacing:1.536000pt;}
.ws45{word-spacing:1.584000pt;}
.ws11{word-spacing:1.776000pt;}
.wsad{word-spacing:1.792000pt;}
.ws46{word-spacing:1.824000pt;}
.ws35{word-spacing:1.920000pt;}
.ws26{word-spacing:1.965440pt;}
.wsdb{word-spacing:2.048000pt;}
.ws34{word-spacing:2.160000pt;}
.wsa9{word-spacing:2.176000pt;}
.wsf9{word-spacing:2.432000pt;}
.ws8e{word-spacing:2.560000pt;}
.ws29{word-spacing:2.602880pt;}
.ws13b{word-spacing:2.624000pt;}
.wsce{word-spacing:2.752000pt;}
.ws2a{word-spacing:2.762240pt;}
.ws4d{word-spacing:2.784000pt;}
.ws63{word-spacing:2.816000pt;}
.ws67{word-spacing:3.200000pt;}
.ws96{word-spacing:3.456000pt;}
.wsa6{word-spacing:3.840000pt;}
.ws3d{word-spacing:4.080000pt;}
.ws69{word-spacing:4.096000pt;}
.ws7a{word-spacing:4.352000pt;}
.ws59{word-spacing:4.480000pt;}
.ws4e{word-spacing:4.656000pt;}
.wsea{word-spacing:4.672000pt;}
.ws5f{word-spacing:4.736000pt;}
.ws4f{word-spacing:4.752000pt;}
.ws85{word-spacing:4.992000pt;}
.ws94{word-spacing:5.120000pt;}
.ws11a{word-spacing:5.248000pt;}
.ws7f{word-spacing:5.376000pt;}
.ws8a{word-spacing:5.760000pt;}
.wsa1{word-spacing:6.016000pt;}
.wse9{word-spacing:6.272000pt;}
.ws66{word-spacing:6.400000pt;}
.ws11c{word-spacing:6.528000pt;}
.ws137{word-spacing:6.592000pt;}
.ws73{word-spacing:6.656000pt;}
.ws70{word-spacing:7.040000pt;}
.ws71{word-spacing:7.296000pt;}
.wsa0{word-spacing:7.552000pt;}
.ws76{word-spacing:7.680000pt;}
.ws5e{word-spacing:7.936000pt;}
.ws5a{word-spacing:8.320000pt;}
.ws1b{word-spacing:8.392960pt;}
.ws136{word-spacing:8.448000pt;}
.ws9a{word-spacing:8.576000pt;}
.ws3a{word-spacing:8.592000pt;}
.wsb3{word-spacing:8.960000pt;}
.ws1c{word-spacing:9.030400pt;}
.ws3c{word-spacing:9.216000pt;}
.ws87{word-spacing:9.600000pt;}
.wsb6{word-spacing:9.856000pt;}
.ws8f{word-spacing:10.240000pt;}
.ws33{word-spacing:10.464000pt;}
.ws93{word-spacing:10.496000pt;}
.ws55{word-spacing:10.880000pt;}
.wsc9{word-spacing:11.136000pt;}
.ws62{word-spacing:11.520000pt;}
.ws37{word-spacing:11.568000pt;}
.ws38{word-spacing:11.760000pt;}
.ws53{word-spacing:11.776000pt;}
.ws36{word-spacing:11.808000pt;}
.wsd1{word-spacing:12.032000pt;}
.wsca{word-spacing:12.160000pt;}
.ws132{word-spacing:12.288000pt;}
.ws9b{word-spacing:12.416000pt;}
.ws68{word-spacing:12.800000pt;}
.ws74{word-spacing:13.056000pt;}
.ws6d{word-spacing:13.440000pt;}
.ws57{word-spacing:13.696000pt;}
.wsfd{word-spacing:13.952000pt;}
.ws6a{word-spacing:14.080000pt;}
.ws124{word-spacing:14.208000pt;}
.wscf{word-spacing:14.336000pt;}
.ws5c{word-spacing:14.720000pt;}
.wsfe{word-spacing:14.912000pt;}
.ws5d{word-spacing:14.976000pt;}
.ws8b{word-spacing:15.360000pt;}
.wsa5{word-spacing:15.616000pt;}
.ws3b{word-spacing:15.648000pt;}
.ws133{word-spacing:15.872000pt;}
.ws72{word-spacing:16.000000pt;}
.ws79{word-spacing:16.256000pt;}
.ws10d{word-spacing:16.512000pt;}
.ws83{word-spacing:16.640000pt;}
.ws84{word-spacing:16.896000pt;}
.ws11d{word-spacing:17.152000pt;}
.ws102{word-spacing:17.280000pt;}
.ws39{word-spacing:17.520000pt;}
.ws9c{word-spacing:17.536000pt;}
.wsf5{word-spacing:17.792000pt;}
.ws98{word-spacing:17.920000pt;}
.ws6b{word-spacing:18.176000pt;}
.wsee{word-spacing:18.496000pt;}
.ws2d{word-spacing:18.528000pt;}
.ws61{word-spacing:18.560000pt;}
.ws2c{word-spacing:18.768000pt;}
.wsb9{word-spacing:18.816000pt;}
.ws11f{word-spacing:19.072000pt;}
.ws7d{word-spacing:19.200000pt;}
.wsaa{word-spacing:19.456000pt;}
.ws114{word-spacing:19.712000pt;}
.wsda{word-spacing:19.840000pt;}
.wsba{word-spacing:20.096000pt;}
.wsdd{word-spacing:20.480000pt;}
.ws27{word-spacing:20.557440pt;}
.wsd2{word-spacing:20.736000pt;}
.ws122{word-spacing:20.992000pt;}
.ws8d{word-spacing:21.120000pt;}
.ws121{word-spacing:21.312000pt;}
.wsd0{word-spacing:21.376000pt;}
.ws52{word-spacing:21.760000pt;}
.ws51{word-spacing:22.016000pt;}
.wse8{word-spacing:22.400000pt;}
.wsb5{word-spacing:22.656000pt;}
.ws129{word-spacing:22.912000pt;}
.wsf2{word-spacing:23.040000pt;}
.wsbe{word-spacing:23.296000pt;}
.ws86{word-spacing:23.680000pt;}
.wsa2{word-spacing:23.936000pt;}
.wsdc{word-spacing:24.192000pt;}
.wsc4{word-spacing:24.320000pt;}
.ws88{word-spacing:25.216000pt;}
.ws54{word-spacing:25.600000pt;}
.ws103{word-spacing:25.856000pt;}
.wsc7{word-spacing:26.240000pt;}
.wsc8{word-spacing:26.496000pt;}
.wsd4{word-spacing:26.880000pt;}
.wsab{word-spacing:27.136000pt;}
.ws9d{word-spacing:27.520000pt;}
.wsc3{word-spacing:27.776000pt;}
.ws75{word-spacing:28.032000pt;}
.wse7{word-spacing:28.160000pt;}
.ws126{word-spacing:28.288000pt;}
.ws135{word-spacing:28.416000pt;}
.wsd7{word-spacing:28.672000pt;}
.ws6c{word-spacing:28.800000pt;}
.wsf3{word-spacing:29.056000pt;}
.wscd{word-spacing:29.440000pt;}
.wsbc{word-spacing:29.696000pt;}
.ws7c{word-spacing:30.080000pt;}
.ws134{word-spacing:30.272000pt;}
.wsd9{word-spacing:30.720000pt;}
.wsd8{word-spacing:30.976000pt;}
.wsde{word-spacing:32.640000pt;}
.ws113{word-spacing:32.896000pt;}
.ws7b{word-spacing:33.536000pt;}
.wsac{word-spacing:33.920000pt;}
.ws13c{word-spacing:34.688000pt;}
.wsa3{word-spacing:35.840000pt;}
.ws89{word-spacing:36.480000pt;}
.wsf8{word-spacing:36.736000pt;}
.ws12b{word-spacing:37.120000pt;}
.ws12a{word-spacing:37.248000pt;}
.ws101{word-spacing:37.376000pt;}
.ws128{word-spacing:37.760000pt;}
.wscb{word-spacing:38.016000pt;}
.wsbb{word-spacing:38.400000pt;}
.ws10f{word-spacing:39.040000pt;}
.ws10e{word-spacing:39.168000pt;}
.wscc{word-spacing:39.296000pt;}
.wsb7{word-spacing:39.680000pt;}
.wsb1{word-spacing:41.600000pt;}
.wsb2{word-spacing:41.856000pt;}
.wsc5{word-spacing:42.496000pt;}
.wsb4{word-spacing:44.800000pt;}
.wsd6{word-spacing:49.920000pt;}
.ws100{word-spacing:53.120000pt;}
.wsff{word-spacing:53.376000pt;}
.wsfc{word-spacing:55.040000pt;}
.ws13d{word-spacing:56.320000pt;}
.ws108{word-spacing:56.960000pt;}
.ws11b{word-spacing:57.728000pt;}
.ws110{word-spacing:58.240000pt;}
.wsf1{word-spacing:64.000000pt;}
.wsf0{word-spacing:64.256000pt;}
.wsfb{word-spacing:72.320000pt;}
.ws104{word-spacing:75.520000pt;}
.ws115{word-spacing:81.920000pt;}
.wsfa{word-spacing:82.560000pt;}
.ws119{word-spacing:97.280000pt;}
.ws131{word-spacing:100.480000pt;}
.ws130{word-spacing:100.736000pt;}
.ws139{word-spacing:152.960000pt;}
.ws138{word-spacing:153.216000pt;}
.ws10c{word-spacing:156.800000pt;}
.ws125{word-spacing:321.280000pt;}
.ws12c{word-spacing:371.200000pt;}
._9{margin-left:-10.944000pt;}
._7{margin-left:-7.478400pt;}
._f{margin-left:-6.211552pt;}
._e{margin-left:-4.997881pt;}
._b{margin-left:-3.558400pt;}
._2{margin-left:-2.352000pt;}
._1{margin-left:-1.238400pt;}
._0{width:1.267200pt;}
._3{width:2.261440pt;}
._5{width:3.316160pt;}
._a{width:5.196800pt;}
._10{width:7.040000pt;}
._4{width:8.156160pt;}
._d{width:9.817600pt;}
._8{width:16.972800pt;}
._6{width:18.556800pt;}
._11{width:19.980800pt;}
._c{width:21.760000pt;}
._19{width:22.809600pt;}
._1b{width:26.710400pt;}
._1c{width:29.022720pt;}
._1e{width:35.619200pt;}
._16{width:52.928000pt;}
._15{width:54.332800pt;}
._14{width:56.918400pt;}
._13{width:58.880000pt;}
._17{width:82.628160pt;}
._12{width:127.494400pt;}
._18{width:146.752000pt;}
._1d{width:153.152000pt;}
._1a{width:321.536000pt;}
.fs6{font-size:42.225067pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs5{font-size:53.120000pt;}
.fs7{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.yff{bottom:-0.000133pt;}
.y0{bottom:0.000000pt;}
.y156{bottom:2.432403pt;}
.y178{bottom:4.871200pt;}
.y161{bottom:4.871333pt;}
.y151{bottom:4.871600pt;}
.y15f{bottom:4.871867pt;}
.y167{bottom:4.872000pt;}
.y165{bottom:4.872400pt;}
.y16b{bottom:4.872667pt;}
.y163{bottom:4.872800pt;}
.y176{bottom:4.872933pt;}
.y17f{bottom:4.873200pt;}
.y15c{bottom:5.681603pt;}
.y159{bottom:5.682933pt;}
.y169{bottom:5.683867pt;}
.y14f{bottom:5.684133pt;}
.y16f{bottom:5.684267pt;}
.y153{bottom:5.684400pt;}
.y17b{bottom:5.684667pt;}
.y173{bottom:6.496133pt;}
.y171{bottom:6.496933pt;}
.yfb{bottom:14.879867pt;}
.ye6{bottom:14.880000pt;}
.y1a0{bottom:15.040000pt;}
.yb9{bottom:15.199867pt;}
.yb4{bottom:15.200000pt;}
.ybd{bottom:15.360000pt;}
.y155{bottom:16.240000pt;}
.y15b{bottom:19.489200pt;}
.y4{bottom:40.636000pt;}
.y3{bottom:54.556000pt;}
.y2{bottom:68.320000pt;}
.yb6{bottom:83.680000pt;}
.y247{bottom:87.360000pt;}
.y249{bottom:87.679867pt;}
.y7c{bottom:87.680000pt;}
.y21a{bottom:88.000000pt;}
.y136{bottom:88.320000pt;}
.y115{bottom:92.160000pt;}
.ye0{bottom:93.920000pt;}
.yf8{bottom:94.720000pt;}
.y1d4{bottom:95.332000pt;}
.y1b0{bottom:99.360000pt;}
.y22f{bottom:99.840000pt;}
.y196{bottom:101.440000pt;}
.y218{bottom:102.240000pt;}
.y97{bottom:102.560000pt;}
.y7f{bottom:102.884000pt;}
.yac{bottom:104.960000pt;}
.y246{bottom:105.920000pt;}
.y7b{bottom:106.080000pt;}
.y135{bottom:106.720000pt;}
.y1d3{bottom:109.096000pt;}
.yb5{bottom:110.880000pt;}
.ydf{bottom:112.320000pt;}
.y14d{bottom:113.440000pt;}
.y2a{bottom:113.752000pt;}
.y18a{bottom:113.920000pt;}
.y219{bottom:118.560000pt;}
.y114{bottom:119.520000pt;}
.y22e{bottom:119.680000pt;}
.y195{bottom:119.840000pt;}
.y54{bottom:120.160000pt;}
.y217{bottom:120.640000pt;}
.y96{bottom:120.960000pt;}
.yd1{bottom:121.440000pt;}
.yf7{bottom:122.080000pt;}
.y1d2{bottom:123.016000pt;}
.yab{bottom:123.360000pt;}
.y245{bottom:124.320000pt;}
.y7a{bottom:124.480000pt;}
.y1f7{bottom:124.960000pt;}
.y134{bottom:125.120000pt;}
.y16a{bottom:126.021333pt;}
.y1af{bottom:127.200000pt;}
.y29{bottom:128.476000pt;}
.yde{bottom:130.720000pt;}
.y189{bottom:132.320000pt;}
.y1d1{bottom:136.780000pt;}
.yb3{bottom:138.080000pt;}
.y194{bottom:138.240000pt;}
.y53{bottom:138.560000pt;}
.y216{bottom:139.040000pt;}
.y95{bottom:139.360000pt;}
.yd0{bottom:139.840000pt;}
.yaa{bottom:141.760000pt;}
.y244{bottom:142.720000pt;}
.y79{bottom:142.880000pt;}
.y28{bottom:143.032000pt;}
.y1f6{bottom:143.360000pt;}
.y133{bottom:143.520000pt;}
.y168{bottom:143.886667pt;}
.y113{bottom:146.720000pt;}
.ydd{bottom:149.120000pt;}
.yf6{bottom:149.280000pt;}
.y22d{bottom:150.240000pt;}
.y1d0{bottom:150.544000pt;}
.y188{bottom:150.880000pt;}
.y1e0{bottom:151.840000pt;}
.y1ae{bottom:154.400000pt;}
.y193{bottom:156.640000pt;}
.y52{bottom:156.960000pt;}
.y215{bottom:157.440000pt;}
.y27{bottom:157.756000pt;}
.y94{bottom:157.760000pt;}
.ycf{bottom:158.240000pt;}
.ya9{bottom:160.000000pt;}
.y243{bottom:161.120000pt;}
.y78{bottom:161.280000pt;}
.y17c{bottom:161.750667pt;}
.y1f5{bottom:161.760000pt;}
.y132{bottom:161.920000pt;}
.y1cf{bottom:164.308000pt;}
.ydc{bottom:167.520000pt;}
.y22c{bottom:170.080000pt;}
.y1df{bottom:170.240000pt;}
.y187{bottom:170.400000pt;}
.y26{bottom:172.312000pt;}
.y112{bottom:173.920000pt;}
.y192{bottom:175.040000pt;}
.y51{bottom:175.360000pt;}
.y214{bottom:175.840000pt;}
.y93{bottom:176.160000pt;}
.yf5{bottom:176.480000pt;}
.y1ce{bottom:178.228000pt;}
.ya8{bottom:178.400000pt;}
.y242{bottom:179.520000pt;}
.y170{bottom:179.614667pt;}
.y248{bottom:179.679867pt;}
.y77{bottom:179.680000pt;}
.y1f4{bottom:180.160000pt;}
.y131{bottom:180.320000pt;}
.y1ad{bottom:182.400000pt;}
.yce{bottom:183.840000pt;}
.yb2{bottom:184.480000pt;}
.ydb{bottom:185.920000pt;}
.y25{bottom:187.036000pt;}
.y1de{bottom:188.640000pt;}
.y186{bottom:188.800000pt;}
.y22b{bottom:189.920000pt;}
.y1cd{bottom:191.992000pt;}
.y14b{bottom:192.640000pt;}
.y191{bottom:193.440000pt;}
.y50{bottom:193.760000pt;}
.y213{bottom:194.080000pt;}
.y92{bottom:195.680000pt;}
.ya7{bottom:196.800000pt;}
.y172{bottom:197.480000pt;}
.y241{bottom:197.920000pt;}
.y76{bottom:198.080000pt;}
.y1f3{bottom:198.560000pt;}
.y130{bottom:198.720000pt;}
.y111{bottom:201.120000pt;}
.y24{bottom:201.760000pt;}
.yf4{bottom:203.680000pt;}
.ycd{bottom:204.000000pt;}
.yda{bottom:204.320000pt;}
.y1cc{bottom:205.756000pt;}
.y1dd{bottom:207.040000pt;}
.y185{bottom:208.320000pt;}
.y1ac{bottom:209.600000pt;}
.y22a{bottom:209.760000pt;}
.y190{bottom:211.840000pt;}
.y4f{bottom:212.160000pt;}
.y212{bottom:212.480000pt;}
.y91{bottom:214.080000pt;}
.ya6{bottom:215.200000pt;}
.y174{bottom:215.345333pt;}
.y23{bottom:216.316000pt;}
.y240{bottom:216.320000pt;}
.y75{bottom:216.480000pt;}
.y1f2{bottom:216.960000pt;}
.y12f{bottom:217.120000pt;}
.y1cb{bottom:219.520000pt;}
.yd9{bottom:222.720000pt;}
.y14a{bottom:223.200000pt;}
.y1dc{bottom:225.440000pt;}
.y184{bottom:226.720000pt;}
.y110{bottom:229.600000pt;}
.y18f{bottom:230.240000pt;}
.y4e{bottom:230.560000pt;}
.yf3{bottom:230.880000pt;}
.y22{bottom:231.040000pt;}
.ycc{bottom:231.200000pt;}
.y90{bottom:232.480000pt;}
.y17d{bottom:233.209333pt;}
.y1ca{bottom:233.440000pt;}
.ya5{bottom:233.600000pt;}
.y23f{bottom:234.720000pt;}
.y74{bottom:234.880000pt;}
.y12e{bottom:235.520000pt;}
.y1f1{bottom:236.480000pt;}
.y1ab{bottom:236.800000pt;}
.yd8{bottom:241.120000pt;}
.y183{bottom:246.240000pt;}
.y4d{bottom:248.960000pt;}
.y211{bottom:249.280000pt;}
.y229{bottom:249.440000pt;}
.y18e{bottom:249.760000pt;}
.y8f{bottom:250.880000pt;}
.y16c{bottom:251.073333pt;}
.ya4{bottom:252.000000pt;}
.y23e{bottom:253.120000pt;}
.y73{bottom:253.280000pt;}
.y12d{bottom:253.600000pt;}
.y149{bottom:253.760000pt;}
.y1f0{bottom:254.880000pt;}
.y1db{bottom:255.680000pt;}
.y21{bottom:257.596000pt;}
.yf2{bottom:258.080000pt;}
.y10f{bottom:258.240000pt;}
.ycb{bottom:258.400000pt;}
.yd7{bottom:259.520000pt;}
.y1aa{bottom:264.000000pt;}
.y1c9{bottom:264.160000pt;}
.y182{bottom:264.640000pt;}
.y4c{bottom:267.360000pt;}
.y210{bottom:267.680000pt;}
.y18d{bottom:268.160000pt;}
.y175{bottom:268.937333pt;}
.y8e{bottom:269.280000pt;}
.ya3{bottom:270.400000pt;}
.y23d{bottom:271.520000pt;}
.y72{bottom:271.680000pt;}
.y12c{bottom:272.000000pt;}
.y20{bottom:273.276000pt;}
.y1ef{bottom:273.280000pt;}
.y1da{bottom:274.080000pt;}
.y10e{bottom:274.240000pt;}
.yd6{bottom:277.920000pt;}
.y1c8{bottom:282.560000pt;}
.y148{bottom:284.320000pt;}
.yf1{bottom:285.280000pt;}
.yca{bottom:285.600000pt;}
.y4b{bottom:285.760000pt;}
.y20f{bottom:286.240000pt;}
.y18c{bottom:286.560000pt;}
.y16e{bottom:286.802667pt;}
.y8d{bottom:287.680000pt;}
.ya2{bottom:288.800000pt;}
.y1f{bottom:288.960000pt;}
.yd3{bottom:289.760000pt;}
.y23c{bottom:289.920000pt;}
.y71{bottom:290.080000pt;}
.y12b{bottom:290.400000pt;}
.y1a9{bottom:291.840000pt;}
.y1ee{bottom:292.800000pt;}
.yd5{bottom:296.320000pt;}
.y1c7{bottom:300.960000pt;}
.y10d{bottom:301.440000pt;}
.y4a{bottom:304.160000pt;}
.y1d9{bottom:304.162560pt;}
.y16d{bottom:304.666667pt;}
.y1e{bottom:304.800000pt;}
.y20e{bottom:305.760000pt;}
.y8c{bottom:306.080000pt;}
.ya1{bottom:307.200000pt;}
.yd2{bottom:308.160000pt;}
.y23b{bottom:308.320000pt;}
.y70{bottom:308.480000pt;}
.y12a{bottom:308.800000pt;}
.y1ed{bottom:311.200000pt;}
.yc9{bottom:312.800000pt;}
.yf0{bottom:313.760000pt;}
.yd4{bottom:314.720000pt;}
.y1a8{bottom:319.040000pt;}
.y1c6{bottom:319.360000pt;}
.y1d{bottom:320.640000pt;}
.y17e{bottom:322.530667pt;}
.y49{bottom:322.560000pt;}
.y20d{bottom:324.160000pt;}
.y8b{bottom:324.480000pt;}
.ya0{bottom:325.600000pt;}
.y23a{bottom:326.720000pt;}
.y6f{bottom:326.880000pt;}
.y129{bottom:327.520000pt;}
.y10c{bottom:328.640000pt;}
.y1ec{bottom:329.600000pt;}
.y1d8{bottom:331.360000pt;}
.ye3{bottom:333.120000pt;}
.y1c{bottom:336.480000pt;}
.y1c5{bottom:337.760000pt;}
.yc8{bottom:340.000000pt;}
.y177{bottom:340.397333pt;}
.y48{bottom:340.960000pt;}
.yef{bottom:342.400000pt;}
.y20c{bottom:342.560000pt;}
.y8a{bottom:342.880000pt;}
.y9f{bottom:344.000000pt;}
.y239{bottom:345.120000pt;}
.y6e{bottom:345.280000pt;}
.y128{bottom:345.920000pt;}
.y1a7{bottom:346.880000pt;}
.y1eb{bottom:348.000000pt;}
.y1b{bottom:351.200000pt;}
.ye2{bottom:351.520000pt;}
.y10b{bottom:355.840000pt;}
.y1c4{bottom:356.160000pt;}
.y1d7{bottom:358.080000pt;}
.yee{bottom:358.400000pt;}
.y47{bottom:359.360000pt;}
.y20b{bottom:360.960000pt;}
.y228{bottom:361.280000pt;}
.y89{bottom:362.400000pt;}
.y238{bottom:363.520000pt;}
.y6d{bottom:363.680000pt;}
.y127{bottom:364.320000pt;}
.y1ea{bottom:366.400000pt;}
.y1a{bottom:366.554400pt;}
.ye1{bottom:369.920000pt;}
.y1d6{bottom:372.800000pt;}
.y1a6{bottom:374.240000pt;}
.y1c3{bottom:374.560000pt;}
.y147{bottom:375.840000pt;}
.y46{bottom:377.760000pt;}
.y20a{bottom:379.360000pt;}
.y227{bottom:379.680000pt;}
.y88{bottom:380.800000pt;}
.y19{bottom:381.760000pt;}
.y237{bottom:381.920000pt;}
.y6c{bottom:382.080000pt;}
.y126{bottom:382.720000pt;}
.y10a{bottom:383.040000pt;}
.y1e9{bottom:384.800000pt;}
.yed{bottom:385.600000pt;}
.yc7{bottom:386.400000pt;}
.y181{bottom:388.320000pt;}
.y1c2{bottom:392.960000pt;}
.y45{bottom:396.160000pt;}
.y18{bottom:397.120000pt;}
.y209{bottom:397.760000pt;}
.y226{bottom:398.080000pt;}
.y87{bottom:399.200000pt;}
.y236{bottom:400.320000pt;}
.y6b{bottom:400.480000pt;}
.y125{bottom:401.120000pt;}
.y1a5{bottom:402.080000pt;}
.yc6{bottom:402.880000pt;}
.y1e8{bottom:403.200000pt;}
.y146{bottom:406.400000pt;}
.y180{bottom:406.720000pt;}
.y109{bottom:410.240000pt;}
.y1c1{bottom:411.360000pt;}
.y17{bottom:412.480000pt;}
.yec{bottom:412.800000pt;}
.y44{bottom:414.560000pt;}
.y208{bottom:416.160000pt;}
.y225{bottom:416.480000pt;}
.y86{bottom:417.600000pt;}
.y235{bottom:418.720000pt;}
.y6a{bottom:418.880000pt;}
.y1e7{bottom:421.600000pt;}
.y145{bottom:425.120000pt;}
.y16{bottom:427.819520pt;}
.y1c0{bottom:429.760000pt;}
.y1a4{bottom:429.920000pt;}
.yc5{bottom:430.080000pt;}
.y43{bottom:432.960000pt;}
.y124{bottom:434.880000pt;}
.y85{bottom:436.000000pt;}
.y18b{bottom:436.160000pt;}
.y234{bottom:436.800000pt;}
.y80{bottom:436.960000pt;}
.y69{bottom:437.280000pt;}
.y108{bottom:437.440000pt;}
.yeb{bottom:440.000000pt;}
.y15{bottom:443.184480pt;}
.y144{bottom:443.520000pt;}
.y207{bottom:447.680000pt;}
.y1bf{bottom:448.160000pt;}
.y42{bottom:451.360000pt;}
.y123{bottom:453.280000pt;}
.y84{bottom:454.400000pt;}
.yb1{bottom:455.360000pt;}
.y68{bottom:455.680000pt;}
.y1a3{bottom:457.120000pt;}
.yc4{bottom:457.280000pt;}
.y14{bottom:458.390080pt;}
.y143{bottom:461.920000pt;}
.y107{bottom:464.640000pt;}
.y1be{bottom:466.560000pt;}
.yea{bottom:467.200000pt;}
.y233{bottom:467.680000pt;}
.y41{bottom:469.760000pt;}
.y122{bottom:471.680000pt;}
.y83{bottom:472.800000pt;}
.y13{bottom:473.755040pt;}
.yb0{bottom:473.760000pt;}
.y67{bottom:474.080000pt;}
.y17a{bottom:476.816000pt;}
.y206{bottom:478.240000pt;}
.y142{bottom:480.320000pt;}
.y1a2{bottom:484.320000pt;}
.yc3{bottom:484.480000pt;}
.y1bd{bottom:484.960000pt;}
.y40{bottom:488.160000pt;}
.y12{bottom:489.120000pt;}
.y121{bottom:490.080000pt;}
.y82{bottom:491.200000pt;}
.y66{bottom:492.480000pt;}
.y106{bottom:493.280000pt;}
.ye9{bottom:494.400000pt;}
.y179{bottom:494.681333pt;}
.y205{bottom:498.080000pt;}
.y141{bottom:498.720000pt;}
.y24b{bottom:502.720000pt;}
.y1bc{bottom:503.360000pt;}
.y11{bottom:504.480000pt;}
.y3f{bottom:506.560000pt;}
.y120{bottom:508.480000pt;}
.y81{bottom:509.600000pt;}
.y65{bottom:510.720000pt;}
.y1a1{bottom:511.520000pt;}
.y164{bottom:512.545333pt;}
.y140{bottom:517.120000pt;}
.y204{bottom:517.920000pt;}
.y10{bottom:519.829440pt;}
.ye8{bottom:521.600000pt;}
.y105{bottom:521.760000pt;}
.y3e{bottom:524.960000pt;}
.y11f{bottom:526.880000pt;}
.y9e{bottom:528.000000pt;}
.y64{bottom:529.120000pt;}
.y162{bottom:530.409333pt;}
.yc2{bottom:531.040000pt;}
.yf{bottom:535.194400pt;}
.y13f{bottom:535.520000pt;}
.y104{bottom:537.760000pt;}
.y203{bottom:537.920000pt;}
.y19f{bottom:539.360000pt;}
.y1bb{bottom:540.000000pt;}
.y3d{bottom:543.040000pt;}
.y11e{bottom:545.280000pt;}
.y9d{bottom:546.400000pt;}
.y63{bottom:547.520000pt;}
.yc1{bottom:547.680000pt;}
.y166{bottom:548.274667pt;}
.ye7{bottom:548.800000pt;}
.ye{bottom:550.400000pt;}
.y13e{bottom:553.920000pt;}
.y202{bottom:557.760000pt;}
.y1ba{bottom:558.400000pt;}
.y3c{bottom:561.760000pt;}
.y11d{bottom:563.680000pt;}
.y9c{bottom:564.800000pt;}
.y103{bottom:564.960000pt;}
.y62{bottom:565.920000pt;}
.y160{bottom:566.140000pt;}
.yd{bottom:566.400000pt;}
.y19e{bottom:567.360000pt;}
.y13d{bottom:572.320000pt;}
.yc0{bottom:574.880000pt;}
.y1b9{bottom:576.800000pt;}
.ye5{bottom:577.440000pt;}
.y201{bottom:577.600000pt;}
.y11c{bottom:582.080000pt;}
.y9b{bottom:583.200000pt;}
.yaf{bottom:584.000000pt;}
.y15e{bottom:584.004000pt;}
.y61{bottom:584.320000pt;}
.y3b{bottom:584.800000pt;}
.y13c{bottom:590.720000pt;}
.y102{bottom:592.160000pt;}
.y19d{bottom:594.560000pt;}
.y1b8{bottom:595.200000pt;}
.y200{bottom:597.440000pt;}
.yc{bottom:598.720000pt;}
.y3a{bottom:599.512000pt;}
.y11b{bottom:600.480000pt;}
.y9a{bottom:601.600000pt;}
.y15d{bottom:601.868000pt;}
.ybf{bottom:602.080000pt;}
.yae{bottom:602.400000pt;}
.y60{bottom:602.720000pt;}
.y13b{bottom:609.120000pt;}
.y39{bottom:614.068000pt;}
.ye4{bottom:616.800000pt;}
.y232{bottom:617.280000pt;}
.y11a{bottom:618.880000pt;}
.y101{bottom:619.360000pt;}
.y154{bottom:619.733333pt;}
.y99{bottom:620.000000pt;}
.y5f{bottom:621.120000pt;}
.y19c{bottom:621.760000pt;}
.y1b7{bottom:624.480000pt;}
.yb{bottom:624.754560pt;}
.y13a{bottom:627.520000pt;}
.y1ff{bottom:628.000000pt;}
.y38{bottom:628.792000pt;}
.ybe{bottom:629.280000pt;}
.y1b6{bottom:636.000000pt;}
.y231{bottom:637.120000pt;}
.y119{bottom:637.280000pt;}
.y98{bottom:638.400000pt;}
.y5e{bottom:639.520000pt;}
.y37{bottom:643.348000pt;}
.y139{bottom:645.920000pt;}
.y152{bottom:646.529333pt;}
.y100{bottom:646.560000pt;}
.y1fe{bottom:647.840000pt;}
.y19b{bottom:649.600000pt;}
.ya{bottom:650.843840pt;}
.y118{bottom:655.680000pt;}
.ybc{bottom:656.480000pt;}
.y224{bottom:656.800000pt;}
.y230{bottom:656.960000pt;}
.y5d{bottom:657.920000pt;}
.y36{bottom:658.072000pt;}
.y1b5{bottom:664.000000pt;}
.y138{bottom:664.320000pt;}
.y150{bottom:664.394667pt;}
.y1fd{bottom:667.680000pt;}
.y35{bottom:672.628000pt;}
.yfe{bottom:673.760000pt;}
.y117{bottom:674.080000pt;}
.y223{bottom:675.200000pt;}
.y5c{bottom:676.320000pt;}
.y9{bottom:676.933120pt;}
.y19a{bottom:677.440000pt;}
.y14e{bottom:682.258667pt;}
.y21f{bottom:682.720000pt;}
.y34{bottom:687.352000pt;}
.y1fc{bottom:687.520000pt;}
.y1b4{bottom:691.200000pt;}
.y1e6{bottom:692.480000pt;}
.y222{bottom:693.600000pt;}
.y137{bottom:694.400000pt;}
.y5b{bottom:694.720000pt;}
.y116{bottom:699.520000pt;}
.y15a{bottom:700.122667pt;}
.yfd{bottom:700.960000pt;}
.y21e{bottom:701.120000pt;}
.y33{bottom:701.908000pt;}
.y8{bottom:702.852160pt;}
.ybb{bottom:703.040000pt;}
.y199{bottom:705.440000pt;}
.y1fb{bottom:707.360000pt;}
.y1e5{bottom:710.880000pt;}
.y221{bottom:712.000000pt;}
.y5a{bottom:713.120000pt;}
.y32{bottom:716.632000pt;}
.y1b3{bottom:718.400000pt;}
.y21d{bottom:719.520000pt;}
.yba{bottom:719.680000pt;}
.y1fa{bottom:727.200000pt;}
.yfc{bottom:728.320000pt;}
.y7{bottom:728.941440pt;}
.y1e4{bottom:729.280000pt;}
.y220{bottom:730.400000pt;}
.y7e{bottom:731.200000pt;}
.y31{bottom:731.356000pt;}
.y59{bottom:731.520000pt;}
.y158{bottom:732.605333pt;}
.y198{bottom:733.280000pt;}
.y21c{bottom:737.920000pt;}
.y30{bottom:745.912000pt;}
.y1b2{bottom:746.240000pt;}
.yb8{bottom:746.880000pt;}
.y1f9{bottom:747.040000pt;}
.y1e3{bottom:748.800000pt;}
.y7d{bottom:749.600000pt;}
.y24a{bottom:749.919867pt;}
.y58{bottom:749.920000pt;}
.y157{bottom:750.469333pt;}
.y6{bottom:755.030720pt;}
.y21b{bottom:756.320000pt;}
.yfa{bottom:756.800000pt;}
.y2f{bottom:760.636000pt;}
.y1f8{bottom:766.880000pt;}
.y1e2{bottom:767.200000pt;}
.y57{bottom:768.320000pt;}
.y197{bottom:771.999867pt;}
.y1b1{bottom:773.440000pt;}
.yb7{bottom:774.080000pt;}
.y2e{bottom:775.192000pt;}
.y1d5{bottom:776.632000pt;}
.y5{bottom:781.120000pt;}
.yf9{bottom:785.280000pt;}
.y1e1{bottom:785.600000pt;}
.yad{bottom:786.400000pt;}
.y56{bottom:786.720000pt;}
.y2d{bottom:789.916000pt;}
.y14c{bottom:790.396000pt;}
.y2c{bottom:814.885760pt;}
.y55{bottom:815.518720pt;}
.y1{bottom:823.040000pt;}
.y2b{bottom:832.800000pt;}
.h14{height:16.000000pt;}
.h13{height:16.001333pt;}
.h15{height:17.052000pt;}
.h1b{height:17.053333pt;}
.h18{height:25.985333pt;}
.h10{height:27.198667pt;}
.h11{height:27.200000pt;}
.h12{height:27.360000pt;}
.h1a{height:31.669333pt;}
.hb{height:32.625000pt;}
.h9{height:34.453125pt;}
.h1c{height:35.771724pt;}
.h17{height:37.050022pt;}
.h16{height:37.441758pt;}
.h19{height:37.503611pt;}
.he{height:40.664062pt;}
.h3{height:42.117188pt;}
.h2{height:42.262500pt;}
.ha{height:42.278500pt;}
.h1e{height:45.001562pt;}
.h6{height:46.609688pt;}
.h7{height:46.651927pt;}
.h8{height:46.691608pt;}
.h1d{height:47.102500pt;}
.hf{height:47.180312pt;}
.hd{height:51.663750pt;}
.h1f{height:54.218750pt;}
.h5{height:56.156250pt;}
.hc{height:56.843750pt;}
.h4{height:61.096875pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w6{width:25.920000pt;}
.w5{width:26.560000pt;}
.wa{width:26.561333pt;}
.w10{width:112.480000pt;}
.w12{width:112.960000pt;}
.wc{width:257.430667pt;}
.wd{width:285.853333pt;}
.w9{width:318.558667pt;}
.w4{width:345.120000pt;}
.w7{width:371.680000pt;}
.w8{width:398.238667pt;}
.w3{width:424.158667pt;}
.w11{width:428.800000pt;}
.wf{width:429.120000pt;}
.we{width:542.080000pt;}
.wb{width:544.097333pt;}
.w2{width:552.000000pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xa{left:4.000000pt;}
.x35{left:25.280000pt;}
.x29{left:26.798933pt;}
.x18{left:31.040000pt;}
.x9{left:45.280000pt;}
.x27{left:50.349467pt;}
.x36{left:53.280000pt;}
.x37{left:55.040000pt;}
.x26{left:62.530667pt;}
.x1e{left:68.545333pt;}
.x19{left:73.920000pt;}
.x12{left:79.520000pt;}
.x1{left:85.120000pt;}
.x17{left:92.000000pt;}
.x3d{left:104.000000pt;}
.x6{left:109.120000pt;}
.x3{left:113.600000pt;}
.x3c{left:122.880000pt;}
.x2c{left:126.685467pt;}
.xf{left:132.320000pt;}
.x3b{left:137.600000pt;}
.x25{left:139.678800pt;}
.x2f{left:141.302933pt;}
.x2a{left:142.927200pt;}
.x20{left:146.987600pt;}
.x1b{left:152.000000pt;}
.x2d{left:155.920533pt;}
.x7{left:160.800000pt;}
.x1c{left:169.924000pt;}
.x32{left:173.600000pt;}
.x21{left:178.658933pt;}
.x10{left:180.320000pt;}
.x31{left:181.907200pt;}
.x5{left:198.876000pt;}
.x4{left:204.480000pt;}
.x2e{left:210.330133pt;}
.x1f{left:214.390667pt;}
.x28{left:216.014800pt;}
.xd{left:217.280000pt;}
.x39{left:218.272000pt;}
.x2b{left:219.263200pt;}
.x33{left:222.560000pt;}
.x24{left:228.196133pt;}
.x22{left:233.063663pt;}
.x8{left:237.920000pt;}
.x11{left:241.280000pt;}
.x30{left:249.310267pt;}
.x1d{left:252.484000pt;}
.xc{left:255.680000pt;}
.xb{left:257.760000pt;}
.x1a{left:261.920000pt;}
.xe{left:266.720000pt;}
.x23{left:326.789333pt;}
.x3a{left:330.720000pt;}
.x38{left:354.720000pt;}
.x16{left:427.840000pt;}
.x13{left:454.400000pt;}
.x34{left:479.840000pt;}
.x14{left:480.960000pt;}
.x2{left:482.248000pt;}
.x15{left:507.520000pt;}
}




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