
    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_bdc34daa3a1bb7d6bea0ec45.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919000;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_bfbdc24d90f58776f6b7547e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958000;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_0d8feaa20146678a402e817b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.690000;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_f73d75d248340213ea44ee1d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.469000;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_141187e27bf4dfee90a724da.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6a3803c7db97c8c5da867e4c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.683000;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_fe0d928174bc4e9742c8ad4e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.475000;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_1cb5336046f5925054a6f4df.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.919000;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_666f20202e8c6b7e7ffa4246.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.677000;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_7466727aee8e8a9c1267c3f0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.589000;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_e0303ed4c8b7f29530626d2a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.690000;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_c40fbc6fbe24fb783b8976b0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.890000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-1.284013px;}
.ls14{letter-spacing:-1.260013px;}
.ls24{letter-spacing:-0.853200px;}
.ls7{letter-spacing:-0.804008px;}
.ls6{letter-spacing:-0.792008px;}
.ls15{letter-spacing:-0.768008px;}
.ls16{letter-spacing:-0.756008px;}
.ls8{letter-spacing:-0.732007px;}
.lsa{letter-spacing:-0.720007px;}
.ls13{letter-spacing:-0.643936px;}
.ls5{letter-spacing:-0.014400px;}
.ls4{letter-spacing:-0.010800px;}
.ls3{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.012000px;}
.lsc{letter-spacing:0.066001px;}
.ls10{letter-spacing:0.072001px;}
.ls23{letter-spacing:0.124200px;}
.lsd{letter-spacing:0.126001px;}
.ls21{letter-spacing:0.138001px;}
.ls2{letter-spacing:0.186002px;}
.ls22{letter-spacing:0.210600px;}
.lsb{letter-spacing:0.216002px;}
.ls1{letter-spacing:0.276003px;}
.ls1b{letter-spacing:1.092011px;}
.ls1f{letter-spacing:1.163884px;}
.ls19{letter-spacing:1.230012px;}
.ls20{letter-spacing:1.236012px;}
.ls1a{letter-spacing:1.278013px;}
.ls18{letter-spacing:1.290013px;}
.ls1d{letter-spacing:1.296013px;}
.ls17{letter-spacing:1.302013px;}
.ls1c{letter-spacing:1.320013px;}
.ls1e{letter-spacing:1.338013px;}
.ls12{letter-spacing:10.062101px;}
.ls0{letter-spacing:19.236192px;}
.lse{letter-spacing:25.146251px;}
.ls11{letter-spacing:26.262263px;}
.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;}
}
.ws18{word-spacing:-0.071999px;}
.ws6{word-spacing:-0.060001px;}
.wsff{word-spacing:-0.054000px;}
.wsfc{word-spacing:-0.047999px;}
.ws4f{word-spacing:-0.041999px;}
.ws20{word-spacing:-0.039996px;}
.ws53{word-spacing:0.000000px;}
.ws1f{word-spacing:0.744007px;}
.ws24{word-spacing:8.106081px;}
.wsda{word-spacing:9.060091px;}
.wsce{word-spacing:9.786098px;}
.wscf{word-spacing:9.834098px;}
.wsd3{word-spacing:9.912099px;}
.wsc7{word-spacing:9.966100px;}
.wsc0{word-spacing:10.014100px;}
.wsb8{word-spacing:10.080101px;}
.wsbf{word-spacing:10.098101px;}
.wsc9{word-spacing:10.110101px;}
.wsc8{word-spacing:10.332103px;}
.wsd4{word-spacing:10.344103px;}
.wsd5{word-spacing:10.350104px;}
.ws28{word-spacing:10.548105px;}
.ws27{word-spacing:10.728107px;}
.ws1c{word-spacing:11.292113px;}
.ws17a{word-spacing:11.356200px;}
.ws3e{word-spacing:11.582255px;}
.ws158{word-spacing:11.647800px;}
.ws47{word-spacing:11.817452px;}
.ws10c{word-spacing:11.970120px;}
.ws18a{word-spacing:11.988000px;}
.ws18b{word-spacing:12.106800px;}
.ws3d{word-spacing:12.278247px;}
.ws3a{word-spacing:12.528125px;}
.ws39{word-spacing:12.558126px;}
.ws42{word-spacing:12.614242px;}
.ws2e{word-spacing:12.708127px;}
.ws189{word-spacing:12.808800px;}
.ws45{word-spacing:12.854239px;}
.ws17b{word-spacing:12.987000px;}
.ws17d{word-spacing:13.089600px;}
.ws17c{word-spacing:13.127400px;}
.wsb9{word-spacing:13.176132px;}
.ws157{word-spacing:13.212132px;}
.ws162{word-spacing:13.300200px;}
.ws163{word-spacing:13.343400px;}
.ws15c{word-spacing:13.348800px;}
.ws21{word-spacing:13.362134px;}
.ws1e{word-spacing:13.368134px;}
.ws15d{word-spacing:13.386600px;}
.ws156{word-spacing:13.482135px;}
.ws9e{word-spacing:13.722137px;}
.ws51{word-spacing:13.780003px;}
.ws4c{word-spacing:13.809403px;}
.ws50{word-spacing:13.822003px;}
.ws4d{word-spacing:13.847202px;}
.ws52{word-spacing:13.948001px;}
.ws4e{word-spacing:13.956401px;}
.wsfb{word-spacing:13.977425px;}
.wsfd{word-spacing:14.083024px;}
.ws22{word-spacing:14.118141px;}
.wseb{word-spacing:14.172142px;}
.ws143{word-spacing:14.196142px;}
.ws1a6{word-spacing:14.202000px;}
.ws142{word-spacing:14.352144px;}
.wsa1{word-spacing:14.436144px;}
.ws141{word-spacing:14.598146px;}
.ws41{word-spacing:14.639817px;}
.ws197{word-spacing:14.747400px;}
.ws29{word-spacing:14.838148px;}
.ws5f{word-spacing:14.874149px;}
.ws99{word-spacing:15.048150px;}
.ws9c{word-spacing:15.114151px;}
.ws23{word-spacing:15.126151px;}
.ws15{word-spacing:15.156152px;}
.ws155{word-spacing:15.216152px;}
.ws137{word-spacing:15.252153px;}
.ws60{word-spacing:15.282153px;}
.ws49{word-spacing:15.335808px;}
.ws185{word-spacing:15.384600px;}
.ws36{word-spacing:15.528155px;}
.ws3f{word-spacing:15.575805px;}
.ws16f{word-spacing:15.660000px;}
.ws43{word-spacing:15.662204px;}
.ws48{word-spacing:15.729403px;}
.ws192{word-spacing:15.730200px;}
.ws72{word-spacing:15.744157px;}
.wsf4{word-spacing:15.750158px;}
.ws40{word-spacing:15.777403px;}
.ws94{word-spacing:15.798158px;}
.ws169{word-spacing:15.811200px;}
.ws3c{word-spacing:15.830202px;}
.ws161{word-spacing:15.854400px;}
.ws4a{word-spacing:15.873402px;}
.ws183{word-spacing:15.892200px;}
.ws26{word-spacing:15.894159px;}
.wsf6{word-spacing:15.897600px;}
.ws159{word-spacing:15.935400px;}
.ws46{word-spacing:15.935801px;}
.ws198{word-spacing:15.940800px;}
.ws1a0{word-spacing:15.946200px;}
.ws173{word-spacing:15.957000px;}
.ws199{word-spacing:15.978600px;}
.ws191{word-spacing:15.984000px;}
.ws194{word-spacing:16.011000px;}
.wsf7{word-spacing:16.016400px;}
.ws1a8{word-spacing:16.048800px;}
.ws115{word-spacing:16.062161px;}
.ws178{word-spacing:16.065000px;}
.ws184{word-spacing:16.075800px;}
.ws2b{word-spacing:16.086161px;}
.ws44{word-spacing:16.089399px;}
.ws19c{word-spacing:16.092000px;}
.ws15e{word-spacing:16.108200px;}
.ws195{word-spacing:16.151400px;}
.ws165{word-spacing:16.205400px;}
.ws1a9{word-spacing:16.324200px;}
.wsa{word-spacing:16.344163px;}
.wsdd{word-spacing:16.350164px;}
.ws11{word-spacing:16.362164px;}
.ws10{word-spacing:16.530165px;}
.wsba{word-spacing:16.644166px;}
.ws131{word-spacing:16.668167px;}
.ws2a{word-spacing:16.818168px;}
.ws25{word-spacing:16.848168px;}
.ws16e{word-spacing:16.880400px;}
.ws16a{word-spacing:16.999200px;}
.ws196{word-spacing:17.020800px;}
.wsb5{word-spacing:17.076171px;}
.ws16b{word-spacing:17.128800px;}
.ws8e{word-spacing:17.196172px;}
.wse2{word-spacing:17.442000px;}
.ws193{word-spacing:17.469000px;}
.wsdf{word-spacing:17.479800px;}
.ws107{word-spacing:17.508175px;}
.ws5e{word-spacing:17.634176px;}
.ws138{word-spacing:17.706600px;}
.ws55{word-spacing:17.784178px;}
.wscb{word-spacing:17.838178px;}
.ws2d{word-spacing:17.874179px;}
.ws1a7{word-spacing:17.895600px;}
.wsaa{word-spacing:17.928179px;}
.wse1{word-spacing:17.933400px;}
.ws7d{word-spacing:17.940179px;}
.wsa2{word-spacing:17.946179px;}
.ws104{word-spacing:17.964180px;}
.ws71{word-spacing:17.970180px;}
.wsbb{word-spacing:17.994180px;}
.ws33{word-spacing:18.000180px;}
.wsde{word-spacing:18.014400px;}
.wsd6{word-spacing:18.024180px;}
.ws2c{word-spacing:18.030180px;}
.ws125{word-spacing:18.042180px;}
.wsfe{word-spacing:18.046800px;}
.wse0{word-spacing:18.057600px;}
.wsa0{word-spacing:18.060181px;}
.ws7{word-spacing:18.090181px;}
.ws100{word-spacing:18.100800px;}
.ws91{word-spacing:18.102181px;}
.ws11e{word-spacing:18.120181px;}
.ws12{word-spacing:18.126181px;}
.ws5{word-spacing:18.156182px;}
.ws144{word-spacing:18.174182px;}
.ws16d{word-spacing:18.187200px;}
.ws19d{word-spacing:18.273600px;}
.ws70{word-spacing:18.366184px;}
.ws123{word-spacing:18.372184px;}
.ws145{word-spacing:18.396184px;}
.ws82{word-spacing:18.438184px;}
.ws8{word-spacing:18.468185px;}
.ws77{word-spacing:18.522185px;}
.wsd9{word-spacing:18.540185px;}
.ws111{word-spacing:18.552186px;}
.ws1a1{word-spacing:18.597600px;}
.ws109{word-spacing:18.618186px;}
.wsca{word-spacing:18.654187px;}
.ws80{word-spacing:18.684187px;}
.wsd0{word-spacing:18.714187px;}
.wsb{word-spacing:18.780188px;}
.ws160{word-spacing:18.786600px;}
.ws171{word-spacing:18.792000px;}
.ws172{word-spacing:18.867600px;}
.wsc{word-spacing:18.882189px;}
.ws150{word-spacing:18.924189px;}
.wsf3{word-spacing:18.954190px;}
.ws119{word-spacing:18.990190px;}
.ws4{word-spacing:19.176192px;}
.ws54{word-spacing:19.194192px;}
.wsac{word-spacing:19.206192px;}
.ws10d{word-spacing:19.230192px;}
.ws63{word-spacing:19.260193px;}
.ws65{word-spacing:19.302193px;}
.ws10e{word-spacing:19.452195px;}
.ws64{word-spacing:19.536195px;}
.ws13a{word-spacing:19.620196px;}
.ws14b{word-spacing:19.668197px;}
.ws69{word-spacing:19.704197px;}
.ws181{word-spacing:19.764000px;}
.ws1d{word-spacing:19.824198px;}
.ws9b{word-spacing:19.848198px;}
.ws17{word-spacing:19.854199px;}
.ws118{word-spacing:19.878199px;}
.ws14c{word-spacing:19.902199px;}
.ws176{word-spacing:19.974600px;}
.wse9{word-spacing:19.980200px;}
.ws105{word-spacing:20.010200px;}
.ws15a{word-spacing:20.034200px;}
.ws66{word-spacing:20.040200px;}
.ws8a{word-spacing:20.046200px;}
.wsbe{word-spacing:20.130201px;}
.ws16{word-spacing:20.166202px;}
.ws4b{word-spacing:20.202202px;}
.ws177{word-spacing:20.228400px;}
.ws5d{word-spacing:20.250203px;}
.ws18c{word-spacing:20.293200px;}
.ws15f{word-spacing:20.358204px;}
.ws164{word-spacing:20.364204px;}
.wsc5{word-spacing:20.412204px;}
.ws7c{word-spacing:20.448204px;}
.ws76{word-spacing:20.514205px;}
.ws15b{word-spacing:20.544205px;}
.ws136{word-spacing:20.550205px;}
.wsc1{word-spacing:20.724207px;}
.ws19b{word-spacing:20.746800px;}
.ws92{word-spacing:20.754208px;}
.ws93{word-spacing:20.790208px;}
.ws187{word-spacing:20.827800px;}
.ws186{word-spacing:20.876400px;}
.ws188{word-spacing:20.908800px;}
.ws116{word-spacing:20.934209px;}
.ws14{word-spacing:20.982210px;}
.ws8c{word-spacing:21.000210px;}
.ws16c{word-spacing:21.038400px;}
.ws12b{word-spacing:21.072211px;}
.ws110{word-spacing:21.090211px;}
.ws13{word-spacing:21.240212px;}
.ws146{word-spacing:21.342213px;}
.ws5a{word-spacing:21.402214px;}
.ws85{word-spacing:21.432214px;}
.wsd{word-spacing:21.516215px;}
.ws9{word-spacing:21.528215px;}
.wsf{word-spacing:21.546215px;}
.ws34{word-spacing:21.552216px;}
.wsaf{word-spacing:21.582216px;}
.ws73{word-spacing:21.618216px;}
.wse{word-spacing:21.642216px;}
.ws31{word-spacing:21.648216px;}
.ws134{word-spacing:21.678217px;}
.ws151{word-spacing:21.738217px;}
.ws8d{word-spacing:21.744217px;}
.wsef{word-spacing:21.786218px;}
.ws74{word-spacing:21.810218px;}
.ws19a{word-spacing:21.907800px;}
.ws152{word-spacing:21.912219px;}
.wsf5{word-spacing:22.020220px;}
.wsbd{word-spacing:22.266223px;}
.ws5b{word-spacing:22.458225px;}
.ws174{word-spacing:22.485600px;}
.ws175{word-spacing:22.539600px;}
.ws14e{word-spacing:22.722227px;}
.ws7f{word-spacing:22.770228px;}
.ws166{word-spacing:22.782600px;}
.ws5c{word-spacing:22.830228px;}
.ws56{word-spacing:23.010230px;}
.ws149{word-spacing:23.130231px;}
.ws101{word-spacing:23.136231px;}
.ws102{word-spacing:23.280233px;}
.ws108{word-spacing:23.346233px;}
.ws6a{word-spacing:23.406234px;}
.ws9f{word-spacing:23.682237px;}
.ws7e{word-spacing:23.694237px;}
.ws14a{word-spacing:23.784238px;}
.ws124{word-spacing:23.952240px;}
.ws3{word-spacing:24.004600px;}
.ws6d{word-spacing:24.036240px;}
.ws9d{word-spacing:24.112599px;}
.ws98{word-spacing:24.120241px;}
.wsd7{word-spacing:24.150241px;}
.ws2{word-spacing:24.155799px;}
.ws62{word-spacing:24.402244px;}
.ws8b{word-spacing:24.468245px;}
.ws139{word-spacing:24.768248px;}
.ws121{word-spacing:24.834248px;}
.ws1a4{word-spacing:24.921000px;}
.ws112{word-spacing:24.978250px;}
.wsa8{word-spacing:24.996250px;}
.ws1a3{word-spacing:25.034400px;}
.ws88{word-spacing:25.044250px;}
.ws106{word-spacing:25.086251px;}
.ws8f{word-spacing:25.116251px;}
.ws1a5{word-spacing:25.331400px;}
.ws1b{word-spacing:25.554256px;}
.wse6{word-spacing:25.764258px;}
.ws6b{word-spacing:25.794258px;}
.wsc2{word-spacing:25.800258px;}
.wsd8{word-spacing:25.854259px;}
.ws13f{word-spacing:25.980260px;}
.ws182{word-spacing:26.022600px;}
.ws153{word-spacing:26.136261px;}
.ws19f{word-spacing:26.146800px;}
.wsae{word-spacing:26.160262px;}
.ws19e{word-spacing:26.325000px;}
.ws17e{word-spacing:26.352000px;}
.ws1a{word-spacing:26.406264px;}
.wsad{word-spacing:26.436264px;}
.ws126{word-spacing:26.526265px;}
.ws170{word-spacing:26.562600px;}
.ws86{word-spacing:26.682267px;}
.wsb1{word-spacing:26.754268px;}
.wsd2{word-spacing:26.874269px;}
.wsb2{word-spacing:26.946269px;}
.ws179{word-spacing:27.135000px;}
.ws10f{word-spacing:27.156272px;}
.ws114{word-spacing:27.186272px;}
.ws12a{word-spacing:27.204272px;}
.wsa9{word-spacing:27.222272px;}
.wsa5{word-spacing:27.282273px;}
.ws90{word-spacing:27.312273px;}
.ws68{word-spacing:27.462275px;}
.ws117{word-spacing:27.498275px;}
.ws180{word-spacing:27.545400px;}
.ws7b{word-spacing:27.552276px;}
.ws95{word-spacing:27.558276px;}
.ws12d{word-spacing:27.594276px;}
.ws17f{word-spacing:27.756000px;}
.wsbc{word-spacing:27.876279px;}
.ws11c{word-spacing:28.080281px;}
.ws35{word-spacing:28.374284px;}
.ws87{word-spacing:28.452285px;}
.ws18d{word-spacing:28.479600px;}
.ws96{word-spacing:28.548285px;}
.wsb7{word-spacing:28.638286px;}
.ws18e{word-spacing:28.652400px;}
.wsb6{word-spacing:28.710287px;}
.ws11d{word-spacing:29.010290px;}
.ws18f{word-spacing:29.251800px;}
.ws12e{word-spacing:29.304293px;}
.ws190{word-spacing:29.413800px;}
.ws81{word-spacing:29.604296px;}
.ws11b{word-spacing:29.712297px;}
.ws61{word-spacing:29.874299px;}
.ws57{word-spacing:29.910299px;}
.ws129{word-spacing:29.952300px;}
.ws11f{word-spacing:30.054301px;}
.ws120{word-spacing:30.186302px;}
.ws6f{word-spacing:30.210302px;}
.ws147{word-spacing:30.216302px;}
.ws132{word-spacing:30.558306px;}
.ws6e{word-spacing:30.588306px;}
.ws128{word-spacing:30.750308px;}
.ws14d{word-spacing:30.792308px;}
.ws133{word-spacing:30.834308px;}
.ws84{word-spacing:30.840308px;}
.wsd1{word-spacing:30.924309px;}
.wsa4{word-spacing:31.104311px;}
.wsa3{word-spacing:31.332313px;}
.ws127{word-spacing:31.782318px;}
.wse8{word-spacing:31.920319px;}
.ws58{word-spacing:31.950319px;}
.ws67{word-spacing:31.974320px;}
.wsf1{word-spacing:31.986320px;}
.wsc3{word-spacing:32.040320px;}
.wse7{word-spacing:32.094321px;}
.ws154{word-spacing:32.316323px;}
.wsf0{word-spacing:32.352324px;}
.ws168{word-spacing:32.432400px;}
.ws167{word-spacing:32.459400px;}
.ws135{word-spacing:32.460325px;}
.wsc4{word-spacing:33.042330px;}
.ws140{word-spacing:33.114331px;}
.ws122{word-spacing:33.678337px;}
.ws89{word-spacing:33.900339px;}
.ws1a2{word-spacing:33.933600px;}
.wscd{word-spacing:33.960340px;}
.wscc{word-spacing:34.080341px;}
.wsb3{word-spacing:34.134341px;}
.wsb4{word-spacing:34.266343px;}
.ws30{word-spacing:34.296343px;}
.ws2f{word-spacing:34.308343px;}
.ws59{word-spacing:34.608346px;}
.ws103{word-spacing:34.668347px;}
.wsdc{word-spacing:35.280353px;}
.wsec{word-spacing:35.388354px;}
.wsdb{word-spacing:35.694357px;}
.ws0{word-spacing:35.823600px;}
.ws1{word-spacing:36.201600px;}
.wse5{word-spacing:36.678367px;}
.ws83{word-spacing:36.738367px;}
.wse4{word-spacing:36.798368px;}
.ws19{word-spacing:36.894369px;}
.ws79{word-spacing:36.960370px;}
.wsc6{word-spacing:37.200372px;}
.ws32{word-spacing:37.326373px;}
.ws3b{word-spacing:37.392374px;}
.ws97{word-spacing:37.698377px;}
.ws11a{word-spacing:37.758378px;}
.ws7a{word-spacing:38.244382px;}
.ws12f{word-spacing:38.460385px;}
.ws130{word-spacing:38.490385px;}
.ws113{word-spacing:38.754388px;}
.ws6c{word-spacing:40.008400px;}
.wsee{word-spacing:40.572406px;}
.ws14f{word-spacing:40.704407px;}
.ws38{word-spacing:41.100411px;}
.ws9a{word-spacing:41.130411px;}
.wsea{word-spacing:41.718417px;}
.wsab{word-spacing:42.150422px;}
.ws13b{word-spacing:42.156422px;}
.ws12c{word-spacing:42.162422px;}
.ws10a{word-spacing:42.360424px;}
.wsf2{word-spacing:42.432424px;}
.ws148{word-spacing:43.242432px;}
.ws13d{word-spacing:43.848438px;}
.ws13e{word-spacing:44.022440px;}
.ws75{word-spacing:47.694477px;}
.ws78{word-spacing:49.758498px;}
.wsa6{word-spacing:50.130501px;}
.ws10b{word-spacing:50.160502px;}
.wsed{word-spacing:53.184532px;}
.wsa7{word-spacing:54.300543px;}
.ws37{word-spacing:62.160622px;}
.wsb0{word-spacing:63.924639px;}
.ws13c{word-spacing:71.556716px;}
.wsfa{word-spacing:371.142000px;}
.wsf8{word-spacing:371.196000px;}
.wsf9{word-spacing:398.142000px;}
.wse3{word-spacing:1510.725107px;}
._23{margin-left:-7.002255px;}
._6{margin-left:-4.932066px;}
._4{margin-left:-3.570036px;}
._2{margin-left:-1.674000px;}
._1{width:1.134000px;}
._24{width:3.258021px;}
._22{width:7.391923px;}
._9{width:9.414094px;}
._11{width:10.590877px;}
._d{width:12.005953px;}
._12{width:13.160256px;}
._7{width:14.712147px;}
._b{width:16.554182px;}
._a{width:17.802189px;}
._5{width:19.380177px;}
._3{width:20.472216px;}
._16{width:21.714228px;}
._8{width:22.758228px;}
._13{width:24.096241px;}
._15{width:25.524255px;}
._c{width:26.688183px;}
._1b{width:28.032280px;}
._f{width:29.820298px;}
._18{width:31.614316px;}
._14{width:33.066331px;}
._21{width:34.224342px;}
._e{width:35.394354px;}
._20{width:36.402364px;}
._0{width:38.026800px;}
._1a{width:39.384394px;}
._17{width:41.112411px;}
._1d{width:43.278444px;}
._19{width:50.976510px;}
._1c{width:55.554556px;}
._10{width:63.552636px;}
._1e{width:65.052651px;}
._2b{width:97.385400px;}
._25{width:372.369688px;}
._28{width:408.277800px;}
._2a{width:453.178800px;}
._29{width:458.152200px;}
._26{width:477.883800px;}
._27{width:480.054600px;}
._1f{width:2151.567515px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:31.995000px;}
.fs4{font-size:39.996000px;}
.fs7{font-size:41.999400px;}
.fs2{font-size:47.994600px;}
.fs5{font-size:47.999400px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:60.000600px;}
.fs1{font-size:71.999400px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y93{bottom:97.113991px;}
.ye0{bottom:97.114410px;}
.yc6{bottom:97.114531px;}
.y34{bottom:97.114740px;}
.yd3{bottom:97.115071px;}
.y172{bottom:97.115550px;}
.y52{bottom:97.116665px;}
.y1ac{bottom:97.117500px;}
.y14d{bottom:97.197690px;}
.yed{bottom:97.198710px;}
.yf5{bottom:97.199250px;}
.y129{bottom:97.200121px;}
.yee{bottom:103.833000px;}
.y51{bottom:112.084078px;}
.y171{bottom:113.612550px;}
.y1ab{bottom:113.614500px;}
.y92{bottom:115.057170px;}
.ydf{bottom:115.057589px;}
.yc5{bottom:115.057710px;}
.y33{bottom:115.057920px;}
.yd2{bottom:115.058250px;}
.y14c{bottom:115.140869px;}
.yec{bottom:115.141890px;}
.y126{bottom:115.142070px;}
.yf4{bottom:115.142430px;}
.y128{bottom:115.143300px;}
.y127{bottom:121.861350px;}
.y50{bottom:127.135490px;}
.y1aa{bottom:130.111500px;}
.y91{bottom:133.085850px;}
.yde{bottom:133.086270px;}
.yc4{bottom:133.086390px;}
.y32{bottom:133.086600px;}
.y14b{bottom:133.169550px;}
.yeb{bottom:133.170570px;}
.y125{bottom:133.170750px;}
.yf3{bottom:133.171110px;}
.y170{bottom:134.617350px;}
.yd1{bottom:140.570100px;}
.y4f{bottom:142.101703px;}
.y1a9{bottom:146.608500px;}
.y30{bottom:151.114410px;}
.y90{bottom:151.114531px;}
.ydd{bottom:151.114950px;}
.yc3{bottom:151.115071px;}
.y14a{bottom:151.198230px;}
.yea{bottom:151.199250px;}
.y124{bottom:151.199431px;}
.yf2{bottom:151.199790px;}
.y4e{bottom:157.067916px;}
.y31{bottom:157.747950px;}
.y1a8{bottom:163.041300px;}
.y2f{bottom:169.057589px;}
.y8f{bottom:169.057710px;}
.ydb{bottom:169.057920px;}
.yc2{bottom:169.058250px;}
.y149{bottom:169.141409px;}
.ye9{bottom:169.142430px;}
.y123{bottom:169.142610px;}
.yf1{bottom:169.142970px;}
.y16f{bottom:172.970700px;}
.ydc{bottom:175.776300px;}
.y1a7{bottom:179.538300px;}
.y4d{bottom:186.321150px;}
.y2e{bottom:187.086270px;}
.y8e{bottom:187.086390px;}
.yda{bottom:187.086600px;}
.y148{bottom:187.170090px;}
.ye8{bottom:187.171110px;}
.y122{bottom:187.171290px;}
.yf0{bottom:187.171650px;}
.y16e{bottom:189.467700px;}
.y4c{bottom:191.678700px;}
.yd0{bottom:193.633260px;}
.yef{bottom:193.804800px;}
.yc1{bottom:194.569775px;}
.y1a6{bottom:196.035300px;}
.y4b{bottom:201.372787px;}
.y2b{bottom:205.114590px;}
.y2d{bottom:205.114950px;}
.y8d{bottom:205.115071px;}
.y147{bottom:205.198770px;}
.ye7{bottom:205.199790px;}
.y121{bottom:205.199971px;}
.y16d{bottom:210.472350px;}
.ycf{bottom:211.661941px;}
.y2c{bottom:211.747950px;}
.y1a5{bottom:212.533650px;}
.yd9{bottom:212.598450px;}
.y4a{bottom:216.340200px;}
.y49{bottom:221.697600px;}
.y2a{bottom:223.057770px;}
.y8c{bottom:223.058250px;}
.y146{bottom:223.141949px;}
.ye6{bottom:223.142970px;}
.y120{bottom:223.143150px;}
.yc0{bottom:227.565300px;}
.y1a4{bottom:229.030650px;}
.yce{bottom:229.605120px;}
.y48{bottom:231.307538px;}
.y27{bottom:241.086390px;}
.y29{bottom:241.086450px;}
.y145{bottom:241.170630px;}
.y11e{bottom:241.170750px;}
.ye5{bottom:241.171650px;}
.y1a3{bottom:245.527650px;}
.y47{bottom:246.358950px;}
.ycd{bottom:247.633800px;}
.y28{bottom:247.719600px;}
.y11f{bottom:247.804650px;}
.y8b{bottom:248.569950px;}
.y16c{bottom:248.910750px;}
.y46{bottom:251.716500px;}
.y26{bottom:259.115071px;}
.y144{bottom:259.199310px;}
.y11d{bottom:259.199431px;}
.y45{bottom:261.325462px;}
.y1a2{bottom:262.026000px;}
.y16b{bottom:265.407750px;}
.ycc{bottom:265.662481px;}
.yd8{bottom:265.664256px;}
.ybf{bottom:275.610060px;}
.y44{bottom:276.376874px;}
.y25{bottom:277.058250px;}
.y143{bottom:277.142489px;}
.y11c{bottom:277.142610px;}
.y1a1{bottom:278.523000px;}
.y106{bottom:282.160500px;}
.ycb{bottom:283.605660px;}
.yd7{bottom:283.607435px;}
.y16a{bottom:286.412550px;}
.y43{bottom:291.344287px;}
.ybe{bottom:293.638740px;}
.y1a0{bottom:295.020000px;}
.y23{bottom:295.086906px;}
.y8a{bottom:295.169670px;}
.y142{bottom:295.171170px;}
.y11b{bottom:295.171290px;}
.yca{bottom:301.634340px;}
.yd6{bottom:301.636116px;}
.y24{bottom:301.719600px;}
.y42{bottom:306.311700px;}
.y19f{bottom:311.517000px;}
.ybd{bottom:311.581919px;}
.y41{bottom:311.669250px;}
.y89{bottom:313.112850px;}
.y13f{bottom:313.198230px;}
.y141{bottom:313.199850px;}
.y11a{bottom:313.199971px;}
.y22{bottom:314.900605px;}
.yc9{bottom:319.663021px;}
.yd5{bottom:319.664796px;}
.y140{bottom:319.833000px;}
.y40{bottom:321.363825px;}
.y169{bottom:324.850950px;}
.y19e{bottom:328.015350px;}
.ybc{bottom:329.610600px;}
.y13e{bottom:331.141409px;}
.y88{bottom:331.141530px;}
.y117{bottom:331.142070px;}
.y119{bottom:331.143150px;}
.y21{bottom:334.630302px;}
.y3f{bottom:336.331238px;}
.yc8{bottom:337.606200px;}
.yd4{bottom:337.607975px;}
.y118{bottom:337.861350px;}
.y168{bottom:341.347950px;}
.y19d{bottom:344.513700px;}
.ybb{bottom:347.639280px;}
.y13d{bottom:349.170090px;}
.y87{bottom:349.170210px;}
.y116{bottom:349.170750px;}
.y3e{bottom:351.382650px;}
.y20{bottom:354.444000px;}
.y3d{bottom:356.655150px;}
.y19c{bottom:361.010700px;}
.y167{bottom:362.350686px;}
.yba{bottom:365.582459px;}
.y86{bottom:367.113390px;}
.y13c{bottom:367.198770px;}
.y115{bottom:367.199431px;}
.y1e{bottom:374.173602px;}
.ye4{bottom:376.382250px;}
.y19b{bottom:377.507700px;}
.y3c{bottom:380.636100px;}
.y1f{bottom:380.806200px;}
.yb9{bottom:383.611140px;}
.y13b{bottom:385.141949px;}
.y85{bottom:385.142070px;}
.y114{bottom:385.142610px;}
.ye3{bottom:392.115150px;}
.y1b{bottom:393.986557px;}
.y1d{bottom:393.987300px;}
.y19a{bottom:394.004700px;}
.y1c{bottom:400.620450px;}
.y166{bottom:400.703069px;}
.yb8{bottom:401.639820px;}
.y13a{bottom:403.170630px;}
.y84{bottom:403.170750px;}
.y113{bottom:403.171290px;}
.ye2{bottom:407.848050px;}
.y199{bottom:410.416650px;}
.y1a{bottom:413.716255px;}
.y165{bottom:418.731750px;}
.yb7{bottom:419.582999px;}
.y83{bottom:421.113930px;}
.y139{bottom:421.199310px;}
.y112{bottom:421.199971px;}
.ye1{bottom:423.580950px;}
.y198{bottom:426.913650px;}
.y3b{bottom:429.533370px;}
.y19{bottom:433.445952px;}
.y164{bottom:436.760430px;}
.yb6{bottom:437.611680px;}
.y138{bottom:439.142489px;}
.y82{bottom:439.142610px;}
.y111{bottom:439.143150px;}
.y197{bottom:443.412000px;}
.y3a{bottom:447.562050px;}
.y38{bottom:447.563245px;}
.y16{bottom:453.259153px;}
.y18{bottom:453.259650px;}
.y39{bottom:454.195200px;}
.y163{bottom:454.703609px;}
.yb5{bottom:455.640360px;}
.y10f{bottom:457.170090px;}
.y137{bottom:457.171170px;}
.y81{bottom:457.171290px;}
.y17{bottom:459.892800px;}
.y196{bottom:459.909000px;}
.y110{bottom:463.804650px;}
.y37{bottom:465.506424px;}
.y162{bottom:472.732290px;}
.y15{bottom:472.988850px;}
.yb4{bottom:473.583539px;}
.y80{bottom:475.114470px;}
.y10e{bottom:475.198770px;}
.y134{bottom:475.199431px;}
.y136{bottom:475.199850px;}
.y195{bottom:476.406000px;}
.y135{bottom:481.833000px;}
.y36{bottom:483.535104px;}
.y161{bottom:490.760970px;}
.yb3{bottom:491.612220px;}
.y194{bottom:492.903000px;}
.y10d{bottom:493.141949px;}
.y133{bottom:493.142610px;}
.y7f{bottom:493.143150px;}
.y14{bottom:498.500700px;}
.y35{bottom:501.563785px;}
.y160{bottom:508.704149px;}
.y193{bottom:509.400000px;}
.yb2{bottom:509.640900px;}
.y7d{bottom:511.168590px;}
.y10c{bottom:511.170630px;}
.y132{bottom:511.171290px;}
.y7e{bottom:517.804650px;}
.y192{bottom:525.897000px;}
.y15f{bottom:526.732830px;}
.yb0{bottom:527.582309px;}
.y7c{bottom:529.111770px;}
.y10b{bottom:529.199310px;}
.y131{bottom:529.199971px;}
.yb1{bottom:534.302250px;}
.y191{bottom:542.394000px;}
.y15e{bottom:544.761510px;}
.yaf{bottom:545.610990px;}
.y7b{bottom:547.140450px;}
.y10a{bottom:547.142489px;}
.y12e{bottom:547.142820px;}
.y130{bottom:547.143150px;}
.y12f{bottom:553.861200px;}
.y190{bottom:558.891000px;}
.y15d{bottom:562.704689px;}
.yae{bottom:563.639670px;}
.y7a{bottom:565.169130px;}
.y109{bottom:565.171170px;}
.y12d{bottom:565.171500px;}
.y12b{bottom:565.173300px;}
.y12c{bottom:571.804650px;}
.y18f{bottom:575.388000px;}
.y15c{bottom:580.733370px;}
.yad{bottom:581.582849px;}
.y79{bottom:583.112310px;}
.y107{bottom:583.199850px;}
.y12a{bottom:583.201981px;}
.y108{bottom:589.833000px;}
.y18e{bottom:591.885000px;}
.y13{bottom:594.507518px;}
.y15b{bottom:598.762050px;}
.yac{bottom:599.611530px;}
.y78{bottom:601.140990px;}
.y18d{bottom:608.382000px;}
.y12{bottom:612.536198px;}
.yab{bottom:617.640210px;}
.y77{bottom:619.169670px;}
.y15a{bottom:624.188850px;}
.y18c{bottom:624.879000px;}
.y14e{bottom:633.713250px;}
.yaa{bottom:635.583389px;}
.y76{bottom:637.112850px;}
.y18b{bottom:641.290950px;}
.ya9{bottom:653.612070px;}
.y75{bottom:655.141530px;}
.y11{bottom:656.756640px;}
.y18a{bottom:657.787950px;}
.ya8{bottom:671.640750px;}
.y159{bottom:673.084680px;}
.y74{bottom:673.084709px;}
.y189{bottom:674.284950px;}
.y10{bottom:674.785320px;}
.y188{bottom:690.781950px;}
.y158{bottom:691.113360px;}
.y73{bottom:691.113390px;}
.yf{bottom:692.814001px;}
.ya7{bottom:697.067550px;}
.y187{bottom:707.278950px;}
.y157{bottom:709.142041px;}
.y72{bottom:709.142070px;}
.ye{bottom:710.757180px;}
.y186{bottom:723.775950px;}
.y156{bottom:727.085220px;}
.y71{bottom:727.085249px;}
.yd{bottom:728.785860px;}
.y185{bottom:740.272950px;}
.y155{bottom:745.113900px;}
.y70{bottom:745.113930px;}
.ya6{bottom:745.114471px;}
.yc{bottom:746.814541px;}
.y184{bottom:756.769950px;}
.y154{bottom:763.142581px;}
.y6f{bottom:763.142610px;}
.ya5{bottom:763.143151px;}
.yb{bottom:764.757720px;}
.y183{bottom:773.266950px;}
.y153{bottom:781.085760px;}
.y6e{bottom:781.085789px;}
.ya4{bottom:781.086330px;}
.ya{bottom:782.786400px;}
.y182{bottom:789.763950px;}
.y105{bottom:792.567338px;}
.y152{bottom:799.114440px;}
.y6d{bottom:799.114470px;}
.ya3{bottom:799.115011px;}
.y9{bottom:800.815081px;}
.y181{bottom:806.260950px;}
.y104{bottom:807.618750px;}
.y6a{bottom:817.140780px;}
.y151{bottom:817.143121px;}
.y6c{bottom:817.143150px;}
.ya2{bottom:817.143691px;}
.y8{bottom:818.758260px;}
.y180{bottom:822.757950px;}
.y6b{bottom:823.776150px;}
.y103{bottom:833.562600px;}
.y69{bottom:835.083960px;}
.y150{bottom:835.086300px;}
.ya1{bottom:835.086870px;}
.y7{bottom:836.786940px;}
.y17f{bottom:839.254950px;}
.y14f{bottom:841.804500px;}
.y102{bottom:850.059600px;}
.y68{bottom:853.112640px;}
.ya0{bottom:853.115551px;}
.y6{bottom:854.815621px;}
.y17e{bottom:855.751950px;}
.y101{bottom:866.556600px;}
.y67{bottom:871.141320px;}
.y9f{bottom:871.144231px;}
.y17d{bottom:872.165250px;}
.y5{bottom:872.758800px;}
.y100{bottom:883.053600px;}
.y17c{bottom:888.662250px;}
.y66{bottom:889.084500px;}
.y9e{bottom:889.087410px;}
.yff{bottom:899.550600px;}
.y17b{bottom:905.159250px;}
.y65{bottom:907.113180px;}
.y9d{bottom:907.116091px;}
.yfe{bottom:916.047600px;}
.y17a{bottom:921.656250px;}
.y64{bottom:925.141860px;}
.y9c{bottom:925.144771px;}
.yfd{bottom:932.544600px;}
.y179{bottom:938.153250px;}
.y63{bottom:943.085040px;}
.y9b{bottom:943.087950px;}
.y3{bottom:944.787300px;}
.yfc{bottom:949.041600px;}
.y4{bottom:952.780950px;}
.y178{bottom:954.651600px;}
.y62{bottom:961.113720px;}
.y9a{bottom:961.116631px;}
.y5b{bottom:963.664747px;}
.yfb{bottom:965.538600px;}
.y177{bottom:971.148600px;}
.y5a{bottom:976.421014px;}
.y61{bottom:979.142400px;}
.y99{bottom:979.145311px;}
.yfa{bottom:982.035600px;}
.y176{bottom:987.646950px;}
.y59{bottom:989.177282px;}
.y60{bottom:997.085580px;}
.y98{bottom:997.088490px;}
.yf9{bottom:998.532600px;}
.y58{bottom:1001.933550px;}
.y175{bottom:1008.651750px;}
.yf8{bottom:1015.029600px;}
.y5f{bottom:1015.114260px;}
.y97{bottom:1015.117171px;}
.y2{bottom:1018.261500px;}
.y5e{bottom:1033.142940px;}
.y96{bottom:1033.145851px;}
.y57{bottom:1033.396780px;}
.yf7{bottom:1042.498050px;}
.y56{bottom:1046.918486px;}
.y174{bottom:1047.684750px;}
.y1{bottom:1048.280100px;}
.y5d{bottom:1051.086120px;}
.y95{bottom:1051.089030px;}
.y55{bottom:1060.440193px;}
.y173{bottom:1068.689550px;}
.y5c{bottom:1069.114800px;}
.y94{bottom:1069.117711px;}
.yf6{bottom:1069.965150px;}
.y54{bottom:1073.961900px;}
.y53{bottom:1105.766550px;}
.yc7{bottom:1116.311400px;}
.ha{height:23.324355px;}
.h8{height:27.517248px;}
.hc{height:30.617563px;}
.h4{height:33.116274px;}
.hb{height:33.119586px;}
.h9{height:34.991563px;}
.he{height:37.152000px;}
.hd{height:39.366000px;}
.h7{height:41.280413px;}
.h5{height:41.400414px;}
.h6{height:43.740437px;}
.h3{height:49.679586px;}
.h2{height:74.520000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:74.409450px;}
.xb{left:92.437800px;}
.x15{left:93.543300px;}
.x16{left:111.571980px;}
.x7{left:128.154300px;}
.x8{left:148.223550px;}
.x21{left:199.842300px;}
.x17{left:212.003100px;}
.x22{left:213.618900px;}
.x19{left:222.888150px;}
.x18{left:228.075600px;}
.xc{left:230.966850px;}
.x2{left:246.018750px;}
.x5{left:249.760500px;}
.xa{left:257.158950px;}
.x6{left:262.006200px;}
.x25{left:279.864450px;}
.x3{left:304.440900px;}
.xd{left:315.325950px;}
.xe{left:329.612550px;}
.x2e{left:359.121150px;}
.x2f{left:374.938500px;}
.x24{left:400.025100px;}
.xf{left:403.086450px;}
.x23{left:416.012400px;}
.x9{left:421.710150px;}
.x1e{left:440.844000px;}
.x10{left:446.457840px;}
.x13{left:450.963600px;}
.x2b{left:464.484538px;}
.x1a{left:465.592020px;}
.x30{left:472.308450px;}
.x4{left:482.088000px;}
.x1b{left:483.620701px;}
.x31{left:489.230700px;}
.x29{left:504.028200px;}
.x1f{left:510.491250px;}
.x2a{left:515.678550px;}
.x20{left:540.765300px;}
.x14{left:634.393500px;}
.x11{left:686.097450px;}
.x12{left:700.469100px;}
.x28{left:719.262750px;}
.x26{left:730.998300px;}
.x27{left:746.815500px;}
.x2c{left:756.510000px;}
.x2d{left:775.643850px;}
.x1d{left:780.235950px;}
.x1c{left:807.278550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-1.141345pt;}
.ls14{letter-spacing:-1.120011pt;}
.ls24{letter-spacing:-0.758400pt;}
.ls7{letter-spacing:-0.714674pt;}
.ls6{letter-spacing:-0.704007pt;}
.ls15{letter-spacing:-0.682673pt;}
.ls16{letter-spacing:-0.672007pt;}
.ls8{letter-spacing:-0.650673pt;}
.lsa{letter-spacing:-0.640006pt;}
.ls13{letter-spacing:-0.572387pt;}
.ls5{letter-spacing:-0.012800pt;}
.ls4{letter-spacing:-0.009600pt;}
.ls3{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.010667pt;}
.lsc{letter-spacing:0.058667pt;}
.ls10{letter-spacing:0.064001pt;}
.ls23{letter-spacing:0.110400pt;}
.lsd{letter-spacing:0.112001pt;}
.ls21{letter-spacing:0.122668pt;}
.ls2{letter-spacing:0.165335pt;}
.ls22{letter-spacing:0.187200pt;}
.lsb{letter-spacing:0.192002pt;}
.ls1{letter-spacing:0.245336pt;}
.ls1b{letter-spacing:0.970676pt;}
.ls1f{letter-spacing:1.034563pt;}
.ls19{letter-spacing:1.093344pt;}
.ls20{letter-spacing:1.098678pt;}
.ls1a{letter-spacing:1.136011pt;}
.ls18{letter-spacing:1.146678pt;}
.ls1d{letter-spacing:1.152012pt;}
.ls17{letter-spacing:1.157345pt;}
.ls1c{letter-spacing:1.173345pt;}
.ls1e{letter-spacing:1.189345pt;}
.ls12{letter-spacing:8.944089pt;}
.ls0{letter-spacing:17.098838pt;}
.lse{letter-spacing:22.352224pt;}
.ls11{letter-spacing:23.344233pt;}
.ws18{word-spacing:-0.063999pt;}
.ws6{word-spacing:-0.053334pt;}
.wsff{word-spacing:-0.048000pt;}
.wsfc{word-spacing:-0.042666pt;}
.ws4f{word-spacing:-0.037333pt;}
.ws20{word-spacing:-0.035552pt;}
.ws53{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.661340pt;}
.ws24{word-spacing:7.205405pt;}
.wsda{word-spacing:8.053414pt;}
.wsce{word-spacing:8.698754pt;}
.wscf{word-spacing:8.741421pt;}
.wsd3{word-spacing:8.810755pt;}
.wsc7{word-spacing:8.858755pt;}
.wsc0{word-spacing:8.901422pt;}
.wsb8{word-spacing:8.960090pt;}
.wsbf{word-spacing:8.976090pt;}
.wsc9{word-spacing:8.986757pt;}
.wsc8{word-spacing:9.184092pt;}
.wsd4{word-spacing:9.194759pt;}
.wsd5{word-spacing:9.200092pt;}
.ws28{word-spacing:9.376094pt;}
.ws27{word-spacing:9.536095pt;}
.ws1c{word-spacing:10.037434pt;}
.ws17a{word-spacing:10.094400pt;}
.ws3e{word-spacing:10.295338pt;}
.ws158{word-spacing:10.353600pt;}
.ws47{word-spacing:10.504402pt;}
.ws10c{word-spacing:10.640106pt;}
.ws18a{word-spacing:10.656000pt;}
.ws18b{word-spacing:10.761600pt;}
.ws3d{word-spacing:10.913997pt;}
.ws3a{word-spacing:11.136111pt;}
.ws39{word-spacing:11.162778pt;}
.ws42{word-spacing:11.212660pt;}
.ws2e{word-spacing:11.296113pt;}
.ws189{word-spacing:11.385600pt;}
.ws45{word-spacing:11.425991pt;}
.ws17b{word-spacing:11.544000pt;}
.ws17d{word-spacing:11.635200pt;}
.ws17c{word-spacing:11.668800pt;}
.wsb9{word-spacing:11.712117pt;}
.ws157{word-spacing:11.744117pt;}
.ws162{word-spacing:11.822400pt;}
.ws163{word-spacing:11.860800pt;}
.ws15c{word-spacing:11.865600pt;}
.ws21{word-spacing:11.877452pt;}
.ws1e{word-spacing:11.882785pt;}
.ws15d{word-spacing:11.899200pt;}
.ws156{word-spacing:11.984120pt;}
.ws9e{word-spacing:12.197455pt;}
.ws51{word-spacing:12.248892pt;}
.ws4c{word-spacing:12.275025pt;}
.ws50{word-spacing:12.286224pt;}
.ws4d{word-spacing:12.308624pt;}
.ws52{word-spacing:12.398223pt;}
.ws4e{word-spacing:12.405689pt;}
.wsfb{word-spacing:12.424378pt;}
.wsfd{word-spacing:12.518244pt;}
.ws22{word-spacing:12.549459pt;}
.wseb{word-spacing:12.597459pt;}
.ws143{word-spacing:12.618793pt;}
.ws1a6{word-spacing:12.624000pt;}
.ws142{word-spacing:12.757461pt;}
.wsa1{word-spacing:12.832128pt;}
.ws141{word-spacing:12.976130pt;}
.ws41{word-spacing:13.013171pt;}
.ws197{word-spacing:13.108800pt;}
.ws29{word-spacing:13.189465pt;}
.ws5f{word-spacing:13.221466pt;}
.ws99{word-spacing:13.376134pt;}
.ws9c{word-spacing:13.434801pt;}
.ws23{word-spacing:13.445468pt;}
.ws15{word-spacing:13.472135pt;}
.ws155{word-spacing:13.525469pt;}
.ws137{word-spacing:13.557469pt;}
.ws60{word-spacing:13.584136pt;}
.ws49{word-spacing:13.631830pt;}
.ws185{word-spacing:13.675200pt;}
.ws36{word-spacing:13.802805pt;}
.ws3f{word-spacing:13.845160pt;}
.ws16f{word-spacing:13.920000pt;}
.ws43{word-spacing:13.921959pt;}
.ws48{word-spacing:13.981692pt;}
.ws192{word-spacing:13.982400pt;}
.ws72{word-spacing:13.994807pt;}
.wsf4{word-spacing:14.000140pt;}
.ws40{word-spacing:14.024358pt;}
.ws94{word-spacing:14.042807pt;}
.ws169{word-spacing:14.054400pt;}
.ws3c{word-spacing:14.071291pt;}
.ws161{word-spacing:14.092800pt;}
.ws4a{word-spacing:14.109690pt;}
.ws183{word-spacing:14.126400pt;}
.ws26{word-spacing:14.128141pt;}
.wsf6{word-spacing:14.131200pt;}
.ws159{word-spacing:14.164800pt;}
.ws46{word-spacing:14.165156pt;}
.ws198{word-spacing:14.169600pt;}
.ws1a0{word-spacing:14.174400pt;}
.ws173{word-spacing:14.184000pt;}
.ws199{word-spacing:14.203200pt;}
.ws191{word-spacing:14.208000pt;}
.ws194{word-spacing:14.232000pt;}
.wsf7{word-spacing:14.236800pt;}
.ws1a8{word-spacing:14.265600pt;}
.ws115{word-spacing:14.277476pt;}
.ws178{word-spacing:14.280000pt;}
.ws184{word-spacing:14.289600pt;}
.ws2b{word-spacing:14.298810pt;}
.ws44{word-spacing:14.301688pt;}
.ws19c{word-spacing:14.304000pt;}
.ws15e{word-spacing:14.318400pt;}
.ws195{word-spacing:14.356800pt;}
.ws165{word-spacing:14.404800pt;}
.ws1a9{word-spacing:14.510400pt;}
.wsa{word-spacing:14.528145pt;}
.wsdd{word-spacing:14.533479pt;}
.ws11{word-spacing:14.544145pt;}
.ws10{word-spacing:14.693480pt;}
.wsba{word-spacing:14.794815pt;}
.ws131{word-spacing:14.816148pt;}
.ws2a{word-spacing:14.949483pt;}
.ws25{word-spacing:14.976150pt;}
.ws16e{word-spacing:15.004800pt;}
.ws16a{word-spacing:15.110400pt;}
.ws196{word-spacing:15.129600pt;}
.wsb5{word-spacing:15.178818pt;}
.ws16b{word-spacing:15.225600pt;}
.ws8e{word-spacing:15.285486pt;}
.wse2{word-spacing:15.504000pt;}
.ws193{word-spacing:15.528000pt;}
.wsdf{word-spacing:15.537600pt;}
.ws107{word-spacing:15.562822pt;}
.ws5e{word-spacing:15.674823pt;}
.ws138{word-spacing:15.739200pt;}
.ws55{word-spacing:15.808158pt;}
.wscb{word-spacing:15.856159pt;}
.ws2d{word-spacing:15.888159pt;}
.ws1a7{word-spacing:15.907200pt;}
.wsaa{word-spacing:15.936159pt;}
.wse1{word-spacing:15.940800pt;}
.ws7d{word-spacing:15.946826pt;}
.wsa2{word-spacing:15.952160pt;}
.ws104{word-spacing:15.968160pt;}
.ws71{word-spacing:15.973493pt;}
.wsbb{word-spacing:15.994827pt;}
.ws33{word-spacing:16.000160pt;}
.wsde{word-spacing:16.012800pt;}
.wsd6{word-spacing:16.021494pt;}
.ws2c{word-spacing:16.026827pt;}
.ws125{word-spacing:16.037494pt;}
.wsfe{word-spacing:16.041600pt;}
.wse0{word-spacing:16.051200pt;}
.wsa0{word-spacing:16.053494pt;}
.ws7{word-spacing:16.080161pt;}
.ws100{word-spacing:16.089600pt;}
.ws91{word-spacing:16.090828pt;}
.ws11e{word-spacing:16.106828pt;}
.ws12{word-spacing:16.112161pt;}
.ws5{word-spacing:16.138828pt;}
.ws144{word-spacing:16.154828pt;}
.ws16d{word-spacing:16.166400pt;}
.ws19d{word-spacing:16.243200pt;}
.ws70{word-spacing:16.325497pt;}
.ws123{word-spacing:16.330830pt;}
.ws145{word-spacing:16.352164pt;}
.ws82{word-spacing:16.389497pt;}
.ws8{word-spacing:16.416164pt;}
.ws77{word-spacing:16.464165pt;}
.wsd9{word-spacing:16.480165pt;}
.ws111{word-spacing:16.490832pt;}
.ws1a1{word-spacing:16.531200pt;}
.ws109{word-spacing:16.549499pt;}
.wsca{word-spacing:16.581499pt;}
.ws80{word-spacing:16.608166pt;}
.wsd0{word-spacing:16.634833pt;}
.wsb{word-spacing:16.693500pt;}
.ws160{word-spacing:16.699200pt;}
.ws171{word-spacing:16.704000pt;}
.ws172{word-spacing:16.771200pt;}
.wsc{word-spacing:16.784168pt;}
.ws150{word-spacing:16.821502pt;}
.wsf3{word-spacing:16.848168pt;}
.ws119{word-spacing:16.880169pt;}
.ws4{word-spacing:17.045504pt;}
.ws54{word-spacing:17.061504pt;}
.wsac{word-spacing:17.072171pt;}
.ws10d{word-spacing:17.093504pt;}
.ws63{word-spacing:17.120171pt;}
.ws65{word-spacing:17.157505pt;}
.ws10e{word-spacing:17.290840pt;}
.ws64{word-spacing:17.365507pt;}
.ws13a{word-spacing:17.440174pt;}
.ws14b{word-spacing:17.482841pt;}
.ws69{word-spacing:17.514842pt;}
.ws181{word-spacing:17.568000pt;}
.ws1d{word-spacing:17.621510pt;}
.ws9b{word-spacing:17.642843pt;}
.ws17{word-spacing:17.648176pt;}
.ws118{word-spacing:17.669510pt;}
.ws14c{word-spacing:17.690844pt;}
.ws176{word-spacing:17.755200pt;}
.wse9{word-spacing:17.760178pt;}
.ws105{word-spacing:17.786845pt;}
.ws15a{word-spacing:17.808178pt;}
.ws66{word-spacing:17.813511pt;}
.ws8a{word-spacing:17.818845pt;}
.wsbe{word-spacing:17.893512pt;}
.ws16{word-spacing:17.925513pt;}
.ws4b{word-spacing:17.957513pt;}
.ws177{word-spacing:17.980800pt;}
.ws5d{word-spacing:18.000180pt;}
.ws18c{word-spacing:18.038400pt;}
.ws15f{word-spacing:18.096181pt;}
.ws164{word-spacing:18.101514pt;}
.wsc5{word-spacing:18.144181pt;}
.ws7c{word-spacing:18.176182pt;}
.ws76{word-spacing:18.234849pt;}
.ws15b{word-spacing:18.261516pt;}
.ws136{word-spacing:18.266849pt;}
.wsc1{word-spacing:18.421518pt;}
.ws19b{word-spacing:18.441600pt;}
.ws92{word-spacing:18.448184pt;}
.ws93{word-spacing:18.480185pt;}
.ws187{word-spacing:18.513600pt;}
.ws186{word-spacing:18.556800pt;}
.ws188{word-spacing:18.585600pt;}
.ws116{word-spacing:18.608186pt;}
.ws14{word-spacing:18.650853pt;}
.ws8c{word-spacing:18.666853pt;}
.ws16c{word-spacing:18.700800pt;}
.ws12b{word-spacing:18.730854pt;}
.ws110{word-spacing:18.746854pt;}
.ws13{word-spacing:18.880189pt;}
.ws146{word-spacing:18.970856pt;}
.ws5a{word-spacing:19.024190pt;}
.ws85{word-spacing:19.050857pt;}
.wsd{word-spacing:19.125525pt;}
.ws9{word-spacing:19.136191pt;}
.wsf{word-spacing:19.152192pt;}
.ws34{word-spacing:19.157525pt;}
.wsaf{word-spacing:19.184192pt;}
.ws73{word-spacing:19.216192pt;}
.wse{word-spacing:19.237526pt;}
.ws31{word-spacing:19.242859pt;}
.ws134{word-spacing:19.269526pt;}
.ws151{word-spacing:19.322860pt;}
.ws8d{word-spacing:19.328193pt;}
.wsef{word-spacing:19.365527pt;}
.ws74{word-spacing:19.386861pt;}
.ws19a{word-spacing:19.473600pt;}
.ws152{word-spacing:19.477528pt;}
.wsf5{word-spacing:19.573529pt;}
.wsbd{word-spacing:19.792198pt;}
.ws5b{word-spacing:19.962866pt;}
.ws174{word-spacing:19.987200pt;}
.ws175{word-spacing:20.035200pt;}
.ws14e{word-spacing:20.197535pt;}
.ws7f{word-spacing:20.240202pt;}
.ws166{word-spacing:20.251200pt;}
.ws5c{word-spacing:20.293536pt;}
.ws56{word-spacing:20.453538pt;}
.ws149{word-spacing:20.560206pt;}
.ws101{word-spacing:20.565539pt;}
.ws102{word-spacing:20.693540pt;}
.ws108{word-spacing:20.752208pt;}
.ws6a{word-spacing:20.805541pt;}
.ws9f{word-spacing:21.050877pt;}
.ws7e{word-spacing:21.061544pt;}
.ws14a{word-spacing:21.141545pt;}
.ws124{word-spacing:21.290880pt;}
.ws3{word-spacing:21.337422pt;}
.ws6d{word-spacing:21.365547pt;}
.ws9d{word-spacing:21.433421pt;}
.ws98{word-spacing:21.440214pt;}
.wsd7{word-spacing:21.466881pt;}
.ws2{word-spacing:21.471821pt;}
.ws62{word-spacing:21.690884pt;}
.ws8b{word-spacing:21.749551pt;}
.ws139{word-spacing:22.016220pt;}
.ws121{word-spacing:22.074887pt;}
.ws1a4{word-spacing:22.152000pt;}
.ws112{word-spacing:22.202889pt;}
.wsa8{word-spacing:22.218889pt;}
.ws1a3{word-spacing:22.252800pt;}
.ws88{word-spacing:22.261556pt;}
.ws106{word-spacing:22.298890pt;}
.ws8f{word-spacing:22.325557pt;}
.ws1a5{word-spacing:22.516800pt;}
.ws1b{word-spacing:22.714894pt;}
.wse6{word-spacing:22.901562pt;}
.ws6b{word-spacing:22.928229pt;}
.wsc2{word-spacing:22.933563pt;}
.wsd8{word-spacing:22.981563pt;}
.ws13f{word-spacing:23.093564pt;}
.ws182{word-spacing:23.131200pt;}
.ws153{word-spacing:23.232232pt;}
.ws19f{word-spacing:23.241600pt;}
.wsae{word-spacing:23.253566pt;}
.ws19e{word-spacing:23.400000pt;}
.ws17e{word-spacing:23.424000pt;}
.ws1a{word-spacing:23.472235pt;}
.wsad{word-spacing:23.498902pt;}
.ws126{word-spacing:23.578902pt;}
.ws170{word-spacing:23.611200pt;}
.ws86{word-spacing:23.717571pt;}
.wsb1{word-spacing:23.781571pt;}
.wsd2{word-spacing:23.888239pt;}
.wsb2{word-spacing:23.952240pt;}
.ws179{word-spacing:24.120000pt;}
.ws10f{word-spacing:24.138908pt;}
.ws114{word-spacing:24.165575pt;}
.ws12a{word-spacing:24.181575pt;}
.wsa9{word-spacing:24.197575pt;}
.wsa5{word-spacing:24.250909pt;}
.ws90{word-spacing:24.277576pt;}
.ws68{word-spacing:24.410911pt;}
.ws117{word-spacing:24.442911pt;}
.ws180{word-spacing:24.484800pt;}
.ws7b{word-spacing:24.490912pt;}
.ws95{word-spacing:24.496245pt;}
.ws12d{word-spacing:24.528245pt;}
.ws17f{word-spacing:24.672000pt;}
.wsbc{word-spacing:24.778914pt;}
.ws11c{word-spacing:24.960250pt;}
.ws35{word-spacing:25.221586pt;}
.ws87{word-spacing:25.290920pt;}
.ws18d{word-spacing:25.315200pt;}
.ws96{word-spacing:25.376254pt;}
.wsb7{word-spacing:25.456255pt;}
.ws18e{word-spacing:25.468800pt;}
.wsb6{word-spacing:25.520255pt;}
.ws11d{word-spacing:25.786925pt;}
.ws18f{word-spacing:26.001600pt;}
.ws12e{word-spacing:26.048260pt;}
.ws190{word-spacing:26.145600pt;}
.ws81{word-spacing:26.314930pt;}
.ws11b{word-spacing:26.410931pt;}
.ws61{word-spacing:26.554932pt;}
.ws57{word-spacing:26.586933pt;}
.ws129{word-spacing:26.624266pt;}
.ws11f{word-spacing:26.714934pt;}
.ws120{word-spacing:26.832268pt;}
.ws6f{word-spacing:26.853602pt;}
.ws147{word-spacing:26.858935pt;}
.ws132{word-spacing:27.162938pt;}
.ws6e{word-spacing:27.189605pt;}
.ws128{word-spacing:27.333607pt;}
.ws14d{word-spacing:27.370940pt;}
.ws133{word-spacing:27.408274pt;}
.ws84{word-spacing:27.413607pt;}
.wsd1{word-spacing:27.488275pt;}
.wsa4{word-spacing:27.648276pt;}
.wsa3{word-spacing:27.850945pt;}
.ws127{word-spacing:28.250949pt;}
.wse8{word-spacing:28.373617pt;}
.ws58{word-spacing:28.400284pt;}
.ws67{word-spacing:28.421618pt;}
.wsf1{word-spacing:28.432284pt;}
.wsc3{word-spacing:28.480285pt;}
.wse7{word-spacing:28.528285pt;}
.ws154{word-spacing:28.725621pt;}
.wsf0{word-spacing:28.757621pt;}
.ws168{word-spacing:28.828800pt;}
.ws167{word-spacing:28.852800pt;}
.ws135{word-spacing:28.853622pt;}
.wsc4{word-spacing:29.370960pt;}
.ws140{word-spacing:29.434961pt;}
.ws122{word-spacing:29.936299pt;}
.ws89{word-spacing:30.133635pt;}
.ws1a2{word-spacing:30.163200pt;}
.wscd{word-spacing:30.186969pt;}
.wscc{word-spacing:30.293636pt;}
.wsb3{word-spacing:30.341637pt;}
.wsb4{word-spacing:30.458971pt;}
.ws30{word-spacing:30.485638pt;}
.ws2f{word-spacing:30.496305pt;}
.ws59{word-spacing:30.762974pt;}
.ws103{word-spacing:30.816308pt;}
.wsdc{word-spacing:31.360314pt;}
.wsec{word-spacing:31.456315pt;}
.wsdb{word-spacing:31.728317pt;}
.ws0{word-spacing:31.843200pt;}
.ws1{word-spacing:32.179200pt;}
.wse5{word-spacing:32.602993pt;}
.ws83{word-spacing:32.656327pt;}
.wse4{word-spacing:32.709660pt;}
.ws19{word-spacing:32.794995pt;}
.ws79{word-spacing:32.853662pt;}
.wsc6{word-spacing:33.066997pt;}
.ws32{word-spacing:33.178998pt;}
.ws3b{word-spacing:33.237666pt;}
.ws97{word-spacing:33.509668pt;}
.ws11a{word-spacing:33.563002pt;}
.ws7a{word-spacing:33.995007pt;}
.ws12f{word-spacing:34.187009pt;}
.ws130{word-spacing:34.213675pt;}
.ws113{word-spacing:34.448344pt;}
.ws6c{word-spacing:35.563022pt;}
.wsee{word-spacing:36.064361pt;}
.ws14f{word-spacing:36.181695pt;}
.ws38{word-spacing:36.533699pt;}
.ws9a{word-spacing:36.560366pt;}
.wsea{word-spacing:37.083037pt;}
.wsab{word-spacing:37.467041pt;}
.ws13b{word-spacing:37.472375pt;}
.ws12c{word-spacing:37.477708pt;}
.ws10a{word-spacing:37.653710pt;}
.wsf2{word-spacing:37.717711pt;}
.ws148{word-spacing:38.437718pt;}
.ws13d{word-spacing:38.976390pt;}
.ws13e{word-spacing:39.131058pt;}
.ws75{word-spacing:42.395091pt;}
.ws78{word-spacing:44.229776pt;}
.wsa6{word-spacing:44.560446pt;}
.ws10b{word-spacing:44.587113pt;}
.wsed{word-spacing:47.275139pt;}
.wsa7{word-spacing:48.267149pt;}
.ws37{word-spacing:55.253886pt;}
.wsb0{word-spacing:56.821902pt;}
.ws13c{word-spacing:63.605969pt;}
.wsfa{word-spacing:329.904000pt;}
.wsf8{word-spacing:329.952000pt;}
.wsf9{word-spacing:353.904000pt;}
.wse3{word-spacing:1342.866762pt;}
._23{margin-left:-6.224227pt;}
._6{margin-left:-4.384059pt;}
._4{margin-left:-3.173365pt;}
._2{margin-left:-1.488000pt;}
._1{width:1.008000pt;}
._24{width:2.896019pt;}
._22{width:6.570598pt;}
._9{width:8.368084pt;}
._11{width:9.414113pt;}
._d{width:10.671958pt;}
._12{width:11.698006pt;}
._7{width:13.077464pt;}
._b{width:14.714829pt;}
._a{width:15.824168pt;}
._5{width:17.226824pt;}
._3{width:18.197525pt;}
._16{width:19.301536pt;}
._8{width:20.229536pt;}
._13{width:21.418881pt;}
._15{width:22.688227pt;}
._c{width:23.722829pt;}
._1b{width:24.917583pt;}
._f{width:26.506932pt;}
._18{width:28.101614pt;}
._14{width:29.392294pt;}
._21{width:30.421638pt;}
._e{width:31.461648pt;}
._20{width:32.357657pt;}
._0{width:33.801600pt;}
._1a{width:35.008350pt;}
._17{width:36.544365pt;}
._1d{width:38.469728pt;}
._19{width:45.312453pt;}
._1c{width:49.381827pt;}
._10{width:56.491232pt;}
._1e{width:57.824578pt;}
._2b{width:86.564800pt;}
._25{width:330.995279pt;}
._28{width:362.913600pt;}
._2a{width:402.825600pt;}
._29{width:407.246400pt;}
._26{width:424.785600pt;}
._27{width:426.715200pt;}
._1f{width:1912.504458pt;}
.fs6{font-size:28.440000pt;}
.fs4{font-size:35.552000pt;}
.fs7{font-size:37.332800pt;}
.fs2{font-size:42.661867pt;}
.fs5{font-size:42.666133pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:53.333867pt;}
.fs1{font-size:63.999467pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y93{bottom:86.323547pt;}
.ye0{bottom:86.323920pt;}
.yc6{bottom:86.324027pt;}
.y34{bottom:86.324214pt;}
.yd3{bottom:86.324507pt;}
.y172{bottom:86.324933pt;}
.y52{bottom:86.325925pt;}
.y1ac{bottom:86.326667pt;}
.y14d{bottom:86.397947pt;}
.yed{bottom:86.398854pt;}
.yf5{bottom:86.399334pt;}
.y129{bottom:86.400107pt;}
.yee{bottom:92.296000pt;}
.y51{bottom:99.630292pt;}
.y171{bottom:100.988933pt;}
.y1ab{bottom:100.990667pt;}
.y92{bottom:102.273040pt;}
.ydf{bottom:102.273413pt;}
.yc5{bottom:102.273520pt;}
.y33{bottom:102.273706pt;}
.yd2{bottom:102.274000pt;}
.y14c{bottom:102.347439pt;}
.yec{bottom:102.348346pt;}
.y126{bottom:102.348507pt;}
.yf4{bottom:102.348826pt;}
.y128{bottom:102.349600pt;}
.y127{bottom:108.321200pt;}
.y50{bottom:113.009324pt;}
.y1aa{bottom:115.654667pt;}
.y91{bottom:118.298534pt;}
.yde{bottom:118.298906pt;}
.yc4{bottom:118.299014pt;}
.y32{bottom:118.299200pt;}
.y14b{bottom:118.372933pt;}
.yeb{bottom:118.373840pt;}
.y125{bottom:118.374000pt;}
.yf3{bottom:118.374320pt;}
.y170{bottom:119.659867pt;}
.yd1{bottom:124.951200pt;}
.y4f{bottom:126.312625pt;}
.y1a9{bottom:130.318667pt;}
.y30{bottom:134.323920pt;}
.y90{bottom:134.324027pt;}
.ydd{bottom:134.324400pt;}
.yc3{bottom:134.324507pt;}
.y14a{bottom:134.398427pt;}
.yea{bottom:134.399334pt;}
.y124{bottom:134.399494pt;}
.yf2{bottom:134.399814pt;}
.y4e{bottom:139.615925pt;}
.y31{bottom:140.220400pt;}
.y1a8{bottom:144.925600pt;}
.y2f{bottom:150.273413pt;}
.y8f{bottom:150.273520pt;}
.ydb{bottom:150.273706pt;}
.yc2{bottom:150.274000pt;}
.y149{bottom:150.347919pt;}
.ye9{bottom:150.348826pt;}
.y123{bottom:150.348987pt;}
.yf1{bottom:150.349306pt;}
.y16f{bottom:153.751733pt;}
.ydc{bottom:156.245600pt;}
.y1a7{bottom:159.589600pt;}
.y4d{bottom:165.618800pt;}
.y2e{bottom:166.298906pt;}
.y8e{bottom:166.299014pt;}
.yda{bottom:166.299200pt;}
.y148{bottom:166.373413pt;}
.ye8{bottom:166.374320pt;}
.y122{bottom:166.374480pt;}
.yf0{bottom:166.374800pt;}
.y16e{bottom:168.415733pt;}
.y4c{bottom:170.381067pt;}
.yd0{bottom:172.118454pt;}
.yef{bottom:172.270933pt;}
.yc1{bottom:172.950911pt;}
.y1a6{bottom:174.253600pt;}
.y4b{bottom:178.998033pt;}
.y2b{bottom:182.324080pt;}
.y2d{bottom:182.324400pt;}
.y8d{bottom:182.324507pt;}
.y147{bottom:182.398907pt;}
.ye7{bottom:182.399814pt;}
.y121{bottom:182.399974pt;}
.y16d{bottom:187.086533pt;}
.ycf{bottom:188.143947pt;}
.y2c{bottom:188.220400pt;}
.y1a5{bottom:188.918800pt;}
.yd9{bottom:188.976400pt;}
.y4a{bottom:192.302400pt;}
.y49{bottom:197.064533pt;}
.y2a{bottom:198.273573pt;}
.y8c{bottom:198.274000pt;}
.y146{bottom:198.348399pt;}
.ye6{bottom:198.349306pt;}
.y120{bottom:198.349467pt;}
.yc0{bottom:202.280267pt;}
.y1a4{bottom:203.582800pt;}
.yce{bottom:204.093440pt;}
.y48{bottom:205.606701pt;}
.y27{bottom:214.299014pt;}
.y29{bottom:214.299067pt;}
.y145{bottom:214.373893pt;}
.y11e{bottom:214.374000pt;}
.ye5{bottom:214.374800pt;}
.y1a3{bottom:218.246800pt;}
.y47{bottom:218.985733pt;}
.ycd{bottom:220.118934pt;}
.y28{bottom:220.195200pt;}
.y11f{bottom:220.270800pt;}
.y8b{bottom:220.951067pt;}
.y16c{bottom:221.254000pt;}
.y46{bottom:223.748000pt;}
.y26{bottom:230.324507pt;}
.y144{bottom:230.399387pt;}
.y11d{bottom:230.399494pt;}
.y45{bottom:232.289300pt;}
.y1a2{bottom:232.912000pt;}
.y16b{bottom:235.918000pt;}
.ycc{bottom:236.144427pt;}
.yd8{bottom:236.146005pt;}
.ybf{bottom:244.986720pt;}
.y44{bottom:245.668333pt;}
.y25{bottom:246.274000pt;}
.y143{bottom:246.348879pt;}
.y11c{bottom:246.348987pt;}
.y1a1{bottom:247.576000pt;}
.y106{bottom:250.809333pt;}
.ycb{bottom:252.093920pt;}
.yd7{bottom:252.095498pt;}
.y16a{bottom:254.588933pt;}
.y43{bottom:258.972700pt;}
.ybe{bottom:261.012213pt;}
.y1a0{bottom:262.240000pt;}
.y23{bottom:262.299472pt;}
.y8a{bottom:262.373040pt;}
.y142{bottom:262.374373pt;}
.y11b{bottom:262.374480pt;}
.yca{bottom:268.119414pt;}
.yd6{bottom:268.120992pt;}
.y24{bottom:268.195200pt;}
.y42{bottom:272.277067pt;}
.y19f{bottom:276.904000pt;}
.ybd{bottom:276.961706pt;}
.y41{bottom:277.039333pt;}
.y89{bottom:278.322533pt;}
.y13f{bottom:278.398427pt;}
.y141{bottom:278.399867pt;}
.y11a{bottom:278.399974pt;}
.y22{bottom:279.911649pt;}
.yc9{bottom:284.144907pt;}
.yd5{bottom:284.146485pt;}
.y140{bottom:284.296000pt;}
.y40{bottom:285.656734pt;}
.y169{bottom:288.756400pt;}
.y19e{bottom:291.569200pt;}
.ybc{bottom:292.987200pt;}
.y13e{bottom:294.347919pt;}
.y88{bottom:294.348027pt;}
.y117{bottom:294.348507pt;}
.y119{bottom:294.349467pt;}
.y21{bottom:297.449157pt;}
.y3f{bottom:298.961101pt;}
.yc8{bottom:300.094400pt;}
.yd4{bottom:300.095978pt;}
.y118{bottom:300.321200pt;}
.y168{bottom:303.420400pt;}
.y19d{bottom:306.234400pt;}
.ybb{bottom:309.012693pt;}
.y13d{bottom:310.373413pt;}
.y87{bottom:310.373520pt;}
.y116{bottom:310.374000pt;}
.y3e{bottom:312.340133pt;}
.y20{bottom:315.061333pt;}
.y3d{bottom:317.026800pt;}
.y19c{bottom:320.898400pt;}
.y167{bottom:322.089499pt;}
.yba{bottom:324.962186pt;}
.y86{bottom:326.323013pt;}
.y13c{bottom:326.398907pt;}
.y115{bottom:326.399494pt;}
.y1e{bottom:332.598757pt;}
.ye4{bottom:334.562000pt;}
.y19b{bottom:335.562400pt;}
.y3c{bottom:338.343200pt;}
.y1f{bottom:338.494400pt;}
.yb9{bottom:340.987680pt;}
.y13b{bottom:342.348399pt;}
.y85{bottom:342.348507pt;}
.y114{bottom:342.348987pt;}
.ye3{bottom:348.546800pt;}
.y1b{bottom:350.210273pt;}
.y1d{bottom:350.210933pt;}
.y19a{bottom:350.226400pt;}
.y1c{bottom:356.107067pt;}
.y166{bottom:356.180506pt;}
.yb8{bottom:357.013173pt;}
.y13a{bottom:358.373893pt;}
.y84{bottom:358.374000pt;}
.y113{bottom:358.374480pt;}
.ye2{bottom:362.531600pt;}
.y199{bottom:364.814800pt;}
.y1a{bottom:367.747782pt;}
.y165{bottom:372.206000pt;}
.yb7{bottom:372.962666pt;}
.y83{bottom:374.323493pt;}
.y139{bottom:374.399387pt;}
.y112{bottom:374.399974pt;}
.ye1{bottom:376.516400pt;}
.y198{bottom:379.478800pt;}
.y3b{bottom:381.807440pt;}
.y19{bottom:385.285291pt;}
.y164{bottom:388.231493pt;}
.yb6{bottom:388.988160pt;}
.y138{bottom:390.348879pt;}
.y82{bottom:390.348987pt;}
.y111{bottom:390.349467pt;}
.y197{bottom:394.144000pt;}
.y3a{bottom:397.832933pt;}
.y38{bottom:397.833995pt;}
.y16{bottom:402.897025pt;}
.y18{bottom:402.897467pt;}
.y39{bottom:403.729067pt;}
.y163{bottom:404.180986pt;}
.yb5{bottom:405.013653pt;}
.y10f{bottom:406.373413pt;}
.y137{bottom:406.374373pt;}
.y81{bottom:406.374480pt;}
.y17{bottom:408.793600pt;}
.y196{bottom:408.808000pt;}
.y110{bottom:412.270800pt;}
.y37{bottom:413.783488pt;}
.y162{bottom:420.206480pt;}
.y15{bottom:420.434533pt;}
.yb4{bottom:420.963146pt;}
.y80{bottom:422.323973pt;}
.y10e{bottom:422.398907pt;}
.y134{bottom:422.399494pt;}
.y136{bottom:422.399867pt;}
.y195{bottom:423.472000pt;}
.y135{bottom:428.296000pt;}
.y36{bottom:429.808982pt;}
.y161{bottom:436.231973pt;}
.yb3{bottom:436.988640pt;}
.y194{bottom:438.136000pt;}
.y10d{bottom:438.348399pt;}
.y133{bottom:438.348987pt;}
.y7f{bottom:438.349467pt;}
.y14{bottom:443.111733pt;}
.y35{bottom:445.834475pt;}
.y160{bottom:452.181466pt;}
.y193{bottom:452.800000pt;}
.yb2{bottom:453.014133pt;}
.y7d{bottom:454.372080pt;}
.y10c{bottom:454.373893pt;}
.y132{bottom:454.374480pt;}
.y7e{bottom:460.270800pt;}
.y192{bottom:467.464000pt;}
.y15f{bottom:468.206960pt;}
.yb0{bottom:468.962053pt;}
.y7c{bottom:470.321573pt;}
.y10b{bottom:470.399387pt;}
.y131{bottom:470.399974pt;}
.yb1{bottom:474.935333pt;}
.y191{bottom:482.128000pt;}
.y15e{bottom:484.232453pt;}
.yaf{bottom:484.987546pt;}
.y7b{bottom:486.347067pt;}
.y10a{bottom:486.348879pt;}
.y12e{bottom:486.349173pt;}
.y130{bottom:486.349467pt;}
.y12f{bottom:492.321067pt;}
.y190{bottom:496.792000pt;}
.y15d{bottom:500.181946pt;}
.yae{bottom:501.013040pt;}
.y7a{bottom:502.372560pt;}
.y109{bottom:502.374373pt;}
.y12d{bottom:502.374667pt;}
.y12b{bottom:502.376267pt;}
.y12c{bottom:508.270800pt;}
.y18f{bottom:511.456000pt;}
.y15c{bottom:516.207440pt;}
.yad{bottom:516.962533pt;}
.y79{bottom:518.322053pt;}
.y107{bottom:518.399867pt;}
.y12a{bottom:518.401760pt;}
.y108{bottom:524.296000pt;}
.y18e{bottom:526.120000pt;}
.y13{bottom:528.451127pt;}
.y15b{bottom:532.232933pt;}
.yac{bottom:532.988026pt;}
.y78{bottom:534.347547pt;}
.y18d{bottom:540.784000pt;}
.y12{bottom:544.476620pt;}
.yab{bottom:549.013520pt;}
.y77{bottom:550.373040pt;}
.y15a{bottom:554.834533pt;}
.y18c{bottom:555.448000pt;}
.y14e{bottom:563.300667pt;}
.yaa{bottom:564.963013pt;}
.y76{bottom:566.322533pt;}
.y18b{bottom:570.036400pt;}
.ya9{bottom:580.988506pt;}
.y75{bottom:582.348027pt;}
.y11{bottom:583.783680pt;}
.y18a{bottom:584.700400pt;}
.ya8{bottom:597.014000pt;}
.y159{bottom:598.297493pt;}
.y74{bottom:598.297519pt;}
.y189{bottom:599.364400pt;}
.y10{bottom:599.809174pt;}
.y188{bottom:614.028400pt;}
.y158{bottom:614.322987pt;}
.y73{bottom:614.323013pt;}
.yf{bottom:615.834667pt;}
.ya7{bottom:619.615600pt;}
.y187{bottom:628.692400pt;}
.y157{bottom:630.348481pt;}
.y72{bottom:630.348507pt;}
.ye{bottom:631.784160pt;}
.y186{bottom:643.356400pt;}
.y156{bottom:646.297973pt;}
.y71{bottom:646.297999pt;}
.yd{bottom:647.809654pt;}
.y185{bottom:658.020400pt;}
.y155{bottom:662.323467pt;}
.y70{bottom:662.323493pt;}
.ya6{bottom:662.323974pt;}
.yc{bottom:663.835147pt;}
.y184{bottom:672.684400pt;}
.y154{bottom:678.348961pt;}
.y6f{bottom:678.348987pt;}
.ya5{bottom:678.349467pt;}
.yb{bottom:679.784640pt;}
.y183{bottom:687.348400pt;}
.y153{bottom:694.298453pt;}
.y6e{bottom:694.298479pt;}
.ya4{bottom:694.298960pt;}
.ya{bottom:695.810134pt;}
.y182{bottom:702.012400pt;}
.y105{bottom:704.504301pt;}
.y152{bottom:710.323947pt;}
.y6d{bottom:710.323973pt;}
.ya3{bottom:710.324454pt;}
.y9{bottom:711.835627pt;}
.y181{bottom:716.676400pt;}
.y104{bottom:717.883333pt;}
.y6a{bottom:726.347360pt;}
.y151{bottom:726.349441pt;}
.y6c{bottom:726.349467pt;}
.ya2{bottom:726.349947pt;}
.y8{bottom:727.785120pt;}
.y180{bottom:731.340400pt;}
.y6b{bottom:732.245467pt;}
.y103{bottom:740.944533pt;}
.y69{bottom:742.296853pt;}
.y150{bottom:742.298933pt;}
.ya1{bottom:742.299440pt;}
.y7{bottom:743.810614pt;}
.y17f{bottom:746.004400pt;}
.y14f{bottom:748.270667pt;}
.y102{bottom:755.608533pt;}
.y68{bottom:758.322347pt;}
.ya0{bottom:758.324934pt;}
.y6{bottom:759.836107pt;}
.y17e{bottom:760.668400pt;}
.y101{bottom:770.272533pt;}
.y67{bottom:774.347840pt;}
.y9f{bottom:774.350427pt;}
.y17d{bottom:775.258000pt;}
.y5{bottom:775.785600pt;}
.y100{bottom:784.936533pt;}
.y17c{bottom:789.922000pt;}
.y66{bottom:790.297333pt;}
.y9e{bottom:790.299920pt;}
.yff{bottom:799.600533pt;}
.y17b{bottom:804.586000pt;}
.y65{bottom:806.322827pt;}
.y9d{bottom:806.325414pt;}
.yfe{bottom:814.264533pt;}
.y17a{bottom:819.250000pt;}
.y64{bottom:822.348320pt;}
.y9c{bottom:822.350907pt;}
.yfd{bottom:828.928533pt;}
.y179{bottom:833.914000pt;}
.y63{bottom:838.297813pt;}
.y9b{bottom:838.300400pt;}
.y3{bottom:839.810933pt;}
.yfc{bottom:843.592533pt;}
.y4{bottom:846.916400pt;}
.y178{bottom:848.579200pt;}
.y62{bottom:854.323307pt;}
.y9a{bottom:854.325894pt;}
.y5b{bottom:856.590886pt;}
.yfb{bottom:858.256533pt;}
.y177{bottom:863.243200pt;}
.y5a{bottom:867.929791pt;}
.y61{bottom:870.348800pt;}
.y99{bottom:870.351387pt;}
.yfa{bottom:872.920533pt;}
.y176{bottom:877.908400pt;}
.y59{bottom:879.268695pt;}
.y60{bottom:886.298293pt;}
.y98{bottom:886.300880pt;}
.yf9{bottom:887.584533pt;}
.y58{bottom:890.607600pt;}
.y175{bottom:896.579333pt;}
.yf8{bottom:902.248533pt;}
.y5f{bottom:902.323787pt;}
.y97{bottom:902.326374pt;}
.y2{bottom:905.121333pt;}
.y5e{bottom:918.349280pt;}
.y96{bottom:918.351867pt;}
.y57{bottom:918.574915pt;}
.yf7{bottom:926.664933pt;}
.y56{bottom:930.594210pt;}
.y174{bottom:931.275333pt;}
.y1{bottom:931.804533pt;}
.y5d{bottom:934.298773pt;}
.y95{bottom:934.301360pt;}
.y55{bottom:942.613505pt;}
.y173{bottom:949.946267pt;}
.y5c{bottom:950.324267pt;}
.y94{bottom:950.326854pt;}
.yf6{bottom:951.080133pt;}
.y54{bottom:954.632800pt;}
.y53{bottom:982.903600pt;}
.yc7{bottom:992.276800pt;}
.ha{height:20.732760pt;}
.h8{height:24.459776pt;}
.hc{height:27.215611pt;}
.h4{height:29.436688pt;}
.hb{height:29.439632pt;}
.h9{height:31.103611pt;}
.he{height:33.024000pt;}
.hd{height:34.992000pt;}
.h7{height:36.693700pt;}
.h5{height:36.800368pt;}
.h6{height:38.880389pt;}
.h3{height:44.159632pt;}
.h2{height:66.240000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:66.141733pt;}
.xb{left:82.166933pt;}
.x15{left:83.149600pt;}
.x16{left:99.175094pt;}
.x7{left:113.914933pt;}
.x8{left:131.754267pt;}
.x21{left:177.637600pt;}
.x17{left:188.447200pt;}
.x22{left:189.883467pt;}
.x19{left:198.122800pt;}
.x18{left:202.733867pt;}
.xc{left:205.303867pt;}
.x2{left:218.683333pt;}
.x5{left:222.009333pt;}
.xa{left:228.585733pt;}
.x6{left:232.894400pt;}
.x25{left:248.768400pt;}
.x3{left:270.614133pt;}
.xd{left:280.289733pt;}
.xe{left:292.988933pt;}
.x2e{left:319.218800pt;}
.x2f{left:333.278667pt;}
.x24{left:355.577867pt;}
.xf{left:358.299067pt;}
.x23{left:369.788800pt;}
.x9{left:374.853467pt;}
.x1e{left:391.861333pt;}
.x10{left:396.851413pt;}
.x13{left:400.856533pt;}
.x2b{left:412.875145pt;}
.x1a{left:413.859574pt;}
.x30{left:419.829733pt;}
.x4{left:428.522667pt;}
.x1b{left:429.885067pt;}
.x31{left:434.871733pt;}
.x29{left:448.025067pt;}
.x1f{left:453.770000pt;}
.x2a{left:458.380933pt;}
.x20{left:480.680267pt;}
.x14{left:563.905333pt;}
.x11{left:609.864400pt;}
.x12{left:622.639200pt;}
.x28{left:639.344667pt;}
.x26{left:649.776267pt;}
.x27{left:663.836000pt;}
.x2c{left:672.453333pt;}
.x2d{left:689.461200pt;}
.x1d{left:693.543067pt;}
.x1c{left:717.580933pt;}
}




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