
    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_e65775b5e704cb727ddbc687.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.967000;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_8dc4d77dcb63ec13b655c0e6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.715000;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_83fe048dc84ae66409d5de53.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.049805;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_a5f57a4b9dfe87e8e98391a9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893066;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_b2f5894b522f357e60a5c855.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_d9d08d666397ea8a7b2e438e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c08fd0ce5e4af6c724e687fe.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b5384311d04da85172bfe69c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893066;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_64d0267af18a57d3960ff78a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e65775b5e704cb727ddbc687.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.967000;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_3f397a9c608bd65c31ff9a99.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.765000;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_e65775b5e704cb727ddbc687.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.967000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_61a624b1b152db80fb5622eb.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_7a2a5d0a52b2c925f47fdf90.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_342353719c799c7874a5a4e6.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_b388c941926ee5222cb421e8.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.049805;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_1e330f3c000cda19b0f57598.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_6448f28822896ee86cd4e836.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.893555;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:ff13;src:url('chunks/assets/font_a273e9387695d5b172ca8679.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_93cb9096d181f94283c5d21f.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.891602;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;}
.m4{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);}
.m3{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);}
.m2{transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197917,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,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);}
.v7{vertical-align:-42.519600px;}
.v3{vertical-align:-23.975400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.491400px;}
.v2{vertical-align:25.974000px;}
.v4{vertical-align:33.919800px;}
.v5{vertical-align:36.000000px;}
.v9{vertical-align:38.160000px;}
.v8{vertical-align:42.519600px;}
.v6{vertical-align:72.000000px;}
.ls17{letter-spacing:-4.320000px;}
.ls14{letter-spacing:-2.442000px;}
.ls19{letter-spacing:-2.160000px;}
.ls9{letter-spacing:-1.440000px;}
.ls18{letter-spacing:-1.296000px;}
.lse{letter-spacing:-1.080000px;}
.ls4{letter-spacing:-0.780000px;}
.lsa{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.345946px;}
.ls5{letter-spacing:-0.300000px;}
.lsf{letter-spacing:-0.230630px;}
.ls3{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.011400px;}
.lsb{letter-spacing:0.172973px;}
.ls10{letter-spacing:0.288288px;}
.ls2{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.720600px;}
.ls6{letter-spacing:0.756000px;}
.ls7{letter-spacing:1.080000px;}
.ls0{letter-spacing:2.520000px;}
.ls1{letter-spacing:3.360000px;}
.lsc{letter-spacing:78.606965px;}
.ls13{letter-spacing:97.960800px;}
.ls12{letter-spacing:126.834600px;}
.lsd{letter-spacing:237.896880px;}
.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;}
}
.ws67{word-spacing:-35.380800px;}
.ws66{word-spacing:-20.520000px;}
.ws3{word-spacing:-19.500000px;}
.ws4{word-spacing:-18.720000px;}
.wsa0{word-spacing:-18.000000px;}
.ws135{word-spacing:-16.560000px;}
.ws76{word-spacing:-16.500000px;}
.ws5{word-spacing:-15.000000px;}
.ws68{word-spacing:-14.414400px;}
.ws107{word-spacing:-12.024000px;}
.ws1{word-spacing:-12.000000px;}
.ws2{word-spacing:-11.368500px;}
.wsb{word-spacing:-8.970000px;}
.ws129{word-spacing:-7.056000px;}
.wsfc{word-spacing:-6.768000px;}
.ws127{word-spacing:-6.696000px;}
.ws141{word-spacing:-6.408000px;}
.ws117{word-spacing:-6.264000px;}
.ws60{word-spacing:-6.192000px;}
.wse1{word-spacing:-5.616000px;}
.wsc4{word-spacing:-5.400000px;}
.ws7{word-spacing:-5.256000px;}
.ws42{word-spacing:-5.184000px;}
.ws108{word-spacing:-5.112000px;}
.wsd3{word-spacing:-5.040000px;}
.ws144{word-spacing:-4.896000px;}
.ws3a{word-spacing:-4.824000px;}
.wsf{word-spacing:-4.800000px;}
.ws12c{word-spacing:-4.752000px;}
.wsa{word-spacing:-4.680000px;}
.ws10c{word-spacing:-4.608000px;}
.wsc5{word-spacing:-4.536000px;}
.ws2c{word-spacing:-4.464000px;}
.ws3d{word-spacing:-4.392000px;}
.ws5b{word-spacing:-4.248000px;}
.wsbd{word-spacing:-4.176000px;}
.ws59{word-spacing:-4.032000px;}
.ws100{word-spacing:-3.888000px;}
.ws3e{word-spacing:-3.816000px;}
.ws29{word-spacing:-3.744000px;}
.wsa4{word-spacing:-3.672000px;}
.wsb9{word-spacing:-3.600000px;}
.ws9b{word-spacing:-3.528000px;}
.ws47{word-spacing:-3.456000px;}
.wsf6{word-spacing:-3.312000px;}
.wscd{word-spacing:-3.240000px;}
.wsde{word-spacing:-3.024000px;}
.ws10b{word-spacing:-2.880000px;}
.ws8d{word-spacing:-2.664000px;}
.ws8{word-spacing:-2.640000px;}
.wsbe{word-spacing:-2.592000px;}
.wsc{word-spacing:-2.520000px;}
.ws20{word-spacing:-2.448000px;}
.ws93{word-spacing:-2.304000px;}
.ws32{word-spacing:-2.232000px;}
.ws110{word-spacing:-2.160000px;}
.wsbc{word-spacing:-2.088000px;}
.ws147{word-spacing:-1.944000px;}
.wsae{word-spacing:-1.872000px;}
.wsa8{word-spacing:-1.800000px;}
.ws40{word-spacing:-1.728000px;}
.ws61{word-spacing:-1.656000px;}
.ws9{word-spacing:-1.632000px;}
.ws97{word-spacing:-1.584000px;}
.ws6d{word-spacing:-1.512000px;}
.ws24{word-spacing:-1.296000px;}
.ws52{word-spacing:-1.224000px;}
.ws84{word-spacing:-1.188000px;}
.ws5f{word-spacing:-1.152000px;}
.ws25{word-spacing:-1.080000px;}
.wsc6{word-spacing:-1.008000px;}
.ws134{word-spacing:-0.864000px;}
.wsed{word-spacing:-0.792000px;}
.ws17{word-spacing:-0.720000px;}
.ws4e{word-spacing:-0.648000px;}
.ws2b{word-spacing:-0.504000px;}
.wscb{word-spacing:-0.432000px;}
.ws10{word-spacing:-0.420000px;}
.ws1c{word-spacing:-0.378000px;}
.ws70{word-spacing:-0.288288px;}
.ws139{word-spacing:-0.288000px;}
.ws62{word-spacing:-0.144000px;}
.ws1d{word-spacing:-0.072000px;}
.ws69{word-spacing:-0.060060px;}
.ws0{word-spacing:-0.048000px;}
.ws6{word-spacing:0.000000px;}
.ws10a{word-spacing:0.072000px;}
.ws12f{word-spacing:0.144000px;}
.wsc8{word-spacing:0.216000px;}
.ws6f{word-spacing:0.230630px;}
.ws28{word-spacing:0.288000px;}
.wse{word-spacing:0.300000px;}
.ws71{word-spacing:0.345946px;}
.ws2f{word-spacing:0.360000px;}
.ws57{word-spacing:0.432000px;}
.ws23{word-spacing:0.576000px;}
.ws12e{word-spacing:0.648000px;}
.ws22{word-spacing:0.720000px;}
.wsf7{word-spacing:0.792000px;}
.wsd5{word-spacing:0.936000px;}
.wsa2{word-spacing:1.008000px;}
.ws6b{word-spacing:1.080000px;}
.wse0{word-spacing:1.152000px;}
.ws8e{word-spacing:1.224000px;}
.ws14{word-spacing:1.260000px;}
.ws88{word-spacing:1.296000px;}
.ws10d{word-spacing:1.368000px;}
.ws44{word-spacing:1.440000px;}
.ws109{word-spacing:1.512000px;}
.ws112{word-spacing:1.584000px;}
.wsec{word-spacing:1.656000px;}
.ws94{word-spacing:1.728000px;}
.ws1e{word-spacing:1.800000px;}
.ws4f{word-spacing:1.872000px;}
.ws118{word-spacing:1.944000px;}
.ws1a{word-spacing:2.016000px;}
.wsa6{word-spacing:2.088000px;}
.ws12{word-spacing:2.160000px;}
.wsc2{word-spacing:2.232000px;}
.ws33{word-spacing:2.304000px;}
.wsee{word-spacing:2.376000px;}
.ws8a{word-spacing:2.442000px;}
.ws2d{word-spacing:2.448000px;}
.wsce{word-spacing:2.520000px;}
.ws26{word-spacing:2.592000px;}
.ws39{word-spacing:2.664000px;}
.ws48{word-spacing:2.736000px;}
.wsba{word-spacing:2.808000px;}
.ws43{word-spacing:2.880000px;}
.ws91{word-spacing:3.024000px;}
.ws12d{word-spacing:3.096000px;}
.ws1f{word-spacing:3.312000px;}
.ws8b{word-spacing:3.360000px;}
.wsf4{word-spacing:3.384000px;}
.ws1b{word-spacing:3.456000px;}
.ws101{word-spacing:3.528000px;}
.ws18{word-spacing:3.600000px;}
.ws2e{word-spacing:3.672000px;}
.ws54{word-spacing:3.744000px;}
.ws35{word-spacing:3.816000px;}
.ws125{word-spacing:3.888000px;}
.ws4b{word-spacing:3.960000px;}
.wsd6{word-spacing:4.032000px;}
.ws11d{word-spacing:4.104000px;}
.wsb6{word-spacing:4.176000px;}
.ws41{word-spacing:4.248000px;}
.ws11b{word-spacing:4.320000px;}
.ws120{word-spacing:4.392000px;}
.ws137{word-spacing:4.464000px;}
.wseb{word-spacing:4.536000px;}
.ws99{word-spacing:4.608000px;}
.ws102{word-spacing:4.680000px;}
.ws9a{word-spacing:4.752000px;}
.wsdc{word-spacing:4.824000px;}
.wsbb{word-spacing:4.896000px;}
.wsf3{word-spacing:4.968000px;}
.wsfd{word-spacing:5.112000px;}
.wsb4{word-spacing:5.184000px;}
.ws11e{word-spacing:5.256000px;}
.ws6a{word-spacing:5.328000px;}
.wsea{word-spacing:5.400000px;}
.ws148{word-spacing:5.472000px;}
.wscc{word-spacing:5.544000px;}
.ws5d{word-spacing:5.688000px;}
.ws13e{word-spacing:5.760000px;}
.wsbf{word-spacing:5.832000px;}
.wsb3{word-spacing:5.904000px;}
.wsa9{word-spacing:5.976000px;}
.wsb0{word-spacing:6.120000px;}
.ws140{word-spacing:6.192000px;}
.wse3{word-spacing:6.264000px;}
.wsc1{word-spacing:6.336000px;}
.ws10f{word-spacing:6.408000px;}
.ws45{word-spacing:6.480000px;}
.ws49{word-spacing:6.552000px;}
.wsd0{word-spacing:6.624000px;}
.ws143{word-spacing:6.696000px;}
.wsf8{word-spacing:6.768000px;}
.ws5a{word-spacing:6.840000px;}
.wsd1{word-spacing:6.912000px;}
.ws21{word-spacing:6.984000px;}
.ws13{word-spacing:7.020000px;}
.ws6e{word-spacing:7.128000px;}
.ws8c{word-spacing:7.200000px;}
.wsdf{word-spacing:7.272000px;}
.ws3f{word-spacing:7.416000px;}
.wsaa{word-spacing:7.488000px;}
.ws95{word-spacing:7.704000px;}
.ws30{word-spacing:7.776000px;}
.ws11f{word-spacing:7.848000px;}
.ws4a{word-spacing:8.064000px;}
.ws65{word-spacing:8.136000px;}
.ws56{word-spacing:8.208000px;}
.ws142{word-spacing:8.280000px;}
.ws5e{word-spacing:8.424000px;}
.ws130{word-spacing:8.496000px;}
.wse5{word-spacing:8.640000px;}
.ws58{word-spacing:8.712000px;}
.ws149{word-spacing:8.928000px;}
.ws98{word-spacing:9.000000px;}
.ws138{word-spacing:9.144000px;}
.wsfa{word-spacing:9.216000px;}
.wsdd{word-spacing:9.288000px;}
.ws132{word-spacing:9.360000px;}
.ws51{word-spacing:9.504000px;}
.wsd4{word-spacing:9.576000px;}
.ws4c{word-spacing:9.648000px;}
.ws12b{word-spacing:9.720000px;}
.ws34{word-spacing:9.792000px;}
.wsb1{word-spacing:9.864000px;}
.wsa3{word-spacing:10.080000px;}
.ws55{word-spacing:10.152000px;}
.wsc3{word-spacing:10.296000px;}
.ws90{word-spacing:10.368000px;}
.ws19{word-spacing:10.440000px;}
.wsab{word-spacing:10.512000px;}
.ws46{word-spacing:10.584000px;}
.ws13a{word-spacing:10.656000px;}
.wsd9{word-spacing:10.728000px;}
.ws106{word-spacing:10.800000px;}
.wsf9{word-spacing:10.872000px;}
.ws13f{word-spacing:10.944000px;}
.ws3c{word-spacing:11.088000px;}
.ws92{word-spacing:11.232000px;}
.wsfe{word-spacing:11.520000px;}
.wsb5{word-spacing:11.592000px;}
.wsc0{word-spacing:11.664000px;}
.wsac{word-spacing:11.808000px;}
.ws13b{word-spacing:12.024000px;}
.wsd{word-spacing:12.120000px;}
.ws36{word-spacing:12.168000px;}
.ws78{word-spacing:12.298200px;}
.wsef{word-spacing:12.384000px;}
.ws27{word-spacing:12.456000px;}
.ws73{word-spacing:12.528000px;}
.wsca{word-spacing:12.672000px;}
.wse7{word-spacing:12.744000px;}
.ws64{word-spacing:12.888000px;}
.ws103{word-spacing:12.960000px;}
.wsa5{word-spacing:13.248000px;}
.wsc9{word-spacing:13.464000px;}
.wsb2{word-spacing:13.680000px;}
.ws89{word-spacing:13.752000px;}
.ws31{word-spacing:13.824000px;}
.ws14a{word-spacing:13.896000px;}
.ws11{word-spacing:14.160000px;}
.ws133{word-spacing:14.184000px;}
.ws8f{word-spacing:14.256000px;}
.wse6{word-spacing:14.472000px;}
.wsf1{word-spacing:14.544000px;}
.ws124{word-spacing:14.688000px;}
.ws63{word-spacing:14.832000px;}
.ws53{word-spacing:14.976000px;}
.wsb8{word-spacing:15.048000px;}
.ws113{word-spacing:15.120000px;}
.ws115{word-spacing:15.192000px;}
.ws4d{word-spacing:15.264000px;}
.ws128{word-spacing:15.408000px;}
.wsb7{word-spacing:15.480000px;}
.wsda{word-spacing:15.552000px;}
.ws6c{word-spacing:15.768000px;}
.wsf2{word-spacing:15.840000px;}
.wsad{word-spacing:16.344000px;}
.ws87{word-spacing:16.632000px;}
.ws11a{word-spacing:16.776000px;}
.ws121{word-spacing:16.920000px;}
.ws3b{word-spacing:17.064000px;}
.wsf5{word-spacing:17.280000px;}
.wsdb{word-spacing:17.496000px;}
.ws15{word-spacing:17.580000px;}
.ws145{word-spacing:17.640000px;}
.ws114{word-spacing:17.784000px;}
.wsd7{word-spacing:18.360000px;}
.wsa1{word-spacing:18.648000px;}
.wscf{word-spacing:18.720000px;}
.wse4{word-spacing:18.792000px;}
.wsd8{word-spacing:18.936000px;}
.ws13c{word-spacing:19.008000px;}
.ws146{word-spacing:19.296000px;}
.ws96{word-spacing:20.304000px;}
.ws12a{word-spacing:20.448000px;}
.wsfb{word-spacing:20.736000px;}
.ws11c{word-spacing:20.952000px;}
.ws16{word-spacing:21.384000px;}
.ws122{word-spacing:22.464000px;}
.ws5c{word-spacing:22.608000px;}
.wse9{word-spacing:22.752000px;}
.ws13d{word-spacing:22.896000px;}
.ws50{word-spacing:24.192000px;}
.ws72{word-spacing:24.264000px;}
.ws9d{word-spacing:24.482400px;}
.ws111{word-spacing:24.768000px;}
.ws10e{word-spacing:24.984000px;}
.ws105{word-spacing:25.128000px;}
.wsaf{word-spacing:26.712000px;}
.wsc7{word-spacing:26.928000px;}
.ws75{word-spacing:27.003600px;}
.ws116{word-spacing:28.728000px;}
.wsd2{word-spacing:32.904000px;}
.ws123{word-spacing:33.336000px;}
.ws126{word-spacing:33.768000px;}
.wse8{word-spacing:34.056000px;}
.wsa7{word-spacing:35.568000px;}
.wse2{word-spacing:38.952000px;}
.ws7f{word-spacing:39.022200px;}
.ws136{word-spacing:40.464000px;}
.wsff{word-spacing:40.680000px;}
.ws131{word-spacing:41.688000px;}
.ws119{word-spacing:44.568000px;}
.wsf0{word-spacing:47.160000px;}
.ws104{word-spacing:49.176000px;}
.ws2a{word-spacing:54.000000px;}
.ws82{word-spacing:54.904800px;}
.ws79{word-spacing:57.587400px;}
.ws9e{word-spacing:58.090200px;}
.ws86{word-spacing:59.127600px;}
.ws81{word-spacing:66.120600px;}
.ws7d{word-spacing:68.682000px;}
.ws77{word-spacing:69.283200px;}
.ws80{word-spacing:90.766800px;}
.ws83{word-spacing:97.864200px;}
.ws7a{word-spacing:114.364200px;}
.ws7e{word-spacing:131.064000px;}
.ws74{word-spacing:139.264800px;}
.ws37{word-spacing:157.012200px;}
.ws7c{word-spacing:182.365800px;}
.ws9f{word-spacing:189.490200px;}
.ws7b{word-spacing:195.231600px;}
.ws38{word-spacing:209.568000px;}
.ws9c{word-spacing:250.491600px;}
.ws85{word-spacing:857.768400px;}
._5f{margin-left:-97.962600px;}
._61{margin-left:-39.801600px;}
._8a{margin-left:-27.288000px;}
._24{margin-left:-23.915880px;}
._10{margin-left:-21.675600px;}
._60{margin-left:-19.072800px;}
._c{margin-left:-16.617600px;}
._f{margin-left:-15.577200px;}
._3{margin-left:-14.520000px;}
._6{margin-left:-13.372800px;}
._9{margin-left:-9.806400px;}
._20{margin-left:-8.664000px;}
._8{margin-left:-7.646400px;}
._19{margin-left:-6.511200px;}
._5{margin-left:-5.366400px;}
._d{margin-left:-3.684000px;}
._2{margin-left:-2.664000px;}
._1{margin-left:-1.238400px;}
._0{width:1.609200px;}
._4{width:2.661600px;}
._a{width:3.755400px;}
._e{width:5.178000px;}
._13{width:6.411600px;}
._14{width:7.743600px;}
._1b{width:9.165600px;}
._12{width:10.749600px;}
._b{width:12.030000px;}
._18{width:13.040400px;}
._11{width:14.731200px;}
._17{width:15.919200px;}
._1f{width:16.984800px;}
._15{width:19.296000px;}
._89{width:20.347200px;}
._16{width:21.715200px;}
._21{width:22.766400px;}
._1a{width:24.465600px;}
._23{width:25.538400px;}
._22{width:26.568000px;}
._8b{width:28.368000px;}
._8c{width:30.722400px;}
._1c{width:33.768000px;}
._28{width:35.575800px;}
._88{width:37.526400px;}
._27{width:38.903400px;}
._38{width:42.468600px;}
._7{width:44.118000px;}
._87{width:47.599200px;}
._42{width:51.571800px;}
._2b{width:55.522200px;}
._3b{width:57.587400px;}
._2c{width:59.527200px;}
._4c{width:60.963600px;}
._37{width:66.120600px;}
._3c{width:67.896000px;}
._5e{width:71.838000px;}
._3e{width:73.342800px;}
._4f{width:75.547800px;}
._4d{width:77.038800px;}
._55{width:81.460200px;}
._2a{width:82.620600px;}
._51{width:88.501200px;}
._48{width:92.940600px;}
._2d{width:94.988400px;}
._56{width:97.960800px;}
._30{width:99.004200px;}
._25{width:102.642600px;}
._2f{width:105.339600px;}
._47{width:108.709800px;}
._3f{width:109.782600px;}
._39{width:111.075000px;}
._4e{width:112.891200px;}
._4b{width:114.364200px;}
._50{width:115.368000px;}
._52{width:119.401800px;}
._2e{width:129.082200px;}
._32{width:130.864200px;}
._31{width:132.016800px;}
._4a{width:133.813200px;}
._26{width:135.829200px;}
._49{width:140.944200px;}
._35{width:143.291400px;}
._3a{width:145.582200px;}
._3d{width:147.415200px;}
._41{width:154.510200px;}
._33{width:157.020600px;}
._40{width:165.270600px;}
._46{width:166.385400px;}
._77{width:171.783600px;}
._45{width:173.469600px;}
._64{width:181.970400px;}
._7a{width:183.762600px;}
._53{width:190.020600px;}
._44{width:193.722000px;}
._63{width:204.138000px;}
._6f{width:207.910800px;}
._29{width:223.225200px;}
._43{width:225.566400px;}
._36{width:235.087200px;}
._34{width:237.816000px;}
._7f{width:248.607600px;}
._58{width:271.547400px;}
._5d{width:283.065600px;}
._83{width:301.176600px;}
._85{width:304.872600px;}
._7c{width:306.097200px;}
._7b{width:312.165600px;}
._7d{width:316.851600px;}
._6e{width:324.145200px;}
._68{width:325.500000px;}
._71{width:327.841200px;}
._80{width:333.270000px;}
._5c{width:334.413600px;}
._70{width:337.840200px;}
._6d{width:342.935400px;}
._69{width:351.708600px;}
._65{width:359.325600px;}
._73{width:360.665400px;}
._6b{width:367.635600px;}
._78{width:368.951400px;}
._5a{width:371.043600px;}
._59{width:374.739600px;}
._84{width:377.001000px;}
._5b{width:385.761600px;}
._57{width:404.043600px;}
._81{width:433.149600px;}
._66{width:448.996200px;}
._75{width:473.202600px;}
._1d{width:489.495600px;}
._76{width:503.862600px;}
._82{width:511.188600px;}
._74{width:513.861600px;}
._79{width:521.187600px;}
._62{width:524.851200px;}
._6a{width:532.177200px;}
._67{width:536.830200px;}
._6c{width:544.156200px;}
._54{width:569.374800px;}
._1e{width:630.019800px;}
._7e{width:640.878600px;}
._86{width:651.867600px;}
._72{width:673.846200px;}
.fc1{color:transparent;}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:35.380800px;}
.fs8{font-size:41.976000px;}
.fs7{font-size:45.474000px;}
.fs3{font-size:48.000000px;}
.fsc{font-size:49.140000px;}
.fse{font-size:49.270800px;}
.fs0{font-size:54.000000px;}
.fsb{font-size:57.657600px;}
.fs4{font-size:60.000000px;}
.fsd{font-size:60.060000px;}
.fs9{font-size:60.278400px;}
.fs1{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fs5{font-size:96.000000px;}
.y10b{bottom:-4.912200px;}
.y0{bottom:0.000000px;}
.y128{bottom:9.572250px;}
.y115{bottom:38.000550px;}
.y10f{bottom:38.002050px;}
.y108{bottom:42.916650px;}
.y2{bottom:82.488300px;}
.y1eb{bottom:131.785350px;}
.y1af{bottom:131.803050px;}
.y12e{bottom:131.811000px;}
.y14b{bottom:131.811150px;}
.yd6{bottom:131.991900px;}
.y1ac{bottom:132.093000px;}
.yd1{bottom:132.180900px;}
.y142{bottom:132.203550px;}
.y12d{bottom:132.282000px;}
.y4e{bottom:132.437550px;}
.y49{bottom:132.707550px;}
.y17e{bottom:133.279350px;}
.y147{bottom:133.359750px;}
.y146{bottom:133.714200px;}
.y16b{bottom:137.601000px;}
.y140{bottom:138.620700px;}
.yb1{bottom:139.231350px;}
.yc6{bottom:139.609200px;}
.y13e{bottom:145.037850px;}
.y149{bottom:147.321900px;}
.y136{bottom:147.325950px;}
.y144{bottom:147.330000px;}
.y188{bottom:153.476250px;}
.y17d{bottom:155.779350px;}
.y1ea{bottom:155.785350px;}
.y1ae{bottom:155.803050px;}
.yd5{bottom:155.991900px;}
.y1ab{bottom:156.093000px;}
.yd0{bottom:156.180900px;}
.y12c{bottom:156.282000px;}
.y4d{bottom:156.431550px;}
.y48{bottom:156.701550px;}
.y12f{bottom:161.743350px;}
.y13b{bottom:161.755350px;}
.y13a{bottom:162.218700px;}
.yb0{bottom:163.231350px;}
.yc5{bottom:163.609200px;}
.y137{bottom:165.880350px;}
.y189{bottom:176.456850px;}
.y17c{bottom:178.279350px;}
.y1e9{bottom:179.785350px;}
.y1ad{bottom:179.803050px;}
.yd4{bottom:179.991900px;}
.y1aa{bottom:180.093000px;}
.ycf{bottom:180.180900px;}
.y12b{bottom:180.282000px;}
.y4c{bottom:180.425550px;}
.y47{bottom:180.695550px;}
.yaf{bottom:187.231350px;}
.yc4{bottom:187.609200px;}
.y17b{bottom:200.779350px;}
.y1e8{bottom:203.785350px;}
.y78{bottom:203.803050px;}
.y83{bottom:203.991900px;}
.y1a9{bottom:204.093000px;}
.yce{bottom:204.180900px;}
.y4b{bottom:204.419550px;}
.y46{bottom:204.689550px;}
.yae{bottom:211.231350px;}
.y17f{bottom:221.122950px;}
.y17a{bottom:223.279350px;}
.y1e7{bottom:227.785350px;}
.y77{bottom:227.803050px;}
.y82{bottom:227.991900px;}
.y1a8{bottom:228.093000px;}
.y12a{bottom:228.093150px;}
.ycd{bottom:228.180900px;}
.y4a{bottom:228.413550px;}
.y45{bottom:228.683550px;}
.yad{bottom:235.231350px;}
.yc3{bottom:235.420200px;}
.y130{bottom:239.356800px;}
.y139{bottom:245.169600px;}
.y179{bottom:245.779350px;}
.y138{bottom:247.606800px;}
.y1e6{bottom:251.785350px;}
.y76{bottom:251.803050px;}
.y81{bottom:251.991900px;}
.y1a7{bottom:252.093000px;}
.y1c1{bottom:252.180900px;}
.yac{bottom:259.231350px;}
.yc2{bottom:259.420200px;}
.y127{bottom:265.033500px;}
.y101{bottom:267.355747px;}
.y1e5{bottom:275.785350px;}
.y75{bottom:275.803050px;}
.y80{bottom:275.991900px;}
.y1a6{bottom:276.093000px;}
.y1c0{bottom:276.180900px;}
.y178{bottom:281.035200px;}
.yab{bottom:283.231350px;}
.yc1{bottom:283.420200px;}
.y44{bottom:283.515750px;}
.y100{bottom:285.695450px;}
.y121{bottom:287.705700px;}
.y123{bottom:289.667900px;}
.y1e4{bottom:299.785350px;}
.y74{bottom:299.803050px;}
.y7f{bottom:299.991900px;}
.y1a5{bottom:300.093000px;}
.y43{bottom:300.765750px;}
.y120{bottom:302.313110px;}
.y177{bottom:303.535200px;}
.yff{bottom:304.065293px;}
.y122{bottom:306.734550px;}
.yaa{bottom:307.231350px;}
.yc0{bottom:307.420200px;}
.y11f{bottom:318.687869px;}
.yfe{bottom:322.239230px;}
.y1e3{bottom:323.785350px;}
.y73{bottom:323.803050px;}
.y7e{bottom:323.991900px;}
.y1a4{bottom:324.093000px;}
.y131{bottom:328.859250px;}
.y129{bottom:329.310900px;}
.y16{bottom:330.590550px;}
.y42{bottom:330.765750px;}
.ya9{bottom:331.231350px;}
.ybf{bottom:331.420200px;}
.y11e{bottom:335.235600px;}
.yfd{bottom:340.578934px;}
.y15{bottom:344.090550px;}
.y1e2{bottom:347.785350px;}
.y72{bottom:347.803050px;}
.y7d{bottom:347.991900px;}
.y41{bottom:348.015750px;}
.y1a3{bottom:348.093000px;}
.y11d{bottom:351.615600px;}
.ya8{bottom:355.231350px;}
.ybe{bottom:355.420200px;}
.y14{bottom:357.590550px;}
.yfc{bottom:358.918637px;}
.y180{bottom:360.262200px;}
.y40{bottom:365.265750px;}
.y11c{bottom:368.160260px;}
.y13{bottom:371.090550px;}
.y1e1{bottom:371.785350px;}
.y71{bottom:371.803050px;}
.y7c{bottom:371.991900px;}
.y1a2{bottom:372.093000px;}
.yfb{bottom:377.258340px;}
.ya7{bottom:379.231350px;}
.ybd{bottom:379.420200px;}
.y3f{bottom:382.515750px;}
.y11b{bottom:384.707992px;}
.yfa{bottom:395.598043px;}
.y1e0{bottom:395.785350px;}
.y70{bottom:395.803050px;}
.y7b{bottom:395.991900px;}
.y1a1{bottom:396.093000px;}
.y114{bottom:399.282000px;}
.y3e{bottom:399.765750px;}
.y11a{bottom:401.082750px;}
.ya6{bottom:403.231350px;}
.ybc{bottom:403.420200px;}
.y117{bottom:404.037702px;}
.y132{bottom:411.915000px;}
.yf9{bottom:413.937746px;}
.y3d{bottom:417.015750px;}
.y119{bottom:417.631942px;}
.y133{bottom:419.718000px;}
.y1df{bottom:419.785350px;}
.y6f{bottom:419.803050px;}
.y7a{bottom:419.991900px;}
.y1a0{bottom:420.093000px;}
.y116{bottom:420.902550px;}
.ya5{bottom:427.231350px;}
.ybb{bottom:427.420200px;}
.y12{bottom:430.830750px;}
.yf8{bottom:432.277450px;}
.y118{bottom:434.006700px;}
.y3c{bottom:434.265750px;}
.y1de{bottom:443.785350px;}
.y6e{bottom:443.803050px;}
.y79{bottom:443.991900px;}
.y19f{bottom:444.093000px;}
.y11{bottom:444.330750px;}
.yf7{bottom:450.617153px;}
.ya4{bottom:451.231350px;}
.yba{bottom:451.420200px;}
.y3b{bottom:451.515750px;}
.y10{bottom:457.830750px;}
.y1dd{bottom:467.785350px;}
.y6d{bottom:467.803050px;}
.ycc{bottom:467.991900px;}
.y19e{bottom:468.093000px;}
.y3a{bottom:468.765750px;}
.yf6{bottom:468.956856px;}
.yf{bottom:471.330750px;}
.ya3{bottom:475.231350px;}
.yb9{bottom:475.420200px;}
.y135{bottom:483.851550px;}
.ye{bottom:484.830750px;}
.y39{bottom:486.015750px;}
.yf5{bottom:487.130794px;}
.y1dc{bottom:491.785350px;}
.y6c{bottom:491.803050px;}
.ycb{bottom:491.991900px;}
.y19d{bottom:492.093000px;}
.y10e{bottom:493.465500px;}
.y16a{bottom:497.601000px;}
.y111{bottom:498.222702px;}
.yd{bottom:498.330750px;}
.y134{bottom:499.199400px;}
.ya2{bottom:499.231350px;}
.yb8{bottom:499.420200px;}
.y38{bottom:503.265750px;}
.yf4{bottom:505.470497px;}
.y113{bottom:510.180552px;}
.yc{bottom:511.830750px;}
.y110{bottom:515.087550px;}
.y1db{bottom:515.785350px;}
.y6b{bottom:515.803050px;}
.yca{bottom:515.991900px;}
.y19c{bottom:516.093000px;}
.y182{bottom:518.171700px;}
.y37{bottom:520.515750px;}
.y169{bottom:521.601000px;}
.ya1{bottom:523.231350px;}
.yb7{bottom:523.420200px;}
.yf3{bottom:523.810200px;}
.y126{bottom:525.054930px;}
.yb{bottom:525.330750px;}
.y112{bottom:527.045400px;}
.y176{bottom:530.791200px;}
.y181{bottom:535.183200px;}
.y36{bottom:537.765750px;}
.ya{bottom:538.830750px;}
.y1da{bottom:539.785350px;}
.y6a{bottom:539.803050px;}
.yc9{bottom:539.991900px;}
.y19b{bottom:540.093000px;}
.yf2{bottom:542.149903px;}
.y168{bottom:545.601000px;}
.ya0{bottom:547.231350px;}
.yb6{bottom:547.420200px;}
.y125{bottom:550.598400px;}
.y9{bottom:552.330750px;}
.y175{bottom:553.291200px;}
.y35{bottom:555.015750px;}
.yf1{bottom:560.534815px;}
.y1d9{bottom:563.785350px;}
.y69{bottom:563.803050px;}
.yc8{bottom:563.991900px;}
.y19a{bottom:564.093000px;}
.y8{bottom:565.830750px;}
.y167{bottom:569.601000px;}
.y9f{bottom:571.231350px;}
.yb5{bottom:571.420200px;}
.y34{bottom:572.265750px;}
.yf0{bottom:578.874518px;}
.y7{bottom:579.330750px;}
.y1d8{bottom:587.785350px;}
.y68{bottom:587.803050px;}
.yc7{bottom:587.991900px;}
.y199{bottom:588.093000px;}
.y33{bottom:589.515750px;}
.y6{bottom:592.830750px;}
.y166{bottom:593.601000px;}
.y9e{bottom:595.231350px;}
.yb4{bottom:595.420200px;}
.yef{bottom:597.214222px;}
.y10d{bottom:598.672902px;}
.y32{bottom:606.765750px;}
.y1d7{bottom:611.785350px;}
.y67{bottom:611.803050px;}
.yd3{bottom:611.991900px;}
.y198{bottom:612.093000px;}
.y10c{bottom:615.537750px;}
.yee{bottom:615.553925px;}
.y165{bottom:617.601000px;}
.y9d{bottom:619.231350px;}
.yb3{bottom:619.420200px;}
.y31{bottom:624.015750px;}
.yed{bottom:633.893628px;}
.y5{bottom:634.712550px;}
.y1d6{bottom:635.785350px;}
.y66{bottom:635.803050px;}
.yd2{bottom:635.991900px;}
.y197{bottom:636.093000px;}
.y30{bottom:641.265750px;}
.y164{bottom:641.601000px;}
.y9c{bottom:643.231350px;}
.yb2{bottom:643.420200px;}
.y4{bottom:648.212550px;}
.y148{bottom:649.703250px;}
.yec{bottom:652.233331px;}
.y13c{bottom:657.945150px;}
.y2f{bottom:658.515750px;}
.y1d5{bottom:659.785350px;}
.y65{bottom:659.803050px;}
.y1b8{bottom:659.991900px;}
.y196{bottom:660.093000px;}
.y163{bottom:665.601000px;}
.y9b{bottom:667.231350px;}
.yeb{bottom:670.422338px;}
.y3{bottom:674.468550px;}
.y2e{bottom:675.765750px;}
.y13f{bottom:677.426100px;}
.y1d4{bottom:683.785350px;}
.y64{bottom:683.803050px;}
.y1b7{bottom:683.991900px;}
.y195{bottom:684.093000px;}
.y13d{bottom:686.127300px;}
.yea{bottom:688.762042px;}
.y107{bottom:689.410500px;}
.y9a{bottom:691.231350px;}
.y2d{bottom:693.015750px;}
.y10a{bottom:699.399419px;}
.y183{bottom:706.240800px;}
.y1d3{bottom:707.785350px;}
.y63{bottom:707.803050px;}
.y1b6{bottom:707.991900px;}
.y194{bottom:708.093000px;}
.y124{bottom:708.252450px;}
.y2c{bottom:710.265750px;}
.y162{bottom:711.719250px;}
.y106{bottom:712.993658px;}
.y99{bottom:715.231350px;}
.y109{bottom:715.947150px;}
.ye9{bottom:719.715000px;}
.y2b{bottom:727.515750px;}
.y105{bottom:730.031479px;}
.y161{bottom:731.219250px;}
.y1d2{bottom:731.785350px;}
.y62{bottom:731.803050px;}
.y1b5{bottom:731.991900px;}
.y193{bottom:732.093000px;}
.ye8{bottom:737.904444px;}
.y98{bottom:739.231350px;}
.y2a{bottom:744.765750px;}
.y104{bottom:746.579210px;}
.y160{bottom:748.111050px;}
.y1d1{bottom:755.785350px;}
.y61{bottom:755.803050px;}
.y1b4{bottom:755.991900px;}
.y192{bottom:756.093000px;}
.ye7{bottom:756.244147px;}
.y29{bottom:762.015750px;}
.y103{bottom:762.953969px;}
.y97{bottom:763.231350px;}
.y15f{bottom:764.268450px;}
.ye6{bottom:774.433154px;}
.y28{bottom:779.265750px;}
.y102{bottom:779.501700px;}
.y1d0{bottom:779.785350px;}
.y60{bottom:779.803050px;}
.y1b3{bottom:779.991900px;}
.y191{bottom:780.093000px;}
.y15e{bottom:780.426000px;}
.y174{bottom:780.547050px;}
.y96{bottom:787.231350px;}
.ye5{bottom:792.772858px;}
.y27{bottom:796.515750px;}
.y15d{bottom:796.583550px;}
.y185{bottom:799.300050px;}
.y173{bottom:803.047050px;}
.y1cf{bottom:803.785350px;}
.y5f{bottom:803.803050px;}
.y1b2{bottom:803.991900px;}
.y190{bottom:804.093000px;}
.ye4{bottom:811.142700px;}
.y95{bottom:811.231350px;}
.y15c{bottom:812.740950px;}
.y26{bottom:813.765750px;}
.y184{bottom:817.870650px;}
.y172{bottom:825.547050px;}
.y1ce{bottom:827.785350px;}
.y5e{bottom:827.803050px;}
.y1b1{bottom:827.991900px;}
.y18f{bottom:828.093000px;}
.y15b{bottom:828.898350px;}
.y25{bottom:831.021750px;}
.y94{bottom:835.231350px;}
.y15a{bottom:845.055900px;}
.y171{bottom:848.047050px;}
.y1cd{bottom:851.785350px;}
.y5d{bottom:851.803050px;}
.y1b0{bottom:851.991900px;}
.y18e{bottom:852.093000px;}
.ye3{bottom:852.093150px;}
.y93{bottom:859.231350px;}
.y159{bottom:861.213450px;}
.y24{bottom:867.777750px;}
.y170{bottom:870.547050px;}
.y1cc{bottom:875.785350px;}
.y5c{bottom:875.803050px;}
.y1bf{bottom:875.991900px;}
.y18d{bottom:876.093000px;}
.ye2{bottom:876.093150px;}
.y158{bottom:877.370850px;}
.y16f{bottom:893.047050px;}
.y186{bottom:893.137800px;}
.y23{bottom:893.265600px;}
.y157{bottom:893.528250px;}
.y1cb{bottom:899.785350px;}
.y5b{bottom:899.803050px;}
.y1be{bottom:899.991900px;}
.y18c{bottom:900.093000px;}
.ye1{bottom:900.093150px;}
.y22{bottom:906.777750px;}
.y92{bottom:907.834200px;}
.y155{bottom:910.155000px;}
.y156{bottom:911.147250px;}
.y16e{bottom:915.547050px;}
.y154{bottom:918.615000px;}
.y1ca{bottom:923.785350px;}
.y5a{bottom:923.803050px;}
.y1bd{bottom:923.991900px;}
.y18b{bottom:924.093000px;}
.ye0{bottom:924.093150px;}
.y90{bottom:925.834200px;}
.y187{bottom:929.469150px;}
.y21{bottom:932.265600px;}
.y91{bottom:943.834200px;}
.y20{bottom:945.777750px;}
.y1c9{bottom:947.785350px;}
.y59{bottom:947.803050px;}
.y1bc{bottom:947.991900px;}
.y153{bottom:948.093000px;}
.ydf{bottom:948.093150px;}
.y16d{bottom:950.803050px;}
.y8f{bottom:962.024100px;}
.y1f{bottom:971.265600px;}
.y1c8{bottom:971.785350px;}
.y58{bottom:971.803050px;}
.y1bb{bottom:971.991900px;}
.y18a{bottom:972.093000px;}
.yde{bottom:972.093150px;}
.y16c{bottom:973.303050px;}
.y8e{bottom:980.024100px;}
.y1e{bottom:989.023650px;}
.y8d{bottom:993.919500px;}
.y1c7{bottom:995.785350px;}
.y57{bottom:995.803050px;}
.y1ba{bottom:995.991900px;}
.y152{bottom:996.093000px;}
.ydd{bottom:996.093150px;}
.y143{bottom:1011.219150px;}
.y8b{bottom:1011.919500px;}
.y1c6{bottom:1019.785350px;}
.y56{bottom:1019.803050px;}
.y1b9{bottom:1019.991900px;}
.y151{bottom:1020.093000px;}
.ydc{bottom:1020.093150px;}
.y1d{bottom:1022.797500px;}
.y8c{bottom:1029.919500px;}
.y141{bottom:1039.868550px;}
.y145{bottom:1040.787000px;}
.y14a{bottom:1042.462800px;}
.y1c5{bottom:1043.785350px;}
.y55{bottom:1043.803050px;}
.y150{bottom:1044.093000px;}
.ydb{bottom:1044.093150px;}
.y8a{bottom:1047.709800px;}
.y1c{bottom:1052.797500px;}
.y89{bottom:1056.709800px;}
.y1c4{bottom:1067.785350px;}
.y54{bottom:1067.803050px;}
.y14f{bottom:1068.093000px;}
.yda{bottom:1068.093150px;}
.y1b{bottom:1080.541500px;}
.y87{bottom:1084.169850px;}
.y1c3{bottom:1091.785350px;}
.y53{bottom:1091.803050px;}
.y14e{bottom:1092.093000px;}
.yd9{bottom:1092.093150px;}
.y86{bottom:1093.689900px;}
.y88{bottom:1102.169850px;}
.y1a{bottom:1108.285500px;}
.y1c2{bottom:1115.785350px;}
.y52{bottom:1115.803050px;}
.y14d{bottom:1116.093000px;}
.yd8{bottom:1116.093150px;}
.y85{bottom:1119.452100px;}
.y19{bottom:1130.656650px;}
.y84{bottom:1139.785350px;}
.y51{bottom:1139.803050px;}
.y14c{bottom:1140.093000px;}
.yd7{bottom:1140.093150px;}
.y18{bottom:1144.156650px;}
.y50{bottom:1179.714150px;}
.y1{bottom:1179.808350px;}
.y4f{bottom:1179.808650px;}
.y17{bottom:1296.700800px;}
.h19{height:25.568156px;}
.h7{height:32.507812px;}
.h1c{height:32.752002px;}
.hc{height:39.200381px;}
.h5{height:40.031250px;}
.h18{height:40.175789px;}
.h2{height:40.608000px;}
.h6{height:40.664062px;}
.h1f{height:40.704727px;}
.h21{height:40.835527px;}
.hf{height:41.660156px;}
.h8{height:42.117188px;}
.h24{height:44.730469px;}
.h3{height:46.200000px;}
.h1a{height:48.085538px;}
.h17{height:48.761719px;}
.he{height:48.796875px;}
.h10{height:49.992188px;}
.h12{height:50.039062px;}
.h16{height:52.646484px;}
.h1e{height:52.743000px;}
.h1d{height:52.744500px;}
.h13{height:55.042969px;}
.h1b{height:56.019000px;}
.hb{height:56.793293px;}
.h25{height:57.911133px;}
.h4{height:60.046875px;}
.hd{height:63.175781px;}
.ha{height:65.062500px;}
.h20{height:78.460500px;}
.h22{height:80.730469px;}
.h14{height:86.039062px;}
.h9{height:86.553900px;}
.h15{height:88.646484px;}
.h11{height:88.962769px;}
.h26{height:91.042969px;}
.h29{height:93.202969px;}
.h27{height:93.911133px;}
.h23{height:116.730469px;}
.h28{height:129.911133px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:13.434000px;}
.w3{width:214.114500px;}
.w4{width:235.941000px;}
.w2{width:892.912500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x50{left:11.170650px;}
.x3c{left:15.397350px;}
.x3f{left:29.155350px;}
.x43{left:32.310300px;}
.x46{left:34.603200px;}
.xe{left:98.477550px;}
.x19{left:99.919500px;}
.x7c{left:101.668800px;}
.x7b{left:104.173200px;}
.x8{left:105.293550px;}
.x1c{left:112.358100px;}
.x11{left:119.033550px;}
.x4f{left:120.964500px;}
.x10{left:122.621550px;}
.x51{left:124.867650px;}
.xd{left:126.401550px;}
.x14{left:129.403200px;}
.x4d{left:131.939100px;}
.x25{left:133.842150px;}
.x1e{left:138.189000px;}
.x21{left:140.924700px;}
.x27{left:143.836050px;}
.x4e{left:146.586645px;}
.x5{left:149.092200px;}
.x52{left:156.338700px;}
.x13{left:158.095200px;}
.x4{left:160.372200px;}
.x36{left:166.036950px;}
.x3{left:168.835950px;}
.x7d{left:176.137200px;}
.x79{left:180.799800px;}
.xc{left:183.869550px;}
.x3a{left:185.058716px;}
.x7{left:186.065550px;}
.xa{left:187.733550px;}
.x38{left:196.201048px;}
.x9{left:200.393550px;}
.xb{left:203.057550px;}
.xf{left:204.077550px;}
.x53{left:206.240400px;}
.x12{left:207.727200px;}
.x37{left:209.116350px;}
.x7e{left:217.381350px;}
.x6{left:225.091650px;}
.x55{left:228.755100px;}
.x54{left:230.385000px;}
.x39{left:232.727137px;}
.x7f{left:238.003350px;}
.x26{left:246.436500px;}
.x29{left:248.315250px;}
.x56{left:250.014900px;}
.x32{left:254.339400px;}
.x33{left:256.016550px;}
.x2e{left:258.085650px;}
.x42{left:265.299000px;}
.x28{left:267.471750px;}
.x2f{left:274.136700px;}
.x59{left:279.778800px;}
.x57{left:281.408700px;}
.x40{left:287.084700px;}
.x5a{left:288.778800px;}
.x58{left:299.408700px;}
.x16{left:304.437600px;}
.x4b{left:305.471550px;}
.x5b{left:309.542550px;}
.x17{left:312.516300px;}
.x80{left:320.491350px;}
.x18{left:329.832300px;}
.x2a{left:338.491050px;}
.x34{left:341.607450px;}
.x5d{left:348.306300px;}
.x22{left:351.194850px;}
.x94{left:354.039900px;}
.x47{left:355.430700px;}
.x41{left:356.605351px;}
.x5c{left:358.936200px;}
.x44{left:361.000050px;}
.x4c{left:363.633654px;}
.x5e{left:369.070050px;}
.x82{left:382.357500px;}
.x61{left:398.833950px;}
.x5f{left:400.463850px;}
.x83{left:402.979500px;}
.x62{left:407.833950px;}
.x60{left:418.463850px;}
.x3b{left:421.770000px;}
.x84{left:423.601650px;}
.x2{left:428.187000px;}
.x3d{left:438.149850px;}
.x1d{left:440.517750px;}
.x85{left:444.223650px;}
.x1a{left:448.579500px;}
.x65{left:458.361450px;}
.x63{left:459.991350px;}
.x1f{left:461.338650px;}
.x86{left:464.845800px;}
.x66{left:467.361450px;}
.x1{left:469.083600px;}
.x35{left:474.094500px;}
.x64{left:477.991350px;}
.x87{left:485.467800px;}
.x20{left:486.850350px;}
.x67{left:488.125200px;}
.x81{left:489.606300px;}
.x88{left:506.089800px;}
.x3e{left:509.270500px;}
.x69{left:517.888950px;}
.x2c{left:519.761700px;}
.x30{left:524.961900px;}
.x23{left:527.480700px;}
.x2b{left:535.179150px;}
.x68{left:537.518850px;}
.x6a{left:547.652700px;}
.x31{left:556.474350px;}
.x89{left:567.955950px;}
.x24{left:570.145050px;}
.x6d{left:577.416450px;}
.x6b{left:579.046500px;}
.x48{left:586.252200px;}
.x8b{left:588.578100px;}
.x6c{left:597.046500px;}
.x2d{left:608.073450px;}
.x1b{left:609.525450px;}
.x4a{left:613.949264px;}
.x8c{left:629.822250px;}
.x45{left:634.748344px;}
.x70{left:636.944100px;}
.x6e{left:638.574000px;}
.x49{left:639.960254px;}
.x71{left:645.944100px;}
.x8d{left:650.444250px;}
.x6f{left:656.574000px;}
.x72{left:666.707850px;}
.x8e{left:671.066250px;}
.x15{left:682.440900px;}
.x8f{left:691.688250px;}
.x8a{left:693.075600px;}
.x75{left:696.471600px;}
.x73{left:697.726500px;}
.x7a{left:700.165950px;}
.x76{left:705.471600px;}
.x90{left:712.310400px;}
.x74{left:715.726500px;}
.x77{left:725.860350px;}
.x91{left:732.932400px;}
.x95{left:738.983250px;}
.x78{left:749.647050px;}
.x92{left:753.554550px;}
.x93{left:774.176550px;}
@media print{
.v7{vertical-align:-37.795200pt;}
.v3{vertical-align:-21.311467pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.103467pt;}
.v2{vertical-align:23.088000pt;}
.v4{vertical-align:30.150933pt;}
.v5{vertical-align:32.000000pt;}
.v9{vertical-align:33.920000pt;}
.v8{vertical-align:37.795200pt;}
.v6{vertical-align:64.000000pt;}
.ls17{letter-spacing:-3.840000pt;}
.ls14{letter-spacing:-2.170667pt;}
.ls19{letter-spacing:-1.920000pt;}
.ls9{letter-spacing:-1.280000pt;}
.ls18{letter-spacing:-1.152000pt;}
.lse{letter-spacing:-0.960000pt;}
.ls4{letter-spacing:-0.693333pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.307507pt;}
.ls5{letter-spacing:-0.266667pt;}
.lsf{letter-spacing:-0.205005pt;}
.ls3{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.010133pt;}
.lsb{letter-spacing:0.153754pt;}
.ls10{letter-spacing:0.256256pt;}
.ls2{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.640533pt;}
.ls6{letter-spacing:0.672000pt;}
.ls7{letter-spacing:0.960000pt;}
.ls0{letter-spacing:2.240000pt;}
.ls1{letter-spacing:2.986667pt;}
.lsc{letter-spacing:69.872858pt;}
.ls13{letter-spacing:87.076267pt;}
.ls12{letter-spacing:112.741867pt;}
.lsd{letter-spacing:211.463893pt;}
.ws67{word-spacing:-31.449600pt;}
.ws66{word-spacing:-18.240000pt;}
.ws3{word-spacing:-17.333333pt;}
.ws4{word-spacing:-16.640000pt;}
.wsa0{word-spacing:-16.000000pt;}
.ws135{word-spacing:-14.720000pt;}
.ws76{word-spacing:-14.666667pt;}
.ws5{word-spacing:-13.333333pt;}
.ws68{word-spacing:-12.812800pt;}
.ws107{word-spacing:-10.688000pt;}
.ws1{word-spacing:-10.666667pt;}
.ws2{word-spacing:-10.105333pt;}
.wsb{word-spacing:-7.973333pt;}
.ws129{word-spacing:-6.272000pt;}
.wsfc{word-spacing:-6.016000pt;}
.ws127{word-spacing:-5.952000pt;}
.ws141{word-spacing:-5.696000pt;}
.ws117{word-spacing:-5.568000pt;}
.ws60{word-spacing:-5.504000pt;}
.wse1{word-spacing:-4.992000pt;}
.wsc4{word-spacing:-4.800000pt;}
.ws7{word-spacing:-4.672000pt;}
.ws42{word-spacing:-4.608000pt;}
.ws108{word-spacing:-4.544000pt;}
.wsd3{word-spacing:-4.480000pt;}
.ws144{word-spacing:-4.352000pt;}
.ws3a{word-spacing:-4.288000pt;}
.wsf{word-spacing:-4.266667pt;}
.ws12c{word-spacing:-4.224000pt;}
.wsa{word-spacing:-4.160000pt;}
.ws10c{word-spacing:-4.096000pt;}
.wsc5{word-spacing:-4.032000pt;}
.ws2c{word-spacing:-3.968000pt;}
.ws3d{word-spacing:-3.904000pt;}
.ws5b{word-spacing:-3.776000pt;}
.wsbd{word-spacing:-3.712000pt;}
.ws59{word-spacing:-3.584000pt;}
.ws100{word-spacing:-3.456000pt;}
.ws3e{word-spacing:-3.392000pt;}
.ws29{word-spacing:-3.328000pt;}
.wsa4{word-spacing:-3.264000pt;}
.wsb9{word-spacing:-3.200000pt;}
.ws9b{word-spacing:-3.136000pt;}
.ws47{word-spacing:-3.072000pt;}
.wsf6{word-spacing:-2.944000pt;}
.wscd{word-spacing:-2.880000pt;}
.wsde{word-spacing:-2.688000pt;}
.ws10b{word-spacing:-2.560000pt;}
.ws8d{word-spacing:-2.368000pt;}
.ws8{word-spacing:-2.346667pt;}
.wsbe{word-spacing:-2.304000pt;}
.wsc{word-spacing:-2.240000pt;}
.ws20{word-spacing:-2.176000pt;}
.ws93{word-spacing:-2.048000pt;}
.ws32{word-spacing:-1.984000pt;}
.ws110{word-spacing:-1.920000pt;}
.wsbc{word-spacing:-1.856000pt;}
.ws147{word-spacing:-1.728000pt;}
.wsae{word-spacing:-1.664000pt;}
.wsa8{word-spacing:-1.600000pt;}
.ws40{word-spacing:-1.536000pt;}
.ws61{word-spacing:-1.472000pt;}
.ws9{word-spacing:-1.450667pt;}
.ws97{word-spacing:-1.408000pt;}
.ws6d{word-spacing:-1.344000pt;}
.ws24{word-spacing:-1.152000pt;}
.ws52{word-spacing:-1.088000pt;}
.ws84{word-spacing:-1.056000pt;}
.ws5f{word-spacing:-1.024000pt;}
.ws25{word-spacing:-0.960000pt;}
.wsc6{word-spacing:-0.896000pt;}
.ws134{word-spacing:-0.768000pt;}
.wsed{word-spacing:-0.704000pt;}
.ws17{word-spacing:-0.640000pt;}
.ws4e{word-spacing:-0.576000pt;}
.ws2b{word-spacing:-0.448000pt;}
.wscb{word-spacing:-0.384000pt;}
.ws10{word-spacing:-0.373333pt;}
.ws1c{word-spacing:-0.336000pt;}
.ws70{word-spacing:-0.256256pt;}
.ws139{word-spacing:-0.256000pt;}
.ws62{word-spacing:-0.128000pt;}
.ws1d{word-spacing:-0.064000pt;}
.ws69{word-spacing:-0.053387pt;}
.ws0{word-spacing:-0.042667pt;}
.ws6{word-spacing:0.000000pt;}
.ws10a{word-spacing:0.064000pt;}
.ws12f{word-spacing:0.128000pt;}
.wsc8{word-spacing:0.192000pt;}
.ws6f{word-spacing:0.205005pt;}
.ws28{word-spacing:0.256000pt;}
.wse{word-spacing:0.266667pt;}
.ws71{word-spacing:0.307507pt;}
.ws2f{word-spacing:0.320000pt;}
.ws57{word-spacing:0.384000pt;}
.ws23{word-spacing:0.512000pt;}
.ws12e{word-spacing:0.576000pt;}
.ws22{word-spacing:0.640000pt;}
.wsf7{word-spacing:0.704000pt;}
.wsd5{word-spacing:0.832000pt;}
.wsa2{word-spacing:0.896000pt;}
.ws6b{word-spacing:0.960000pt;}
.wse0{word-spacing:1.024000pt;}
.ws8e{word-spacing:1.088000pt;}
.ws14{word-spacing:1.120000pt;}
.ws88{word-spacing:1.152000pt;}
.ws10d{word-spacing:1.216000pt;}
.ws44{word-spacing:1.280000pt;}
.ws109{word-spacing:1.344000pt;}
.ws112{word-spacing:1.408000pt;}
.wsec{word-spacing:1.472000pt;}
.ws94{word-spacing:1.536000pt;}
.ws1e{word-spacing:1.600000pt;}
.ws4f{word-spacing:1.664000pt;}
.ws118{word-spacing:1.728000pt;}
.ws1a{word-spacing:1.792000pt;}
.wsa6{word-spacing:1.856000pt;}
.ws12{word-spacing:1.920000pt;}
.wsc2{word-spacing:1.984000pt;}
.ws33{word-spacing:2.048000pt;}
.wsee{word-spacing:2.112000pt;}
.ws8a{word-spacing:2.170667pt;}
.ws2d{word-spacing:2.176000pt;}
.wsce{word-spacing:2.240000pt;}
.ws26{word-spacing:2.304000pt;}
.ws39{word-spacing:2.368000pt;}
.ws48{word-spacing:2.432000pt;}
.wsba{word-spacing:2.496000pt;}
.ws43{word-spacing:2.560000pt;}
.ws91{word-spacing:2.688000pt;}
.ws12d{word-spacing:2.752000pt;}
.ws1f{word-spacing:2.944000pt;}
.ws8b{word-spacing:2.986667pt;}
.wsf4{word-spacing:3.008000pt;}
.ws1b{word-spacing:3.072000pt;}
.ws101{word-spacing:3.136000pt;}
.ws18{word-spacing:3.200000pt;}
.ws2e{word-spacing:3.264000pt;}
.ws54{word-spacing:3.328000pt;}
.ws35{word-spacing:3.392000pt;}
.ws125{word-spacing:3.456000pt;}
.ws4b{word-spacing:3.520000pt;}
.wsd6{word-spacing:3.584000pt;}
.ws11d{word-spacing:3.648000pt;}
.wsb6{word-spacing:3.712000pt;}
.ws41{word-spacing:3.776000pt;}
.ws11b{word-spacing:3.840000pt;}
.ws120{word-spacing:3.904000pt;}
.ws137{word-spacing:3.968000pt;}
.wseb{word-spacing:4.032000pt;}
.ws99{word-spacing:4.096000pt;}
.ws102{word-spacing:4.160000pt;}
.ws9a{word-spacing:4.224000pt;}
.wsdc{word-spacing:4.288000pt;}
.wsbb{word-spacing:4.352000pt;}
.wsf3{word-spacing:4.416000pt;}
.wsfd{word-spacing:4.544000pt;}
.wsb4{word-spacing:4.608000pt;}
.ws11e{word-spacing:4.672000pt;}
.ws6a{word-spacing:4.736000pt;}
.wsea{word-spacing:4.800000pt;}
.ws148{word-spacing:4.864000pt;}
.wscc{word-spacing:4.928000pt;}
.ws5d{word-spacing:5.056000pt;}
.ws13e{word-spacing:5.120000pt;}
.wsbf{word-spacing:5.184000pt;}
.wsb3{word-spacing:5.248000pt;}
.wsa9{word-spacing:5.312000pt;}
.wsb0{word-spacing:5.440000pt;}
.ws140{word-spacing:5.504000pt;}
.wse3{word-spacing:5.568000pt;}
.wsc1{word-spacing:5.632000pt;}
.ws10f{word-spacing:5.696000pt;}
.ws45{word-spacing:5.760000pt;}
.ws49{word-spacing:5.824000pt;}
.wsd0{word-spacing:5.888000pt;}
.ws143{word-spacing:5.952000pt;}
.wsf8{word-spacing:6.016000pt;}
.ws5a{word-spacing:6.080000pt;}
.wsd1{word-spacing:6.144000pt;}
.ws21{word-spacing:6.208000pt;}
.ws13{word-spacing:6.240000pt;}
.ws6e{word-spacing:6.336000pt;}
.ws8c{word-spacing:6.400000pt;}
.wsdf{word-spacing:6.464000pt;}
.ws3f{word-spacing:6.592000pt;}
.wsaa{word-spacing:6.656000pt;}
.ws95{word-spacing:6.848000pt;}
.ws30{word-spacing:6.912000pt;}
.ws11f{word-spacing:6.976000pt;}
.ws4a{word-spacing:7.168000pt;}
.ws65{word-spacing:7.232000pt;}
.ws56{word-spacing:7.296000pt;}
.ws142{word-spacing:7.360000pt;}
.ws5e{word-spacing:7.488000pt;}
.ws130{word-spacing:7.552000pt;}
.wse5{word-spacing:7.680000pt;}
.ws58{word-spacing:7.744000pt;}
.ws149{word-spacing:7.936000pt;}
.ws98{word-spacing:8.000000pt;}
.ws138{word-spacing:8.128000pt;}
.wsfa{word-spacing:8.192000pt;}
.wsdd{word-spacing:8.256000pt;}
.ws132{word-spacing:8.320000pt;}
.ws51{word-spacing:8.448000pt;}
.wsd4{word-spacing:8.512000pt;}
.ws4c{word-spacing:8.576000pt;}
.ws12b{word-spacing:8.640000pt;}
.ws34{word-spacing:8.704000pt;}
.wsb1{word-spacing:8.768000pt;}
.wsa3{word-spacing:8.960000pt;}
.ws55{word-spacing:9.024000pt;}
.wsc3{word-spacing:9.152000pt;}
.ws90{word-spacing:9.216000pt;}
.ws19{word-spacing:9.280000pt;}
.wsab{word-spacing:9.344000pt;}
.ws46{word-spacing:9.408000pt;}
.ws13a{word-spacing:9.472000pt;}
.wsd9{word-spacing:9.536000pt;}
.ws106{word-spacing:9.600000pt;}
.wsf9{word-spacing:9.664000pt;}
.ws13f{word-spacing:9.728000pt;}
.ws3c{word-spacing:9.856000pt;}
.ws92{word-spacing:9.984000pt;}
.wsfe{word-spacing:10.240000pt;}
.wsb5{word-spacing:10.304000pt;}
.wsc0{word-spacing:10.368000pt;}
.wsac{word-spacing:10.496000pt;}
.ws13b{word-spacing:10.688000pt;}
.wsd{word-spacing:10.773333pt;}
.ws36{word-spacing:10.816000pt;}
.ws78{word-spacing:10.931733pt;}
.wsef{word-spacing:11.008000pt;}
.ws27{word-spacing:11.072000pt;}
.ws73{word-spacing:11.136000pt;}
.wsca{word-spacing:11.264000pt;}
.wse7{word-spacing:11.328000pt;}
.ws64{word-spacing:11.456000pt;}
.ws103{word-spacing:11.520000pt;}
.wsa5{word-spacing:11.776000pt;}
.wsc9{word-spacing:11.968000pt;}
.wsb2{word-spacing:12.160000pt;}
.ws89{word-spacing:12.224000pt;}
.ws31{word-spacing:12.288000pt;}
.ws14a{word-spacing:12.352000pt;}
.ws11{word-spacing:12.586667pt;}
.ws133{word-spacing:12.608000pt;}
.ws8f{word-spacing:12.672000pt;}
.wse6{word-spacing:12.864000pt;}
.wsf1{word-spacing:12.928000pt;}
.ws124{word-spacing:13.056000pt;}
.ws63{word-spacing:13.184000pt;}
.ws53{word-spacing:13.312000pt;}
.wsb8{word-spacing:13.376000pt;}
.ws113{word-spacing:13.440000pt;}
.ws115{word-spacing:13.504000pt;}
.ws4d{word-spacing:13.568000pt;}
.ws128{word-spacing:13.696000pt;}
.wsb7{word-spacing:13.760000pt;}
.wsda{word-spacing:13.824000pt;}
.ws6c{word-spacing:14.016000pt;}
.wsf2{word-spacing:14.080000pt;}
.wsad{word-spacing:14.528000pt;}
.ws87{word-spacing:14.784000pt;}
.ws11a{word-spacing:14.912000pt;}
.ws121{word-spacing:15.040000pt;}
.ws3b{word-spacing:15.168000pt;}
.wsf5{word-spacing:15.360000pt;}
.wsdb{word-spacing:15.552000pt;}
.ws15{word-spacing:15.626667pt;}
.ws145{word-spacing:15.680000pt;}
.ws114{word-spacing:15.808000pt;}
.wsd7{word-spacing:16.320000pt;}
.wsa1{word-spacing:16.576000pt;}
.wscf{word-spacing:16.640000pt;}
.wse4{word-spacing:16.704000pt;}
.wsd8{word-spacing:16.832000pt;}
.ws13c{word-spacing:16.896000pt;}
.ws146{word-spacing:17.152000pt;}
.ws96{word-spacing:18.048000pt;}
.ws12a{word-spacing:18.176000pt;}
.wsfb{word-spacing:18.432000pt;}
.ws11c{word-spacing:18.624000pt;}
.ws16{word-spacing:19.008000pt;}
.ws122{word-spacing:19.968000pt;}
.ws5c{word-spacing:20.096000pt;}
.wse9{word-spacing:20.224000pt;}
.ws13d{word-spacing:20.352000pt;}
.ws50{word-spacing:21.504000pt;}
.ws72{word-spacing:21.568000pt;}
.ws9d{word-spacing:21.762133pt;}
.ws111{word-spacing:22.016000pt;}
.ws10e{word-spacing:22.208000pt;}
.ws105{word-spacing:22.336000pt;}
.wsaf{word-spacing:23.744000pt;}
.wsc7{word-spacing:23.936000pt;}
.ws75{word-spacing:24.003200pt;}
.ws116{word-spacing:25.536000pt;}
.wsd2{word-spacing:29.248000pt;}
.ws123{word-spacing:29.632000pt;}
.ws126{word-spacing:30.016000pt;}
.wse8{word-spacing:30.272000pt;}
.wsa7{word-spacing:31.616000pt;}
.wse2{word-spacing:34.624000pt;}
.ws7f{word-spacing:34.686400pt;}
.ws136{word-spacing:35.968000pt;}
.wsff{word-spacing:36.160000pt;}
.ws131{word-spacing:37.056000pt;}
.ws119{word-spacing:39.616000pt;}
.wsf0{word-spacing:41.920000pt;}
.ws104{word-spacing:43.712000pt;}
.ws2a{word-spacing:48.000000pt;}
.ws82{word-spacing:48.804267pt;}
.ws79{word-spacing:51.188800pt;}
.ws9e{word-spacing:51.635733pt;}
.ws86{word-spacing:52.557867pt;}
.ws81{word-spacing:58.773867pt;}
.ws7d{word-spacing:61.050667pt;}
.ws77{word-spacing:61.585067pt;}
.ws80{word-spacing:80.681600pt;}
.ws83{word-spacing:86.990400pt;}
.ws7a{word-spacing:101.657067pt;}
.ws7e{word-spacing:116.501333pt;}
.ws74{word-spacing:123.790933pt;}
.ws37{word-spacing:139.566400pt;}
.ws7c{word-spacing:162.102933pt;}
.ws9f{word-spacing:168.435733pt;}
.ws7b{word-spacing:173.539200pt;}
.ws38{word-spacing:186.282667pt;}
.ws9c{word-spacing:222.659200pt;}
.ws85{word-spacing:762.460800pt;}
._5f{margin-left:-87.077867pt;}
._61{margin-left:-35.379200pt;}
._8a{margin-left:-24.256000pt;}
._24{margin-left:-21.258560pt;}
._10{margin-left:-19.267200pt;}
._60{margin-left:-16.953600pt;}
._c{margin-left:-14.771200pt;}
._f{margin-left:-13.846400pt;}
._3{margin-left:-12.906667pt;}
._6{margin-left:-11.886933pt;}
._9{margin-left:-8.716800pt;}
._20{margin-left:-7.701333pt;}
._8{margin-left:-6.796800pt;}
._19{margin-left:-5.787733pt;}
._5{margin-left:-4.770133pt;}
._d{margin-left:-3.274667pt;}
._2{margin-left:-2.368000pt;}
._1{margin-left:-1.100800pt;}
._0{width:1.430400pt;}
._4{width:2.365867pt;}
._a{width:3.338133pt;}
._e{width:4.602667pt;}
._13{width:5.699200pt;}
._14{width:6.883200pt;}
._1b{width:8.147200pt;}
._12{width:9.555200pt;}
._b{width:10.693333pt;}
._18{width:11.591467pt;}
._11{width:13.094400pt;}
._17{width:14.150400pt;}
._1f{width:15.097600pt;}
._15{width:17.152000pt;}
._89{width:18.086400pt;}
._16{width:19.302400pt;}
._21{width:20.236800pt;}
._1a{width:21.747200pt;}
._23{width:22.700800pt;}
._22{width:23.616000pt;}
._8b{width:25.216000pt;}
._8c{width:27.308800pt;}
._1c{width:30.016000pt;}
._28{width:31.622933pt;}
._88{width:33.356800pt;}
._27{width:34.580800pt;}
._38{width:37.749867pt;}
._7{width:39.216000pt;}
._87{width:42.310400pt;}
._42{width:45.841600pt;}
._2b{width:49.353067pt;}
._3b{width:51.188800pt;}
._2c{width:52.913067pt;}
._4c{width:54.189867pt;}
._37{width:58.773867pt;}
._3c{width:60.352000pt;}
._5e{width:63.856000pt;}
._3e{width:65.193600pt;}
._4f{width:67.153600pt;}
._4d{width:68.478933pt;}
._55{width:72.409067pt;}
._2a{width:73.440533pt;}
._51{width:78.667733pt;}
._48{width:82.613867pt;}
._2d{width:84.434133pt;}
._56{width:87.076267pt;}
._30{width:88.003733pt;}
._25{width:91.237867pt;}
._2f{width:93.635200pt;}
._47{width:96.630933pt;}
._3f{width:97.584533pt;}
._39{width:98.733333pt;}
._4e{width:100.347733pt;}
._4b{width:101.657067pt;}
._50{width:102.549333pt;}
._52{width:106.134933pt;}
._2e{width:114.739733pt;}
._32{width:116.323733pt;}
._31{width:117.348267pt;}
._4a{width:118.945067pt;}
._26{width:120.737067pt;}
._49{width:125.283733pt;}
._35{width:127.370133pt;}
._3a{width:129.406400pt;}
._3d{width:131.035733pt;}
._41{width:137.342400pt;}
._33{width:139.573867pt;}
._40{width:146.907200pt;}
._46{width:147.898133pt;}
._77{width:152.696533pt;}
._45{width:154.195200pt;}
._64{width:161.751467pt;}
._7a{width:163.344533pt;}
._53{width:168.907200pt;}
._44{width:172.197333pt;}
._63{width:181.456000pt;}
._6f{width:184.809600pt;}
._29{width:198.422400pt;}
._43{width:200.503467pt;}
._36{width:208.966400pt;}
._34{width:211.392000pt;}
._7f{width:220.984533pt;}
._58{width:241.375467pt;}
._5d{width:251.613867pt;}
._83{width:267.712533pt;}
._85{width:270.997867pt;}
._7c{width:272.086400pt;}
._7b{width:277.480533pt;}
._7d{width:281.645867pt;}
._6e{width:288.129067pt;}
._68{width:289.333333pt;}
._71{width:291.414400pt;}
._80{width:296.240000pt;}
._5c{width:297.256533pt;}
._70{width:300.302400pt;}
._6d{width:304.831467pt;}
._69{width:312.629867pt;}
._65{width:319.400533pt;}
._73{width:320.591467pt;}
._6b{width:326.787200pt;}
._78{width:327.956800pt;}
._5a{width:329.816533pt;}
._59{width:333.101867pt;}
._84{width:335.112000pt;}
._5b{width:342.899200pt;}
._57{width:359.149867pt;}
._81{width:385.021867pt;}
._66{width:399.107733pt;}
._75{width:420.624533pt;}
._1d{width:435.107200pt;}
._76{width:447.877867pt;}
._82{width:454.389867pt;}
._74{width:456.765867pt;}
._79{width:463.277867pt;}
._62{width:466.534400pt;}
._6a{width:473.046400pt;}
._67{width:477.182400pt;}
._6c{width:483.694400pt;}
._54{width:506.110933pt;}
._1e{width:560.017600pt;}
._7e{width:569.669867pt;}
._86{width:579.437867pt;}
._72{width:598.974400pt;}
.fsa{font-size:31.449600pt;}
.fs8{font-size:37.312000pt;}
.fs7{font-size:40.421333pt;}
.fs3{font-size:42.666667pt;}
.fsc{font-size:43.680000pt;}
.fse{font-size:43.796267pt;}
.fs0{font-size:48.000000pt;}
.fsb{font-size:51.251200pt;}
.fs4{font-size:53.333333pt;}
.fsd{font-size:53.386667pt;}
.fs9{font-size:53.580800pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fs5{font-size:85.333333pt;}
.y10b{bottom:-4.366400pt;}
.y0{bottom:0.000000pt;}
.y128{bottom:8.508667pt;}
.y115{bottom:33.778267pt;}
.y10f{bottom:33.779600pt;}
.y108{bottom:38.148133pt;}
.y2{bottom:73.322933pt;}
.y1eb{bottom:117.142533pt;}
.y1af{bottom:117.158267pt;}
.y12e{bottom:117.165333pt;}
.y14b{bottom:117.165467pt;}
.yd6{bottom:117.326133pt;}
.y1ac{bottom:117.416000pt;}
.yd1{bottom:117.494133pt;}
.y142{bottom:117.514267pt;}
.y12d{bottom:117.584000pt;}
.y4e{bottom:117.722267pt;}
.y49{bottom:117.962267pt;}
.y17e{bottom:118.470533pt;}
.y147{bottom:118.542000pt;}
.y146{bottom:118.857067pt;}
.y16b{bottom:122.312000pt;}
.y140{bottom:123.218400pt;}
.yb1{bottom:123.761200pt;}
.yc6{bottom:124.097067pt;}
.y13e{bottom:128.922533pt;}
.y149{bottom:130.952800pt;}
.y136{bottom:130.956400pt;}
.y144{bottom:130.960000pt;}
.y188{bottom:136.423333pt;}
.y17d{bottom:138.470533pt;}
.y1ea{bottom:138.475867pt;}
.y1ae{bottom:138.491600pt;}
.yd5{bottom:138.659467pt;}
.y1ab{bottom:138.749333pt;}
.yd0{bottom:138.827467pt;}
.y12c{bottom:138.917333pt;}
.y4d{bottom:139.050267pt;}
.y48{bottom:139.290267pt;}
.y12f{bottom:143.771867pt;}
.y13b{bottom:143.782533pt;}
.y13a{bottom:144.194400pt;}
.yb0{bottom:145.094533pt;}
.yc5{bottom:145.430400pt;}
.y137{bottom:147.449200pt;}
.y189{bottom:156.850533pt;}
.y17c{bottom:158.470533pt;}
.y1e9{bottom:159.809200pt;}
.y1ad{bottom:159.824933pt;}
.yd4{bottom:159.992800pt;}
.y1aa{bottom:160.082667pt;}
.ycf{bottom:160.160800pt;}
.y12b{bottom:160.250667pt;}
.y4c{bottom:160.378267pt;}
.y47{bottom:160.618267pt;}
.yaf{bottom:166.427867pt;}
.yc4{bottom:166.763733pt;}
.y17b{bottom:178.470533pt;}
.y1e8{bottom:181.142533pt;}
.y78{bottom:181.158267pt;}
.y83{bottom:181.326133pt;}
.y1a9{bottom:181.416000pt;}
.yce{bottom:181.494133pt;}
.y4b{bottom:181.706267pt;}
.y46{bottom:181.946267pt;}
.yae{bottom:187.761200pt;}
.y17f{bottom:196.553733pt;}
.y17a{bottom:198.470533pt;}
.y1e7{bottom:202.475867pt;}
.y77{bottom:202.491600pt;}
.y82{bottom:202.659467pt;}
.y1a8{bottom:202.749333pt;}
.y12a{bottom:202.749467pt;}
.ycd{bottom:202.827467pt;}
.y4a{bottom:203.034267pt;}
.y45{bottom:203.274267pt;}
.yad{bottom:209.094533pt;}
.yc3{bottom:209.262400pt;}
.y130{bottom:212.761600pt;}
.y139{bottom:217.928533pt;}
.y179{bottom:218.470533pt;}
.y138{bottom:220.094933pt;}
.y1e6{bottom:223.809200pt;}
.y76{bottom:223.824933pt;}
.y81{bottom:223.992800pt;}
.y1a7{bottom:224.082667pt;}
.y1c1{bottom:224.160800pt;}
.yac{bottom:230.427867pt;}
.yc2{bottom:230.595733pt;}
.y127{bottom:235.585333pt;}
.y101{bottom:237.649553pt;}
.y1e5{bottom:245.142533pt;}
.y75{bottom:245.158267pt;}
.y80{bottom:245.326133pt;}
.y1a6{bottom:245.416000pt;}
.y1c0{bottom:245.494133pt;}
.y178{bottom:249.809067pt;}
.yab{bottom:251.761200pt;}
.yc1{bottom:251.929067pt;}
.y44{bottom:252.014000pt;}
.y100{bottom:253.951511pt;}
.y121{bottom:255.738400pt;}
.y123{bottom:257.482578pt;}
.y1e4{bottom:266.475867pt;}
.y74{bottom:266.491600pt;}
.y7f{bottom:266.659467pt;}
.y1a5{bottom:266.749333pt;}
.y43{bottom:267.347333pt;}
.y120{bottom:268.722765pt;}
.y177{bottom:269.809067pt;}
.yff{bottom:270.280260pt;}
.y122{bottom:272.652933pt;}
.yaa{bottom:273.094533pt;}
.yc0{bottom:273.262400pt;}
.y11f{bottom:283.278106pt;}
.yfe{bottom:286.434871pt;}
.y1e3{bottom:287.809200pt;}
.y73{bottom:287.824933pt;}
.y7e{bottom:287.992800pt;}
.y1a4{bottom:288.082667pt;}
.y131{bottom:292.319333pt;}
.y129{bottom:292.720800pt;}
.y16{bottom:293.858267pt;}
.y42{bottom:294.014000pt;}
.ya9{bottom:294.427867pt;}
.ybf{bottom:294.595733pt;}
.y11e{bottom:297.987200pt;}
.yfd{bottom:302.736830pt;}
.y15{bottom:305.858267pt;}
.y1e2{bottom:309.142533pt;}
.y72{bottom:309.158267pt;}
.y7d{bottom:309.326133pt;}
.y41{bottom:309.347333pt;}
.y1a3{bottom:309.416000pt;}
.y11d{bottom:312.547200pt;}
.ya8{bottom:315.761200pt;}
.ybe{bottom:315.929067pt;}
.y14{bottom:317.858267pt;}
.yfc{bottom:319.038788pt;}
.y180{bottom:320.233067pt;}
.y40{bottom:324.680667pt;}
.y11c{bottom:327.253565pt;}
.y13{bottom:329.858267pt;}
.y1e1{bottom:330.475867pt;}
.y71{bottom:330.491600pt;}
.y7c{bottom:330.659467pt;}
.y1a2{bottom:330.749333pt;}
.yfb{bottom:335.340747pt;}
.ya7{bottom:337.094533pt;}
.ybd{bottom:337.262400pt;}
.y3f{bottom:340.014000pt;}
.y11b{bottom:341.962659pt;}
.yfa{bottom:351.642705pt;}
.y1e0{bottom:351.809200pt;}
.y70{bottom:351.824933pt;}
.y7b{bottom:351.992800pt;}
.y1a1{bottom:352.082667pt;}
.y114{bottom:354.917333pt;}
.y3e{bottom:355.347333pt;}
.y11a{bottom:356.518000pt;}
.ya6{bottom:358.427867pt;}
.ybc{bottom:358.595733pt;}
.y117{bottom:359.144624pt;}
.y132{bottom:366.146667pt;}
.yf9{bottom:367.944663pt;}
.y3d{bottom:370.680667pt;}
.y119{bottom:371.228393pt;}
.y133{bottom:373.082667pt;}
.y1df{bottom:373.142533pt;}
.y6f{bottom:373.158267pt;}
.y7a{bottom:373.326133pt;}
.y1a0{bottom:373.416000pt;}
.y116{bottom:374.135600pt;}
.ya5{bottom:379.761200pt;}
.ybb{bottom:379.929067pt;}
.y12{bottom:382.960667pt;}
.yf8{bottom:384.246622pt;}
.y118{bottom:385.783733pt;}
.y3c{bottom:386.014000pt;}
.y1de{bottom:394.475867pt;}
.y6e{bottom:394.491600pt;}
.y79{bottom:394.659467pt;}
.y19f{bottom:394.749333pt;}
.y11{bottom:394.960667pt;}
.yf7{bottom:400.548580pt;}
.ya4{bottom:401.094533pt;}
.yba{bottom:401.262400pt;}
.y3b{bottom:401.347333pt;}
.y10{bottom:406.960667pt;}
.y1dd{bottom:415.809200pt;}
.y6d{bottom:415.824933pt;}
.ycc{bottom:415.992800pt;}
.y19e{bottom:416.082667pt;}
.y3a{bottom:416.680667pt;}
.yf6{bottom:416.850539pt;}
.yf{bottom:418.960667pt;}
.ya3{bottom:422.427867pt;}
.yb9{bottom:422.595733pt;}
.y135{bottom:430.090267pt;}
.ye{bottom:430.960667pt;}
.y39{bottom:432.014000pt;}
.yf5{bottom:433.005150pt;}
.y1dc{bottom:437.142533pt;}
.y6c{bottom:437.158267pt;}
.ycb{bottom:437.326133pt;}
.y19d{bottom:437.416000pt;}
.y10e{bottom:438.636000pt;}
.y16a{bottom:442.312000pt;}
.y111{bottom:442.864624pt;}
.yd{bottom:442.960667pt;}
.y134{bottom:443.732800pt;}
.ya2{bottom:443.761200pt;}
.yb8{bottom:443.929067pt;}
.y38{bottom:447.347333pt;}
.yf4{bottom:449.307108pt;}
.y113{bottom:453.493824pt;}
.yc{bottom:454.960667pt;}
.y110{bottom:457.855600pt;}
.y1db{bottom:458.475867pt;}
.y6b{bottom:458.491600pt;}
.yca{bottom:458.659467pt;}
.y19c{bottom:458.749333pt;}
.y182{bottom:460.597067pt;}
.y37{bottom:462.680667pt;}
.y169{bottom:463.645333pt;}
.ya1{bottom:465.094533pt;}
.yb7{bottom:465.262400pt;}
.yf3{bottom:465.609067pt;}
.y126{bottom:466.715493pt;}
.yb{bottom:466.960667pt;}
.y112{bottom:468.484800pt;}
.y176{bottom:471.814400pt;}
.y181{bottom:475.718400pt;}
.y36{bottom:478.014000pt;}
.ya{bottom:478.960667pt;}
.y1da{bottom:479.809200pt;}
.y6a{bottom:479.824933pt;}
.yc9{bottom:479.992800pt;}
.y19b{bottom:480.082667pt;}
.yf2{bottom:481.911025pt;}
.y168{bottom:484.978667pt;}
.ya0{bottom:486.427867pt;}
.yb6{bottom:486.595733pt;}
.y125{bottom:489.420800pt;}
.y9{bottom:490.960667pt;}
.y175{bottom:491.814400pt;}
.y35{bottom:493.347333pt;}
.yf1{bottom:498.253169pt;}
.y1d9{bottom:501.142533pt;}
.y69{bottom:501.158267pt;}
.yc8{bottom:501.326133pt;}
.y19a{bottom:501.416000pt;}
.y8{bottom:502.960667pt;}
.y167{bottom:506.312000pt;}
.y9f{bottom:507.761200pt;}
.yb5{bottom:507.929067pt;}
.y34{bottom:508.680667pt;}
.yf0{bottom:514.555127pt;}
.y7{bottom:514.960667pt;}
.y1d8{bottom:522.475867pt;}
.y68{bottom:522.491600pt;}
.yc7{bottom:522.659467pt;}
.y199{bottom:522.749333pt;}
.y33{bottom:524.014000pt;}
.y6{bottom:526.960667pt;}
.y166{bottom:527.645333pt;}
.y9e{bottom:529.094533pt;}
.yb4{bottom:529.262400pt;}
.yef{bottom:530.857086pt;}
.y10d{bottom:532.153691pt;}
.y32{bottom:539.347333pt;}
.y1d7{bottom:543.809200pt;}
.y67{bottom:543.824933pt;}
.yd3{bottom:543.992800pt;}
.y198{bottom:544.082667pt;}
.y10c{bottom:547.144667pt;}
.yee{bottom:547.159044pt;}
.y165{bottom:548.978667pt;}
.y9d{bottom:550.427867pt;}
.yb3{bottom:550.595733pt;}
.y31{bottom:554.680667pt;}
.yed{bottom:563.461003pt;}
.y5{bottom:564.188933pt;}
.y1d6{bottom:565.142533pt;}
.y66{bottom:565.158267pt;}
.yd2{bottom:565.326133pt;}
.y197{bottom:565.416000pt;}
.y30{bottom:570.014000pt;}
.y164{bottom:570.312000pt;}
.y9c{bottom:571.761200pt;}
.yb2{bottom:571.929067pt;}
.y4{bottom:576.188933pt;}
.y148{bottom:577.514000pt;}
.yec{bottom:579.762961pt;}
.y13c{bottom:584.840133pt;}
.y2f{bottom:585.347333pt;}
.y1d5{bottom:586.475867pt;}
.y65{bottom:586.491600pt;}
.y1b8{bottom:586.659467pt;}
.y196{bottom:586.749333pt;}
.y163{bottom:591.645333pt;}
.y9b{bottom:593.094533pt;}
.yeb{bottom:595.930967pt;}
.y3{bottom:599.527600pt;}
.y2e{bottom:600.680667pt;}
.y13f{bottom:602.156533pt;}
.y1d4{bottom:607.809200pt;}
.y64{bottom:607.824933pt;}
.y1b7{bottom:607.992800pt;}
.y195{bottom:608.082667pt;}
.y13d{bottom:609.890933pt;}
.yea{bottom:612.232926pt;}
.y107{bottom:612.809333pt;}
.y9a{bottom:614.427867pt;}
.y2d{bottom:616.014000pt;}
.y10a{bottom:621.688372pt;}
.y183{bottom:627.769600pt;}
.y1d3{bottom:629.142533pt;}
.y63{bottom:629.158267pt;}
.y1b6{bottom:629.326133pt;}
.y194{bottom:629.416000pt;}
.y124{bottom:629.557733pt;}
.y2c{bottom:631.347333pt;}
.y162{bottom:632.639333pt;}
.y106{bottom:633.772141pt;}
.y99{bottom:635.761200pt;}
.y109{bottom:636.397467pt;}
.ye9{bottom:639.746667pt;}
.y2b{bottom:646.680667pt;}
.y105{bottom:648.916870pt;}
.y161{bottom:649.972667pt;}
.y1d2{bottom:650.475867pt;}
.y62{bottom:650.491600pt;}
.y1b5{bottom:650.659467pt;}
.y193{bottom:650.749333pt;}
.ye8{bottom:655.915061pt;}
.y98{bottom:657.094533pt;}
.y2a{bottom:662.014000pt;}
.y104{bottom:663.625965pt;}
.y160{bottom:664.987600pt;}
.y1d1{bottom:671.809200pt;}
.y61{bottom:671.824933pt;}
.y1b4{bottom:671.992800pt;}
.y192{bottom:672.082667pt;}
.ye7{bottom:672.217020pt;}
.y29{bottom:677.347333pt;}
.y103{bottom:678.181306pt;}
.y97{bottom:678.427867pt;}
.y15f{bottom:679.349733pt;}
.ye6{bottom:688.385026pt;}
.y28{bottom:692.680667pt;}
.y102{bottom:692.890400pt;}
.y1d0{bottom:693.142533pt;}
.y60{bottom:693.158267pt;}
.y1b3{bottom:693.326133pt;}
.y191{bottom:693.416000pt;}
.y15e{bottom:693.712000pt;}
.y174{bottom:693.819600pt;}
.y96{bottom:699.761200pt;}
.ye5{bottom:704.686985pt;}
.y27{bottom:708.014000pt;}
.y15d{bottom:708.074267pt;}
.y185{bottom:710.488933pt;}
.y173{bottom:713.819600pt;}
.y1cf{bottom:714.475867pt;}
.y5f{bottom:714.491600pt;}
.y1b2{bottom:714.659467pt;}
.y190{bottom:714.749333pt;}
.ye4{bottom:721.015733pt;}
.y95{bottom:721.094533pt;}
.y15c{bottom:722.436400pt;}
.y26{bottom:723.347333pt;}
.y184{bottom:726.996133pt;}
.y172{bottom:733.819600pt;}
.y1ce{bottom:735.809200pt;}
.y5e{bottom:735.824933pt;}
.y1b1{bottom:735.992800pt;}
.y18f{bottom:736.082667pt;}
.y15b{bottom:736.798533pt;}
.y25{bottom:738.686000pt;}
.y94{bottom:742.427867pt;}
.y15a{bottom:751.160800pt;}
.y171{bottom:753.819600pt;}
.y1cd{bottom:757.142533pt;}
.y5d{bottom:757.158267pt;}
.y1b0{bottom:757.326133pt;}
.y18e{bottom:757.416000pt;}
.ye3{bottom:757.416133pt;}
.y93{bottom:763.761200pt;}
.y159{bottom:765.523067pt;}
.y24{bottom:771.358000pt;}
.y170{bottom:773.819600pt;}
.y1cc{bottom:778.475867pt;}
.y5c{bottom:778.491600pt;}
.y1bf{bottom:778.659467pt;}
.y18d{bottom:778.749333pt;}
.ye2{bottom:778.749467pt;}
.y158{bottom:779.885200pt;}
.y16f{bottom:793.819600pt;}
.y186{bottom:793.900267pt;}
.y23{bottom:794.013867pt;}
.y157{bottom:794.247333pt;}
.y1cb{bottom:799.809200pt;}
.y5b{bottom:799.824933pt;}
.y1be{bottom:799.992800pt;}
.y18c{bottom:800.082667pt;}
.ye1{bottom:800.082800pt;}
.y22{bottom:806.024667pt;}
.y92{bottom:806.963733pt;}
.y155{bottom:809.026667pt;}
.y156{bottom:809.908667pt;}
.y16e{bottom:813.819600pt;}
.y154{bottom:816.546667pt;}
.y1ca{bottom:821.142533pt;}
.y5a{bottom:821.158267pt;}
.y1bd{bottom:821.326133pt;}
.y18b{bottom:821.416000pt;}
.ye0{bottom:821.416133pt;}
.y90{bottom:822.963733pt;}
.y187{bottom:826.194800pt;}
.y21{bottom:828.680533pt;}
.y91{bottom:838.963733pt;}
.y20{bottom:840.691333pt;}
.y1c9{bottom:842.475867pt;}
.y59{bottom:842.491600pt;}
.y1bc{bottom:842.659467pt;}
.y153{bottom:842.749333pt;}
.ydf{bottom:842.749467pt;}
.y16d{bottom:845.158267pt;}
.y8f{bottom:855.132533pt;}
.y1f{bottom:863.347200pt;}
.y1c8{bottom:863.809200pt;}
.y58{bottom:863.824933pt;}
.y1bb{bottom:863.992800pt;}
.y18a{bottom:864.082667pt;}
.yde{bottom:864.082800pt;}
.y16c{bottom:865.158267pt;}
.y8e{bottom:871.132533pt;}
.y1e{bottom:879.132133pt;}
.y8d{bottom:883.484000pt;}
.y1c7{bottom:885.142533pt;}
.y57{bottom:885.158267pt;}
.y1ba{bottom:885.326133pt;}
.y152{bottom:885.416000pt;}
.ydd{bottom:885.416133pt;}
.y143{bottom:898.861467pt;}
.y8b{bottom:899.484000pt;}
.y1c6{bottom:906.475867pt;}
.y56{bottom:906.491600pt;}
.y1b9{bottom:906.659467pt;}
.y151{bottom:906.749333pt;}
.ydc{bottom:906.749467pt;}
.y1d{bottom:909.153333pt;}
.y8c{bottom:915.484000pt;}
.y141{bottom:924.327600pt;}
.y145{bottom:925.144000pt;}
.y14a{bottom:926.633600pt;}
.y1c5{bottom:927.809200pt;}
.y55{bottom:927.824933pt;}
.y150{bottom:928.082667pt;}
.ydb{bottom:928.082800pt;}
.y8a{bottom:931.297600pt;}
.y1c{bottom:935.820000pt;}
.y89{bottom:939.297600pt;}
.y1c4{bottom:949.142533pt;}
.y54{bottom:949.158267pt;}
.y14f{bottom:949.416000pt;}
.yda{bottom:949.416133pt;}
.y1b{bottom:960.481333pt;}
.y87{bottom:963.706533pt;}
.y1c3{bottom:970.475867pt;}
.y53{bottom:970.491600pt;}
.y14e{bottom:970.749333pt;}
.yd9{bottom:970.749467pt;}
.y86{bottom:972.168800pt;}
.y88{bottom:979.706533pt;}
.y1a{bottom:985.142667pt;}
.y1c2{bottom:991.809200pt;}
.y52{bottom:991.824933pt;}
.y14d{bottom:992.082667pt;}
.yd8{bottom:992.082800pt;}
.y85{bottom:995.068533pt;}
.y19{bottom:1005.028133pt;}
.y84{bottom:1013.142533pt;}
.y51{bottom:1013.158267pt;}
.y14c{bottom:1013.416000pt;}
.yd7{bottom:1013.416133pt;}
.y18{bottom:1017.028133pt;}
.y50{bottom:1048.634800pt;}
.y1{bottom:1048.718533pt;}
.y4f{bottom:1048.718800pt;}
.y17{bottom:1152.622933pt;}
.h19{height:22.727250pt;}
.h7{height:28.895833pt;}
.h1c{height:29.112891pt;}
.hc{height:34.844783pt;}
.h5{height:35.583333pt;}
.h18{height:35.711813pt;}
.h2{height:36.096000pt;}
.h6{height:36.145833pt;}
.h1f{height:36.181979pt;}
.h21{height:36.298246pt;}
.hf{height:37.031250pt;}
.h8{height:37.437500pt;}
.h24{height:39.760417pt;}
.h3{height:41.066667pt;}
.h1a{height:42.742700pt;}
.h17{height:43.343750pt;}
.he{height:43.375000pt;}
.h10{height:44.437500pt;}
.h12{height:44.479167pt;}
.h16{height:46.796875pt;}
.h1e{height:46.882667pt;}
.h1d{height:46.884000pt;}
.h13{height:48.927083pt;}
.h1b{height:49.794667pt;}
.hb{height:50.482927pt;}
.h25{height:51.476562pt;}
.h4{height:53.375000pt;}
.hd{height:56.156250pt;}
.ha{height:57.833333pt;}
.h20{height:69.742667pt;}
.h22{height:71.760417pt;}
.h14{height:76.479167pt;}
.h9{height:76.936800pt;}
.h15{height:78.796875pt;}
.h11{height:79.078017pt;}
.h26{height:80.927083pt;}
.h29{height:82.847083pt;}
.h27{height:83.476562pt;}
.h23{height:103.760417pt;}
.h28{height:115.476562pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:11.941333pt;}
.w3{width:190.324000pt;}
.w4{width:209.725333pt;}
.w2{width:793.700000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x50{left:9.929467pt;}
.x3c{left:13.686533pt;}
.x3f{left:25.915867pt;}
.x43{left:28.720267pt;}
.x46{left:30.758400pt;}
.xe{left:87.535600pt;}
.x19{left:88.817333pt;}
.x7c{left:90.372267pt;}
.x7b{left:92.598400pt;}
.x8{left:93.594267pt;}
.x1c{left:99.873867pt;}
.x11{left:105.807600pt;}
.x4f{left:107.524000pt;}
.x10{left:108.996933pt;}
.x51{left:110.993467pt;}
.xd{left:112.356933pt;}
.x14{left:115.025067pt;}
.x4d{left:117.279200pt;}
.x25{left:118.970800pt;}
.x1e{left:122.834667pt;}
.x21{left:125.266400pt;}
.x27{left:127.854267pt;}
.x4e{left:130.299240pt;}
.x5{left:132.526400pt;}
.x52{left:138.967733pt;}
.x13{left:140.529067pt;}
.x4{left:142.553067pt;}
.x36{left:147.588400pt;}
.x3{left:150.076400pt;}
.x7d{left:156.566400pt;}
.x79{left:160.710933pt;}
.xc{left:163.439600pt;}
.x3a{left:164.496637pt;}
.x7{left:165.391600pt;}
.xa{left:166.874267pt;}
.x38{left:174.400931pt;}
.x9{left:178.127600pt;}
.xb{left:180.495600pt;}
.xf{left:181.402267pt;}
.x53{left:183.324800pt;}
.x12{left:184.646400pt;}
.x37{left:185.881200pt;}
.x7e{left:193.227867pt;}
.x6{left:200.081467pt;}
.x55{left:203.337867pt;}
.x54{left:204.786667pt;}
.x39{left:206.868566pt;}
.x7f{left:211.558533pt;}
.x26{left:219.054667pt;}
.x29{left:220.724667pt;}
.x56{left:222.235467pt;}
.x32{left:226.079467pt;}
.x33{left:227.570267pt;}
.x2e{left:229.409467pt;}
.x42{left:235.821333pt;}
.x28{left:237.752667pt;}
.x2f{left:243.677067pt;}
.x59{left:248.692267pt;}
.x57{left:250.141067pt;}
.x40{left:255.186400pt;}
.x5a{left:256.692267pt;}
.x58{left:266.141067pt;}
.x16{left:270.611200pt;}
.x4b{left:271.530267pt;}
.x5b{left:275.148933pt;}
.x17{left:277.792267pt;}
.x80{left:284.881200pt;}
.x18{left:293.184267pt;}
.x2a{left:300.880933pt;}
.x34{left:303.651067pt;}
.x5d{left:309.605600pt;}
.x22{left:312.173200pt;}
.x94{left:314.702133pt;}
.x47{left:315.938400pt;}
.x41{left:316.982534pt;}
.x5c{left:319.054400pt;}
.x44{left:320.888933pt;}
.x4c{left:323.229915pt;}
.x5e{left:328.062267pt;}
.x82{left:339.873333pt;}
.x61{left:354.519067pt;}
.x5f{left:355.967867pt;}
.x83{left:358.204000pt;}
.x62{left:362.519067pt;}
.x60{left:371.967867pt;}
.x3b{left:374.906667pt;}
.x84{left:376.534800pt;}
.x2{left:380.610667pt;}
.x3d{left:389.466533pt;}
.x1d{left:391.571333pt;}
.x85{left:394.865467pt;}
.x1a{left:398.737333pt;}
.x65{left:407.432400pt;}
.x63{left:408.881200pt;}
.x1f{left:410.078800pt;}
.x86{left:413.196267pt;}
.x66{left:415.432400pt;}
.x1{left:416.963200pt;}
.x35{left:421.417333pt;}
.x64{left:424.881200pt;}
.x87{left:431.526933pt;}
.x20{left:432.755867pt;}
.x67{left:433.889067pt;}
.x81{left:435.205600pt;}
.x88{left:449.857600pt;}
.x3e{left:452.684889pt;}
.x69{left:460.345733pt;}
.x2c{left:462.010400pt;}
.x30{left:466.632800pt;}
.x23{left:468.871733pt;}
.x2b{left:475.714800pt;}
.x68{left:477.794533pt;}
.x6a{left:486.802400pt;}
.x31{left:494.643867pt;}
.x89{left:504.849733pt;}
.x24{left:506.795600pt;}
.x6d{left:513.259067pt;}
.x6b{left:514.708000pt;}
.x48{left:521.113067pt;}
.x8b{left:523.180533pt;}
.x6c{left:530.708000pt;}
.x2d{left:540.509733pt;}
.x1b{left:541.800400pt;}
.x4a{left:545.732679pt;}
.x8c{left:559.842000pt;}
.x45{left:564.220750pt;}
.x70{left:566.172533pt;}
.x6e{left:567.621333pt;}
.x49{left:568.853559pt;}
.x71{left:574.172533pt;}
.x8d{left:578.172667pt;}
.x6f{left:583.621333pt;}
.x72{left:592.629200pt;}
.x8e{left:596.503333pt;}
.x15{left:606.614133pt;}
.x8f{left:614.834000pt;}
.x8a{left:616.067200pt;}
.x75{left:619.085867pt;}
.x73{left:620.201333pt;}
.x7a{left:622.369733pt;}
.x76{left:627.085867pt;}
.x90{left:633.164800pt;}
.x74{left:636.201333pt;}
.x77{left:645.209200pt;}
.x91{left:651.495467pt;}
.x95{left:656.874000pt;}
.x78{left:666.352933pt;}
.x92{left:669.826267pt;}
.x93{left:688.156933pt;}
}




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