
    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_0ffdc787017611bd9f8d13f5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_e52bfb5ef72d68f9043b8e5a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_c8dcdfe29314454888b1f950.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005371;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_c2eb573ec00d9eee637c70cc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.090000;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_846b2b333b8b0707891a9e56.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.004000;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_1efefee6a0eba496dce2ff10.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.027000;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_4fbd9e3ebf25534c471472c0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.009000;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_fc43075733010cb2d19a245a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.998000;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_ed05c021586656b8118467cf.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.003000;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_e0e736fb63104918bdaa4a36.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.734000;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_bdd0eb247c3223b2333d68d0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.884000;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_fd5f5f944d17f21bbb1c2b79.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.022000;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_ed069c7b6ae82835df46da09.woff2')format("woff");}.fff{font-family:fff;line-height:3.732000;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_42f5926e1590335ebd132e4d.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_e57b1d2248863d37636341b3.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.093000;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_604ec23ff266487359953bb1.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.988000;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_138acc4f11883201d6f0e196.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.693000;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_85880e2da0d89c5aaaf43b31.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.740000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249627,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281284,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);}
.v5{vertical-align:-56.461436px;}
.v4{vertical-align:-12.584280px;}
.v3{vertical-align:-9.530169px;}
.v1{vertical-align:-7.836599px;}
.v14{vertical-align:-3.066000px;}
.v0{vertical-align:0.000000px;}
.v13{vertical-align:4.080000px;}
.va{vertical-align:8.162988px;}
.vb{vertical-align:9.528000px;}
.v11{vertical-align:10.545244px;}
.v7{vertical-align:11.903260px;}
.vf{vertical-align:13.266102px;}
.v15{vertical-align:14.966484px;}
.v19{vertical-align:16.671704px;}
.v9{vertical-align:17.690988px;}
.v2{vertical-align:18.708000px;}
.v16{vertical-align:23.466000px;}
.v6{vertical-align:24.486000px;}
.v8{vertical-align:25.848000px;}
.v10{vertical-align:30.612102px;}
.v17{vertical-align:31.629828px;}
.v12{vertical-align:32.655244px;}
.vc{vertical-align:33.674988px;}
.vd{vertical-align:34.698000px;}
.v18{vertical-align:40.820835px;}
.ve{vertical-align:48.984000px;}
.ls56{letter-spacing:-1.019988px;}
.ls57{letter-spacing:-0.839976px;}
.ls2{letter-spacing:-0.509994px;}
.ls58{letter-spacing:-0.419988px;}
.ls0{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.000005px;}
.ls4{letter-spacing:0.004072px;}
.ls23{letter-spacing:0.012312px;}
.ls4d{letter-spacing:0.020460px;}
.ls3{letter-spacing:0.021493px;}
.ls3f{letter-spacing:0.028748px;}
.ls4e{letter-spacing:0.034308px;}
.ls44{letter-spacing:0.076231px;}
.ls12{letter-spacing:0.126211px;}
.ls19{letter-spacing:0.148575px;}
.ls3b{letter-spacing:0.194499px;}
.ls42{letter-spacing:0.196400px;}
.ls2d{letter-spacing:0.201290px;}
.ls27{letter-spacing:0.205186px;}
.ls4c{letter-spacing:0.206971px;}
.ls31{letter-spacing:0.256961px;}
.lsb{letter-spacing:0.266370px;}
.ls9{letter-spacing:0.307970px;}
.ls1d{letter-spacing:0.407995px;}
.ls1{letter-spacing:0.509994px;}
.lsf{letter-spacing:0.523530px;}
.ls53{letter-spacing:0.951718px;}
.ls54{letter-spacing:0.957033px;}
.ls28{letter-spacing:2.760517px;}
.ls32{letter-spacing:2.781342px;}
.ls8{letter-spacing:2.787362px;}
.ls2c{letter-spacing:2.836641px;}
.lsc{letter-spacing:2.874961px;}
.ls55{letter-spacing:2.929615px;}
.ls1e{letter-spacing:2.943162px;}
.lsa{letter-spacing:2.949162px;}
.ls43{letter-spacing:3.102343px;}
.ls6{letter-spacing:3.102517px;}
.ls35{letter-spacing:3.123342px;}
.ls15{letter-spacing:3.159859px;}
.ls2e{letter-spacing:3.175806px;}
.ls22{letter-spacing:3.178641px;}
.ls38{letter-spacing:3.260428px;}
.ls39{letter-spacing:3.270748px;}
.ls3c{letter-spacing:3.285162px;}
.ls47{letter-spacing:6.931641px;}
.ls17{letter-spacing:8.338402px;}
.ls18{letter-spacing:8.343502px;}
.ls2b{letter-spacing:8.516895px;}
.ls4a{letter-spacing:8.522000px;}
.ls16{letter-spacing:8.680098px;}
.ls10{letter-spacing:11.036270px;}
.ls1c{letter-spacing:11.306567px;}
.ls2f{letter-spacing:11.372866px;}
.ls1b{letter-spacing:11.377966px;}
.ls26{letter-spacing:11.408566px;}
.ls11{letter-spacing:11.413666px;}
.ls4f{letter-spacing:11.429746px;}
.ls21{letter-spacing:11.807445px;}
.ls45{letter-spacing:13.078642px;}
.ls51{letter-spacing:13.127746px;}
.ls3e{letter-spacing:13.351486px;}
.ls40{letter-spacing:13.420334px;}
.ls52{letter-spacing:13.471549px;}
.ls20{letter-spacing:14.131934px;}
.ls49{letter-spacing:14.137034px;}
.ls34{letter-spacing:14.346948px;}
.ls37{letter-spacing:14.347662px;}
.ls25{letter-spacing:14.401806px;}
.ls48{letter-spacing:14.422630px;}
.ls3d{letter-spacing:16.595205px;}
.ls13{letter-spacing:17.046517px;}
.ls5{letter-spacing:17.052517px;}
.ls30{letter-spacing:17.122641px;}
.lsd{letter-spacing:17.388517px;}
.ls3a{letter-spacing:17.458641px;}
.ls24{letter-spacing:18.324502px;}
.ls36{letter-spacing:18.399471px;}
.ls7{letter-spacing:18.663646px;}
.ls33{letter-spacing:18.742185px;}
.ls4b{letter-spacing:19.170674px;}
.ls50{letter-spacing:21.577846px;}
.ls46{letter-spacing:24.721147px;}
.ls1a{letter-spacing:27.099162px;}
.ls14{letter-spacing:33.863602px;}
.ls1f{letter-spacing:37.933354px;}
.lse{letter-spacing:44.405178px;}
.ls41{letter-spacing:50.227147px;}
.ls29{letter-spacing:53.442517px;}
.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;}
}
.ws11{word-spacing:-59.679498px;}
.wsd{word-spacing:-50.999400px;}
.ws23{word-spacing:-37.300961px;}
.ws7{word-spacing:-37.295861px;}
.ws8{word-spacing:-36.867466px;}
.ws21{word-spacing:-36.862366px;}
.ws19{word-spacing:-36.857050px;}
.ws15{word-spacing:-35.699400px;}
.wsb{word-spacing:-32.894613px;}
.ws2d{word-spacing:-30.195000px;}
.ws1c{word-spacing:-25.499400px;}
.ws2b{word-spacing:-25.245000px;}
.ws14{word-spacing:-24.459312px;}
.wse{word-spacing:-23.026113px;}
.ws13{word-spacing:-23.010929px;}
.ws18{word-spacing:-17.574393px;}
.ws1{word-spacing:-13.986000px;}
.ws4{word-spacing:-12.749850px;}
.wsa{word-spacing:-12.494853px;}
.ws6{word-spacing:-12.239856px;}
.ws5{word-spacing:-12.191848px;}
.ws3c{word-spacing:-11.249850px;}
.ws31{word-spacing:-10.499700px;}
.ws34{word-spacing:-10.289706px;}
.ws32{word-spacing:-10.079712px;}
.ws33{word-spacing:-9.869718px;}
.ws3{word-spacing:-9.750150px;}
.ws35{word-spacing:-9.659724px;}
.ws1e{word-spacing:-9.638838px;}
.ws10{word-spacing:-8.924850px;}
.wsc{word-spacing:-8.746353px;}
.ws1d{word-spacing:-8.389401px;}
.ws20{word-spacing:-8.384301px;}
.ws1b{word-spacing:-6.247353px;}
.ws9{word-spacing:-4.181951px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:4.438800px;}
.ws17{word-spacing:16.955230px;}
.ws22{word-spacing:16.961230px;}
.ws2c{word-spacing:20.835540px;}
.wsf{word-spacing:24.148216px;}
.ws1a{word-spacing:24.916930px;}
.ws16{word-spacing:35.832178px;}
.ws1f{word-spacing:133.113534px;}
.ws3e{word-spacing:213.931648px;}
.ws30{word-spacing:234.793369px;}
.ws26{word-spacing:252.568132px;}
.ws2f{word-spacing:254.201611px;}
.ws12{word-spacing:262.713209px;}
.ws2a{word-spacing:265.496460px;}
.ws29{word-spacing:278.375288px;}
.ws25{word-spacing:278.397788px;}
.ws27{word-spacing:278.712784px;}
.ws2e{word-spacing:280.031266px;}
.ws28{word-spacing:291.326116px;}
.ws24{word-spacing:304.227444px;}
.ws3d{word-spacing:323.892181px;}
.ws3b{word-spacing:356.021753px;}
.ws39{word-spacing:1287.941327px;}
.ws36{word-spacing:1301.081152px;}
.ws3a{word-spacing:1337.215670px;}
.ws38{word-spacing:1361.875341px;}
.ws37{word-spacing:1404.264776px;}
._18{margin-left:-106.481647px;}
._19{margin-left:-52.927177px;}
._17{margin-left:-47.679596px;}
._1{margin-left:-7.691980px;}
._2{margin-left:-4.140000px;}
._3f{margin-left:-3.062837px;}
._0{margin-left:-1.920020px;}
._8{width:1.008000px;}
._9{width:2.033912px;}
._6{width:3.096044px;}
._f{width:4.098044px;}
._3{width:5.291956px;}
._e{width:6.352983px;}
._4{width:7.874354px;}
._5{width:9.006547px;}
._10{width:10.029812px;}
._7{width:11.280000px;}
._d{width:13.746000px;}
._13{width:15.623916px;}
._a{width:16.980000px;}
._14{width:18.160200px;}
._b{width:19.812000px;}
._c{width:20.928000px;}
._15{width:22.100194px;}
._11{width:25.331402px;}
._12{width:26.361590px;}
._1a{width:33.083311px;}
._16{width:42.609999px;}
._44{width:51.824239px;}
._53{width:86.268264px;}
._1f{width:88.697776px;}
._4c{width:92.218586px;}
._43{width:94.598787px;}
._57{width:99.238493px;}
._1c{width:105.631884px;}
._1e{width:108.347845px;}
._5e{width:113.147754px;}
._4d{width:117.313436px;}
._1d{width:125.947738px;}
._46{width:133.553719px;}
._56{width:146.968040px;}
._31{width:148.596952px;}
._32{width:159.821920px;}
._50{width:161.052853px;}
._4a{width:165.863288px;}
._60{width:170.450195px;}
._42{width:171.938997px;}
._47{width:173.967680px;}
._5f{width:175.682353px;}
._1b{width:183.092946px;}
._6c{width:198.582267px;}
._38{width:200.107746px;}
._40{width:201.978024px;}
._6f{width:210.462108px;}
._39{width:213.202572px;}
._63{width:222.850443px;}
._3c{width:225.959902px;}
._70{width:227.215385px;}
._66{width:229.406856px;}
._33{width:231.202332px;}
._3b{width:245.674054px;}
._3e{width:250.732071px;}
._62{width:254.638105px;}
._41{width:267.450673px;}
._67{width:268.695917px;}
._36{width:271.872875px;}
._26{width:276.746310px;}
._3a{width:278.384459px;}
._61{width:280.140666px;}
._2e{width:289.670138px;}
._37{width:291.096533px;}
._72{width:294.552573px;}
._6d{width:296.181465px;}
._6b{width:298.719432px;}
._24{width:302.575966px;}
._35{width:303.822449px;}
._3d{width:308.340303px;}
._28{width:315.477294px;}
._34{width:317.133272px;}
._65{width:318.762250px;}
._6a{width:322.965194px;}
._21{width:328.405621px;}
._69{width:330.129098px;}
._71{width:337.081506px;}
._2d{width:341.644445px;}
._6e{width:342.809929px;}
._30{width:354.235277px;}
._2b{width:357.272736px;}
._25{width:359.522706px;}
._49{width:366.889108px;}
._68{width:371.321549px;}
._23{width:373.810016px;}
._29{width:380.244930px;}
._64{width:385.635858px;}
._2c{width:390.977287px;}
._2f{width:406.097085px;}
._27{width:424.105760px;}
._45{width:434.838202px;}
._2a{width:441.826609px;}
._5a{width:442.858326px;}
._52{width:448.518020px;}
._22{width:454.516440px;}
._4b{width:467.967373px;}
._4f{width:473.267690px;}
._54{width:485.552526px;}
._20{width:490.605958px;}
._48{width:492.707430px;}
._4e{width:495.002400px;}
._51{width:516.692111px;}
._59{width:523.577019px;}
._55{width:550.172980px;}
._58{width:778.944114px;}
._5d{width:1299.425089px;}
._5b{width:1394.229910px;}
._5c{width:1395.804889px;}
.fc5{color:transparent;}
.fc3{color:rgb(130,122,156);}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(163,92,81);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:25.499400px;}
.fs17{font-size:27.996600px;}
.fs15{font-size:33.660000px;}
.fs12{font-size:33.994800px;}
.fs10{font-size:35.699400px;}
.fsb{font-size:35.995200px;}
.fse{font-size:39.000600px;}
.fs16{font-size:40.260000px;}
.fsd{font-size:41.998800px;}
.fs4{font-size:42.000000px;}
.fs13{font-size:44.999400px;}
.fsf{font-size:47.999400px;}
.fs6{font-size:48.000000px;}
.fsc{font-size:50.999400px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs14{font-size:63.660000px;}
.fs9{font-size:71.999400px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:90.000000px;}
.fsa{font-size:101.999400px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y183{bottom:2.250330px;}
.y197{bottom:3.534300px;}
.y178{bottom:7.846095px;}
.y190{bottom:15.298470px;}
.y199{bottom:35.982540px;}
.y191{bottom:39.415860px;}
.y5d{bottom:42.179400px;}
.y9c{bottom:42.187021px;}
.y19a{bottom:56.565630px;}
.y192{bottom:63.432270px;}
.y5{bottom:66.525004px;}
.y34{bottom:67.597501px;}
.yb8{bottom:77.054674px;}
.y19b{bottom:77.157135px;}
.y70{bottom:78.577194px;}
.y137{bottom:78.747045px;}
.y1b2{bottom:82.745034px;}
.y33{bottom:84.097501px;}
.y146{bottom:84.361514px;}
.y193{bottom:87.448680px;}
.y176{bottom:88.528650px;}
.y6f{bottom:91.333315px;}
.y1c3{bottom:93.461074px;}
.yae{bottom:95.075408px;}
.yb7{bottom:95.082962px;}
.y1b1{bottom:96.266229px;}
.y136{bottom:96.775333px;}
.y4{bottom:97.125005px;}
.y19c{bottom:97.841205px;}
.y212{bottom:98.307686px;}
.y21c{bottom:98.731874px;}
.y145{bottom:102.389801px;}
.y6e{bottom:104.088461px;}
.y175{bottom:106.556938px;}
.y1b0{bottom:109.787424px;}
.y1c2{bottom:111.489362px;}
.y194{bottom:111.566070px;}
.y211{bottom:111.828149px;}
.y21b{bottom:112.253387px;}
.yad{bottom:113.103696px;}
.yb6{bottom:113.111250px;}
.y135{bottom:114.803621px;}
.y6d{bottom:116.844583px;}
.y19d{bottom:118.424295px;}
.y144{bottom:120.332665px;}
.y1af{bottom:123.223120px;}
.y174{bottom:124.499801px;}
.y210{bottom:125.264616px;}
.y21a{bottom:125.774901px;}
.y260{bottom:128.079645px;}
.y1c1{bottom:129.432226px;}
.y6c{bottom:129.600704px;}
.yac{bottom:131.046560px;}
.yb5{bottom:131.054114px;}
.y134{bottom:132.747759px;}
.y195{bottom:135.582480px;}
.y143{bottom:138.360953px;}
.y19e{bottom:139.015800px;}
.y219{bottom:139.210317px;}
.y21{bottom:139.264499px;}
.y25f{bottom:141.600109px;}
.y6b{bottom:142.355850px;}
.y173{bottom:142.528089px;}
.y1ae{bottom:143.207353px;}
.y111{bottom:146.438112px;}
.y1c0{bottom:147.460514px;}
.yab{bottom:149.074848px;}
.yb4{bottom:149.082402px;}
.y133{bottom:150.774772px;}
.y20f{bottom:152.306593px;}
.y218{bottom:152.731831px;}
.y25e{bottom:155.121622px;}
.y142{bottom:156.389241px;}
.y1ad{bottom:156.728548px;}
.y196{bottom:159.598890px;}
.y172{bottom:160.556377px;}
.y110{bottom:164.466400px;}
.y1bf{bottom:165.488801px;}
.y20e{bottom:165.828107px;}
.yaa{bottom:167.103136px;}
.yb3{bottom:167.110690px;}
.y25d{bottom:168.643136px;}
.y132{bottom:168.803060px;}
.y1ac{bottom:170.165369px;}
.y141{bottom:174.332105px;}
.y9b{bottom:175.438065px;}
.y19f{bottom:178.130370px;}
.y171{bottom:178.499241px;}
.y198{bottom:178.814790px;}
.y217{bottom:179.773808px;}
.y10f{bottom:181.304253px;}
.y10e{bottom:181.983791px;}
.y25c{bottom:182.078552px;}
.y1ab{bottom:183.686564px;}
.ya9{bottom:185.046000px;}
.yb2{bottom:185.053554px;}
.y10d{bottom:185.727460px;}
.y131{bottom:186.747199px;}
.y9a{bottom:191.935459px;}
.y140{bottom:192.360393px;}
.y20d{bottom:192.785036px;}
.y216{bottom:193.210274px;}
.y25b{bottom:195.600066px;}
.y170{bottom:196.527529px;}
.y18{bottom:196.933500px;}
.y1be{bottom:201.459953px;}
.ya8{bottom:203.074500px;}
.yb1{bottom:203.081842px;}
.y1aa{bottom:203.585298px;}
.y130{bottom:204.775487px;}
.y20c{bottom:206.305500px;}
.y215{bottom:206.729688px;}
.y10c{bottom:206.816987px;}
.y99{bottom:208.432853px;}
.y18b{bottom:209.104335px;}
.y25a{bottom:209.120530px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y20b{bottom:210.982500px;}
.y16f{bottom:214.555817px;}
.y5a{bottom:219.148469px;}
.y1bd{bottom:219.488241px;}
.y20a{bottom:219.826500px;}
.y184{bottom:220.868505px;}
.yd9{bottom:220.933487px;}
.yb0{bottom:221.110129px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y259{bottom:222.642043px;}
.y12f{bottom:222.802500px;}
.y12d{bottom:222.804741px;}
.y1a9{bottom:223.569532px;}
.y10b{bottom:224.845563px;}
.y98{bottom:225.015446px;}
.y13f{bottom:228.331545px;}
.y12e{bottom:228.415500px;}
.y16e{bottom:232.498681px;}
.y208{bottom:233.263298px;}
.y214{bottom:233.772715px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y258{bottom:236.078509px;}
.y59{bottom:237.091333px;}
.y1bc{bottom:237.431105px;}
.y209{bottom:237.940500px;}
.yd8{bottom:238.960848px;}
.ya7{bottom:239.052993px;}
.y12c{bottom:240.747605px;}
.y97{bottom:241.512840px;}
.y10a{bottom:242.958931px;}
.y1a8{bottom:243.468266px;}
.y185{bottom:244.985895px;}
.y13e{bottom:246.359833px;}
.y213{bottom:247.208131px;}
.y207{bottom:247.209000px;}
.y257{bottom:249.598973px;}
.y16d{bottom:250.526969px;}
.y58{bottom:255.119621px;}
.yd7{bottom:256.904987px;}
.y18d{bottom:256.943610px;}
.ya6{bottom:257.081281px;}
.y96{bottom:258.011433px;}
.y12b{bottom:258.775893px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y256{bottom:263.120487px;}
.y1a7{bottom:263.452500px;}
.y107{bottom:268.299879px;}
.y16c{bottom:268.555257px;}
.y186{bottom:269.002305px;}
.y108{bottom:269.149594px;}
.y106{bottom:269.405904px;}
.y109{bottom:271.105500px;}
.y105{bottom:272.041500px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y57{bottom:273.147908px;}
.y1bb{bottom:273.487681px;}
.y95{bottom:274.508827px;}
.y100{bottom:274.592253px;}
.y206{bottom:274.599357px;}
.yd6{bottom:274.934029px;}
.ya5{bottom:275.109569px;}
.y255{bottom:276.642000px;}
.y12a{bottom:276.804181px;}
.yff{bottom:279.013848px;}
.y13d{bottom:282.332259px;}
.y1a6{bottom:283.352033px;}
.y103{bottom:284.031891px;}
.y101{bottom:284.371475px;}
.y102{bottom:285.051689px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y104{bottom:286.668000px;}
.y254{bottom:290.077416px;}
.y56{bottom:291.090772px;}
.y1ba{bottom:291.430545px;}
.y205{bottom:292.542221px;}
.yd5{bottom:292.962317px;}
.y187{bottom:293.018715px;}
.ya4{bottom:293.052433px;}
.y129{bottom:294.747045px;}
.y94{bottom:299.679712px;}
.y1a5{bottom:299.849064px;}
.y13c{bottom:300.359272px;}
.y253{bottom:303.598930px;}
.y16b{bottom:304.526408px;}
.y55{bottom:309.119060px;}
.y1b9{bottom:309.458833px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y204{bottom:310.570509px;}
.yfe{bottom:310.648539px;}
.yd4{bottom:310.905181px;}
.yaf{bottom:311.080721px;}
.yfd{bottom:314.987772px;}
.y93{bottom:316.177106px;}
.y252{bottom:317.119394px;}
.y188{bottom:317.136105px;}
.y13b{bottom:318.387560px;}
.y1a4{bottom:322.299000px;}
.y16a{bottom:322.554696px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y54{bottom:327.147348px;}
.y1b8{bottom:327.487121px;}
.y203{bottom:328.598797px;}
.yd3{bottom:328.933469px;}
.y18e{bottom:328.992840px;}
.ya3{bottom:329.109009px;}
.y251{bottom:330.640907px;}
.y128{bottom:330.803621px;}
.y92{bottom:332.674500px;}
.y13a{bottom:336.331699px;}
.y169{bottom:340.497560px;}
.y189{bottom:341.051535px;}
.y250{bottom:344.077374px;}
.y53{bottom:345.091487px;}
.y1b7{bottom:345.431259px;}
.yd2{bottom:346.961757px;}
.ya2{bottom:347.051873px;}
.yf{bottom:348.133500px;}
.y127{bottom:348.747759px;}
.y32{bottom:350.776501px;}
.yfc{bottom:350.958923px;}
.y139{bottom:354.359987px;}
.y24f{bottom:357.597837px;}
.y168{bottom:358.525848px;}
.y52{bottom:363.118500px;}
.y202{bottom:364.569949px;}
.yd1{bottom:364.904621px;}
.y18a{bottom:365.067945px;}
.ya1{bottom:365.080161px;}
.y126{bottom:366.774772px;}
.yfb{bottom:368.987211px;}
.y24e{bottom:371.119351px;}
.y138{bottom:372.387000px;}
.y167{bottom:376.554136px;}
.y51{bottom:381.146250px;}
.y1b6{bottom:381.486560px;}
.y201{bottom:382.598236px;}
.yd0{bottom:382.932908px;}
.ya0{bottom:383.108449px;}
.y18c{bottom:383.697930px;}
.y18f{bottom:384.483000px;}
.y24d{bottom:384.640865px;}
.y125{bottom:384.803060px;}
.ye{bottom:386.785499px;}
.yfa{bottom:387.015499px;}
.y166{bottom:394.497000px;}
.y24c{bottom:398.076281px;}
.y1b5{bottom:399.430699px;}
.y200{bottom:400.541100px;}
.ycf{bottom:400.961196px;}
.y91{bottom:401.052587px;}
.y124{bottom:402.747199px;}
.yf9{bottom:404.958363px;}
.yd{bottom:408.044999px;}
.y24b{bottom:411.597794px;}
.y17f{bottom:414.775350px;}
.y31{bottom:415.126501px;}
.y1b4{bottom:417.458987px;}
.y1ff{bottom:418.569388px;}
.yce{bottom:418.904060px;}
.y90{bottom:419.079600px;}
.y123{bottom:420.775487px;}
.yf8{bottom:422.986651px;}
.y165{bottom:423.326565px;}
.y50{bottom:424.686450px;}
.y24a{bottom:425.118258px;}
.y179{bottom:426.539520px;}
.y1b3{bottom:435.486000px;}
.y1fe{bottom:436.597676px;}
.y8f{bottom:437.107888px;}
.y249{bottom:438.639772px;}
.y122{bottom:438.802500px;}
.y177{bottom:439.314000px;}
.yf7{bottom:442.206151px;}
.y164{bottom:443.225300px;}
.y248{bottom:452.076238px;}
.y1fd{bottom:454.541815px;}
.ycd{bottom:454.960636px;}
.y8e{bottom:455.052027px;}
.y17a{bottom:455.352480px;}
.y4f{bottom:455.470500px;}
.y121{bottom:456.747000px;}
.yf6{bottom:457.001253px;}
.yf5{bottom:461.424579px;}
.y277{bottom:461.934590px;}
.y163{bottom:463.209534px;}
.y247{bottom:465.596701px;}
.y1fc{bottom:472.570103px;}
.ycc{bottom:472.903639px;}
.y8d{bottom:473.080315px;}
.yf3{bottom:476.730753px;}
.y246{bottom:479.118215px;}
.yf4{bottom:481.153697px;}
.yf2{bottom:481.154621px;}
.y30{bottom:482.407500px;}
.y162{bottom:483.109393px;}
.y17b{bottom:484.274835px;}
.y276{bottom:485.236404px;}
.y4e{bottom:486.258000px;}
.y1df{bottom:486.425408px;}
.y1fb{bottom:490.597116px;}
.ycb{bottom:491.101500px;}
.yca{bottom:491.106150px;}
.y8c{bottom:491.108603px;}
.y245{bottom:492.639729px;}
.y120{bottom:492.805008px;}
.y1de{bottom:499.946603px;}
.yc{bottom:502.864502px;}
.y161{bottom:503.008128px;}
.y244{bottom:506.075145px;}
.y4d{bottom:507.262500px;}
.y275{bottom:508.537093px;}
.y1fa{bottom:508.541255px;}
.y8b{bottom:509.051467px;}
.y11f{bottom:510.747872px;}
.y17c{bottom:513.096210px;}
.y1dd{bottom:513.383424px;}
.yf1{bottom:517.125772px;}
.y243{bottom:519.596659px;}
.yb{bottom:520.864502px;}
.y160{bottom:522.992362px;}
.y1f9{bottom:526.569543px;}
.y1dc{bottom:526.904619px;}
.yc9{bottom:527.077301px;}
.y8a{bottom:527.079755px;}
.y4c{bottom:528.267000px;}
.y274{bottom:531.837783px;}
.y242{bottom:533.117122px;}
.yf0{bottom:535.154060px;}
.ya{bottom:538.864499px;}
.y17d{bottom:542.018565px;}
.y15f{bottom:542.892221px;}
.y2f{bottom:543.826501px;}
.yc8{bottom:545.105589px;}
.y89{bottom:545.108043px;}
.y241{bottom:546.638636px;}
.y1db{bottom:546.888852px;}
.y4b{bottom:549.186000px;}
.yef{bottom:553.098199px;}
.y273{bottom:555.138472px;}
.y9{bottom:556.864499px;}
.y240{bottom:560.075102px;}
.y1da{bottom:560.324548px;}
.y1f8{bottom:562.540694px;}
.y15e{bottom:562.876455px;}
.yc7{bottom:563.048453px;}
.y88{bottom:563.050907px;}
.y4a{bottom:570.192000px;}
.y17e{bottom:570.738960px;}
.yee{bottom:571.126487px;}
.y23f{bottom:573.595566px;}
.y1d9{bottom:573.845743px;}
.y272{bottom:578.439161px;}
.y1f7{bottom:580.568982px;}
.yc6{bottom:581.076741px;}
.y87{bottom:581.079194px;}
.y15d{bottom:582.775189px;}
.y23e{bottom:587.117079px;}
.y1d8{bottom:587.366937px;}
.yed{bottom:589.153487px;}
.y180{bottom:589.366140px;}
.y181{bottom:590.634330px;}
.y49{bottom:591.196500px;}
.y1f6{bottom:598.597270px;}
.yc5{bottom:599.105029px;}
.y86{bottom:599.107482px;}
.y23d{bottom:600.638593px;}
.y271{bottom:601.739851px;}
.y15c{bottom:602.675049px;}
.yec{bottom:607.184377px;}
.y1d7{bottom:607.266797px;}
.y2e{bottom:611.107500px;}
.y48{bottom:612.201000px;}
.y23c{bottom:614.074009px;}
.y1f5{bottom:616.540134px;}
.yc4{bottom:617.047893px;}
.y85{bottom:617.050346px;}
.y15b{bottom:622.659283px;}
.y270{bottom:625.040540px;}
.yeb{bottom:625.127241px;}
.y1d6{bottom:627.251031px;}
.y23b{bottom:627.595523px;}
.y47{bottom:633.205500px;}
.y11e{bottom:633.629296px;}
.y1f4{bottom:634.568422px;}
.yc3{bottom:635.076181px;}
.y84{bottom:635.078634px;}
.y28a{bottom:638.731612px;}
.y23a{bottom:641.115987px;}
.y15a{bottom:642.558017px;}
.yea{bottom:643.155529px;}
.y2d{bottom:645.457501px;}
.y8{bottom:645.510000px;}
.y1d5{bottom:647.149765px;}
.y26f{bottom:648.341229px;}
.y289{bottom:652.252807px;}
.y1f3{bottom:652.596710px;}
.yc2{bottom:653.104469px;}
.y83{bottom:653.106922px;}
.y46{bottom:654.210000px;}
.y239{bottom:654.637500px;}
.y2c{bottom:660.457501px;}
.ye9{bottom:661.183817px;}
.y159{bottom:662.456752px;}
.y7{bottom:666.771000px;}
.y1d4{bottom:667.048500px;}
.y238{bottom:668.073966px;}
.y1f2{bottom:670.539574px;}
.yc1{bottom:671.047333px;}
.y82{bottom:671.049786px;}
.y26e{bottom:671.641919px;}
.y45{bottom:675.214500px;}
.y2b{bottom:675.457500px;}
.y288{bottom:675.553496px;}
.ye8{bottom:679.126681px;}
.y237{bottom:681.594430px;}
.y158{bottom:682.440986px;}
.y1d3{bottom:687.033533px;}
.y1f1{bottom:688.567862px;}
.yc0{bottom:689.075621px;}
.y9f{bottom:689.078074px;}
.y26d{bottom:694.942608px;}
.y236{bottom:695.115944px;}
.y44{bottom:696.219000px;}
.ye7{bottom:697.154969px;}
.y287{bottom:698.854186px;}
.y157{bottom:702.340845px;}
.y1d2{bottom:703.530564px;}
.y6a{bottom:706.414571px;}
.y1f0{bottom:706.596150px;}
.ybf{bottom:707.103908px;}
.y81{bottom:707.106362px;}
.y235{bottom:708.637457px;}
.y286{bottom:712.375380px;}
.ye6{bottom:715.183257px;}
.y43{bottom:717.223500px;}
.y26c{bottom:718.243297px;}
.y69{bottom:719.170657px;}
.y234{bottom:722.072873px;}
.y156{bottom:722.239580px;}
.y1ef{bottom:724.539014px;}
.ybe{bottom:725.046772px;}
.y80{bottom:725.049226px;}
.y1d1{bottom:725.980500px;}
.y6{bottom:726.298500px;}
.ye5{bottom:733.126121px;}
.y233{bottom:735.594387px;}
.y285{bottom:735.676070px;}
.y42{bottom:738.228000px;}
.y26b{bottom:741.543987px;}
.y155{bottom:742.223813px;}
.y1ee{bottom:742.567301px;}
.ybd{bottom:743.075060px;}
.y7f{bottom:743.077514px;}
.y68{bottom:744.681778px;}
.y232{bottom:749.114851px;}
.y3{bottom:752.599495px;}
.y11d{bottom:756.426872px;}
.y2a{bottom:756.817498px;}
.y67{bottom:757.437863px;}
.y284{bottom:758.976759px;}
.y41{bottom:759.232500px;}
.ybc{bottom:761.103348px;}
.y7e{bottom:761.105801px;}
.y154{bottom:762.123673px;}
.y231{bottom:762.636364px;}
.y26a{bottom:764.844676px;}
.ye4{bottom:769.182696px;}
.y66{bottom:770.192899px;}
.y283{bottom:772.497954px;}
.y230{bottom:776.072830px;}
.y1ed{bottom:778.538453px;}
.ybb{bottom:779.047487px;}
.y7d{bottom:779.048665px;}
.y40{bottom:780.237000px;}
.y153{bottom:782.107907px;}
.y65{bottom:782.948985px;}
.y1d0{bottom:784.233908px;}
.y282{bottom:786.020273px;}
.y29{bottom:786.817498px;}
.ye3{bottom:787.125560px;}
.y269{bottom:788.145365px;}
.y22f{bottom:789.593294px;}
.y1ec{bottom:796.566741px;}
.yba{bottom:797.074500px;}
.y7c{bottom:797.076953px;}
.y1cf{bottom:797.755103px;}
.y281{bottom:799.455969px;}
.y3f{bottom:801.241500px;}
.y152{bottom:802.006641px;}
.y22e{bottom:803.114808px;}
.y28{bottom:804.817498px;}
.ye2{bottom:805.153848px;}
.y64{bottom:808.460106px;}
.y1ce{bottom:811.191924px;}
.y268{bottom:811.447180px;}
.y1eb{bottom:814.595029px;}
.yb9{bottom:815.103000px;}
.y7b{bottom:815.105241px;}
.y22d{bottom:816.636322px;}
.y63{bottom:821.216191px;}
.y151{bottom:821.905376px;}
.y3e{bottom:822.246000px;}
.y280{bottom:822.756659px;}
.y27{bottom:822.817498px;}
.ye1{bottom:823.182136px;}
.y1cd{bottom:824.713119px;}
.y22c{bottom:830.071738px;}
.y1ea{bottom:832.537893px;}
.y7a{bottom:833.048105px;}
.y62{bottom:833.972277px;}
.y267{bottom:834.832243px;}
.ye0{bottom:841.126487px;}
.y150{bottom:841.889610px;}
.y3d{bottom:843.250500px;}
.y22b{bottom:843.593251px;}
.y1cc{bottom:844.697352px;}
.y27f{bottom:846.142847px;}
.y61{bottom:846.643315px;}
.y1e9{bottom:850.566181px;}
.y79{bottom:851.076393px;}
.y22a{bottom:857.113715px;}
.y266{bottom:858.132932px;}
.y1cb{bottom:858.133048px;}
.yde{bottom:859.153417px;}
.ydf{bottom:859.153500px;}
.y60{bottom:859.398350px;}
.y27e{bottom:859.578543px;}
.y14f{bottom:861.789469px;}
.y3c{bottom:864.255000px;}
.y78{bottom:869.104681px;}
.y229{bottom:870.635229px;}
.y1ca{bottom:871.654243px;}
.y26{bottom:875.289002px;}
.y11c{bottom:879.308109px;}
.y2{bottom:879.369000px;}
.y265{bottom:881.433621px;}
.y14e{bottom:881.688204px;}
.y27d{bottom:882.879232px;}
.y228{bottom:884.071695px;}
.y5f{bottom:884.740426px;}
.y1c9{bottom:885.175437px;}
.y3b{bottom:885.259500px;}
.y1e8{bottom:886.537333px;}
.y9e{bottom:887.047545px;}
.y27c{bottom:896.400427px;}
.y11b{bottom:897.336397px;}
.y227{bottom:897.592158px;}
.y5e{bottom:899.706699px;}
.y14d{bottom:901.672437px;}
.y1e7{bottom:904.565621px;}
.y264{bottom:904.734311px;}
.y1c8{bottom:905.075297px;}
.y77{bottom:905.075833px;}
.y3a{bottom:906.264000px;}
.y226{bottom:911.113672px;}
.y11a{bottom:914.258652px;}
.y119{bottom:918.340730px;}
.y27b{bottom:919.701116px;}
.y14c{bottom:921.572297px;}
.y1e6{bottom:922.593908px;}
.y76{bottom:923.104121px;}
.y225{bottom:924.635186px;}
.y1c7{bottom:925.059531px;}
.y263{bottom:928.035000px;}
.y117{bottom:933.477753px;}
.y118{bottom:933.731652px;}
.y116{bottom:937.899348px;}
.y224{bottom:938.070602px;}
.ydd{bottom:938.409436px;}
.y25{bottom:938.953498px;}
.y38{bottom:939.940500px;}
.y1e5{bottom:940.536772px;}
.y75{bottom:941.048259px;}
.y14b{bottom:941.556531px;}
.y27a{bottom:943.001805px;}
.y1c6{bottom:944.958265px;}
.y39{bottom:945.978000px;}
.y262{bottom:947.934000px;}
.y223{bottom:951.592116px;}
.y279{bottom:956.523000px;}
.y1e4{bottom:958.565060px;}
.y74{bottom:959.075272px;}
.ydb{bottom:961.370070px;}
.y14a{bottom:961.455265px;}
.y37{bottom:964.092776px;}
.y1c5{bottom:964.857000px;}
.y222{bottom:965.112579px;}
.y1{bottom:966.726000px;}
.y115{bottom:969.534039px;}
.y113{bottom:970.128791px;}
.y24{bottom:970.453498px;}
.y112{bottom:973.870675px;}
.y114{bottom:973.870849px;}
.ydc{bottom:975.486000px;}
.y278{bottom:976.422000px;}
.y1e3{bottom:976.593348px;}
.y1a3{bottom:976.763120px;}
.y73{bottom:977.103560px;}
.y221{bottom:978.634093px;}
.y149{bottom:981.354000px;}
.yda{bottom:984.332042px;}
.y1c4{bottom:984.842033px;}
.y220{bottom:992.070559px;}
.y1a2{bottom:993.260514px;}
.y36{bottom:994.024500px;}
.y1e2{bottom:994.537487px;}
.y9d{bottom:995.047699px;}
.y148{bottom:1001.339064px;}
.y21f{bottom:1005.591023px;}
.y1a1{bottom:1009.843106px;}
.y1e1{bottom:1012.564500px;}
.y72{bottom:1013.075987px;}
.y261{bottom:1014.094500px;}
.y21e{bottom:1019.112536px;}
.y147{bottom:1023.789000px;}
.y1a0{bottom:1026.340500px;}
.y182{bottom:1027.698000px;}
.y35{bottom:1028.551500px;}
.y1e0{bottom:1030.591500px;}
.y71{bottom:1031.103000px;}
.y21d{bottom:1032.633000px;}
.y23{bottom:1035.546001px;}
.y5c{bottom:1112.825680px;}
.y5b{bottom:1127.877000px;}
.y22{bottom:1165.122003px;}
.h4f{height:10.881000px;}
.h33{height:19.634538px;}
.h50{height:21.893341px;}
.h4d{height:24.504480px;}
.h47{height:26.175996px;}
.h15{height:27.716304px;}
.h4e{height:29.309280px;}
.h1d{height:30.030462px;}
.h1c{height:30.498469px;}
.h7{height:32.130000px;}
.h51{height:32.339076px;}
.h1a{height:32.843062px;}
.h1b{height:34.313020px;}
.h49{height:35.189531px;}
.hb{height:36.726562px;}
.h4a{height:36.764510px;}
.h1f{height:36.959538px;}
.h35{height:37.450035px;}
.h1e{height:39.215510px;}
.h19{height:39.269538px;}
.h23{height:39.371537px;}
.h2c{height:39.517931px;}
.h22{height:39.522255px;}
.h20{height:39.524535px;}
.h24{height:39.524866px;}
.h38{height:40.305643px;}
.h3a{height:41.054517px;}
.hf{height:41.317383px;}
.h14{height:41.580000px;}
.h48{height:41.666510px;}
.h4c{height:43.543440px;}
.h18{height:44.118000px;}
.h6{height:45.900000px;}
.he{height:45.908203px;}
.h26{height:46.023526px;}
.h27{height:46.033087px;}
.h45{height:46.195618px;}
.h17{height:46.200000px;}
.h21{height:46.374479px;}
.h3{height:48.195000px;}
.h16{height:49.020000px;}
.h34{height:49.904538px;}
.h36{height:50.032421px;}
.h31{height:50.374137px;}
.h25{height:52.153035px;}
.h32{height:52.417279px;}
.h3b{height:52.650697px;}
.h3e{height:52.657837px;}
.h2d{height:53.331451px;}
.h28{height:53.332056px;}
.h2a{height:53.334222px;}
.h40{height:53.341142px;}
.h2f{height:53.341145px;}
.h42{height:54.921254px;}
.h2{height:55.080000px;}
.hd{height:55.089844px;}
.h46{height:55.596929px;}
.h44{height:55.938929px;}
.h2e{height:56.870379px;}
.h2b{height:57.215523px;}
.h3d{height:57.413521px;}
.h37{height:58.194519px;}
.h12{height:58.823510px;}
.h43{height:63.539526px;}
.h3c{height:68.309373px;}
.ha{height:68.862305px;}
.h3f{height:69.884385px;}
.h41{height:70.004382px;}
.h39{height:71.154363px;}
.h29{height:71.924538px;}
.h5{height:78.030000px;}
.h13{height:78.539538px;}
.hc{height:82.634766px;}
.h30{height:86.431023px;}
.h4{height:119.055004px;}
.h4b{height:600.463500px;}
.h11{height:1190.250000px;}
.h10{height:1190.551500px;}
.h9{height:1249.500000px;}
.h8{height:1249.560000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w8{width:2.644500px;}
.wb{width:2.646000px;}
.wa{width:2.844000px;}
.w9{width:3.430500px;}
.wc{width:3.432000px;}
.w7{width:558.198000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w5{width:914.173500px;}
.w6{width:914.250000px;}
.w3{width:951.480000px;}
.w4{width:951.750000px;}
.x0{left:0.000000px;}
.x35{left:1.579200px;}
.x36{left:4.124400px;}
.x37{left:27.258000px;}
.x11{left:73.984200px;}
.xd{left:75.004650px;}
.x12{left:78.490144px;}
.x46{left:100.389450px;}
.x1{left:102.045000px;}
.x38{left:103.826550px;}
.x2{left:106.297500px;}
.x47{left:116.469450px;}
.x34{left:126.858465px;}
.x6{left:145.650000px;}
.x5{left:191.880000px;}
.x7{left:197.700000px;}
.x4{left:203.484001px;}
.x9{left:233.083498px;}
.xa{left:270.255000px;}
.x57{left:273.061500px;}
.x33{left:276.038942px;}
.x32{left:277.483500px;}
.x10{left:282.754950px;}
.x1b{left:289.984500px;}
.x55{left:291.003600px;}
.x8{left:293.590494px;}
.x39{left:297.729600px;}
.x3a{left:300.274800px;}
.x3b{left:323.408400px;}
.x51{left:330.973500px;}
.x1c{left:334.969500px;}
.x15{left:339.052500px;}
.x21{left:341.347500px;}
.x27{left:342.538500px;}
.x56{left:347.980291px;}
.xb{left:349.341000px;}
.x1d{left:353.934000px;}
.xc{left:355.125000px;}
.x28{left:359.461430px;}
.x24{left:362.947500px;}
.x29{left:366.690000px;}
.x20{left:368.901000px;}
.x1f{left:373.747500px;}
.x22{left:375.279000px;}
.x1e{left:386.163000px;}
.x58{left:387.608598px;}
.x49{left:389.394033px;}
.x48{left:393.799200px;}
.xf{left:396.198000px;}
.x4f{left:397.898125px;}
.x23{left:399.514500px;}
.x4e{left:404.361164px;}
.x2d{left:407.169000px;}
.x30{left:411.250500px;}
.x3c{left:413.698200px;}
.x31{left:421.710000px;}
.x3e{left:434.280600px;}
.x3f{left:443.395950px;}
.x25{left:450.538500px;}
.x41{left:451.636950px;}
.x3{left:454.959000px;}
.x2a{left:456.831000px;}
.x2e{left:458.532642px;}
.x43{left:472.219350px;}
.x26{left:474.690000px;}
.x2b{left:478.346930px;}
.x2c{left:485.574000px;}
.x45{left:487.023000px;}
.x19{left:491.782500px;}
.x13{left:498.415500px;}
.x5a{left:502.242319px;}
.x52{left:563.211551px;}
.x53{left:564.827455px;}
.x4a{left:574.863551px;}
.x54{left:578.604111px;}
.x4b{left:584.132692px;}
.x5b{left:616.874916px;}
.x17{left:620.277000px;}
.x14{left:622.402500px;}
.x4c{left:671.637463px;}
.x2f{left:674.192142px;}
.x4d{left:679.034926px;}
.x3d{left:701.322000px;}
.x16{left:708.715523px;}
.x40{left:718.671000px;}
.x59{left:731.507512px;}
.x42{left:739.260000px;}
.x18{left:752.174040px;}
.x44{left:753.178500px;}
.x1a{left:766.545000px;}
.x50{left:770.108939px;}
.xe{left:776.325000px;}
@media print{
.v5{vertical-align:-50.187943pt;}
.v4{vertical-align:-11.186027pt;}
.v3{vertical-align:-8.471261pt;}
.v1{vertical-align:-6.965865pt;}
.v14{vertical-align:-2.725333pt;}
.v0{vertical-align:0.000000pt;}
.v13{vertical-align:3.626667pt;}
.va{vertical-align:7.255990pt;}
.vb{vertical-align:8.469333pt;}
.v11{vertical-align:9.373550pt;}
.v7{vertical-align:10.580676pt;}
.vf{vertical-align:11.792090pt;}
.v15{vertical-align:13.303541pt;}
.v19{vertical-align:14.819292pt;}
.v9{vertical-align:15.725323pt;}
.v2{vertical-align:16.629333pt;}
.v16{vertical-align:20.858667pt;}
.v6{vertical-align:21.765333pt;}
.v8{vertical-align:22.976000pt;}
.v10{vertical-align:27.210757pt;}
.v17{vertical-align:28.115403pt;}
.v12{vertical-align:29.026883pt;}
.vc{vertical-align:29.933323pt;}
.vd{vertical-align:30.842667pt;}
.v18{vertical-align:36.285187pt;}
.ve{vertical-align:43.541333pt;}
.ls56{letter-spacing:-0.906656pt;}
.ls57{letter-spacing:-0.746645pt;}
.ls2{letter-spacing:-0.453328pt;}
.ls58{letter-spacing:-0.373323pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.000005pt;}
.ls4{letter-spacing:0.003620pt;}
.ls23{letter-spacing:0.010944pt;}
.ls4d{letter-spacing:0.018187pt;}
.ls3{letter-spacing:0.019105pt;}
.ls3f{letter-spacing:0.025554pt;}
.ls4e{letter-spacing:0.030496pt;}
.ls44{letter-spacing:0.067761pt;}
.ls12{letter-spacing:0.112188pt;}
.ls19{letter-spacing:0.132067pt;}
.ls3b{letter-spacing:0.172888pt;}
.ls42{letter-spacing:0.174578pt;}
.ls2d{letter-spacing:0.178924pt;}
.ls27{letter-spacing:0.182388pt;}
.ls4c{letter-spacing:0.183975pt;}
.ls31{letter-spacing:0.228410pt;}
.lsb{letter-spacing:0.236773pt;}
.ls9{letter-spacing:0.273751pt;}
.ls1d{letter-spacing:0.362662pt;}
.ls1{letter-spacing:0.453328pt;}
.lsf{letter-spacing:0.465360pt;}
.ls53{letter-spacing:0.845971pt;}
.ls54{letter-spacing:0.850696pt;}
.ls28{letter-spacing:2.453793pt;}
.ls32{letter-spacing:2.472304pt;}
.ls8{letter-spacing:2.477655pt;}
.ls2c{letter-spacing:2.521459pt;}
.lsc{letter-spacing:2.555521pt;}
.ls55{letter-spacing:2.604103pt;}
.ls1e{letter-spacing:2.616144pt;}
.lsa{letter-spacing:2.621477pt;}
.ls43{letter-spacing:2.757638pt;}
.ls6{letter-spacing:2.757793pt;}
.ls35{letter-spacing:2.776304pt;}
.ls15{letter-spacing:2.808763pt;}
.ls2e{letter-spacing:2.822938pt;}
.ls22{letter-spacing:2.825459pt;}
.ls38{letter-spacing:2.898158pt;}
.ls39{letter-spacing:2.907332pt;}
.ls3c{letter-spacing:2.920144pt;}
.ls47{letter-spacing:6.161459pt;}
.ls17{letter-spacing:7.411913pt;}
.ls18{letter-spacing:7.416446pt;}
.ls2b{letter-spacing:7.570573pt;}
.ls4a{letter-spacing:7.575111pt;}
.ls16{letter-spacing:7.715643pt;}
.ls10{letter-spacing:9.810018pt;}
.ls1c{letter-spacing:10.050282pt;}
.ls2f{letter-spacing:10.109214pt;}
.ls1b{letter-spacing:10.113748pt;}
.ls26{letter-spacing:10.140947pt;}
.ls11{letter-spacing:10.145481pt;}
.ls4f{letter-spacing:10.159774pt;}
.ls21{letter-spacing:10.495507pt;}
.ls45{letter-spacing:11.625460pt;}
.ls51{letter-spacing:11.669107pt;}
.ls3e{letter-spacing:11.867987pt;}
.ls40{letter-spacing:11.929186pt;}
.ls52{letter-spacing:11.974710pt;}
.ls20{letter-spacing:12.561719pt;}
.ls49{letter-spacing:12.566252pt;}
.ls34{letter-spacing:12.752843pt;}
.ls37{letter-spacing:12.753478pt;}
.ls25{letter-spacing:12.801605pt;}
.ls48{letter-spacing:12.820116pt;}
.ls3d{letter-spacing:14.751293pt;}
.ls13{letter-spacing:15.152459pt;}
.ls5{letter-spacing:15.157793pt;}
.ls30{letter-spacing:15.220125pt;}
.lsd{letter-spacing:15.456459pt;}
.ls3a{letter-spacing:15.518792pt;}
.ls24{letter-spacing:16.288446pt;}
.ls36{letter-spacing:16.355085pt;}
.ls7{letter-spacing:16.589908pt;}
.ls33{letter-spacing:16.659720pt;}
.ls4b{letter-spacing:17.040600pt;}
.ls50{letter-spacing:19.180308pt;}
.ls46{letter-spacing:21.974353pt;}
.ls1a{letter-spacing:24.088144pt;}
.ls14{letter-spacing:30.100979pt;}
.ls1f{letter-spacing:33.718537pt;}
.lse{letter-spacing:39.471269pt;}
.ls41{letter-spacing:44.646353pt;}
.ls29{letter-spacing:47.504459pt;}
.ws11{word-spacing:-53.048443pt;}
.wsd{word-spacing:-45.332800pt;}
.ws23{word-spacing:-33.156410pt;}
.ws7{word-spacing:-33.151877pt;}
.ws8{word-spacing:-32.771081pt;}
.ws21{word-spacing:-32.766548pt;}
.ws19{word-spacing:-32.761822pt;}
.ws15{word-spacing:-31.732800pt;}
.wsb{word-spacing:-29.239656pt;}
.ws2d{word-spacing:-26.840000pt;}
.ws1c{word-spacing:-22.666133pt;}
.ws2b{word-spacing:-22.440000pt;}
.ws14{word-spacing:-21.741611pt;}
.wse{word-spacing:-20.467656pt;}
.ws13{word-spacing:-20.454159pt;}
.ws18{word-spacing:-15.621683pt;}
.ws1{word-spacing:-12.432000pt;}
.ws4{word-spacing:-11.333200pt;}
.wsa{word-spacing:-11.106536pt;}
.ws6{word-spacing:-10.879872pt;}
.ws5{word-spacing:-10.837198pt;}
.ws3c{word-spacing:-9.999867pt;}
.ws31{word-spacing:-9.333067pt;}
.ws34{word-spacing:-9.146405pt;}
.ws32{word-spacing:-8.959744pt;}
.ws33{word-spacing:-8.773083pt;}
.ws3{word-spacing:-8.666800pt;}
.ws35{word-spacing:-8.586421pt;}
.ws1e{word-spacing:-8.567856pt;}
.ws10{word-spacing:-7.933200pt;}
.wsc{word-spacing:-7.774536pt;}
.ws1d{word-spacing:-7.457246pt;}
.ws20{word-spacing:-7.452712pt;}
.ws1b{word-spacing:-5.553203pt;}
.ws9{word-spacing:-3.717290pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:3.945600pt;}
.ws17{word-spacing:15.071315pt;}
.ws22{word-spacing:15.076649pt;}
.ws2c{word-spacing:18.520480pt;}
.wsf{word-spacing:21.465081pt;}
.ws1a{word-spacing:22.148382pt;}
.ws16{word-spacing:31.850825pt;}
.ws1f{word-spacing:118.323141pt;}
.ws3e{word-spacing:190.161464pt;}
.ws30{word-spacing:208.705217pt;}
.ws26{word-spacing:224.505007pt;}
.ws2f{word-spacing:225.956987pt;}
.ws12{word-spacing:233.522853pt;}
.ws2a{word-spacing:235.996853pt;}
.ws29{word-spacing:247.444701pt;}
.ws25{word-spacing:247.464700pt;}
.ws27{word-spacing:247.744697pt;}
.ws2e{word-spacing:248.916681pt;}
.ws28{word-spacing:258.956547pt;}
.ws24{word-spacing:270.424394pt;}
.ws3d{word-spacing:287.904161pt;}
.ws3b{word-spacing:316.463780pt;}
.ws39{word-spacing:1144.836735pt;}
.ws36{word-spacing:1156.516580pt;}
.ws3a{word-spacing:1188.636151pt;}
.ws38{word-spacing:1210.555859pt;}
.ws37{word-spacing:1248.235357pt;}
._18{margin-left:-94.650353pt;}
._19{margin-left:-47.046380pt;}
._17{margin-left:-42.381863pt;}
._1{margin-left:-6.837316pt;}
._2{margin-left:-3.680000pt;}
._3f{margin-left:-2.722522pt;}
._0{margin-left:-1.706684pt;}
._8{width:0.896000pt;}
._9{width:1.807922pt;}
._6{width:2.752039pt;}
._f{width:3.642706pt;}
._3{width:4.703961pt;}
._e{width:5.647096pt;}
._4{width:6.999425pt;}
._5{width:8.005820pt;}
._10{width:8.915388pt;}
._7{width:10.026667pt;}
._d{width:12.218667pt;}
._13{width:13.887926pt;}
._a{width:15.093333pt;}
._14{width:16.142400pt;}
._b{width:17.610667pt;}
._c{width:18.602667pt;}
._15{width:19.644617pt;}
._11{width:22.516802pt;}
._12{width:23.432524pt;}
._1a{width:29.407387pt;}
._16{width:37.875554pt;}
._44{width:46.065991pt;}
._53{width:76.682902pt;}
._1f{width:78.842468pt;}
._4c{width:81.972077pt;}
._43{width:84.087811pt;}
._57{width:88.211993pt;}
._1c{width:93.895008pt;}
._1e{width:96.309195pt;}
._5e{width:100.575782pt;}
._4d{width:104.278610pt;}
._1d{width:111.953545pt;}
._46{width:118.714417pt;}
._56{width:130.638258pt;}
._31{width:132.086179pt;}
._32{width:142.063929pt;}
._50{width:143.158091pt;}
._4a{width:147.434034pt;}
._60{width:151.511284pt;}
._42{width:152.834664pt;}
._47{width:154.637938pt;}
._5f{width:156.162091pt;}
._1b{width:162.749285pt;}
._6c{width:176.517571pt;}
._38{width:177.873552pt;}
._40{width:179.536021pt;}
._6f{width:187.077430pt;}
._39{width:189.513397pt;}
._63{width:198.089283pt;}
._3c{width:200.853246pt;}
._70{width:201.969231pt;}
._66{width:203.917205pt;}
._33{width:205.513184pt;}
._3b{width:218.376936pt;}
._3e{width:222.872952pt;}
._62{width:226.344982pt;}
._41{width:237.733932pt;}
._67{width:238.840815pt;}
._36{width:241.664778pt;}
._26{width:245.996720pt;}
._3a{width:247.452852pt;}
._61{width:249.013925pt;}
._2e{width:257.484567pt;}
._37{width:258.752474pt;}
._72{width:261.824509pt;}
._6d{width:263.272414pt;}
._6b{width:265.528384pt;}
._24{width:268.956414pt;}
._35{width:270.064399pt;}
._3d{width:274.080270pt;}
._28{width:280.424261pt;}
._34{width:281.896241pt;}
._65{width:283.344222pt;}
._6a{width:287.080172pt;}
._21{width:291.916108pt;}
._69{width:293.448087pt;}
._71{width:299.628005pt;}
._2d{width:303.683951pt;}
._6e{width:304.719937pt;}
._30{width:314.875802pt;}
._2b{width:317.575766pt;}
._25{width:319.575739pt;}
._49{width:326.123652pt;}
._68{width:330.063599pt;}
._23{width:332.275570pt;}
._29{width:337.995493pt;}
._64{width:342.787429pt;}
._2c{width:347.535366pt;}
._2f{width:360.975187pt;}
._27{width:376.982898pt;}
._45{width:386.522846pt;}
._2a{width:392.734763pt;}
._5a{width:393.651845pt;}
._52{width:398.682684pt;}
._22{width:404.014613pt;}
._4b{width:415.970998pt;}
._4f{width:420.682391pt;}
._54{width:431.602245pt;}
._20{width:436.094185pt;}
._48{width:437.962160pt;}
._4e{width:440.002133pt;}
._51{width:459.281876pt;}
._59{width:465.401795pt;}
._55{width:489.042649pt;}
._58{width:692.394768pt;}
._5d{width:1155.044523pt;}
._5b{width:1239.315476pt;}
._5c{width:1240.715457pt;}
.fs11{font-size:22.666133pt;}
.fs17{font-size:24.885867pt;}
.fs15{font-size:29.920000pt;}
.fs12{font-size:30.217600pt;}
.fs10{font-size:31.732800pt;}
.fsb{font-size:31.995733pt;}
.fse{font-size:34.667200pt;}
.fs16{font-size:35.786667pt;}
.fsd{font-size:37.332267pt;}
.fs4{font-size:37.333333pt;}
.fs13{font-size:39.999467pt;}
.fsf{font-size:42.666133pt;}
.fs6{font-size:42.666667pt;}
.fsc{font-size:45.332800pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs14{font-size:56.586667pt;}
.fs9{font-size:63.999467pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:80.000000pt;}
.fsa{font-size:90.666133pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y183{bottom:2.000293pt;}
.y197{bottom:3.141600pt;}
.y178{bottom:6.974307pt;}
.y190{bottom:13.598640pt;}
.y199{bottom:31.984480pt;}
.y191{bottom:35.036320pt;}
.y5d{bottom:37.492800pt;}
.y9c{bottom:37.499574pt;}
.y19a{bottom:50.280560pt;}
.y192{bottom:56.384240pt;}
.y5{bottom:59.133337pt;}
.y34{bottom:60.086668pt;}
.yb8{bottom:68.493044pt;}
.y19b{bottom:68.584120pt;}
.y70{bottom:69.846394pt;}
.y137{bottom:69.997373pt;}
.y1b2{bottom:73.551142pt;}
.y33{bottom:74.753335pt;}
.y146{bottom:74.988012pt;}
.y193{bottom:77.732160pt;}
.y176{bottom:78.692133pt;}
.y6f{bottom:81.185169pt;}
.y1c3{bottom:83.076510pt;}
.yae{bottom:84.511474pt;}
.yb7{bottom:84.518189pt;}
.y1b1{bottom:85.569981pt;}
.y136{bottom:86.022518pt;}
.y4{bottom:86.333337pt;}
.y19c{bottom:86.969960pt;}
.y212{bottom:87.384610pt;}
.y21c{bottom:87.761665pt;}
.y145{bottom:91.013157pt;}
.y6e{bottom:92.523077pt;}
.y175{bottom:94.717278pt;}
.y1b0{bottom:97.588821pt;}
.y1c2{bottom:99.101655pt;}
.y194{bottom:99.169840pt;}
.y211{bottom:99.402799pt;}
.y21b{bottom:99.780789pt;}
.yad{bottom:100.536619pt;}
.yb6{bottom:100.543333pt;}
.y135{bottom:102.047663pt;}
.y6d{bottom:103.861851pt;}
.y19d{bottom:105.266040pt;}
.y144{bottom:106.962369pt;}
.y1af{bottom:109.531662pt;}
.y174{bottom:110.666490pt;}
.y210{bottom:111.346325pt;}
.y21a{bottom:111.799912pt;}
.y260{bottom:113.848573pt;}
.y1c1{bottom:115.050867pt;}
.y6c{bottom:115.200626pt;}
.yac{bottom:116.485831pt;}
.yb5{bottom:116.492546pt;}
.y134{bottom:117.998008pt;}
.y195{bottom:120.517760pt;}
.y143{bottom:122.987514pt;}
.y19e{bottom:123.569600pt;}
.y219{bottom:123.742504pt;}
.y21{bottom:123.790666pt;}
.y25f{bottom:125.866763pt;}
.y6b{bottom:126.538533pt;}
.y173{bottom:126.691635pt;}
.y1ae{bottom:127.295425pt;}
.y111{bottom:130.167211pt;}
.y1c0{bottom:131.076012pt;}
.yab{bottom:132.510976pt;}
.yb4{bottom:132.517691pt;}
.y133{bottom:134.022020pt;}
.y20f{bottom:135.383638pt;}
.y218{bottom:135.761627pt;}
.y25e{bottom:137.885887pt;}
.y142{bottom:139.012659pt;}
.y1ad{bottom:139.314265pt;}
.y196{bottom:141.865680pt;}
.y172{bottom:142.716780pt;}
.y110{bottom:146.192356pt;}
.y1bf{bottom:147.101157pt;}
.y20e{bottom:147.402761pt;}
.yaa{bottom:148.536121pt;}
.yb3{bottom:148.542835pt;}
.y25d{bottom:149.905010pt;}
.y132{bottom:150.047165pt;}
.y1ac{bottom:151.258106pt;}
.y141{bottom:154.961871pt;}
.y9b{bottom:155.944947pt;}
.y19f{bottom:158.338107pt;}
.y171{bottom:158.665992pt;}
.y198{bottom:158.946480pt;}
.y217{bottom:159.798941pt;}
.y10f{bottom:161.159336pt;}
.y10e{bottom:161.763370pt;}
.y25c{bottom:161.847602pt;}
.y1ab{bottom:163.276945pt;}
.ya9{bottom:164.485333pt;}
.yb2{bottom:164.492048pt;}
.y10d{bottom:165.091076pt;}
.y131{bottom:165.997510pt;}
.y9a{bottom:170.609297pt;}
.y140{bottom:170.987016pt;}
.y20d{bottom:171.364477pt;}
.y216{bottom:171.742466pt;}
.y25b{bottom:173.866725pt;}
.y170{bottom:174.691137pt;}
.y18{bottom:175.052000pt;}
.y1be{bottom:179.075514pt;}
.ya8{bottom:180.510667pt;}
.yb1{bottom:180.517192pt;}
.y1aa{bottom:180.964710pt;}
.y130{bottom:182.022655pt;}
.y20c{bottom:183.382667pt;}
.y215{bottom:183.759723pt;}
.y10c{bottom:183.837322pt;}
.y99{bottom:185.273647pt;}
.y18b{bottom:185.870520pt;}
.y25a{bottom:185.884915pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y20b{bottom:187.540000pt;}
.y16f{bottom:190.716282pt;}
.y5a{bottom:194.798639pt;}
.y1bd{bottom:195.100659pt;}
.y20a{bottom:195.401333pt;}
.y184{bottom:196.327560pt;}
.yd9{bottom:196.385322pt;}
.yb0{bottom:196.542337pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y259{bottom:197.904038pt;}
.y12f{bottom:198.046667pt;}
.y12d{bottom:198.048659pt;}
.y1a9{bottom:198.728473pt;}
.y10b{bottom:199.862723pt;}
.y98{bottom:200.013730pt;}
.y13f{bottom:202.961373pt;}
.y12e{bottom:203.036000pt;}
.y16e{bottom:206.665494pt;}
.y208{bottom:207.345154pt;}
.y214{bottom:207.797969pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y258{bottom:209.847564pt;}
.y59{bottom:210.747851pt;}
.y1bc{bottom:211.049871pt;}
.y209{bottom:211.502667pt;}
.yd8{bottom:212.409643pt;}
.ya7{bottom:212.491550pt;}
.y12c{bottom:213.997871pt;}
.y97{bottom:214.678080pt;}
.y10a{bottom:215.963494pt;}
.y1a8{bottom:216.416237pt;}
.y185{bottom:217.765240pt;}
.y13e{bottom:218.986518pt;}
.y213{bottom:219.740561pt;}
.y207{bottom:219.741333pt;}
.y257{bottom:221.865754pt;}
.y16d{bottom:222.690639pt;}
.y58{bottom:226.772996pt;}
.yd7{bottom:228.359989pt;}
.y18d{bottom:228.394320pt;}
.ya6{bottom:228.516694pt;}
.y96{bottom:229.343496pt;}
.y12b{bottom:230.023016pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y256{bottom:233.884877pt;}
.y1a7{bottom:234.180000pt;}
.y107{bottom:238.488781pt;}
.y16c{bottom:238.715784pt;}
.y186{bottom:239.113160pt;}
.y108{bottom:239.244083pt;}
.y106{bottom:239.471914pt;}
.y109{bottom:240.982667pt;}
.y105{bottom:241.814667pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y57{bottom:242.798141pt;}
.y1bb{bottom:243.100161pt;}
.y95{bottom:244.007846pt;}
.y100{bottom:244.082003pt;}
.y206{bottom:244.088317pt;}
.yd6{bottom:244.385804pt;}
.ya5{bottom:244.541839pt;}
.y255{bottom:245.904000pt;}
.y12a{bottom:246.048161pt;}
.yff{bottom:248.012310pt;}
.y13d{bottom:250.962008pt;}
.y1a6{bottom:251.868474pt;}
.y103{bottom:252.472792pt;}
.y101{bottom:252.774644pt;}
.y102{bottom:253.379279pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y104{bottom:254.816000pt;}
.y254{bottom:257.846592pt;}
.y56{bottom:258.747353pt;}
.y1ba{bottom:259.049373pt;}
.y205{bottom:260.037530pt;}
.yd5{bottom:260.410948pt;}
.y187{bottom:260.461080pt;}
.ya4{bottom:260.491052pt;}
.y129{bottom:261.997373pt;}
.y94{bottom:266.381967pt;}
.y1a5{bottom:266.532501pt;}
.y13c{bottom:266.986020pt;}
.y253{bottom:269.865716pt;}
.y16b{bottom:270.690141pt;}
.y55{bottom:274.772498pt;}
.y1b9{bottom:275.074518pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y204{bottom:276.062675pt;}
.yfe{bottom:276.132035pt;}
.yd4{bottom:276.360161pt;}
.yaf{bottom:276.516196pt;}
.yfd{bottom:279.989130pt;}
.y93{bottom:281.046317pt;}
.y252{bottom:281.883906pt;}
.y188{bottom:281.898760pt;}
.y13b{bottom:283.011165pt;}
.y1a4{bottom:286.488000pt;}
.y16a{bottom:286.715286pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y54{bottom:290.797643pt;}
.y1b8{bottom:291.099663pt;}
.y203{bottom:292.087819pt;}
.yd3{bottom:292.385306pt;}
.y18e{bottom:292.438080pt;}
.ya3{bottom:292.541341pt;}
.y251{bottom:293.903029pt;}
.y128{bottom:294.047663pt;}
.y92{bottom:295.710667pt;}
.y13a{bottom:298.961510pt;}
.y169{bottom:302.664498pt;}
.y189{bottom:303.156920pt;}
.y250{bottom:305.846554pt;}
.y53{bottom:306.747989pt;}
.y1b7{bottom:307.050008pt;}
.yd2{bottom:308.410450pt;}
.ya2{bottom:308.490554pt;}
.yf{bottom:309.452000pt;}
.y127{bottom:309.998008pt;}
.y32{bottom:311.801334pt;}
.yfc{bottom:311.963488pt;}
.y139{bottom:314.986655pt;}
.y24f{bottom:317.864744pt;}
.y168{bottom:318.689643pt;}
.y52{bottom:322.772000pt;}
.y202{bottom:324.062176pt;}
.yd1{bottom:324.359663pt;}
.y18a{bottom:324.504840pt;}
.ya1{bottom:324.515698pt;}
.y126{bottom:326.022020pt;}
.yfb{bottom:327.988632pt;}
.y24e{bottom:329.883867pt;}
.y138{bottom:331.010667pt;}
.y167{bottom:334.714788pt;}
.y51{bottom:338.796667pt;}
.y1b6{bottom:339.099165pt;}
.y201{bottom:340.087321pt;}
.yd0{bottom:340.384808pt;}
.ya0{bottom:340.540843pt;}
.y18c{bottom:341.064827pt;}
.y18f{bottom:341.762667pt;}
.y24d{bottom:341.902991pt;}
.y125{bottom:342.047165pt;}
.ye{bottom:343.809333pt;}
.yfa{bottom:344.013777pt;}
.y166{bottom:350.664000pt;}
.y24c{bottom:353.845583pt;}
.y1b5{bottom:355.049510pt;}
.y200{bottom:356.036534pt;}
.ycf{bottom:356.409952pt;}
.y91{bottom:356.491189pt;}
.y124{bottom:357.997510pt;}
.yf9{bottom:359.962990pt;}
.yd{bottom:362.706666pt;}
.y24b{bottom:365.864706pt;}
.y17f{bottom:368.689200pt;}
.y31{bottom:369.001334pt;}
.y1b4{bottom:371.074655pt;}
.y1ff{bottom:372.061678pt;}
.yce{bottom:372.359165pt;}
.y90{bottom:372.515200pt;}
.y123{bottom:374.022655pt;}
.yf8{bottom:375.988134pt;}
.y165{bottom:376.290280pt;}
.y50{bottom:377.499067pt;}
.y24a{bottom:377.882896pt;}
.y179{bottom:379.146240pt;}
.y1b3{bottom:387.098667pt;}
.y1fe{bottom:388.086823pt;}
.y8f{bottom:388.540345pt;}
.y249{bottom:389.902019pt;}
.y122{bottom:390.046667pt;}
.y177{bottom:390.501333pt;}
.yf7{bottom:393.072134pt;}
.y164{bottom:393.978045pt;}
.y248{bottom:401.845545pt;}
.y1fd{bottom:404.037169pt;}
.ycd{bottom:404.409454pt;}
.y8e{bottom:404.490691pt;}
.y17a{bottom:404.757760pt;}
.y4f{bottom:404.862667pt;}
.y121{bottom:405.997333pt;}
.yf6{bottom:406.223336pt;}
.yf5{bottom:410.155181pt;}
.y277{bottom:410.608524pt;}
.y163{bottom:411.741808pt;}
.y247{bottom:413.863735pt;}
.y1fc{bottom:420.062314pt;}
.ycc{bottom:420.358790pt;}
.y8d{bottom:420.515836pt;}
.yf3{bottom:423.760669pt;}
.y246{bottom:425.882858pt;}
.yf4{bottom:427.692175pt;}
.yf2{bottom:427.692996pt;}
.y30{bottom:428.806667pt;}
.y162{bottom:429.430572pt;}
.y17b{bottom:430.466520pt;}
.y276{bottom:431.321248pt;}
.y4e{bottom:432.229333pt;}
.y1df{bottom:432.378141pt;}
.y1fb{bottom:436.086325pt;}
.ycb{bottom:436.534667pt;}
.yca{bottom:436.538800pt;}
.y8c{bottom:436.540980pt;}
.y245{bottom:437.901981pt;}
.y120{bottom:438.048896pt;}
.y1de{bottom:444.396980pt;}
.yc{bottom:446.990669pt;}
.y161{bottom:447.118336pt;}
.y244{bottom:449.844573pt;}
.y4d{bottom:450.900000pt;}
.y275{bottom:452.032972pt;}
.y1fa{bottom:452.036671pt;}
.y8b{bottom:452.490193pt;}
.y11f{bottom:453.998109pt;}
.y17c{bottom:456.085520pt;}
.y1dd{bottom:456.340821pt;}
.yf1{bottom:459.667353pt;}
.y243{bottom:461.863697pt;}
.yb{bottom:462.990669pt;}
.y160{bottom:464.882099pt;}
.y1f9{bottom:468.061816pt;}
.y1dc{bottom:468.359661pt;}
.yc9{bottom:468.513157pt;}
.y8a{bottom:468.515338pt;}
.y4c{bottom:469.570667pt;}
.y274{bottom:472.744696pt;}
.y242{bottom:473.881886pt;}
.yf0{bottom:475.692498pt;}
.ya{bottom:478.990666pt;}
.y17d{bottom:481.794280pt;}
.y15f{bottom:482.570863pt;}
.y2f{bottom:483.401334pt;}
.yc8{bottom:484.538302pt;}
.y89{bottom:484.540482pt;}
.y241{bottom:485.901010pt;}
.y1db{bottom:486.123424pt;}
.y4b{bottom:488.165333pt;}
.yef{bottom:491.642844pt;}
.y273{bottom:493.456420pt;}
.y9{bottom:494.990666pt;}
.y240{bottom:497.844535pt;}
.y1da{bottom:498.066265pt;}
.y1f8{bottom:500.036173pt;}
.y15e{bottom:500.334626pt;}
.yc7{bottom:500.487514pt;}
.y88{bottom:500.489695pt;}
.y4a{bottom:506.837333pt;}
.y17e{bottom:507.323520pt;}
.yee{bottom:507.667989pt;}
.y23f{bottom:509.862725pt;}
.y1d9{bottom:510.085105pt;}
.y272{bottom:514.168143pt;}
.y1f7{bottom:516.061318pt;}
.yc6{bottom:516.512659pt;}
.y87{bottom:516.514840pt;}
.y15d{bottom:518.022391pt;}
.y23e{bottom:521.881848pt;}
.y1d8{bottom:522.103944pt;}
.yed{bottom:523.691989pt;}
.y180{bottom:523.881013pt;}
.y181{bottom:525.008293pt;}
.y49{bottom:525.508000pt;}
.y1f6{bottom:532.086462pt;}
.yc5{bottom:532.537804pt;}
.y86{bottom:532.539984pt;}
.y23d{bottom:533.900972pt;}
.y271{bottom:534.879867pt;}
.y15c{bottom:535.711155pt;}
.yec{bottom:539.719446pt;}
.y1d7{bottom:539.792709pt;}
.y2e{bottom:543.206667pt;}
.y48{bottom:544.178667pt;}
.y23c{bottom:545.843564pt;}
.y1f5{bottom:548.035675pt;}
.yc4{bottom:548.487016pt;}
.y85{bottom:548.489197pt;}
.y15b{bottom:553.474918pt;}
.y270{bottom:555.591591pt;}
.yeb{bottom:555.668659pt;}
.y1d6{bottom:557.556472pt;}
.y23b{bottom:557.862687pt;}
.y47{bottom:562.849333pt;}
.y11e{bottom:563.226041pt;}
.y1f4{bottom:564.060820pt;}
.yc3{bottom:564.512161pt;}
.y84{bottom:564.514341pt;}
.y28a{bottom:567.761433pt;}
.y23a{bottom:569.880877pt;}
.y15a{bottom:571.162682pt;}
.yea{bottom:571.693804pt;}
.y2d{bottom:573.740001pt;}
.y8{bottom:573.786667pt;}
.y1d5{bottom:575.244236pt;}
.y26f{bottom:576.303315pt;}
.y289{bottom:579.780273pt;}
.y1f3{bottom:580.085964pt;}
.yc2{bottom:580.537306pt;}
.y83{bottom:580.539486pt;}
.y46{bottom:581.520000pt;}
.y239{bottom:581.900000pt;}
.y2c{bottom:587.073335pt;}
.ye9{bottom:587.718948pt;}
.y159{bottom:588.850446pt;}
.y7{bottom:592.685334pt;}
.y1d4{bottom:592.932000pt;}
.y238{bottom:593.843526pt;}
.y1f2{bottom:596.035177pt;}
.yc1{bottom:596.486518pt;}
.y82{bottom:596.488699pt;}
.y26e{bottom:597.015039pt;}
.y45{bottom:600.190667pt;}
.y2b{bottom:600.406667pt;}
.y288{bottom:600.491997pt;}
.ye8{bottom:603.668161pt;}
.y237{bottom:605.861716pt;}
.y158{bottom:606.614209pt;}
.y1d3{bottom:610.696474pt;}
.y1f1{bottom:612.060322pt;}
.yc0{bottom:612.511663pt;}
.y9f{bottom:612.513843pt;}
.y26d{bottom:617.726763pt;}
.y236{bottom:617.880839pt;}
.y44{bottom:618.861333pt;}
.ye7{bottom:619.693306pt;}
.y287{bottom:621.203721pt;}
.y157{bottom:624.302974pt;}
.y1d2{bottom:625.360501pt;}
.y6a{bottom:627.924063pt;}
.y1f0{bottom:628.085466pt;}
.ybf{bottom:628.536808pt;}
.y81{bottom:628.538988pt;}
.y235{bottom:629.899962pt;}
.y286{bottom:633.222560pt;}
.ye6{bottom:635.718450pt;}
.y43{bottom:637.532000pt;}
.y26c{bottom:638.438486pt;}
.y69{bottom:639.262806pt;}
.y234{bottom:641.842554pt;}
.y156{bottom:641.990738pt;}
.y1ef{bottom:644.034679pt;}
.ybe{bottom:644.486020pt;}
.y80{bottom:644.488201pt;}
.y1d1{bottom:645.316000pt;}
.y6{bottom:645.598667pt;}
.ye5{bottom:651.667663pt;}
.y233{bottom:653.861677pt;}
.y285{bottom:653.934284pt;}
.y42{bottom:656.202667pt;}
.y26b{bottom:659.150210pt;}
.y155{bottom:659.754501pt;}
.y1ee{bottom:660.059824pt;}
.ybd{bottom:660.511165pt;}
.y7f{bottom:660.513345pt;}
.y68{bottom:661.939358pt;}
.y232{bottom:665.879867pt;}
.y3{bottom:668.977329pt;}
.y11d{bottom:672.379442pt;}
.y2a{bottom:672.726665pt;}
.y67{bottom:673.278101pt;}
.y284{bottom:674.646008pt;}
.y41{bottom:674.873333pt;}
.ybc{bottom:676.536310pt;}
.y7e{bottom:676.538490pt;}
.y154{bottom:677.443265pt;}
.y231{bottom:677.898991pt;}
.y26a{bottom:679.861934pt;}
.ye4{bottom:683.717952pt;}
.y66{bottom:684.615910pt;}
.y283{bottom:686.664848pt;}
.y230{bottom:689.842516pt;}
.y1ed{bottom:692.034181pt;}
.ybb{bottom:692.486655pt;}
.y7d{bottom:692.487703pt;}
.y40{bottom:693.544000pt;}
.y153{bottom:695.207028pt;}
.y65{bottom:695.954653pt;}
.y1d0{bottom:697.096807pt;}
.y282{bottom:698.684687pt;}
.y29{bottom:699.393332pt;}
.ye3{bottom:699.667165pt;}
.y269{bottom:700.573658pt;}
.y22f{bottom:701.860706pt;}
.y1ec{bottom:708.059325pt;}
.yba{bottom:708.510667pt;}
.y7c{bottom:708.512847pt;}
.y1cf{bottom:709.115647pt;}
.y281{bottom:710.627528pt;}
.y3f{bottom:712.214667pt;}
.y152{bottom:712.894792pt;}
.y22e{bottom:713.879829pt;}
.y28{bottom:715.393332pt;}
.ye2{bottom:715.692310pt;}
.y64{bottom:718.631205pt;}
.y1ce{bottom:721.059488pt;}
.y268{bottom:721.286382pt;}
.y1eb{bottom:724.084470pt;}
.yb9{bottom:724.536000pt;}
.y7b{bottom:724.537992pt;}
.y22d{bottom:725.898952pt;}
.y63{bottom:729.969948pt;}
.y151{bottom:730.582556pt;}
.y3e{bottom:730.885333pt;}
.y280{bottom:731.339252pt;}
.y27{bottom:731.393332pt;}
.ye1{bottom:731.717454pt;}
.y1cd{bottom:733.078328pt;}
.y22c{bottom:737.841545pt;}
.y1ea{bottom:740.033683pt;}
.y7a{bottom:740.487205pt;}
.y62{bottom:741.308690pt;}
.y267{bottom:742.073105pt;}
.ye0{bottom:747.667989pt;}
.y150{bottom:748.346320pt;}
.y3d{bottom:749.556000pt;}
.y22b{bottom:749.860668pt;}
.y1cc{bottom:750.842091pt;}
.y27f{bottom:752.126975pt;}
.y61{bottom:752.571835pt;}
.y1e9{bottom:756.058827pt;}
.y79{bottom:756.512349pt;}
.y22a{bottom:761.878858pt;}
.y266{bottom:762.784828pt;}
.y1cb{bottom:762.784932pt;}
.yde{bottom:763.691926pt;}
.ydf{bottom:763.692000pt;}
.y60{bottom:763.909645pt;}
.y27e{bottom:764.069816pt;}
.y14f{bottom:766.035084pt;}
.y3c{bottom:768.226667pt;}
.y78{bottom:772.537494pt;}
.y229{bottom:773.897981pt;}
.y1ca{bottom:774.803771pt;}
.y26{bottom:778.034669pt;}
.y11c{bottom:781.607208pt;}
.y2{bottom:781.661334pt;}
.y265{bottom:783.496552pt;}
.y14e{bottom:783.722848pt;}
.y27d{bottom:784.781539pt;}
.y228{bottom:785.841506pt;}
.y5f{bottom:786.435934pt;}
.y1c9{bottom:786.822611pt;}
.y3b{bottom:786.897333pt;}
.y1e8{bottom:788.033185pt;}
.y9e{bottom:788.486706pt;}
.y27c{bottom:796.800379pt;}
.y11b{bottom:797.632353pt;}
.y227{bottom:797.859696pt;}
.y5e{bottom:799.739288pt;}
.y14d{bottom:801.486611pt;}
.y1e7{bottom:804.058329pt;}
.y264{bottom:804.208276pt;}
.y1c8{bottom:804.511375pt;}
.y77{bottom:804.511851pt;}
.y3a{bottom:805.568000pt;}
.y226{bottom:809.878820pt;}
.y11a{bottom:812.674358pt;}
.y119{bottom:816.302871pt;}
.y27b{bottom:817.512103pt;}
.y14c{bottom:819.175375pt;}
.y1e6{bottom:820.083474pt;}
.y76{bottom:820.536996pt;}
.y225{bottom:821.897943pt;}
.y1c7{bottom:822.275138pt;}
.y263{bottom:824.920000pt;}
.y117{bottom:829.758003pt;}
.y118{bottom:829.983691pt;}
.y116{bottom:833.688310pt;}
.y224{bottom:833.840535pt;}
.ydd{bottom:834.141721pt;}
.y25{bottom:834.625331pt;}
.y38{bottom:835.502667pt;}
.y1e5{bottom:836.032687pt;}
.y75{bottom:836.487342pt;}
.y14b{bottom:836.939138pt;}
.y27a{bottom:838.223827pt;}
.y1c6{bottom:839.962903pt;}
.y39{bottom:840.869333pt;}
.y262{bottom:842.608000pt;}
.y223{bottom:845.859658pt;}
.y279{bottom:850.242667pt;}
.y1e4{bottom:852.057831pt;}
.y74{bottom:852.511353pt;}
.ydb{bottom:854.551173pt;}
.y14a{bottom:854.626903pt;}
.y37{bottom:856.971357pt;}
.y1c5{bottom:857.650667pt;}
.y222{bottom:857.877848pt;}
.y1{bottom:859.312000pt;}
.y115{bottom:861.808035pt;}
.y113{bottom:862.336703pt;}
.y24{bottom:862.625331pt;}
.y112{bottom:865.662822pt;}
.y114{bottom:865.662977pt;}
.ydc{bottom:867.098667pt;}
.y278{bottom:867.930667pt;}
.y1e3{bottom:868.082976pt;}
.y1a3{bottom:868.233884pt;}
.y73{bottom:868.536498pt;}
.y221{bottom:869.896971pt;}
.y149{bottom:872.314667pt;}
.yda{bottom:874.961815pt;}
.y1c4{bottom:875.415141pt;}
.y220{bottom:881.840497pt;}
.y1a2{bottom:882.898234pt;}
.y36{bottom:883.577333pt;}
.y1e2{bottom:884.033322pt;}
.y9d{bottom:884.486844pt;}
.y148{bottom:890.079168pt;}
.y21f{bottom:893.858687pt;}
.y1a1{bottom:897.638317pt;}
.y1e1{bottom:900.057333pt;}
.y72{bottom:900.511989pt;}
.y261{bottom:901.417333pt;}
.y21e{bottom:905.877810pt;}
.y147{bottom:910.034667pt;}
.y1a0{bottom:912.302667pt;}
.y182{bottom:913.509333pt;}
.y35{bottom:914.268000pt;}
.y1e0{bottom:916.081333pt;}
.y71{bottom:916.536000pt;}
.y21d{bottom:917.896000pt;}
.y23{bottom:920.485335pt;}
.y5c{bottom:989.178382pt;}
.y5b{bottom:1002.557333pt;}
.y22{bottom:1035.664002pt;}
.h4f{height:9.672000pt;}
.h33{height:17.452923pt;}
.h50{height:19.460748pt;}
.h4d{height:21.781760pt;}
.h47{height:23.267552pt;}
.h15{height:24.636715pt;}
.h4e{height:26.052693pt;}
.h1d{height:26.693744pt;}
.h1c{height:27.109750pt;}
.h7{height:28.560000pt;}
.h51{height:28.745845pt;}
.h1a{height:29.193833pt;}
.h1b{height:30.500462pt;}
.h49{height:31.279583pt;}
.hb{height:32.645833pt;}
.h4a{height:32.679564pt;}
.h1f{height:32.852923pt;}
.h35{height:33.288920pt;}
.h1e{height:34.858231pt;}
.h19{height:34.906256pt;}
.h23{height:34.996922pt;}
.h2c{height:35.127049pt;}
.h22{height:35.130893pt;}
.h20{height:35.132920pt;}
.h24{height:35.133215pt;}
.h38{height:35.827238pt;}
.h3a{height:36.492904pt;}
.hf{height:36.726562pt;}
.h14{height:36.960000pt;}
.h48{height:37.036898pt;}
.h4c{height:38.705280pt;}
.h18{height:39.216000pt;}
.h6{height:40.800000pt;}
.he{height:40.807292pt;}
.h26{height:40.909801pt;}
.h27{height:40.918299pt;}
.h45{height:41.062771pt;}
.h17{height:41.066667pt;}
.h21{height:41.221759pt;}
.h3{height:42.840000pt;}
.h16{height:43.573333pt;}
.h34{height:44.359589pt;}
.h36{height:44.473263pt;}
.h31{height:44.777010pt;}
.h25{height:46.358253pt;}
.h32{height:46.593137pt;}
.h3b{height:46.800620pt;}
.h3e{height:46.806966pt;}
.h2d{height:47.405734pt;}
.h28{height:47.406272pt;}
.h2a{height:47.408197pt;}
.h40{height:47.414348pt;}
.h2f{height:47.414351pt;}
.h42{height:48.818892pt;}
.h2{height:48.960000pt;}
.hd{height:48.968750pt;}
.h46{height:49.419493pt;}
.h44{height:49.723493pt;}
.h2e{height:50.551448pt;}
.h2b{height:50.858243pt;}
.h3d{height:51.034241pt;}
.h37{height:51.728461pt;}
.h12{height:52.287564pt;}
.h43{height:56.479579pt;}
.h3c{height:60.719443pt;}
.ha{height:61.210938pt;}
.h3f{height:62.119454pt;}
.h41{height:62.226117pt;}
.h39{height:63.248323pt;}
.h29{height:63.932923pt;}
.h5{height:69.360000pt;}
.h13{height:69.812923pt;}
.hc{height:73.453125pt;}
.h30{height:76.827576pt;}
.h4{height:105.826671pt;}
.h4b{height:533.745333pt;}
.h11{height:1058.000000pt;}
.h10{height:1058.268000pt;}
.h9{height:1110.666667pt;}
.h8{height:1110.720000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w8{width:2.350667pt;}
.wb{width:2.352000pt;}
.wa{width:2.528000pt;}
.w9{width:3.049333pt;}
.wc{width:3.050667pt;}
.w7{width:496.176000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w5{width:812.598667pt;}
.w6{width:812.666667pt;}
.w3{width:845.760000pt;}
.w4{width:846.000000pt;}
.x0{left:0.000000pt;}
.x35{left:1.403733pt;}
.x36{left:3.666133pt;}
.x37{left:24.229333pt;}
.x11{left:65.763733pt;}
.xd{left:66.670800pt;}
.x12{left:69.769017pt;}
.x46{left:89.235067pt;}
.x1{left:90.706667pt;}
.x38{left:92.290267pt;}
.x2{left:94.486667pt;}
.x47{left:103.528400pt;}
.x34{left:112.763080pt;}
.x6{left:129.466667pt;}
.x5{left:170.560000pt;}
.x7{left:175.733333pt;}
.x4{left:180.874667pt;}
.x9{left:207.185331pt;}
.xa{left:240.226667pt;}
.x57{left:242.721333pt;}
.x33{left:245.367948pt;}
.x32{left:246.652000pt;}
.x10{left:251.337733pt;}
.x1b{left:257.764000pt;}
.x55{left:258.669867pt;}
.x8{left:260.969328pt;}
.x39{left:264.648533pt;}
.x3a{left:266.910933pt;}
.x3b{left:287.474133pt;}
.x51{left:294.198667pt;}
.x1c{left:297.750667pt;}
.x15{left:301.380000pt;}
.x21{left:303.420000pt;}
.x27{left:304.478667pt;}
.x56{left:309.315814pt;}
.xb{left:310.525333pt;}
.x1d{left:314.608000pt;}
.xc{left:315.666667pt;}
.x28{left:319.521271pt;}
.x24{left:322.620000pt;}
.x29{left:325.946667pt;}
.x20{left:327.912000pt;}
.x1f{left:332.220000pt;}
.x22{left:333.581333pt;}
.x1e{left:343.256000pt;}
.x58{left:344.540976pt;}
.x49{left:346.128030pt;}
.x48{left:350.043733pt;}
.xf{left:352.176000pt;}
.x4f{left:353.687222pt;}
.x23{left:355.124000pt;}
.x4e{left:359.432146pt;}
.x2d{left:361.928000pt;}
.x30{left:365.556000pt;}
.x3c{left:367.731733pt;}
.x31{left:374.853333pt;}
.x3e{left:386.027200pt;}
.x3f{left:394.129733pt;}
.x25{left:400.478667pt;}
.x41{left:401.455067pt;}
.x3{left:404.408000pt;}
.x2a{left:406.072000pt;}
.x2e{left:407.584570pt;}
.x43{left:419.750533pt;}
.x26{left:421.946667pt;}
.x2b{left:425.197271pt;}
.x2c{left:431.621333pt;}
.x45{left:432.909333pt;}
.x19{left:437.140000pt;}
.x13{left:443.036000pt;}
.x5a{left:446.437617pt;}
.x52{left:500.632489pt;}
.x53{left:502.068848pt;}
.x4a{left:510.989823pt;}
.x54{left:514.314765pt;}
.x4b{left:519.229060pt;}
.x5b{left:548.333258pt;}
.x17{left:551.357333pt;}
.x14{left:553.246667pt;}
.x4c{left:597.011078pt;}
.x2f{left:599.281904pt;}
.x4d{left:603.586601pt;}
.x3d{left:623.397333pt;}
.x16{left:629.969353pt;}
.x40{left:638.818667pt;}
.x59{left:650.228900pt;}
.x42{left:657.120000pt;}
.x18{left:668.599147pt;}
.x44{left:669.492000pt;}
.x1a{left:681.373333pt;}
.x50{left:684.541279pt;}
.xe{left:690.066667pt;}
}




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