
    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_f795e6eec5cf22e72cb2c4bc.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f795e6eec5cf22e72cb2c4bc.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_de86fe67883be04379306651.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.719000;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_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.203000;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_0939dc0e0062e02992b4ef6d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946289;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_79390b12d68d88451311e669.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958496;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_5015173f552ad52671e7845d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.719000;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_c881b7a2fd63a0a7956fba5a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.788086;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_f5b84be0dc66eb15212abd5e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.946289;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_5ef513e397b1959527a8538d.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c3102bd4a44d51b743450230.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.946289;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_401eafaeebe2408d04dbde69.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.268000;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_e9a7a518950ce5912824a2fb.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.349000;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_6eca21a1d57ea1c9e6c86ae9.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.362000;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_f1dc3b2bdbf962b9f1e0a591.woff2')format("woff");}.fff{font-family:fff;line-height:1.200885;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_c3102bd4a44d51b743450230.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.946289;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_9dd52d816880dfd02704250a.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.384000;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_99b7c554e9f454d52be4d20a.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.510000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_806cf4dee9ccdd0b037cb09a.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.392000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_bc11be171c0b347441a2a37c.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.411000;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(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);}
.va{vertical-align:-24.737999px;}
.v2{vertical-align:-20.400000px;}
.v7{vertical-align:-18.359436px;}
.v3{vertical-align:-17.340000px;}
.v5{vertical-align:-10.835927px;}
.vc{vertical-align:-8.387780px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:10.800110px;}
.v9{vertical-align:14.280029px;}
.v4{vertical-align:17.340000px;}
.v6{vertical-align:18.353982px;}
.v1{vertical-align:20.400000px;}
.vd{vertical-align:22.512000px;}
.vb{vertical-align:44.981999px;}
.ls19{letter-spacing:-2.040000px;}
.ls9d{letter-spacing:-1.755000px;}
.ls94{letter-spacing:-1.350000px;}
.ls92{letter-spacing:-1.305000px;}
.ls50{letter-spacing:-0.918000px;}
.ls17{letter-spacing:-0.900000px;}
.lsa2{letter-spacing:-0.855000px;}
.ls98{letter-spacing:-0.765000px;}
.lsa3{letter-spacing:-0.720000px;}
.ls82{letter-spacing:-0.648000px;}
.lsa1{letter-spacing:-0.630000px;}
.ls75{letter-spacing:-0.594000px;}
.ls18{letter-spacing:-0.585000px;}
.ls4d{letter-spacing:-0.540000px;}
.ls91{letter-spacing:-0.495000px;}
.ls84{letter-spacing:-0.486000px;}
.ls3e{letter-spacing:-0.432000px;}
.ls7a{letter-spacing:-0.420000px;}
.lsa0{letter-spacing:-0.405000px;}
.ls4b{letter-spacing:-0.378000px;}
.ls9e{letter-spacing:-0.360000px;}
.ls4f{letter-spacing:-0.351000px;}
.ls79{letter-spacing:-0.336000px;}
.ls8c{letter-spacing:-0.324000px;}
.ls8d{letter-spacing:-0.315000px;}
.ls3f{letter-spacing:-0.270000px;}
.ls97{letter-spacing:-0.225000px;}
.ls5c{letter-spacing:-0.216000px;}
.ls7c{letter-spacing:-0.210000px;}
.ls8f{letter-spacing:-0.180000px;}
.ls8b{letter-spacing:-0.175500px;}
.ls45{letter-spacing:-0.162000px;}
.ls1f{letter-spacing:-0.153000px;}
.ls5d{letter-spacing:-0.140400px;}
.ls7d{letter-spacing:-0.136500px;}
.ls9f{letter-spacing:-0.135000px;}
.ls71{letter-spacing:-0.120000px;}
.ls41{letter-spacing:-0.108000px;}
.ls46{letter-spacing:-0.105300px;}
.ls20{letter-spacing:-0.099450px;}
.ls42{letter-spacing:-0.070200px;}
.ls81{letter-spacing:-0.060000px;}
.ls43{letter-spacing:-0.054000px;}
.ls93{letter-spacing:-0.045000px;}
.ls4e{letter-spacing:-0.035100px;}
.ls16{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.000084px;}
.ls6a{letter-spacing:0.017403px;}
.ls29{letter-spacing:0.033150px;}
.ls5e{letter-spacing:0.034324px;}
.ls76{letter-spacing:0.035100px;}
.ls90{letter-spacing:0.045000px;}
.ls15{letter-spacing:0.051000px;}
.ls3d{letter-spacing:0.052648px;}
.ls69{letter-spacing:0.053999px;}
.ls47{letter-spacing:0.054000px;}
.lsd{letter-spacing:0.059250px;}
.ls5b{letter-spacing:0.060000px;}
.ls24{letter-spacing:0.066300px;}
.ls4c{letter-spacing:0.070200px;}
.ls57{letter-spacing:0.072477px;}
.ls7e{letter-spacing:0.075625px;}
.ls32{letter-spacing:0.082115px;}
.ls95{letter-spacing:0.090000px;}
.ls23{letter-spacing:0.099450px;}
.lsc{letter-spacing:0.102000px;}
.ls74{letter-spacing:0.105300px;}
.ls5f{letter-spacing:0.107998px;}
.ls33{letter-spacing:0.108000px;}
.ls2f{letter-spacing:0.113365px;}
.ls2e{letter-spacing:0.113548px;}
.ls7b{letter-spacing:0.126000px;}
.ls87{letter-spacing:0.135000px;}
.ls38{letter-spacing:0.140398px;}
.ls2d{letter-spacing:0.140400px;}
.ls13{letter-spacing:0.153000px;}
.ls3a{letter-spacing:0.162000px;}
.ls22{letter-spacing:0.165750px;}
.ls4a{letter-spacing:0.175500px;}
.ls9c{letter-spacing:0.180000px;}
.ls61{letter-spacing:0.204429px;}
.ls56{letter-spacing:0.210600px;}
.ls80{letter-spacing:0.210602px;}
.ls30{letter-spacing:0.216000px;}
.ls1c{letter-spacing:0.232050px;}
.ls52{letter-spacing:0.237593px;}
.ls34{letter-spacing:0.245700px;}
.ls51{letter-spacing:0.253792px;}
.ls12{letter-spacing:0.255000px;}
.ls49{letter-spacing:0.270000px;}
.ls7f{letter-spacing:0.280799px;}
.ls37{letter-spacing:0.280800px;}
.ls58{letter-spacing:0.300000px;}
.ls10{letter-spacing:0.306000px;}
.ls2b{letter-spacing:0.307335px;}
.ls8e{letter-spacing:0.315000px;}
.ls78{letter-spacing:0.315900px;}
.ls60{letter-spacing:0.323998px;}
.ls3c{letter-spacing:0.324000px;}
.ls26{letter-spacing:0.331500px;}
.ls83{letter-spacing:0.351000px;}
.lse{letter-spacing:0.357000px;}
.ls3b{letter-spacing:0.360000px;}
.ls35{letter-spacing:0.378000px;}
.ls62{letter-spacing:0.378001px;}
.lsa{letter-spacing:0.388050px;}
.ls99{letter-spacing:0.405000px;}
.ls54{letter-spacing:0.415800px;}
.ls59{letter-spacing:0.420000px;}
.ls86{letter-spacing:0.421200px;}
.ls21{letter-spacing:0.430950px;}
.ls36{letter-spacing:0.432000px;}
.ls85{letter-spacing:0.438750px;}
.ls77{letter-spacing:0.456300px;}
.ls2c{letter-spacing:0.486000px;}
.ls88{letter-spacing:0.495000px;}
.ls25{letter-spacing:0.510000px;}
.ls66{letter-spacing:0.523787px;}
.ls27{letter-spacing:0.530400px;}
.lsb{letter-spacing:0.537450px;}
.ls5a{letter-spacing:0.540000px;}
.ls1e{letter-spacing:0.563550px;}
.ls96{letter-spacing:0.585000px;}
.ls44{letter-spacing:0.594000px;}
.ls9{letter-spacing:0.612000px;}
.ls9a{letter-spacing:0.630000px;}
.ls67{letter-spacing:0.647992px;}
.ls39{letter-spacing:0.648000px;}
.ls53{letter-spacing:0.660000px;}
.ls11{letter-spacing:0.663000px;}
.ls1d{letter-spacing:0.696150px;}
.ls48{letter-spacing:0.702000px;}
.ls8{letter-spacing:0.719250px;}
.ls7{letter-spacing:0.719850px;}
.ls9b{letter-spacing:0.720000px;}
.ls4{letter-spacing:0.725850px;}
.ls28{letter-spacing:0.729300px;}
.ls55{letter-spacing:0.750605px;}
.ls40{letter-spacing:0.756000px;}
.ls89{letter-spacing:0.765000px;}
.ls8a{letter-spacing:0.810000px;}
.ls14{letter-spacing:0.816000px;}
.ls6{letter-spacing:0.820050px;}
.ls2{letter-spacing:0.835050px;}
.ls1b{letter-spacing:0.867000px;}
.ls68{letter-spacing:0.907201px;}
.lsa5{letter-spacing:0.918000px;}
.ls64{letter-spacing:0.966603px;}
.lsa4{letter-spacing:0.972000px;}
.ls72{letter-spacing:1.026000px;}
.lsf{letter-spacing:1.071000px;}
.ls3{letter-spacing:1.122000px;}
.ls63{letter-spacing:1.188000px;}
.ls73{letter-spacing:1.200000px;}
.ls5{letter-spacing:1.275000px;}
.ls65{letter-spacing:1.295999px;}
.ls1a{letter-spacing:1.326000px;}
.ls0{letter-spacing:2.592000px;}
.ls2a{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.ls6f{letter-spacing:79.722985px;}
.ls6d{letter-spacing:79.723351px;}
.ls70{letter-spacing:83.312381px;}
.ls6b{letter-spacing:135.270593px;}
.ls6c{letter-spacing:142.926005px;}
.ls6e{letter-spacing:175.391995px;}
.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;}
}
.ws8{word-spacing:-54.000000px;}
.ws2{word-spacing:-15.067500px;}
.ws3b{word-spacing:-14.700000px;}
.ws73{word-spacing:-13.596000px;}
.ws49{word-spacing:-13.500000px;}
.wsaf{word-spacing:-13.068000px;}
.wsac{word-spacing:-12.798000px;}
.wsb9{word-spacing:-12.744000px;}
.wsb7{word-spacing:-12.636000px;}
.wsae{word-spacing:-12.582000px;}
.ws48{word-spacing:-12.528000px;}
.ws1{word-spacing:-12.480000px;}
.ws45{word-spacing:-12.474000px;}
.ws82{word-spacing:-12.420000px;}
.ws43{word-spacing:-12.366000px;}
.ws6{word-spacing:-12.360000px;}
.ws80{word-spacing:-12.312000px;}
.ws3d{word-spacing:-12.258000px;}
.ws0{word-spacing:-12.192000px;}
.ws7f{word-spacing:-12.150000px;}
.wsb8{word-spacing:-12.096000px;}
.ws72{word-spacing:-11.988000px;}
.ws4b{word-spacing:-11.826000px;}
.ws84{word-spacing:-11.772000px;}
.ws3{word-spacing:-11.460000px;}
.ws7{word-spacing:-10.320000px;}
.wscf{word-spacing:-10.305000px;}
.ws16{word-spacing:-10.200000px;}
.wsbb{word-spacing:-10.125000px;}
.wsda{word-spacing:-10.035000px;}
.wsd8{word-spacing:-9.675000px;}
.wsd4{word-spacing:-9.630000px;}
.wsd0{word-spacing:-9.450000px;}
.ws89{word-spacing:-9.114000px;}
.wsbc{word-spacing:-9.000000px;}
.wsbd{word-spacing:-8.955000px;}
.ws86{word-spacing:-8.424000px;}
.wsad{word-spacing:-8.318700px;}
.ws87{word-spacing:-8.283600px;}
.ws42{word-spacing:-8.248500px;}
.ws3f{word-spacing:-8.213400px;}
.ws81{word-spacing:-8.178300px;}
.ws44{word-spacing:-8.143200px;}
.wsab{word-spacing:-8.108100px;}
.ws83{word-spacing:-8.073000px;}
.ws46{word-spacing:-8.037900px;}
.ws4{word-spacing:-8.034000px;}
.ws85{word-spacing:-8.002800px;}
.ws3e{word-spacing:-7.967700px;}
.ws47{word-spacing:-7.932600px;}
.ws40{word-spacing:-7.897500px;}
.ws41{word-spacing:-7.862400px;}
.ws71{word-spacing:-7.827300px;}
.wsba{word-spacing:-7.792200px;}
.ws4a{word-spacing:-7.616700px;}
.ws5{word-spacing:-7.449000px;}
.ws14{word-spacing:-7.359300px;}
.wsa{word-spacing:-7.326150px;}
.ws3c{word-spacing:-7.230600px;}
.wsb{word-spacing:-7.193550px;}
.ws13{word-spacing:-7.160400px;}
.wsd{word-spacing:-7.060950px;}
.ws12{word-spacing:-6.961500px;}
.ws9{word-spacing:-6.862050px;}
.wse{word-spacing:-6.795750px;}
.ws10{word-spacing:-6.729450px;}
.ws11{word-spacing:-6.696300px;}
.ws15{word-spacing:-6.663150px;}
.wsf{word-spacing:-6.630000px;}
.wsc{word-spacing:-6.530550px;}
.ws9b{word-spacing:-5.787600px;}
.ws77{word-spacing:-5.508000px;}
.wsa8{word-spacing:-3.864000px;}
.ws2a{word-spacing:-3.570000px;}
.ws34{word-spacing:-3.519000px;}
.ws38{word-spacing:-2.499000px;}
.ws30{word-spacing:-2.193000px;}
.ws37{word-spacing:-2.040000px;}
.ws6b{word-spacing:-1.890000px;}
.ws4f{word-spacing:-1.836000px;}
.ws51{word-spacing:-1.782000px;}
.ws1f{word-spacing:-1.734000px;}
.wsc0{word-spacing:-1.728000px;}
.ws66{word-spacing:-1.620000px;}
.wsd6{word-spacing:-1.575000px;}
.wsb0{word-spacing:-1.566000px;}
.ws29{word-spacing:-1.530000px;}
.ws79{word-spacing:-1.458000px;}
.wsd2{word-spacing:-1.440000px;}
.ws52{word-spacing:-1.404000px;}
.ws6f{word-spacing:-1.350000px;}
.wsb4{word-spacing:-1.296000px;}
.ws3a{word-spacing:-1.275000px;}
.ws4e{word-spacing:-1.242000px;}
.wsa4{word-spacing:-1.200000px;}
.ws59{word-spacing:-1.188000px;}
.ws21{word-spacing:-1.173000px;}
.wsc7{word-spacing:-1.170000px;}
.ws63{word-spacing:-1.134000px;}
.wsd5{word-spacing:-1.080000px;}
.wsaa{word-spacing:-1.050000px;}
.wsc2{word-spacing:-1.035000px;}
.wsa2{word-spacing:-1.026000px;}
.ws64{word-spacing:-0.972000px;}
.wsa9{word-spacing:-0.966000px;}
.ws18{word-spacing:-0.960000px;}
.wsa7{word-spacing:-0.924000px;}
.ws35{word-spacing:-0.918000px;}
.ws25{word-spacing:-0.867000px;}
.ws70{word-spacing:-0.864000px;}
.wscd{word-spacing:-0.855000px;}
.ws7e{word-spacing:-0.810000px;}
.ws7b{word-spacing:-0.756000px;}
.wsc3{word-spacing:-0.720000px;}
.ws31{word-spacing:-0.714000px;}
.ws5c{word-spacing:-0.702000px;}
.wsc8{word-spacing:-0.675000px;}
.ws78{word-spacing:-0.660000px;}
.ws4d{word-spacing:-0.648000px;}
.ws50{word-spacing:-0.594000px;}
.wsa6{word-spacing:-0.540000px;}
.ws22{word-spacing:-0.510000px;}
.wsc1{word-spacing:-0.495000px;}
.ws68{word-spacing:-0.486000px;}
.wsb6{word-spacing:-0.456300px;}
.ws76{word-spacing:-0.432000px;}
.ws74{word-spacing:-0.420000px;}
.ws2d{word-spacing:-0.408000px;}
.ws62{word-spacing:-0.378000px;}
.ws69{word-spacing:-0.360000px;}
.ws2f{word-spacing:-0.357000px;}
.ws6a{word-spacing:-0.324000px;}
.wsb2{word-spacing:-0.315900px;}
.wsc4{word-spacing:-0.315000px;}
.ws27{word-spacing:-0.306000px;}
.ws7d{word-spacing:-0.300000px;}
.ws5e{word-spacing:-0.280800px;}
.ws53{word-spacing:-0.270000px;}
.ws2e{word-spacing:-0.255000px;}
.ws54{word-spacing:-0.245700px;}
.ws61{word-spacing:-0.216000px;}
.wse1{word-spacing:-0.180000px;}
.ws65{word-spacing:-0.175500px;}
.ws5d{word-spacing:-0.162000px;}
.ws32{word-spacing:-0.153000px;}
.ws7a{word-spacing:-0.108000px;}
.ws33{word-spacing:-0.102000px;}
.wsdc{word-spacing:-0.090000px;}
.ws75{word-spacing:-0.060000px;}
.ws4c{word-spacing:-0.054000px;}
.ws23{word-spacing:-0.051000px;}
.wsd9{word-spacing:-0.045000px;}
.ws98{word-spacing:-0.035100px;}
.ws17{word-spacing:0.000000px;}
.wscc{word-spacing:0.045000px;}
.ws6d{word-spacing:0.054000px;}
.wsb1{word-spacing:0.060000px;}
.ws56{word-spacing:0.070200px;}
.wsdd{word-spacing:0.090000px;}
.ws5a{word-spacing:0.105300px;}
.ws6c{word-spacing:0.108000px;}
.wsa1{word-spacing:0.120000px;}
.ws28{word-spacing:0.153000px;}
.ws5b{word-spacing:0.162000px;}
.wsde{word-spacing:0.180000px;}
.ws24{word-spacing:0.204000px;}
.wsb5{word-spacing:0.216000px;}
.wsd1{word-spacing:0.225000px;}
.ws5f{word-spacing:0.270000px;}
.wse2{word-spacing:0.315000px;}
.ws57{word-spacing:0.324000px;}
.wsce{word-spacing:0.360000px;}
.ws58{word-spacing:0.378000px;}
.wsdb{word-spacing:0.405000px;}
.ws67{word-spacing:0.432000px;}
.wscb{word-spacing:0.450000px;}
.wsbf{word-spacing:0.486000px;}
.ws1e{word-spacing:0.510000px;}
.ws6e{word-spacing:0.540000px;}
.ws1a{word-spacing:0.585000px;}
.ws60{word-spacing:0.594000px;}
.ws39{word-spacing:0.612000px;}
.ws55{word-spacing:0.648000px;}
.ws2b{word-spacing:0.663000px;}
.wsdf{word-spacing:0.675000px;}
.wsd7{word-spacing:0.720000px;}
.wsc5{word-spacing:0.855000px;}
.ws19{word-spacing:0.900000px;}
.wsbe{word-spacing:0.918000px;}
.wsca{word-spacing:0.945000px;}
.wsb3{word-spacing:0.972000px;}
.wse0{word-spacing:0.990000px;}
.wsc9{word-spacing:1.035000px;}
.ws20{word-spacing:1.071000px;}
.ws7c{word-spacing:1.080000px;}
.wse3{word-spacing:1.188000px;}
.wse4{word-spacing:1.242000px;}
.wsa3{word-spacing:1.296000px;}
.wsc6{word-spacing:1.350000px;}
.ws2c{word-spacing:1.581000px;}
.ws26{word-spacing:1.632000px;}
.ws36{word-spacing:1.683000px;}
.wsa5{word-spacing:1.728000px;}
.wsd3{word-spacing:1.755000px;}
.ws1d{word-spacing:1.785000px;}
.ws1c{word-spacing:1.836000px;}
.ws1b{word-spacing:2.193000px;}
.ws9d{word-spacing:27.467995px;}
.ws9c{word-spacing:33.936005px;}
.ws9a{word-spacing:44.856035px;}
.ws9e{word-spacing:59.388003px;}
.wsa0{word-spacing:59.640002px;}
.ws90{word-spacing:60.101992px;}
.ws8f{word-spacing:61.235996px;}
.ws9f{word-spacing:66.401995px;}
.ws93{word-spacing:72.953996px;}
.ws88{word-spacing:75.936004px;}
.ws95{word-spacing:80.261990px;}
.ws97{word-spacing:85.642196px;}
.ws91{word-spacing:93.996004px;}
.ws94{word-spacing:95.718004px;}
.ws8c{word-spacing:100.421992px;}
.ws99{word-spacing:104.958002px;}
.ws8b{word-spacing:118.944004px;}
.ws8e{word-spacing:130.410000px;}
.ws92{word-spacing:132.258006px;}
.ws8d{word-spacing:135.491992px;}
.ws8a{word-spacing:175.727994px;}
.ws96{word-spacing:189.839996px;}
._f{margin-left:-2072.742038px;}
._3e{margin-left:-10.710000px;}
._4{margin-left:-9.555000px;}
._9{margin-left:-7.873800px;}
._3{margin-left:-6.594000px;}
._2{margin-left:-4.596000px;}
._1{margin-left:-3.213600px;}
._0{margin-left:-1.776000px;}
._5{width:1.875000px;}
._8{width:3.626100px;}
._39{width:4.992000px;}
._c{width:6.624600px;}
._3b{width:7.875000px;}
._40{width:9.026100px;}
._3c{width:10.305000px;}
._3a{width:12.285000px;}
._3d{width:13.500000px;}
._31{width:15.503998px;}
._3f{width:17.595002px;}
._10{width:38.079895px;}
._6{width:41.216400px;}
._7{width:42.289800px;}
._a{width:47.741991px;}
._b{width:49.490380px;}
._1e{width:61.319996px;}
._35{width:69.677995px;}
._12{width:79.926006px;}
._11{width:83.159992px;}
._1a{width:86.562000px;}
._37{width:89.334003px;}
._2e{width:93.900014px;}
._28{width:98.573997px;}
._36{width:101.682010px;}
._26{width:104.061004px;}
._2d{width:105.150008px;}
._34{width:106.973990px;}
._23{width:109.745992px;}
._30{width:110.786392px;}
._20{width:113.778005px;}
._2c{width:116.298009px;}
._2b{width:120.509991px;}
._38{width:121.869625px;}
._27{width:124.571996px;}
._25{width:127.301999px;}
._1c{width:129.461992px;}
._1b{width:131.249994px;}
._17{width:133.938004px;}
._13{width:136.751996px;}
._1f{width:139.944000px;}
._24{width:145.025993px;}
._2a{width:151.703996px;}
._16{width:155.777993px;}
._1d{width:157.037991px;}
._15{width:160.104000px;}
._22{width:165.311996px;}
._18{width:171.527994px;}
._14{width:174.804004px;}
._21{width:177.197992px;}
._29{width:201.263996px;}
._19{width:206.934000px;}
._33{width:243.023985px;}
._2f{width:250.109997px;}
._e{width:253.175982px;}
._d{width:337.974016px;}
._32{width:687.762005px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(131,144,151);}
.fsc{font-size:27.300001px;}
.fs6{font-size:33.150000px;}
.fs9{font-size:35.099999px;}
.fs4{font-size:39.000000px;}
.fsb{font-size:42.000000px;}
.fsd{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs7{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsa{font-size:66.000000px;}
.fs8{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:27.177600px;}
.y1{bottom:27.197850px;}
.y3c{bottom:27.197851px;}
.y36{bottom:68.313900px;}
.y128{bottom:68.551502px;}
.ybd{bottom:68.555999px;}
.y7c{bottom:69.302997px;}
.ydd{bottom:72.315004px;}
.y178{bottom:81.640817px;}
.y35{bottom:83.307900px;}
.y127{bottom:83.552997px;}
.ybc{bottom:83.554498px;}
.y7b{bottom:84.301496px;}
.ydc{bottom:87.313503px;}
.y1bf{bottom:94.062002px;}
.y177{bottom:94.387067px;}
.y34{bottom:98.307900px;}
.y126{bottom:98.551496px;}
.ybb{bottom:98.552997px;}
.y7a{bottom:99.302997px;}
.ydb{bottom:102.312002px;}
.y176{bottom:107.133317px;}
.y1be{bottom:109.060501px;}
.y133{bottom:110.745451px;}
.y33{bottom:113.307900px;}
.yba{bottom:113.551496px;}
.y125{bottom:113.565004px;}
.y79{bottom:114.301496px;}
.yda{bottom:117.310501px;}
.y175{bottom:119.879567px;}
.y132{bottom:125.748452px;}
.y32{bottom:128.307900px;}
.yb9{bottom:128.549995px;}
.y124{bottom:128.563503px;}
.y78{bottom:129.301496px;}
.y1bd{bottom:130.809000px;}
.yd9{bottom:132.309000px;}
.y174{bottom:132.625817px;}
.y131{bottom:140.746952px;}
.y31{bottom:143.307900px;}
.y123{bottom:143.562002px;}
.y77{bottom:144.305999px;}
.y173{bottom:145.372067px;}
.y1bc{bottom:145.807499px;}
.yd8{bottom:147.307499px;}
.y130{bottom:155.745451px;}
.y172{bottom:158.118317px;}
.y30{bottom:158.307900px;}
.y122{bottom:158.560501px;}
.yb8{bottom:158.618245px;}
.y76{bottom:159.304498px;}
.y1bb{bottom:160.805999px;}
.yd7{bottom:162.305999px;}
.y12f{bottom:170.743950px;}
.y171{bottom:170.864568px;}
.y2f{bottom:173.307900px;}
.y121{bottom:173.559000px;}
.yb7{bottom:173.616744px;}
.y75{bottom:174.302997px;}
.y1ba{bottom:175.804498px;}
.yd6{bottom:177.304498px;}
.y170{bottom:183.610818px;}
.y2e{bottom:188.307900px;}
.y120{bottom:188.557499px;}
.yb6{bottom:188.615243px;}
.y74{bottom:189.301496px;}
.y1b9{bottom:190.802997px;}
.yd5{bottom:192.302997px;}
.y16f{bottom:196.357068px;}
.y2d{bottom:203.307900px;}
.y11f{bottom:203.555999px;}
.yb5{bottom:203.613742px;}
.y73{bottom:204.301496px;}
.y1b8{bottom:205.801496px;}
.yd4{bottom:207.301496px;}
.y16e{bottom:209.103318px;}
.y2c{bottom:218.307900px;}
.y11e{bottom:218.554498px;}
.yb4{bottom:218.612241px;}
.y72{bottom:219.301496px;}
.y16d{bottom:221.849568px;}
.yd3{bottom:222.301496px;}
.y1b7{bottom:227.549995px;}
.y2b{bottom:233.307900px;}
.y11d{bottom:233.552997px;}
.yb3{bottom:233.610741px;}
.y71{bottom:234.299995px;}
.y16c{bottom:234.595818px;}
.yd2{bottom:237.301496px;}
.y1b6{bottom:242.549995px;}
.y16b{bottom:247.342068px;}
.y2a{bottom:248.307900px;}
.y11c{bottom:248.551496px;}
.yb2{bottom:248.610741px;}
.yd1{bottom:252.302997px;}
.y16a{bottom:260.088318px;}
.y29{bottom:263.307900px;}
.y11b{bottom:263.557499px;}
.y70{bottom:265.558653px;}
.yd0{bottom:267.301496px;}
.y169{bottom:272.834568px;}
.y1b5{bottom:272.888554px;}
.y28{bottom:278.307900px;}
.y11a{bottom:278.555999px;}
.yb1{bottom:278.676149px;}
.y6f{bottom:280.557152px;}
.ycf{bottom:282.301496px;}
.y168{bottom:285.580819px;}
.y1b4{bottom:287.887053px;}
.y27{bottom:293.307900px;}
.y119{bottom:293.554498px;}
.yb0{bottom:293.674648px;}
.y6e{bottom:295.555651px;}
.yce{bottom:297.301496px;}
.y167{bottom:298.327069px;}
.y1b3{bottom:302.885553px;}
.y26{bottom:308.307900px;}
.y118{bottom:308.552997px;}
.yaf{bottom:308.673147px;}
.y6d{bottom:310.554150px;}
.y166{bottom:311.073319px;}
.ycd{bottom:312.299995px;}
.y1b2{bottom:317.884052px;}
.y25{bottom:323.313900px;}
.y117{bottom:323.551496px;}
.yae{bottom:323.679150px;}
.y165{bottom:323.819569px;}
.y6c{bottom:325.552649px;}
.y1b1{bottom:332.882551px;}
.y164{bottom:336.565819px;}
.y24{bottom:338.307900px;}
.y116{bottom:338.559023px;}
.yad{bottom:338.677649px;}
.y6b{bottom:340.551149px;}
.ycc{bottom:341.292140px;}
.y1b0{bottom:347.881050px;}
.y163{bottom:349.312069px;}
.y23{bottom:353.307900px;}
.y115{bottom:353.557522px;}
.yac{bottom:353.676149px;}
.y6a{bottom:355.549648px;}
.ycb{bottom:356.290640px;}
.y162{bottom:362.058319px;}
.y1af{bottom:362.881050px;}
.y22{bottom:368.307900px;}
.y114{bottom:368.556022px;}
.yab{bottom:368.674648px;}
.y69{bottom:370.548147px;}
.yca{bottom:371.292140px;}
.y161{bottom:374.804569px;}
.y21{bottom:383.307900px;}
.y113{bottom:383.554521px;}
.yaa{bottom:383.673147px;}
.y68{bottom:385.546646px;}
.yc9{bottom:386.290640px;}
.y12e{bottom:386.763444px;}
.y160{bottom:387.550819px;}
.y1ae{bottom:393.213583px;}
.y20{bottom:398.307900px;}
.y112{bottom:398.553020px;}
.ya9{bottom:398.674648px;}
.y15f{bottom:400.297070px;}
.y67{bottom:400.546646px;}
.yc8{bottom:401.292140px;}
.y12d{bottom:401.761943px;}
.y1ad{bottom:408.212082px;}
.y15e{bottom:413.043320px;}
.y1f{bottom:413.307900px;}
.y111{bottom:413.551519px;}
.ya8{bottom:413.673147px;}
.yc7{bottom:416.290640px;}
.y12c{bottom:416.760442px;}
.y1ac{bottom:423.212082px;}
.y15d{bottom:425.793320px;}
.y1e{bottom:428.307900px;}
.y110{bottom:428.551519px;}
.ya7{bottom:428.680651px;}
.yc6{bottom:431.293641px;}
.y12b{bottom:431.758942px;}
.y66{bottom:431.794821px;}
.y1d{bottom:443.307900px;}
.y10f{bottom:443.553020px;}
.ya6{bottom:443.679150px;}
.yc5{bottom:446.292140px;}
.y65{bottom:446.799323px;}
.y1ab{bottom:453.730768px;}
.y1c{bottom:458.307900px;}
.y10e{bottom:458.551519px;}
.ya5{bottom:458.677649px;}
.y15c{bottom:458.802325px;}
.yc4{bottom:461.290640px;}
.y64{bottom:461.797822px;}
.y1aa{bottom:466.477018px;}
.y1b{bottom:473.307900px;}
.y10d{bottom:473.550018px;}
.ya4{bottom:473.676149px;}
.y15b{bottom:473.800824px;}
.yc3{bottom:476.292140px;}
.y63{bottom:476.796321px;}
.y1a9{bottom:479.223269px;}
.y1a{bottom:488.307900px;}
.y10c{bottom:488.550018px;}
.ya3{bottom:488.674648px;}
.y15a{bottom:488.799323px;}
.yc2{bottom:491.290640px;}
.y62{bottom:491.794821px;}
.y1a8{bottom:491.969519px;}
.ya2{bottom:503.673147px;}
.y159{bottom:503.797822px;}
.y1a7{bottom:504.715769px;}
.yc1{bottom:506.289139px;}
.y61{bottom:506.794821px;}
.y19{bottom:507.636900px;}
.y1a6{bottom:517.462019px;}
.y10b{bottom:517.891640px;}
.ya1{bottom:518.691157px;}
.y158{bottom:518.796321px;}
.y60{bottom:521.797822px;}
.y1a5{bottom:530.208269px;}
.y10a{bottom:532.890139px;}
.ya0{bottom:533.689656px;}
.y157{bottom:533.794821px;}
.yc0{bottom:535.279806px;}
.y5f{bottom:536.796321px;}
.y1a4{bottom:542.954519px;}
.y18{bottom:545.949300px;}
.y109{bottom:547.888638px;}
.y9f{bottom:548.688155px;}
.y156{bottom:548.797822px;}
.ybf{bottom:550.279806px;}
.y5e{bottom:551.794821px;}
.y1a3{bottom:555.700769px;}
.y17{bottom:562.446300px;}
.y108{bottom:562.887137px;}
.y9e{bottom:563.686654px;}
.y155{bottom:563.796321px;}
.ybe{bottom:565.278305px;}
.y5d{bottom:566.797822px;}
.y1a2{bottom:568.447019px;}
.y107{bottom:577.885636px;}
.y9d{bottom:578.685153px;}
.y154{bottom:578.794821px;}
.y16{bottom:578.943300px;}
.y1a1{bottom:581.193269px;}
.y5c{bottom:581.796321px;}
.y106{bottom:592.884136px;}
.y9c{bottom:593.683653px;}
.y153{bottom:593.796321px;}
.y1a0{bottom:593.939520px;}
.y15{bottom:595.440300px;}
.y5b{bottom:596.794821px;}
.y19f{bottom:606.685770px;}
.y105{bottom:607.882635px;}
.y9b{bottom:608.682152px;}
.y152{bottom:608.794821px;}
.y5a{bottom:611.797822px;}
.y14{bottom:611.937300px;}
.y19e{bottom:619.432020px;}
.y104{bottom:622.881134px;}
.yfe{bottom:623.218807px;}
.y9a{bottom:623.680651px;}
.y151{bottom:623.797822px;}
.y59{bottom:626.796321px;}
.y13{bottom:628.434300px;}
.y19d{bottom:632.178270px;}
.yfd{bottom:638.217306px;}
.y99{bottom:638.679150px;}
.y150{bottom:638.796321px;}
.y58{bottom:641.794821px;}
.y19c{bottom:644.924520px;}
.y103{bottom:652.215160px;}
.yfc{bottom:653.215805px;}
.y98{bottom:653.677649px;}
.y14f{bottom:653.794821px;}
.y57{bottom:656.794821px;}
.y19b{bottom:657.670770px;}
.y12{bottom:658.434300px;}
.y102{bottom:667.213659px;}
.y97{bottom:668.676149px;}
.y14e{bottom:668.811284px;}
.y19a{bottom:670.417020px;}
.y56{bottom:671.799323px;}
.y10{bottom:676.434300px;}
.y11{bottom:681.534300px;}
.y101{bottom:682.212158px;}
.y199{bottom:683.163270px;}
.yfa{bottom:683.410805px;}
.yfb{bottom:683.421306px;}
.y96{bottom:683.674648px;}
.y14d{bottom:683.809783px;}
.y55{bottom:686.797822px;}
.yf9{bottom:689.073305px;}
.ye{bottom:694.434300px;}
.y198{bottom:695.909520px;}
.y95{bottom:698.673147px;}
.y14c{bottom:698.808282px;}
.yf{bottom:699.534300px;}
.y54{bottom:701.796321px;}
.y197{bottom:708.655771px;}
.y100{bottom:711.544821px;}
.yf7{bottom:712.120805px;}
.yf8{bottom:712.131306px;}
.yc{bottom:712.434300px;}
.y94{bottom:713.671646px;}
.y14b{bottom:713.806781px;}
.y53{bottom:716.794821px;}
.yd{bottom:717.534300px;}
.yf6{bottom:717.738305px;}
.y196{bottom:721.402021px;}
.yff{bottom:726.543320px;}
.y14a{bottom:728.805280px;}
.ya{bottom:730.434300px;}
.y52{bottom:731.797776px;}
.y195{bottom:734.148271px;}
.yb{bottom:735.534300px;}
.yf4{bottom:740.785805px;}
.yf5{bottom:740.796306px;}
.y93{bottom:743.738578px;}
.y149{bottom:743.803780px;}
.yf3{bottom:746.403305px;}
.y51{bottom:746.796276px;}
.y194{bottom:746.894521px;}
.y8{bottom:748.434300px;}
.y9{bottom:753.534300px;}
.y39{bottom:757.145400px;}
.y92{bottom:758.737077px;}
.y148{bottom:758.802279px;}
.y193{bottom:759.640771px;}
.y50{bottom:761.794775px;}
.yf2{bottom:769.462759px;}
.y192{bottom:772.387021px;}
.y91{bottom:773.735576px;}
.y147{bottom:773.800778px;}
.y4f{bottom:776.796276px;}
.y38{bottom:778.144650px;}
.y12a{bottom:778.920446px;}
.y7{bottom:781.416300px;}
.y191{bottom:785.133271px;}
.yf1{bottom:786.903259px;}
.y90{bottom:788.734075px;}
.y146{bottom:788.799277px;}
.y4e{bottom:791.794775px;}
.y129{bottom:793.918945px;}
.y190{bottom:797.879521px;}
.y37{bottom:799.143900px;}
.y8f{bottom:803.743080px;}
.y145{bottom:803.797776px;}
.y4d{bottom:806.794775px;}
.y18f{bottom:810.625771px;}
.y8e{bottom:818.741579px;}
.y144{bottom:818.796276px;}
.y4c{bottom:821.794775px;}
.y18e{bottom:823.372022px;}
.y6{bottom:826.422300px;}
.y8d{bottom:833.740078px;}
.y143{bottom:833.794775px;}
.y18d{bottom:836.118272px;}
.y4b{bottom:836.796276px;}
.yf0{bottom:842.508270px;}
.y8c{bottom:848.738578px;}
.y142{bottom:848.794775px;}
.y18c{bottom:848.864522px;}
.y4a{bottom:851.794775px;}
.yef{bottom:854.418274px;}
.y18b{bottom:861.610772px;}
.y8b{bottom:863.737077px;}
.y141{bottom:863.794775px;}
.y49{bottom:866.796276px;}
.y5{bottom:871.428300px;}
.y18a{bottom:874.357022px;}
.y8a{bottom:878.735576px;}
.y140{bottom:878.794775px;}
.y48{bottom:881.794775px;}
.y189{bottom:887.103272px;}
.yee{bottom:889.096774px;}
.y89{bottom:893.734075px;}
.y13f{bottom:893.797776px;}
.y47{bottom:896.794775px;}
.y188{bottom:899.849522px;}
.yed{bottom:906.537274px;}
.y88{bottom:908.732574px;}
.y13e{bottom:908.796276px;}
.y46{bottom:911.794775px;}
.y187{bottom:912.595772px;}
.y4{bottom:916.434300px;}
.y13d{bottom:923.794775px;}
.yec{bottom:923.977774px;}
.y186{bottom:925.342022px;}
.y3a{bottom:926.409600px;}
.y45{bottom:926.809775px;}
.y185{bottom:938.088273px;}
.y87{bottom:938.797776px;}
.y13c{bottom:938.800778px;}
.yeb{bottom:941.418275px;}
.y184{bottom:950.834523px;}
.y86{bottom:953.796276px;}
.y13b{bottom:953.799277px;}
.y1c1{bottom:953.806781px;}
.yea{bottom:958.858775px;}
.y183{bottom:963.580773px;}
.y85{bottom:968.794775px;}
.y13a{bottom:968.797776px;}
.y1c0{bottom:968.805280px;}
.y44{bottom:971.805274px;}
.ye9{bottom:976.299275px;}
.y182{bottom:976.327023px;}
.y139{bottom:983.796276px;}
.y84{bottom:983.803780px;}
.y43{bottom:988.302274px;}
.y181{bottom:989.073273px;}
.ye8{bottom:993.739775px;}
.y138{bottom:998.794775px;}
.y83{bottom:998.802279px;}
.y180{bottom:1001.819523px;}
.y42{bottom:1004.799274px;}
.ye7{bottom:1011.180275px;}
.y137{bottom:1013.797776px;}
.y82{bottom:1013.800778px;}
.y17f{bottom:1014.565773px;}
.y41{bottom:1021.296274px;}
.y17e{bottom:1027.312023px;}
.ye6{bottom:1028.620775px;}
.y136{bottom:1028.796276px;}
.y81{bottom:1028.799277px;}
.y40{bottom:1037.802274px;}
.y17d{bottom:1040.058273px;}
.y135{bottom:1043.794775px;}
.y80{bottom:1043.797776px;}
.ye5{bottom:1046.061275px;}
.y17c{bottom:1052.804524px;}
.y3f{bottom:1054.299274px;}
.y134{bottom:1058.794775px;}
.y7f{bottom:1058.796276px;}
.yde{bottom:1063.480774px;}
.ye1{bottom:1063.491276px;}
.ye4{bottom:1063.501775px;}
.y17b{bottom:1065.550774px;}
.y3e{bottom:1070.796274px;}
.y7e{bottom:1073.794775px;}
.ye0{bottom:1074.736776px;}
.ye3{bottom:1074.747275px;}
.y17a{bottom:1078.297024px;}
.ye2{bottom:1085.992775px;}
.y3d{bottom:1087.293274px;}
.y7d{bottom:1088.793274px;}
.y179{bottom:1091.043274px;}
.ydf{bottom:1092.166775px;}
.y3b{bottom:1139.852966px;}
.y3{bottom:1140.126900px;}
.h9{height:23.842749px;}
.h7{height:28.050293px;}
.h1a{height:35.046015px;}
.hd{height:35.394000px;}
.hb{height:36.669000px;}
.h8{height:38.838867px;}
.hc{height:41.134749px;}
.ha{height:41.158749px;}
.h18{height:41.538000px;}
.h15{height:43.008000px;}
.h14{height:43.081531px;}
.h2{height:43.140000px;}
.h4{height:44.233154px;}
.h1b{height:44.322000px;}
.h21{height:44.505000px;}
.h23{height:45.090000px;}
.h3{height:45.744000px;}
.h22{height:46.080000px;}
.h13{height:47.469727px;}
.h6{height:48.450293px;}
.h10{height:51.804000px;}
.hf{height:51.840000px;}
.h11{height:53.406000px;}
.h1f{height:54.047968px;}
.h20{height:54.089990px;}
.h12{height:54.108000px;}
.h19{height:55.296000px;}
.h1e{height:63.870001px;}
.h1c{height:64.050000px;}
.he{height:77.677734px;}
.h1d{height:86.562001px;}
.h17{height:87.989999px;}
.h16{height:88.325999px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:14.070150px;}
.x2{left:61.191450px;}
.x17{left:65.651392px;}
.xe{left:133.143906px;}
.xb{left:140.952750px;}
.x19{left:159.482552px;}
.x4{left:233.456400px;}
.xc{left:251.451156px;}
.xf{left:289.143906px;}
.x1c{left:300.594589px;}
.x18{left:339.482391px;}
.x13{left:350.652893px;}
.x1a{left:382.985549px;}
.x14{left:408.665394px;}
.x15{left:462.435892px;}
.x16{left:515.397894px;}
.x6{left:525.390900px;}
.x10{left:573.410405px;}
.x3{left:584.586600px;}
.x1b{left:636.865045px;}
.x11{left:642.615906px;}
.x12{left:714.824404px;}
.x8{left:732.139650px;}
.x9{left:766.698900px;}
.x5{left:775.345350px;}
.x7{left:812.374950px;}
.xd{left:824.207428px;}
.x1{left:825.232800px;}
@media print{
.va{vertical-align:-21.989333pt;}
.v2{vertical-align:-18.133333pt;}
.v7{vertical-align:-16.319499pt;}
.v3{vertical-align:-15.413333pt;}
.v5{vertical-align:-9.631935pt;}
.vc{vertical-align:-7.455804pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:9.600098pt;}
.v9{vertical-align:12.693359pt;}
.v4{vertical-align:15.413333pt;}
.v6{vertical-align:16.314651pt;}
.v1{vertical-align:18.133333pt;}
.vd{vertical-align:20.010667pt;}
.vb{vertical-align:39.983999pt;}
.ls19{letter-spacing:-1.813333pt;}
.ls9d{letter-spacing:-1.560000pt;}
.ls94{letter-spacing:-1.200000pt;}
.ls92{letter-spacing:-1.160000pt;}
.ls50{letter-spacing:-0.816000pt;}
.ls17{letter-spacing:-0.800000pt;}
.lsa2{letter-spacing:-0.760000pt;}
.ls98{letter-spacing:-0.680000pt;}
.lsa3{letter-spacing:-0.640000pt;}
.ls82{letter-spacing:-0.576000pt;}
.lsa1{letter-spacing:-0.560000pt;}
.ls75{letter-spacing:-0.528000pt;}
.ls18{letter-spacing:-0.520000pt;}
.ls4d{letter-spacing:-0.480000pt;}
.ls91{letter-spacing:-0.440000pt;}
.ls84{letter-spacing:-0.432000pt;}
.ls3e{letter-spacing:-0.384000pt;}
.ls7a{letter-spacing:-0.373333pt;}
.lsa0{letter-spacing:-0.360000pt;}
.ls4b{letter-spacing:-0.336000pt;}
.ls9e{letter-spacing:-0.320000pt;}
.ls4f{letter-spacing:-0.312000pt;}
.ls79{letter-spacing:-0.298667pt;}
.ls8c{letter-spacing:-0.288000pt;}
.ls8d{letter-spacing:-0.280000pt;}
.ls3f{letter-spacing:-0.240000pt;}
.ls97{letter-spacing:-0.200000pt;}
.ls5c{letter-spacing:-0.192000pt;}
.ls7c{letter-spacing:-0.186667pt;}
.ls8f{letter-spacing:-0.160000pt;}
.ls8b{letter-spacing:-0.156000pt;}
.ls45{letter-spacing:-0.144000pt;}
.ls1f{letter-spacing:-0.136000pt;}
.ls5d{letter-spacing:-0.124800pt;}
.ls7d{letter-spacing:-0.121333pt;}
.ls9f{letter-spacing:-0.120000pt;}
.ls71{letter-spacing:-0.106667pt;}
.ls41{letter-spacing:-0.096000pt;}
.ls46{letter-spacing:-0.093600pt;}
.ls20{letter-spacing:-0.088400pt;}
.ls42{letter-spacing:-0.062400pt;}
.ls81{letter-spacing:-0.053333pt;}
.ls43{letter-spacing:-0.048000pt;}
.ls93{letter-spacing:-0.040000pt;}
.ls4e{letter-spacing:-0.031200pt;}
.ls16{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.000074pt;}
.ls6a{letter-spacing:0.015469pt;}
.ls29{letter-spacing:0.029467pt;}
.ls5e{letter-spacing:0.030511pt;}
.ls76{letter-spacing:0.031200pt;}
.ls90{letter-spacing:0.040000pt;}
.ls15{letter-spacing:0.045333pt;}
.ls3d{letter-spacing:0.046798pt;}
.ls69{letter-spacing:0.047999pt;}
.ls47{letter-spacing:0.048000pt;}
.lsd{letter-spacing:0.052667pt;}
.ls5b{letter-spacing:0.053333pt;}
.ls24{letter-spacing:0.058933pt;}
.ls4c{letter-spacing:0.062400pt;}
.ls57{letter-spacing:0.064424pt;}
.ls7e{letter-spacing:0.067223pt;}
.ls32{letter-spacing:0.072991pt;}
.ls95{letter-spacing:0.080000pt;}
.ls23{letter-spacing:0.088400pt;}
.lsc{letter-spacing:0.090667pt;}
.ls74{letter-spacing:0.093600pt;}
.ls5f{letter-spacing:0.095999pt;}
.ls33{letter-spacing:0.096000pt;}
.ls2f{letter-spacing:0.100769pt;}
.ls2e{letter-spacing:0.100931pt;}
.ls7b{letter-spacing:0.112000pt;}
.ls87{letter-spacing:0.120000pt;}
.ls38{letter-spacing:0.124798pt;}
.ls2d{letter-spacing:0.124800pt;}
.ls13{letter-spacing:0.136000pt;}
.ls3a{letter-spacing:0.144000pt;}
.ls22{letter-spacing:0.147333pt;}
.ls4a{letter-spacing:0.156000pt;}
.ls9c{letter-spacing:0.160000pt;}
.ls61{letter-spacing:0.181715pt;}
.ls56{letter-spacing:0.187200pt;}
.ls80{letter-spacing:0.187202pt;}
.ls30{letter-spacing:0.192000pt;}
.ls1c{letter-spacing:0.206267pt;}
.ls52{letter-spacing:0.211194pt;}
.ls34{letter-spacing:0.218400pt;}
.ls51{letter-spacing:0.225593pt;}
.ls12{letter-spacing:0.226667pt;}
.ls49{letter-spacing:0.240000pt;}
.ls7f{letter-spacing:0.249599pt;}
.ls37{letter-spacing:0.249600pt;}
.ls58{letter-spacing:0.266667pt;}
.ls10{letter-spacing:0.272000pt;}
.ls2b{letter-spacing:0.273186pt;}
.ls8e{letter-spacing:0.280000pt;}
.ls78{letter-spacing:0.280800pt;}
.ls60{letter-spacing:0.287999pt;}
.ls3c{letter-spacing:0.288000pt;}
.ls26{letter-spacing:0.294667pt;}
.ls83{letter-spacing:0.312000pt;}
.lse{letter-spacing:0.317333pt;}
.ls3b{letter-spacing:0.320000pt;}
.ls35{letter-spacing:0.336000pt;}
.ls62{letter-spacing:0.336001pt;}
.lsa{letter-spacing:0.344933pt;}
.ls99{letter-spacing:0.360000pt;}
.ls54{letter-spacing:0.369600pt;}
.ls59{letter-spacing:0.373333pt;}
.ls86{letter-spacing:0.374400pt;}
.ls21{letter-spacing:0.383067pt;}
.ls36{letter-spacing:0.384000pt;}
.ls85{letter-spacing:0.390000pt;}
.ls77{letter-spacing:0.405600pt;}
.ls2c{letter-spacing:0.432000pt;}
.ls88{letter-spacing:0.440000pt;}
.ls25{letter-spacing:0.453333pt;}
.ls66{letter-spacing:0.465588pt;}
.ls27{letter-spacing:0.471467pt;}
.lsb{letter-spacing:0.477733pt;}
.ls5a{letter-spacing:0.480000pt;}
.ls1e{letter-spacing:0.500933pt;}
.ls96{letter-spacing:0.520000pt;}
.ls44{letter-spacing:0.528000pt;}
.ls9{letter-spacing:0.544000pt;}
.ls9a{letter-spacing:0.560000pt;}
.ls67{letter-spacing:0.575993pt;}
.ls39{letter-spacing:0.576000pt;}
.ls53{letter-spacing:0.586667pt;}
.ls11{letter-spacing:0.589333pt;}
.ls1d{letter-spacing:0.618800pt;}
.ls48{letter-spacing:0.624000pt;}
.ls8{letter-spacing:0.639333pt;}
.ls7{letter-spacing:0.639867pt;}
.ls9b{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.645200pt;}
.ls28{letter-spacing:0.648267pt;}
.ls55{letter-spacing:0.667205pt;}
.ls40{letter-spacing:0.672000pt;}
.ls89{letter-spacing:0.680000pt;}
.ls8a{letter-spacing:0.720000pt;}
.ls14{letter-spacing:0.725333pt;}
.ls6{letter-spacing:0.728933pt;}
.ls2{letter-spacing:0.742267pt;}
.ls1b{letter-spacing:0.770667pt;}
.ls68{letter-spacing:0.806401pt;}
.lsa5{letter-spacing:0.816000pt;}
.ls64{letter-spacing:0.859203pt;}
.lsa4{letter-spacing:0.864000pt;}
.ls72{letter-spacing:0.912000pt;}
.lsf{letter-spacing:0.952000pt;}
.ls3{letter-spacing:0.997333pt;}
.ls63{letter-spacing:1.056000pt;}
.ls73{letter-spacing:1.066667pt;}
.ls5{letter-spacing:1.133333pt;}
.ls65{letter-spacing:1.151999pt;}
.ls1a{letter-spacing:1.178667pt;}
.ls0{letter-spacing:2.304000pt;}
.ls2a{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls6f{letter-spacing:70.864876pt;}
.ls6d{letter-spacing:70.865201pt;}
.ls70{letter-spacing:74.055450pt;}
.ls6b{letter-spacing:120.240527pt;}
.ls6c{letter-spacing:127.045338pt;}
.ls6e{letter-spacing:155.903996pt;}
.ws8{word-spacing:-48.000000pt;}
.ws2{word-spacing:-13.393333pt;}
.ws3b{word-spacing:-13.066667pt;}
.ws73{word-spacing:-12.085333pt;}
.ws49{word-spacing:-12.000000pt;}
.wsaf{word-spacing:-11.616000pt;}
.wsac{word-spacing:-11.376000pt;}
.wsb9{word-spacing:-11.328000pt;}
.wsb7{word-spacing:-11.232000pt;}
.wsae{word-spacing:-11.184000pt;}
.ws48{word-spacing:-11.136000pt;}
.ws1{word-spacing:-11.093333pt;}
.ws45{word-spacing:-11.088000pt;}
.ws82{word-spacing:-11.040000pt;}
.ws43{word-spacing:-10.992000pt;}
.ws6{word-spacing:-10.986667pt;}
.ws80{word-spacing:-10.944000pt;}
.ws3d{word-spacing:-10.896000pt;}
.ws0{word-spacing:-10.837333pt;}
.ws7f{word-spacing:-10.800000pt;}
.wsb8{word-spacing:-10.752000pt;}
.ws72{word-spacing:-10.656000pt;}
.ws4b{word-spacing:-10.512000pt;}
.ws84{word-spacing:-10.464000pt;}
.ws3{word-spacing:-10.186667pt;}
.ws7{word-spacing:-9.173333pt;}
.wscf{word-spacing:-9.160000pt;}
.ws16{word-spacing:-9.066667pt;}
.wsbb{word-spacing:-9.000000pt;}
.wsda{word-spacing:-8.920000pt;}
.wsd8{word-spacing:-8.600000pt;}
.wsd4{word-spacing:-8.560000pt;}
.wsd0{word-spacing:-8.400000pt;}
.ws89{word-spacing:-8.101333pt;}
.wsbc{word-spacing:-8.000000pt;}
.wsbd{word-spacing:-7.960000pt;}
.ws86{word-spacing:-7.488000pt;}
.wsad{word-spacing:-7.394400pt;}
.ws87{word-spacing:-7.363200pt;}
.ws42{word-spacing:-7.332000pt;}
.ws3f{word-spacing:-7.300800pt;}
.ws81{word-spacing:-7.269600pt;}
.ws44{word-spacing:-7.238400pt;}
.wsab{word-spacing:-7.207200pt;}
.ws83{word-spacing:-7.176000pt;}
.ws46{word-spacing:-7.144800pt;}
.ws4{word-spacing:-7.141333pt;}
.ws85{word-spacing:-7.113600pt;}
.ws3e{word-spacing:-7.082400pt;}
.ws47{word-spacing:-7.051200pt;}
.ws40{word-spacing:-7.020000pt;}
.ws41{word-spacing:-6.988800pt;}
.ws71{word-spacing:-6.957600pt;}
.wsba{word-spacing:-6.926400pt;}
.ws4a{word-spacing:-6.770400pt;}
.ws5{word-spacing:-6.621333pt;}
.ws14{word-spacing:-6.541600pt;}
.wsa{word-spacing:-6.512133pt;}
.ws3c{word-spacing:-6.427200pt;}
.wsb{word-spacing:-6.394267pt;}
.ws13{word-spacing:-6.364800pt;}
.wsd{word-spacing:-6.276400pt;}
.ws12{word-spacing:-6.188000pt;}
.ws9{word-spacing:-6.099600pt;}
.wse{word-spacing:-6.040667pt;}
.ws10{word-spacing:-5.981733pt;}
.ws11{word-spacing:-5.952267pt;}
.ws15{word-spacing:-5.922800pt;}
.wsf{word-spacing:-5.893333pt;}
.wsc{word-spacing:-5.804933pt;}
.ws9b{word-spacing:-5.144534pt;}
.ws77{word-spacing:-4.896000pt;}
.wsa8{word-spacing:-3.434667pt;}
.ws2a{word-spacing:-3.173333pt;}
.ws34{word-spacing:-3.128000pt;}
.ws38{word-spacing:-2.221333pt;}
.ws30{word-spacing:-1.949333pt;}
.ws37{word-spacing:-1.813333pt;}
.ws6b{word-spacing:-1.680000pt;}
.ws4f{word-spacing:-1.632000pt;}
.ws51{word-spacing:-1.584000pt;}
.ws1f{word-spacing:-1.541333pt;}
.wsc0{word-spacing:-1.536000pt;}
.ws66{word-spacing:-1.440000pt;}
.wsd6{word-spacing:-1.400000pt;}
.wsb0{word-spacing:-1.392000pt;}
.ws29{word-spacing:-1.360000pt;}
.ws79{word-spacing:-1.296000pt;}
.wsd2{word-spacing:-1.280000pt;}
.ws52{word-spacing:-1.248000pt;}
.ws6f{word-spacing:-1.200000pt;}
.wsb4{word-spacing:-1.152000pt;}
.ws3a{word-spacing:-1.133333pt;}
.ws4e{word-spacing:-1.104000pt;}
.wsa4{word-spacing:-1.066667pt;}
.ws59{word-spacing:-1.056000pt;}
.ws21{word-spacing:-1.042667pt;}
.wsc7{word-spacing:-1.040000pt;}
.ws63{word-spacing:-1.008000pt;}
.wsd5{word-spacing:-0.960000pt;}
.wsaa{word-spacing:-0.933333pt;}
.wsc2{word-spacing:-0.920000pt;}
.wsa2{word-spacing:-0.912000pt;}
.ws64{word-spacing:-0.864000pt;}
.wsa9{word-spacing:-0.858667pt;}
.ws18{word-spacing:-0.853333pt;}
.wsa7{word-spacing:-0.821333pt;}
.ws35{word-spacing:-0.816000pt;}
.ws25{word-spacing:-0.770667pt;}
.ws70{word-spacing:-0.768000pt;}
.wscd{word-spacing:-0.760000pt;}
.ws7e{word-spacing:-0.720000pt;}
.ws7b{word-spacing:-0.672000pt;}
.wsc3{word-spacing:-0.640000pt;}
.ws31{word-spacing:-0.634667pt;}
.ws5c{word-spacing:-0.624000pt;}
.wsc8{word-spacing:-0.600000pt;}
.ws78{word-spacing:-0.586667pt;}
.ws4d{word-spacing:-0.576000pt;}
.ws50{word-spacing:-0.528000pt;}
.wsa6{word-spacing:-0.480000pt;}
.ws22{word-spacing:-0.453333pt;}
.wsc1{word-spacing:-0.440000pt;}
.ws68{word-spacing:-0.432000pt;}
.wsb6{word-spacing:-0.405600pt;}
.ws76{word-spacing:-0.384000pt;}
.ws74{word-spacing:-0.373333pt;}
.ws2d{word-spacing:-0.362667pt;}
.ws62{word-spacing:-0.336000pt;}
.ws69{word-spacing:-0.320000pt;}
.ws2f{word-spacing:-0.317333pt;}
.ws6a{word-spacing:-0.288000pt;}
.wsb2{word-spacing:-0.280800pt;}
.wsc4{word-spacing:-0.280000pt;}
.ws27{word-spacing:-0.272000pt;}
.ws7d{word-spacing:-0.266667pt;}
.ws5e{word-spacing:-0.249600pt;}
.ws53{word-spacing:-0.240000pt;}
.ws2e{word-spacing:-0.226667pt;}
.ws54{word-spacing:-0.218400pt;}
.ws61{word-spacing:-0.192000pt;}
.wse1{word-spacing:-0.160000pt;}
.ws65{word-spacing:-0.156000pt;}
.ws5d{word-spacing:-0.144000pt;}
.ws32{word-spacing:-0.136000pt;}
.ws7a{word-spacing:-0.096000pt;}
.ws33{word-spacing:-0.090667pt;}
.wsdc{word-spacing:-0.080000pt;}
.ws75{word-spacing:-0.053333pt;}
.ws4c{word-spacing:-0.048000pt;}
.ws23{word-spacing:-0.045333pt;}
.wsd9{word-spacing:-0.040000pt;}
.ws98{word-spacing:-0.031200pt;}
.ws17{word-spacing:0.000000pt;}
.wscc{word-spacing:0.040000pt;}
.ws6d{word-spacing:0.048000pt;}
.wsb1{word-spacing:0.053333pt;}
.ws56{word-spacing:0.062400pt;}
.wsdd{word-spacing:0.080000pt;}
.ws5a{word-spacing:0.093600pt;}
.ws6c{word-spacing:0.096000pt;}
.wsa1{word-spacing:0.106667pt;}
.ws28{word-spacing:0.136000pt;}
.ws5b{word-spacing:0.144000pt;}
.wsde{word-spacing:0.160000pt;}
.ws24{word-spacing:0.181333pt;}
.wsb5{word-spacing:0.192000pt;}
.wsd1{word-spacing:0.200000pt;}
.ws5f{word-spacing:0.240000pt;}
.wse2{word-spacing:0.280000pt;}
.ws57{word-spacing:0.288000pt;}
.wsce{word-spacing:0.320000pt;}
.ws58{word-spacing:0.336000pt;}
.wsdb{word-spacing:0.360000pt;}
.ws67{word-spacing:0.384000pt;}
.wscb{word-spacing:0.400000pt;}
.wsbf{word-spacing:0.432000pt;}
.ws1e{word-spacing:0.453333pt;}
.ws6e{word-spacing:0.480000pt;}
.ws1a{word-spacing:0.520000pt;}
.ws60{word-spacing:0.528000pt;}
.ws39{word-spacing:0.544000pt;}
.ws55{word-spacing:0.576000pt;}
.ws2b{word-spacing:0.589333pt;}
.wsdf{word-spacing:0.600000pt;}
.wsd7{word-spacing:0.640000pt;}
.wsc5{word-spacing:0.760000pt;}
.ws19{word-spacing:0.800000pt;}
.wsbe{word-spacing:0.816000pt;}
.wsca{word-spacing:0.840000pt;}
.wsb3{word-spacing:0.864000pt;}
.wse0{word-spacing:0.880000pt;}
.wsc9{word-spacing:0.920000pt;}
.ws20{word-spacing:0.952000pt;}
.ws7c{word-spacing:0.960000pt;}
.wse3{word-spacing:1.056000pt;}
.wse4{word-spacing:1.104000pt;}
.wsa3{word-spacing:1.152000pt;}
.wsc6{word-spacing:1.200000pt;}
.ws2c{word-spacing:1.405333pt;}
.ws26{word-spacing:1.450667pt;}
.ws36{word-spacing:1.496000pt;}
.wsa5{word-spacing:1.536000pt;}
.wsd3{word-spacing:1.560000pt;}
.ws1d{word-spacing:1.586667pt;}
.ws1c{word-spacing:1.632000pt;}
.ws1b{word-spacing:1.949333pt;}
.ws9d{word-spacing:24.415995pt;}
.ws9c{word-spacing:30.165338pt;}
.ws9a{word-spacing:39.872031pt;}
.ws9e{word-spacing:52.789336pt;}
.wsa0{word-spacing:53.013335pt;}
.ws90{word-spacing:53.423993pt;}
.ws8f{word-spacing:54.431996pt;}
.ws9f{word-spacing:59.023996pt;}
.ws93{word-spacing:64.847996pt;}
.ws88{word-spacing:67.498670pt;}
.ws95{word-spacing:71.343991pt;}
.ws97{word-spacing:76.126396pt;}
.ws91{word-spacing:83.552004pt;}
.ws94{word-spacing:85.082670pt;}
.ws8c{word-spacing:89.263993pt;}
.ws99{word-spacing:93.296002pt;}
.ws8b{word-spacing:105.728004pt;}
.ws8e{word-spacing:115.920000pt;}
.ws92{word-spacing:117.562672pt;}
.ws8d{word-spacing:120.437326pt;}
.ws8a{word-spacing:156.202661pt;}
.ws96{word-spacing:168.746663pt;}
._f{margin-left:-1842.437367pt;}
._3e{margin-left:-9.520000pt;}
._4{margin-left:-8.493333pt;}
._9{margin-left:-6.998933pt;}
._3{margin-left:-5.861333pt;}
._2{margin-left:-4.085333pt;}
._1{margin-left:-2.856533pt;}
._0{margin-left:-1.578667pt;}
._5{width:1.666667pt;}
._8{width:3.223200pt;}
._39{width:4.437333pt;}
._c{width:5.888533pt;}
._3b{width:7.000000pt;}
._40{width:8.023200pt;}
._3c{width:9.160000pt;}
._3a{width:10.920000pt;}
._3d{width:12.000000pt;}
._31{width:13.781331pt;}
._3f{width:15.640002pt;}
._10{width:33.848795pt;}
._6{width:36.636800pt;}
._7{width:37.590933pt;}
._a{width:42.437326pt;}
._b{width:43.991449pt;}
._1e{width:54.506663pt;}
._35{width:61.935995pt;}
._12{width:71.045339pt;}
._11{width:73.919993pt;}
._1a{width:76.944000pt;}
._37{width:79.408003pt;}
._2e{width:83.466679pt;}
._28{width:87.621331pt;}
._36{width:90.384009pt;}
._26{width:92.498670pt;}
._2d{width:93.466674pt;}
._34{width:95.087991pt;}
._23{width:97.551993pt;}
._30{width:98.476793pt;}
._20{width:101.136004pt;}
._2c{width:103.376008pt;}
._2b{width:107.119992pt;}
._38{width:108.328556pt;}
._27{width:110.730663pt;}
._25{width:113.157332pt;}
._1c{width:115.077326pt;}
._1b{width:116.666661pt;}
._17{width:119.056004pt;}
._13{width:121.557330pt;}
._1f{width:124.394667pt;}
._24{width:128.911994pt;}
._2a{width:134.847996pt;}
._16{width:138.469327pt;}
._1d{width:139.589325pt;}
._15{width:142.314667pt;}
._22{width:146.943996pt;}
._18{width:152.469328pt;}
._14{width:155.381337pt;}
._21{width:157.509326pt;}
._29{width:178.901330pt;}
._19{width:183.941333pt;}
._33{width:216.021320pt;}
._2f{width:222.319997pt;}
._e{width:225.045318pt;}
._d{width:300.421347pt;}
._32{width:611.344005pt;}
.fsc{font-size:24.266668pt;}
.fs6{font-size:29.466667pt;}
.fs9{font-size:31.199999pt;}
.fs4{font-size:34.666667pt;}
.fsb{font-size:37.333333pt;}
.fsd{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs7{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsa{font-size:58.666667pt;}
.fs8{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:24.157867pt;}
.y1{bottom:24.175867pt;}
.y3c{bottom:24.175868pt;}
.y36{bottom:60.723467pt;}
.y128{bottom:60.934668pt;}
.ybd{bottom:60.938665pt;}
.y7c{bottom:61.602664pt;}
.ydd{bottom:64.280003pt;}
.y178{bottom:72.569615pt;}
.y35{bottom:74.051467pt;}
.y127{bottom:74.269331pt;}
.ybc{bottom:74.270665pt;}
.y7b{bottom:74.934663pt;}
.ydc{bottom:77.612002pt;}
.y1bf{bottom:83.610668pt;}
.y177{bottom:83.899615pt;}
.y34{bottom:87.384800pt;}
.y126{bottom:87.601330pt;}
.ybb{bottom:87.602664pt;}
.y7a{bottom:88.269331pt;}
.ydb{bottom:90.944002pt;}
.y176{bottom:95.229615pt;}
.y1be{bottom:96.942668pt;}
.y133{bottom:98.440401pt;}
.y33{bottom:100.718133pt;}
.yba{bottom:100.934663pt;}
.y125{bottom:100.946670pt;}
.y79{bottom:101.601330pt;}
.yda{bottom:104.276001pt;}
.y175{bottom:106.559615pt;}
.y132{bottom:111.776402pt;}
.y32{bottom:114.051467pt;}
.yb9{bottom:114.266663pt;}
.y124{bottom:114.278669pt;}
.y78{bottom:114.934663pt;}
.y1bd{bottom:116.274667pt;}
.yd9{bottom:117.608000pt;}
.y174{bottom:117.889615pt;}
.y131{bottom:125.108401pt;}
.y31{bottom:127.384800pt;}
.y123{bottom:127.610668pt;}
.y77{bottom:128.271999pt;}
.y173{bottom:129.219615pt;}
.y1bc{bottom:129.606666pt;}
.yd8{bottom:130.940000pt;}
.y130{bottom:138.440401pt;}
.y172{bottom:140.549616pt;}
.y30{bottom:140.718133pt;}
.y122{bottom:140.942668pt;}
.yb8{bottom:140.993995pt;}
.y76{bottom:141.603998pt;}
.y1bb{bottom:142.938665pt;}
.yd7{bottom:144.271999pt;}
.y12f{bottom:151.772400pt;}
.y171{bottom:151.879616pt;}
.y2f{bottom:154.051467pt;}
.y121{bottom:154.274667pt;}
.yb7{bottom:154.325995pt;}
.y75{bottom:154.935997pt;}
.y1ba{bottom:156.270665pt;}
.yd6{bottom:157.603998pt;}
.y170{bottom:163.209616pt;}
.y2e{bottom:167.384800pt;}
.y120{bottom:167.606666pt;}
.yb6{bottom:167.657994pt;}
.y74{bottom:168.267997pt;}
.y1b9{bottom:169.602664pt;}
.yd5{bottom:170.935997pt;}
.y16f{bottom:174.539616pt;}
.y2d{bottom:180.718133pt;}
.y11f{bottom:180.938665pt;}
.yb5{bottom:180.989993pt;}
.y73{bottom:181.601330pt;}
.y1b8{bottom:182.934663pt;}
.yd4{bottom:184.267997pt;}
.y16e{bottom:185.869616pt;}
.y2c{bottom:194.051467pt;}
.y11e{bottom:194.270665pt;}
.yb4{bottom:194.321992pt;}
.y72{bottom:194.934663pt;}
.y16d{bottom:197.199616pt;}
.yd3{bottom:197.601330pt;}
.y1b7{bottom:202.266663pt;}
.y2b{bottom:207.384800pt;}
.y11d{bottom:207.602664pt;}
.yb3{bottom:207.653992pt;}
.y71{bottom:208.266663pt;}
.y16c{bottom:208.529616pt;}
.yd2{bottom:210.934663pt;}
.y1b6{bottom:215.599996pt;}
.y16b{bottom:219.859616pt;}
.y2a{bottom:220.718133pt;}
.y11c{bottom:220.934663pt;}
.yb2{bottom:220.987325pt;}
.yd1{bottom:224.269331pt;}
.y16a{bottom:231.189616pt;}
.y29{bottom:234.051467pt;}
.y11b{bottom:234.273333pt;}
.y70{bottom:236.052136pt;}
.yd0{bottom:237.601330pt;}
.y169{bottom:242.519616pt;}
.y1b5{bottom:242.567604pt;}
.y28{bottom:247.384800pt;}
.y11a{bottom:247.605332pt;}
.yb1{bottom:247.712132pt;}
.y6f{bottom:249.384135pt;}
.ycf{bottom:250.934663pt;}
.y168{bottom:253.849617pt;}
.y1b4{bottom:255.899603pt;}
.y27{bottom:260.718133pt;}
.y119{bottom:260.937331pt;}
.yb0{bottom:261.044131pt;}
.y6e{bottom:262.716134pt;}
.yce{bottom:264.267997pt;}
.y167{bottom:265.179617pt;}
.y1b3{bottom:269.231602pt;}
.y26{bottom:274.051467pt;}
.y118{bottom:274.269331pt;}
.yaf{bottom:274.376131pt;}
.y6d{bottom:276.048133pt;}
.y166{bottom:276.509617pt;}
.ycd{bottom:277.599996pt;}
.y1b2{bottom:282.563602pt;}
.y25{bottom:287.390133pt;}
.y117{bottom:287.601330pt;}
.yae{bottom:287.714800pt;}
.y165{bottom:287.839617pt;}
.y6c{bottom:289.380133pt;}
.y1b1{bottom:295.895601pt;}
.y164{bottom:299.169617pt;}
.y24{bottom:300.718133pt;}
.y116{bottom:300.941354pt;}
.yad{bottom:301.046799pt;}
.y6b{bottom:302.712132pt;}
.ycc{bottom:303.370791pt;}
.y1b0{bottom:309.227600pt;}
.y163{bottom:310.499617pt;}
.y23{bottom:314.051467pt;}
.y115{bottom:314.273353pt;}
.yac{bottom:314.378799pt;}
.y6a{bottom:316.044131pt;}
.ycb{bottom:316.702791pt;}
.y162{bottom:321.829617pt;}
.y1af{bottom:322.560933pt;}
.y22{bottom:327.384800pt;}
.y114{bottom:327.605352pt;}
.yab{bottom:327.710798pt;}
.y69{bottom:329.376131pt;}
.yca{bottom:330.037458pt;}
.y161{bottom:333.159617pt;}
.y21{bottom:340.718133pt;}
.y113{bottom:340.937352pt;}
.yaa{bottom:341.042797pt;}
.y68{bottom:342.708130pt;}
.yc9{bottom:343.369457pt;}
.y12e{bottom:343.789728pt;}
.y160{bottom:344.489617pt;}
.y1ae{bottom:349.523185pt;}
.y20{bottom:354.051467pt;}
.y112{bottom:354.269351pt;}
.ya9{bottom:354.377465pt;}
.y15f{bottom:355.819617pt;}
.y67{bottom:356.041463pt;}
.yc8{bottom:356.704125pt;}
.y12d{bottom:357.121727pt;}
.y1ad{bottom:362.855184pt;}
.y15e{bottom:367.149618pt;}
.y1f{bottom:367.384800pt;}
.y111{bottom:367.601350pt;}
.ya8{bottom:367.709464pt;}
.yc7{bottom:370.036124pt;}
.y12c{bottom:370.453727pt;}
.y1ac{bottom:376.188517pt;}
.y15d{bottom:378.482951pt;}
.y1e{bottom:380.718133pt;}
.y110{bottom:380.934684pt;}
.ya7{bottom:381.049468pt;}
.yc6{bottom:383.372126pt;}
.y12b{bottom:383.785726pt;}
.y66{bottom:383.817618pt;}
.y1d{bottom:394.051467pt;}
.y10f{bottom:394.269351pt;}
.ya6{bottom:394.381467pt;}
.yc5{bottom:396.704125pt;}
.y65{bottom:397.154954pt;}
.y1ab{bottom:403.316238pt;}
.y1c{bottom:407.384800pt;}
.y10e{bottom:407.601350pt;}
.ya5{bottom:407.713466pt;}
.y15c{bottom:407.824288pt;}
.yc4{bottom:410.036124pt;}
.y64{bottom:410.486953pt;}
.y1aa{bottom:414.646239pt;}
.y1b{bottom:420.718133pt;}
.y10d{bottom:420.933350pt;}
.ya4{bottom:421.045465pt;}
.y15b{bottom:421.156288pt;}
.yc3{bottom:423.370791pt;}
.y63{bottom:423.818952pt;}
.y1a9{bottom:425.976239pt;}
.y1a{bottom:434.051467pt;}
.y10c{bottom:434.266683pt;}
.ya3{bottom:434.377465pt;}
.y15a{bottom:434.488287pt;}
.yc2{bottom:436.702791pt;}
.y62{bottom:437.150952pt;}
.y1a8{bottom:437.306239pt;}
.ya2{bottom:447.709464pt;}
.y159{bottom:447.820286pt;}
.y1a7{bottom:448.636239pt;}
.yc1{bottom:450.034790pt;}
.y61{bottom:450.484285pt;}
.y19{bottom:451.232800pt;}
.y1a6{bottom:459.966239pt;}
.y10b{bottom:460.348124pt;}
.ya1{bottom:461.058806pt;}
.y158{bottom:461.152286pt;}
.y60{bottom:463.820286pt;}
.y1a5{bottom:471.296239pt;}
.y10a{bottom:473.680123pt;}
.ya0{bottom:474.390805pt;}
.y157{bottom:474.484285pt;}
.yc0{bottom:475.804272pt;}
.y5f{bottom:477.152286pt;}
.y1a4{bottom:482.626239pt;}
.y18{bottom:485.288267pt;}
.y109{bottom:487.012123pt;}
.y9f{bottom:487.722804pt;}
.y156{bottom:487.820286pt;}
.ybf{bottom:489.137605pt;}
.y5e{bottom:490.484285pt;}
.y1a3{bottom:493.956239pt;}
.y17{bottom:499.952267pt;}
.y108{bottom:500.344122pt;}
.y9e{bottom:501.054804pt;}
.y155{bottom:501.152286pt;}
.ybe{bottom:502.469604pt;}
.y5d{bottom:503.820286pt;}
.y1a2{bottom:505.286239pt;}
.y107{bottom:513.676121pt;}
.y9d{bottom:514.386803pt;}
.y154{bottom:514.484285pt;}
.y16{bottom:514.616267pt;}
.y1a1{bottom:516.616239pt;}
.y5c{bottom:517.152286pt;}
.y106{bottom:527.008121pt;}
.y9c{bottom:527.718802pt;}
.y153{bottom:527.818952pt;}
.y1a0{bottom:527.946240pt;}
.y15{bottom:529.280267pt;}
.y5b{bottom:530.484285pt;}
.y19f{bottom:539.276240pt;}
.y105{bottom:540.340120pt;}
.y9b{bottom:541.050802pt;}
.y152{bottom:541.150952pt;}
.y5a{bottom:543.820286pt;}
.y14{bottom:543.944267pt;}
.y19e{bottom:550.606240pt;}
.y104{bottom:553.672119pt;}
.yfe{bottom:553.972273pt;}
.y9a{bottom:554.382801pt;}
.y151{bottom:554.486953pt;}
.y59{bottom:557.152286pt;}
.y13{bottom:558.608267pt;}
.y19d{bottom:561.936240pt;}
.yfd{bottom:567.304272pt;}
.y99{bottom:567.714800pt;}
.y150{bottom:567.818952pt;}
.y58{bottom:570.484285pt;}
.y19c{bottom:573.266240pt;}
.y103{bottom:579.746809pt;}
.yfc{bottom:580.636271pt;}
.y98{bottom:581.046799pt;}
.y14f{bottom:581.150952pt;}
.y57{bottom:583.817618pt;}
.y19b{bottom:584.596240pt;}
.y12{bottom:585.274933pt;}
.y102{bottom:593.078808pt;}
.y97{bottom:594.378799pt;}
.y14e{bottom:594.498919pt;}
.y19a{bottom:595.926240pt;}
.y56{bottom:597.154954pt;}
.y10{bottom:601.274933pt;}
.y11{bottom:605.808267pt;}
.y101{bottom:606.410807pt;}
.y199{bottom:607.256240pt;}
.yfa{bottom:607.476272pt;}
.yfb{bottom:607.485605pt;}
.y96{bottom:607.710798pt;}
.y14d{bottom:607.830918pt;}
.y55{bottom:610.486953pt;}
.yf9{bottom:612.509604pt;}
.ye{bottom:617.274933pt;}
.y198{bottom:618.586240pt;}
.y95{bottom:621.042797pt;}
.y14c{bottom:621.162917pt;}
.yf{bottom:621.808267pt;}
.y54{bottom:623.818952pt;}
.y197{bottom:629.916240pt;}
.y100{bottom:632.484285pt;}
.yf7{bottom:632.996271pt;}
.yf8{bottom:633.005605pt;}
.yc{bottom:633.274933pt;}
.y94{bottom:634.374797pt;}
.y14b{bottom:634.494917pt;}
.y53{bottom:637.150952pt;}
.yd{bottom:637.808267pt;}
.yf6{bottom:637.989604pt;}
.y196{bottom:641.246241pt;}
.yff{bottom:645.816284pt;}
.y14a{bottom:647.826916pt;}
.ya{bottom:649.274933pt;}
.y52{bottom:650.486912pt;}
.y195{bottom:652.576241pt;}
.yb{bottom:653.808267pt;}
.yf4{bottom:658.476272pt;}
.yf5{bottom:658.485605pt;}
.y93{bottom:661.100958pt;}
.y149{bottom:661.158915pt;}
.yf3{bottom:663.469604pt;}
.y51{bottom:663.818912pt;}
.y194{bottom:663.906241pt;}
.y8{bottom:665.274933pt;}
.y9{bottom:669.808267pt;}
.y39{bottom:673.018133pt;}
.y92{bottom:674.432957pt;}
.y148{bottom:674.490914pt;}
.y193{bottom:675.236241pt;}
.y50{bottom:677.150911pt;}
.yf2{bottom:683.966897pt;}
.y192{bottom:686.566241pt;}
.y91{bottom:687.764957pt;}
.y147{bottom:687.822914pt;}
.y4f{bottom:690.485578pt;}
.y38{bottom:691.684133pt;}
.y12a{bottom:692.373730pt;}
.y7{bottom:694.592267pt;}
.y191{bottom:697.896241pt;}
.yf1{bottom:699.469564pt;}
.y90{bottom:701.096956pt;}
.y146{bottom:701.154913pt;}
.y4e{bottom:703.817578pt;}
.y129{bottom:705.705729pt;}
.y190{bottom:709.226241pt;}
.y37{bottom:710.350133pt;}
.y8f{bottom:714.438293pt;}
.y145{bottom:714.486912pt;}
.y4d{bottom:717.150911pt;}
.y18f{bottom:720.556241pt;}
.y8e{bottom:727.770293pt;}
.y144{bottom:727.818912pt;}
.y4c{bottom:730.484244pt;}
.y18e{bottom:731.886241pt;}
.y6{bottom:734.597600pt;}
.y8d{bottom:741.102292pt;}
.y143{bottom:741.150911pt;}
.y18d{bottom:743.216241pt;}
.y4b{bottom:743.818912pt;}
.yf0{bottom:748.896240pt;}
.y8c{bottom:754.434291pt;}
.y142{bottom:754.484244pt;}
.y18c{bottom:754.546242pt;}
.y4a{bottom:757.150911pt;}
.yef{bottom:759.482910pt;}
.y18b{bottom:765.876242pt;}
.y8b{bottom:767.766291pt;}
.y141{bottom:767.817578pt;}
.y49{bottom:770.485578pt;}
.y5{bottom:774.602933pt;}
.y18a{bottom:777.206242pt;}
.y8a{bottom:781.098290pt;}
.y140{bottom:781.150911pt;}
.y48{bottom:783.817578pt;}
.y189{bottom:788.536242pt;}
.yee{bottom:790.308244pt;}
.y89{bottom:794.430289pt;}
.y13f{bottom:794.486912pt;}
.y47{bottom:797.150911pt;}
.y188{bottom:799.866242pt;}
.yed{bottom:805.810911pt;}
.y88{bottom:807.762288pt;}
.y13e{bottom:807.818912pt;}
.y46{bottom:810.484244pt;}
.y187{bottom:811.196242pt;}
.y4{bottom:814.608267pt;}
.y13d{bottom:821.150911pt;}
.yec{bottom:821.313577pt;}
.y186{bottom:822.526242pt;}
.y3a{bottom:823.475200pt;}
.y45{bottom:823.830911pt;}
.y185{bottom:833.856242pt;}
.y87{bottom:834.486912pt;}
.y13c{bottom:834.489580pt;}
.yeb{bottom:836.816244pt;}
.y184{bottom:845.186242pt;}
.y86{bottom:847.818912pt;}
.y13b{bottom:847.821580pt;}
.y1c1{bottom:847.828250pt;}
.yea{bottom:852.318911pt;}
.y183{bottom:856.516242pt;}
.y85{bottom:861.150911pt;}
.y13a{bottom:861.153579pt;}
.y1c0{bottom:861.160249pt;}
.y44{bottom:863.826910pt;}
.ye9{bottom:867.821578pt;}
.y182{bottom:867.846243pt;}
.y139{bottom:874.485578pt;}
.y84{bottom:874.492249pt;}
.y43{bottom:878.490910pt;}
.y181{bottom:879.176243pt;}
.ye8{bottom:883.324244pt;}
.y138{bottom:887.817578pt;}
.y83{bottom:887.824248pt;}
.y180{bottom:890.506243pt;}
.y42{bottom:893.154910pt;}
.ye7{bottom:898.826911pt;}
.y137{bottom:901.153579pt;}
.y82{bottom:901.156247pt;}
.y17f{bottom:901.836243pt;}
.y41{bottom:907.818910pt;}
.y17e{bottom:913.166243pt;}
.ye6{bottom:914.329578pt;}
.y136{bottom:914.485578pt;}
.y81{bottom:914.488246pt;}
.y40{bottom:922.490910pt;}
.y17d{bottom:924.496243pt;}
.y135{bottom:927.817578pt;}
.y80{bottom:927.820246pt;}
.ye5{bottom:929.832245pt;}
.y17c{bottom:935.826243pt;}
.y3f{bottom:937.154910pt;}
.y134{bottom:941.150911pt;}
.y7f{bottom:941.152245pt;}
.yde{bottom:945.316243pt;}
.ye1{bottom:945.325579pt;}
.ye4{bottom:945.334911pt;}
.y17b{bottom:947.156243pt;}
.y3e{bottom:951.818910pt;}
.y7e{bottom:954.484244pt;}
.ye0{bottom:955.321578pt;}
.ye3{bottom:955.330911pt;}
.y17a{bottom:958.486243pt;}
.ye2{bottom:965.326911pt;}
.y3d{bottom:966.482910pt;}
.y7d{bottom:967.816243pt;}
.y179{bottom:969.816243pt;}
.ydf{bottom:970.814911pt;}
.y3b{bottom:1013.202637pt;}
.y3{bottom:1013.446133pt;}
.h9{height:21.193555pt;}
.h7{height:24.933594pt;}
.h1a{height:31.152013pt;}
.hd{height:31.461333pt;}
.hb{height:32.594667pt;}
.h8{height:34.523438pt;}
.hc{height:36.564221pt;}
.ha{height:36.585555pt;}
.h18{height:36.922667pt;}
.h15{height:38.229333pt;}
.h14{height:38.294694pt;}
.h2{height:38.346667pt;}
.h4{height:39.318359pt;}
.h1b{height:39.397334pt;}
.h21{height:39.560000pt;}
.h23{height:40.080000pt;}
.h3{height:40.661333pt;}
.h22{height:40.960000pt;}
.h13{height:42.195312pt;}
.h6{height:43.066927pt;}
.h10{height:46.048000pt;}
.hf{height:46.080000pt;}
.h11{height:47.472000pt;}
.h1f{height:48.042638pt;}
.h20{height:48.079991pt;}
.h12{height:48.096000pt;}
.h19{height:49.152000pt;}
.h1e{height:56.773334pt;}
.h1c{height:56.933334pt;}
.he{height:69.046875pt;}
.h1d{height:76.944001pt;}
.h17{height:78.213332pt;}
.h16{height:78.511999pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:12.506800pt;}
.x2{left:54.392400pt;}
.x17{left:58.356793pt;}
.xe{left:118.350138pt;}
.xb{left:125.291333pt;}
.x19{left:141.762268pt;}
.x4{left:207.516800pt;}
.xc{left:223.512138pt;}
.xf{left:257.016805pt;}
.x1c{left:267.195190pt;}
.x18{left:301.762126pt;}
.x13{left:311.691461pt;}
.x1a{left:340.431599pt;}
.x14{left:363.258128pt;}
.x15{left:411.054127pt;}
.x16{left:458.131461pt;}
.x6{left:467.014133pt;}
.x10{left:509.698138pt;}
.x3{left:519.632533pt;}
.x1b{left:566.102262pt;}
.x11{left:571.214139pt;}
.x12{left:635.399471pt;}
.x8{left:650.790800pt;}
.x9{left:681.510133pt;}
.x5{left:689.195867pt;}
.x7{left:722.111067pt;}
.xd{left:732.628825pt;}
.x1{left:733.540267pt;}
}




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