
    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_f45a30825c85a4cabac60775.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.922000;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_6307870f68826eeee04f2101.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.736000;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_fcd5eaa95f473f554024ef0d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.805000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4bfc8fbe462a56c199d6ab3f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_95c4c82c1270150035b0a87e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.918000;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_c6350b7f8bf71f68923ae0c3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a06722104ff32e69d841f1a8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c23c417bdeaf69a74feb9303.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.908000;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_7793144133afcc77ba35217b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4f44d687019db10a54760dd7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_0cf44f9a51ee7ca1d1681b16.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f591ebb601f2a3509b64b735.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.431000;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_1c32b002e265c667e45308ae.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.966000;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_e92ae78acbef2432323d3e33.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.909000;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_74cc8ceae5d0591d00b8375d.woff2')format("woff");}.fff{font-family:fff;line-height:1.284668;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_1cb9f7379b7d2916d107992e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.860000;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_5cc2d87c48366eeeeea4e86c.woff2')format("woff");}.ff11{font-family:ff11;line-height:2.222000;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_0088b35937f54041e9bd16ce.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.040000;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;}
.m5{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.283108,0.090999,0.000000,0.250000,0,0);-ms-transform:matrix(0.283108,0.090999,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283108,0.090999,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.368835,-0.170649,0.003799,0.249971,0,0);-ms-transform:matrix(0.368835,-0.170649,0.003799,0.249971,0,0);-webkit-transform:matrix(0.368835,-0.170649,0.003799,0.249971,0,0);}
.m2{transform:matrix(0.368843,-0.170645,0.003800,0.249971,0,0);-ms-transform:matrix(0.368843,-0.170645,0.003800,0.249971,0,0);-webkit-transform:matrix(0.368843,-0.170645,0.003800,0.249971,0,0);}
.m4{transform:matrix(0.372547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372547,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-25.919520px;}
.v3{vertical-align:-21.600000px;}
.v6{vertical-align:-19.504680px;}
.v8{vertical-align:-14.807820px;}
.v7{vertical-align:-13.485960px;}
.v2{vertical-align:-10.800000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:10.080480px;}
.v5{vertical-align:23.760960px;}
.v1{vertical-align:26.639040px;}
.v9{vertical-align:48.958620px;}
.va{vertical-align:133.200000px;}
.ls2{letter-spacing:0.000000px;}
.ls4e{letter-spacing:0.006586px;}
.ls50{letter-spacing:0.007178px;}
.ls1d{letter-spacing:0.008624px;}
.ls1b{letter-spacing:0.010964px;}
.ls14{letter-spacing:0.012842px;}
.ls5{letter-spacing:0.053777px;}
.ls24{letter-spacing:0.061746px;}
.ls2b{letter-spacing:0.073171px;}
.ls3f{letter-spacing:0.074928px;}
.ls4a{letter-spacing:0.075465px;}
.ls48{letter-spacing:0.077805px;}
.ls28{letter-spacing:0.093996px;}
.ls16{letter-spacing:0.100135px;}
.ls2a{letter-spacing:0.100172px;}
.ls33{letter-spacing:0.103104px;}
.ls27{letter-spacing:0.106330px;}
.ls46{letter-spacing:0.129509px;}
.ls45{letter-spacing:0.131849px;}
.ls1c{letter-spacing:0.181803px;}
.ls39{letter-spacing:0.201037px;}
.ls2f{letter-spacing:0.203923px;}
.ls3e{letter-spacing:0.206148px;}
.ls49{letter-spacing:0.209085px;}
.ls4b{letter-spacing:0.211425px;}
.ls34{letter-spacing:0.266630px;}
.ls7{letter-spacing:0.282410px;}
.ls25{letter-spacing:1.965850px;}
.ls42{letter-spacing:1.968190px;}
.ls6{letter-spacing:2.685370px;}
.ls21{letter-spacing:2.687710px;}
.lsa{letter-spacing:2.980615px;}
.ls4{letter-spacing:3.407230px;}
.ls38{letter-spacing:3.706825px;}
.ls3{letter-spacing:4.126750px;}
.ls0{letter-spacing:4.426345px;}
.ls1f{letter-spacing:4.428685px;}
.ls18{letter-spacing:5.148205px;}
.ls35{letter-spacing:5.827374px;}
.ls32{letter-spacing:10.017542px;}
.ls36{letter-spacing:15.222624px;}
.ls37{letter-spacing:16.264858px;}
.ls2c{letter-spacing:20.687710px;}
.ls26{letter-spacing:21.407230px;}
.ls3a{letter-spacing:21.652314px;}
.ls29{letter-spacing:22.129090px;}
.ls4c{letter-spacing:22.321805px;}
.ls40{letter-spacing:22.846270px;}
.ls15{letter-spacing:22.848610px;}
.ls51{letter-spacing:23.041325px;}
.ls11{letter-spacing:23.272235px;}
.ls12{letter-spacing:23.565850px;}
.ls3d{letter-spacing:23.568190px;}
.ls4d{letter-spacing:23.760845px;}
.ls20{letter-spacing:24.287710px;}
.ls4f{letter-spacing:24.480365px;}
.ls1e{letter-spacing:25.252314px;}
.ls1a{letter-spacing:25.726750px;}
.lsd{letter-spacing:25.879891px;}
.ls19{letter-spacing:25.971714px;}
.ls2d{letter-spacing:25.993421px;}
.ls22{letter-spacing:26.446270px;}
.ls13{letter-spacing:26.872235px;}
.ls44{letter-spacing:27.165850px;}
.ls43{letter-spacing:27.168190px;}
.ls9{letter-spacing:27.262872px;}
.lsb{letter-spacing:27.458935px;}
.ls2e{letter-spacing:27.493157px;}
.ls17{letter-spacing:27.885370px;}
.ls47{letter-spacing:28.607230px;}
.lsc{letter-spacing:29.482231px;}
.ls41{letter-spacing:30.048610px;}
.ls23{letter-spacing:32.207230px;}
.ls10{letter-spacing:32.630855px;}
.lsf{letter-spacing:32.633195px;}
.ls30{letter-spacing:33.054134px;}
.ls8{letter-spacing:33.646270px;}
.ls3c{letter-spacing:36.529030px;}
.ls3b{letter-spacing:36.771714px;}
.ls1{letter-spacing:38.211114px;}
.ls31{letter-spacing:38.824409px;}
.lse{letter-spacing:39.407230px;}
.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;}
}
.ws6f{word-spacing:-66.009600px;}
.ws6c{word-spacing:-57.759332px;}
.ws6d{word-spacing:-57.756928px;}
.ws6e{word-spacing:-49.508066px;}
.ws3b{word-spacing:-35.865600px;}
.ws88{word-spacing:-32.727300px;}
.ws7{word-spacing:-23.910330px;}
.ws1c{word-spacing:-20.921550px;}
.ws86{word-spacing:-16.727250px;}
.wsdb{word-spacing:-16.493643px;}
.ws130{word-spacing:-16.345799px;}
.wse6{word-spacing:-15.054558px;}
.wsbd{word-spacing:-14.335016px;}
.wsca{word-spacing:-14.334557px;}
.wscb{word-spacing:-14.137801px;}
.wsfd{word-spacing:-14.071005px;}
.wsde{word-spacing:-13.911795px;}
.wsd9{word-spacing:-13.857660px;}
.wsc8{word-spacing:-13.491960px;}
.ws11c{word-spacing:-13.468418px;}
.ws12d{word-spacing:-13.467248px;}
.ws126{word-spacing:-13.465249px;}
.wsc9{word-spacing:-13.418193px;}
.ws5{word-spacing:-12.834003px;}
.ws3{word-spacing:-12.817422px;}
.ws13b{word-spacing:-12.748087px;}
.ws113{word-spacing:-12.747837px;}
.ws132{word-spacing:-12.745962px;}
.wsba{word-spacing:-12.174556px;}
.wse7{word-spacing:-12.173639px;}
.ws2{word-spacing:-12.104568px;}
.ws6{word-spacing:-12.097902px;}
.ws129{word-spacing:-11.983629px;}
.wse8{word-spacing:-11.977210px;}
.ws118{word-spacing:-11.971005px;}
.ws9{word-spacing:-11.970144px;}
.ws95{word-spacing:-11.455406px;}
.wsab{word-spacing:-11.454948px;}
.ws139{word-spacing:-11.423122px;}
.ws70{word-spacing:-11.389951px;}
.ws8a{word-spacing:-11.389559px;}
.wsa{word-spacing:-11.305196px;}
.ws138{word-spacing:-11.304335px;}
.ws8{word-spacing:-11.264022px;}
.ws96{word-spacing:-11.257668px;}
.wsb9{word-spacing:-11.257340px;}
.ws11e{word-spacing:-11.251469px;}
.ws1e{word-spacing:-11.067437px;}
.ws89{word-spacing:-10.800860px;}
.wsb{word-spacing:-10.735013px;}
.ws93{word-spacing:-10.669558px;}
.wsad{word-spacing:-10.669100px;}
.ws0{word-spacing:-10.599432px;}
.ws87{word-spacing:-10.537732px;}
.ws1d{word-spacing:-10.347915px;}
.wsae{word-spacing:-10.275979px;}
.wsdc{word-spacing:-10.210459px;}
.wsa9{word-spacing:-9.816210px;}
.wsda{word-spacing:-9.799335px;}
.ws1{word-spacing:-9.516004px;}
.ws94{word-spacing:-9.294946px;}
.ws97{word-spacing:-8.574945px;}
.wsfe{word-spacing:-8.574094px;}
.ws99{word-spacing:-8.377731px;}
.ws98{word-spacing:-7.855403px;}
.wsaa{word-spacing:-7.135010px;}
.wsbc{word-spacing:-6.561900px;}
.ws125{word-spacing:-6.384077px;}
.wsbb{word-spacing:-5.959890px;}
.ws2b{word-spacing:-3.942022px;}
.wsac{word-spacing:-1.179099px;}
.ws133{word-spacing:-0.078909px;}
.ws11{word-spacing:-0.071731px;}
.ws1f{word-spacing:0.000000px;}
.wsb6{word-spacing:2.535702px;}
.ws4{word-spacing:3.139740px;}
.ws4b{word-spacing:3.977502px;}
.ws73{word-spacing:6.858102px;}
.ws62{word-spacing:7.577502px;}
.ws3d{word-spacing:12.618702px;}
.ws2c{word-spacing:15.869595px;}
.ws16{word-spacing:16.246399px;}
.ws42{word-spacing:16.965935px;}
.wse{word-spacing:17.361748px;}
.ws17{word-spacing:17.600111px;}
.wsd6{word-spacing:17.600182px;}
.ws82{word-spacing:17.685471px;}
.ws77{word-spacing:17.858271px;}
.wsb1{word-spacing:17.858415px;}
.ws10b{word-spacing:18.030426px;}
.wsfa{word-spacing:18.131639px;}
.wsf3{word-spacing:18.131926px;}
.ws5c{word-spacing:18.319718px;}
.ws10a{word-spacing:18.577448px;}
.wsb2{word-spacing:18.577520px;}
.ws71{word-spacing:18.851461px;}
.ws131{word-spacing:18.852609px;}
.wsd7{word-spacing:19.124399px;}
.wsdf{word-spacing:19.124542px;}
.wse4{word-spacing:19.298849px;}
.ws12f{word-spacing:19.369289px;}
.wsc{word-spacing:19.469641px;}
.wsc4{word-spacing:19.470502px;}
.ws69{word-spacing:19.470932px;}
.ws67{word-spacing:19.571428px;}
.ws25{word-spacing:19.846373px;}
.ws68{word-spacing:20.018385px;}
.ws83{word-spacing:20.018456px;}
.ws121{word-spacing:20.088394px;}
.wsa5{word-spacing:20.190468px;}
.wsd5{word-spacing:20.290820px;}
.ws36{word-spacing:20.291824px;}
.ws46{word-spacing:20.565909px;}
.wsb3{word-spacing:20.668054px;}
.wsf{word-spacing:20.737992px;}
.ws6a{word-spacing:20.738494px;}
.ws136{word-spacing:20.808791px;}
.ws7c{word-spacing:21.012794px;}
.ws54{word-spacing:21.226123px;}
.ws4f{word-spacing:21.285445px;}
.ws11b{word-spacing:21.528326px;}
.ws137{word-spacing:21.529187px;}
.ws30{word-spacing:21.629970px;}
.ws5d{word-spacing:21.681257px;}
.ws58{word-spacing:21.919764px;}
.ws101{word-spacing:22.004837px;}
.ws5e{word-spacing:22.004980px;}
.ws6b{word-spacing:22.107269px;}
.wsa1{word-spacing:22.126780px;}
.wse5{word-spacing:22.178857px;}
.ws19{word-spacing:22.247862px;}
.ws117{word-spacing:22.249225px;}
.ws119{word-spacing:22.249297px;}
.ws7d{word-spacing:22.351514px;}
.wsa6{word-spacing:22.400793px;}
.ws12e{word-spacing:22.451005px;}
.ws7e{word-spacing:22.451794px;}
.ws11f{word-spacing:22.452655px;}
.wsa4{word-spacing:22.639299px;}
.ws49{word-spacing:22.640160px;}
.ws38{word-spacing:22.724516px;}
.ws57{word-spacing:22.725807px;}
.ws9f{word-spacing:22.726309px;}
.ws47{word-spacing:22.726453px;}
.ws8e{word-spacing:22.827092px;}
.ws4a{word-spacing:22.827522px;}
.ws43{word-spacing:22.897962px;}
.ws18{word-spacing:22.898392px;}
.wsd2{word-spacing:22.898823px;}
.ws112{word-spacing:22.898894px;}
.wsce{word-spacing:22.899397px;}
.ws123{word-spacing:22.967398px;}
.ws78{word-spacing:22.968259px;}
.ws12a{word-spacing:22.968832px;}
.wsa7{word-spacing:22.969119px;}
.ws11d{word-spacing:22.969263px;}
.ws127{word-spacing:22.969334px;}
.wsf6{word-spacing:23.050893px;}
.ws102{word-spacing:23.070045px;}
.ws4c{word-spacing:23.070978px;}
.ws92{word-spacing:23.071049px;}
.wsfb{word-spacing:23.120257px;}
.ws51{word-spacing:23.120329px;}
.ws37{word-spacing:23.172334px;}
.ws116{word-spacing:23.172764px;}
.ws114{word-spacing:23.172908px;}
.wsf9{word-spacing:23.444482px;}
.ws2f{word-spacing:23.446275px;}
.wsa2{word-spacing:23.446419px;}
.wsff{word-spacing:23.546627px;}
.ws10c{word-spacing:23.618358px;}
.ws1b{word-spacing:23.619363px;}
.ws128{word-spacing:23.688296px;}
.ws12b{word-spacing:23.688368px;}
.ws115{word-spacing:23.688798px;}
.ws111{word-spacing:23.689301px;}
.ws10d{word-spacing:23.790083px;}
.ws9e{word-spacing:24.079662px;}
.ws75{word-spacing:24.080164px;}
.ws56{word-spacing:24.116101px;}
.ws15{word-spacing:24.164448px;}
.ws5b{word-spacing:24.165022px;}
.wsb5{word-spacing:24.165811px;}
.ws8c{word-spacing:24.165954px;}
.ws79{word-spacing:24.166241px;}
.wse0{word-spacing:24.166313px;}
.ws76{word-spacing:24.337894px;}
.ws34{word-spacing:24.338396px;}
.wsa0{word-spacing:24.338468px;}
.ws55{word-spacing:24.338898px;}
.ws12c{word-spacing:24.407563px;}
.wsfc{word-spacing:24.489032px;}
.ws59{word-spacing:24.561695px;}
.ws40{word-spacing:24.800632px;}
.wsb4{word-spacing:24.834202px;}
.ws35{word-spacing:24.885490px;}
.ws104{word-spacing:24.987994px;}
.ws100{word-spacing:25.058936px;}
.ws122{word-spacing:25.229585px;}
.ws108{word-spacing:25.281159px;}
.wsc2{word-spacing:25.285455px;}
.wsa3{word-spacing:25.330941px;}
.ws52{word-spacing:25.469956px;}
.ws41{word-spacing:25.520598px;}
.wsc1{word-spacing:25.605026px;}
.ws5a{word-spacing:25.606317px;}
.wsc3{word-spacing:25.777539px;}
.ws81{word-spacing:25.778472px;}
.ws7a{word-spacing:25.936209px;}
.wse2{word-spacing:25.951416px;}
.ws10e{word-spacing:26.000767px;}
.wse3{word-spacing:26.051481px;}
.ws109{word-spacing:26.051768px;}
.ws2a{word-spacing:26.239201px;}
.wsc6{word-spacing:26.253619px;}
.ws5f{word-spacing:26.324561px;}
.ws2d{word-spacing:26.326283px;}
.ws7b{word-spacing:26.376566px;}
.wse1{word-spacing:26.443707px;}
.wsb0{word-spacing:26.490834px;}
.ws134{word-spacing:26.568806px;}
.ws31{word-spacing:26.669588px;}
.wsc5{word-spacing:26.670091px;}
.wsd0{word-spacing:26.670521px;}
.ws8d{word-spacing:26.670951px;}
.ws23{word-spacing:26.772308px;}
.ws32{word-spacing:26.960243px;}
.wsd1{word-spacing:26.961176px;}
.ws8f{word-spacing:27.046392px;}
.ws63{word-spacing:27.218978px;}
.ws120{word-spacing:27.288844px;}
.ws11a{word-spacing:27.289274px;}
.ws110{word-spacing:27.390559px;}
.ws13{word-spacing:27.439838px;}
.ws39{word-spacing:27.491843px;}
.ws61{word-spacing:27.680711px;}
.ws24{word-spacing:27.764493px;}
.ws80{word-spacing:27.765354px;}
.ws74{word-spacing:27.765928px;}
.ws72{word-spacing:27.937940px;}
.ws106{word-spacing:27.938513px;}
.ws9d{word-spacing:28.110023px;}
.ws50{word-spacing:28.161741px;}
.ws45{word-spacing:28.399171px;}
.ws28{word-spacing:28.484890px;}
.ws21{word-spacing:28.485464px;}
.ws33{word-spacing:28.638682px;}
.ws135{word-spacing:28.657475px;}
.ws44{word-spacing:28.658910px;}
.ws124{word-spacing:28.728346px;}
.wsf4{word-spacing:28.829558px;}
.ws66{word-spacing:28.829702px;}
.ws65{word-spacing:28.932277px;}
.ws64{word-spacing:28.932421px;}
.ws90{word-spacing:29.119711px;}
.ws29{word-spacing:29.204426px;}
.ws10f{word-spacing:29.204999px;}
.ws105{word-spacing:29.652674px;}
.ws14{word-spacing:30.098842px;}
.wsd{word-spacing:30.099416px;}
.wsf5{word-spacing:30.559715px;}
.ws1a{word-spacing:30.645505px;}
.ws53{word-spacing:30.646438px;}
.ws103{word-spacing:30.746646px;}
.ws2e{word-spacing:30.888674px;}
.ws91{word-spacing:30.990102px;}
.ws3a{word-spacing:31.280255px;}
.ws3f{word-spacing:31.365974px;}
.ws107{word-spacing:31.538487px;}
.wscf{word-spacing:32.085509px;}
.ws4e{word-spacing:32.257521px;}
.wsf7{word-spacing:32.481250px;}
.wsf8{word-spacing:32.531390px;}
.ws3e{word-spacing:32.805045px;}
.ws3c{word-spacing:32.977487px;}
.ws13a{word-spacing:33.047425px;}
.wscc{word-spacing:33.151507px;}
.wsd3{word-spacing:33.251069px;}
.ws4d{word-spacing:33.440583px;}
.ws22{word-spacing:33.524581px;}
.ws7f{word-spacing:33.697955px;}
.ws26{word-spacing:33.699389px;}
.wsd4{word-spacing:33.699461px;}
.wscd{word-spacing:33.871114px;}
.ws48{word-spacing:33.920322px;}
.wsbf{word-spacing:34.246268px;}
.ws27{word-spacing:34.347194px;}
.ws10{word-spacing:34.639857px;}
.ws12{word-spacing:34.880731px;}
.wsc0{word-spacing:34.965947px;}
.ws60{word-spacing:35.685411px;}
.wsed{word-spacing:52.573588px;}
.wsea{word-spacing:54.262511px;}
.ws8b{word-spacing:55.813681px;}
.wsec{word-spacing:56.101109px;}
.wsc7{word-spacing:60.538964px;}
.wseb{word-spacing:67.940198px;}
.ws9a{word-spacing:68.464857px;}
.wsf1{word-spacing:69.906167px;}
.ws20{word-spacing:80.508230px;}
.ws9b{word-spacing:84.306179px;}
.wsf2{word-spacing:85.745526px;}
.wsee{word-spacing:99.301109px;}
.wsf0{word-spacing:99.301112px;}
.ws9c{word-spacing:100.145538px;}
.wsef{word-spacing:110.173588px;}
.wsaf{word-spacing:116.706206px;}
.ws84{word-spacing:121.154373px;}
.ws85{word-spacing:122.586930px;}
.wsb7{word-spacing:122.690625px;}
.wsb8{word-spacing:124.133940px;}
.wse9{word-spacing:152.116146px;}
.wsa8{word-spacing:341.992399px;}
.wsd8{word-spacing:370.591521px;}
.wsdd{word-spacing:372.040908px;}
.wsbe{word-spacing:780.881396px;}
._c{margin-left:-6.074793px;}
._4f{margin-left:-4.950575px;}
._18{margin-left:-3.893677px;}
._3{margin-left:-2.512330px;}
._4{margin-left:-1.350882px;}
._1{width:1.105801px;}
._2{width:2.506647px;}
._6{width:3.787382px;}
._45{width:5.079489px;}
._11{width:14.799405px;}
._1a{width:17.169359px;}
._a{width:18.868554px;}
._12{width:19.972147px;}
._8{width:21.618537px;}
._1c{width:23.009001px;}
._5{width:24.060218px;}
._10{width:25.408660px;}
._0{width:26.621242px;}
._19{width:27.873532px;}
._d{width:28.980100px;}
._7{width:30.608243px;}
._9{width:31.745113px;}
._f{width:33.094644px;}
._16{width:35.054914px;}
._b{width:36.178503px;}
._15{width:37.878138px;}
._22{width:38.996431px;}
._1d{width:40.172862px;}
._17{width:42.700216px;}
._23{width:44.265508px;}
._14{width:47.060743px;}
._4e{width:48.338402px;}
._1e{width:49.536006px;}
._1f{width:51.168674px;}
._e{width:53.447954px;}
._1b{width:56.291010px;}
._20{width:60.258676px;}
._13{width:63.978089px;}
._27{width:71.586316px;}
._28{width:75.767462px;}
._3d{width:77.370454px;}
._21{width:80.746188px;}
._3e{width:81.999276px;}
._2a{width:83.996271px;}
._2c{width:85.188070px;}
._2b{width:87.222475px;}
._29{width:88.294340px;}
._40{width:90.846763px;}
._42{width:91.873232px;}
._41{width:94.444260px;}
._3f{width:95.470728px;}
._47{width:104.857333px;}
._4b{width:118.864899px;}
._4c{width:120.633201px;}
._2e{width:132.545565px;}
._26{width:134.892385px;}
._25{width:136.806325px;}
._24{width:137.878957px;}
._3c{width:139.544208px;}
._48{width:144.784921px;}
._4a{width:146.137112px;}
._36{width:149.104897px;}
._49{width:162.065879px;}
._39{width:165.665565px;}
._30{width:189.425646px;}
._31{width:194.834025px;}
._32{width:205.985646px;}
._33{width:209.651738px;}
._38{width:222.152291px;}
._2f{width:226.864989px;}
._3b{width:237.992946px;}
._37{width:243.426312px;}
._4d{width:245.585400px;}
._3a{width:259.592289px;}
._46{width:261.752700px;}
._34{width:337.025400px;}
._2d{width:353.192700px;}
._35{width:369.999891px;}
._43{width:398.442092px;}
._44{width:399.733170px;}
.fc2{color:transparent;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs16{font-size:23.839560px;}
.fs18{font-size:26.247600px;}
.fs15{font-size:33.712560px;}
.fs14{font-size:34.555380px;}
.fs17{font-size:37.083780px;}
.fs1b{font-size:38.162940px;}
.fs1e{font-size:39.197340px;}
.fs10{font-size:39.264840px;}
.fs21{font-size:39.350460px;}
.fs22{font-size:39.800880px;}
.fs3{font-size:41.843100px;}
.fsc{font-size:47.314260px;}
.fs1{font-size:47.820660px;}
.fs13{font-size:48.883200px;}
.fs8{font-size:49.508066px;}
.fsa{font-size:50.181780px;}
.fs11{font-size:50.568840px;}
.fs19{font-size:53.967840px;}
.fs1c{font-size:55.430640px;}
.fsf{font-size:55.479960px;}
.fs1f{font-size:55.647180px;}
.fsd{font-size:56.284020px;}
.fs7{font-size:57.756928px;}
.fs6{font-size:57.759332px;}
.fs4{font-size:59.775840px;}
.fs2{font-size:65.454600px;}
.fs5{font-size:66.009600px;}
.fsb{font-size:66.909000px;}
.fs12{font-size:67.425000px;}
.fs0{font-size:71.731200px;}
.fs1a{font-size:71.956800px;}
.fs1d{font-size:73.907400px;}
.fs20{font-size:74.196000px;}
.fs9{font-size:74.260800px;}
.fse{font-size:75.045600px;}
.y0{bottom:0.000000px;}
.y5e{bottom:4.641000px;}
.y59{bottom:19.916488px;}
.y58{bottom:34.767000px;}
.y56{bottom:71.211783px;}
.y55{bottom:74.302500px;}
.y54{bottom:92.008500px;}
.y156{bottom:115.529100px;}
.y1b0{bottom:115.529220px;}
.y18{bottom:115.529400px;}
.y36{bottom:115.529550px;}
.ybb{bottom:115.529700px;}
.y52{bottom:115.529730px;}
.ya4{bottom:115.529850px;}
.y1b4{bottom:115.529955px;}
.y5d{bottom:127.893000px;}
.y57{bottom:152.863500px;}
.y155{bottom:160.349250px;}
.y70{bottom:160.349550px;}
.y35{bottom:160.349700px;}
.yba{bottom:160.349850px;}
.y51{bottom:160.349880px;}
.ya3{bottom:160.350000px;}
.y17{bottom:175.469700px;}
.y1af{bottom:177.089520px;}
.y154{bottom:191.669400px;}
.y6f{bottom:191.669700px;}
.y34{bottom:191.669850px;}
.yb9{bottom:191.670000px;}
.y50{bottom:191.670030px;}
.ya2{bottom:191.670150px;}
.y16{bottom:198.510000px;}
.y5c{bottom:211.436700px;}
.y1ae{bottom:215.069400px;}
.y17f{bottom:216.510150px;}
.y6e{bottom:223.169700px;}
.y33{bottom:223.169850px;}
.yb8{bottom:223.170000px;}
.y4f{bottom:223.170030px;}
.ya1{bottom:223.170150px;}
.y153{bottom:227.489550px;}
.y5b{bottom:234.643350px;}
.y1ad{bottom:246.389580px;}
.y17e{bottom:249.090000px;}
.y191{bottom:250.170000px;}
.y6d{bottom:254.489850px;}
.y32{bottom:254.490000px;}
.y4e{bottom:254.490150px;}
.ya0{bottom:254.490300px;}
.y5a{bottom:257.850000px;}
.y5f{bottom:258.262500px;}
.y152{bottom:258.989550px;}
.y1ac{bottom:271.409730px;}
.y170{bottom:278.502150px;}
.y6c{bottom:285.810000px;}
.y31{bottom:285.810150px;}
.y4d{bottom:285.810300px;}
.y9f{bottom:285.810450px;}
.yfe{bottom:288.870000px;}
.y151{bottom:290.309700px;}
.y16f{bottom:294.885000px;}
.yfd{bottom:301.110450px;}
.y171{bottom:303.093000px;}
.y13b{bottom:308.849700px;}
.y1ab{bottom:309.209745px;}
.y6b{bottom:317.310000px;}
.y30{bottom:317.310150px;}
.y4c{bottom:317.310300px;}
.y9e{bottom:320.190300px;}
.y150{bottom:321.629250px;}
.y17b{bottom:328.588500px;}
.y1aa{bottom:334.049445px;}
.y6a{bottom:348.629550px;}
.y2f{bottom:348.629700px;}
.y4b{bottom:348.629850px;}
.y172{bottom:349.996650px;}
.y9d{bottom:351.690300px;}
.y190{bottom:352.049850px;}
.y14f{bottom:353.129250px;}
.y17a{bottom:353.983500px;}
.y1a9{bottom:365.549445px;}
.yd4{bottom:372.210000px;}
.y177{bottom:376.797000px;}
.y179{bottom:379.377000px;}
.y69{bottom:379.949700px;}
.y2e{bottom:379.949850px;}
.y4a{bottom:379.950000px;}
.y9c{bottom:383.010450px;}
.y18f{bottom:383.370000px;}
.y13a{bottom:384.449700px;}
.y14e{bottom:388.949400px;}
.y173{bottom:396.899850px;}
.yfc{bottom:398.670150px;}
.y1a8{bottom:403.349475px;}
.y178{bottom:404.772000px;}
.y68{bottom:411.449700px;}
.y2d{bottom:411.449850px;}
.yb7{bottom:411.450000px;}
.y49{bottom:412.710300px;}
.y18e{bottom:414.690150px;}
.y139{bottom:415.769850px;}
.y14d{bottom:420.269550px;}
.y1a7{bottom:428.189775px;}
.yfb{bottom:431.250000px;}
.y9b{bottom:440.070150px;}
.y2c{bottom:442.770000px;}
.yb6{bottom:442.770150px;}
.y174{bottom:443.803050px;}
.y48{bottom:444.210300px;}
.y18d{bottom:446.190150px;}
.y138{bottom:447.269850px;}
.yd3{bottom:451.590000px;}
.y14c{bottom:451.769550px;}
.y1a6{bottom:459.689775px;}
.ye8{bottom:463.465665px;}
.y9a{bottom:472.650000px;}
.y2b{bottom:474.090150px;}
.y15{bottom:475.170060px;}
.y47{bottom:475.529850px;}
.y18c{bottom:477.510300px;}
.ye7{bottom:478.185000px;}
.y17d{bottom:480.488400px;}
.yb5{bottom:480.750000px;}
.y14b{bottom:483.089700px;}
.ye9{bottom:485.560500px;}
.y175{bottom:490.706700px;}
.yd2{bottom:493.710000px;}
.y67{bottom:495.329550px;}
.y1a5{bottom:497.489805px;}
.y137{bottom:498.390000px;}
.y17c{bottom:502.365000px;}
.y114{bottom:505.590150px;}
.y14{bottom:506.490210px;}
.y46{bottom:506.850000px;}
.y88{bottom:507.910669px;}
.y18b{bottom:508.829850px;}
.y2a{bottom:511.170000px;}
.yb4{bottom:512.250000px;}
.y14a{bottom:514.409850px;}
.yf3{bottom:520.657500px;}
.y87{bottom:522.517500px;}
.y1a4{bottom:528.809970px;}
.y92{bottom:529.834500px;}
.y136{bottom:530.790000px;}
.yea{bottom:531.975600px;}
.yd1{bottom:536.010000px;}
.y113{bottom:536.910300px;}
.y176{bottom:537.609900px;}
.y13{bottom:537.810360px;}
.y45{bottom:538.350000px;}
.y18a{bottom:540.329850px;}
.y29{bottom:542.490150px;}
.yb3{bottom:543.570150px;}
.y149{bottom:545.909850px;}
.y89{bottom:552.357000px;}
.yf4{bottom:555.784500px;}
.yee{bottom:555.964500px;}
.y1a3{bottom:560.309400px;}
.y128{bottom:560.583900px;}
.y112{bottom:568.229850px;}
.y44{bottom:569.670150px;}
.y93{bottom:569.979450px;}
.y189{bottom:571.650000px;}
.y28{bottom:573.990150px;}
.yb2{bottom:575.070150px;}
.y127{bottom:576.781500px;}
.y148{bottom:577.230000px;}
.yd0{bottom:578.310000px;}
.yeb{bottom:578.390100px;}
.y1a2{bottom:585.149700px;}
.y12{bottom:585.150060px;}
.yf5{bottom:590.912100px;}
.y8a{bottom:597.461250px;}
.y111{bottom:599.729850px;}
.y43{bottom:600.990300px;}
.y188{bottom:602.970150px;}
.y27{bottom:605.309700px;}
.yb1{bottom:606.390300px;}
.y94{bottom:610.154850px;}
.y66{bottom:613.409400px;}
.y11{bottom:616.470210px;}
.y129{bottom:618.021000px;}
.y16e{bottom:618.990000px;}
.ycf{bottom:621.150000px;}
.y1a1{bottom:622.949730px;}
.yec{bottom:624.805200px;}
.yf6{bottom:626.009100px;}
.y110{bottom:631.050000px;}
.y42{bottom:632.490300px;}
.y8e{bottom:633.156000px;}
.y187{bottom:634.470150px;}
.y26{bottom:636.629850px;}
.yb0{bottom:637.710450px;}
.y8b{bottom:642.535050px;}
.yfa{bottom:645.814500px;}
.y10{bottom:647.790360px;}
.yf2{bottom:649.186500px;}
.y95{bottom:650.300400px;}
.y16d{bottom:650.310150px;}
.y1a0{bottom:654.449760px;}
.y12d{bottom:657.769500px;}
.yf9{bottom:658.908000px;}
.yf1{bottom:661.377000px;}
.y10f{bottom:662.370150px;}
.y147{bottom:663.090000px;}
.yce{bottom:663.450000px;}
.y41{bottom:663.810450px;}
.y186{bottom:665.790300px;}
.y25{bottom:668.129850px;}
.yaf{bottom:669.210450px;}
.yed{bottom:671.220300px;}
.yf8{bottom:672.003000px;}
.yf0{bottom:673.537500px;}
.y65{bottom:678.749700px;}
.y19f{bottom:679.290060px;}
.yf{bottom:679.290360px;}
.y16c{bottom:681.810150px;}
.y12a{bottom:684.267750px;}
.yf7{bottom:685.095000px;}
.yef{bottom:685.698000px;}
.y8c{bottom:687.608850px;}
.y96{bottom:690.475800px;}
.y10e{bottom:693.870150px;}
.y185{bottom:697.110450px;}
.y24{bottom:699.450000px;}
.yae{bottom:700.530000px;}
.y146{bottom:705.390000px;}
.ycd{bottom:705.570000px;}
.y64{bottom:710.249700px;}
.ye{bottom:710.610510px;}
.y16b{bottom:713.129700px;}
.y133{bottom:715.635000px;}
.y19e{bottom:717.269970px;}
.y91{bottom:720.346500px;}
.y184{bottom:728.610450px;}
.y97{bottom:730.591350px;}
.y23{bottom:730.770150px;}
.y132{bottom:731.733000px;}
.y8d{bottom:732.683250px;}
.y98{bottom:734.893500px;}
.y90{bottom:734.983500px;}
.y63{bottom:741.569850px;}
.y19d{bottom:742.110270px;}
.yd{bottom:742.110510px;}
.y16a{bottom:744.449850px;}
.y10d{bottom:745.170150px;}
.y145{bottom:747.690000px;}
.y131{bottom:747.963000px;}
.y8f{bottom:749.529000px;}
.y12b{bottom:750.514500px;}
.y40{bottom:750.750150px;}
.ycc{bottom:756.690150px;}
.y99{bottom:761.955000px;}
.y22{bottom:762.270150px;}
.y130{bottom:764.227500px;}
.y62{bottom:772.890000px;}
.y19c{bottom:773.429820px;}
.yc{bottom:773.430060px;}
.y134{bottom:774.130500px;}
.y169{bottom:775.949850px;}
.y10c{bottom:777.750000px;}
.y12f{bottom:780.457500px;}
.ye6{bottom:783.510150px;}
.y183{bottom:787.110450px;}
.ycb{bottom:789.270000px;}
.y144{bottom:789.990000px;}
.yad{bottom:790.890000px;}
.y21{bottom:793.590300px;}
.y135{bottom:796.223850px;}
.y12e{bottom:796.555500px;}
.y61{bottom:804.390000px;}
.y19b{bottom:804.749970px;}
.yb{bottom:804.750210px;}
.y100{bottom:809.129630px;}
.ye5{bottom:816.090000px;}
.y12c{bottom:816.761250px;}
.y3f{bottom:824.730000px;}
.yff{bottom:824.838000px;}
.y20{bottom:824.910450px;}
.y168{bottom:825.810150px;}
.y86{bottom:829.950150px;}
.y143{bottom:832.110000px;}
.yac{bottom:833.010000px;}
.ya{bottom:836.250210px;}
.y19a{bottom:842.729850px;}
.yca{bottom:844.890150px;}
.yd6{bottom:848.306250px;}
.y60{bottom:852.090000px;}
.y126{bottom:854.250000px;}
.y3e{bottom:856.050150px;}
.y1f{bottom:856.410450px;}
.y167{bottom:858.390000px;}
.y101{bottom:861.105000px;}
.y85{bottom:862.530000px;}
.yd5{bottom:863.025000px;}
.y10a{bottom:864.349500px;}
.y9{bottom:867.570360px;}
.yd7{bottom:870.399000px;}
.y199{bottom:874.050030px;}
.y142{bottom:874.410000px;}
.yab{bottom:875.310000px;}
.yc9{bottom:877.470000px;}
.y53{bottom:878.982000px;}
.y109{bottom:880.090500px;}
.y125{bottom:886.650000px;}
.y3d{bottom:887.370300px;}
.y1e{bottom:887.730000px;}
.y158{bottom:887.982150px;}
.y182{bottom:888.810450px;}
.y108{bottom:895.831500px;}
.y72{bottom:897.789750px;}
.y198{bottom:898.890330px;}
.y8{bottom:898.890510px;}
.ye0{bottom:899.206500px;}
.y157{bottom:904.365000px;}
.y102{bottom:904.761450px;}
.ybd{bottom:907.062150px;}
.y106{bottom:907.845000px;}
.y107{bottom:911.571000px;}
.y71{bottom:912.396000px;}
.y159{bottom:912.573000px;}
.y116{bottom:916.268850px;}
.y141{bottom:917.250000px;}
.yaa{bottom:917.610000px;}
.y3c{bottom:918.870300px;}
.y1d{bottom:919.050150px;}
.y73{bottom:919.714500px;}
.y181{bottom:920.310450px;}
.ybc{bottom:923.445000px;}
.yd8{bottom:925.814100px;}
.ye1{bottom:929.517600px;}
.y197{bottom:930.390330px;}
.ybe{bottom:931.653000px;}
.y115{bottom:932.238000px;}
.y7{bottom:938.490510px;}
.ydb{bottom:940.804500px;}
.y164{bottom:941.955000px;}
.y103{bottom:948.417300px;}
.y7e{bottom:949.585500px;}
.y3b{bottom:950.190450px;}
.y1c{bottom:950.550150px;}
.y180{bottom:951.630000px;}
.yc8{bottom:951.888000px;}
.y15a{bottom:959.041350px;}
.y140{bottom:959.550000px;}
.ye2{bottom:959.828700px;}
.ya9{bottom:960.450000px;}
.y163{bottom:964.032000px;}
.y74{bottom:967.506450px;}
.y196{bottom:968.190345px;}
.yc7{bottom:970.381500px;}
.y117{bottom:973.942500px;}
.y6{bottom:978.450210px;}
.ybf{bottom:978.556200px;}
.yd9{bottom:981.259650px;}
.y1b{bottom:981.870300px;}
.y3a{bottom:982.950150px;}
.y162{bottom:986.077500px;}
.y15f{bottom:986.278500px;}
.yc6{bottom:988.875000px;}
.ye3{bottom:990.139800px;}
.y104{bottom:992.073150px;}
.y195{bottom:999.690390px;}
.y13f{bottom:1001.850000px;}
.ya8{bottom:1002.750000px;}
.yc4{bottom:1005.358500px;}
.y15b{bottom:1005.542550px;}
.yc5{bottom:1007.368500px;}
.y161{bottom:1008.121500px;}
.y7f{bottom:1009.326000px;}
.y5{bottom:1009.950210px;}
.y10b{bottom:1011.606000px;}
.y11c{bottom:1012.744500px;}
.y1a{bottom:1013.190450px;}
.y39{bottom:1014.450150px;}
.y75{bottom:1015.298400px;}
.ye4{bottom:1020.390600px;}
.y118{bottom:1022.048550px;}
.y82{bottom:1023.036000px;}
.ydf{bottom:1024.393500px;}
.yc0{bottom:1025.459400px;}
.y160{bottom:1030.165500px;}
.y194{bottom:1031.009970px;}
.y105{bottom:1035.729600px;}
.yda{bottom:1036.704600px;}
.yde{bottom:1040.679000px;}
.y4{bottom:1041.270360px;}
.y13e{bottom:1043.970000px;}
.y19{bottom:1044.690450px;}
.ya7{bottom:1044.870000px;}
.y38{bottom:1045.770300px;}
.y7d{bottom:1051.203000px;}
.y15c{bottom:1052.010300px;}
.y193{bottom:1055.850270px;}
.ydd{bottom:1056.963000px;}
.y76{bottom:1063.090950px;}
.y7c{bottom:1065.720000px;}
.y80{bottom:1069.065900px;}
.y119{bottom:1070.154600px;}
.y122{bottom:1071.903000px;}
.yc1{bottom:1072.363050px;}
.y3{bottom:1072.590450px;}
.ydc{bottom:1073.247000px;}
.y37{bottom:1077.090450px;}
.y7b{bottom:1080.357000px;}
.y1b3{bottom:1083.569835px;}
.y121{bottom:1087.807500px;}
.y192{bottom:1093.830150px;}
.y7a{bottom:1094.992500px;}
.y13d{bottom:1095.090150px;}
.ya6{bottom:1095.990150px;}
.y15d{bottom:1098.511500px;}
.y166{bottom:1100.454300px;}
.y120{bottom:1103.875500px;}
.y1b2{bottom:1108.589985px;}
.y2{bottom:1108.590450px;}
.y79{bottom:1109.629500px;}
.y77{bottom:1110.882900px;}
.y11a{bottom:1118.293500px;}
.yc2{bottom:1119.266250px;}
.y11f{bottom:1119.910500px;}
.y165{bottom:1124.107500px;}
.y78{bottom:1124.175000px;}
.y13c{bottom:1127.670000px;}
.ya5{bottom:1128.570000px;}
.y81{bottom:1128.806400px;}
.y124{bottom:1130.832450px;}
.y11e{bottom:1135.978500px;}
.y84{bottom:1138.662210px;}
.y1{bottom:1139.910000px;}
.y15e{bottom:1144.979250px;}
.y1b1{bottom:1146.390000px;}
.y83{bottom:1150.371000px;}
.y123{bottom:1151.553000px;}
.y11d{bottom:1152.013500px;}
.yc3{bottom:1166.169900px;}
.y11b{bottom:1166.398950px;}
.h6{height:31.382325px;}
.h1d{height:33.087034px;}
.h27{height:35.865495px;}
.h1e{height:36.395702px;}
.h11{height:37.626130px;}
.hf{height:43.897093px;}
.h10{height:43.898723px;}
.h1c{height:47.976187px;}
.h4{height:49.090950px;}
.h13{height:49.250673px;}
.h1a{height:49.630551px;}
.he{height:50.167296px;}
.h7{height:50.211840px;}
.h3{height:51.216077px;}
.h1{height:51.359539px;}
.h12{height:51.982560px;}
.h21{height:52.966484px;}
.h5{height:53.798400px;}
.h23{height:54.402142px;}
.h19{height:54.450547px;}
.h25{height:54.614664px;}
.h17{height:55.239688px;}
.hc{height:59.585265px;}
.h16{height:59.624115px;}
.h15{height:59.626455px;}
.hb{height:60.304785px;}
.h8{height:61.785015px;}
.ha{height:61.787355px;}
.h2{height:62.504535px;}
.h9{height:62.506875px;}
.h14{height:65.667524px;}
.h1b{height:66.173950px;}
.h22{height:70.621664px;}
.h24{height:72.536071px;}
.h26{height:72.819316px;}
.h18{height:73.653152px;}
.h1f{height:102.757020px;}
.h20{height:133.200000px;}
.hd{height:296.080500px;}
.h0{height:1263.000000px;}
.w1{width:382.650000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xb{left:24.753000px;}
.x6{left:40.278000px;}
.x1{left:108.000000px;}
.x42{left:114.300000px;}
.x43{left:121.500000px;}
.x7{left:122.700000px;}
.x4{left:130.500000px;}
.x2{left:162.000000px;}
.xe{left:177.400545px;}
.x1a{left:189.360000px;}
.x39{left:205.380000px;}
.x8{left:231.684352px;}
.xa{left:232.887000px;}
.x3a{left:244.980000px;}
.x3c{left:254.520000px;}
.x1d{left:256.320000px;}
.x3b{left:258.660000px;}
.x1c{left:260.460000px;}
.x5{left:266.400000px;}
.x12{left:278.298000px;}
.x22{left:280.347000px;}
.x27{left:284.700000px;}
.x2c{left:285.916547px;}
.x1f{left:287.382000px;}
.x9{left:288.580500px;}
.x34{left:289.793442px;}
.x21{left:291.703876px;}
.x33{left:300.194415px;}
.x20{left:302.223796px;}
.x31{left:306.819000px;}
.x25{left:308.419500px;}
.x15{left:309.691500px;}
.xf{left:311.514000px;}
.xd{left:312.514245px;}
.x13{left:323.880000px;}
.xc{left:324.891000px;}
.x18{left:326.926500px;}
.x29{left:334.799880px;}
.x28{left:341.047500px;}
.x23{left:342.594000px;}
.x14{left:345.236850px;}
.x1b{left:346.320000px;}
.x2f{left:351.015000px;}
.x16{left:352.615500px;}
.x11{left:354.108000px;}
.x3f{left:361.590000px;}
.x3d{left:364.939500px;}
.x2a{left:375.120000px;}
.x38{left:378.360000px;}
.x17{left:397.419000px;}
.x32{left:423.412950px;}
.x19{left:424.980000px;}
.x1e{left:426.852150px;}
.x37{left:440.100195px;}
.x26{left:442.939800px;}
.x3{left:444.599760px;}
.x2b{left:454.405500px;}
.x2d{left:473.904000px;}
.x24{left:480.960000px;}
.x2e{left:548.784000px;}
.x36{left:559.219155px;}
.x35{left:561.802500px;}
.x3e{left:567.260895px;}
.x30{left:569.472000px;}
.x40{left:578.652000px;}
.x41{left:581.265285px;}
.x10{left:619.981500px;}
@media print{
.v4{vertical-align:-23.039573pt;}
.v3{vertical-align:-19.200000pt;}
.v6{vertical-align:-17.337493pt;}
.v8{vertical-align:-13.162507pt;}
.v7{vertical-align:-11.987520pt;}
.v2{vertical-align:-9.600000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:8.960427pt;}
.v5{vertical-align:21.120853pt;}
.v1{vertical-align:23.679147pt;}
.v9{vertical-align:43.518773pt;}
.va{vertical-align:118.400000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4e{letter-spacing:0.005854pt;}
.ls50{letter-spacing:0.006380pt;}
.ls1d{letter-spacing:0.007666pt;}
.ls1b{letter-spacing:0.009746pt;}
.ls14{letter-spacing:0.011415pt;}
.ls5{letter-spacing:0.047802pt;}
.ls24{letter-spacing:0.054885pt;}
.ls2b{letter-spacing:0.065041pt;}
.ls3f{letter-spacing:0.066603pt;}
.ls4a{letter-spacing:0.067080pt;}
.ls48{letter-spacing:0.069160pt;}
.ls28{letter-spacing:0.083552pt;}
.ls16{letter-spacing:0.089009pt;}
.ls2a{letter-spacing:0.089041pt;}
.ls33{letter-spacing:0.091648pt;}
.ls27{letter-spacing:0.094515pt;}
.ls46{letter-spacing:0.115119pt;}
.ls45{letter-spacing:0.117199pt;}
.ls1c{letter-spacing:0.161603pt;}
.ls39{letter-spacing:0.178700pt;}
.ls2f{letter-spacing:0.181265pt;}
.ls3e{letter-spacing:0.183243pt;}
.ls49{letter-spacing:0.185853pt;}
.ls4b{letter-spacing:0.187933pt;}
.ls34{letter-spacing:0.237005pt;}
.ls7{letter-spacing:0.251031pt;}
.ls25{letter-spacing:1.747422pt;}
.ls42{letter-spacing:1.749502pt;}
.ls6{letter-spacing:2.386995pt;}
.ls21{letter-spacing:2.389075pt;}
.lsa{letter-spacing:2.649435pt;}
.ls4{letter-spacing:3.028648pt;}
.ls38{letter-spacing:3.294956pt;}
.ls3{letter-spacing:3.668222pt;}
.ls0{letter-spacing:3.934529pt;}
.ls1f{letter-spacing:3.936609pt;}
.ls18{letter-spacing:4.576182pt;}
.ls35{letter-spacing:5.179888pt;}
.ls32{letter-spacing:8.904482pt;}
.ls36{letter-spacing:13.531221pt;}
.ls37{letter-spacing:14.457651pt;}
.ls2c{letter-spacing:18.389075pt;}
.ls26{letter-spacing:19.028648pt;}
.ls3a{letter-spacing:19.246501pt;}
.ls29{letter-spacing:19.670302pt;}
.ls4c{letter-spacing:19.841604pt;}
.ls40{letter-spacing:20.307795pt;}
.ls15{letter-spacing:20.309875pt;}
.ls51{letter-spacing:20.481178pt;}
.ls11{letter-spacing:20.686431pt;}
.ls12{letter-spacing:20.947422pt;}
.ls3d{letter-spacing:20.949502pt;}
.ls4d{letter-spacing:21.120751pt;}
.ls20{letter-spacing:21.589075pt;}
.ls4f{letter-spacing:21.760324pt;}
.ls1e{letter-spacing:22.446501pt;}
.ls1a{letter-spacing:22.868222pt;}
.lsd{letter-spacing:23.004347pt;}
.ls19{letter-spacing:23.085968pt;}
.ls2d{letter-spacing:23.105263pt;}
.ls22{letter-spacing:23.507795pt;}
.ls13{letter-spacing:23.886431pt;}
.ls44{letter-spacing:24.147422pt;}
.ls43{letter-spacing:24.149502pt;}
.ls9{letter-spacing:24.233664pt;}
.lsb{letter-spacing:24.407942pt;}
.ls2e{letter-spacing:24.438362pt;}
.ls17{letter-spacing:24.786995pt;}
.ls47{letter-spacing:25.428648pt;}
.lsc{letter-spacing:26.206427pt;}
.ls41{letter-spacing:26.709875pt;}
.ls23{letter-spacing:28.628648pt;}
.ls10{letter-spacing:29.005205pt;}
.lsf{letter-spacing:29.007285pt;}
.ls30{letter-spacing:29.381453pt;}
.ls8{letter-spacing:29.907795pt;}
.ls3c{letter-spacing:32.470248pt;}
.ls3b{letter-spacing:32.685968pt;}
.ls1{letter-spacing:33.965435pt;}
.ls31{letter-spacing:34.510586pt;}
.lse{letter-spacing:35.028648pt;}
.ws6f{word-spacing:-58.675200pt;}
.ws6c{word-spacing:-51.341629pt;}
.ws6d{word-spacing:-51.339491pt;}
.ws6e{word-spacing:-44.007170pt;}
.ws3b{word-spacing:-31.880533pt;}
.ws88{word-spacing:-29.090933pt;}
.ws7{word-spacing:-21.253627pt;}
.ws1c{word-spacing:-18.596933pt;}
.ws86{word-spacing:-14.868667pt;}
.wsdb{word-spacing:-14.661016pt;}
.ws130{word-spacing:-14.529599pt;}
.wse6{word-spacing:-13.381829pt;}
.wsbd{word-spacing:-12.742236pt;}
.wsca{word-spacing:-12.741829pt;}
.wscb{word-spacing:-12.566934pt;}
.wsfd{word-spacing:-12.507560pt;}
.wsde{word-spacing:-12.366040pt;}
.wsd9{word-spacing:-12.317920pt;}
.wsc8{word-spacing:-11.992853pt;}
.ws11c{word-spacing:-11.971927pt;}
.ws12d{word-spacing:-11.970887pt;}
.ws126{word-spacing:-11.969110pt;}
.wsc9{word-spacing:-11.927283pt;}
.ws5{word-spacing:-11.408003pt;}
.ws3{word-spacing:-11.393264pt;}
.ws13b{word-spacing:-11.331633pt;}
.ws113{word-spacing:-11.331411pt;}
.ws132{word-spacing:-11.329744pt;}
.wsba{word-spacing:-10.821827pt;}
.wse7{word-spacing:-10.821013pt;}
.ws2{word-spacing:-10.759616pt;}
.ws6{word-spacing:-10.753691pt;}
.ws129{word-spacing:-10.652115pt;}
.wse8{word-spacing:-10.646409pt;}
.ws118{word-spacing:-10.640893pt;}
.ws9{word-spacing:-10.640128pt;}
.ws95{word-spacing:-10.182583pt;}
.wsab{word-spacing:-10.182176pt;}
.ws139{word-spacing:-10.153886pt;}
.ws70{word-spacing:-10.124401pt;}
.ws8a{word-spacing:-10.124052pt;}
.wsa{word-spacing:-10.049063pt;}
.ws138{word-spacing:-10.048298pt;}
.ws8{word-spacing:-10.012464pt;}
.ws96{word-spacing:-10.006816pt;}
.wsb9{word-spacing:-10.006525pt;}
.ws11e{word-spacing:-10.001306pt;}
.ws1e{word-spacing:-9.837722pt;}
.ws89{word-spacing:-9.600764pt;}
.wsb{word-spacing:-9.542233pt;}
.ws93{word-spacing:-9.484052pt;}
.wsad{word-spacing:-9.483644pt;}
.ws0{word-spacing:-9.421718pt;}
.ws87{word-spacing:-9.366873pt;}
.ws1d{word-spacing:-9.198147pt;}
.wsae{word-spacing:-9.134204pt;}
.wsdc{word-spacing:-9.075964pt;}
.wsa9{word-spacing:-8.725520pt;}
.wsda{word-spacing:-8.710520pt;}
.ws1{word-spacing:-8.458671pt;}
.ws94{word-spacing:-8.262174pt;}
.ws97{word-spacing:-7.622174pt;}
.wsfe{word-spacing:-7.621417pt;}
.ws99{word-spacing:-7.446872pt;}
.ws98{word-spacing:-6.982580pt;}
.wsaa{word-spacing:-6.342231pt;}
.wsbc{word-spacing:-5.832800pt;}
.ws125{word-spacing:-5.674735pt;}
.wsbb{word-spacing:-5.297680pt;}
.ws2b{word-spacing:-3.504019pt;}
.wsac{word-spacing:-1.048088pt;}
.ws133{word-spacing:-0.070141pt;}
.ws11{word-spacing:-0.063761pt;}
.ws1f{word-spacing:0.000000pt;}
.wsb6{word-spacing:2.253958pt;}
.ws4{word-spacing:2.790880pt;}
.ws4b{word-spacing:3.535558pt;}
.ws73{word-spacing:6.096091pt;}
.ws62{word-spacing:6.735558pt;}
.ws3d{word-spacing:11.216624pt;}
.ws2c{word-spacing:14.106307pt;}
.ws16{word-spacing:14.441244pt;}
.ws42{word-spacing:15.080831pt;}
.wse{word-spacing:15.432665pt;}
.ws17{word-spacing:15.644543pt;}
.wsd6{word-spacing:15.644607pt;}
.ws82{word-spacing:15.720419pt;}
.ws77{word-spacing:15.874019pt;}
.wsb1{word-spacing:15.874146pt;}
.ws10b{word-spacing:16.027045pt;}
.wsfa{word-spacing:16.117012pt;}
.wsf3{word-spacing:16.117267pt;}
.ws5c{word-spacing:16.284194pt;}
.ws10a{word-spacing:16.513287pt;}
.wsb2{word-spacing:16.513351pt;}
.ws71{word-spacing:16.756855pt;}
.ws131{word-spacing:16.757875pt;}
.wsd7{word-spacing:16.999466pt;}
.wsdf{word-spacing:16.999593pt;}
.wse4{word-spacing:17.154532pt;}
.ws12f{word-spacing:17.217146pt;}
.wsc{word-spacing:17.306348pt;}
.wsc4{word-spacing:17.307113pt;}
.ws69{word-spacing:17.307495pt;}
.ws67{word-spacing:17.396824pt;}
.ws25{word-spacing:17.641221pt;}
.ws68{word-spacing:17.794120pt;}
.ws83{word-spacing:17.794183pt;}
.ws121{word-spacing:17.856350pt;}
.wsa5{word-spacing:17.947082pt;}
.wsd5{word-spacing:18.036284pt;}
.ws36{word-spacing:18.037177pt;}
.ws46{word-spacing:18.280808pt;}
.wsb3{word-spacing:18.371604pt;}
.wsf{word-spacing:18.433771pt;}
.ws6a{word-spacing:18.434217pt;}
.ws136{word-spacing:18.496703pt;}
.ws7c{word-spacing:18.678039pt;}
.ws54{word-spacing:18.867665pt;}
.ws4f{word-spacing:18.920395pt;}
.ws11b{word-spacing:19.136290pt;}
.ws137{word-spacing:19.137055pt;}
.ws30{word-spacing:19.226640pt;}
.ws5d{word-spacing:19.272229pt;}
.ws58{word-spacing:19.484234pt;}
.ws101{word-spacing:19.559855pt;}
.ws5e{word-spacing:19.559982pt;}
.ws6b{word-spacing:19.650906pt;}
.wsa1{word-spacing:19.668249pt;}
.wse5{word-spacing:19.714539pt;}
.ws19{word-spacing:19.775877pt;}
.ws117{word-spacing:19.777089pt;}
.ws119{word-spacing:19.777153pt;}
.ws7d{word-spacing:19.868012pt;}
.wsa6{word-spacing:19.911816pt;}
.ws12e{word-spacing:19.956449pt;}
.ws7e{word-spacing:19.957150pt;}
.ws11f{word-spacing:19.957915pt;}
.wsa4{word-spacing:20.123822pt;}
.ws49{word-spacing:20.124587pt;}
.ws38{word-spacing:20.199570pt;}
.ws57{word-spacing:20.200717pt;}
.ws9f{word-spacing:20.201164pt;}
.ws47{word-spacing:20.201291pt;}
.ws8e{word-spacing:20.290748pt;}
.ws4a{word-spacing:20.291131pt;}
.ws43{word-spacing:20.353744pt;}
.ws18{word-spacing:20.354127pt;}
.wsd2{word-spacing:20.354509pt;}
.ws112{word-spacing:20.354573pt;}
.wsce{word-spacing:20.355019pt;}
.ws123{word-spacing:20.415465pt;}
.ws78{word-spacing:20.416230pt;}
.ws12a{word-spacing:20.416740pt;}
.wsa7{word-spacing:20.416995pt;}
.ws11d{word-spacing:20.417122pt;}
.ws127{word-spacing:20.417186pt;}
.wsf6{word-spacing:20.489683pt;}
.ws102{word-spacing:20.506707pt;}
.ws4c{word-spacing:20.507536pt;}
.ws92{word-spacing:20.507599pt;}
.wsfb{word-spacing:20.551339pt;}
.ws51{word-spacing:20.551403pt;}
.ws37{word-spacing:20.597630pt;}
.ws116{word-spacing:20.598013pt;}
.ws114{word-spacing:20.598140pt;}
.wsf9{word-spacing:20.839540pt;}
.ws2f{word-spacing:20.841134pt;}
.wsa2{word-spacing:20.841261pt;}
.wsff{word-spacing:20.930335pt;}
.ws10c{word-spacing:20.994096pt;}
.ws1b{word-spacing:20.994989pt;}
.ws128{word-spacing:21.056263pt;}
.ws12b{word-spacing:21.056327pt;}
.ws115{word-spacing:21.056710pt;}
.ws111{word-spacing:21.057156pt;}
.ws10d{word-spacing:21.146740pt;}
.ws9e{word-spacing:21.404144pt;}
.ws75{word-spacing:21.404590pt;}
.ws56{word-spacing:21.436534pt;}
.ws15{word-spacing:21.479509pt;}
.ws5b{word-spacing:21.480019pt;}
.wsb5{word-spacing:21.480721pt;}
.ws8c{word-spacing:21.480848pt;}
.ws79{word-spacing:21.481103pt;}
.wse0{word-spacing:21.481167pt;}
.ws76{word-spacing:21.633684pt;}
.ws34{word-spacing:21.634130pt;}
.wsa0{word-spacing:21.634194pt;}
.ws55{word-spacing:21.634576pt;}
.ws12c{word-spacing:21.695611pt;}
.wsfc{word-spacing:21.768028pt;}
.ws59{word-spacing:21.832618pt;}
.ws40{word-spacing:22.045006pt;}
.wsb4{word-spacing:22.074846pt;}
.ws35{word-spacing:22.120436pt;}
.ws104{word-spacing:22.211550pt;}
.ws100{word-spacing:22.274610pt;}
.ws122{word-spacing:22.426297pt;}
.ws108{word-spacing:22.472142pt;}
.wsc2{word-spacing:22.475960pt;}
.wsa3{word-spacing:22.516392pt;}
.ws52{word-spacing:22.639961pt;}
.ws41{word-spacing:22.684976pt;}
.wsc1{word-spacing:22.760023pt;}
.ws5a{word-spacing:22.761171pt;}
.wsc3{word-spacing:22.913368pt;}
.ws81{word-spacing:22.914197pt;}
.ws7a{word-spacing:23.054408pt;}
.wse2{word-spacing:23.067925pt;}
.ws10e{word-spacing:23.111793pt;}
.wse3{word-spacing:23.156872pt;}
.ws109{word-spacing:23.157127pt;}
.ws2a{word-spacing:23.323734pt;}
.wsc6{word-spacing:23.336550pt;}
.ws5f{word-spacing:23.399610pt;}
.ws2d{word-spacing:23.401140pt;}
.ws7b{word-spacing:23.445837pt;}
.wse1{word-spacing:23.505517pt;}
.wsb0{word-spacing:23.547408pt;}
.ws134{word-spacing:23.616717pt;}
.ws31{word-spacing:23.706301pt;}
.wsc5{word-spacing:23.706747pt;}
.wsd0{word-spacing:23.707130pt;}
.ws8d{word-spacing:23.707512pt;}
.ws23{word-spacing:23.797607pt;}
.ws32{word-spacing:23.964661pt;}
.wsd1{word-spacing:23.965490pt;}
.ws8f{word-spacing:24.041238pt;}
.ws63{word-spacing:24.194647pt;}
.ws120{word-spacing:24.256750pt;}
.ws11a{word-spacing:24.257133pt;}
.ws110{word-spacing:24.347163pt;}
.ws13{word-spacing:24.390967pt;}
.ws39{word-spacing:24.437194pt;}
.ws61{word-spacing:24.605077pt;}
.ws24{word-spacing:24.679550pt;}
.ws80{word-spacing:24.680315pt;}
.ws74{word-spacing:24.680825pt;}
.ws72{word-spacing:24.833724pt;}
.ws106{word-spacing:24.834234pt;}
.ws9d{word-spacing:24.986687pt;}
.ws50{word-spacing:25.032659pt;}
.ws45{word-spacing:25.243708pt;}
.ws28{word-spacing:25.319902pt;}
.ws21{word-spacing:25.320412pt;}
.ws33{word-spacing:25.456606pt;}
.ws135{word-spacing:25.473311pt;}
.ws44{word-spacing:25.474586pt;}
.ws124{word-spacing:25.536307pt;}
.wsf4{word-spacing:25.626274pt;}
.ws66{word-spacing:25.626402pt;}
.ws65{word-spacing:25.717580pt;}
.ws64{word-spacing:25.717707pt;}
.ws90{word-spacing:25.884188pt;}
.ws29{word-spacing:25.959489pt;}
.ws10f{word-spacing:25.959999pt;}
.ws105{word-spacing:26.357932pt;}
.ws14{word-spacing:26.754526pt;}
.wsd{word-spacing:26.755036pt;}
.wsf5{word-spacing:27.164191pt;}
.ws1a{word-spacing:27.240449pt;}
.ws53{word-spacing:27.241278pt;}
.ws103{word-spacing:27.330352pt;}
.ws2e{word-spacing:27.456599pt;}
.ws91{word-spacing:27.546757pt;}
.ws3a{word-spacing:27.804671pt;}
.ws3f{word-spacing:27.880865pt;}
.ws107{word-spacing:28.034211pt;}
.wscf{word-spacing:28.520453pt;}
.ws4e{word-spacing:28.673352pt;}
.wsf7{word-spacing:28.872222pt;}
.wsf8{word-spacing:28.916791pt;}
.ws3e{word-spacing:29.160040pt;}
.ws3c{word-spacing:29.313322pt;}
.ws13a{word-spacing:29.375489pt;}
.wscc{word-spacing:29.468006pt;}
.wsd3{word-spacing:29.556506pt;}
.ws4d{word-spacing:29.724963pt;}
.ws22{word-spacing:29.799627pt;}
.ws7f{word-spacing:29.953738pt;}
.ws26{word-spacing:29.955013pt;}
.wsd4{word-spacing:29.955077pt;}
.wscd{word-spacing:30.107657pt;}
.ws48{word-spacing:30.151397pt;}
.wsbf{word-spacing:30.441127pt;}
.ws27{word-spacing:30.530839pt;}
.ws10{word-spacing:30.790984pt;}
.ws12{word-spacing:31.005094pt;}
.wsc0{word-spacing:31.080842pt;}
.ws60{word-spacing:31.720366pt;}
.wsed{word-spacing:46.732079pt;}
.wsea{word-spacing:48.233343pt;}
.ws8b{word-spacing:49.612161pt;}
.wsec{word-spacing:49.867652pt;}
.wsc7{word-spacing:53.812413pt;}
.wseb{word-spacing:60.391287pt;}
.ws9a{word-spacing:60.857651pt;}
.wsf1{word-spacing:62.138815pt;}
.ws20{word-spacing:71.562871pt;}
.ws9b{word-spacing:74.938826pt;}
.wsf2{word-spacing:76.218245pt;}
.wsee{word-spacing:88.267652pt;}
.wsf0{word-spacing:88.267655pt;}
.ws9c{word-spacing:89.018256pt;}
.wsef{word-spacing:97.932079pt;}
.wsaf{word-spacing:103.738850pt;}
.ws84{word-spacing:107.692776pt;}
.ws85{word-spacing:108.966160pt;}
.wsb7{word-spacing:109.058334pt;}
.wsb8{word-spacing:110.341280pt;}
.wse9{word-spacing:135.214352pt;}
.wsa8{word-spacing:303.993244pt;}
.wsd8{word-spacing:329.414686pt;}
.wsdd{word-spacing:330.703029pt;}
.wsbe{word-spacing:694.116796pt;}
._c{margin-left:-5.399816pt;}
._4f{margin-left:-4.400511pt;}
._18{margin-left:-3.461046pt;}
._3{margin-left:-2.233182pt;}
._4{margin-left:-1.200784pt;}
._1{width:0.982934pt;}
._2{width:2.228131pt;}
._6{width:3.366562pt;}
._45{width:4.515102pt;}
._11{width:13.155027pt;}
._1a{width:15.261652pt;}
._a{width:16.772048pt;}
._12{width:17.753019pt;}
._8{width:19.216477pt;}
._1c{width:20.452445pt;}
._5{width:21.386861pt;}
._10{width:22.585476pt;}
._0{width:23.663326pt;}
._19{width:24.776473pt;}
._d{width:25.760089pt;}
._7{width:27.207327pt;}
._9{width:28.217878pt;}
._f{width:29.417461pt;}
._16{width:31.159923pt;}
._b{width:32.158669pt;}
._15{width:33.669456pt;}
._22{width:34.663494pt;}
._1d{width:35.709211pt;}
._17{width:37.955747pt;}
._23{width:39.347118pt;}
._14{width:41.831772pt;}
._4e{width:42.967469pt;}
._1e{width:44.032005pt;}
._1f{width:45.483266pt;}
._e{width:47.509293pt;}
._1b{width:50.036453pt;}
._20{width:53.563267pt;}
._13{width:56.869412pt;}
._27{width:63.632281pt;}
._28{width:67.348855pt;}
._3d{width:68.773737pt;}
._21{width:71.774389pt;}
._3e{width:72.888245pt;}
._2a{width:74.663352pt;}
._2c{width:75.722729pt;}
._2b{width:77.531089pt;}
._29{width:78.483858pt;}
._40{width:80.752679pt;}
._42{width:81.665095pt;}
._41{width:83.950453pt;}
._3f{width:84.862869pt;}
._47{width:93.206518pt;}
._4b{width:105.657688pt;}
._4c{width:107.229512pt;}
._2e{width:117.818280pt;}
._26{width:119.904342pt;}
._25{width:121.605622pt;}
._24{width:122.559073pt;}
._3c{width:124.039296pt;}
._48{width:128.697707pt;}
._4a{width:129.899656pt;}
._36{width:132.537686pt;}
._49{width:144.058559pt;}
._39{width:147.258280pt;}
._30{width:168.378352pt;}
._31{width:173.185800pt;}
._32{width:183.098352pt;}
._33{width:186.357101pt;}
._38{width:197.468703pt;}
._2f{width:201.657768pt;}
._3b{width:211.549285pt;}
._37{width:216.378944pt;}
._4d{width:218.298133pt;}
._3a{width:230.748701pt;}
._46{width:232.669067pt;}
._34{width:299.578133pt;}
._2d{width:313.949067pt;}
._35{width:328.888792pt;}
._43{width:354.170748pt;}
._44{width:355.318374pt;}
.fs16{font-size:21.190720pt;}
.fs18{font-size:23.331200pt;}
.fs15{font-size:29.966720pt;}
.fs14{font-size:30.715893pt;}
.fs17{font-size:32.963360pt;}
.fs1b{font-size:33.922613pt;}
.fs1e{font-size:34.842080pt;}
.fs10{font-size:34.902080pt;}
.fs21{font-size:34.978187pt;}
.fs22{font-size:35.378560pt;}
.fs3{font-size:37.193867pt;}
.fsc{font-size:42.057120pt;}
.fs1{font-size:42.507253pt;}
.fs13{font-size:43.451733pt;}
.fs8{font-size:44.007170pt;}
.fsa{font-size:44.606027pt;}
.fs11{font-size:44.950080pt;}
.fs19{font-size:47.971413pt;}
.fs1c{font-size:49.271680pt;}
.fsf{font-size:49.315520pt;}
.fs1f{font-size:49.464160pt;}
.fsd{font-size:50.030240pt;}
.fs7{font-size:51.339491pt;}
.fs6{font-size:51.341629pt;}
.fs4{font-size:53.134080pt;}
.fs2{font-size:58.181867pt;}
.fs5{font-size:58.675200pt;}
.fsb{font-size:59.474667pt;}
.fs12{font-size:59.933333pt;}
.fs0{font-size:63.761067pt;}
.fs1a{font-size:63.961600pt;}
.fs1d{font-size:65.695467pt;}
.fs20{font-size:65.952000pt;}
.fs9{font-size:66.009600pt;}
.fse{font-size:66.707200pt;}
.y0{bottom:0.000000pt;}
.y5e{bottom:4.125333pt;}
.y59{bottom:17.703545pt;}
.y58{bottom:30.904000pt;}
.y56{bottom:63.299363pt;}
.y55{bottom:66.046667pt;}
.y54{bottom:81.785333pt;}
.y156{bottom:102.692533pt;}
.y1b0{bottom:102.692640pt;}
.y18{bottom:102.692800pt;}
.y36{bottom:102.692933pt;}
.ybb{bottom:102.693067pt;}
.y52{bottom:102.693093pt;}
.ya4{bottom:102.693200pt;}
.y1b4{bottom:102.693293pt;}
.y5d{bottom:113.682667pt;}
.y57{bottom:135.878667pt;}
.y155{bottom:142.532667pt;}
.y70{bottom:142.532933pt;}
.y35{bottom:142.533067pt;}
.yba{bottom:142.533200pt;}
.y51{bottom:142.533227pt;}
.ya3{bottom:142.533333pt;}
.y17{bottom:155.973067pt;}
.y1af{bottom:157.412907pt;}
.y154{bottom:170.372800pt;}
.y6f{bottom:170.373067pt;}
.y34{bottom:170.373200pt;}
.yb9{bottom:170.373333pt;}
.y50{bottom:170.373360pt;}
.ya2{bottom:170.373467pt;}
.y16{bottom:176.453333pt;}
.y5c{bottom:187.943733pt;}
.y1ae{bottom:191.172800pt;}
.y17f{bottom:192.453467pt;}
.y6e{bottom:198.373067pt;}
.y33{bottom:198.373200pt;}
.yb8{bottom:198.373333pt;}
.y4f{bottom:198.373360pt;}
.ya1{bottom:198.373467pt;}
.y153{bottom:202.212933pt;}
.y5b{bottom:208.571867pt;}
.y1ad{bottom:219.012960pt;}
.y17e{bottom:221.413333pt;}
.y191{bottom:222.373333pt;}
.y6d{bottom:226.213200pt;}
.y32{bottom:226.213333pt;}
.y4e{bottom:226.213467pt;}
.ya0{bottom:226.213600pt;}
.y5a{bottom:229.200000pt;}
.y5f{bottom:229.566667pt;}
.y152{bottom:230.212933pt;}
.y1ac{bottom:241.253093pt;}
.y170{bottom:247.557467pt;}
.y6c{bottom:254.053333pt;}
.y31{bottom:254.053467pt;}
.y4d{bottom:254.053600pt;}
.y9f{bottom:254.053733pt;}
.yfe{bottom:256.773333pt;}
.y151{bottom:258.053067pt;}
.y16f{bottom:262.120000pt;}
.yfd{bottom:267.653733pt;}
.y171{bottom:269.416000pt;}
.y13b{bottom:274.533067pt;}
.y1ab{bottom:274.853107pt;}
.y6b{bottom:282.053333pt;}
.y30{bottom:282.053467pt;}
.y4c{bottom:282.053600pt;}
.y9e{bottom:284.613600pt;}
.y150{bottom:285.892667pt;}
.y17b{bottom:292.078667pt;}
.y1aa{bottom:296.932840pt;}
.y6a{bottom:309.892933pt;}
.y2f{bottom:309.893067pt;}
.y4b{bottom:309.893200pt;}
.y172{bottom:311.108133pt;}
.y9d{bottom:312.613600pt;}
.y190{bottom:312.933200pt;}
.y14f{bottom:313.892667pt;}
.y17a{bottom:314.652000pt;}
.y1a9{bottom:324.932840pt;}
.yd4{bottom:330.853333pt;}
.y177{bottom:334.930667pt;}
.y179{bottom:337.224000pt;}
.y69{bottom:337.733067pt;}
.y2e{bottom:337.733200pt;}
.y4a{bottom:337.733333pt;}
.y9c{bottom:340.453733pt;}
.y18f{bottom:340.773333pt;}
.y13a{bottom:341.733067pt;}
.y14e{bottom:345.732800pt;}
.y173{bottom:352.799867pt;}
.yfc{bottom:354.373467pt;}
.y1a8{bottom:358.532867pt;}
.y178{bottom:359.797333pt;}
.y68{bottom:365.733067pt;}
.y2d{bottom:365.733200pt;}
.yb7{bottom:365.733333pt;}
.y49{bottom:366.853600pt;}
.y18e{bottom:368.613467pt;}
.y139{bottom:369.573200pt;}
.y14d{bottom:373.572933pt;}
.y1a7{bottom:380.613133pt;}
.yfb{bottom:383.333333pt;}
.y9b{bottom:391.173467pt;}
.y2c{bottom:393.573333pt;}
.yb6{bottom:393.573467pt;}
.y174{bottom:394.491600pt;}
.y48{bottom:394.853600pt;}
.y18d{bottom:396.613467pt;}
.y138{bottom:397.573200pt;}
.yd3{bottom:401.413333pt;}
.y14c{bottom:401.572933pt;}
.y1a6{bottom:408.613133pt;}
.ye8{bottom:411.969480pt;}
.y9a{bottom:420.133333pt;}
.y2b{bottom:421.413467pt;}
.y15{bottom:422.373387pt;}
.y47{bottom:422.693200pt;}
.y18c{bottom:424.453600pt;}
.ye7{bottom:425.053333pt;}
.y17d{bottom:427.100800pt;}
.yb5{bottom:427.333333pt;}
.y14b{bottom:429.413067pt;}
.ye9{bottom:431.609333pt;}
.y175{bottom:436.183733pt;}
.yd2{bottom:438.853333pt;}
.y67{bottom:440.292933pt;}
.y1a5{bottom:442.213160pt;}
.y137{bottom:443.013333pt;}
.y17c{bottom:446.546667pt;}
.y114{bottom:449.413467pt;}
.y14{bottom:450.213520pt;}
.y46{bottom:450.533333pt;}
.y88{bottom:451.476150pt;}
.y18b{bottom:452.293200pt;}
.y2a{bottom:454.373333pt;}
.yb4{bottom:455.333333pt;}
.y14a{bottom:457.253200pt;}
.yf3{bottom:462.806667pt;}
.y87{bottom:464.460000pt;}
.y1a4{bottom:470.053307pt;}
.y92{bottom:470.964000pt;}
.y136{bottom:471.813333pt;}
.yea{bottom:472.867200pt;}
.yd1{bottom:476.453333pt;}
.y113{bottom:477.253600pt;}
.y176{bottom:477.875467pt;}
.y13{bottom:478.053653pt;}
.y45{bottom:478.533333pt;}
.y18a{bottom:480.293200pt;}
.y29{bottom:482.213467pt;}
.yb3{bottom:483.173467pt;}
.y149{bottom:485.253200pt;}
.y89{bottom:490.984000pt;}
.yf4{bottom:494.030667pt;}
.yee{bottom:494.190667pt;}
.y1a3{bottom:498.052800pt;}
.y128{bottom:498.296800pt;}
.y112{bottom:505.093200pt;}
.y44{bottom:506.373467pt;}
.y93{bottom:506.648400pt;}
.y189{bottom:508.133333pt;}
.y28{bottom:510.213467pt;}
.yb2{bottom:511.173467pt;}
.y127{bottom:512.694667pt;}
.y148{bottom:513.093333pt;}
.yd0{bottom:514.053333pt;}
.yeb{bottom:514.124533pt;}
.y1a2{bottom:520.133067pt;}
.y12{bottom:520.133387pt;}
.yf5{bottom:525.255200pt;}
.y8a{bottom:531.076667pt;}
.y111{bottom:533.093200pt;}
.y43{bottom:534.213600pt;}
.y188{bottom:535.973467pt;}
.y27{bottom:538.053067pt;}
.yb1{bottom:539.013600pt;}
.y94{bottom:542.359867pt;}
.y66{bottom:545.252800pt;}
.y11{bottom:547.973520pt;}
.y129{bottom:549.352000pt;}
.y16e{bottom:550.213333pt;}
.ycf{bottom:552.133333pt;}
.y1a1{bottom:553.733093pt;}
.yec{bottom:555.382400pt;}
.yf6{bottom:556.452533pt;}
.y110{bottom:560.933333pt;}
.y42{bottom:562.213600pt;}
.y8e{bottom:562.805333pt;}
.y187{bottom:563.973467pt;}
.y26{bottom:565.893200pt;}
.yb0{bottom:566.853733pt;}
.y8b{bottom:571.142267pt;}
.yfa{bottom:574.057333pt;}
.y10{bottom:575.813653pt;}
.yf2{bottom:577.054667pt;}
.y95{bottom:578.044800pt;}
.y16d{bottom:578.053467pt;}
.y1a0{bottom:581.733120pt;}
.y12d{bottom:584.684000pt;}
.yf9{bottom:585.696000pt;}
.yf1{bottom:587.890667pt;}
.y10f{bottom:588.773467pt;}
.y147{bottom:589.413333pt;}
.yce{bottom:589.733333pt;}
.y41{bottom:590.053733pt;}
.y186{bottom:591.813600pt;}
.y25{bottom:593.893200pt;}
.yaf{bottom:594.853733pt;}
.yed{bottom:596.640267pt;}
.yf8{bottom:597.336000pt;}
.yf0{bottom:598.700000pt;}
.y65{bottom:603.333067pt;}
.y19f{bottom:603.813387pt;}
.yf{bottom:603.813653pt;}
.y16c{bottom:606.053467pt;}
.y12a{bottom:608.238000pt;}
.yf7{bottom:608.973333pt;}
.yef{bottom:609.509333pt;}
.y8c{bottom:611.207867pt;}
.y96{bottom:613.756267pt;}
.y10e{bottom:616.773467pt;}
.y185{bottom:619.653733pt;}
.y24{bottom:621.733333pt;}
.yae{bottom:622.693333pt;}
.y146{bottom:627.013333pt;}
.ycd{bottom:627.173333pt;}
.y64{bottom:631.333067pt;}
.ye{bottom:631.653787pt;}
.y16b{bottom:633.893067pt;}
.y133{bottom:636.120000pt;}
.y19e{bottom:637.573307pt;}
.y91{bottom:640.308000pt;}
.y184{bottom:647.653733pt;}
.y97{bottom:649.414533pt;}
.y23{bottom:649.573467pt;}
.y132{bottom:650.429333pt;}
.y8d{bottom:651.274000pt;}
.y98{bottom:653.238667pt;}
.y90{bottom:653.318667pt;}
.y63{bottom:659.173200pt;}
.y19d{bottom:659.653573pt;}
.yd{bottom:659.653787pt;}
.y16a{bottom:661.733200pt;}
.y10d{bottom:662.373467pt;}
.y145{bottom:664.613333pt;}
.y131{bottom:664.856000pt;}
.y8f{bottom:666.248000pt;}
.y12b{bottom:667.124000pt;}
.y40{bottom:667.333467pt;}
.ycc{bottom:672.613467pt;}
.y99{bottom:677.293333pt;}
.y22{bottom:677.573467pt;}
.y130{bottom:679.313333pt;}
.y62{bottom:687.013333pt;}
.y19c{bottom:687.493173pt;}
.yc{bottom:687.493387pt;}
.y134{bottom:688.116000pt;}
.y169{bottom:689.733200pt;}
.y10c{bottom:691.333333pt;}
.y12f{bottom:693.740000pt;}
.ye6{bottom:696.453467pt;}
.y183{bottom:699.653733pt;}
.ycb{bottom:701.573333pt;}
.y144{bottom:702.213333pt;}
.yad{bottom:703.013333pt;}
.y21{bottom:705.413600pt;}
.y135{bottom:707.754533pt;}
.y12e{bottom:708.049333pt;}
.y61{bottom:715.013333pt;}
.y19b{bottom:715.333307pt;}
.yb{bottom:715.333520pt;}
.y100{bottom:719.226337pt;}
.ye5{bottom:725.413333pt;}
.y12c{bottom:726.010000pt;}
.y3f{bottom:733.093333pt;}
.yff{bottom:733.189333pt;}
.y20{bottom:733.253733pt;}
.y168{bottom:734.053467pt;}
.y86{bottom:737.733467pt;}
.y143{bottom:739.653333pt;}
.yac{bottom:740.453333pt;}
.ya{bottom:743.333520pt;}
.y19a{bottom:749.093200pt;}
.yca{bottom:751.013467pt;}
.yd6{bottom:754.050000pt;}
.y60{bottom:757.413333pt;}
.y126{bottom:759.333333pt;}
.y3e{bottom:760.933467pt;}
.y1f{bottom:761.253733pt;}
.y167{bottom:763.013333pt;}
.y101{bottom:765.426667pt;}
.y85{bottom:766.693333pt;}
.yd5{bottom:767.133333pt;}
.y10a{bottom:768.310667pt;}
.y9{bottom:771.173653pt;}
.yd7{bottom:773.688000pt;}
.y199{bottom:776.933360pt;}
.y142{bottom:777.253333pt;}
.yab{bottom:778.053333pt;}
.yc9{bottom:779.973333pt;}
.y53{bottom:781.317333pt;}
.y109{bottom:782.302667pt;}
.y125{bottom:788.133333pt;}
.y3d{bottom:788.773600pt;}
.y1e{bottom:789.093333pt;}
.y158{bottom:789.317467pt;}
.y182{bottom:790.053733pt;}
.y108{bottom:796.294667pt;}
.y72{bottom:798.035333pt;}
.y198{bottom:799.013627pt;}
.y8{bottom:799.013787pt;}
.ye0{bottom:799.294667pt;}
.y157{bottom:803.880000pt;}
.y102{bottom:804.232400pt;}
.ybd{bottom:806.277467pt;}
.y106{bottom:806.973333pt;}
.y107{bottom:810.285333pt;}
.y71{bottom:811.018667pt;}
.y159{bottom:811.176000pt;}
.y116{bottom:814.461200pt;}
.y141{bottom:815.333333pt;}
.yaa{bottom:815.653333pt;}
.y3c{bottom:816.773600pt;}
.y1d{bottom:816.933467pt;}
.y73{bottom:817.524000pt;}
.y181{bottom:818.053733pt;}
.ybc{bottom:820.840000pt;}
.yd8{bottom:822.945867pt;}
.ye1{bottom:826.237867pt;}
.y197{bottom:827.013627pt;}
.ybe{bottom:828.136000pt;}
.y115{bottom:828.656000pt;}
.y7{bottom:834.213787pt;}
.ydb{bottom:836.270667pt;}
.y164{bottom:837.293333pt;}
.y103{bottom:843.037600pt;}
.y7e{bottom:844.076000pt;}
.y3b{bottom:844.613733pt;}
.y1c{bottom:844.933467pt;}
.y180{bottom:845.893333pt;}
.yc8{bottom:846.122667pt;}
.y15a{bottom:852.481200pt;}
.y140{bottom:852.933333pt;}
.ye2{bottom:853.181067pt;}
.ya9{bottom:853.733333pt;}
.y163{bottom:856.917333pt;}
.y74{bottom:860.005733pt;}
.y196{bottom:860.613640pt;}
.yc7{bottom:862.561333pt;}
.y117{bottom:865.726667pt;}
.y6{bottom:869.733520pt;}
.ybf{bottom:869.827733pt;}
.yd9{bottom:872.230800pt;}
.y1b{bottom:872.773600pt;}
.y3a{bottom:873.733467pt;}
.y162{bottom:876.513333pt;}
.y15f{bottom:876.692000pt;}
.yc6{bottom:879.000000pt;}
.ye3{bottom:880.124267pt;}
.y104{bottom:881.842800pt;}
.y195{bottom:888.613680pt;}
.y13f{bottom:890.533333pt;}
.ya8{bottom:891.333333pt;}
.yc4{bottom:893.652000pt;}
.y15b{bottom:893.815600pt;}
.yc5{bottom:895.438667pt;}
.y161{bottom:896.108000pt;}
.y7f{bottom:897.178667pt;}
.y5{bottom:897.733520pt;}
.y10b{bottom:899.205333pt;}
.y11c{bottom:900.217333pt;}
.y1a{bottom:900.613733pt;}
.y39{bottom:901.733467pt;}
.y75{bottom:902.487467pt;}
.ye4{bottom:907.013867pt;}
.y118{bottom:908.487600pt;}
.y82{bottom:909.365333pt;}
.ydf{bottom:910.572000pt;}
.yc0{bottom:911.519467pt;}
.y160{bottom:915.702667pt;}
.y194{bottom:916.453307pt;}
.y105{bottom:920.648533pt;}
.yda{bottom:921.515200pt;}
.yde{bottom:925.048000pt;}
.y4{bottom:925.573653pt;}
.y13e{bottom:927.973333pt;}
.y19{bottom:928.613733pt;}
.ya7{bottom:928.773333pt;}
.y38{bottom:929.573600pt;}
.y7d{bottom:934.402667pt;}
.y15c{bottom:935.120267pt;}
.y193{bottom:938.533573pt;}
.ydd{bottom:939.522667pt;}
.y76{bottom:944.969733pt;}
.y7c{bottom:947.306667pt;}
.y80{bottom:950.280800pt;}
.y119{bottom:951.248533pt;}
.y122{bottom:952.802667pt;}
.yc1{bottom:953.211600pt;}
.y3{bottom:953.413733pt;}
.ydc{bottom:953.997333pt;}
.y37{bottom:957.413733pt;}
.y7b{bottom:960.317333pt;}
.y1b3{bottom:963.173187pt;}
.y121{bottom:966.940000pt;}
.y192{bottom:972.293467pt;}
.y7a{bottom:973.326667pt;}
.y13d{bottom:973.413467pt;}
.ya6{bottom:974.213467pt;}
.y15d{bottom:976.454667pt;}
.y166{bottom:978.181600pt;}
.y120{bottom:981.222667pt;}
.y1b2{bottom:985.413320pt;}
.y2{bottom:985.413733pt;}
.y79{bottom:986.337333pt;}
.y77{bottom:987.451467pt;}
.y11a{bottom:994.038667pt;}
.yc2{bottom:994.903333pt;}
.y11f{bottom:995.476000pt;}
.y165{bottom:999.206667pt;}
.y78{bottom:999.266667pt;}
.y13c{bottom:1002.373333pt;}
.ya5{bottom:1003.173333pt;}
.y81{bottom:1003.383467pt;}
.y124{bottom:1005.184400pt;}
.y11e{bottom:1009.758667pt;}
.y84{bottom:1012.144187pt;}
.y1{bottom:1013.253333pt;}
.y15e{bottom:1017.759333pt;}
.y1b1{bottom:1019.013333pt;}
.y83{bottom:1022.552000pt;}
.y123{bottom:1023.602667pt;}
.y11d{bottom:1024.012000pt;}
.yc3{bottom:1036.595467pt;}
.y11b{bottom:1036.799067pt;}
.h6{height:27.895400pt;}
.h1d{height:29.410697pt;}
.h27{height:31.880440pt;}
.h1e{height:32.351735pt;}
.h11{height:33.445449pt;}
.hf{height:39.019638pt;}
.h10{height:39.021087pt;}
.h1c{height:42.645500pt;}
.h4{height:43.636400pt;}
.h13{height:43.778376pt;}
.h1a{height:44.116045pt;}
.he{height:44.593152pt;}
.h7{height:44.632747pt;}
.h3{height:45.525402pt;}
.h1{height:45.652924pt;}
.h12{height:46.206720pt;}
.h21{height:47.081319pt;}
.h5{height:47.820800pt;}
.h23{height:48.357459pt;}
.h19{height:48.400486pt;}
.h25{height:48.546368pt;}
.h17{height:49.101945pt;}
.hc{height:52.964680pt;}
.h16{height:52.999213pt;}
.h15{height:53.001293pt;}
.hb{height:53.604253pt;}
.h8{height:54.920013pt;}
.ha{height:54.922093pt;}
.h2{height:55.559587pt;}
.h9{height:55.561667pt;}
.h14{height:58.371133pt;}
.h1b{height:58.821289pt;}
.h22{height:62.774813pt;}
.h24{height:64.476508pt;}
.h26{height:64.728281pt;}
.h18{height:65.469469pt;}
.h1f{height:91.339573pt;}
.h20{height:118.400000pt;}
.hd{height:263.182667pt;}
.h0{height:1122.666667pt;}
.w1{width:340.133333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xb{left:22.002667pt;}
.x6{left:35.802667pt;}
.x1{left:96.000000pt;}
.x42{left:101.600000pt;}
.x43{left:108.000000pt;}
.x7{left:109.066667pt;}
.x4{left:116.000000pt;}
.x2{left:144.000000pt;}
.xe{left:157.689373pt;}
.x1a{left:168.320000pt;}
.x39{left:182.560000pt;}
.x8{left:205.941646pt;}
.xa{left:207.010667pt;}
.x3a{left:217.760000pt;}
.x3c{left:226.240000pt;}
.x1d{left:227.840000pt;}
.x3b{left:229.920000pt;}
.x1c{left:231.520000pt;}
.x5{left:236.800000pt;}
.x12{left:247.376000pt;}
.x22{left:249.197333pt;}
.x27{left:253.066667pt;}
.x2c{left:254.148041pt;}
.x1f{left:255.450667pt;}
.x9{left:256.516000pt;}
.x34{left:257.594171pt;}
.x21{left:259.292335pt;}
.x33{left:266.839480pt;}
.x20{left:268.643375pt;}
.x31{left:272.728000pt;}
.x25{left:274.150667pt;}
.x15{left:275.281333pt;}
.xf{left:276.901333pt;}
.xd{left:277.790440pt;}
.x13{left:287.893333pt;}
.xc{left:288.792000pt;}
.x18{left:290.601333pt;}
.x29{left:297.599893pt;}
.x28{left:303.153333pt;}
.x23{left:304.528000pt;}
.x14{left:306.877200pt;}
.x1b{left:307.840000pt;}
.x2f{left:312.013333pt;}
.x16{left:313.436000pt;}
.x11{left:314.762667pt;}
.x3f{left:321.413333pt;}
.x3d{left:324.390667pt;}
.x2a{left:333.440000pt;}
.x38{left:336.320000pt;}
.x17{left:353.261333pt;}
.x32{left:376.367067pt;}
.x19{left:377.760000pt;}
.x1e{left:379.424133pt;}
.x37{left:391.200173pt;}
.x26{left:393.724267pt;}
.x3{left:395.199787pt;}
.x2b{left:403.916000pt;}
.x2d{left:421.248000pt;}
.x24{left:427.520000pt;}
.x2e{left:487.808000pt;}
.x36{left:497.083693pt;}
.x35{left:499.380000pt;}
.x3e{left:504.231907pt;}
.x30{left:506.197333pt;}
.x40{left:514.357333pt;}
.x41{left:516.680253pt;}
.x10{left:551.094667pt;}
}




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